query
stringlengths
9
43.3k
document
stringlengths
17
1.17M
metadata
dict
negatives
sequencelengths
0
30
negative_scores
sequencelengths
0
30
document_score
stringlengths
5
10
document_rank
stringclasses
2 values
if the binder doesn't specify, create a default stockpile escrow account for items escrowed while being auctioned. otherwise, use the escrow object specified by the binder.
protected function itemEscrow( $stockpile ){ if( method_exists( $this->binder, 'itemEscrow') ){ $user_id = ( $stockpile instanceof \Gaia\Stockpile\Iface ) ? $stockpile->user() : $stockpile; $stockpile = $this->binder->currencyEscrow( $user_id ); if( ! $stockpile instanceof Stockpile\Iface ) { throw new Exception('invalid stockpile object', $stockpile ); } return $stockpile; } if( ! $stockpile instanceof Stockpile\Iface ) $stockpile = $this->itemAccount( $stockpile ); switch( $stockpile->coreType() ) { case 'serial': $class = '\gaia\stockpile\serial'; break; case 'tally': $class = '\gaia\stockpile\tally'; break; case 'serial-tally': $class = '\gaia\stockpile\hybrid'; break; default: throw new Exception('invalid stockpile object', $stockpile ); } return new $class( $stockpile->app() . '_souk', $stockpile->user()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function currencyEscrow( $stockpile ){\n if( method_exists( $this->binder, 'currencyEscrow') ){\n $user_id = ( $stockpile instanceof \\Gaia\\Stockpile\\Iface ) ? $stockpile->user() : $stockpile;\n $stockpile = $this->binder->currencyEscrow( $user_id );\n if( ! $stockpile instanceof \\Gaia\\Stockpile\\Iface ) {\n throw new Exception('invalid stockpile object', $stockpile );\n }\n return $stockpile;\n }\n if( ! $stockpile instanceof \\Gaia\\Stockpile\\Iface ) $stockpile = $this->currencyAccount( $stockpile );\n \n switch( $stockpile->coreType() ) {\n \n case 'tally':\n $class = '\\gaia\\stockpile\\tally';\n break;\n \n case 'serial-tally':\n $class = '\\gaia\\stockpile\\hybrid';\n break;\n \n default:\n throw new Exception('invalid stockpile object', $stockpile );\n }\n \n return new $class( $stockpile->app() . '_souk', $stockpile->user());\n }", "protected function itemAccount( $user_id ){\n $stockpile = $this->binder->itemAccount( $user_id );\n if( ! $stockpile instanceof \\Gaia\\Stockpile\\Iface ) {\n throw new Exception('invalid stockpile object', $stockpile );\n }\n return $stockpile;\n }", "protected function createQuoteBirdandco(){\n\n\t\tif($this->instantQuote->type == InstantQuote::TYPE_BUY_N_SELL) return;\n\n\t\t$request = new BirdandcoQuote($this->instantQuote);\n\n\t\tif($request->MakeQuote()){\n\t\t\t$this->saveQuote($this->instantQuote->id, $request->companyId, $request->parsedForm);\n\t\t}\n\t}", "protected function _saveStockItem()\n {\n $defaultStockData = array(\n 'manage_stock' => 1,\n 'use_config_manage_stock' => 1,\n 'qty' => 0,\n 'min_qty' => 0,\n 'use_config_min_qty' => 1,\n 'min_sale_qty' => 1,\n 'use_config_min_sale_qty' => 1,\n 'max_sale_qty' => 10000,\n 'use_config_max_sale_qty' => 1,\n 'is_qty_decimal' => 0,\n 'backorders' => 0,\n 'use_config_backorders' => 1,\n 'notify_stock_qty' => 1,\n 'use_config_notify_stock_qty' => 1,\n 'enable_qty_increments' => 0,\n 'use_config_enable_qty_inc' => 1,\n 'qty_increments' => 0,\n 'use_config_qty_increments' => 1,\n 'is_in_stock' => 0,\n 'low_stock_date' => null,\n 'stock_status_changed_auto' => 0,\n );\n\n if (version_compare(Mage::getVersion(), '1.7.0.0', 'ge')) {\n $defaultStockData['is_decimal_divided'] = 0;\n }\n\n $entityTable = Mage::getResourceModel('cataloginventory/stock_item')->getMainTable();\n $helper = Mage::helper('catalogInventory');\n $sku = null;\n\n while ($bunch = $this->_dataSourceModel->getNextBunch()) {\n $stockData = array();\n\n // Format bunch to stock data rows\n foreach ($bunch as $rowNum => $rowData) {\n if (!$this->isRowAllowedToImport($rowData, $rowNum)) {\n continue;\n }\n\n if (self::SCOPE_DEFAULT == $this->getRowScope($rowData)) {\n $sku = $rowData[self::COL_SKU];\n }\n\n //we have a non-SCOPE_DEFAULT row, we check if it has a stock_id, if not, skip it.\n if (self::SCOPE_DEFAULT != $this->getRowScope($rowData) && !isset($rowData['stock_id'])) {\n continue;\n }\n\n $row['product_id'] = $this->_newSku[$sku]['entity_id'];\n $row['stock_id'] = isset($rowData['stock_id']) ? $rowData['stock_id'] : 1;\n\n /** @var $stockItem Mage_CatalogInventory_Model_Stock_Item */\n $stockItem = Mage::getModel('cataloginventory/stock_item');\n $stockItem->loadByProduct($row['product_id']);\n $existStockData = $stockItem->getData();\n\n $row = array_merge(\n $row,\n $defaultStockData,\n array_intersect_key($existStockData, $defaultStockData),\n array_intersect_key($rowData, $defaultStockData)\n );\n\n $stockItem->setData($row);\n\n if ($helper->isQty($this->_newSku[$sku]['type_id'])) {\n if ($stockItem->verifyNotification()) {\n $stockItem->setLowStockDate(Mage::app()->getLocale()\n ->date(null, null, null, false)\n ->toString(Varien_Date::DATETIME_INTERNAL_FORMAT)\n );\n }\n $stockItem->setStockStatusChangedAutomatically((int) !$stockItem->verifyStock());\n } else {\n $stockItem->setQty(0);\n }\n $stockData[] = $stockItem->unsetOldData()->getData();\n }\n\n // Insert rows\n if ($stockData) {\n $this->_connection->insertOnDuplicate($entityTable, $stockData);\n }\n }\n return $this;\n }", "public static function bootInventoryTrait()\n {\n /*\n * Assign the current users ID while the item\n * is being created\n */\n static::creating(function (Model $record) {\n $record->user_id = static::getCurrentUserId();\n });\n\n /*\n * Generate the items SKU once it's created\n */\n static::created(function (Model $record) {\n $record->generateSku();\n });\n\n /*\n * Generate an SKU if the item has been assigned a category,\n * this will not overwrite any SKU the item had previously\n */\n static::updated(function (Model $record) {\n if ($record->category_id !== null) {\n $record->generateSku();\n }\n });\n }", "public function createItem($data) {\n $date = Carbon::now();\n $date = getLocalDate($date);\n $date = $date->toDateTimeString();\n\n\n DB::beginTransaction();\n\n //start create user\n try {\n \n //get next account number\n /*$company_id = $new_user->company_id;\n $user_cd = $new_user->user_cd;\n $account_number = generate_account_number($company_id, $user_cd, '', $savings_product_id);\n\n $acct_attributes['account_no'] = $account_number;\n $acct_attributes['account_name'] = $new_user->first_name . ' ' . $new_user->last_name;\n $acct_attributes['product_id'] = $savings_product_id;\n $acct_attributes['company_id'] = $new_user->company_id;\n $acct_attributes['user_id'] = $new_user->id;\n\n $user_savings_account = $user_savings_account::create($acct_attributes);*/\n\n \n $new_user = new User();\n $new_user = $new_user::create($data);\n\n } catch(\\Exception $e) {\n \n DB::rollback();\n throw new StoreResourceFailedException($e);\n\n }\n //end create user\n\n\n DB::commit();\n\n return $new_user;\n\n }", "protected function currencyAccount( $user_id ){\n $stockpile = $this->binder->currencyAccount( $user_id );\n if( ! $stockpile instanceof \\Gaia\\Stockpile\\Iface ) {\n throw new Exception('invalid stockpile object', $stockpile );\n }\n return $stockpile;\n }", "public function initInvWhseItemBins($overrideExisting = true)\n {\n if (null !== $this->collInvWhseItemBins && !$overrideExisting) {\n return;\n }\n\n $collectionClassName = InvWhseItemBinTableMap::getTableMap()->getCollectionClassName();\n\n $this->collInvWhseItemBins = new $collectionClassName;\n $this->collInvWhseItemBins->setModel('\\InvWhseItemBin');\n }", "function bid( $id, $bid, array $data = NULL ){\n $d = new \\Gaia\\Store\\KVP( $data );\n // wrapped in try/catch so we can manage transactions.\n try {\n // kick off a transaction if we aren't attached to one already.\n Transaction::start();\n \n // send the bid off to the core object for the first step of the process.\n $listing = $this->prepListing( $this->core->bid( $id, $bid, $data ) );\n \n // grab the listing's state prior to the bid we just made.\n $prior = $listing->priorstate();\n \n // if there was a previous bid, take their bid out of escrow and refund it.\n if( $prior && ( ! $d->enable_proxy || $prior->proxybid != $listing->proxybid ) ){\n $this->cancelBid( $listing->priorstate(), $data );\n }\n\n // if the bid actually changed hands, go ahead and escrow funds for the bidder.\n // so that the bidder can actually pay for what they bid when the time comes.\n if( ! $d->enable_proxy || ! $prior || $prior->proxybid != $listing->proxybid ){\n \n // set up a transfer object between the currency account and the currency escrow.\n $bidder = $this->transfer( $this->currencyAccount($listing->bidder ), \n $this->currencyEscrow( $listing->bidder ) );\n \n // subtracting moves funds into escrow.\n $bidder->subtract( $this->currencyId(), $bid, $this->prepData( $data, $listing, 'bid') );\n }\n // commit the transaction if we started it.\n Transaction::commit();\n \n // all done. \n return $listing;\n \n } catch( Exception $e ){\n // evil! revert the transaction.\n Transaction::rollback();\n \n // toss the exception again up the chain.\n throw $e;\n }\n }", "protected static function booted()\n {\n // Create a uuid when a new Warranty is to be created\n static::creating(function ($warranties) {\n // Create a Unique Warranty uuid id\n $warranties->uuid = (string) Str::uuid();\n\n // Create a Unique Warranty id\n $warranties->unique_id = static::generate('warranties', 'WAR-');\n\n });\n\n }", "public function create()\n\t{\n\t\t$this->validator->check_request($_POST);\n\n\t\t$data['auction_id'] = (int) $_POST['auction_id'];\n\t\t$data['user_id'] = (int) $_SESSION['id'];\n\t\t$data['bet'] = (int) $_POST['bet'];\n\n\t\t$this->check($data['auction_id'], $data['user_id'], $data['bet']);\n\t\t$this->model->create($data);\n\t}", "protected function create(array $data)\n {\n\n\n $user = User::create([\n 'name' => $data['name'],\n 'email' => $data['email'],\n 'password' => bcrypt($data['password']),\n ]);\n\n $warehouse = $user->createWarehouse($data['name'].'\\'s first warehouse', 'owner');\n\n\t $transaction = \\NemSDK::transaction()->multisig(\n\t\t env( 'MAIN_PUBLIC_ACCOUNT_PUBLIC_KEY' ),\n\t\t env( 'MAIN_PUBLIC_ACCOUNT_PRIVATE_KEY' )\n\t )->transfer(\n\t\t $warehouse->address,\n\t\t 50000000,\n\t\t \"New account \".$data['name'],\n\t\t env( 'MAIN_ACCOUNT_PUBLIC_KEY' ),\n\t\t null\n\t );\n\n\t if(env('APP_ENV') === 'local'){\n\t $mosaic_item = 'test2';\n\t }else{\n\t\t $mosaic_item = 'beginners_fishing_rod';\n\t\t $user->importWarehouse(\n\t\t\t 'Shared NEMventory warehouse',\n\t\t\t 'owner',\n\t\t\t 'TAKSUCAEKPVRQBUM6U35QV4IHWWWCC47FPKARL6C',\n\t\t\t '2cd90e72d4de278c8dc1831bd03431a9a956ad4dd56bd23a9957925b8e151e71',\n\t\t\t decrypt('eyJpdiI6InpsZ3IxdkRlQ2JwMUVMMnpcL0Y0RXN3PT0iLCJ2YWx1ZSI6InIzUlQwYVk2bVQ1blRURVZEYjNmb0poMDdcLzZPWHB2MTAwciswVEFcL3ZZV3RYM0lvYlVDNlB0ekRMbTh0R1AxVmFCTnE1enhKcW9xNFc0am1BNGdcL3FcL2x2a0F5MVZHRnIrWStXdllSNU9uST0iLCJtYWMiOiIyM2M4M2ZkYzg1MWM1M2M0ZjA1Y2Q2MTE3ZDdiNzFmMmQ0ZmNkYzk0NDFmNTZmZmU4OWMxYzFjNzU2YWY5MmZmIn0=')\n\t\t );\n\t }\n\n\n\n\t $res = \\NemSDK::transaction()->multisig(\n\t\t env( 'MAIN_PUBLIC_ACCOUNT_PUBLIC_KEY' ),\n\t\t env( 'MAIN_PUBLIC_ACCOUNT_PRIVATE_KEY' )\n\t )->transfer(\n\t\t $warehouse->address,\n\t\t 1,\n\t\t \"New account items \".$data['name'],\n\t\t env( 'MAIN_ACCOUNT_PUBLIC_KEY' ),\n\t\t null,\n\t\t array(\n\t\t\t array(\n\t\t\t\t 'namespace' => config( 'nem.itemNamespace' ),\n\t\t\t\t 'mosaic' => $mosaic_item,\n\t\t\t\t 'quantity' => 3,\n\t\t\t ),\n\t\t )\n\t );\n\n\t return $user;\n }", "public function __construct( Iface $core, StockpileBinder_Iface $binder ){\n parent::__construct( $core );\n $this->binder = $binder;\n }", "public function __construct()\n {\n parent::__construct();\n $this->exchange = \\App\\Exchange::firstOrCreate(['name'=>'GDAX']);\n $this->api = new \\App\\Exchange\\Gdax();\n }", "public function run()\n {\n Model::unguard();\n\n ExchangeRate::create(['currency' => 'sgd']);\n }", "function _tmr_fill_handbook_housing_stock(){\n try{\n db_truncate('tmr_handbook_housing_stock')->execute();\n \n $qToIns = db_select('tmr_main_data', 'md')->fields('md', array('md_st_key', 'md_st_name', 'md_house_key', 'md_house_num'));\n $qToIns->addExpression(REQUEST_TIME, 'date_change');\n $qToIns->groupBy('md_st_key,md_st_name,md_house_key,md_house_num');\n \n db_insert('tmr_handbook_housing_stock')->fields(array('hhs_st_key', 'hhs_st_name', 'hhs_house_key', 'hhs_hs_house', 'date_change'))\n ->from($qToIns)->execute();\n \n drupal_set_message(t('Filling handbook addresses successful.'));\n }\n catch(Exception $e){\n watchdog_exception('rmr-error', $e);\n drupal_set_message(t('When filling in the address directory, an error occurred').' More information in '.l('syslog','admin/reports/dblog').'.<br />'.$e->getMessage(), 'error', FALSE); return false;\n }\n return true;\n}", "function set_default_item_row( $item_row )\n{\n\tif ( empty($item_row['item_editor']) ) {\n\t\t$item_row['item_editor'] = $this->get_ini('item_editor_default') ;\n\t}\n\treturn $item_row;\n}", "public static function bootSegregating()\n {\n static::addGlobalScope(new EntityScope);\n\n static::creating(\n function ($model) {\n\n // only users can be created without requiring to be logged on\n// if (!Auth::check() && !is_a($model, config('ifrs.user_model'))) {\n// throw new UnauthorizedUser();\n// }\n\n if (Auth::check() && is_null($model->entity_id)) {\n $model->entity_id = Auth::user()->entity->id;\n }\n }\n );\n return null;\n }", "public function createHedgeOrderOnMarket(Hedge $hedge): Hedge\n {\n }", "public static function createByBiz ($row) {\n DBC::requireNotEmpty($row, \"GameCombatSwm::createByBiz row cannot empty\");\n\n $default = array();\n $default[\"gameid\"] = 0;\n $default[\"gameplayid\"] = 0;\n $default[\"firstresponsetime\"] = 0;\n $default[\"tokensearchtime\"] = 0;\n $default[\"lastresponsetime\"] = 0;\n $default[\"outerror\"] = 0;\n $default[\"innererror\"] = 0;\n $default[\"botherror\"] = 0;\n $default[\"clicknum\"] = 0;\n $default[\"boxnum\"] = 0;\n\n $row += $default;\n return new self($row);\n }", "public function testBindersInsertNewBinder()\n {\n }", "public static function ITEM_BRUSH_BRUSHING_GRAVEL(): SoundImpl\n {\n return new SoundImpl(SoundIds::ITEM_BRUSH_BRUSHING_GRAVEL);\n }", "public function initQB() {\r\n \tif(!$this->QB) {\r\n \t\t$this->QB = new QB($this->DB_TABLE, $this->DB_READ);\r\n \t\t\r\n \t\tif($this->DB_PRIMARY_KEYS) {\r\n \t\t\t\r\n \t\t\tif(is_array($this->DB_PRIMARY_KEYS)) {\r\n \t\t\t\tforeach($this->DB_PRIMARY_KEYS as $key) {\r\n \t\t\t\t\t$this->QB->addVar($key, QB::EQUALS);\r\n \t\t\t\t}\r\n \t\t\t} else {\r\n \t\t\t\t$this->QB->addVar($this->DB_PRIMARY_KEYS, QB::EQUALS);\r\n \t\t\t}\r\n \t\t}\r\n \t\t\r\n \t\t$this->configQB($this->QB);\r\n \t}\r\n }", "function push_to_booking_session( $args ) {\n $current = isset($_SESSION['_bdr_booking']) ? $_SESSION['_bdr_booking'] : array();\n $_SESSION['_bdr_booking'] = array_merge( $current, $args );\n \n return get_booking_session();\n}", "function public_use_item($inventory_ids = array()) { return; }", "private function enhance_items(): GildedRose {\n $enhanced_items = array();\n\n foreach ($this->get_items() as $key => $item) {\n // Create certain type item\n switch ($item->name) {\n case ItemEnhanced::TYPE_BACKSTAGE:\n $enhanced_items[$key] = new ItemEnhancedBackstage($item->name, $item->sell_in, $item->quality);\n break;\n case ItemEnhanced::TYPE_CONJURED:\n $enhanced_items[$key] = new ItemEnhancedConjured($item->name, $item->sell_in, $item->quality);\n break;\n case ItemEnhanced::TYPE_BRIE:\n $enhanced_items[$key] = new ItemEnhancedBrie($item->name, $item->sell_in, $item->quality);\n break;\n case ItemEnhanced::TYPE_SULFURAS:\n $enhanced_items[$key] = new ItemEnhancedSulfuras($item->name, $item->sell_in, $item->quality);\n break;\n default:\n $enhanced_items[$key] = new ItemEnhancedNormal($item->name, $item->sell_in, $item->quality);\n }\n }\n\n $this->items = $enhanced_items;\n return $this;\n }", "public function run()\n {\n factory(Sell::class, 10)->create();\n }", "function harry_bookings_custom_cart_item( $cart_item_data, $product_id, $variation_id){\n\t$harry_field = filter_input( INPUT_POST, 'harry-feild' );\n\tif ( empty( $harry_field ) ) {\n\t\treturn $cart_item_data;\n\t}\n\t$cart_item_data['harry-field'] = $harry_field;\n\n\treturn $cart_item_data;\n\n}", "public function initQuoteInsurances(Varien_Event_Observer $observer)\n {\n /* @var Mage_Sales_Model_Quote $quote */\n $quote = Mage::getSingleton('checkout/cart')->getQuote();\n\n foreach (Mage::helper('auguria_insurance')->getInsuranceIds() as $_id){\n if(!Mage::helper('auguria_insurance')->getInsuranceExcluded($_id)){\n\n try {\n $_insurance = Mage::getModel('catalog/product')->load($_id);\n if($_insurance->getAuguriaInsuranceIsDefault()){ // insurance is added by default\n $quote->addProduct($_insurance);\n }\n } catch (Exception $e) {\n Mage::logException($e);\n }\n }\n }\n }", "public function newAuction($new_auction_vars) {\n $new_auction_vars['refId'] = $this->token_generator->generateToken('AUCTION', 40);\n\n // // assign an address offset and an address\n // $new_auction_vars['keyToken'] = $this->token_generator->generateToken('ADDRESS', 42);\n\n // // new auctionAddress\n // $new_auction_vars['auctionAddress'] = $this->address_generator->publicAddress($new_auction_vars['keyToken']);\n\n // generate a new auction from xchain\n $address_info = $this->xchain_client->newPaymentAddress();\n $new_auction_vars['auctionAddress'] = $address_info['address'];\n $new_auction_vars['auctionAddressUuid'] = $address_info['id'];\n\n\n // and start a new monitor\n $monitor_info = $this->xchain_client->newAddressMonitor($new_auction_vars['auctionAddress'], $this->webhook_endpoint, 'receive', true);\n $new_auction_vars['xchainMonitorId'] = $monitor_info['id'];\n\n // build a slug\n $new_auction_vars['slug'] = $this->createSlug($new_auction_vars);\n\n // created TS\n $new_auction_vars['create'] = time();\n\n // timePhase\n $new_auction_vars['timePhase'] = 'prebid';\n\n // payouts\n $new_auction_vars['paidOut'] = false;\n $new_auction_vars['payoutReceipts'] = [];\n \n // logs\n $new_auction_vars['logs'] = [];\n\n // defaults\n if (!isset($new_auction_vars['platformAddress'])) { $new_auction_vars['platformAddress'] = $this->auction_defaults['platformAddress']; }\n if (!isset($new_auction_vars['confirmationsRequired'])) { $new_auction_vars['confirmationsRequired'] = $this->auction_defaults['confirmationsRequired']; }\n if (!isset($new_auction_vars['minStartingBid'])) { $new_auction_vars['minStartingBid'] = CurrencyUtil::numberToSatoshis($this->auction_defaults['minStartingBid']); }\n if (!isset($new_auction_vars['minBidIncrement'])) { $new_auction_vars['minBidIncrement'] = CurrencyUtil::numberToSatoshis($this->auction_defaults['minBidIncrement']); }\n if (!isset($new_auction_vars['bountyPercent'])) { $new_auction_vars['bountyPercent'] = $this->auction_defaults['bountyPercent']; }\n if (!isset($new_auction_vars['btcFeeRequired'])) { $new_auction_vars['btcFeeRequired'] = CurrencyUtil::numberToSatoshis($this->auction_defaults['btcFeeRequired']); }\n if (!isset($new_auction_vars['bidTokenFeeRequired'])) { $new_auction_vars['bidTokenFeeRequired'] = CurrencyUtil::numberToSatoshis($this->auction_defaults['bidTokenFeeRequired']); }\n if (!isset($new_auction_vars['prizeTokensRequired'])) { $new_auction_vars['prizeTokensRequired'] = []; }\n if (!isset($new_auction_vars['btcFeeSatisfied'])) { $new_auction_vars['btcFeeSatisfied'] = false; }\n if (!isset($new_auction_vars['bidTokenFeeSatisfied'])) { $new_auction_vars['bidTokenFeeSatisfied'] = false; }\n if (!isset($new_auction_vars['prizeTokensSatisfied'])) { $new_auction_vars['prizeTokensSatisfied'] = false; }\n\n // default state\n $default_state_vars = AuctionState::serializedInitialState();\n if (!isset($new_auction_vars['state'])) { $new_auction_vars['state'] = $default_state_vars; }\n\n // description as HTML\n $Parsedown = new Parsedown();\n $new_auction_vars['descriptionHTML'] = $Parsedown->text($new_auction_vars['description']);\n\n// // import the private key and address into the bitcoin wallet\n// if ($this->native_client) {\n// $private_key = $this->address_generator->WIFPrivateKey($new_auction_vars['keyToken']);\n\n// // unlock the wallet if needed\n// if ($this->wallet_passphrase) {\n// $result = $this->native_client->walletpassphrase($this->wallet_passphrase, 60);\n// # Debug::trace(\"called walletpassphrase result=\".Debug::desc($result).\"\",__FILE__,__LINE__,$this);\n// }\n\n// RetryController::retry(function() use ($new_auction_vars, $private_key) {\n// $result = $this->native_client->importprivkey($private_key, $new_auction_vars['auctionAddress'], false);\n// });\n// }\n \n\n $auction = $this->auction_directory->createAndSave($new_auction_vars);\n\n return $auction;\n }" ]
[ "0.51625264", "0.48177692", "0.457404", "0.4466704", "0.44257355", "0.43442523", "0.43418348", "0.43354124", "0.42999718", "0.4269317", "0.42413443", "0.42355374", "0.42337936", "0.4223538", "0.4192554", "0.4171681", "0.4162641", "0.41593608", "0.41438213", "0.4141471", "0.41320845", "0.41138014", "0.4096818", "0.40963364", "0.40934753", "0.40840685", "0.40822756", "0.4081904", "0.4076578", "0.40742165" ]
0.5707065
0
if the binder doesn't specify, create a default stockpile escrow account for currency escrowed during the bidding process. otherwise, use the escrow object specified by the binder.
protected function currencyEscrow( $stockpile ){ if( method_exists( $this->binder, 'currencyEscrow') ){ $user_id = ( $stockpile instanceof \Gaia\Stockpile\Iface ) ? $stockpile->user() : $stockpile; $stockpile = $this->binder->currencyEscrow( $user_id ); if( ! $stockpile instanceof \Gaia\Stockpile\Iface ) { throw new Exception('invalid stockpile object', $stockpile ); } return $stockpile; } if( ! $stockpile instanceof \Gaia\Stockpile\Iface ) $stockpile = $this->currencyAccount( $stockpile ); switch( $stockpile->coreType() ) { case 'tally': $class = '\gaia\stockpile\tally'; break; case 'serial-tally': $class = '\gaia\stockpile\hybrid'; break; default: throw new Exception('invalid stockpile object', $stockpile ); } return new $class( $stockpile->app() . '_souk', $stockpile->user()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function itemEscrow( $stockpile ){\n if( method_exists( $this->binder, 'itemEscrow') ){\n $user_id = ( $stockpile instanceof \\Gaia\\Stockpile\\Iface ) ? $stockpile->user() : $stockpile;\n $stockpile = $this->binder->currencyEscrow( $user_id );\n if( ! $stockpile instanceof Stockpile\\Iface ) {\n throw new Exception('invalid stockpile object', $stockpile );\n }\n return $stockpile;\n }\n if( ! $stockpile instanceof Stockpile\\Iface ) $stockpile = $this->itemAccount( $stockpile );\n \n switch( $stockpile->coreType() ) {\n case 'serial': \n $class = '\\gaia\\stockpile\\serial';\n break;\n \n case 'tally':\n $class = '\\gaia\\stockpile\\tally';\n break;\n \n case 'serial-tally':\n $class = '\\gaia\\stockpile\\hybrid';\n break;\n \n default:\n throw new Exception('invalid stockpile object', $stockpile );\n }\n \n return new $class( $stockpile->app() . '_souk', $stockpile->user());\n }", "protected function createQuoteBirdandco(){\n\n\t\tif($this->instantQuote->type == InstantQuote::TYPE_BUY_N_SELL) return;\n\n\t\t$request = new BirdandcoQuote($this->instantQuote);\n\n\t\tif($request->MakeQuote()){\n\t\t\t$this->saveQuote($this->instantQuote->id, $request->companyId, $request->parsedForm);\n\t\t}\n\t}", "protected function currencyAccount( $user_id ){\n $stockpile = $this->binder->currencyAccount( $user_id );\n if( ! $stockpile instanceof \\Gaia\\Stockpile\\Iface ) {\n throw new Exception('invalid stockpile object', $stockpile );\n }\n return $stockpile;\n }", "function bid( $id, $bid, array $data = NULL ){\n $d = new \\Gaia\\Store\\KVP( $data );\n // wrapped in try/catch so we can manage transactions.\n try {\n // kick off a transaction if we aren't attached to one already.\n Transaction::start();\n \n // send the bid off to the core object for the first step of the process.\n $listing = $this->prepListing( $this->core->bid( $id, $bid, $data ) );\n \n // grab the listing's state prior to the bid we just made.\n $prior = $listing->priorstate();\n \n // if there was a previous bid, take their bid out of escrow and refund it.\n if( $prior && ( ! $d->enable_proxy || $prior->proxybid != $listing->proxybid ) ){\n $this->cancelBid( $listing->priorstate(), $data );\n }\n\n // if the bid actually changed hands, go ahead and escrow funds for the bidder.\n // so that the bidder can actually pay for what they bid when the time comes.\n if( ! $d->enable_proxy || ! $prior || $prior->proxybid != $listing->proxybid ){\n \n // set up a transfer object between the currency account and the currency escrow.\n $bidder = $this->transfer( $this->currencyAccount($listing->bidder ), \n $this->currencyEscrow( $listing->bidder ) );\n \n // subtracting moves funds into escrow.\n $bidder->subtract( $this->currencyId(), $bid, $this->prepData( $data, $listing, 'bid') );\n }\n // commit the transaction if we started it.\n Transaction::commit();\n \n // all done. \n return $listing;\n \n } catch( Exception $e ){\n // evil! revert the transaction.\n Transaction::rollback();\n \n // toss the exception again up the chain.\n throw $e;\n }\n }", "protected function itemAccount( $user_id ){\n $stockpile = $this->binder->itemAccount( $user_id );\n if( ! $stockpile instanceof \\Gaia\\Stockpile\\Iface ) {\n throw new Exception('invalid stockpile object', $stockpile );\n }\n return $stockpile;\n }", "public function create($user_id, $data, $options = null) {\n foreach ($data as $k => $v) ${str_replace('-', '_', $k)} = $v;\n\n if (!empty($name) && !empty($type)) {\n $Slug = new Slug([\n 'DB' => $this->DB\n ]);\n\n // craft the op slug - only needs to be unique within account type\n $slug = $Slug->slugify_name($name, 'buyer_accounts', $type, 'buyer_account_type_id');\n\n if (empty($slug)) {\n throw new \\Exception('Slug generation failed');\n }\n\n // initialize operation\n $added = $this->add([\n 'buyer_account_type_id' => $type,\n 'name' => $name,\n 'slug' => $slug,\n 'bio' => (isset($bio)) ? $bio : '',\n 'stripe_customer_id' => (isset($stripe_customer_id)) ? $stripe_customer_id : '',\n 'referral_key' => $this->gen_referral_key(4, $name),\n 'created_on' => \\Time::now(),\n ]);\n\n if (!$added) {\n throw new \\Exception('Buyer account creation failed');\n }\n\n $buyer_account_id = $added['last_insert_id'];\n\n if (isset($address_line_1, $city, $state, $zipcode)) {\n $full_address = \"{$address_line_1}, {$city}, {$state}\";\n $prepared_address = str_replace(' ', '+', $full_address);\n\n $geocode = file_get_contents(\"https://maps.googleapis.com/maps/api/geocode/json?address={$prepared_address}&key=\" . GOOGLE_MAPS_KEY);\n $output = json_decode($geocode);\n\n $latitude = $output->results[0]->geometry->location->lat;\n $longitude = $output->results[0]->geometry->location->lng;\n\n $added = $this->add([\n 'buyer_account_id' => $buyer_account_id,\n 'address_line_1' => $address_line_1,\n 'address_line_2' => $address_line_2,\n 'city' => ucwords(strtolower($city)),\n 'state' => strtoupper($state),\n 'zipcode' => $zipcode,\n 'latitude' => $latitude,\n 'longitude' => $longitude\n ], 'buyer_account_addresses');\n \n if (!$added) {\n throw new \\Exception('We could not add your account\\'s location');\n }\n }\n\n // assign user ownership of new operation\n $association_added = $this->add([\n 'buyer_account_id' => $buyer_account_id,\n 'user_id' => $user_id,\n 'permission' => (isset($options, $options['permission'])) ? $options['permission'] : 2,\n 'is_default' => (isset($options, $options['is_default'])) ? $options['is_default'] : 1\n ], 'buyer_account_members');\n\n if (!$association_added) {\n throw new \\Exception('Account + User association failed');\n }\n \n return $buyer_account_id;\n } else {\n throw new \\Exception('Account name not supplied');\n }\n }", "public function getQuote()\n {\n if (is_null($this->_quote)) {\n $this->_quote = Mage::getModel('sales/quote');\n if ($this->getStoreId() && $this->getQuoteId()) {\n $this->_quote->setStoreId($this->getStoreId())\n ->load($this->getQuoteId());\n }\n elseif($this->getStoreId() && $this->hasCustomerId()) {\n $this->_quote->setStoreId($this->getStoreId())\n ->setCustomerGroupId(Mage::getStoreConfig(self::XML_PATH_DEFAULT_CREATEACCOUNT_GROUP))\n ->assignCustomer($this->getCustomer())\n ->setIsActive(false)\n ->save();\n $this->setQuoteId($this->_quote->getId());\n }\n $this->_quote->setIgnoreOldQty(true);\n $this->_quote->setIsSuperMode(true);\n }\n return $this->_quote;\n }", "public function run()\n {\n Model::unguard();\n\n ExchangeRate::create(['currency' => 'sgd']);\n }", "private function _prepareGuestQuote()\n {\n $quote = $this->_quote;\n\n $quote->setCustomerId(null);\n $quote->setCustomerEmail($quote->getBillingAddress()->getEmail());\n $quote->setCustomerIsGuest(true);\n $quote->setCustomerGroupId(GroupInterface::NOT_LOGGED_IN_ID);\n\n return $this;\n }", "public function bind() {\n\t\t$store = Mage::app()->getStore()->getStoreId();\n\n\t\t// Get the settings\n\t\t$name_of_main_bank = Mage::getStoreConfig( 'bankintegration/banksettings/bank1', $store );\n\t\t$bankcollection = Mage::getModel( 'bankintegration/bankintegration' )->getCollection();\n\t\t$baseonid = Mage::getStoreConfig( 'bankintegration/generalsettings/baseoninvoices' );\n\t\t$usem2epro = Mage::getStoreConfig( 'bankintegration/generalsettings/usem2epro', $store );\n\n\t\t// Iterate over all bank items\n\t\t$bankmodel = $bankcollection->addFieldToFilter( 'status', 'unbound' );\n\t\t$bankitems = $bankmodel->getItems();\n\t\tforeach ( $bankitems as $bankitem ) {\n\t\t\tMage::log( '[kinento-bankintegration] Processing bank-item with ID: '.$bankitem->getIdentifier(), null, 'kinento.log', true );\n\t\t\t$found = 0;\n\t\t\t$amount = $bankitem->getAmount();\n\n\t\t\t// Prepare the collections based on invoices or orders or both\n\t\t\t$idtypes = array();\n\t\t\tif ( $baseonid == 'orderid' || $baseonid == 'orderandinvoiceid' ) {\n\t\t\t\tarray_push( $idtypes, 'order' );\n\t\t\t}\n\t\t\tif ( $baseonid == 'invoiceid' || $baseonid == 'orderandinvoiceid' ) {\n\t\t\t\tarray_push( $idtypes, 'invoice' );\n\t\t\t}\n\t\t\t\n\t\t\tif ( $bankitem->getIdentifier() != ' ' && $bankitem->getIdentifier() != '' ) {\n\t\t\t\t// Check for IDENTIFIER and AMOUNT\n\t\t\t\tforeach ( $idtypes as $idtype ) {\n\t\t\t\t\t$identifiers = $this-> getIdentifiers($bankitem, $name_of_main_bank, $usem2epro);\n\t\t\t\t\t// Iterate over all the identifiers (normal: just one, Banco Monex: multiple)\n\t\t\t\t\tforeach ( $identifiers as $identifier ) {\n $collection = $this->getItemCollection($idtype, $identifier, $amount);\n\t\t\t\t\t\t$items = $collection->getItems();\n\t\t\t\t\t\tif ( !empty( $items ) ) {\n\t\t\t\t\t\t\tif ( $idtype == 'invoice' ) { $order = Mage::getModel( 'sales/order' )->loadByIncrementId( reset( $items )->getOrderIncrementId() ); }\n\t\t\t\t\t\t\telse { $order = reset( $items ); }\n\t\t\t\t\t\t\tMage::log( '[kinento-bankintegration] Found match (ID and amount) with order ID: '.$order->getIncrementId(), null, 'kinento.log', true );\n\t\t\t\t\t\t\tif ($this->bindorder( $order, $bankitem, 'certain' )) {\n\t\t\t\t\t\t\t\t// Continue with the next bank item and do not return from the method.\n continue 3;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Check for IDENTIFIER but not AMOUNT\n\t\t\t\tforeach ( $idtypes as $idtype ) {\n\t\t\t\t\t$identifiers = $this-> getIdentifiers($bankitem, $name_of_main_bank, $usem2epro);\n\t\t\t\t\t// Iterate over all the identifiers (normal: just one, Banco Monex: multiple)\n\t\t\t\t\tforeach ( $identifiers as $identifier ) {\n $collection = $this->getItemCollection($idtype, $identifier);\n\t\t\t\t\t\t$items = $collection->getItems();\n\t\t\t\t\t\tif ( !empty( $items ) ) {\n\t\t\t\t\t\t\tif ( $idtype == 'invoice' ) { $order = Mage::getModel( 'sales/order' )->loadByIncrementId( reset( $items )->getOrderIncrementId() ); }\n\t\t\t\t\t\t\telse { $order = reset( $items ); }\n\t\t\t\t\t\t\tMage::log( '[kinento-bankintegration] Found match (ID only) with order ID: '.$order->getIncrementId(), null, 'kinento.log', true );\n\t\t\t\t\t\t\tif ($this->bindorder( $order, $bankitem, 'guess' )) {\n // Continue with the next bank item and do not return from the method.\n\t\t\t\t\t\t\t\tcontinue 3;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tforeach ( $idtypes as $idtype ) {\n\t\t\t\t// Check for AMOUNT but not for IDENTIFIER\n $collection = $this->getItemCollection($idtype, null, $amount);\n\t\t\t\t$items = $collection->getItems();\n\t\t\t\tif (!empty($items)) {\n\t\t\t\t\tif ($idtype == 'invoice') {\n\t\t\t\t\t\t$order = Mage::getModel('sales/order')->loadByIncrementId(reset($items)->getOrderIncrementId());\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$order = reset($items);\n\t\t\t\t\t}\n\t\t\t\t\tMage::log('[kinento-bankintegration] Found match (amount only) with order ID: ' . $order->getIncrementId(), null, 'kinento.log', true);\n\t\t\t\t\t$this->bindorder($order, $bankitem, 'guess');\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( $found == 0 ) {\n\n\t\t\t\t// Still not found anything, check for CUSTOMER-NAME (heavy on processing - not working for invoice-based or Banco Monex)\n\t\t\t\t/*\n\t\t\t\tif ( $idtype == 'order' && \"Banco Monex\" != $name_of_main_bank ) {\n\t\t\t\t\t$datacollection = Mage::getResourceModel( 'sales/order_grid_collection' );\n\t\t\t\t\t$orders = $datacollection->getItems();\n\t\t\t\t\tif ( !empty( $orders ) ) {\n\t\t\t\t\t\t$bankname = strtoupper( $bankitem->getName() );\n\t\t\t\t\t\t$initialmatch = round( strlen( $bankname )/2 );\n\t\t\t\t\t\t$topmatch = $initialmatch;\n\t\t\t\t\t\t$toporder = reset( $orders );\n\t\t\t\t\t\tforeach ( $orders as $order ) {\n\t\t\t\t\t\t\t$customer = Mage::getModel( 'customer/customer' )->load( $order->getCustomerId() );\n\t\t\t\t\t\t\t$ordername = strtoupper( $customer->getFirstname().' '.$customer->getLastname() );\n\t\t\t\t\t\t\t$match = c( $bankname, $ordername );\n\t\t\t\t\t\t\tif ( $match > $topmatch ) {\n\t\t\t\t\t\t\t\t$topmatch = $match;\n\t\t\t\t\t\t\t\t$toporder = $order;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( $topmatch > $initialmatch ) {\n\t\t\t\t\t\t\t$found = 1;\n\t\t\t\t\t\t\t$this->bindorder( $toporder, $bankitem, 'guess' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t*/\n\t\t\t}\n\t\t}\n\t}", "public function market($exchange_name, $currencyPair, $bid, $ask, $last, $vol)\n {\n }", "protected function _saveStockItem()\n {\n $defaultStockData = array(\n 'manage_stock' => 1,\n 'use_config_manage_stock' => 1,\n 'qty' => 0,\n 'min_qty' => 0,\n 'use_config_min_qty' => 1,\n 'min_sale_qty' => 1,\n 'use_config_min_sale_qty' => 1,\n 'max_sale_qty' => 10000,\n 'use_config_max_sale_qty' => 1,\n 'is_qty_decimal' => 0,\n 'backorders' => 0,\n 'use_config_backorders' => 1,\n 'notify_stock_qty' => 1,\n 'use_config_notify_stock_qty' => 1,\n 'enable_qty_increments' => 0,\n 'use_config_enable_qty_inc' => 1,\n 'qty_increments' => 0,\n 'use_config_qty_increments' => 1,\n 'is_in_stock' => 0,\n 'low_stock_date' => null,\n 'stock_status_changed_auto' => 0,\n );\n\n if (version_compare(Mage::getVersion(), '1.7.0.0', 'ge')) {\n $defaultStockData['is_decimal_divided'] = 0;\n }\n\n $entityTable = Mage::getResourceModel('cataloginventory/stock_item')->getMainTable();\n $helper = Mage::helper('catalogInventory');\n $sku = null;\n\n while ($bunch = $this->_dataSourceModel->getNextBunch()) {\n $stockData = array();\n\n // Format bunch to stock data rows\n foreach ($bunch as $rowNum => $rowData) {\n if (!$this->isRowAllowedToImport($rowData, $rowNum)) {\n continue;\n }\n\n if (self::SCOPE_DEFAULT == $this->getRowScope($rowData)) {\n $sku = $rowData[self::COL_SKU];\n }\n\n //we have a non-SCOPE_DEFAULT row, we check if it has a stock_id, if not, skip it.\n if (self::SCOPE_DEFAULT != $this->getRowScope($rowData) && !isset($rowData['stock_id'])) {\n continue;\n }\n\n $row['product_id'] = $this->_newSku[$sku]['entity_id'];\n $row['stock_id'] = isset($rowData['stock_id']) ? $rowData['stock_id'] : 1;\n\n /** @var $stockItem Mage_CatalogInventory_Model_Stock_Item */\n $stockItem = Mage::getModel('cataloginventory/stock_item');\n $stockItem->loadByProduct($row['product_id']);\n $existStockData = $stockItem->getData();\n\n $row = array_merge(\n $row,\n $defaultStockData,\n array_intersect_key($existStockData, $defaultStockData),\n array_intersect_key($rowData, $defaultStockData)\n );\n\n $stockItem->setData($row);\n\n if ($helper->isQty($this->_newSku[$sku]['type_id'])) {\n if ($stockItem->verifyNotification()) {\n $stockItem->setLowStockDate(Mage::app()->getLocale()\n ->date(null, null, null, false)\n ->toString(Varien_Date::DATETIME_INTERNAL_FORMAT)\n );\n }\n $stockItem->setStockStatusChangedAutomatically((int) !$stockItem->verifyStock());\n } else {\n $stockItem->setQty(0);\n }\n $stockData[] = $stockItem->unsetOldData()->getData();\n }\n\n // Insert rows\n if ($stockData) {\n $this->_connection->insertOnDuplicate($entityTable, $stockData);\n }\n }\n return $this;\n }", "public function populateDefaults()\n {\n parent::populateDefaults();\n $this->Amount->Currency = EcommerceConfig::get('EcommerceCurrency', 'default_currency');\n $this->setClientIP();\n }", "public function saveBid(SaveBidRequest $request)\n\t{\n\t\t//dd('method hits');\n\t\t$validated = $request->validated();\n\t\t$user_id = Auth::id();\n\t\t$saveUsersShippingAddress = UsersShippingAddressModel::updateOrCreate(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'user_id'=> $user_id,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'default' => 1\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'first_name' => $validated['shipping_first_name'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'last_name' => $validated['shipping_last_name'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'phone_number' => $validated['shipping_phone'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'province' => $validated['shipping_province'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'full_address' => $validated['shipping_full_address'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'street_city' => $validated['shipping_street_city'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'country' => $validated['shipping_country'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'zip_code' => $validated['shipping_zip'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'status' => 1\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t]);\n\n\t\tif ($saveUsersShippingAddress->id) {\n\t\t\t$request->session()->put('shippingAddressId', $saveUsersShippingAddress->id);\n\t\t\t$saveUsersBillingAddress = UsersBillingAddressModel::updateOrCreate(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'user_id'=> $user_id,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'default' => 1\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'first_name' => $validated['shipping_first_name'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'last_name' => $validated['shipping_last_name'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'phone_number' => $validated['shipping_phone'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'province' => $validated['shipping_province'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'full_address' => $validated['shipping_full_address'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'street_city' => $validated['shipping_street_city'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'country' => $validated['shipping_country'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'zip_code' => $validated['shipping_zip'],\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'status' => 1\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t]);\n\n\t\t\tif ($saveUsersBillingAddress->id) {\n\t\t\t\t$request->session()->put('billingAddressId', $saveUsersBillingAddress->id);\n\n\t\t\t\t$bidDays = $validated['bid_days'];\n\t\t\t\t$expiryDate = Carbon::now()->addDays($bidDays);\n\n\n\t\t\t\t$shippingAddressId = $request->session()->get('shippingAddressId');\n\t\t\t\t$billingAddressId = $request->session()->get('billingAddressId');\n\t\t\t\t$shipping_price = $request->session()->get('shippingRate');\n\t\t\t\t$total_price = $request->session()->get('totalPrice');\n\t\t\t\t$commission_price = $request->session()->get('commissionPrice');\n\t\t\t\t$processing_fee = $request->session()->get('processingFee');\n\n\t\t\t\t$bidderPrimaryID = ProductsBidder::create([\n\t\t\t\t\t'user_id' => $user_id,\n\t\t\t\t\t'product_id' => $validated['hiddenProdId'],\n\t\t\t\t\t'size_id' => $validated['hiddenSizeId'],\n\t\t\t\t\t'actual_price' => $validated['hiddenPrice'],\n\t\t\t\t\t'bid_price' => $validated['bid_price'],\n\t\t\t\t\t'shipping_price' => $shipping_price,\n\t\t\t\t\t'total_price' => $total_price,\n\t\t\t\t\t'commission_price' => $commission_price,\n\t\t\t\t\t'processing_fee' => $processing_fee,\n\t\t\t\t\t'billing_address_id' => $billingAddressId,\n\t\t\t\t\t'shiping_address_id' => $shippingAddressId,\n\t\t\t\t\t'bid_expiry_date' => $expiryDate,\n\t\t\t\t\t'currency_code' => $validated['hiddenCurrency'],\n\t\t\t\t\t'status' => 0\n\t\t\t\t]);\n \n\t\t\t\t// this is temprory due to strict deadline, need\n\t\t\t\t// to modify with sessions\n\t\t\t\t$request->session()->put('bidPrimaryId', $bidderPrimaryID->id);\n\t\t\t\t$request->session()->put('type', 'bid');\n\t\t\t\t$request->session()->put('primary', $bidderPrimaryID->id);\n\t\t\t\t$validated['type'] = base64_encode('bid');\n\t\t\t\t$validated['primary'] = base64_encode($bidderPrimaryID->id);\n\n\t\t\t\treturn view('website.bid-sell-payment', $validated);\n\t\t\t}\n\n\t\t}\n\n\t}", "protected function _prepareGuestQuote()\n {\n $quote = $this->_quote;\n $quote->setCustomerId(null)\n ->setCustomerEmail($quote->getBillingAddress()->getEmail())\n ->setCustomerIsGuest(true)\n ->setCustomerGroupId(Mage_Customer_Model_Group::NOT_LOGGED_IN_ID);\n return $this;\n }", "public function sell($stock, $shares_numb, $accountnumber, $price, $amount, $stock_value){\n\t\t//connect to database\n\t\ttry{\n\t\t\t$db = connect_db();\n\t\t\t\n\t\t\n\t\t\t$result = $db->exec('INSERT INTO Brokerage_Transactions (accountnumber, stock, price, numb_shares, type_of_transaction, transaction_date) VALUES ('.$accountnumber.', \"'.$stock.'\", '.$price.', '.$shares_numb.', \"sell\", '.time().')');\n\t\t\n\t\t\t//add current loss and current profit\n\t\t\tif($stock_value < $price){ //if profit\n\t\t\t\t$db->exec('UPDATE brokerage_account SET currentprofit = currentprofit + ('.($price - $stock_value).'*'.$shares_numb.') WHERE accountnumber='.$accountnumber);\n\t\t\t}\n\t\t\telse{ //if loss\n\t\t\t\t$db->exec('UPDATE brokerage_account SET currentlost = currentlost + ('.($stock_value - $price).'*'.$shares_numb.') WHERE accountnumber='.$accountnumber);\n\t\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t//use amount to deduce from brokerage account balance.\n\t\t\t$db->exec('UPDATE Account SET balance = balance+'.$amount.' WHERE accountnumber='.$accountnumber);\n\t\t\t\n\t\t\t//echo $stock;\n\t\t\t//close db connection\n\t\t\t$db = NULL;\n\t\t}\n\t\tcatch (PDOException $e) { \n\t\t\tthrow new pdoDbException($e);\n\t\t\techo $e->getMessage();\t\t\t\n\t\t} \n\t}", "public static function createByBiz ($row) {\n DBC::requireNotEmpty($row, \"Depositeorder::createByBiz row cannot empty\");\n\n $default = array();\n $default[\"wxuserid\"] = 0;\n $default[\"userid\"] = 0;\n $default[\"patientid\"] = 0;\n $default[\"accountid\"] = '';\n $default[\"pay_wxshopid\"] = 0;\n $default[\"objtype\"] = '';\n $default[\"objid\"] = 0;\n $default[\"amount\"] = 0;\n $default[\"refund_amount\"] = 0;\n $default[\"recharge_type\"] = '';\n $default[\"recharge_status\"] = 0;\n $default[\"fangcun_trade_no\"] = '';\n $default[\"pay_platform_trade_no\"] = '';\n $default[\"wx_prepay_id\"] = '';\n $default[\"wx_unifiedorder_result_code\"] = '';\n $default[\"return_time\"] = '0000-00-00 00:00:00';\n $default[\"return_result_code\"] = '';\n $default[\"notify_time\"] = '0000-00-00 00:00:00';\n $default[\"notify_result_code\"] = '';\n $default[\"last_notify_time\"] = '0000-00-00 00:00:00';\n $default[\"last_notify_result_code\"] = '';\n $default[\"notify_cnt\"] = 0;\n $default[\"notify_last_errcode\"] = '';\n $default[\"orderquery_time\"] = '0000-00-00 00:00:00';\n $default[\"orderquery_response_content\"] = '';\n $default[\"orderquery_result_code\"] = '';\n $default[\"orderquery_trade_state\"] = '';\n $default[\"orderquery_trade_state_desc\"] = '';\n $default[\"remark\"] = '';\n\n $row += $default;\n $entity = new self($row);\n\n $ymd = date('Ymd');\n\n $entity->fangcun_trade_no = \"{$ymd}_{$entity->objid}_{$entity->id}\";\n\n return $entity;\n }", "public static function getDefaultPurse($user)\n {\n $userId = is_integer($user) ? $user : static::getUser($user)->getId();\n $model = self::findOne(['userId' => $userId, 'meta' => self::META_DEFAULT_PURSE]);\n if (!$model)\n throw new InvalidArgumentException(\"Purse not found for defined user.\");\n $purse = Purse::findOne($model->value);\n if (!$purse)\n throw new RuntimeException(\"Purse is not exist but information are saved before and not updated.\");\n\n return $purse;\n }", "function _tmr_fill_handbook_housing_stock(){\n try{\n db_truncate('tmr_handbook_housing_stock')->execute();\n \n $qToIns = db_select('tmr_main_data', 'md')->fields('md', array('md_st_key', 'md_st_name', 'md_house_key', 'md_house_num'));\n $qToIns->addExpression(REQUEST_TIME, 'date_change');\n $qToIns->groupBy('md_st_key,md_st_name,md_house_key,md_house_num');\n \n db_insert('tmr_handbook_housing_stock')->fields(array('hhs_st_key', 'hhs_st_name', 'hhs_house_key', 'hhs_hs_house', 'date_change'))\n ->from($qToIns)->execute();\n \n drupal_set_message(t('Filling handbook addresses successful.'));\n }\n catch(Exception $e){\n watchdog_exception('rmr-error', $e);\n drupal_set_message(t('When filling in the address directory, an error occurred').' More information in '.l('syslog','admin/reports/dblog').'.<br />'.$e->getMessage(), 'error', FALSE); return false;\n }\n return true;\n}", "function harry_bookings_custom_cart_item( $cart_item_data, $product_id, $variation_id){\n\t$harry_field = filter_input( INPUT_POST, 'harry-feild' );\n\tif ( empty( $harry_field ) ) {\n\t\treturn $cart_item_data;\n\t}\n\t$cart_item_data['harry-field'] = $harry_field;\n\n\treturn $cart_item_data;\n\n}", "public function createItem($data) {\n $date = Carbon::now();\n $date = getLocalDate($date);\n $date = $date->toDateTimeString();\n\n\n DB::beginTransaction();\n\n //start create user\n try {\n \n //get next account number\n /*$company_id = $new_user->company_id;\n $user_cd = $new_user->user_cd;\n $account_number = generate_account_number($company_id, $user_cd, '', $savings_product_id);\n\n $acct_attributes['account_no'] = $account_number;\n $acct_attributes['account_name'] = $new_user->first_name . ' ' . $new_user->last_name;\n $acct_attributes['product_id'] = $savings_product_id;\n $acct_attributes['company_id'] = $new_user->company_id;\n $acct_attributes['user_id'] = $new_user->id;\n\n $user_savings_account = $user_savings_account::create($acct_attributes);*/\n\n \n $new_user = new User();\n $new_user = $new_user::create($data);\n\n } catch(\\Exception $e) {\n \n DB::rollback();\n throw new StoreResourceFailedException($e);\n\n }\n //end create user\n\n\n DB::commit();\n\n return $new_user;\n\n }", "function __construct(){\n\n $this->PayFlowProClient = new buzz;\n\n }", "protected function prepareGuestQuote()\n {\n $quote = $this->quote;\n $quote->setCustomerId(null)\n ->setCustomerEmail($quote->getBillingAddress()->getEmail())\n ->setCustomerIsGuest(true)\n ->setCustomerGroupId(\\Magento\\Customer\\Model\\Group::NOT_LOGGED_IN_ID);\n return $this;\n }", "protected function _prepareGuestQuote()\n {\n $quote = $this->_quote;\n $quote->setCustomerId(null)->setCustomerIsGuest(true)\n ->setCustomerGroupId(Mage_Customer_Model_Group::NOT_LOGGED_IN_ID);\n return $this;\n }", "public function __construct( Iface $core, StockpileBinder_Iface $binder ){\n parent::__construct( $core );\n $this->binder = $binder;\n }", "public function __construct()\n {\n parent::__construct();\n $this->exchange = \\App\\Exchange::firstOrCreate(['name'=>'GDAX']);\n $this->api = new \\App\\Exchange\\Gdax();\n }", "function actionBindAccount(){\t\t\r\n\t header('Content-type: application/json');\r\n//\t if(!Yii::app()->request->isPostRequest){ \r\n//\t \t\t IjoyPlusServiceUtils::exportServiceError(Constants::METHOD_NOT_SUPPORT);\r\n//\t \t\t return ;\r\n//\t \t}\r\n\t if(!IjoyPlusServiceUtils::validateAPPKey()){\r\n \t \t IjoyPlusServiceUtils::exportServiceError(Constants::APP_KEY_INVALID);\t\t\r\n\t\t return ;\r\n\t\t}\r\n\t\tif(IjoyPlusServiceUtils::validateUserID()){\r\n\t\t\tIjoyPlusServiceUtils::exportServiceError(Constants::USER_ID_INVALID);\t\r\n\t\t\treturn ;\r\n\t\t}\r\n\t\t$sourceid= Yii::app()->request->getParam(\"source_id\");\r\n\t\t$source_type= Yii::app()->request->getParam(\"source_type\");\r\n\t\t$nickname= Yii::app()->request->getParam(\"nickname\");\r\n\t\t$pic_url= Yii::app()->request->getParam(\"pic_url\");\r\n\t\t$userid=Yii::app()->user->id;\r\n\t\tif(IjoyPlusServiceUtils::validateThirdPartSource($source_type)){\r\n\t\t\t$code = User::model()->bindAccount($userid, $sourceid, $source_type);\r\n\t\t\tif(Constants::SUCC === $code){\r\n\t\t\t\tif(isset($nickname) && !is_null($nickname)){\r\n\t\t\t\t\tUser::model()->updateNickname($userid, $nickname);\r\n\t\t\t\t}\r\n\t\t\t\tif(isset($pic_url) && !is_null($pic_url)){\r\n\t\t\t\t\tUser::model()->updatePicUrl($userid, $pic_url);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\tYii::app()->user->setState('nickname', $nickname);\r\n\t Yii::app()->user->setState('pic_url', $pic_url);\r\n\t\t\tIjoyPlusServiceUtils::exportServiceError($code);\r\n\t\t}else{\r\n\t\t\tIjoyPlusServiceUtils::exportServiceError(Constants::THIRD_PART_SOURCE_TYPE_INVALID);\r\n\t\t}\r\n\t}", "protected function getECashProvider(array $companies)\n\t{\n\t\t$provider = new OLPBlackbox_Enterprise_Generic_ECashProvider(\n\t\t\t$companies\n\t\t);\n\t\treturn $provider;\n\t}", "public function createWithAssociations($blueprint_name, $associations = array(), $overrides = array()) {\n if(! ($blueprint = $this->_blueprints[$blueprint_name]) ) {\n throw new \\Exception(\"No blueprint defined for '$blueprint_name'\");\n }\n \n return $blueprint->create($overrides, $associations);\n }", "public function initQuoteInsurances(Varien_Event_Observer $observer)\n {\n /* @var Mage_Sales_Model_Quote $quote */\n $quote = Mage::getSingleton('checkout/cart')->getQuote();\n\n foreach (Mage::helper('auguria_insurance')->getInsuranceIds() as $_id){\n if(!Mage::helper('auguria_insurance')->getInsuranceExcluded($_id)){\n\n try {\n $_insurance = Mage::getModel('catalog/product')->load($_id);\n if($_insurance->getAuguriaInsuranceIsDefault()){ // insurance is added by default\n $quote->addProduct($_insurance);\n }\n } catch (Exception $e) {\n Mage::logException($e);\n }\n }\n }\n }" ]
[ "0.5514333", "0.5348747", "0.4978474", "0.49472296", "0.47781444", "0.45240855", "0.44496524", "0.43569165", "0.4345532", "0.43367326", "0.4325182", "0.43133005", "0.42798445", "0.42501834", "0.42345744", "0.42336306", "0.42201722", "0.42066038", "0.42058918", "0.42055032", "0.41991746", "0.41825524", "0.4159648", "0.4154859", "0.41511306", "0.41409615", "0.41348878", "0.41264164", "0.41155574", "0.41109863" ]
0.54754597
1
construct class optional load data with auto type recognition ini string or assoz array
public function __construct($data = false) { $this->data = []; // select data type if (is_string($data)) { $this->load_ini_string($data); } elseif (is_array($data)) { $this->load_array($data); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function __construct() {\n\t\t$args = func_get_args();\n\t\t$argsnb = func_num_args();\n\t\t\t\n\t\tswitch($argsnb) {\n\t\t\tcase 1:\n\t\t\tif (is_array($args[0])) {\n\t\t\t\tif (is_array($args[0][0])) {\n\t\t\t\t\t$this->deserialize($args[0][0]);\n\t\t\t\t}\n\t\t\t\telse $this->deserialize($args[0]);\n\t\t\t}\n\t\t\telse {\n\t\t\t\t$this->id = $args[0];\n\t\t\t\t$this->load();\n\t\t\t}\n\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t$this->deserialize($args);\n\t\t}\n\t}", "public function __construct($data = []) {\n\t\t$this->loadArray($data);\n\t}", "public function __construct($arrInformation = array())\n\t{\n\t\tforeach ($arrInformation as $strKey => $varValue)\n\t\t{\n\t\t\t$this->set($strKey, deserialize($varValue));\n\t\t}\n\t}", "public function initFromArray($o) {\n parent::initFromArray($o);\n if( isset($o['textType']) ) {\n $this->textType = $o[\"textType\"];\n }\n if( isset($o['extracted']) ) {\n $this->extracted = $o[\"extracted\"];\n }\n if( isset($o['type']) ) {\n $this->type = $o[\"type\"];\n }\n if( isset($o['text']) ) {\n $this->text = $o[\"text\"];\n }\n }", "public function __construct($data = null){\r\n\t\t\tif($data)$this->load($data);\r\n\t\t}", "public function __construct(array $data);", "public function fromArray($data);", "private function __construct($filepath, $type = 'ARRAY')\n {\n $this->options = include $filepath;\n }", "abstract public function __construct(array $data = []);", "public function __construct($name = NULL, $data = NULL, $type = NULL)\n\t{\n\t\tif (is_string($name) AND $name !== '')\n\t\t{\n\t\t\t// Set the filename\n\t\t\t$this->set_filename($name, $type);\n\t\t}\n\n\t\tif (is_array($data) AND ! empty($data))\n\t\t{\n\t\t\t// Preload data using array_merge, to allow user extensions\n\t\t\t$this->phpill_local_data = array_merge($this->phpill_local_data, $data);\n\t\t}\n\t}", "public function __construct($data = []);", "abstract protected function load(): array;", "function __construct ($data = array()) {\r\n if (count($data)) {\r\n foreach ($data as $key => $value) {\r\n if (property_exists($this, $key)) {\r\n $this->{$key} = $value;\r\n }\r\n }\r\n }\r\n\r\n // Defaults\r\n if ($this->fallback === null) $this->fallback = '';\r\n if ($this->text === null) $this->text = '';\r\n if (!is_array($this->fields)) $this->fields = array();\r\n if ($this->mrkdwn_in === null) $this->mrkdwn_in = array('pretext', 'text', 'fields');\r\n }", "function __construct(string $data)\n {\n list($type, $data) = explode(';', $data);\n list(, $data) = explode(',', $data);\n $this->decodeImg($data);\n }", "public function loadAndParse() : array ;", "public function initFromArray($o) {\n if( isset($o['base']) ) {\n $this->base = $o[\"base\"];\n }\n if( isset($o['lang']) ) {\n $this->lang = $o[\"lang\"];\n }\n }", "public abstract function loadArray();", "function initFromArray($array){\n\t\t$type = $array['Type'];\n\t\t$length = $type;\n\t\t$mandatory = true;\n\n\t\t$this->setSQL(true);\n\t\t//extracting type\n\n\t\t$pos = strpos($type,'(');\n\t\tif ($pos !== false){\n\t\t\t$type = substr($type,0,$pos);\n\t\t}\n\n\n\t\t//extracting length\n\t\t$pos = strpos($length,'(');\n\t\tif($pos !==false){\n\t\t\t$len = (strpos($length,')') - ($pos)-1);\n\t\t\t$length = substr($length,$pos+1,$len);\n\t\t}\n\t\t//extracting enum\n\t\tif($type == 'enum'){\n\t\t\t$values = explode(',',str_replace('\\'','',$length));\n\t\t\t$datas = $values; //for select or listboxes\n\t\t\t$this->setValues($datas);\n\t\t} else {\n\t\t\t$datas = '';\n\t\t}\n\t\tif($array['Null']=='YES'){\n\t\t\t$mandatory = false;\n\t\t}\n\n\t\tif($array['Key']=='PRI'){\n\t\t\t$this->setPrimaryKey(true);\n\t\t}\n\n\t\t//var_dump($array);\n\n\t\t$this->setFunctionValue(false);\n\t\t$this->setType($type);\n\n\t\t$this->setMaxLength($length);\n\n\t\t$this->setMandatory($mandatory);\n\n\t\tif($mandatory){\n\t\t\t$this->setMinLength(1);\n\t\t}\n\n\t\t$this->setName($array['Field']);\n\n\t\t$this->setAlias($array['Field']);\n\t\t$this->setLabel($array['Field']);\n\n\t\t$this->setFlags($array['Extra']);\n//var_dump($array['Collation']);\n\t\t$this->setCollation($array['Collation']);\n\t//\tvar_dump($array['Collation'],$array['Field']);\n\t\t// if this is a foreign key, we load the Entity for the remote table and set the field into the key\n\t\tif($o = Env::getDatabase()->getForeignKey($this->getEntity()->getTable(),$this->getName())){\n\t\t\t// setting entity for the field\n\t\t\t//var_dump($o);\n\t\t\t$e = Entity::create($o->remoteField->table)->loadFromTable($o->remoteField->table);\n\t\t\t$remoteName= ($o->remoteField->field);\n\n\t\t\t$this->setForeignKey($e);\n\n\t\t\tif($field = $e->getFieldByAlias($remoteName)){\n\t\t\t\t$this->setKey($field);\n\t\t\t}\n\n\t\t\t$this->setType('select');\n\t\t}\n\t\t$this->parseCommentString($array['Comment']);\n\n\t\t$this->init();\n\t\treturn $this;\n\t}", "function __construct(){\n\t\t\t$this->initPropertiesFromArray(array());\n\t\t}", "public function initFromArray($o) {\n parent::initFromArray($o);\n if( isset($o['type']) ) {\n $this->type = $o[\"type\"];\n }\n if( isset($o['preferred']) ) {\n $this->preferred = $o[\"preferred\"];\n }\n if( isset($o['date']) ) {\n $this->date = new \\Org\\Gedcomx\\Conclusion\\DateInfo($o[\"date\"]);\n }\n $this->nameForms = array();\n if( isset($o['nameForms']) ) {\n foreach( $o['nameForms'] as $i => $x ) {\n $this->nameForms[$i] = new \\Org\\Gedcomx\\Conclusion\\NameForm($x);\n }\n }\n }", "protected abstract function load();", "public function fromArray($data) {\n if (!isset($data[\"dataType\"]) || $data[\"dataType\"] != \"Source\")\n return false;\n\n parent::fromArray($data);\n\n if (isset($data[\"language\"]) && $data[\"language\"] != null)\n $this->language = new Language($data[\"language\"]);\n else\n $this->language = null;\n\n if (isset($data[\"type\"]) && $data[\"type\"] != null)\n $this->type = new Term($data[\"type\"]);\n else\n $this->type = null;\n\n if (isset($data[\"uri\"]))\n $this->uri = $data[\"uri\"];\n else\n $this->uri = null;\n\n if (isset($data[\"displayName\"]))\n $this->displayName = $data[\"displayName\"];\n else\n $this->displayName = null;\n\n if (isset($data[\"citation\"]))\n $this->citation = $data[\"citation\"];\n else\n $this->citation = null;\n\n if (isset($data[\"text\"]))\n $this->text = $data[\"text\"];\n else\n $this->text = null;\n\n if (isset($data[\"note\"]))\n $this->note = $data[\"note\"];\n else\n $this->note = null;\n\n return true;\n\n }", "protected function init()\n {\n $values = explode('/', $this->value);\n $this->type = $values[0];\n $this->subtype = isset($values[1]) ? $values[1] : '*';\n }", "function __construct($arg=null)\n {\n $this->data = $arg;\n $this->type = typeOf($arg);\n }", "public function __construct($ini)\n {\n foreach ($ini as $var => $data) {\n $this->$var = $data;\n }\n if (!empty($this->text_string)) {\n $this->win2uni();\n }\n }", "public function __construct()\n\t{\n\t\t$args = func_get_args();\n if (empty($args[0])) {\n\t\t\t$args[0] = array();\n }\n $this->data = (array)$args[0];\n\t}", "public abstract function load();", "public function __construct( Array $data ) {\n $this->name = $data['name'];\n $this->data = json_decode($data['data']);\n }", "function __construct ($data = array()) {\r\n if (count($data)) {\r\n foreach ($data as $key => $value) {\r\n if (property_exists($this, $key)) {\r\n $this->{$key} = $value;\r\n }\r\n }\r\n }\r\n\r\n // Defaults\r\n if ($this->title === null) $this->title = '';\r\n if ($this->value === null) $this->value = '';\r\n if ($this->short === null) $this->short = 'false';\r\n }", "public function __construct()\n {\n $this->typeList = array(\n 'helicopter' =>'\\Helicopter',\n 'car' => '\\Car',\n 'battleship' => '\\Battleship'\n );\n }" ]
[ "0.67123187", "0.63545686", "0.60978174", "0.6063202", "0.5981948", "0.59665143", "0.5940613", "0.5888149", "0.58803344", "0.58729935", "0.5838815", "0.57924384", "0.5784536", "0.5777972", "0.57734025", "0.5754418", "0.5722913", "0.57144034", "0.57080567", "0.5704921", "0.5691548", "0.5681675", "0.5680445", "0.56780493", "0.5677601", "0.567701", "0.56765413", "0.5668343", "0.5649797", "0.5641206" ]
0.7117628
0
load ini string if string is file and exists, load file
public function load($ini_string) { // is string or path if (is_string($ini_string)) { // is path if (file_exists($ini_string)) { $this->data = parse_ini_file($ini_string, true); } // is string else { $this->data = parse_ini_string($ini_string, true); } } // load string else { $this->load_array($ini_string); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function parseIni($src)\n {\n if (file_exists($src)) {\n return parse_ini_file($src, true);\n } else {\n return false;\n }\n \n }", "public static function load($field, $file, $type = '') {\n if (!is_file($file) || isset(self::$files[$field]) || strpos($field, '.') !== false) {\n return false;\n }\n\n // Find type using file extension\n if (empty($type)) {\n $type = substr($file, strrpos($file, '.') + 1);\n }\n\n switch(strtolower($type)) {\n case 'ini':\n self::$configs[$field] = parse_ini_file($file, true);\n break;\n case 'php':\n include_once $file;\n\n if (isset(${$field})) {\n self::$configs[$field] = ${$field};\n }\n\n unset(${$field});\n\n break;\n case 'xml':\n self::$configs[$field] = simplexml_load_file($file);\n break;\n case 'json':\n self::$configs[$field] = json_decode(file_get_contents($file), true);\n break;\n default:\n return false;\n }\n\n // Saving the file\n self::$files[$field] = array($file, $type);\n\n return true;\n }", "public static function load() {\n self::$config = parse_ini_file(dirname(__FILE__) . \"/../configuration.loli\", true);\n }", "private function loadConfig()\n {\n $this->config = parse_ini_file('config.ini', true);\n }", "public static function setIni($ini_file){\n \n self::$_storage = parse_ini_file($ini_file, TRUE);\n\n }", "static function load($file = null){\n if($file != null && file_exists($file))\n return static::$user = parse_ini_file($file,true);\n }", "private static function loadIni($srcFile)\n\t{\n\t\t$success = false;\t\t\n\t\t$result = parse_ini_file($srcFile);\n\t\t\n\t\tif($result){\n\t\t\t$success = true;\n\t\t\tself::$ini = $result;\n\t\t}\n\t\t\n\t\treturn $success;\n\t}", "function php_ini_loaded_file () {}", "public static function load($file = NULL) {\n\t\t$config = \"\";\n\t\t// self::reset();\n\t\t$file = ($file === null) ? static::$file : $file;\n\t\tif (file_exists($file))\n\t\t\trequire($file);\n\t\telse {\n\t\t\tfile_put_contents($file, self::defaultSettings());\n\t\t\trequire($file);\n\t\t}\n\t\tstatic::$_setting = $config;\n\n\t}", "public function getFile($path){\n\t\tif (file_exists($path)){\n\t\t\t$file = parse_ini_file($path);\n\t\t\treturn $file;\n\t\t}else{\n\t\t\techo 'Invalid file';\n\t\t}\n\t}", "protected function load_file($file) {\n\t\t$contents = $this->parse_vars ( file_get_contents ( $file ) );\n\t\treturn parse_ini_string ( $contents, true );\n\t}", "public function LoadAuthINIFile($auth_inifile) {\n \n $result = FALSE;\n \n $inifile = realpath($auth_inifile);\n if(!file_exists($inifile)) {\n throw new \n Exception(\"File not found: '$auth_inifile'\");\n }\n \n $auth = parse_ini_file($inifile, TRUE);\n if(!$auth) {\n throw new Exception(\"Not INI file format: '$auth_inifile'\");\n }\n $result = $this->LoadAuth((array)$auth);\n \n return $result;\n \n }", "public static function init($configFile) {\r\n self::$config = parse_ini_file($configFile, true);\r\n }", "public function _Read_INI()\n\t{\n\t\t$this->props = parse_ini_file($this->inifile,true);\t\t\n\t}", "public function loadINIFile($domain,$module='') {\n global $app;\n $file = $domain.'.ini';\n if($module=='') $prefix = 'core';\n else $prefix = $module;\n // default ('en') locale file\n if($this->t_locale!='en') {\n if($module!='')\n $i_file = MySB_ROOTPATH.'/modules/'.$module.'/locales/en/'.$file;\n else $i_file = MySB_ROOTPATH.'/locales/en/'.$file;\n //echo $i_file.'<br>';\n if(file_exists($i_file)) {\n $ini_array = parse_ini_file($i_file);\n foreach($ini_array as $id => $str) \n if($str!=\"\")\n $this->array_locales[$id] = $str;\n }\n }\n // locale file\n if($module!='')\n $i_file = MySB_ROOTPATH.'/modules/'.$module.'/locales/'.$this->t_locale.'/'.$file;\n else $i_file = MySB_ROOTPATH.'/locales/'.$this->t_locale.'/'.$file;\n //echo $i_file.'<br>';\n if(file_exists($i_file)) {\n $ini_array = parse_ini_file($i_file);\n foreach($ini_array as $id => $str) \n if($str!=\"\")\n $this->array_locales[$id] = $str;\n }\n // locale INI custom file (custom/core_fr_*.php)\n $i_file = MySB_ROOTPATH.'/custom/'.$prefix.'_'.$this->t_locale.'_'.$file;\n //echo $i_file.'<br>';\n if(file_exists($i_file)) {\n $ini_array = parse_ini_file($i_file);\n foreach($ini_array as $id => $str) \n if($str!=\"\")\n $this->array_locales[$id] = $str;\n }\n }", "public function LoadSettingsINIFile($settings_inifile) {\n \n $result = FALSE;\n \n $inifile = realpath($settings_inifile);\n if(!file_exists($inifile)) {\n throw new \n Exception(\"File not found: '$settings_inifile'\");\n }\n \n $settings = parse_ini_file($inifile, TRUE);\n if(!$settings) {\n throw new Exception(\"Not INI file format: '$settings_inifile'\");\n }\n $result = $this->LoadSettingsExt((array)$settings);\n \n return $result;\n \n }", "public function loadIni($path) {\n\t\tif (!is_file($path))\n\t\t\tthrow new ScientiaFileNotFound($path . ' was not found.');\n\t\treturn parse_ini_file($path);\n\t}", "protected function loadConfig($file)\n\t{\n\t\t$this->config = parse_ini_file($file, false);\n\t}", "public function loadConfig($file)\n {\n if ($data = @parse_ini_file($file)) {\n return $data;\n }\n\n echo 'Not a config file ' . $file;\n echo '<br><a href=\"index.php\">Back</a>';\n exit;\n }", "function parse_ini_string ($ini, $process_sections = false, $scanner_mode = 'INI_SCANNER_NORMAL') {}", "public static function parseConfigFile($config) {\n\t\tif (preg_match(\"/.*(.ini)$/i\", $config)) {\n\t\t\treturn parse_ini_file($config, true); \n\t\t} \n\t\treturn require_once($config);\n\t}", "function read($file,$section=false){\n\t\treturn parse_ini_file($file,$section);\n\t}", "public static function loadConfigFile()\n {\n if (null !== self::$config) {\n return;\n }\n $config_file = DOCUMENT_ROOT . '/config.ini';\n if (! is_readable($config_file)) {\n throw new \\ProgrammerException(\n \"Can't read $config_file or it does not exist\"\n );\n }\n self::$config = parse_ini_file($config_file);\n }", "private static function ini()\n {\n\n $ini = parse_ini_file(self::$gloadal_file_path, true, INI_SCANNER_TYPED);\n\n if(!empty($ini)){\n foreach ($ini as $name => $value) {\n\n $GLOBALS[$name] = $value;\n\n }\n }\n }", "private function _load_conf() {\n $conf_content = file_get_contents($this->conf);\n if (strlen($conf_content) < 15 || substr($conf_content, 0, 15) != 'upage_conf_file')\n echo \"Config file in incorrect format: \" . $conf_content;\n $args = explode(\"\\n\", $conf_content);\n\n $this->disallowed_words = explode(\";\", $args[1]);\n $this->is_debug = $args[2] == \"true\";\n }", "protected function load_from_ini(string $path, string $section_name)\n {\n if (file_exists($path)) {\n $config = parse_ini_file($path, true);\n\n if (!empty($config[$section_name])) {\n foreach ($this->credentials as $parameter_name => $parameter_value) {\n if (!empty($config[$section_name][$parameter_name])) {\n $this->credentials[$parameter_name] =\n $config[$section_name][$parameter_name];\n } else {\n $this->error = \"Cannot find \\\"\".$parameter_name.\"\\\" parameter!\\n\";\n err_log($this->error);\n break;\n }\n }\n\n } else {\n $this->error = \"Connection credentials for [\"\n .$section_name.\"] not found!\\n\";\n err_log($this->error);\n }\n\n } else {\n $this->error = \"Unable to find config file in \".$path.\"!\";\n err_log($this->error);\n }\n }", "public static function read($filename, $asObject = false) {\n if (file_exists ($filename)) {\n if ($asObject) {\n return (object) parse_ini_file($filename, true);\n }\n else {\n return parse_ini_file($filename, true);\n }\n }\n else {\n return false;\n }\n }", "function loadConfig($file){\r\n\t$path = configPath().$file;\r\n\r\n\t// Si le fichier de config a été trouvé, on décode le json et on le retourne sous forme d'objet\r\n\tif(file_exists($path)){\r\n\r\n\t\t$json_str = file_get_contents($path);\r\n\r\n\t\t// Si un problèmes survient lors du décodage du fichier json\r\n\t\tif(!$json_str){\r\n\t\t\tthrow new Exception(\"Le fichier n'a pu êtres décodé\");\r\n\t\t\tdie();\r\n\t\t}\r\n\r\n\t\treturn json_decode($json_str);\r\n\r\n\t}\r\n\telse // Sinon \r\n\t{\r\n\t\tthrow new Exception(\"Le fichier de configuration n'a pu êtres trouvé !\");\r\n\t\tdie();\r\n\t}\r\n}", "function load_config(){\n\t\tif(!$this->exist($this->file_name)){\n\t\t\t$converted=file_get_contents($this->file_path);\n\t\t\t$func=$this->demons[$this->format][\"decode\"];\n\t\t\t$this->data[$this->file_name]= $func($converted);\n\t\t}\n\t\treturn $this->data[$this->file_name];\n\t}", "public function loadIniFile( $sIniPath ) {\n\t\t\n\t\tif ( ! file_exists( $sIniPath ) ) {\n\t\t\tthrow new Lithium_Exception( 'Incorrect INI file path' );\n\t\t}\n\t\t\n\t\t$aIniConfig = parse_ini_file( $sIniPath, true );\n\t\t\n\t\tforeach ( $aIniConfig as $sSectionName => $aSettings ) {\n\t\t\t\n\t\t\tforeach ( $aSettings as $sName => $mValue ) {\n\t\t\t\t\n\t\t\t\t// check do we have deeper levels\n\t\t\t\t$aPath = explode( '.', $sName );\n\t\t\t\tif ( isset( $aPath[1] ) ) {\n\t\t\t\t\t\n\t\t\t\t\t// parse deeper level and add them to config array\n\t\t\t\t\tforeach ( $aPath as $iKey => $sKey ) {\n\t\t\t\t\t\t$aPath[ $iKey ] = strtolower( $sKey );\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\teval( '$this->aConfigValues[ strtolower( $sSectionName ) ][\"' . implode( '\"][\"', $aPath ) . '\"] = $mValue;' );\n\t\t\t\t\t\n\t\t\t\t} else {\n\t\t\t\t\t$this->aConfigValues[ strtolower( $sSectionName ) ][ strtolower( $sName ) ] = $mValue;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t} // foreach\n\t\t\t\n\t\t} // foreach\n\t\t\n\t}" ]
[ "0.6531426", "0.6421471", "0.6420422", "0.63484585", "0.62535965", "0.6249397", "0.62112355", "0.6189969", "0.61544615", "0.614621", "0.6077306", "0.60247296", "0.59978706", "0.59976274", "0.5936928", "0.59135133", "0.58427477", "0.58424324", "0.5818843", "0.58121294", "0.5806656", "0.58011454", "0.5779288", "0.57788247", "0.5772572", "0.571689", "0.5695434", "0.56895787", "0.5679962", "0.5662051" ]
0.7275368
0
Test that DAF (Donor Advised Fund) thank you mails do not have tax information
public function testSendDAFThankYou() { variable_set( 'thank_you_add_civimail_records', 'false' ); // Set the gift source to Donor Advised Fund $custom_field_name = wmf_civicrm_get_custom_field_name( 'Gift Source' ); civicrm_api3( 'Contribution', 'create', array( 'id' => $this->contribution_id, $custom_field_name => 'Donor Advised Fund', ) ); $result = thank_you_for_contribution( $this->contribution_id ); $this->assertTrue( $result ); $this->assertEquals( 1, TestMailer::countMailings() ); $sent = TestMailer::getMailing( 0 ); $this->assertEquals( $this->message['email'], $sent['to_address'] ); $this->assertEquals( "{$this->message['first_name']} {$this->message['last_name']}", $sent['to_name'] ); $expectedBounce = "ty.{$this->contact_id}.{$this->contribution_id}" . '@donate.wikimedia.org'; $this->assertEquals( $expectedBounce, $sent['reply_to'] ); $this->assertRegExp( '/\$ 1.23/', $sent['html'] ); // Check that tax information has been removed $this->assertNotRegExp( '/tax-exempt number/', $sent['html'] ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function testMinFraudExtrasNoAddress() {\n\t\t$options = $this->getDonorTestData( 'BR' );\n\t\t$options['email'] = '[email protected]';\n\t\t$options['payment_method'] = 'cc';\n\n\t\t$gateway = $this->getFreshGatewayObject( $options );\n\n\t\t$this->setMwGlobals( [\n\t\t\t'wgDonationInterfaceMinFraudExtraFields' => [\n\t\t\t\t'email',\n\t\t\t\t'first_name',\n\t\t\t\t'last_name',\n\t\t\t\t'street_address',\n\t\t\t\t'amount',\n\t\t\t\t'currency'\n\t\t\t]\n\t\t] );\n\t\t$this->request->expects( $this->once() )\n\t\t\t->method( 'post' )\n\t\t\t->with(\n\t\t\t\t'{\"billing\":{\"country\":\"BR\",\"first_name\":\"Nome\",' .\n\t\t\t\t'\"last_name\":\"Apelido\"},\"device\":{\"ip_address\":\"127.0.0.1\"},' .\n\t\t\t\t'\"email\":{\"address\":\"[email protected]\",\"domain\":' .\n\t\t\t\t'\"wikipedia.org\"},\"event\":{\"transaction_id\":\"' .\n\t\t\t\t$gateway->getData_Unstaged_Escaped( 'contribution_tracking_id' ) .\n\t\t\t\t'\"},\"order\":{\"amount\":\"100.00\",\"currency\":\"BRL\"}}'\n\t\t\t)->willReturn( [\n\t\t\t\t200, 'application/json', file_get_contents(\n\t\t\t\t\t__DIR__ . '/includes/Responses/minFraud/15points.json'\n\t\t\t\t)\n\t\t\t] );\n\n\t\t$gateway->runAntifraudFilters();\n\t}", "public function testTax() {\n $inputAmount = 10.00;\n $taxInput = 0.10;\n $output = $this->Receipt->tax($inputAmount, $taxInput); // calling a tax method by passing in the amount and the tax and making this equal to output\n $this->assertEquals( // method from TestCase class that compares expected value and actual output and shows message when these are not equal\n 1.00,\n $output,\n 'The tax calculation should equal 1.00'\n );\n }", "function testMinFraudExtras() {\n\t\t$options = $this->getDonorTestData();\n\t\t$options['email'] = '[email protected]';\n\t\t$options['payment_method'] = 'cc';\n\n\t\t$gateway = $this->getFreshGatewayObject( $options );\n\n\t\t$this->setMwGlobals( [\n\t\t\t'wgDonationInterfaceMinFraudExtraFields' => [\n\t\t\t\t'email',\n\t\t\t\t'first_name',\n\t\t\t\t'last_name',\n\t\t\t\t'street_address',\n\t\t\t\t'amount',\n\t\t\t\t'currency'\n\t\t\t]\n\t\t] );\n\t\t$this->request->expects( $this->once() )\n\t\t\t->method( 'post' )\n\t\t\t->with(\n\t\t\t\t'{\"billing\":{\"city\":\"San Francisco\",\"region\":\"CA\",\"postal\":\"94105\",\"country\":\"US\",' .\n\t\t\t\t'\"first_name\":\"Firstname\",\"last_name\":\"Surname\",\"address\":\"123 Fake Street\"},' .\n\t\t\t\t'\"device\":{\"ip_address\":\"127.0.0.1\"},' .\n\t\t\t\t'\"email\":{\"address\":\"[email protected]\",\"domain\":\"wikipedia.org\"},' .\n\t\t\t\t'\"event\":{\"transaction_id\":\"' .\n\t\t\t\t$gateway->getData_Unstaged_Escaped( 'contribution_tracking_id' ) .\n\t\t\t\t'\"},\"order\":{\"amount\":\"1.55\",\"currency\":\"USD\"}}'\n\t\t\t)->willReturn( [\n\t\t\t\t200, 'application/json', file_get_contents(\n\t\t\t\t\t__DIR__ . '/includes/Responses/minFraud/15points.json'\n\t\t\t\t)\n\t\t\t] );\n\n\t\t$gateway->runAntifraudFilters();\n\n\t\t$this->assertEquals( ValidationAction::CHALLENGE, $gateway->getValidationAction(), 'Validation action is not as expected' );\n\t\t$exposed = TestingAccessWrapper::newFromObject( $gateway );\n\t\t$this->assertEquals( 72.75, $exposed->risk_score, 'RiskScore is not as expected for failure mode' );\n\t\t$message = QueueWrapper::getQueue( 'payments-antifraud' )->pop();\n\t\tSourceFields::removeFromMessage( $message );\n\t\t$expected = [\n\t\t\t'validation_action' => ValidationAction::CHALLENGE,\n\t\t\t'risk_score' => 72.75,\n\t\t\t'score_breakdown' => [\n\t\t\t\t'initial' => 0,\n\t\t\t\t'getScoreUtmCampaignMap' => 0,\n\t\t\t\t'getScoreCountryMap' => 20,\n\t\t\t\t'getScoreUtmSourceMap' => 0,\n\t\t\t\t'getScoreUtmMediumMap' => 0,\n\t\t\t\t'getScoreEmailDomainMap' => 37.5,\n\t\t\t\t'getCVVResult' => 0,\n\t\t\t\t'getAVSResult' => 0,\n\t\t\t\t'minfraud_filter' => 15.25,\n\t\t\t],\n\t\t\t'user_ip' => '127.0.0.1',\n\t\t\t'gateway_txn_id' => false,\n\t\t\t'date' => $message['date'],\n\t\t\t'server' => gethostname(),\n\t\t\t'gateway' => 'globalcollect',\n\t\t\t'contribution_tracking_id' => $gateway->getData_Unstaged_Escaped( 'contribution_tracking_id' ),\n\t\t\t'order_id' => $gateway->getData_Unstaged_Escaped( 'order_id' ),\n\t\t\t'payment_method' => 'cc',\n\t\t];\n\t\t$this->assertEquals( $expected, $message );\n\t}", "function testProcessDonorReturnWarning() {\n\t\t$init = $this->getDonorTestData( 'US' );\n\t\t$init['contribution_tracking_id'] = '45931210';\n\t\t$this->setUpRequest( $init, [ 'Donor' => $init ] );\n\n\t\t$gateway = $this->getFreshGatewayObject( $init );\n\t\t$gateway::setDummyGatewayResponseCode( [\n\t\t\t'OK', // For GetExpressCheckoutDetails\n\t\t\t'11607' // For DoExpressCheckoutPayment\n\t\t] );\n\t\t$result = $gateway->processDonorReturn( [\n\t\t\t'token' => 'EC%2d2D123456D9876543U',\n\t\t\t'PayerID' => 'ASDASD'\n\t\t] );\n\n\t\t$this->assertFalse( $result->isFailed() );\n\t\t$message = QueueWrapper::getQueue( 'donations' )->pop();\n\t\t$this->assertNotNull( $message, 'Not sending a message to the donations queue' );\n\t\tself::unsetVariableFields( $message );\n\t\t$expected = [\n\t\t\t'contribution_tracking_id' => $init['contribution_tracking_id'],\n\t\t\t'country' => 'US',\n\t\t\t'fee' => '0',\n\t\t\t'gateway' => 'paypal_ec',\n\t\t\t'gateway_txn_id' => '33N12345BB123456D',\n\t\t\t'gateway_session_id' => 'EC-4V987654XA123456V',\n\t\t\t'language' => 'en',\n\t\t\t'order_id' => $init['contribution_tracking_id'] . '.1',\n\t\t\t'payment_method' => 'paypal',\n\t\t\t'payment_submethod' => '',\n\t\t\t'response' => false,\n\t\t\t'user_ip' => '127.0.0.1',\n\t\t\t'utm_source' => '..paypal',\n\t\t\t'city' => 'San Francisco',\n\t\t\t'currency' => 'USD',\n\t\t\t'email' => '[email protected]',\n\t\t\t'first_name' => 'Fezziwig',\n\t\t\t'gross' => '1.55',\n\t\t\t'last_name' => 'Fowl',\n\t\t\t'recurring' => '',\n\t\t\t'state_province' => 'CA',\n\t\t\t'street_address' => '123 Fake Street',\n\t\t\t'postal_code' => '94105',\n\t\t\t'source_name' => 'DonationInterface',\n\t\t\t'source_type' => 'payments',\n\t\t];\n\t\t$this->assertEquals( $expected, $message );\n\n\t\t$this->assertNull(\n\t\t\tQueueWrapper::getQueue( 'donations' )->pop(),\n\t\t\t'Sending extra messages to donations queue!'\n\t\t);\n\t\t$matches = self::getLogMatches(\n\t\t\tLogLevel::WARNING, '/Transaction succeeded with warning.*/'\n\t\t);\n\t\t$this->assertNotEmpty( $matches );\n\t}", "function email_not_registered($first_name, $email) {\n $body = \"$first_name,\\r\\n\\r\\n\" .\n \"You have signed up for Godiva's Quest with a non-U of T email address. Unfortunately, this is no longer allowed.\\r\\n\" .\n \"If you've made progress with this email address and wish to transfer that progress to a U of T email address, please send me an email with [EMAIL TRANSFER] in the title and your U of T email address in the body.\\r\\n\" .\n \"Alternatively, you can just sign up again at http://quest.skule.ca/1T5/registration/.\\r\\n\\r\\n\" .\n \"Thanks for your understanding,\\r\\n\" .\n \"Andrew Nestico,\\r\\n\" .\n \"Questmaster 1T5\\r\\n\\r\\n\";\n\n mail($email, \"[Quest] Sorry For The Inconvenience\", $body, $GLOBALS[\"headers\"]);\n}", "public static function email_unpaid_users() {\n\n\t\tglobal $wpdb;\n\n\t\t$users = $wpdb->get_results(\"SELECT u.ID, u.user_email, m.meta_value FROM $wpdb->usermeta m, $wpdb->users u WHERE u.ID=m.user_ID AND m.meta_key='paid_until'\");\n\n\t\t$nowtime = time();\n\n\t\t$options = get_site_option('artsite_signup_options');\n\t\t$url = (!empty($options['card_change_url'])) ? $options['card_change_url'] : home_url();\n\n\t\tforeach ($users as $user) {\n\n\t\t\t$paid_until = $user->meta_value;\n\n\t\t\t$days_overdue = floor(($nowtime-$paid_until)/86400);\n\n\t\t\t// Nag them if they are 0, 7 or 14 days overdue\n\t\t\tif ($days_overdue == 0 || $days_overdue == 7 || $days_overdue == 14 || $days_overdue==-150) {\n\n\t\t\t\t$email = $user->user_email;\n\n\t\t\t\t$days = ($days_overdue == 1) ? 'day' : 'days';\n\n\t\t\t\t$overdue_descrip = ($days_overdue == 0) ? \"today\" : \"$days_overdue $days ago\";\n\n\t\t\t\t$ehash = md5($email); // Transient names must be a maximum of 45 characters long\n\t\t\t\t$user_nag_transient = get_site_transient(\"as_odnag_\".$ehash);\n\t\t\t\tif ($user_nag_transient == 'naggedtoday') continue;\n\n\t\t\t\twp_mail($email, 'Your account is now overdue', \"Your account is now overdue ($overdue_descrip); our previous attempts to charge your card failed, and you have not supplied us with a working card number in the mean-while.\\r\\n\\r\\nPlease visit $url to update your card in order to ensure continued service.\\r\\n\");\n\n\t\t\t\tset_transient(\"as_odnag_\".$ehash, 'naggedtoday', 86399);\n\n\t\t\t}\n\n\t\t}\n\n\t}", "function perform_simple_check($taxid, &$out, $debug = false)\r\n{\r\n\r\n\t$taxid = strtoupper(trim($taxid));\r\n\t$defCode = \"GB\";\r\n\t$vatexp = Array();\r\n\r\n\t$vatexp[] = \"/^(AT)U(\\d{8})$/\"; //** Austria\r\n\t$vatexp[] = \"/^(BE)(0?\\d{9})$/\"; //** Belgium\r\n\t$vatexp[] = \"/^(BG)(\\d{9,10})$/\"; //** Bulgaria\r\n\t$vatexp[] = \"/^(CHE)(\\d{9})MWST$/\";\t\t\t\t\t\t //** Switzerland (not EU)\r\n\t$vatexp[] = \"/^(CY)([0-5|9]\\d{7}[A-Z])$/\"; //** Cyprus\r\n\t$vatexp[] = \"/^(CZ)(\\d{8,13})$/\";\t\t\t\t\t\t //** Czech Republic\r\n\t$vatexp[] = \"/^(DE)([1-9]\\d{8})$/\"; //** Germany\r\n\t$vatexp[] = \"/^(DK)(\\d{8})$/\"; //** Denmark\r\n\t$vatexp[] = \"/^(EE)(10\\d{7})$/\"; //** Estonia\r\n\t$vatexp[] = \"/^(EL)(\\d{9})$/\"; //** Greece\r\n\t$vatexp[] = \"/^(ES)([A-Z]\\d{8})$/\"; //** Spain (National juridical entities)\r\n\t$vatexp[] = \"/^(ES)([A-H|N-S|W]\\d{7}[A-J])$/\"; //** Spain (Other juridical entities)\r\n\t$vatexp[] = \"/^(ES)([0-9|Y|Z]\\d{7}[A-Z])$/\"; //** Spain (Personal entities type 1)\r\n\t$vatexp[] = \"/^(ES)([K|L|M|X]\\d{7}[A-Z])$/\"; //** Spain (Personal entities type 2)\r\n\t$vatexp[] = \"/^(EU)(\\d{9})$/\"; //** EU-type\r\n\t$vatexp[] = \"/^(FI)(\\d{8})$/\"; //** Finland\r\n\t$vatexp[] = \"/^(FR)(\\d{11})$/\"; //** France (1)\r\n\t$vatexp[] = \"/^(FR)[(A-H)|(J-N)|(P-Z)](\\d{10})$/\"; // France (2)\r\n\t$vatexp[] = \"/^(FR)\\d[(A-H)|(J-N)|(P-Z)](\\d{9})$/\"; // France (3)\r\n\t$vatexp[] = \"/^(FR)[(A-H)|(J-N)|(P-Z)]{2}(\\d{9})$/\"; // France (4)\r\n\t$vatexp[] = \"/^(GB)?(\\d{9})$/\"; //** UK (Standard)\r\n\t$vatexp[] = \"/^(GB)?(\\d{12})$/\"; //** UK (Branches)\r\n\t$vatexp[] = \"/^(GB)?(GD\\d{3})$/\"; //** UK (Government)\r\n\t$vatexp[] = \"/^(GB)?(HA\\d{3})$/\"; //** UK (Health authority)\r\n\t$vatexp[] = \"/^(GR)(\\d{8,9})$/\"; //** Greece\r\n\t$vatexp[] = \"/^(HR)(\\d{11})$/\"; //** Croatia\r\n\t$vatexp[] = \"/^(HU)(\\d{8})$/\"; //** Hungary\r\n\t$vatexp[] = \"/^(IE)(\\d{7}[A-W])$/\"; //** Ireland (1)\r\n\t$vatexp[] = \"/^(IE)([7-9][A-Z\\*\\+)]\\d{5}[A-W])$/\"; //** Ireland (2)\r\n\t$vatexp[] = \"/^(IE)(\\d{7}[A-Z][AH])$/\"; // Ireland (3) (new format from 1 Jan 2013)\r\n\t$vatexp[] = \"/^(IT)(\\d{11})$/\"; //** Italy\r\n\t$vatexp[] = \"/^(LV)(\\d{11})$/\"; //** Latvia\r\n\t$vatexp[] = \"/^(LT)(\\d{9}|\\d{12})$/\"; //** Lithuania\r\n\t$vatexp[] = \"/^(LU)(\\d{8})$/\"; //** Luxembourg\r\n\t$vatexp[] = \"/^(MT)([1-9]\\d{7})$/\"; //** Malta\r\n\t$vatexp[] = \"/^(NL)(\\d{9})B\\d{2}$/\"; //** Netherlands\r\n\t$vatexp[] = \"/^(NO)(\\d{9})$/\"; //** Norway (not EU)\r\n\t$vatexp[] = \"/^(PL)(\\d{10})$/\"; //** Poland\r\n\t$vatexp[] = \"/^(PT)(\\d{9})$/\"; //** Portugal\r\n\t$vatexp[] = \"/^(RO)([1-9]\\d{1,9})$/\"; //** Romania\r\n\t$vatexp[] = \"/^(RS)(\\d{9})$/\"; //** Serbia (not EU)\r\n\t$vatexp[] = \"/^(SI)([1-9]\\d{7})$/\"; //** Slovenia\r\n\t$vatexp[] = \"/^(SK)([1-9]\\d[(2-4)|(6-9)]\\d{7})$/\"; //** Slovakia Republic\r\n\t$vatexp[] = \"/^(SE)(\\d{10}01)$/\"; //** Sweden\r\n\r\n\t$valid = false;\r\n\r\n\tforeach($vatexp as $vat)\r\n\t{\r\n\t\t$matches = null;\r\n // echo(\"vat $vat - taxid $taxid\\n\");\r\n\t\tpreg_match_all( $vat, $taxid, $matches );\r\n\r\n// echo(print_r($matches,true));\r\n\t\tif (count( $matches[0] ) != 1) continue;\r\n\t\tif (count( $matches ) != 3) continue;\r\n\r\n\t\t$cCode = $matches[1][0]; // Isolate country code\r\n\t\t$cNumber = $matches[2][0]; // Isolate the number\r\n\t\tif (strlen($cCode) == 0) $cCode = $defCode; // Set up default country code\r\n\r\n\t\t$out->country = $cCode;\r\n\t\t$out->number = str_replace($cCode, \"\", $taxid);\r\n\r\n\t\t// Now look at the check digits for those countries we know about.\r\n\t\tswitch ($cCode)\r\n\t\t{\r\n\t\t\tcase \"AT\":\r\n\t\t\t\t$valid = ATVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"BE\":\r\n\t\t\t\t$valid = BEVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"BG\":\r\n\t\t\t\t// The SIMA validation rules are incorrect for Bulgarian numbers.\r\n\t\t\t\t$valid = BGVATCheckDigit ($cNumber);\r\n\t\t\t\t// $valid = true;\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"CY\":\r\n\t\t\t\t$valid = CYVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"CZ\":\r\n\t\t\t\t$valid = CZVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"DE\":\r\n\t\t\t\t$valid = DEVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"DK\":\r\n\t\t\t\t$valid = DKVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"EE\":\r\n\t\t\t\t$valid = EEVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"EL\":\r\n\t\t\t\t$valid = ELVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"ES\":\r\n\t\t\t\t$valid = ESVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"EU\":\r\n\t\t\t\t$valid = EUVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"FI\":\r\n\t\t\t\t$valid = FIVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"FR\":\r\n\t\t\t\t$valid = FRVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"GB\":\r\n\t\t\t\t$valid = UKVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"GR\":\r\n\t\t\t\t$valid = ELVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"HU\":\r\n\t\t\t\t$valid = HUVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"IE\":\r\n\t\t\t\t$valid = IEVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"IT\":\r\n\t\t\t\t$valid = ITVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"LT\":\r\n\t\t\t\t$valid = LTVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"LU\":\r\n\t\t\t\t$valid = LUVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"LV\":\r\n\t\t\t\t$valid = LVVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"MT\":\r\n\t\t\t\t$valid = MTVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"NL\":\r\n\t\t\t\t$valid = NLVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"PL\":\r\n\t\t\t\t$valid = PLVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"PT\":\r\n\t\t\t\t$valid = PTVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"RO\":\r\n\t\t\t\t$valid = ROVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"SE\":\r\n\t\t\t\t$valid = SEVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"SI\":\r\n\t\t\t\t$valid = SIVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\r\n\t\t\tcase \"CHE\":\r\n\t\t\t\t$valid = CHEVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"HR\":\r\n\t\t\t\t$valid = HRVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"NO\":\r\n\t\t\t\t$valid = NOVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"RS\":\r\n\t\t\t\t$valid = RSVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\t\t\tcase \"SK\":\r\n\t\t\t\t$valid = SKVATCheckDigit ($cNumber);\r\n\t\t\t\tbreak;\r\n\r\n\t\t\tdefault:\r\n\t\t\t\t$valid = false;\r\n\t\t}\r\n\r\n\t\tif ($valid) break;\r\n\t}\r\n\r\n\tif (!$valid)\r\n\t{\r\n\t\t$out->message = VAT_MOSS_ERROR_VALIDATING_VAT_ID . \": \" . VAT_MOSS_REASON_SIMPLE_CHECK_FAILS;\r\n\t\treturn $out->valid = false;\r\n\t}\r\n\r\n\treturn true;\r\n}", "function testDoPaymentDeclined() {\n\t\t$init = $this->getDonorTestData( 'US' );\n\t\t$init['amount'] = '10.00';\n\t\t$init['order_reference_id'] = mt_rand( 0, 10000000 ); // provided by client-side widget IRL\n\t\t// We don't get any profile data up front\n\t\tunset( $init['email'] );\n\t\tunset( $init['first_name'] );\n\t\tunset( $init['last_name'] );\n\n\t\t$mockClient = $this->providerConfig->object( 'payments-client' );\n\t\t$mockClient->returns['authorize'][] = 'InvalidPaymentMethod';\n\n\t\t$gateway = $this->getFreshGatewayObject( $init );\n\t\t$result = $gateway->doPayment();\n\n\t\t$this->assertTrue( $result->getRefresh(), 'Result should be a refresh on error' );\n\t\t$errors = $result->getErrors();\n\t\t$this->assertEquals(\n\t\t\t'InvalidPaymentMethod',\n\t\t\t$errors[0]->getErrorCode(),\n\t\t\t'InvalidPaymentMethod error should be set'\n\t\t);\n\t}", "public function getTaxExempt()\n {\n return $this->tax_exempt;\n }", "function denial_email_creation() {\n \n // Do not create if it already exists and is not in the trash\n $post_exists = post_exists( '{{denier.name}} denied your Friendship request.' );\n \n if ( $post_exists != 0 && get_post_status( $post_exists ) == 'publish' )\n return;\n \n // Create post object\n $my_post = array(\n 'post_title' => __( '{{denier.name}} denied your friendship request.', 'buddypress' ),\n 'post_content' => __( '<p>At this time, {{denier.name}} is unable to accept your friendship request. Rest of email content...</p>', 'buddypress' ), // HTML email content.\n 'post_excerpt' => __( '<p>At this time, {{denier.name}} is unable to accept your friendship request. Rest of email content...</p>', 'buddypress' ), // Plain text email content.\n 'post_status' => 'publish',\n 'post_type' => bp_get_email_post_type() // this is the post type for emails\n );\n \n // Insert the email post into the database\n $post_id = wp_insert_post( $my_post );\n \n if ( $post_id ) {\n // add our email to the taxonomy term 'match_denied'\n // Email is a custom post type, therefore use wp_set_object_terms\n \n $tt_ids = wp_set_object_terms( $post_id, 'friendship_denied', bp_get_email_tax_type() );\n foreach ( $tt_ids as $tt_id ) {\n $term = get_term_by( 'term_taxonomy_id', (int) $tt_id, bp_get_email_tax_type() );\n wp_update_term( (int) $term->term_id, bp_get_email_tax_type(), array(\n 'description' => 'Recipients Friendship Denied',\n ) );\n }\n }\n \n}", "public function getShippingTaxRefunded();", "public function testLikesDoesNotSendEmailNotification() {\n\t\t$this->markTestIncomplete(\"Requires manual testing for now\");\n\t}", "public function testValidateWrongTaxState(): void\n {\n $decimals = 2;\n $interval = 0.5;\n $roundForNet = false;\n $orderTaxState = CartPrice::TAX_STATE_NET;\n\n $this->assertFalse((new IsOrderTotalRoundingActivated())->isNewRoundingActive($decimals, $roundForNet, $interval, $orderTaxState));\n }", "public function hasTax(){\n return $this->_has(15);\n }", "function completed() {\n if ($this->post_data['receiver_email'] != $this->merchant_email) {\n //$this->errormsg .= \"'receiver_email' does not match: \";\n //$this->errormsg .= $this->post_data['receiver_email'] . \"\\n\";\n }\n\n if (!empty($this->errormsg)) {\n\n /**\n * manually investigate errors from the fraud checking\n */\n $body = \"IPN failed fraud checks: \" . $this->errormsg . \"\\n\\n\";\n $body .= $this->listener->getTextReport();\n $headers = 'From: ' . $this->host_name . ' <' . $this->admin_email . '>';\n $subject = __('IPN Fraud Warning', IM_SLUG);\n mail($this->admin_email, $subject, $body, $headers);\n } else {\n\n /**\n * Entries the transactions on transaction table\n */\n $data = array(\n 'post_data' => $this->post_data,\n 'req_data' => $this->request\n );\n do_action('im_process_transaction_entry', $data);\n\n /**\n * Update membership entry\n */\n im_update_transaction_status($data);\n\n /**\n * Mail to admin for notify his sales\n */\n $this->mail_to_admin();\n\n /**\n * Mail to user for notify his purchase\n */\n $this->mail_to_user();\n }\n }", "function testShowFormOnError() {\n\t\t$init = $this->getDonorTestData();\n\t\t$init['OTT'] = 'SALT123456789';\n\t\t$init['amount'] = '-100.00';\n\t\t$init['ffname'] = 'amazon';\n\t\t$session = [ 'Donor' => $init ];\n\t\t$errorMessage = wfMessage( 'donate_interface-error-msg-invalid-amount' )->text();\n\t\t$assertNodes = [\n\t\t\t'mw-content-text' => [\n\t\t\t\t'innerhtmlmatches' => \"/.*$errorMessage.*/\"\n\t\t\t]\n\t\t];\n\n\t\t$this->verifyFormOutput( 'AmazonGateway', $init, $assertNodes, false, $session );\n\t}", "function xendit_for_give_process_xendit_donation( $posted_data ) {\n\t// Make sure we don't have any left over errors present.\n\tgive_clear_errors();\n\n\t// Any errors?\n\t$errors = give_get_errors();\n\n\t// No errors, proceed.\n\tif ( ! $errors ) {\n\n\t\t$form_id = intval( $posted_data['post_data']['give-form-id'] );\n\t\t$price_id = ! empty( $posted_data['post_data']['give-price-id'] ) ? $posted_data['post_data']['give-price-id'] : 0;\n\t\t$donation_amount = ! empty( $posted_data['price'] ) ? $posted_data['price'] : 0;\n\n\t\t// Setup the payment details.\n\t\t$donation_data = array(\n\t\t\t'price' => $donation_amount,\n\t\t\t'give_form_title' => $posted_data['post_data']['give-form-title'],\n\t\t\t'give_form_id' => $form_id,\n\t\t\t'give_price_id' => $price_id,\n\t\t\t'date' => $posted_data['date'],\n\t\t\t'user_email' => $posted_data['user_email'],\n\t\t\t'purchase_key' => $posted_data['purchase_key'],\n\t\t\t'currency' => give_get_currency( $form_id ),\n\t\t\t'user_info' => $posted_data['user_info'],\n\t\t\t'status' => 'pending',\n\t\t\t'gateway' => 'xendit',\n\t\t);\n\n\t\t// Record the pending donation.\n\t\t$donation_id = give_insert_payment( $donation_data );\n\n\t\tif ( ! $donation_id ) {\n\n\t\t\t// Record Gateway Error as Pending Donation in Give is not created.\n\t\t\tgive_record_gateway_error(\n\t\t\t\t__( 'Xendit Error', 'xendit-for-give' ),\n\t\t\t\tsprintf(\n\t\t\t\t/* translators: %s Exception error message. */\n\t\t\t\t\t__( 'Unable to create a pending donation with Give.', 'xendit-for-give' )\n\t\t\t\t)\n\t\t\t);\n\n\t\t\t// Send user back to checkout.\n\t\t\tgive_send_back_to_checkout( '?payment-mode=xendit' );\n\t\t\treturn;\n\t\t}\n\n\t\t// Do the actual payment processing using the custom payment gateway API. To access the GiveWP settings, use give_get_option() \n // as a reference, this pulls the API key entered above: give_get_option('insta_for_give_instamojo_api_key')\n $invoice = xendit_for_give_create_invoice($donation_data);\n\n if (empty($invoice)) {\n give_send_back_to_checkout( '?payment-mode=xendit' );\n }\n\n wp_redirect($invoice['invoice_url']);\n\t} else {\n\t\t// Send user back to checkout.\n\t\tgive_send_back_to_checkout( '?payment-mode=xendit' );\n\t} // End if().\n}", "public function test_user_charge_wrong_postal(): void\n {\n $user = factory(User::class)->create();\n\n $this->expectException(Exception::class);\n $this->expectExceptionMessageMatches('/'.Constants::VERIFY_POSTAL_CODE.'/i');\n $this->expectExceptionCode(400);\n\n $user->charge(5000, 'cnon:card-nonce-rejected-postalcode', env('SQUARE_LOCATION'));\n }", "public function testCanPayForUnpaidTicket()\n {\n $ticket = $this->createTicket();\n\n $this->assertEmpty($ticket->payment);\n $this->assertTrue($ticket->pay());\n $this->assertNotEmpty($ticket->payment);\n }", "function nonreg_missing_send_mail($dbc, $date, $time, $location, $description, $returnlocation, $contactfield, $serialnumber){\n\n\t$parkingphone = $_SERVER['parkingphone'];\n\t$parkingemail = $_SERVER['parkingemail'];\n\t$securityphone = $_SERVER['securityphone'];\n\t$securityemail = $_SERVER['securityemail'];\n\t$kingstonpolicephone = $_SERVER['kingstonpolicephone'];\n\t$kingstonpoliceemail = $_SERVER['kingstonpoliceemail'];\n\t$serialnumber = mysqli_real_escape_string($dbc, $serialnumber);\n\n\t$query = mysqli_query($dbc, \"SELECT * from User, Bicycle WHERE Bicycle.Serial='$serialnumber' AND Bicycle.UserID = User.UserID;\");\n $row = mysqli_fetch_assoc($query);\n $to = $row['Email'];\n $name = $row['Name'];\n\n\tswitch ($returnlocation) {\n case 'security' :\n $locationmessage = \"Campus Security. Phone: \".$securityphone.\" E-mail: \".$securityemail;\n break;\n case 'parking' :\n $locationmessage = \"Campus Parking. Phone: \".$parkingphone.\" E-mail: \".$parkingemail;\n break;\n case 'police' :\n $locationmessage = \"Kingston Police. Phone: \".$kingstonpolicephone.\" E-mail: \".$kingstonpoliceemail;\n break;\n case 'directContact' :\n $locationmessage = \"Direct Contact. Phone or E-mail: \".$contactfield;\n break;\n }\n\n\t$subject = \"Your Missing Bicycle has been Reported Found\";\n\n\t$query = mysqli_query($dbc, \"SELECT Email from User WHERE User.GetEmail=1 AND User.Admin=1\");\n $row = mysqli_fetch_assoc($query);\n $bcc = $row['Email'];\n while ($row = mysqli_fetch_assoc($query)){\n \t$bcc = $bcc.\",\".$row['Email'];\n }\n\n\t$message = \"\n\t<html>\n\t<head>\n\t<title>Your Missing Bicycle has been Reported Found</title>\n\t</head>\n\t<body>\n\t<p>Hello \".$name.\"</p>\n\t<p>The Following information was provided by the person who found your missing bicycle. Please keep it on file.</p>\n\t<p>Bicycle Serial Number: \".$serialnumber.\"</p>\n\t<p>Date Found: \".$date.\"</p>\n\t<p>Time Found: \".$time.\"</p>\n\t<p>Location Found: \".$location.\"</p>\n\t<p>Other Information: \".$description.\"</p>\n\t<p>The person provided this return method: \".$locationmessage.\"</p>\n\t</body>\n\t</html>\n\t\";\n\n\t// always set content-type for HTML email\n\t$headers = \"MIME-Version: 1.0\" . \"\\r\\n\";\n\t$headers .= \"Content-type:text/html;charset=iso-8859-1\" . \"\\r\\n\";\n\n\t// More Header\n\t$headers .= 'From: Queens Bicycle Registration System<[email protected]>' . \"\\r\\n\";\n\t$headers .= 'Bcc: '. $bcc . \"\\r\\n\";\n\n\t// The following 4 lines of code are for testing the email function on localhost.\n\t// Comment them out when moving to the PROD server.\n\t// ------------------------------------------------------------\n\t//echo $to;\n\t//echo $subject;\n\t//echo $message;\n\t//echo $headers;\n\t//return false;\n\t// -----------------------------------------------------------\n\t// The following line of code are MUST be uncommented when this code runs on the PROD server.\n\t// -------------------------------------------\n\treturn mail($to,$subject,$message,$headers);\n\t// -------------------------------------------\n}", "public function testDateCheckViewModelHelperDonorCannotSignWitnesses(): void\n {\n $lpa = new Lpa([\n 'document' => [\n 'type' => 'property-and-financial',\n 'donor' => [\n 'canSign' => false\n ]\n ]\n ]);\n\n $html = $this->renderViewModel($lpa, 'donor');\n $matchesArray = $this->findHtmlMatches($html, \"//p[@data-cy='donor-check-signature-date-prompt']\");\n\n $this->assertEquals(\n trim($matchesArray[0]),\n 'This person signed continuation sheet 3 on behalf of the donor, followed by two witnesses, on',\n );\n }", "public function testVoucherGetTaxGroups()\n {\n }", "function complete_bill($meal, $tax, $tip, $cash_on_hand)\n{\n $tax_amount = $meal * ($tax / 100);\n $tip_amount = $meal * ($tip / 100);\n $total_amount = $meal + $tax_amount + $tip_amount;\n if($total_amount>$cash_on_hand){\n return false;\n }else{\n return $total_amount;\n }\n}", "public function testThanksgivingDayBefore1879(): void\n {\n $this->assertNotHoliday(\n self::REGION,\n self::HOLIDAY,\n $this->generateRandomYear(1000, self::ESTABLISHMENT_YEAR - 1)\n );\n }", "function SupressPaymentReminders($vars) {\n \n $email_template_name = $vars['messagename']; # Email template name being sent\n\n if ($email_template_name=='Credit Card Payment Failed' ||\n $email_template_name=='Invoice Payment Reminder' ||\n $email_template_name=='First Invoice Overdue Notice' || \n $email_template_name=='Second Invoice Overdue Notice' || \n $email_template_name=='Third Invoice Overdue Notice')\n {\n\n\t $invoiceid = $vars['relid'];\n\n\t $result = select_query(\"mod_gocardless\",\"payment_failed\",array(\"invoiceid\"=>$invoiceid));\n\t $data = mysql_fetch_array($result);\n\n if (empty($data)) {\n\t $merge_fields = array();\n\t $merge_fields['abortsend'] = false;\n }\n else\n {\n \t if ($data['payment_failed']==0) \n\t {\n\t $merge_fields = array();\n\t $merge_fields['abortsend'] = true; # You can use this return to stop email sending\n\t return $merge_fields;\n\t } \n }\n }\n\n}", "public function testDeliverPresentationDFailNotPurchased()\n {\n $communityId = 4;\n $presentationLetter = 'D';\n $this->_testDeliverPresFailNotPurchased($communityId, $presentationLetter);\n }", "public function taxable(): bool;", "function verifyFormData()\n\t{ \n\t\tglobal $amount, $firstname, $lastname, $address, $city, $state, $zip, $email, $phone, $university;\n\t\t\n\t\tif( $amount == '' || $firstname == '' || $lastname == '' || $address == '' || $city == '' || $state == '' || $zip == '' || $email == '' )\n\t\t{\n\t\t\treturn 0; \n\t } \n\t\telse \n\t\t{\n\t return 1;\n\t }\n\t}", "function has_taxes()\n\t{\n\t\tforeach ($this->gl_items as $gl_item)\n\t\t{\n\t\t\tif (is_tax_account($gl_item->code_id))\n\t\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}", "function ciniki_donations_donationAdd(&$ciniki) {\n //\n // Find all the required and optional arguments\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'prepareArgs');\n $rc = ciniki_core_prepareArgs($ciniki, 'no', array(\n 'tnid'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Tenant'), \n 'customer_id'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Customer'),\n 'receipt_number'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Receipt Number'), \n 'category'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Category'), \n 'name'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Name'), \n 'address1'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Address Line 1'), \n 'address2'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Address Line 2'), \n 'city'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'City'), \n 'province'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Province'), \n 'postal'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Postal'), \n 'country'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Country'), \n 'date_received'=>array('required'=>'yes', 'blank'=>'no', 'type'=>'date', 'name'=>'Date Received'), \n 'amount'=>array('required'=>'yes', 'blank'=>'no', 'type'=>'currency', 'name'=>'Amount'), \n 'date_issued'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'type'=>'date', 'name'=>'Date Issued'), \n 'location_issued'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Location Issued'), \n 'advantage_amount'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'0', 'type'=>'currency', 'name'=>'Advantage Amount'), \n 'advantage_description'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Advantage Description'), \n 'property_description'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Property Description'), \n 'appraised_by'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Appraised By'), \n 'appraiser_address'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Appraiser Address'), \n 'notes'=>array('required'=>'no', 'blank'=>'yes', 'default'=>'', 'name'=>'Notes'), \n ));\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n $args = $rc['args'];\n \n //\n // Check access to tnid as owner/employee\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'donations', 'private', 'checkAccess');\n $ac = ciniki_donations_checkAccess($ciniki, $args['tnid'], 'ciniki.donations.donationAdd');\n if( $ac['stat'] != 'ok' ) {\n return $ac;\n }\n\n //\n // Start transaction\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbTransactionStart');\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbTransactionRollback');\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbTransactionCommit');\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'objectAdd');\n $rc = ciniki_core_dbTransactionStart($ciniki, 'ciniki.donations');\n if( $rc['stat'] != 'ok' ) { \n return $rc;\n } \n\n //\n // Add the donation to the database\n //\n $rc = ciniki_core_objectAdd($ciniki, $args['tnid'], 'ciniki.donations.donation', $args, 0x04);\n if( $rc['stat'] != 'ok' ) {\n ciniki_core_dbTransactionRollback($ciniki, 'ciniki.donations');\n return $rc;\n }\n $donation_id = $rc['id'];\n\n //\n // Commit the transaction\n //\n $rc = ciniki_core_dbTransactionCommit($ciniki, 'ciniki.donations');\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n\n //\n // Update the last_change date in the tenant modules\n // Ignore the result, as we don't want to stop user updates if this fails.\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'tenants', 'private', 'updateModuleChangeDate');\n ciniki_tenants_updateModuleChangeDate($ciniki, $args['tnid'], 'ciniki', 'donations');\n\n //\n // Load donation\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'donations', 'private', 'donationLoad');\n $rc = ciniki_donations_donationLoad($ciniki, $args['tnid'], $donation_id);\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n\n return array('stat'=>'ok', 'id'=>$donation_id, 'donation'=>$rc['donation']);\n}" ]
[ "0.6348783", "0.5924748", "0.58346766", "0.5712891", "0.5674743", "0.5624663", "0.55896235", "0.55622286", "0.55585086", "0.55206895", "0.5483054", "0.54490596", "0.54469514", "0.5439298", "0.54391", "0.5425705", "0.54133105", "0.53910714", "0.53856575", "0.53741604", "0.5367563", "0.5350598", "0.53406364", "0.5311544", "0.5304832", "0.53005713", "0.52971345", "0.5292654", "0.5286347", "0.52683735" ]
0.61106735
1
$mainEmployees = Employee::where('boss' , '=' , null)
public function GetBossEmployees( ){ // ->join('positions', 'employees.position', '=', 'positions.id') // ->get() // ->toArray(); $mainEmployees = Employee::where('boss' , '=' , null) ->with(['position']) ->get() ->toArray(); // echo '<pre>'; // // var_dump($mainEmployees); // return view('index',[ 'bossArray' => $mainEmployees ]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function findAllNotDeleted() { \n $all = $this->users->query()\n ->where('active IS NOT NULL')\n ->andWhere('deleted is NULL')\n ->execute();\n return $all;\n}", "function rejectNulls() {\n return $this->filter(function ($item) {\n return $item !== null;\n });\n }", "public function whereNull($field);", "public function all()\n {\n return $this->where([]);\n }", "public function getEmployeeData()\n {\n return Employee::leftjoin('companies','companies.id','=','employees.company')->select('employees.*','companies.name as company_name','employees.email as employee_email')->paginate(10);\n }", "public function withoutComputer()\n {\n $employees = Employee::doesnthave('computer')->get();\n\n if ($employees) {\n return response()->json(['data' => $employees, 'success' => true], 200);\n }\n\n return response()->json(['success' => false, 'message' => 'Collection of employees without computers not found.'], 404);\n }", "public function scopeUnassigned($query)\n {\n return $query->whereNull('visitor_id');\n }", "public function allEmpty()\n {\n return $this->allEqualTo(false);\n }", "public function where()\n\t{\n\t\t// of course we don't have the necessary data on database to show result\n\t\t// this will show us employeeid 94\n\t\treturn $this->db->table('employee')\n\t\t->where(['EmployeeID >' => 90])\n\t\t->where(['EmployeeID <' => 95])\n\t\t->where(['EmployeeID !=' => 91])\n\t\t->orderBy('EmployeeID', 'DESC')\n\t\t->get()\n\t\t->getRow(); \n\t\t// getRow will show only one row, getResult will return an array of results with employeeid 94, 93, 92\n\t}", "public function show($attendance)\n {\n// return Attendance::find($attendance);\n $query = DB::table('attendances')\n ->where('attendances.EmployeeId', '=', $attendance)\n ->WhereNull('attendances.CheckOut')\n ->get();\n return $query;\n }", "public function index()\n {\n // $Employee= Employee::all()->where('job', 'doctor');\n $Employee=Employee:: join ('department' ,'department.depid','=','employee.idep')\n ->where ('employee.job','doctor')\n ->get (['department.depname','department.depid','employee.*']);\n \n return view(\"control.employees\",[\"Employee\"=>$Employee]);\n \n }", "function filterOutEmpty($unicorns)\n{\n $unicorns = array_filter($unicorns, function ($unicorn) {\n return $unicorn->name !== \"\";\n });\n return $unicorns;\n}", "protected function getQuery()\n {\n $model = static::MODEL;\n return $model::where('id', '!=', -1);\n }", "public function getNiveauWithEmptyFrais(){\n $niveaux = Niveau::whereDoesntHave('frais', function ($query) {\n $query->where('etablissement_id', '=', Auth::guard('etablissements')->user()->id);\n })->get();\n return $niveaux;\n }", "public function assignedEmployees()\n {\n return $this->belongsToMany('App\\Employee', 'employee_subtask')->distinct();\n }", "public function index(Request $request)\n {\n //create a variable and collect all the data from database\n \n // $employees= Employee::all();\n \n $employees = Employee::with('department','job') \n ->orderBy('employee_name', 'asc')\n ->get();\n\n $search = $request->input('search');\n\n if(!empty($search))\n {\n $employees = Employee::where('employee_name', 'like','%' .$search. '%')\n \n \n ->get();\n }\n \n //return a view and pass the data to that view\n return view('admin.employee.indexEmployee')->with('employees',$employees);\n }", "public function filterEmptyItems();", "protected function where_null($where)\n\t{\n\t\treturn $this->wrap($where['column']).' IS NULL';\n\t}", "public function getAllEmployees()\n {\n $employees = $this->userModel->whereHas('roles', function($q){\n $q->where('name','=','employee');\n })->get();\n\n if(!$employees || $employees->isEmpty())\n {\n throw new \\Exception(trans('reports.no_employee'));\n }\n\n return $employees;\n }", "public function findWhereNull($field, $columns = ['*']);", "public function scopeNotShipped($query){\n return $query->whereNull('trackingcode');\n }", "public function getEmployees()\n {\n return Empleado::join('cargo', 'empleado.idcargo', '=', 'cargo.idcargo')\n ->select('empleado.nombre', 'empleado.apellido', 'empleado.telefonoprincipal',\n 'empleado.celular', 'empleado.documentoidentidadempleado',\n 'cargo.nombrecargo')\n ->orderBy('empleado.apellido', 'asc')\n ->get();\n\n }", "public function employees() {\n return $this->hasMany('App\\Employee');\n }", "public function whereIsNull($key)\n {\n return $this->where(\n ['$or' => [\n [$key => ['$exists' => false]],\n [$key => null]\n ]]\n );\n }", "public function not_freelancers($rowNb)\n {\n\n $searchName =\"\";\n if (isset($_GET['name'])) {\n $searchName = $_GET['name'];\n }\n \n if (isset($_GET['filter'])) \n {\n \n $searchfilter=$_GET['filter'];\n return $Users_Hobbies = Users_Hobbies::where(function ($query) use ($searchfilter) {\n $new_array=explode(\",\",$searchfilter[0]);\n $query->whereIn('hobby_id', $new_array);\n })\n ->with(['user','hobby','state'])\n ->where('is_freelancer', 0)\n ->paginate($rowNb);\n\n \n }\n \n \n\n // $users_hobbies= User::with('hobbies')->paginate($rowNb);\n \n \n // $users_hobbies = User::whereHas('hobbies', function ($query) use($rowNb) {\n // $query->where('Users_Hobbies.is_freelancer', 0);\n // })->with('hobbies')->paginate($rowNb); \n \n $users_hobbies= Users_Hobbies::with(['user','hobby','state'])->where('is_freelancer', 0)->paginate($rowNb);\n\n \n \n\n // return new Users_HobbiesResources($users_hobbies);\n return $users_hobbies;\n\n\n }", "public function employees() {\n return $this->hasMany( Employee::class);\n }", "public function viewleave(){\r\n\t$sql=\"SELECT * FROM leave_application INNER JOIN employee_details ON lstaff_id=staff_id WHERE adminapproved IS NULL;\" ;\r\n\t$result=$this->conn->query($sql);\r\n\twhile($row[] = $result->fetch_assoc()){\r\n\t\t\t\t\r\n\t\t\t}\r\nreturn $row;\r\n}", "public function employee(){\n return $this->hasOne('App\\Employee','employee_id');\n }", "public function prune($employee = null)\n\t{\n\t\tif ($employee) {\n\t\t\t$this->addUsingAlias(Oops_Db_EmployeePeer::ID_EMPLOYEE, $employee->getIdEmployee(), Criteria::NOT_EQUAL);\n\t\t}\n\n\t\treturn $this;\n\t}", "public static function getNotEmployed()\n {\n $db = new DatabaseManager();\n $connection = $db->getDbh();\n\n $sql = 'SELECT * FROM studentlogin WHERE isEmployed!=:yes';\n\n $statement = $connection->prepare($sql);\n $statement->setFetchMode(\\PDO::FETCH_CLASS, __CLASS__);\n $statement->execute();\n\n $employ = $statement->fetchAll();\n\n return $employ;\n }" ]
[ "0.61358005", "0.56955147", "0.56915075", "0.56646365", "0.5653623", "0.5461471", "0.54584944", "0.54288936", "0.5375441", "0.5337388", "0.5314841", "0.5290983", "0.5274082", "0.52688664", "0.52637047", "0.52535355", "0.52453274", "0.52102274", "0.51932395", "0.5192046", "0.5180934", "0.5153392", "0.5118119", "0.51168764", "0.5108725", "0.50981855", "0.50895196", "0.50865066", "0.5081444", "0.5072096" ]
0.7180389
0
Create a new task node by services module request
function _erpal_projects_service_task_create($task) { $newTask = new stdClass(); $newTask->uid = $task['uid']; $newTask->type = 'erpal_task'; $newTask->language = LANGUAGE_NONE; $newTask->title = $task['title']; $newTask->body[LANGUAGE_NONE][0]['value'] = $task['body']; $newTask->field_is_ticket[LANGUAGE_NONE][0]['value'] = $task['ticket']; $newTask->field_project_ref[LANGUAGE_NONE][0]['target_id'] = $task['project']; $newTask->field_task_status_term[LANGUAGE_NONE][0]['tid'] = $task['status']; $newTask->field_priority_term[LANGUAGE_NONE][0]['tid'] = $task['priority']; $newTask->field_task_type_term[LANGUAGE_NONE][0]['tid'] = $task['task_type']; if (isset($task['parent'])) { $newTask->field_parent[LANGUAGE_NONE][0]['target_id'] = $task['parent']; } if (isset($task['file'])) { $newFile = new stdClass(); $newFile->uid = $task['uid']; $newFile->type = 'erpal_file'; $newFile->language = LANGUAGE_NONE; $fid = _file_resource_create($task['file']); $newFile->field_docs_file[LANGUAGE_NONE][] = array( 'fid' => $fid['fid'], 'display' => 1, ); $newFile->title = $task['file']['filename']; node_save($newFile); $newTask->field_asset_files[LANGUAGE_NONE][0]['target_id'] = $newFile->nid; } node_save($newTask); $field_collection_item = entity_create('field_collection_item', array('field_name' => 'field_pricing')); $field_collection_item->setHostEntity('node', $newTask); $field_collection_item->field_price_mode[LANGUAGE_NONE][0]['value'] = 'none'; $field_collection_item->save(); return $newTask->nid; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testCreateNewTask()\n {\n $task = $this->createTask();\n $this->json('POST', $this->uri, $atask = $this->convertTaskToArray($task))\n ->seeJson([\n 'created' => true,\n ])\n ->seeInDatabase('tasks', $atask);\n }", "function __service_request_node_create($request) {\n\t$request = _services_arg_value($request, 'request');\n\n $node = (object) NULL;\n \n foreach ($request as $key => $value) {\n $node->$key = $value;\n }\n\n if (isset($node->field_order_type['und']) && $node->field_order_type['und'][0]['value'] == 2) $node->comment = 2;\n\n node_save($node);\n\n // -- create responce\n if (isset($node->nid)) {\n $responce = array(\n 'nid' => $node->nid,\n 'path' => $node->path,\n );\n }\n else return services_error('Invalid data. Request was not created.', 404);\n \n return $responce;\n}", "public function createTask(Task $task)\n {\n }", "public function test_create_task()\n {\n\n $task = Task::factory()->make();\n $response = $this->postJson('/api/task', $task->toArray());\n $response->assertStatus(201);\n }", "public function action_create()\n {\n $values = json_decode($this->request->body(), TRUE);\n \n $task = ORM::factory('task')->values($values);\n \n try\n {\n $task->save();\n }\n catch (ORM_Validation_Exception $e)\n {\n throw new Http_Exception_400('The server could not understand your\n request. Verify that request parameters (and content, if any)\n are valid.');\n }\n\n $this->response->status(201);\n $this->_raw_response = array('ok' => TRUE, 'id' => $task->id);\n }", "public function instantiate($task);", "function process(){\n $result = $this->dma->managementApiCall('POST', \"{$this->hashid}/tasks/process\");\n $taskCreated = ($result['statusCode'] == 201);\n $taskId = $taskCreated ? obtainId($result['response']['link']) : null;\n return array('task_created'=>$taskCreated, 'task_id' => $taskId);\n }", "public static function createNew() {\n return new Task();\n }", "public function newtask() {\n require APP . 'view/_templates/header.php';\n if ($this->validate_task($_POST)) {\n $clean_task_params = $_POST;\n $Task = new Task();\n $task = $Task->createTask($clean_task_params);\n require APP . 'view/tasks/taskcreated.php';\n } else {\n require APP . 'view/tasks/new.php';\n }\n require APP . 'view/_templates/footer.php';\n }", "public function createAction()\n {\n // jquery adds new node, on focus out performs action:\n // if we don't have id we come here\n\n $request = Request::createFromGlobals();\n $task_text = $request->getContent();\n\n try{\n $feature = new Feature();\n $em = $this->getDoctrine()->getManager();\n $feature->setTask($task_text);\n $feature->setFinished(0);\n $em->persist($feature);\n $em->flush();\n $id = $feature->getId();\n\n $return = array('id' => $id, 'error' => 200);\n\n }catch (Exception $e){\n $return = 400;\n }\n\n $response = json_encode($return); //json encode the array, not necessarily needed\n //return new Response($return, 200, array('Content-Type' => 'application/json')); //make sure it has the correct content type\n return new Response($response); //make sure it has the correct content type\n }", "public function addTask(){\n global $vues;\n $id_list=Validation::nettoyer_int($_GET['id_list']);\n require_once($vues['taskCreation']);\n }", "protected function Create() {\n // Assignment: Generate unique id for the new task\n \n $this->TaskId = $this->getUniqueId();\n $this->TaskName = 'New Task';\n $this->TaskDescription = 'New Description';\n \n $tempRecord = new stdClass;\n $tempRecord->TaskId = $this->TaskId;\n $tempRecord->TaskName = $this->TaskName;\n $tempRecord->TaskDescription = $this->TaskDescription;\n array_push($this->TaskDataSource,$tempRecord);\n \n $taskDataSourceJson = json_encode($this->TaskDataSource);\n $jsonDataFile = fopen(\"Task_Data.txt\", \"w\") or die(\"Unable to open file!\");\n fwrite($jsonDataFile, $taskDataSourceJson);\n fclose($jsonDataFile);\n $result['success'] = \"true\";\n $result['message'] = \"New record was created\";\n return $result;\n }", "public function create()\n\t{\n\t\tsession_start();\n\t\tif(isset($_SESSION[\"UserID\"])) {\n\t\t\t$ValueArray = $this->getobjectForController();\n\n\t\t\t$this->setTaskVariableTable($ValueArray);\n\n\t\t\t$this->template = 'create_task';\n\t\t} else {\n\t\t\theader('Location: index.php');\n\t\t}\n\t}", "public function newTask() {\n $task['assignedTo'] = $this->input->post('assignedTo');\n $task['taskName'] = $this->input->post('taskName');\n $task['taskDetails'] = $this->input->post('taskDetails');\n $task['label'] = $this->input->post('label');\n $task['status'] = $this->input->post('status');\n $taskID = $this->tasks->newTask($task);\n $json = $this->tasks->getJSONTaskData($task['taskId']);\n echo $json;\n die();\n }", "public function createTask ($name, $description, $points=1, $story=0, $member=0) {\n\n\t}", "function createTasks() {\n $tasks = listTasks(); //read file 1 and 2\n //step 3 \n if(empty($_POST)) {\n //echo 'Empty Post array, plese fill the fields!!!!!!!!!!!<br/>';\n return; //izliza ot funkciqta no koda si produljava \n } else {\n //TODO Validation of data\n $task = array(\n 'id' => $_POST['id'], //TODO Generate sequent ID\n 'name' => $_POST['name'],\n 'description' => $_POST['description'],\n 'priority' => $_POST['priority'],\n 'created' => $_POST['created'],\n 'dueDate' => $_POST['dueDate'],\n );\n $tasks[] = fetchPostData();\n writeTasks($tasks);\n }\n}", "public function createTask (Request $request) {\n foreach ($request->task as $task) {\n $schooltask = isset($task['schoolTask']) ? true : false;\n print_r($task);\n tasks::createTasks($task['name'],$task['description'],$schooltask, $task['hour']);\n }\n return redirect()->back();\n }", "function _erpal_projects_service_task_access($op, $args) {\n module_load_include('inc', 'services', 'resources/node_resource');\n return _node_resource_access($op, $args); //this is the access handler function of the node resource of the services module\n //@todo check with node access\n}", "function addTask( $task ){\n $this->tasks[] = $task; \n }", "public function handleAddingTask()\n {\n $post = $this->ci->input->post();\n\n $params = isset($post['params']) ? $post['params'] : array();\n\n $params['type'] = $post['type'];\n $params['id'] = $post['id'];\n\n $task = [\n 'name' => $post['name'],\n 'type' => 'POKE',\n 'frequency' => 'ONCE',\n 'priority' => isset($post['priority']) ? $post['priority'] : 1,\n 'params' => http_build_query($params)\n ];\n\n return $this->taskManager->addTask($task);\n }", "public function create_website(array $task) {\n $params = array();\n try{\n $server = self::getServer($task['orderitem_id'], 'web');\n\n // Get the server id\n if(!empty($server['server_id']) && is_numeric($server['server_id'])){\n\n $clientId = self::get_client_id($task, $server['server_id']);\n\n // Connection to the SOAP system\n $client = $this->connect ($server['server_id']);\n\n // Get the remote server ID set in the servers profile in ShineISP\n $customAttribute = CustomAttributes::getAttribute($server['server_id'], \"remote_server_id\");\n\n // Get the remote server id set in ShineISP\n if(is_numeric($customAttribute['value'])){\n $ServerId = $customAttribute['value'];\n\n // Get the Json encoded parameters in the task\n $parameters = json_decode ( $task ['parameters'], true );\n\n // Get the domain\n $domains = OrdersItemsDomains::get_domains($task['orderitem_id']);\n\n if(!empty($domains[0]['domain'])){\n\n $params = array(\n 'server_id' => $ServerId,\n 'ip_address' => '*',\n 'domain' => $domains[0]['domain'],\n 'type' => 'vhost',\n 'parent_domain_id' => 0,\n 'vhost_type' => 'name',\n 'hd_quota' => $parameters['webspace'],\n 'traffic_quota' => $parameters['trafficdata'],\n 'cgi' => 'n',\n 'ssi' => 'n',\n 'suexec' => 'y',\n 'errordocs' => 1,\n 'is_subdomainwww' => 1,\n 'subdomain' => 'www',\n 'php' => 'fast-cgi',\n 'ruby' => 'n',\n 'redirect_type' => '',\n 'redirect_path' => '',\n 'ssl' => 'n',\n 'ssl_state' => '',\n 'ssl_locality' => '',\n 'ssl_organisation' => '',\n 'ssl_organisation_unit' => '',\n 'ssl_country' => '',\n 'ssl_domain' => '',\n 'ssl_request' => '',\n 'ssl_cert' => '',\n 'ssl_bundle' => '',\n 'ssl_action' => '',\n 'stats_password' => '',\n 'stats_type' => 'webalizer',\n 'allow_override' =>'All',\n 'apache_directives' => '',\n 'php_open_basedir' => '/',\n 'custom_php_ini' =>'',\n 'backup_interval' => '',\n 'backup_copies' => 1,\n 'active' => 'y',\n 'traffic_quota_lock' => 'n',\n 'pm_process_idle_timeout' => '10',\n 'pm_max_requests' => '0',\n );\n\n try{\n\n $websiteId = $client->sites_web_domain_add($this->getSession(), $clientId, $params, $readonly = false);\n\n if(!is_numeric($websiteId)){\n throw new Exception(\"There was a problem with website creation: sites_web_domain_add doesn't return the websiteID identifier\", \"3505\");\n }\n\n } catch ( SoapFault $e ) {\n throw new Exception(\"There was a problem with \" . $domains[0]['domain'] . \" website creation: \" . $e->getMessage() . \" - Parameters: \" . json_encode($params) , \"3504\");\n }\n\n // Add relation between order_item and server\n OrdersItemsServers::addServer($task['orderitem_id'], $server['server_id']);\n\n // Create the log message\n Shineisp_Commons_Utilities::logs (\"ID: \" . $task ['action_id'] . \" - \" . __METHOD__ . \" - Parameters: \" . json_encode($params), \"ispconfig.log\" );\n\n }else{\n throw new Exception(\"No domain set for the selected service in the ShineISP service order detail ID #: \" . $task ['orderitem_id'], \"3503\");\n }\n }else{\n throw new Exception(\"No remote web server id set in the ShineISP server profile.\", \"3502\");\n }\n }else{\n throw new Exception(\"Web Server has not been found in IspConfig server settings.\", \"3501\");\n }\n\n // Logout from the IspConfig Remote System\n $client->logout($this->getSession ());\n\n return $websiteId;\n\n }catch(Exception $e){\n Shineisp_Commons_Utilities::logs (__METHOD__ . \": \" . $e->getMessage ());\n }\n\n }", "public function testAddNewTask()\n {\n $this->visit('/')\n ->click('Add New Task')\n ->seePageIs('/tasks/create');\n }", "public function createAction(Request $request)\n {\n $em = $this->getDoctrine()->getManager();\n\n $task = new Task();\n\n $data = json_decode($request->getContent(), true);\n\n $project = $em->find('MayflowerTPPBundle:Project', $data['project']['id']);\n if (!$project) {\n throw $this->createNotFoundException('Unable to find Project.');\n }\n $task->setProject($project);\n\n $week = new \\DateTime($data['week']);\n $task->setWeek($week);\n\n $resource = $em->find('MayflowerTPPBundle:Resource', $data['resourceId']);\n if (!$resource) {\n throw $this->createNotFoundException('Unable to find Resource.');\n }\n\n $task->setResource($resource);\n\n $em->persist($task);\n $em->flush();\n\n return new JsonResponse($task->toArray());\n }", "function taskNewI() {\r\n\t\t\t$this->obj_tasks->addNewItem();\r\n\t\t}", "public function __construct($task = null) { }", "public function addTask($task){\n /*return Task::create([\n 'project_id' => $this->id,\n 'description' => $description\n ]);*/\n\n // this is the more streamlined way of doing it\n return $this->tasks()->create($task);\n }", "protected function createAndPersistTask()\n {\n return factory(App\\Task::class)->create();\n }", "function _erpal_projects_service_task_out($nid, $details = FALSE) {\n $tasktemp = node_load($nid);\n $task = entity_metadata_wrapper('node',$tasktemp);\n $task_out = array();\n $task_out['title'] = $task->title->value();\n $task_out['task'] = url('rest/projects/task/' . $task->nid->value(), array('absolute' => TRUE));\n if ($details) {\n $body = $task->body->value();\n $task_out['description'] = strip_tags($body['value']);\n $task_out['created'] = (int)$task->created->value();\n $task_out['changed'] = (int)$task->changed->value();\n if (isset($tasktemp->field_task_status_term) && !empty($tasktemp->field_task_status_term)) {\n $task_out['task_status_term'] = (int) $task->field_task_status_term->value()->tid;\n $status = field_get_items('taxonomy_term', $task->field_task_status_term->value(), 'field_simple_process_status');\n $task_out['semantic_status'] = $status[0]['value'];\n }\n $task_out['task_type_term'] = (int)$task->field_task_type_term->value()->tid;\n $task_out['priority_term'] = (int)$task->field_priority_term->value()->tid;\n $task_out['progress_percent'] = (int)$task->field_progress_percent->value();\n\t$task_out['estimated_time'] = $task->field_estimated_time->value();\n $task_out['project_tags'] = (is_object($task->field_project_tags->value()))?\n (int)$task->field_project_tags->value()->tid :\n null;\n $task_out['project'] = url('rest/projects/project/' . $task->field_project_ref->value()->nid, array('absolute' => TRUE));\n $task_out['parent'] = (is_object($task->field_parent->value()))?\n url('rest/projects/task/' . $task->field_parent->value()->nid , array('absolute' => TRUE)) :\n NULL;\n $task_out['subtasks'] = url('rest/projects/task', array('absolute' => TRUE,'query'=>array('parent'=>$task->nid->value())));\n foreach ($task->field_task_assigned_users->value() as $user) {\n $task_out['assigned_users'][] = (int)$user->uid;\n }\n $date = $task->field_date->value();\n //unfortunately the date is saved as datetime, so we need to convert it to timestamp. We can ignore timezone, as we do not need a time, only date.\n $value = new DateTime($date['value']);\n $value2 = new DateTime($date['value2']);\n $task_out['start_date'] = (int)$value->getTimestamp();\n $task_out['due_date'] = (int)$value2->getTimestamp();\n }\n return $task_out;\n}", "public function __construct($task)\n {\n //\n $this->task =$task;\n }", "public function addTask($data);" ]
[ "0.6902745", "0.67689073", "0.6720765", "0.63817173", "0.62572545", "0.61421645", "0.6095337", "0.60829276", "0.6066698", "0.6046998", "0.60373515", "0.5917204", "0.58977693", "0.5867365", "0.5827867", "0.58099586", "0.57822543", "0.575965", "0.575604", "0.57518715", "0.57438743", "0.57227975", "0.5698559", "0.5673017", "0.56680596", "0.5662005", "0.5656461", "0.56522906", "0.5631832", "0.56161016" ]
0.7321122
0
Turns a Sqs message into a JobQueue Message
protected function transformSqsMessage($message) { $receiptHandle = $message['ReceiptHandle']; $body = json_decode($message['Body'], true); $payload = $body['payload']; $numberOfReleases = $message['Attributes']['ApproximateReceiveCount']; return new Message($receiptHandle, $payload, $numberOfReleases); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function buildJobFromMessage(QueueMessageInterface $qMessage) : JobInterface;", "public function getMessageQueue( $resource, $queue );", "private function convertArgsToQueueBody()\n {\n $args = $this->args;\n $body = [\n 'job' => $args['job'],\n 'id' => $this->resqueId,\n 'attempts' => $args['attempts'],\n ];\n unset($args['job']);\n unset($args['attempts']);\n $body['data'] = $args;\n\n return $body;\n }", "protected function createSqsJob($job, $pushed = false)\n\t{\n\t\t//Log::info('SqsQueue createSqsJob', array('job' => $job, 'pushed' => $pushed));\n\n\t\treturn new SqsJob($this->container, $this, $job, $pushed);\n\t}", "public function getMessageQueueManager();", "public function queue($queueName, JobInterface $job)\n {\n $queue = $this->queueManager->getQueue($queueName);\n\n $payload = serialize($job);\n $message = new Message($payload);\n\n $queue->submit($message);\n }", "public function queueMessage($dolistTemplateId, $message, $storeId = 0)\n {\n if (!is_string($message)) {\n $message = serialize($message);\n }\n Mage::getModel('dolist/dolistemt_message_queued')\n ->load(null)\n ->setTemplateId($dolistTemplateId)\n ->setSerializedMessage($message)\n ->setStoreId($storeId)\n ->save();\n }", "public function messageQueue()\n {\n $message = Redis::lPop('bot_messages');\n\n if ($message) {\n [$channel, $message] = json_decode($message, true);\n\n ChannelsHandler::channel($channel)->sendMessage($message);\n }\n }", "public function queue($message, &$errors = []);", "public static function createFromCreateMessage(array $parsedResponse)\n {\n $msg = new QueueMessage();\n\n $expirationDate = $parsedResponse['ExpirationTime'];\n $insertionDate = $parsedResponse['InsertionTime'];\n $timeNextVisible = $parsedResponse['TimeNextVisible'];\n\n $date = Utilities::rfc1123ToDateTime($expirationDate);\n $msg->setExpirationDate($date);\n\n $date = Utilities::rfc1123ToDateTime($insertionDate);\n $msg->setInsertionDate($date);\n\n $date = Utilities::rfc1123ToDateTime($timeNextVisible);\n $msg->setTimeNextVisible($date);\n\n $msg->setMessageId($parsedResponse['MessageId']);\n $msg->setPopReceipt($parsedResponse['PopReceipt']);\n\n return $msg;\n }", "function send_to_sqs($params){\r\n //Connect to SQS\r\n\t$client = SqsClient::factory(array(\t \r\n\t 'credentials' => array (\r\n\t 'key' => 'my-access-key', //use your AWS key here\r\n\t 'secret' => 'my-secret-key' //use your AWS secret here\r\n\t ),\r\n\t 'region' => 'us-east-1', //replace it with your region\r\n\t 'version' => '2012-11-05'\r\n\t));\r\n\r\n\ttry {\r\n\t\t$result = $client->sendMessage($params);\r\n\t\tif($result){\r\n\t\t\treturn 1;\t\r\n\t\t}\t\t\r\n\t} \r\n\tcatch (AwsException $e) {\r\n\t\t// output error message if fails\r\n\t\tprint_r($e->getMessage());\r\n\t\terror_log($e->getMessage());\r\n\t}\r\n}", "public function marshal()\n\t{\n\t\t$r = $this->request;\n\n\t\t//Log::info('SqsQueue marshal', array('request->header()'=>$r->header()));\n\t\t//Log::info('SqsQueue marshal', array('request->json()'=>$r->json()));\n\n\t\tif($r->header('x-amz-sns-message-type') == 'SubscriptionConfirmation')\n\t\t{\n\t\t\t$response = $this->getSns()->confirmSubscription(array('TopicArn' => $r->json('TopicArn'), 'Token' => $r->json('Token'), 'AuthenticateOnUnsubscribe' => 'true'));\n\t\t\t//Log::info('SqsQueue marshal', array('response' => $response->toArray()));\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->createSqsJob($this->marshalPushedJob(), $pushed = true)->fire();\n\t\t}\n\n\t\treturn new Response('OK');\n\t}", "function requeue( $msg_orig ) {\n $msg = $msg_orig->body;\n $headers = array(\n 'orig_timestamp' => array_key_exists( 'orig_timestamp', $msg_orig->headers ) ? $msg_orig->headers['orig_timestamp'] : $msg_orig->headers['timestamp'],\n 'delay_till' => array_key_exists( 'delay_till', $msg_orig->headers ) ? $msg_orig->headers['delay_till'] : 0,\n 'delay_count' => array_key_exists( 'delay_count', $msg_orig->headers ) ? $msg_orig->headers['delay_count'] : 0,\n );\n $headers += $msg_orig->headers;\n $queue = $headers['destination'];\n\n try {\n $retval = $this->enqueue( $msg, $headers, $queue );\n return $retval;\n } catch (Stomp_Exception $ex) {\n $exMsg = \"Failed to requeue message with {$ex->getMessage()}. Contents: \" . json_encode($msg_orig);\n watchdog('wmf_common', $exMsg, NULL, WATCHDOG_ERROR);\n wmf_common_failmail('wmf_common', $exMsg);\n }\n }", "protected function marshalPushedJob()\n\t{\n\t\t$r = $this->request;\n\n\t\t/*Log::info('SqsQueue marshalPushedJob', array(\t'MessageId' => $this->parseOutMessageId($r),\n \t\t\t\t\t'Body' => $this->parseOutMessage($r),\n \t\t\t\t\t'pushed' => true,\n\t\t\t\t\t\t\t ));\n\t\t*/\n\n\t\treturn array(\n\t\t\t'MessageId' => $this->parseOutMessageId($r),\n\t\t\t'Body' => $this->parseOutMessage($r)\n\t\t);\n\t}", "private function createQueueProcessor()\n {\n return new QueueProcessor($this->mockSqsClient, $this->sqsQueueUrl);\n }", "private function initializeMessageQueue($parsedConfig)\n {\n $config = $parsedConfig['RabbitMQ'];\n\n $amqpFactory = new AMQPFactory();\n $amqpConnection = $amqpFactory->createConnection($config['Host'], $config['Port'], $config['Username'], $config['Password'], $config['VHost']);\n $messageQueue = new MessageQueue($amqpConnection, $amqpFactory);\n\n return $messageQueue;\n }", "public function run()\n {\n while (($message = array_shift($this->_messages)) !== null) {\n $job = $this->unserialize($message);\n $this->getQueue()->run($job);\n }\n }", "private function startSqs()\n {\n $this->sqsQueue = new SqsClient(\n [\n 'http_handler' => HandlerStack::create(new AwsHttpHandler()),\n 'region' => $this->awsSqsRegion,\n 'version' => $this->awsSqsVersion,\n 'credentials' => [\n 'key' => $this->awsSqsKey,\n 'secret' => $this->awsSecret,\n ],\n ]\n );\n\n /**\n * add AwsLoopMiddleware\n */\n $this->sqsQueue->getHandlerList()->appendBuild(AwsLoopMiddleware::runGuzzleQueue());\n }", "public function process(QueueMessage $message, Context $context)\n {\n $this->dispatchEvent('Processor.message.seen', ['queueMessage' => $message]);\n\n $jobMessage = new Message($message, $context, $this->container);\n try {\n $jobMessage->getCallable();\n } catch (RuntimeException | Error $e) {\n $this->logger->debug('Invalid callable for message. Rejecting message from queue.');\n $this->dispatchEvent('Processor.message.invalid', ['message' => $jobMessage]);\n\n return InteropProcessor::REJECT;\n }\n\n $this->dispatchEvent('Processor.message.start', ['message' => $jobMessage]);\n\n try {\n $response = $this->processMessage($jobMessage);\n } catch (Throwable $e) {\n $message->setProperty('jobException', $e);\n\n $this->logger->debug(sprintf('Message encountered exception: %s', $e->getMessage()));\n $this->dispatchEvent('Processor.message.exception', [\n 'message' => $jobMessage,\n 'exception' => $e,\n ]);\n\n return Result::requeue('Exception occurred while processing message');\n }\n\n if ($response === InteropProcessor::ACK) {\n $this->logger->debug('Message processed successfully');\n $this->dispatchEvent('Processor.message.success', ['message' => $jobMessage]);\n\n return InteropProcessor::ACK;\n }\n\n if ($response === InteropProcessor::REJECT) {\n $this->logger->debug('Message processed with rejection');\n $this->dispatchEvent('Processor.message.reject', ['message' => $jobMessage]);\n\n return InteropProcessor::REJECT;\n }\n\n $this->logger->debug('Message processed with failure, requeuing');\n $this->dispatchEvent('Processor.message.failure', ['message' => $jobMessage]);\n\n return InteropProcessor::REQUEUE;\n }", "function _queue($queue, $shell, $function, $params = array(), $jobId = null)\n {\n $this->JobQueue = ClassRegistry::init('JobQueue');\n //ad the shell function to run to the beginning of the params array\n array_unshift($params,$function);\n\n // Create database record\n $job = array(\n 'queue'=>$queue,\n 'type'=>$shell.'Shell',\n 'function'=>$function,\n 'params'=>serialize($params),\n );\n\n if (empty($jobId)) {\n // New Job\n $this->JobQueue->create($job);\n $this->JobQueue->save();\n $jobId = $this->JobQueue->id;\n } else {\n // Reset Job\n $this->JobQueue->id;\n $job['JobQueue']['status'] = 'Reset';\n $job['JobQueue']['description'] = '';\n $job['JobQueue']['finished'] = '';\n $this->JobQueue->save($job['JobQueue']);\n }\n\n array_push($params,$jobId);\n\n // Send job to JobQueue (Resque) server\n $redisJobId = CakeResque::enqueue($queue,$shell.'Shell',$params);\n //debug($redisJobId);die;\n }", "public function push($job, $data = '', $queue = null)\n\t{\n\t\t//Log::info('SqsQueue push', array('queue' => $queue));\n\n\t\treturn $this->pushRaw($this->createPayload($job, $data), $queue);\n\t}", "abstract public function requeue($message, array $options = array());", "public static function createFromQueue($handle, $data)\n {\n $message = static::createNew(json_decode($data, true));\n $message->setHandle($handle);\n return $message;\n }", "protected function makeRequestMessageQueues($arguments)\n {\n return\n [\n 'MessageQueues' => [\n \"rq\" => $arguments\n ]\n ];\n }", "function queueMessage($message){\n \t$record = $this->driver->insertMessage($message);\n }", "public function toMessage()\n {\n return new Message(array($this->requestId, $this->waitForResult));\n }", "public function serialize(Message $message);", "public function getQueue()\n\t{\n\t\t//Log::info('SqsQueue getQueue', array('queue' => $this->queue));\n\n\t\treturn $this->queue;\n\t}", "public function queue($queueName, JobInterface $job, \\DateTime $availableAt = null)\n {\n $queue = $this->queueManager->getQueue($queueName);\n\n $payload = serialize($job);\n $message = new Message($payload);\n $message->setAvailableAt($availableAt);\n\n $queue->publish($message);\n }", "public static function createFromPeekMessages(array $parsedResponse)\n {\n $msg = new QueueMessage();\n $expirationDate = $parsedResponse['ExpirationTime'];\n $insertionDate = $parsedResponse['InsertionTime'];\n\n $msg->setDequeueCount(intval($parsedResponse['DequeueCount']));\n\n $date = Utilities::rfc1123ToDateTime($expirationDate);\n $msg->setExpirationDate($date);\n\n $date = Utilities::rfc1123ToDateTime($insertionDate);\n $msg->setInsertionDate($date);\n\n $msg->setMessageId($parsedResponse['MessageId']);\n $msg->setMessageText($parsedResponse['MessageText']);\n\n return $msg;\n }" ]
[ "0.7112325", "0.5649649", "0.5644227", "0.56044924", "0.55013597", "0.5493268", "0.5460485", "0.5443264", "0.5381243", "0.5375392", "0.5322788", "0.52971953", "0.52881485", "0.5276939", "0.52579486", "0.52450734", "0.5222882", "0.51151013", "0.5105089", "0.5093871", "0.5087228", "0.507696", "0.50745285", "0.5049128", "0.50191444", "0.50006264", "0.49940875", "0.49575788", "0.4951618", "0.49504513" ]
0.6781176
1
Finder that enables datfield support by upgrading query connection It does not replace schema, so JSON types will not be available
public function findDatfields(Query $query): Query { if ($this->_datFieldsEnabled === false) { $connection = $this->getUpgradedConnectionForDatFields($query->getConnection()); $query->setConnection($connection); } return $query; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getFeedQuery($field)\n{\n if (isset($field[DB_TYPE])) {\n return $field[DB_TYPE];\n } else {\n return $field['query'];\n }\n}", "public function get_schema() {\n\t\t/* translators: %s: get_schema() */\n\t\t_doing_it_wrong( 'WPCOM_REST_API_V2_Field_Controller::get_schema', sprintf( __( \"Method '%s' must be overridden.\", 'jetpack' ), __METHOD__ ), 'Jetpack 6.8' );\n\t}", "public function reinstallFieldtypesCommand() {\n search_api_solr_install_missing_field_types();\n }", "abstract public function getQueryBuilder();", "public function getQueryBuilder(){ }", "function getFieldSpec_original ()\n // set and return the original specifications for this database table\n // (before being possibly amended at runtime)\n // based on Tony's\n {\n $fieldspec['fieldname'] = array('keyword' => 'value');\n\n // example specifications are as follows:\n $fieldspec['field1'] = array('type' => 'string');\n $fieldspec['field2'] = array('type' => 'date');\n $fieldspec['field3'] = array('type' => 'time');\n $fieldspec['field4'] = array('type' => 'datetime');\n $fieldspec['field5'] = array('type' => 'enum');\n $fieldspec['field6'] = array('type' => 'boolean',\n 'true' => 'Y|T|1',\n 'false' => 'N|F|0');\n $fieldspec['field7'] = array('type' => 'int1|tinyint|int2|smallint|int3|mediumint|int4|integer|int8|bigint|int');\n $fieldspec['field5'] = array('type' => 'numeric|decimal',\n 'precision' => 10,\n 'scale' => 2); // optional, default is 0\n // the following settings are optional for all fields:\n // 'size' => 12 - sets size of HTML control\n // 'required' = 'y' - will cause an empty field to be rejected\n // 'pkey' => 'y' - indicates a primary key field\n // 'noedit' => 'y' - make the field non-editable\n // 'nodisplay' => 'y' - do not display the field\n\n // the following settings are optional for string fields:\n // 'uppercase' => 'y' - will upshift a text field\n // 'lowercase' => 'y' - will downshift a text field\n // 'password' => 'y' - sets HTML type to 'password'\n // 'hash' => 'md5|sha1|custom' - defines type of encryption (optional)\n // 'subtype' => 'filename' - must be a valid filename\n\n // the following settings are optional for numeric fields:\n // 'unsigned' => 'y' - will reject negative values\n // 'minvalue' => 10 - defines a minimum acceptable value\n // 'maxvalue' => 99 - defines a maximum acceptable value\n // 'zerofill' => 'y' - causes leading spaces to be replaced with zeroes\n\n // the following settings are optional for date fields:\n // 'infinityisnull' => 'y' - shows blank to the user, but sets database value to '9999-12-31'\n\n // the following will specify which HTML control to use (default is 'text'):\n // 'control' => 'dropdown' - will create a dropdown list\n // 'control' => 'radiogroup' - will create a radiogroup\n // 'optionlist' => '<listname>' - required for dropdowns and radiogroups\n // 'align' => 'h|v' - alignment for radiogroups: horizotal or vertical (default is horizontal)\n // 'control' => 'multiline' - creates a multiline text box\n // 'cols' => 50 - defines number of columns for a multiline text box\n // 'rows' => 5 - defines number of rows for a multiline text box\n // 'control' => 'popup' - a picklist from another screen, not a dropdown\n // 'foreignfield' => '<name>' - field to be displayed from foreign table\n // 'popupname' => '<name>' - name of screen to call\n // 'control' => 'filepicker' - a picklist of file names\n // 'filepicker' => '<name>' - name of screen to call\n // 'image' => 'y' - identifies this field as an image\n // 'imagewidth' => 16 - image width\n // 'imageheight' => 16 - image height\n\n // primary key details (a single array of filed names\n $primary_key = array('fieldname1');\n\n // unique/candidate key details (optional)\n // each unique key may contain one or more fields\n $unique_keys[] = array('fieldname1', 'fieldname2');\n\n // array of optional child relationships (where this table is the parent)\n // 'type' indicates tyhe type of delete constraint (where 'cascade' is the same as 'delete')\n $child_relations[] = array('child' => 'tablename',\n 'type' => 'nullify/cascade/delete/restricted',\n 'fields' => array('parent_id' => 'child_id'));\n\n // array of optional parent relationships (where this table is the child)\n $parent_relations[] = array('parent' => 'tablename',\n 'parent_field' => 'fieldname',\n 'fields' => array('child_id' => 'parent_id'));\n\n // copy into member variables\n $this->primary_key = $primary_key;\n $this->unique_keys = $unique_keys;\n $this->child_relations = $child_relations;\n $this->parent_relations = $parent_relations;\n\n return $fieldspec;\n\n }", "public function getUpgradedConnectionForDatFields(Connection $connection): Connection\n {\n $driver = $connection->getDriver();\n $name = $connection->configName();\n\n if ($driver instanceof DatFieldDriverInterface) {\n return $connection;\n }\n\n // Upgrades connection with a new name\n $name .= '_dfm';\n\n // Returns upgraded connection if already created\n try {\n /**\n * @var \\Cake\\Database\\Connection $connection\n */\n $connection = ConnectionManager::get($name);\n } catch (MissingDatasourceConfigException $err) {\n // We need to find out which database server is used\n $db = get_class($driver);\n\n switch ($db) {\n case Mysql::class:\n $datfieldDriver = DatFieldMysql::class;\n break;\n default:\n throw new \\Exception('DatField driver can not be used with your database system');\n }\n\n // Creates new connection with upgraded driver and upgraded schema\n // tableSchema option is only supported from CakePHP ^3.9\n // Connection class will be overriden by config one\n // Connection driver will always be overriden by upgraded one\n /** @var array<string, mixed> $config */\n $config = array_merge(\n [\n 'className' => Connection::class,\n 'tableSchema' => DatFieldTableSchema::class,\n ],\n $connection->config(),\n [\n 'driver' => $datfieldDriver,\n ]\n );\n\n ConnectionManager::setConfig($name, $config);\n\n /**\n * @var \\Cake\\Database\\Connection $connection\n */\n $connection = ConnectionManager::get($name);\n }\n\n return $connection;\n }", "function multisite_views_views_data_alter(&$data) {\n foreach ($data as $table => $info) {\n if (empty($info['table']['base'])) {\n continue;\n }\n if (!isset($info['table']['base']['query class']) || $info['table']['base']['query class'] == 'views_plugin_query_default') {\n $data[$table]['table']['base']['query class'] = 'views_plugin_multisite_query';\n }\n }\n}", "public function schema();", "public function schema();", "abstract public function schema();", "protected abstract function getDbFields();", "public function getBoostQueryFields();", "private function getAltSchemaVersions($options)\n {\n\n $versions = Capsule::table('versions')->join('registry_object_versions', 'versions.id', '=' , 'registry_object_versions.version_id' )\n ->join('registry_objects', 'registry_object_versions.registry_object_id', '=', 'registry_objects.registry_object_id')\n ->join('schemas', 'versions.schema_id', '=', 'schemas.id')\n ->where('schemas.prefix', $options['metadataPrefix'])\n ->where('schemas.exportable', 1)\n ->where('registry_objects.status', 'PUBLISHED');\n\n if ($options['set']) {\n $set = $options['set'];\n $set = explode(':', $set);\n\n $opt = $set[0];\n $value = $set[1];\n\n switch ($opt) {\n case \"class\":\n $versions = $versions->where('registry_objects.class', $value);\n break;\n case \"datasource\":\n if ($value = $this->getDataSourceID($value)) {\n $versions = $versions->where('registry_objects.data_source_id', $value);\n }\n break;\n case \"group\":\n if ($value = $this->getGroupName($value)) {\n $versions = $versions->where('registry_objects.group', $value);\n }\n break;\n }\n }\n\n // from\n if (array_key_exists('from', $options) && $options['from']) {\n $records = $versions->where(\n 'versions.updated_at', '>=',\n DatesProvider::parseUTCToLocal($options['from'])->toDateTimeString()\n );\n }\n\n // until\n if (array_key_exists('until', $options)) {\n $until = Carbon::parse($options['until'], 'UTC');\n $until = $until->isStartOfDay() ? $until->addDay(1) : $until;\n $until = $until->setTimezone(Config::get('app.timezone'));\n if (array_key_exists('until', $options) && $options['until']) {\n $records = $records->where(\n 'versions.updated_at', '<=',\n $until->toDateTimeString()\n );\n }\n }\n\n $count = $versions->count();\n $records = $versions->select('versions.data',\n 'versions.updated_at',\n 'registry_objects.key',\n 'registry_objects.group',\n 'registry_objects.registry_object_id',\n 'registry_objects.class',\n 'registry_objects.data_source_id')->limit($options['limit'])->offset($options['offset'])->get();\n\n return [\n 'total' => $count,\n 'records' => $records\n ];\n\n }", "private static function migrate_to_71() {\n\t\t$query = array(\n\t\t\t'field_options like' => ':\"dyn_default_value\";s:',\n\t\t\t'field_options not like' => ':\"dyn_default_value\";s:0',\n\t\t);\n\n\t\t$fields = FrmDb::get_results( 'frm_fields', $query, 'id, type, field_options, default_value' );\n\n\t\tforeach ( $fields as $field ) {\n\t\t\t$field_options = $field->field_options;\n\t\t\tFrmProAppHelper::unserialize_or_decode( $field_options );\n\t\t\t$update = FrmProXMLHelper::migrate_dyn_default_value( $field->type, $field_options );\n\t\t\tif ( ! empty( $update ) ) {\n\t\t\t\tFrmField::update( $field->id, $update );\n\t\t\t}\n\n\t\t\tunset( $field );\n\t\t}\n\t}", "public function pluginSQL()\n {\n }", "public function schema( $schema );", "public function testBindersGetBinderCustomFields()\n {\n }", "protected function afterFind()\n {\n foreach($this->metadata->tableSchema->columns as $columnName => $column)\n { \n if (!strlen($this->$columnName)) continue;\n\n if ($column->dbType == 'date')\n { \n $this->$columnName = FormatHelper::dateConvView(\n $this->$columnName,\n Yii::app()->locale->getDateFormat('short')\n );\n }\n }\n return parent::afterFind();\n }", "public function add_extended_data_fields() {\n if ( version_compare( $this->addon->options[ 'woo_data_version' ] , '4.4.01' , '<=' ) ) {\n $this->add_woo_version_4_4_01_fields();\n $this->addon->options[ 'woo_data_version' ] = $this->addon->version;\n update_option( $this->addon->option_name , $this->addon->options );\n }\n\t}", "function getVersionField() {\n\t\ttrigger_error('Versionable is not implemented in driver formDB');\n\t}", "public function getSchema();", "public function getSchema();", "public function getSchema();", "function options_field_views_data(FieldStorageConfigInterface $field) {\n $data = views_field_default_views_data($field);\n\n foreach ($data as $table_name => $table_data) {\n foreach ($table_data as $field_name => $field_data) {\n if (isset($field_data['filter']) && $field_name != 'delta') {\n $data[$table_name][$field_name]['filter']['id'] = 'list_field';\n }\n if (isset($field_data['argument']) && $field_name != 'delta') {\n if ($field->getType() == 'list_string') {\n $data[$table_name][$field_name]['argument']['id'] = 'string_list_field';\n }\n else {\n $data[$table_name][$field_name]['argument']['id'] = 'number_list_field';\n }\n }\n }\n }\n\n return $data;\n}", "function query() {\n $this->field_alias = $this->real_field;\n }", "public function toBaseQueryBuilder();", "function set_flags_for_querytype(&$render)\n{\n debug(\"Setting flags for querytype {$render->query_type}\");\n switch ($render->query_type) {\n case QueryType::v08_GENERIC:\n break;\n\n case QueryType::v08_LIST_SERIES:\n debug(\"Setting is_series_list to true for v08\");\n $render->is_series_list = true;\n $render->is_series_name_column = 1;\n break;\n\n case QueryType::v08_SELECT: \n $render->timestamp_column = getTimestampColumn($render->columns); \n break;\n\n case QueryType::v09_GENERIC:\n break;\n\n case QueryType::v09_SELECT:\n # not needed because they already have human readable timestamps. $render->timestamp_column = getTimestampColumn($render->columns);\n break;\n\n case QueryType::v09_SHOW_MEASUREMENT:\n debug(\"Setting is_series_list to true for v09\");\n $render->is_series_list = true; \n $render->is_series_name_column = 0;\n break;\n \n default:\n break;\n }\n}", "private function serializeQueryForDb()\n {\n $this->query = call_user_func(config('tagging.displayer'), $this->query);\n }", "public function _ug330() {\n $dbc = $this->getDataSource();\n\n $db_driver = explode(\"/\", $dbc->config['datasource'], 2);\n\n if ($db_driver[0] !== 'Database') {\n throw new RuntimeException(\"Unsupported db_method: \" . $db_driver[0]);\n }\n\n $db_driverName = $db_driver[1];\n\n // Nothing to do if not Postgres\n if ($db_driverName !== 'Postgres') {\n return;\n }\n\n $dbprefix = $dbc->config['prefix'];\n\n $sql = \"ALTER TABLE \" . $dbprefix . \"ssh_keys ALTER COLUMN type TYPE varchar(32)\";\n\n $this->query($sql);\n }" ]
[ "0.56972075", "0.5467948", "0.5435869", "0.5301417", "0.5258293", "0.52034706", "0.5195877", "0.5179218", "0.5169729", "0.5169729", "0.51261216", "0.51059663", "0.50968885", "0.50748146", "0.50375926", "0.50266355", "0.5003167", "0.49926087", "0.49823347", "0.49534366", "0.49450678", "0.49333447", "0.49333447", "0.49333447", "0.49314567", "0.48993072", "0.48922193", "0.48887426", "0.4874801", "0.48717675" ]
0.5505041
1
Returns the downgraded version of a connection ot the same connection if not already upgraded
public function getDowngradedConnectionForDatFields(Connection $connection): Connection { $driver = $connection->getDriver(); $name = $connection->configName(); if (!($driver instanceof DatFieldDriverInterface)) { return $connection; } // Find previous connection name and restores it on table $name = str_replace('_dfm', '', $name); $connection = ConnectionManager::get($name); /** * @var \Cake\Database\Connection $connection */ return $connection; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function _previous_db_version() {\n\tstatic $cache;\n\treturn isset( $cache ) ? $cache : $cache = \\get_option( 'the_seo_framework_upgraded_db_version', '0' );\n}", "public function getUpgradedConnectionForDatFields(Connection $connection): Connection\n {\n $driver = $connection->getDriver();\n $name = $connection->configName();\n\n if ($driver instanceof DatFieldDriverInterface) {\n return $connection;\n }\n\n // Upgrades connection with a new name\n $name .= '_dfm';\n\n // Returns upgraded connection if already created\n try {\n /**\n * @var \\Cake\\Database\\Connection $connection\n */\n $connection = ConnectionManager::get($name);\n } catch (MissingDatasourceConfigException $err) {\n // We need to find out which database server is used\n $db = get_class($driver);\n\n switch ($db) {\n case Mysql::class:\n $datfieldDriver = DatFieldMysql::class;\n break;\n default:\n throw new \\Exception('DatField driver can not be used with your database system');\n }\n\n // Creates new connection with upgraded driver and upgraded schema\n // tableSchema option is only supported from CakePHP ^3.9\n // Connection class will be overriden by config one\n // Connection driver will always be overriden by upgraded one\n /** @var array<string, mixed> $config */\n $config = array_merge(\n [\n 'className' => Connection::class,\n 'tableSchema' => DatFieldTableSchema::class,\n ],\n $connection->config(),\n [\n 'driver' => $datfieldDriver,\n ]\n );\n\n ConnectionManager::setConfig($name, $config);\n\n /**\n * @var \\Cake\\Database\\Connection $connection\n */\n $connection = ConnectionManager::get($name);\n }\n\n return $connection;\n }", "public function getOldVersion()\n {\n return Storage::disk('general')->exists('installed')\n ? Storage::disk('general')->get('installed')\n : '0.0.0';\n }", "public function getConnClassVersion()\n {\n return $this->version_class;\n }", "public function downgrade()\n {\n return false;\n }", "public function getVersion() {\n\t\treturn $this->realConn->getVersion();\n\t}", "public function getDowngradeFrom($version)\n {\n return $this->getContents($this->down, $version);\n }", "function _downgrade( $previous_version ) { // phpcs:ignore,VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable\n\n\t// We aren't (currently) expecting issues where downgrading causes mayem. 4051 did cause some, though. This was added later; just set to current.\n\treturn _set_to_current_version();\n}", "function upgrade_SWB($conn,$post_data,$db_name,$db_version = 0){\n\tglobal $application_path;\n\t$upgrade_queries = upgradation_queries($db_name);\n\t//print_r($upgrade_queries);\n\t// echo $current_version;\n\t$all_version_list = array_keys($upgrade_queries);\n\t$filered_versions= array_filter($all_version_list, function($ver ) use($db_version) { \n\t\treturn ($ver > $db_version);\n\t});\n\t //echo '<pre>'; print_r($upgrade_queries); die;\n\t$error = 0;\n\t //If version is blank i.e we will run from scrap\n\tif(!empty($filered_versions)){\n\t\tforeach($filered_versions as $ver){\n\t\t\tif(!empty($upgrade_queries[$ver]) && $upgrade_queries[$ver]!=\"\"){\n\t\t\t\tforeach($upgrade_queries[$ver] as $query){\n\t\t\t\t\ttry{\n\t\t\t\t\t\tlog_data($application_path, \"upgrade_SWB\", $query);\n\t\t\t\t\t\t$upgrade_aps_table_res = $conn->query($query);\n\t\t\t\t\t} catch(PDOException $e) {\n\t\t\t\t\t// print_r($e);\n\t\t\t\t\t\t$error++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t}\n\t\n\tif($error==0){\n\t\treturn 1;\n\t} else {\n\t\treturn 0;\n\t}\n}", "public function getUpgradeDisabled()\n {\n return $this->upgrade_disabled;\n }", "public function __databaseVersion($connectionDetails) {\n\t\t$requiredVersion = $this->__supportedDatabases[$connectionDetails['datasource']];\n\n\t\t$version = current(Hash::flatten(ConnectionManager::getDataSource('installer')->query($requiredVersion['versionQuery'])));\n\n\t\treturn current(explode('-', $version));\n\t}", "function current_upgrade() {\n\treturn is_upgrades_page() && doing_upgrade()\n\t\t? sanitize_key( $_GET['upgrade'] )\n\t\t: false;\n}", "public static function maybe_db_upgrade() {\n\n\t\tglobal $wpdb;\n\n\t\t$headway_settings = get_option('headway', array('version' => 0));\n\t\t$db_version = $headway_settings['version'];\n\n\t\t/* If this is a fresh install then we need to merge in the default design editor settings */\n\t\t\tif ( $db_version === 0 && !get_option('headway_option_group_general') ) {\n\n\t\t\t\tHeadwayElementsData::merge_core_default_design_data();\n\n\t\t\t\tself::mysql_dbdelta();\n\n\t\t\t\t/* Update the version here. */\n\t\t\t\t$headway_settings = get_option('headway', array('version' => 0));\n\t\t\t\t$headway_settings['version'] = HEADWAY_VERSION;\n\n\t\t\t\tupdate_option('headway', $headway_settings);\n\n\t\t\t\treturn $headway_settings;\n\n\t\t\t}\n\t\t\t\n\t\t/* If the version in the database is already up to date, then there are no upgrade functions to be ran. */\n\t\tif ( version_compare($db_version, HEADWAY_VERSION, '>=') ) {\n\t\t\tif ( get_option('headway_upgrading') ) {\n\t\t\t\tdelete_option('headway_upgrading');\n\t\t\t}\n\n\t\t\treturn false;\n\t\t}\n\n\t\tHeadway::load('maintenance/upgrades');\n\n\t\treturn HeadwayMaintenance::do_upgrades();\n\t\t\n\t}", "function downgrade(PDO $pdo);", "public function getVersion()\n {\n $this->query(\"SELECT VERSION()\");\n $this->nextRecord();\n $array = $this->getRecord();\n return array_pop($array);\n }", "protected function getAvailableUpdate(string $package_name) {\n $outdated_packages = $this->getAllOutdatedPackages();\n foreach ($outdated_packages as $package) {\n if ($package->name == $package_name && $package->version != $package->latest) {\n return $package;\n }\n }\n return NULL;\n }", "private function _getVersion($connection = null) {\n\t\tif ($connection === null) {\n\t\t\t$gearman = $this->_connect();\n\t\t} else {\n\t\t\t$gearman = $connection;\n\t\t}\n\n\t\tfputs($gearman, \"version\\n\");\n\t\t$rawVersion = array();\n\t\twhile (!feof($gearman) && ($line = fgets($gearman)) && ($line != \".\\n\")) {\n\t\t\t$rawVersion[] = $line;\n\t\t}\n\t\tif (count($rawVersion) == 1) {\n\t\t\t$this->_version = trim($rawVersion[0]);\n\t\t} else {\n\t\t\tunset($this->_version);\n\t\t}\n\n\t\tif ($connection === null) {\n\t\t\tfclose($gearman);\n\t\t}\n\n\t\treturn $this->_version;\n\t}", "protected function _get_version()\n\t{\n\t\t$row = $this->db->select('version')->get($this->_migration_table)->row();\n\t\treturn $row ? $row->version : '0';\n\t}", "public function upgrade();", "public function getCurrentVersion(DatabaseConnection $db) {\n\n\t\ttry {\n\n\t\t\t$sql = \"SELECT MAX($this->column) FROM $this->table\";\n\t\t\t$stmt = $db->prepare($sql);\n\t\t\t$r = $stmt->execute();\n\n\t\t\t$version = $r->fetchColumn();\n\t\t\tif ($version === false) {\n\t\t\t\t$version = null;\n\t\t\t}\n\t\t\treturn $version;\n\n\t\t} catch (DatabaseException $e) {\n\t\t\tif ($e->tableDoesNotExist()) {\n\t\t\t\treturn null;\n\t\t\t} else {\n\t\t\t\tthrow $e;\n\t\t\t}\n\t\t}\n\n\t}", "function check_upgrade() {\n\t\t$defaults = $this->defaults();\n\t\tif ( version_compare( $defaults['version'], $this->get_option( 'version' ), '>' ) )\n\t\t\t$this->do_upgrade();\n\t}", "public function getLatestVersion($xml_url = ''){\n if(!$xml_url){\n $xml_url = $this->config->item('cms_chkverxmlurl_main');\n }\n $xml_url_bak = $this->config->item('cms_chkverxmlurl_backup');\n if($this->Cms_model->is_url_exist($xml_url) !== FALSE){\n $xml_file = $this->Cms_model->get_contents_url($xml_url);\n $xml = simplexml_load_string($xml_file);\n unset($xml_file, $xml_url);\n }else if($this->Cms_model->is_url_exist($xml_url) === FALSE && $this->Cms_model->is_url_exist($xml_url_bak) !== FALSE){\n $xml_file = $this->Cms_model->get_contents_url($xml_url_bak);\n $xml = simplexml_load_string($xml_file);\n unset($xml_file, $xml_url_bak);\n }else{\n $xml = FALSE;\n }\n if($xml !== FALSE){\n return $xml->version;\n }else{\n $xml_cur = $this->Cms_model->getVersion();\n if(strpos($xml_cur, 'Beta') !== false){\n $vercur = str_replace(' Beta', '', $xml_cur);\n $cur_xml = explode('.', $vercur);\n $xml_version = $cur_xml[0].'.'.$cur_xml[1].'.'.($cur_xml[2] - 1);\n unset($xml_cur, $vercur, $cur_xml);\n }else{\n $xml_version = $xml_cur;\n unset($xml_cur);\n }\n return $xml_version;\n }\n }", "public function get_config_version()\n\t{\n\t\treturn abs($this->_migration_version);\n\t}", "protected function _get_version()\n\t{\n\t\t$this->db->where('module', $this->_module_name);\n\t\t$row = $this->db->get($this->_migration_table)->row();\n\t\treturn (!is_null($row)) ? $row->version : '0';\n\t}", "public function upgrade(){\n // use MF_DB_VERSION\n\n }", "public function getAdapterVersion() {\n\t\tif ($this->execute()) {\n\t\t\treturn implode(\".\", $this->adapterVersion);\n\t\t}\n\t\treturn false;\n\t}", "public function latest()\n\t{\n\t\t$version = $this->config->item('migrations_version');\n\t\treturn $this->version($version);\n\t}", "private function v173_upgrades() {\n\n\t\t$this->v17_upgrade_referral_rates();\n\n\t\t$this->upgraded = true;\n\n\t}", "function previousVersion()\n {\n $db = eZDB::instance();\n $versions = $db->arrayQuery(\"SELECT version FROM ezcontentobject_version\n WHERE contentobject_id='$this->ID'\n ORDER BY version DESC\", array('limit' => 2));\n if (count($versions) > 1 and isset($versions[1]['version'])) {\n return $versions[1]['version'];\n } else {\n return false;\n }\n }", "public function is_possible_upgrade() {\n\t\t\treturn false;\n\t\t}" ]
[ "0.61405253", "0.6050633", "0.57880694", "0.5681421", "0.5626386", "0.5590334", "0.5471535", "0.53839105", "0.5352904", "0.53289497", "0.5275848", "0.523072", "0.51873416", "0.5143122", "0.5115735", "0.51125693", "0.5056288", "0.5029091", "0.50131947", "0.49794963", "0.49791792", "0.49667597", "0.49617994", "0.49570292", "0.49444446", "0.49392158", "0.49233112", "0.4913491", "0.49082106", "0.4890082" ]
0.62710917
0
Returns the upgraded version of a connection or the same connection if already upgraded
public function getUpgradedConnectionForDatFields(Connection $connection): Connection { $driver = $connection->getDriver(); $name = $connection->configName(); if ($driver instanceof DatFieldDriverInterface) { return $connection; } // Upgrades connection with a new name $name .= '_dfm'; // Returns upgraded connection if already created try { /** * @var \Cake\Database\Connection $connection */ $connection = ConnectionManager::get($name); } catch (MissingDatasourceConfigException $err) { // We need to find out which database server is used $db = get_class($driver); switch ($db) { case Mysql::class: $datfieldDriver = DatFieldMysql::class; break; default: throw new \Exception('DatField driver can not be used with your database system'); } // Creates new connection with upgraded driver and upgraded schema // tableSchema option is only supported from CakePHP ^3.9 // Connection class will be overriden by config one // Connection driver will always be overriden by upgraded one /** @var array<string, mixed> $config */ $config = array_merge( [ 'className' => Connection::class, 'tableSchema' => DatFieldTableSchema::class, ], $connection->config(), [ 'driver' => $datfieldDriver, ] ); ConnectionManager::setConfig($name, $config); /** * @var \Cake\Database\Connection $connection */ $connection = ConnectionManager::get($name); } return $connection; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getVersion() {\n\t\treturn $this->realConn->getVersion();\n\t}", "public function getConnClassVersion()\n {\n return $this->version_class;\n }", "function _previous_db_version() {\n\tstatic $cache;\n\treturn isset( $cache ) ? $cache : $cache = \\get_option( 'the_seo_framework_upgraded_db_version', '0' );\n}", "private function _getVersion($connection = null) {\n\t\tif ($connection === null) {\n\t\t\t$gearman = $this->_connect();\n\t\t} else {\n\t\t\t$gearman = $connection;\n\t\t}\n\n\t\tfputs($gearman, \"version\\n\");\n\t\t$rawVersion = array();\n\t\twhile (!feof($gearman) && ($line = fgets($gearman)) && ($line != \".\\n\")) {\n\t\t\t$rawVersion[] = $line;\n\t\t}\n\t\tif (count($rawVersion) == 1) {\n\t\t\t$this->_version = trim($rawVersion[0]);\n\t\t} else {\n\t\t\tunset($this->_version);\n\t\t}\n\n\t\tif ($connection === null) {\n\t\t\tfclose($gearman);\n\t\t}\n\n\t\treturn $this->_version;\n\t}", "public function getDowngradedConnectionForDatFields(Connection $connection): Connection\n {\n $driver = $connection->getDriver();\n $name = $connection->configName();\n\n if (!($driver instanceof DatFieldDriverInterface)) {\n return $connection;\n }\n\n // Find previous connection name and restores it on table\n $name = str_replace('_dfm', '', $name);\n $connection = ConnectionManager::get($name);\n\n /**\n * @var \\Cake\\Database\\Connection $connection\n */\n return $connection;\n }", "public function getOldVersion()\n {\n return Storage::disk('general')->exists('installed')\n ? Storage::disk('general')->get('installed')\n : '0.0.0';\n }", "public function upgrade();", "public function __databaseVersion($connectionDetails) {\n\t\t$requiredVersion = $this->__supportedDatabases[$connectionDetails['datasource']];\n\n\t\t$version = current(Hash::flatten(ConnectionManager::getDataSource('installer')->query($requiredVersion['versionQuery'])));\n\n\t\treturn current(explode('-', $version));\n\t}", "function current_upgrade() {\n\treturn is_upgrades_page() && doing_upgrade()\n\t\t? sanitize_key( $_GET['upgrade'] )\n\t\t: false;\n}", "public function upgrade(){\n // use MF_DB_VERSION\n\n }", "public function refreshVersion() {\n\t\treturn $this->_getVersion();\n\t}", "public function getVersion()\n {\n $this->query(\"SELECT VERSION()\");\n $this->nextRecord();\n $array = $this->getRecord();\n return array_pop($array);\n }", "protected function _get_version()\n\t{\n\t\t$row = $this->db->select('version')->get($this->_migration_table)->row();\n\t\treturn $row ? $row->version : '0';\n\t}", "public static function maybe_db_upgrade() {\n\n\t\tglobal $wpdb;\n\n\t\t$headway_settings = get_option('headway', array('version' => 0));\n\t\t$db_version = $headway_settings['version'];\n\n\t\t/* If this is a fresh install then we need to merge in the default design editor settings */\n\t\t\tif ( $db_version === 0 && !get_option('headway_option_group_general') ) {\n\n\t\t\t\tHeadwayElementsData::merge_core_default_design_data();\n\n\t\t\t\tself::mysql_dbdelta();\n\n\t\t\t\t/* Update the version here. */\n\t\t\t\t$headway_settings = get_option('headway', array('version' => 0));\n\t\t\t\t$headway_settings['version'] = HEADWAY_VERSION;\n\n\t\t\t\tupdate_option('headway', $headway_settings);\n\n\t\t\t\treturn $headway_settings;\n\n\t\t\t}\n\t\t\t\n\t\t/* If the version in the database is already up to date, then there are no upgrade functions to be ran. */\n\t\tif ( version_compare($db_version, HEADWAY_VERSION, '>=') ) {\n\t\t\tif ( get_option('headway_upgrading') ) {\n\t\t\t\tdelete_option('headway_upgrading');\n\t\t\t}\n\n\t\t\treturn false;\n\t\t}\n\n\t\tHeadway::load('maintenance/upgrades');\n\n\t\treturn HeadwayMaintenance::do_upgrades();\n\t\t\n\t}", "public function get_version() {\r\n\t\treturn $this->new_version;\r\n\t}", "function connectionStatus()\n{\n return $conn;\n}", "public function getConnection()\n {\n return $this->connectionInstance ?? static::resolveConnection($this->getConnectionName());\n }", "function upgrade_SWB($conn,$post_data,$db_name,$db_version = 0){\n\tglobal $application_path;\n\t$upgrade_queries = upgradation_queries($db_name);\n\t//print_r($upgrade_queries);\n\t// echo $current_version;\n\t$all_version_list = array_keys($upgrade_queries);\n\t$filered_versions= array_filter($all_version_list, function($ver ) use($db_version) { \n\t\treturn ($ver > $db_version);\n\t});\n\t //echo '<pre>'; print_r($upgrade_queries); die;\n\t$error = 0;\n\t //If version is blank i.e we will run from scrap\n\tif(!empty($filered_versions)){\n\t\tforeach($filered_versions as $ver){\n\t\t\tif(!empty($upgrade_queries[$ver]) && $upgrade_queries[$ver]!=\"\"){\n\t\t\t\tforeach($upgrade_queries[$ver] as $query){\n\t\t\t\t\ttry{\n\t\t\t\t\t\tlog_data($application_path, \"upgrade_SWB\", $query);\n\t\t\t\t\t\t$upgrade_aps_table_res = $conn->query($query);\n\t\t\t\t\t} catch(PDOException $e) {\n\t\t\t\t\t// print_r($e);\n\t\t\t\t\t\t$error++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t}\n\n\t}\n\t\n\tif($error==0){\n\t\treturn 1;\n\t} else {\n\t\treturn 0;\n\t}\n}", "protected function _get_version()\n\t{\n\t\t$this->db->where('module', $this->_module_name);\n\t\t$row = $this->db->get($this->_migration_table)->row();\n\t\treturn (!is_null($row)) ? $row->version : '0';\n\t}", "function _set_to_current_version() {\n\n\t_set_version();\n\n\t_release_upgrade_lock();\n\n\t/**\n\t * Clear the cache to prevent a get_option() from retrieving a stale database version to the cache.\n\t * Not all caching plugins recognize 'flush', so delete the options cache too, just to be safe.\n\t *\n\t * @see WordPress's `.../update-core.php`\n\t * @since 3.1.4\n\t */\n\t\\wp_cache_flush();\n\t\\wp_cache_delete( 'alloptions', 'options' );\n\n\t// The option update might've failed. Try to obtain the latest version.\n\treturn (string) \\get_option( 'the_seo_framework_upgraded_db_version' );\n}", "public function get_connection() {\n\t\treturn $this->connection;\n\t}", "public function get_current_connection() {\n\t\treturn isset( $this->currentConnection ) ? $this->currentConnection : null;\n\n\t}", "function client_version()\n {\n $client = db2_client_info($this->conn);\n $ver = $client->DRIVER_NAME.' '.$client->DRIVER_VER;\n return $ver;\n }", "public function get_version()\n {\n if ($this->is_connected())\n {\n return [\n \"server\" => mysqli_get_server_info($this->m_db_link),\n \"host\" => mysqli_get_host_info($this->m_db_link),\n \"client\" => mysqli_get_client_info(),\n \"proto\" => mysqli_get_proto_info($this->m_db_link)\n ];\n } // if\n\n return null;\n }", "public static function getNewConnection(){\n\t\t$host \t= $GLOBALS['gHost'];\n\t\t$db \t= $GLOBALS['gDb'];\n\t\t$port \t= $GLOBALS['gPort'];\n\t\t$user \t= $GLOBALS['gUser'];\n\t\t$pass \t= $GLOBALS['gPass'];\n\t\t\n\t\t$connectionString = \"host='\".$host.\"' port='\".$port.\"' dbname='\".$db.\"'user='\".$user.\"' password='\".$pass.\"'\";\n\t\t$connection = pg_connect($connectionString);\n\t\t\n\t\tif ($connection) {\n\t\t\treturn $connection;\n\t\t}\n\t\telse {\n\t\t\treturn pg_last_error($connection);\n\t\t}\n\t}", "public function useLegacyConnection(): Client\n {\n return $this->legacyConnection;\n }", "public function getAdapterVersion() {\n\t\tif ($this->execute()) {\n\t\t\treturn implode(\".\", $this->adapterVersion);\n\t\t}\n\t\treturn false;\n\t}", "function previousVersion()\n {\n $db = eZDB::instance();\n $versions = $db->arrayQuery(\"SELECT version FROM ezcontentobject_version\n WHERE contentobject_id='$this->ID'\n ORDER BY version DESC\", array('limit' => 2));\n if (count($versions) > 1 and isset($versions[1]['version'])) {\n return $versions[1]['version'];\n } else {\n return false;\n }\n }", "public function get_connection() {\n\t\treturn $this->connect;\n\t}", "public function get_connection()\n {\n return $this->connection;\n }" ]
[ "0.6121771", "0.60264343", "0.57952195", "0.57171106", "0.5709757", "0.53817356", "0.52798873", "0.52771866", "0.52739155", "0.5207209", "0.5199505", "0.51723814", "0.51671165", "0.51330775", "0.512055", "0.51062155", "0.5069045", "0.50570977", "0.5037945", "0.50335383", "0.5024221", "0.50101626", "0.50011283", "0.4994555", "0.4985513", "0.49789885", "0.49773112", "0.49699807", "0.49671775", "0.49535224" ]
0.6055171
1
$this>addRoutes('', ['controller' => 'Home', 'action' => 'index']);
protected function add() { // $this->addRoutes('posts', ['controller' => 'Posts', 'action' => 'index']); $this->addRoute('{controller}'); $this->addRoute('{controller}/{action}'); $this->addRoute('{controller}/{action}/{id:\d+}'); $this->addRoute('admin/{action}/{controller}'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function routes();", "public function getRoutes(): array\n {\n return [\n 'index' => 'home',\n ];\n }", "protected function initRoutes() {\n $array['home'] = array('route' => '/phpmvc/public/index', 'controller' => 'index', 'action' => 'index');\n $array['empresa'] = array('route' => '/phpmvc/public/empresa', 'controller' => 'index', 'action' => 'empresa');\n $array['pagenotfound'] = array('route' => '/phpmvc/public/pagenotfound', 'controller' => 'index', 'action' => 'pagenotfound');\n $this->setRoutes($array);\n }", "protected function Router()\n {\n $routes = [\n 'index' => array(\n 'route' => '/',\n 'controller' => 'CRUDController',\n 'action' => 'index',\n 'method' => 'GET'\n ),\n 'create' => array(\n 'route' => '/create',\n 'controller' => 'CRUDController',\n 'action' => 'create',\n 'method' => 'GET'\n ),\n 'store' => array(\n 'route' => '/store',\n 'controller' => 'CRUDController',\n 'action' => 'store',\n 'method' => 'POST'\n ),\n 'delete' => array(\n 'route' => '/delete',\n 'controller' => 'CRUDController',\n 'action' => 'delete',\n 'method' => 'POST'\n )\n ];\n $this->setRoutes($routes);\n }", "public function createRoutes()\n {\n }", "public abstract function routes();", "private function routes()\n {\n return [\n // Home\n [\n 'slug' => 'home',\n 'method' => 'GET',\n 'callback' => [new Home(), 'index']\n ],\n // ...\n ];\n }", "abstract public function register_routes();", "public function _initRoutes()\n {\n $frontController = Zend_Controller_Front::getInstance();\n $router = $frontController->getRouter();\n $route = new Zend_Controller_Router_Route(\n 'page/:page/',\n array(\n /*'page' => 1,*/\n 'action' => 'index',\n 'controller' => 'Index'\n ),\n array('page' => '\\d+')\n );\n $router->addRoute('index', $route);\n }", "protected function iniRoutes() {\n \n }", "private function fillWithDefaultRoute(): void\n {\n $this->actions[] = [\n 'class' => 'RocknRoot\\\\StrayFw\\\\Console\\\\Controller',\n 'action' => 'help',\n ];\n $this->args = array();\n }", "public function routes() {\n\treturn redirect()->action(\"\\\\\" . (self::class) . \"@index\");\n }", "public function addRestRoutes()\n {\n }", "protected function setUpRoutes()\n {\n }", "function defineRoutes()\n {\n Router::map('dashboard_quote', 'dashboard/quote', array('controller' => 'quote', 'action' => 'index'));\n Router::map('add_quote', 'add/quote', array('controller' => 'quote', 'action' => 'add'));\n Router::map('edit_quote', 'edit/:quote_id/quote', array('controller' => 'quote', 'action' => 'edit'),array('quote_id'=>Router::MATCH_ID));\n Router::map('delete_quote', 'delete/:quote_id/quote', array('controller' => 'quote', 'action' => 'delete'),array('quote_id'=>Router::MATCH_ID));\n Router::map('convert_quote', 'convert/:quote_id/quote', array('controller' => 'quote', 'action' => 'convert'),array('quote_id'=>Router::MATCH_ID));\n Router::map('api_quote', 'api/quote', array('controller' => 'quote', 'action' => 'api'));\n \n }", "public function indexAction ()\n {\n }", "public function indexAction ()\n {\n }", "protected function setupRoutes()\r\n\t{\r\n\t}", "public function indexAction() {\n\t}", "public function indexAction() {\n\t}", "function add_routes()\n{\n // Language slug\n $langs = [];\n foreach (\\Config::get(\"applangs\") as $l) {\n if (!in_array($l[\"code\"], $langs)) {\n $langs[] = $l[\"code\"];\n }\n\n if (!in_array($l[\"shortcode\"], $langs)) {\n $langs[] = $l[\"shortcode\"];\n }\n }\n $langslug = $langs ? \"[\".implode(\"|\", $langs).\":lang]\" : \"\";\n\n // Index (Landing Page)\n // \n // Replace \"IndexController\" with \"LoginController\" to completely disable Landing page \n // After this change, Login page will be your default landing page\n // \n // This is useful in case of self use, or having different \n // landing page in different address. For ex: you can install the script\n // to subdirectory or subdomain of your wordpress website.\n \\App::addRoute(\"GET\", \"/\", [\n THEMES_PATH . \"/\" . IDNAME . \"/controllers/IndexController.php\",\n __NAMESPACE__ . \"\\IndexController\"\n ]);\n \\App::addRoute(\"GET\", \"/\" . $langslug . \"?/?\", [\n THEMES_PATH . \"/\" . IDNAME . \"/controllers/IndexController.php\",\n __NAMESPACE__ . \"\\IndexController\"\n ]);\n\n\n // Login\n \\App::addRoute(\"GET|POST\", \"/\" . $langslug . \"?/login/?\", [\n THEMES_PATH . \"/\" . IDNAME . \"/controllers/LoginController.php\",\n __NAMESPACE__ . \"\\LoginController\"\n ]);\n\n // Signup\n \\App::addRoute(\"GET|POST\", \"/\" . $langslug . \"?/signup/?\", [\n THEMES_PATH . \"/\" . IDNAME . \"/controllers/SignupController.php\",\n __NAMESPACE__ . \"\\SignupController\"\n ]);\n\n // Recovery\n \\App::addRoute(\"GET|POST\", \"/\".$langslug.\"?/recovery/?\", [\n THEMES_PATH . \"/\" . IDNAME . \"/controllers/RecoveryController.php\",\n __NAMESPACE__ . \"\\RecoveryController\"\n ]);\n \\App::addRoute(\"GET|POST\", \"/\".$langslug.\"?/recovery/[i:id].[a:hash]/?\", [\n THEMES_PATH . \"/\" . IDNAME . \"/controllers/PasswordResetController.php\",\n __NAMESPACE__ . \"\\PasswordResetController\"\n ]);\n\n\n // Privacy Policy\n \\App::addRoute(\"GET\", \"/\" . $langslug . \"?/privacy/?\", [\n THEMES_PATH . \"/\" . IDNAME . \"/controllers/PrivacyController.php\",\n __NAMESPACE__ . \"\\PrivacyController\"\n ]);\n\n // Terms of Services\n \\App::addRoute(\"GET\", \"/\" . $langslug . \"?/terms/?\", [\n THEMES_PATH . \"/\" . IDNAME . \"/controllers/TermsController.php\",\n __NAMESPACE__ . \"\\TermsController\"\n ]);\n}", "public function indexAction ( )\n {\n\n }", "public function indexAction ( )\n {\n\n }", "public function indexAction() {\r\n\t}", "private function route()\n {\n // Initialize the router\n $router = new AltoRouter();\n $router->setBasePath(BASEPATH);\n\n // Load plugin/theme routes first\n // TODO: Update router.map in modules to App::addRoute();\n $GLOBALS[\"_ROUTER_\"] = $router;\n \\Event::trigger(\"router.map\", \"_ROUTER_\");\n $router = $GLOBALS[\"_ROUTER_\"];\n\n // Load internal routes\n $this->addInternalRoutes();\n\n // Load global routes\n include APPPATH.\"/inc/routes.inc.php\";\n \n // Map the routes\n $router->addRoutes(App::getRoutes());\n\n // Match the route\n $route = $router->match();\n $route = json_decode(json_encode($route));\n\n if ($route) {\n if (is_array($route->target)) {\n require_once $route->target[0];\n $controller = $route->target[1];\n } else {\n $controller = $route->target.\"Controller\";\n }\n } else {\n header(\"HTTP/1.0 404 Not Found\");\n $controller = \"IndexController\";\n }\n\n $this->controller = new $controller;\n $this->controller->setVariable(\"Route\", $route);\n }", "protected function routes()\n {\n Nova::routes()\n ->withAuthenticationRoutes()\n ->withPasswordResetRoutes()\n ->register();\n }", "protected function routes()\n {\n Nova::routes()\n ->withAuthenticationRoutes()\n ->withPasswordResetRoutes()\n ->register();\n }", "public function sindex() {\r\n Route::get('mine', $this->controller . '@sindex')->middleware($this->middleware);\r\n }", "public function indexAction()\n {\n\t \n }", "public function init() {\r\n $this->_router->route();\r\n }" ]
[ "0.734772", "0.7206036", "0.7132314", "0.69423693", "0.69305205", "0.6909892", "0.69010705", "0.68760496", "0.677549", "0.6754086", "0.6751809", "0.6747818", "0.6734045", "0.66959304", "0.6655231", "0.66551083", "0.66551083", "0.66362536", "0.66278976", "0.66278976", "0.66041666", "0.6595795", "0.6595795", "0.6590787", "0.6584924", "0.6581084", "0.6581084", "0.65773344", "0.6572089", "0.65715003" ]
0.7706266
0
Test case for listTransactions List Transactions.
public function testListTransactions() { // TODO: implement $this->markTestIncomplete('Not implemented'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getTransactions();", "public function getTransactions();", "public function getTransactions();", "public function list_trans() {\n require_once( CF7_payro24_PLUGIN_PATH . 'templates/list-transactions.php' );\n }", "public function listTransactions()\n\t{\n\t\t$nonce = $this->getNonce();\n\n\t\t$params = array(\n\t\t\t'key' => $this->apiKey,\n\t\t\t'nonce' => $nonce,\n\t\t\t'signature' => $this->getSignature($nonce)\n\t\t);\n\n\t\t$request = new Request(static::TRANSACTION_LIST_URL);\n\t\t$request->setTrustedCertificate(CertificateHelper::getCaInfoFile());\n\t\t$response = $request->post($params);\n\n\t\treturn json_decode($response->getResponse(), TRUE);\n\t}", "public function testGetAllSmartTransactions()\n {\n try {\n $smartTransactionsList = self::$api->getAll(10);\n } catch (ApiException $e) {\n print_r($e->getResponseBody());\n throw $e;\n }\n\n $this->assertNotEmpty($smartTransactionsList);\n $this->assertInstanceOf(SmartTransactionsList::class, $smartTransactionsList);\n\n foreach ($smartTransactionsList->getData() as $smartTransaction) {\n $this->assertInstanceOf(SmartTransactionsProductModel::class, $smartTransaction);\n $this->assertNotEmpty($smartTransaction->getId());\n $this->assertNotEmpty($smartTransaction->getStatus());\n $this->assertEquals(self::SMART_TRANSACTIONS, $smartTransaction->getObject());\n }\n }", "public function it_can_list_all()\n {\n $balanceTransactions = BalanceTransaction::all();\n\n $this->assertTrue($balanceTransactions->isList());\n $this->assertSame($balanceTransactions->url, '/v1/balance/history');\n }", "public function getTransactions(): array\n {\n return $this->transactions;\n }", "public function getTransactions()\n {\n return $this->transactions;\n }", "public function getTransactions()\n {\n $transaction_id = $this->getRequest()->getPost('transaction_id');\n\n $iterator = new Transactions();\n if (is_numeric($transaction_id)) \n {\n $iterator->append($this->getTransaction());\n } \n else if (count($data = json_decode($transaction_id, true))) {\n foreach ($data as $transaction_id) {\n $iterator->append(\n $this->getService('StatementMapper')->getTransactionById($transaction_id)\n );\n }\n }\n\n return $iterator;\n }", "public function transactions();", "public function testTranscriptsList()\n {\n }", "public function actionTransactions()\n\t{\n\t\tif(FacebookController::getUserID() ==0)\n\t\t{\n\t\t\t$error = new ErrorController('error');\n\t\t\t$error->actionFaildUserID();\n\t\t\treturn ;\n\t\t}\n\t\t$user_id = FacebookController::getUserID();\n\t\t$allTrans = Transaction::model()->findAll('fb_id=:fb_id ORDER BY dateTime DESC',array(':fb_id'=> $user_id));\n\t\t$this->render('transactions',array('user_id'=>$user_id,'allTrans'=>$allTrans));\n\t}", "public function viewSuccessfulTransactions();", "public function getAllTransactions(){\n \t$transactions = Transaction::orderBy('id', 'DESC')->get();\n \t$trans_box = [];\n \tif(count($transactions) > 0){\n \t\tforeach ($transactions as $tl) {\n \t\t\t$user = User::where('id', $tl->user_id)->first();\n \t\t\tif($user !== null){\n \t\t\t\t$data = [\n \t\t\t\t\t'id' \t\t\t=> $tl->id,\n \t\t\t\t\t'name' \t\t\t=> $user->name,\n \t\t\t\t\t'email' \t\t=> $user->email,\n \t\t\t\t\t'description' \t=> $tl->name,\n \t\t\t\t\t'trans_ref'\t\t=> $tl->ref,\n \t\t\t\t\t'amount' \t\t=> number_format($tl->amount, 2),\n \t\t\t\t\t'last_updated' => $tl->updated_at->diffForHumans(),\n \t\t\t\t\t'date' \t\t\t=> $tl->created_at->toDateTimeString(),\n \t\t\t\t];\n\n \t\t\t\tarray_push($trans_box, $data);\n \t\t\t}\n \t\t}\n \t}\n\n \t// return\n \treturn $trans_box;\n }", "public function testReturnCustomerTransactions(array $transactions)\n {\n /** @var Transaction $transaction */\n foreach ($transactions as $transaction)\n {\n $this->assertEquals($this->customerid, $transaction->getCustomerID());\n }\n }", "public function show(Transactions $transactions)\n {\n //\n }", "public function show(Transactions $transactions)\n {\n //\n }", "public function getTransactions()\n {\n return $this->transaction;\n }", "public function supports_transactions ();", "public function index()\n {\n return $this->showAll(Transactions::all());\n }", "public function collectTransactions() {}", "public function getTransactions() {\n return $this->trans;\n }", "public function getTransactions()\r\n\t{\r\n\t\t$transactions = array();\r\n\r\n\t\tforeach ($this->getChildrenByName('transaction') as $transac)\r\n\t\t\t$transactions[] = new CertissimTransactionResponse($transac->getXML());\r\n\r\n\t\treturn $transactions;\r\n\t}", "public function testUsersCanViewTransactions()\n {\n $user = factory(User::class)->create();\n\n $account = factory(Account::class)->create([\n 'user_id' => $user->id\n ]);\n\n factory(Transaction::class, 2)->create([\n 'account_id' => $account->id\n ]);\n\n factory(Transaction::class, 2)->create([\n 'account_id' => $account->id,\n 'type' => 'Debit'\n ]);\n\n $this->actingAs($user, 'users')->get('/api/transactions')->assertJson([\n 'status' => 'success',\n 'transactions' => $account->transactions()->orderBy('created_at', 'desc')->orderBy('id', 'desc')->paginate(20)->toArray()\n ])->assertStatus(200);\n }", "public function getUnconfirmedTransactionsList(){\n $command = new Command($this->host, self::TRANSACTIONS_UNCONFIRMED_LIST,\"GET\", $this->enableCache, $this->cacheLifetime, $this->cacheFolder);\n $command->execute();\n return $command->getData(\"transactions\");\n }", "public function collectTransactions(){ }", "public function testGetTransactions()\n {\n }", "public function indexAction()\n {\n $transactions = $this->getDoctrine()->getRepository(Transaction::class)->getAllTransactions();\n\n return $this->render('TransactionBundle:Transaction:list.html.twig', array(\n 'transactions' => $transactions,\n ));\n }", "public function transactions() \n {\n $transaction_data_filtered = $this->transactions->all('desc');\n \n if (count($transaction_data_filtered) > 10) {\n $transaction_data_short = array_slice($transaction_data_filtered, 0, 10);\n } else {\n $transaction_data_short = $transaction_data_filtered;\n }\n \n //change format of datetime field\n foreach($transaction_data_short as $key=>$value) {\n $dt = new DateTime();\n $dt->setTimestamp($value['datetime']);\n $transaction_data_short[$key]['datetime'] = $dt->format('Y-m-d H:i:s');\n }\n \n $this->data['transactions'] = $transaction_data_short;\n }" ]
[ "0.7441285", "0.7441285", "0.7441285", "0.72170734", "0.70948863", "0.69170815", "0.66835093", "0.6602209", "0.657184", "0.65380776", "0.6513938", "0.6481343", "0.64666176", "0.6443662", "0.6407994", "0.64011645", "0.63562346", "0.63562346", "0.63149005", "0.62950075", "0.6284628", "0.62825924", "0.62479", "0.6226681", "0.6216882", "0.6212055", "0.6191166", "0.6170573", "0.61561924", "0.6149721" ]
0.8858559
0
Test case for showTransaction Show Transaction.
public function testShowTransaction() { // TODO: implement $this->markTestIncomplete('Not implemented'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function show(Transaction $transaction)\n {\n \n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(transaction $transaction)\n {\n //\n }", "public function testShowTransactionUser()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testShowTransactionWalletAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function show(UpworkTransaction $upworkTransaction)\n {\n //\n }", "public function show(TransactionDetails $transactionDetails)\n {\n //\n }", "public function testShowTransactionCardAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testShowTransactionBankAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testAddViewTransaction()\n {\n \t$property_flip_id = $this->createPropertyFlip('Test address line 1000');\n \t$transaction_type_description = 'Test Transaction Type 1';\n \t$transaction_type_id = $this->createTestTransactionType($transaction_type_description);\n \t \n \t$account_name = 'Account ABC';\n \t$account_id = $this->createTestAccount($account_name);\n \t \n \t$this->visit('/')\n\t \t->visit('/login')\n\t \t->type('[email protected]', 'email')\n\t \t->type('password', 'password')\n\t \t->press('Login')\n\t \t->see('Home')\n\t \t->visit('/search-property')\n\t \t \n\t \t->type($property_flip_id, 'property_flip_id')\n\t \t->press('Search')\n\t \t->click('View') //View Property\n\t \t \n\t \t->click('View') //View Property Flip\n\t \t->see('View Property Flip')\n\t \t->see('General')\n\t \t->see('Investors')\n\t \t\n\t \t->click('transactions-tab')\n\t \t->see('Transactions')\n\t \t->press('Add Transaction')\n\t \t->type('2016-11-30', 'effective_date')\n\t \t->type('Test Description', 'description')\n\t \t->type('Test Reference', 'reference')\n\t \t->select($account_id, 'account_id')\n\t \t->select($transaction_type_id, 'transaction_type_id')\n\t \t->type('1000000', 'debit_amount')\n\t \t->press('Add Transaction')\n\t \t\n\t \t->see('View Property Flip')\n\t \t->see('Transactions')\n\t \t->see($account_name)\n\t \t->see($transaction_type_description)\n \t\n \t\t->click('view-transaction')\n \t\t->see('View Transaction')\n \t\t->see($account_name)\n \t\t->see($transaction_type_description);\n }", "public function testUsersCanViewTransaction()\n {\n $user = factory(User::class)->create();\n\n $account = factory(Account::class)->create([\n 'user_id' => $user->id\n ]);\n\n $transaction = factory(Transaction::class)->create([\n 'account_id' => $account->id\n ]);\n\n $this->actingAs($user, 'users')->get(\"/api/transaction/$transaction->transaction_ref\")->assertJson([\n 'status' => 'success',\n 'transaction' => $transaction->toArray()\n ])->assertStatus(200);\n }", "public function show(AccClientTransaction $accClientTransaction)\n {\n //\n }", "public function showAction(Transaction $transaction)\n {\n $deleteForm = $this->createDeleteForm($transaction);\n\n return $this->render('transaction/show.html.twig', array(\n 'transaction' => $transaction,\n 'delete_form' => $deleteForm->createView(),\n ));\n }", "public function show(Transactions $transactions)\n {\n //\n }", "public function show(Transactions $transactions)\n {\n //\n }", "function show_transaction()\n {\n $json = self::get_data();\n if ($json->api_key == 'rian123') {\n $tbl_barang = $this->db->get('trtransaksi');\n if ($tbl_barang->num_rows() > 0) {\n $data = $tbl_barang->result_array();\n echo json_encode($data, JSON_PRETTY_PRINT);\n } else {\n echo json_encode([], JSON_PRETTY_PRINT);\n }\n } else {\n echo json_encode(['msg' => 'false'], JSON_PRETTY_PRINT);\n }\n }", "public function viewSuccessfulTransactions();", "public function transactionDetailsAction(){\n \n $fashiontransactionModal = Admin_Model_FashionTransactions::getInstance(); \n \n $transactionsinfo = $fashiontransactionModal->getAllFashionTransactionDetails();\n $transactionsboletoinfo = $fashiontransactionModal->getAllBoletoFashionTransactionDetails();\n $transactionsboletocanceledinfo = $fashiontransactionModal->getAllBoletoCanceledTransactionDetails();\n \n \n if($transactionsboletocanceledinfo){\n \n \n $this->view->transactionsboletocanceledinfo = $transactionsboletocanceledinfo;\n }\n \n if($transactionsboletoinfo){\n \n $this->view->alltransactionboletoinfo = $transactionsboletoinfo;\n }\n if($transactionsinfo){\n \n $this->view->alltransactioninfo = $transactionsinfo;\n }\n \n \n }", "public function show(Transaction $transaction)\n {\n $user = Auth::user();\n if ($user->is_admin == 1) {\n return view('admin.detail_transaksi', compact(['transaction', 'user']));\n }\n return view('santri.detail_transaksi', compact(['transaction', 'user']));\n }", "public function show(Transaksi $transaksi)\n {\n //\n }", "public function show(Transaksi $transaksi)\n {\n //\n }", "public function show(Transaksi $transaksi)\n {\n //\n }", "public function transactAction()\n {\n $transactionModel = (new TransactionModel());\n $transaction = $transactionModel->createTransaction();\n\n echo (new View('transactionCreated'))\n ->addData('transactionModel', $transactionModel)\n ->addData('transaction', $transaction)\n ->render();\n }", "public function displayTransactions() {\n $file = 'transactions.txt';\n $str = '';\n $str .= str_repeat('-', self::HORIZ_SEP_LEN) . PHP_EOL;\n $str .= sprintf(' %5s %s' . PHP_EOL, 'Tr_id', 'Items');\n $str .= str_repeat('-', self::HORIZ_SEP_LEN) . PHP_EOL;\n self::saveDisplay($file, $str);\n\n foreach ($this->trans as $tid => $t) {\n $str = sprintf(' %5d %s' . PHP_EOL, $tid, self::_join($t));\n self::saveDisplay($file, $str, true);\n }\n $str = str_repeat('-', self::HORIZ_SEP_LEN) . PHP_EOL;\n self::saveDisplay($file, $str, true);\n\n return $this;\n }", "public function show(Transaction $transaction)\n {\n return view('transaction.show', compact('transaction'));\n }" ]
[ "0.79099745", "0.7907302", "0.7907302", "0.7907302", "0.7907302", "0.7907302", "0.7907302", "0.7714101", "0.74452436", "0.7274619", "0.72108275", "0.71354395", "0.70851344", "0.7008332", "0.693754", "0.6917886", "0.6817111", "0.67301035", "0.6600741", "0.6600741", "0.65812045", "0.65298444", "0.6525986", "0.64596456", "0.6409968", "0.6409968", "0.6409968", "0.6404076", "0.6391582", "0.6386119" ]
0.8939192
0
Test case for showTransactionBankAccount Show Transaction Bank Account.
public function testShowTransactionBankAccount() { // TODO: implement $this->markTestIncomplete('Not implemented'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testShowTransactionWalletAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testShowTransactionCardAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function renderBankAccountsAction()\r\n {\r\n $authenticatedUser = $this->getAuthenticatedUser();\r\n $bankAccounts = $this->get('yilinker_core.service.bank_account.bank_account')\r\n ->getBankAccounts($authenticatedUser, \"DESC\");\r\n $banks = $this->get('yilinker_core.service.bank.bank')\r\n ->getEnabledBanks();\r\n $accreditationApplication = $this->getDoctrine()->getManager()\r\n ->getRepository('YilinkerCoreBundle:AccreditationApplication')\r\n ->findOneByUser($authenticatedUser);\r\n $isBankEditable = $this->container->getParameter('yilinker_merchant')['bank']['is_editable'] &&\r\n is_null($authenticatedUser->getStore()->getAccreditationLevel()) &&\r\n ($accreditationApplication instanceof AccreditationApplication && $accreditationApplication->getIsBankEditable());\r\n $applicationManager = $this->get('yilinker_core.service.accreditation_application_manager');\r\n $applicationDetails = $applicationManager->getApplicationDetailsBySeller($authenticatedUser);\r\n $data = compact(\r\n 'bankAccounts',\r\n 'banks',\r\n 'isBankEditable',\r\n 'applicationDetails'\r\n );\r\n\r\n return $this->render('YilinkerMerchantBundle:BankAccount:bank_account.html.twig', $data);\r\n }", "public function show(Bank $bank)\n {\n //\n }", "public function show(Bank $bank)\n {\n //\n }", "public function show(Bank $bank)\n {\n //\n }", "public function show(bank $bank)\n {\n \n }", "public function testItReturnsTheBankAccounts()\n {\n Paystack::shouldReceive(\"createSubAccount\")\n ->andReturn([\n \"data\" => [\n \"subaccount_code\" => \"abcdef\",\n ],\n ]);\n\n factory(BankAccount::class)->create([\n \"account_name\" => $this->user->full_name,\n \"default\" => true,\n \"tenant_id\" => $this->user->tenant->id,\n ]);\n factory(BankAccount::class)->create([\n \"account_name\" => $this->user->full_name,\n \"tenant_id\" => $this->user->tenant->id,\n ]);\n\n $response = $this->actingAs($this->user)\n ->getJson(\"api/v1/tenants/{$this->user->tenant->id}/bank_accounts\", [\n \"default\" => true\n ]);\n\n $response->assertStatus(200);\n $response->assertJsonCount(2, \"data\");\n }", "function bankAccounts() {\n $this->view->title = 'එක්සත් අවමංගල්‍යාධාර සමිතිය';\n // $this->view->bankAccounts = $this->model->bankAccounts();\n $this->view->render('awamangala/bankAccounts'); //sending paramiters to View() at lib/view.php\n }", "public function getBankAccount()\n {\n return $this->bank_account;\n }", "public function testShowTransaction()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function getBankAccount()\n {\n return $this->bankAccount;\n }", "public function testShowTransactionUser()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function show(payment_account $payment_account)\n {\n //\n }", "public function show(CashRegisterDeposit $cashRegisterDeposit)\n {\n //\n }", "public function testGetBankAccountTokenInfoSuccessfully(): void\n {\n /** @var \\EoneoPay\\PhpSdk\\Repositories\\PaymentSourceRepository $repository */\n $repository = $this->createApiManager([\n 'id' => $this->generateId(),\n 'name' => 'John Wick',\n 'pan' => '123-456...4321',\n 'token' => '3T93F7TXCVGX4ZV7AFW2',\n 'type' => 'bank_account',\n ])->getRepository(PaymentSource::class);\n\n $paymentSource = $repository->findByToken(\n '3T93F7TXCVGX4ZV7AFW2',\n (string)\\getenv('PAYMENTS_API_KEY')\n );\n\n self::assertInstanceOf(BankAccount::class, $paymentSource);\n self::assertSame('3T93F7TXCVGX4ZV7AFW2', $paymentSource->getToken());\n }", "public function show(account $account)\n {\n //\n }", "public function show(account $account)\n {\n //\n }", "public function testCanShowListOfBank()\n {\n $this->withExceptionHandling();\n\n $this->get(route('api.bank.index'))\n ->assertStatus(200);\n }", "public function getCustomerBankAccount(){\n $attributeCustomer = JSON::decode($this->attribute1);\n return isset($attributeCustomer['bank_account']) ? $attributeCustomer['bank_account'] : '';\n }", "public function testSetDisplayBankInvalidParameter()\n {\n $this->paymentSlip->setDisplayBank('true');\n }", "public function show(BankInputDetails $bankInputDetails)\n {\n //\n }", "public function showAccountOrderStates();", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Banks $banks)\n {\n //\n }" ]
[ "0.80001426", "0.78672975", "0.6843371", "0.6798799", "0.6798799", "0.6798799", "0.6760939", "0.6636165", "0.6352241", "0.63520634", "0.6335465", "0.62802696", "0.6200463", "0.615904", "0.60830957", "0.60460114", "0.60420495", "0.60420495", "0.6002143", "0.59899807", "0.59743387", "0.5960083", "0.5956657", "0.59353095", "0.59353095", "0.59353095", "0.59353095", "0.59353095", "0.59353095", "0.59144443" ]
0.9085889
0
Test case for showTransactionCardAccount Show Transaction Card Account.
public function testShowTransactionCardAccount() { // TODO: implement $this->markTestIncomplete('Not implemented'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testShowTransactionWalletAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testShowTransactionBankAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testShowTransaction()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function show(AccClientTransaction $accClientTransaction)\n {\n //\n }", "public function show(account $account)\n {\n //\n }", "public function show(account $account)\n {\n //\n }", "public function testShowTransactionUser()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testListCardAccountsForUser() {\n $createUser = PromisePay::User()->create($this->userData);\n \n // Update the cardAccountData\n $this->cardAccountData['user_id'] = $createUser['id'];\n \n // Create the Card Account\n $createAccount = PromisePay::CardAccount()->create($this->cardAccountData);\n \n $getList = PromisePay::CardAccount()->getUser($createAccount['id']);\n \n $this->assertEquals($this->cardAccountData['full_name'], $getList['full_name']);\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(payment_account $payment_account)\n {\n //\n }", "public function show(AccountSetup $accountSetup)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n \n }", "public function show(transaction $transaction)\n {\n //\n }", "public function show(Accounts $accounts)\n {\n //\n }", "public function testSetDisplayAccountInvalidParameter()\n {\n $this->paymentSlip->setDisplayAccount('true');\n }", "public function show(CashRegisterDeposit $cashRegisterDeposit)\n {\n //\n }", "public function show_account()\n {\n return view('driver_dashboard.account');\n }", "public function testUsersCanViewTransaction()\n {\n $user = factory(User::class)->create();\n\n $account = factory(Account::class)->create([\n 'user_id' => $user->id\n ]);\n\n $transaction = factory(Transaction::class)->create([\n 'account_id' => $account->id\n ]);\n\n $this->actingAs($user, 'users')->get(\"/api/transaction/$transaction->transaction_ref\")->assertJson([\n 'status' => 'success',\n 'transaction' => $transaction->toArray()\n ])->assertStatus(200);\n }", "public function showAccountOrderStates();" ]
[ "0.7865069", "0.7783228", "0.64048016", "0.63627076", "0.62972194", "0.62972194", "0.62818867", "0.62451345", "0.6209646", "0.6209646", "0.6209646", "0.6209646", "0.6209646", "0.6209646", "0.6090851", "0.60659087", "0.6045348", "0.6045348", "0.6045348", "0.6045348", "0.6045348", "0.6045348", "0.6038245", "0.5983521", "0.5873507", "0.5811722", "0.5766178", "0.5729312", "0.5723967", "0.57238805" ]
0.90496504
0
Test case for showTransactionFees Show Transaction Fees.
public function testShowTransactionFees() { // TODO: implement $this->markTestIncomplete('Not implemented'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getFees()\n {\n return $this->fees;\n }", "public function getFees()\n {\n return $this->fees;\n }", "public function fees() {\n $result = $this->getRequest(\"fees\");\n if (!empty($result['error']))\n throw new ALFAcoins_Exception(\"Invalid fees result, error: \" . $result['error']);\n return $result;\n }", "public function getFees() {\n return $this->fees;\n }", "public function fees()\n {\n return $this->httpGet('/fees', [], 'SIGN');\n }", "public function fees()\n {\n return $this->get('/api/fees/');\n }", "public function testShowTransaction()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function getFees(){\n $command = new Command($this->host, self::BLOCKS_GET_FEES,\"GET\", $this->enableCache, $this->cacheLifetime, $this->cacheFolder);\n $command->execute();\n\n // Converting all fees to float\n $data = $command->getData(\"fees\");\n foreach($data as $key => $value){\n $data[$key] = $this->convertAmountToFloat($value);\n }\n\n return $data;\n }", "public function testCalculateFee()\n {\n $this->assertEquals(\n 0.60,\n $this->controller->calculateFee($this->transaction_data)\n );\n }", "public function printFee()\n {\n $decimals = log10(1 / Converter::getDenomination($this->currency));\n echo number_format($this->getFee(), $decimals, '.', '') . \"\\n\";\n }", "public function show(Fundstransfer $fundstransfer)\n {\n //\n }", "public function fees(): ?array\n {\n return $this->get('transactions/fees');\n }", "public function payFees($id=\"\"){\n $id = CustomHelper::getDecrypted($id);\n $studentData = Students::find($id);\n $feesDetails = CustomHelper::getDueDetails($id);\n $invoiceParticulars = InvoiceParticulars::all();\n return view('Admin.FeeEntry.feeEntryForm',compact('studentData','feesDetails','invoiceParticulars'));\n }", "public function testShowTransactionBankAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function getMarketplaceFees() \n {\n return $this->_fields['MarketplaceFees']['FieldValue'];\n }", "public function testTransbordoF(){\n\t\t$this->miTarjeta->recarga(5);\n\t\t$this->miTarjeta->pagarBoleto(143, 20.00);\n\t\t$this->assertFalse($this->miTarjeta->pagarBoleto(142, 20.30));\t\n\t}", "public function targetFeeListing() {\n $targetFee = DB::table('il_target_fee')->select('id','fee_type','fee_amt')->get();\n return View::make('FinanceManager.accounting.targetFeeListing')->with(array('fee_list' => $targetFee));\n }", "function getFees($blockGetFeesRequest){\n $blockGetFeesResponse = new BlockGetFeesResponse();\n $blockGetFeesResult = new BlockGetFeesResult();\n try{\n if(!($blockGetFeesRequest instanceof BlockGetFeesRequest)){\n throw new SDKException(\"INVALID_REQUEST_ERROR\", null);\n }\n if(Tools::isEmpty($blockGetFeesRequest)) {\n throw new SDKException(\"REQUEST_NULL_ERROR\", null);\n }\n $blockNumber = $blockGetFeesRequest->getBlockNumber();\n if (Tools::isEmpty($blockNumber) || !is_int($blockNumber) || $blockNumber < 1) {\n throw new SDKException(\"INVALID_BLOCKNUMBER_ERROR\", null);\n }\n if(Tools::isEmpty(General::getInstance()->getUrl())) {\n throw new SDKException(\"URL_EMPTY_ERROR\", null);\n }\n $baseUrl = General::getInstance()->blockGetFeesUrl($blockNumber);\n $result = Http::get($baseUrl);\n if (Tools::isEmpty($result)) {\n throw new SDKException(\"CONNECTNETWORK_ERROR\", null);\n }\n $blockGetFeesResponse = Tools::jsonToClass($result, $blockGetFeesResponse);\n $errorCode = $blockGetFeesResponse->error_code;\n if (4 == $errorCode) {\n $errorDesc = $blockGetFeesResponse->error_desc;\n throw new SDKException($errorCode, is_null($errorDesc)? \"Block(\" . $blockNumber . \") does not exist\" : $errorDesc);\n }\n }\n catch(SDKException $e) {\n $blockGetFeesResponse->buildResponse($e->getErrorCode(), $e->getErrorDesc(), $blockGetFeesResult);\n }\n catch (\\Exception $e) {\n $blockGetFeesResponse->buildResponse(20000, $e->getMessage(), $blockGetFeesResult);\n }\n return $blockGetFeesResponse;\n }", "public function testShowTransactionCardAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function show(CashFlow $cashFlow)\n {\n //\n }", "function _getAdditionalFees(&$show, $quantity = 1)\n {\n //display any optional fields that add to the cost.\n $quantity = (int)$quantity;\n\n $additional_fees = geoListing::getAuctionAdditionalFees($show['id']);\n if (!$additional_fees) {\n return 0;\n }\n return ($quantity * $additional_fees['raw']['total']);\n }", "private static function render_fees( \\WP_Query $query ) { ?>\n <?php $fees = self::get_meta( 'fees' ); ?>\n <?php if( ! empty( $fees )) : ?>\n <Fees>\n <?php foreach( $fees as $fee ) : ?>\n <Fee>\n <FeeType><?php echo esc_html( $fee[ 'fee-type' ] ); ?></FeeType>\n <FeeAmount><?php echo esc_html( $fee[ 'fee-amount' ] ); ?></FeeAmount>\n <FeePeriod><?php echo esc_html( $fee[ 'fee-period' ] ); ?></FeePeriod>\n </Fee>\n <?php endforeach; ?>\n </Fees>\n <?php endif; ?>\n <?php }", "public function getAllStudentFeeRecords() {\n $user = Auth::user();\n $result = $this->serviceGateway->studentFeeReportService->totalStudentFees();\n return $result;\n }", "public function ViewTargetFee() {\n $id = Request::Segment(3);\n $select = DB::table('il_target_fee')->select('fee_type','fee_amt')->where('id',$id)->first();\n return View::make('FinanceManager.accounting.viewTargetFee')->with(array('fee_list' => $select));\n }", "public function test_getFeeFormatMoney__()\n {\n \n }", "private function getRegularFeesTotal()\n {\n /**\n * One of the:\n * \\Magento\\Tax\\Model\\Config::DISPLAY_TYPE_EXCLUDING_TAX\n * \\Magento\\Tax\\Model\\Config::DISPLAY_TYPE_INCLUDING_TAX\n * \\Magento\\Tax\\Model\\Config::DISPLAY_TYPE_BOTH\n */\n $displayTaxInSalesMode = $this->feeHelper->getTaxInSales();\n $fontSize = $this->getFontSize() ? $this->getFontSize() : 7;\n\n // Array with all totals which will be rendered in pdf\n $totals = [];\n\n $label = $this->makeLabelFromTitle($this->getTitle());\n switch ($displayTaxInSalesMode) {\n case \\Magento\\Tax\\Model\\Config::DISPLAY_TYPE_INCLUDING_TAX:\n $amount = $this->formatAmountValue($this->getAmount());\n $totals[0] = [\n 'amount' => $amount,\n 'label' => $label . ':',\n 'font_size' => $fontSize\n ];\n break;\n case \\Magento\\Tax\\Model\\Config::DISPLAY_TYPE_BOTH:\n $amount = $this->formatAmountValue($this->getAmount());\n $totals[0] = [\n 'amount' => $amount,\n 'label' => $label . ' (' . __('Incl. Tax') . '):',\n 'font_size' => $fontSize\n ];\n $amountTax = $this->formatAmountValue($this->getAmountWithTax());\n $totals[1] = [\n 'amount' => $amountTax,\n 'label' => $label . ' (' . __('Excl. Tax') . '):',\n 'font_size' => $fontSize\n ];\n break;\n case \\Magento\\Tax\\Model\\Config::DISPLAY_TYPE_EXCLUDING_TAX:\n $amountTax = $this->formatAmountValue($this->getAmountWithTax());\n $totals[0] = [\n 'amount' => $amountTax,\n 'label' => $label . ':',\n 'font_size' => $fontSize\n ];\n break;\n default:\n break;\n }\n\n return $totals;\n }", "public function isSetMarketplaceFees()\n {\n return !is_null($this->_fields['MarketplaceFees']['FieldValue']);\n\n }", "private function Fees() : array\n {\n if ($this->fees === false) {\n switch ($this->infos['tx_type']) {\n // BUY / SELL\n case 'buy':\n case 'sell':\n switch ($this->infos['tx_fee_type']) {\n case 'fixed_currency':\n $this->fees = [\n 'currency' => $this->Pair()->currency->infos['id'],\n 'amount' => $this->infos['tx_fee_amount']\n ];\n break;\n\n case 'fixed_index':\n $this->fees = [\n 'currency' => $this->Pair()->index->infos['id'],\n 'amount' => $this->infos['tx_fee_amount']\n ];\n break;\n\n case 'percent_currency':\n $this->fees = [\n 'currency' => $this->Pair()->currency->infos['id'],\n 'amount' => floatval(floatval($this->infos['tx_amount'] / 100) * $this->infos['tx_fee_amount'])\n ];\n break;\n\n case 'percent_index':\n $this->fees = [\n 'currency' => $this->Pair()->index->infos['id'],\n 'amount' => floatval(floatval($this->Cost()['amount'] / 100) * $this->infos['tx_fee_amount'])\n ];\n break;\n\n }\n break;\n\n\n case 'transfer':\n case 'withdraw':\n switch ($this->infos['tx_fee_type']) {\n case 'fixed_currency':\n $this->fees = [\n 'currency' => $this->Currency()->infos['id'],\n 'amount' => $this->infos['tx_fee_amount']\n ];\n break;\n\n case 'percent_currency':\n $this->fees = [\n 'currency' => $this->Currency()->infos['id'],\n 'amount' => floatval(($this->infos['tx_amount'] / 100) * $this->infos['tx_fee_amount'])\n ];\n break;\n\n }\n break;\n\n // NO FEES\n default:\n $this->fees = [\n 'currency' => $this->Currency()->infos['id'],\n 'amount' => 0\n ];\n break;\n }\n }\n return $this->fees;\n }", "public function index()\n {\n $shippingFees = ShippingFee::orderBy('type', 'desc')->get();\n $minimunPurchase = Setting::getMinimunPurchase();\n \n return view('admin.shipping-fees.index')->with([\n 'shippingFees' => $shippingFees, \n 'minimunPurchase' => $minimunPurchase\n ]);\n }", "public function show(Finance $finance)\n {\n }" ]
[ "0.64723283", "0.64723283", "0.6468045", "0.6419383", "0.63085943", "0.629597", "0.6265179", "0.61050916", "0.5989145", "0.59023416", "0.5892962", "0.5890226", "0.58615375", "0.58412856", "0.5805327", "0.5744763", "0.5739706", "0.5700418", "0.5694591", "0.5691793", "0.5681997", "0.56785303", "0.56754875", "0.5670648", "0.5664208", "0.56448305", "0.56151056", "0.56026685", "0.55957896", "0.55887187" ]
0.92197376
0
Test case for showTransactionUser Show Transaction User.
public function testShowTransactionUser() { // TODO: implement $this->markTestIncomplete('Not implemented'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function show(User $user, Transaction $transaction)\n {\n return $user->id === $transaction->user_id;\n }", "public function testShowTransactionWalletAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testShowTransaction()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testUsersCanViewTransaction()\n {\n $user = factory(User::class)->create();\n\n $account = factory(Account::class)->create([\n 'user_id' => $user->id\n ]);\n\n $transaction = factory(Transaction::class)->create([\n 'account_id' => $account->id\n ]);\n\n $this->actingAs($user, 'users')->get(\"/api/transaction/$transaction->transaction_ref\")->assertJson([\n 'status' => 'success',\n 'transaction' => $transaction->toArray()\n ])->assertStatus(200);\n }", "public function showToUser()\n {\n //\n }", "public function showUser(User $user)\n {\n //\n }", "public function testShowTransactionCardAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testShowTransactionBankAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testUserShow(): void\n {\n /** @var User $user */\n $user = User::factory()->create();\n /** @var User $user2 */\n $user2 = User::factory()->create();\n $response = $this\n ->actingAs($user)\n ->get('/users/' . $user2->id);\n $response->assertStatus(403);\n }", "public function actionShow()\n {\n $model=$this->loadUser();\n $this->pageTitle=Yii::t('lan','View User').' '.$model->username;\n $this->render('show',\n array('model'=>$model));\n }", "public function show(UpworkTransaction $upworkTransaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n \n }", "public function testShow()\n {\n /** @var Crawler $crawler */\n $crawler = $this->getClient()->request('GET', sprintf('/user/%d/show', $this->getTestUser()->getId()));\n $this->assertEquals(200, $this->getClient()->getResponse()->getStatusCode());\n $this->assertGreaterThan(0, $crawler->filter('table')->count());\n }", "public function show(transaction $transaction)\n {\n //\n }", "public function view(User $user, Transaction $transaction)\n\t{\n\t\treturn $this->isTransactionApplier($transaction, $user)\n\t\t || $user->hasPermission('transaction:view');\n\t}", "public function view(User $user, TransferOrderByDrivers $transferOrderByDrivers)\n {\n //\n }", "public function testShowUserPage()\n {\n $user = factory(User::class)->create();\n\n $response = $this->get('/user/' . $user->username);\n $response->assertStatus(200);\n }", "public function testUsersCanViewTransactions()\n {\n $user = factory(User::class)->create();\n\n $account = factory(Account::class)->create([\n 'user_id' => $user->id\n ]);\n\n factory(Transaction::class, 2)->create([\n 'account_id' => $account->id\n ]);\n\n factory(Transaction::class, 2)->create([\n 'account_id' => $account->id,\n 'type' => 'Debit'\n ]);\n\n $this->actingAs($user, 'users')->get('/api/transactions')->assertJson([\n 'status' => 'success',\n 'transactions' => $account->transactions()->orderBy('created_at', 'desc')->orderBy('id', 'desc')->paginate(20)->toArray()\n ])->assertStatus(200);\n }", "public function show($user)\n {\n\n }", "public function show(User $user)\n {\n //\n }", "public function show(User $user)\n {\n //\n }", "public function show(User $user)\n {\n //\n }", "public function show(User $user)\n {\n //\n }", "public function show(User $user)\n {\n //\n }" ]
[ "0.7079757", "0.67015666", "0.66627294", "0.65611774", "0.65339094", "0.6520715", "0.6500181", "0.63580495", "0.6265968", "0.6264253", "0.6244523", "0.62296164", "0.62296164", "0.62296164", "0.62296164", "0.62296164", "0.62296164", "0.62276334", "0.61899656", "0.61846304", "0.61566365", "0.60895896", "0.6072565", "0.60318685", "0.6017746", "0.5993788", "0.5993788", "0.5993788", "0.5993788", "0.5993788" ]
0.89630973
0
Test case for showTransactionWalletAccount Show Transaction Wallet Account.
public function testShowTransactionWalletAccount() { // TODO: implement $this->markTestIncomplete('Not implemented'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testShowTransactionBankAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testShowTransactionCardAccount()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function getAccount($wallet)\n {\n }", "public function show(wallet $wallet)\n {\n //\n }", "public function show(Wallet $wallet)\n {\n //\n }", "public function show(Wallet $wallet) {\n //\n }", "public function testShowTransaction()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function createWallet($account)\n {\n }", "public function show(account $account)\n {\n //\n }", "public function show(account $account)\n {\n //\n }", "public function show(AccClientTransaction $accClientTransaction)\n {\n //\n }", "public function testShowTransactionUser()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function getWallets($account)\n {\n }", "public function show(payment_account $payment_account)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n \n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Account $account)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(Transaction $transaction)\n {\n //\n }", "public function show(AccountSetup $accountSetup)\n {\n //\n }", "public function show(transaction $transaction)\n {\n //\n }", "public function show(AccountType $accountType)\n {\n //\n }" ]
[ "0.7688129", "0.7631906", "0.6648836", "0.64545345", "0.6379975", "0.6377043", "0.6224681", "0.61315805", "0.61000633", "0.61000633", "0.60849506", "0.6077169", "0.60453945", "0.6036331", "0.6006134", "0.60032606", "0.60032606", "0.60032606", "0.60032606", "0.60032606", "0.60032606", "0.5960468", "0.5960468", "0.5960468", "0.5960468", "0.5960468", "0.5960468", "0.5941373", "0.5906803", "0.58549756" ]
0.8991194
0
The method post() shows a post by link or by ID if $use_id = True.
public function post($link = '', $use_id = false) { if ($link == '') show_404(); $this->load->model('post'); if($use_id) $query = $this->post->get_by_id( $link, null, null, 'id, title, description, content, link, image, tags, created, page, status' )->row(); else $query = $this->post->get_by_field( 'link', $link, null, null, 'id, title, description, content, link, image, tags, created, page, status' )->row(); $this->data_content['post'] = $query; if (count($query) <= 0) show_404(); if ($query->status == 0) show_error('Esta página foi suspensa temporariamente', 404); $this->wpanel->set_meta_description($query->description); $this->wpanel->set_meta_keywords($query->tags); $this->wpanel->set_meta_title($query->title); if(file_exists('./media/capas/'.$query->image)) $this->wpanel->set_meta_image(base_url('media/capas/'.$query->image)); // Select the spacific type of view according to type of post. switch ($query->page) { case '1': $this->render('page'); break; case '2': $this->render('event'); break; default: $this->render('post'); break; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function post_page($id){\n\t\t$this->carabiner->css('_util/feed.css');\n\t\t$this->carabiner->js('_util/feed.js');\n\t\t$this->carabiner->js('_util/ajax.js');\n\t\t$this->carabiner->js('_util/alert_r.js');\n\t\t$this->carabiner->js('_util/moment.js');\n\t\t$this->carabiner->css('social/post.css');\n\t\t$this->carabiner->js('social/post.js');\n\t\t$this->layout = 'col3';\n\t\t$this->render('social/post', array(\n\t\t\t'postId' => $id,\n\t\t\t'right_chat' => true,\n\t\t));\n\t}", "public function post($params)\n {\n $this->oTemplator->setVar('type', 'one');\n $this->oTemplator->setVar('js', ['post', 'aside']);\n $this->oTemplator->setVar('id', $params['id']);\n $this->show('/blog/post');\n }", "public function link_post(){\n $user = $this->get_user_or_redirect();\n if(isset($_POST[\"tag_id\"]) && isset($_POST[\"post_id\"])){\n $tag = Tag::get_by_id(($_POST[\"tag_id\"]));\n $post = Post::get($_POST[\"post_id\"]);\n if(!$post || !$tag)\n $this->redirect();\n if(!$post->can_add_tag($user))\n throw new Exception(\"Should never happen : max tags reached or wrong user :O\");\n $tag->link_tag($post->get_id());\n $this->redirect(\"post\",\"show\",$post->get_id());\n }\n }", "public function post($as=OBJECT)\n\t{\n\t\treturn get_post($this->id, $as);\n\t}", "public function post()\n {\n if (isset($_GET['id']) && $_GET['id'] > 0) {\n $post = $this->postManager->getPost($_GET['id']);\n $comments=$this->commentManager->getComments($_GET['id']);\n if($post === false || $comments === false){\n header(\"HTTP:1.0 404 Not Found\");\n header('Location:index.php');\n }\n else{\n require('view/postView.php');\n }\n }\n else {\n $this->msg='Aucun identifiant de billet envoyé';\n require('view/errorView.php');\n } \n }", "public function show($id_post)\n {\n //\n }", "public static function post($post_id)\n {\n $post_data = Data::find('Posts', array('PostID' => $post_id));\n \n if(empty($post_data))\n {\n self::not_found();\n }\n \n self::_set_data('Permalink', $post_data, array());\n }", "function view($id)\n {\n $this->post = $this->model-> getPostById($id);\n }", "public function action_post(){\n\t\t$id = $this->request->param('id'); //pobieramy id do edycji\n\t\t$modelBlog = new Model_Blog(); //tworzymy model\n\t\t$post = $modelBlog->getId($id); //pobieramy wszystkie dane do widoku \n\t\t$modelGallery = new Model_Gallery;\n\t\t$gallery = false;\n\t\tif (isset($post['gallery']))\n\t\t{\n\t\t\t$gallery = $modelGallery->getGallery($post['gallery']);\n\t\t}\n\t\t\n\t\tif ($post['title'] == null) {\n\t\t\t$this->template->content = View::factory('/error/index')\n \t->set('error_title',\"Strony nie odnaleziono 404\")\n\t\t\t\t\t->set('error_content',\"Niestety nie posiadamy strony o podanym adresie\" ); \n\t\t} else {\n\t\t\t$this->_title = $post['title'].\" - \". $this->_title;\n\t\t\t$this->_keywords = $post['tags'] .\", \". $this->_keywords ;\n\t\t\t$this->_description = $this->_description .\". \".$post['desc'] ;\n\t\t\t$this->template->content = View::factory($this->template_name.'/blog/post')\n\t\t\t \t ->set('post',$post)\n\t\t\t \t ->set('img',$gallery);\n\t\t\t$leftmenu = $modelBlog->getList(); ; \n\t\t\t//$this->template->content->leftmenu = $leftmenu;\n\t\t} // end if \n\t}", "function post( $id ) {\n $query = $this->db->get_where( 'posts', array( \"id\" => $id ) );\n return $this->format( $query->result_array() );\n }", "function MakePost($post, $type, $params=array())\n{\n\tglobal $loguser, $loguserid, $theme, $hacks, $isBot, $blocklayouts, $postText, $sideBarStuff, $sideBarData, $salt;\n\n\t$sideBarStuff = \"\";\n\n\tif(isset($_GET['pid']))\n\t\t$highlight = (int)$_GET['pid'];\n\n\tif($post['deleted'] && $type == POST_NORMAL)\n\t{\n\t\t$meta = format(__(\"Posted on {0}\"), formatdate($post['date']));\n\t\t$links = \"<ul class=\\\"pipemenu\\\"><li>\".__(\"Post deleted\").\"</li>\";\n\t\tif(CanMod($loguserid,$params['fid']))\n\t\t{\n\t\t\t$key = hash('sha256', \"{$loguserid},{$loguser['pss']},{$salt}\");\n\t\t\tif (IsAllowed(\"editPost\", $post['id']))\n\t\t\t\t$links .= actionLinkTagItem(__(\"Undelete\"), \"editpost\", $post['id'], \"delete=2&key=\".$key);\n\t\t\t$links .= \"<li><a href=\\\"#\\\" onclick=\\\"ReplacePost(\".$post['id'].\",true); return false;\\\">\".__(\"View\").\"</a></li>\";\n\t\t}\n\t\t$links .= \"<li>\".format(__(\"ID: {0}\"), $post['id']).\"</li></ul>\";\n\t\twrite(\n\"\n\t\t<table class=\\\"post margin\\\" id=\\\"post{0}\\\">\n\t\t\t<tr>\n\t\t\t\t<td class=\\\"side userlink\\\" id=\\\"{0}\\\">\n\t\t\t\t\t{1}\n\t\t\t\t</td>\n\t\t\t\t<td class=\\\"smallFonts\\\" style=\\\"border-left: 0px none; border-right: 0px none;\\\">\n\t\t\t\t\t{2}\n\t\t\t\t</td>\n\t\t\t\t<td class=\\\"smallFonts right\\\" style=\\\"border-left: 0px none;\\\">\n\t\t\t\t\t{3}\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t</table>\n\",\t$post['id'], UserLink($post, \"uid\"), $meta, $links\n);\n\t\treturn;\n\t}\n\n\tif ($type == POST_SAMPLE)\n\t\t$meta = $params['metatext'] ? $params['metatext'] : __(\"Sample post\");\t// dirty hack\n\telse\n\t{\n\t\t$forum = $params['fid'];\n\t\t$thread = $params['tid'];\n\t\t$canmod = CanMod($loguserid, $forum);\n\t\t$replyallowed = IsAllowed(\"makeReply\", $thread);\n\t\t$editallowed = IsAllowed(\"editPost\", $post['id']);\n\t\t$canreply = $replyallowed && ($canmod || (!$post['closed'] && $loguser['powerlevel'] > -1));\n\n\t\t$links = \"\";\n\t\tif (!$isBot)\n\t\t{\n\t\t\tif ($type == POST_DELETED_SNOOP)\n\t\t\t{\n\t\t\t\t$key = hash('sha256', \"{$loguserid},{$loguser['pss']},{$salt}\");\n\t\t\t\t$links = \"<ul class=\\\"pipemenu\\\"><li>\".__(\"Post deleted\").\"</li>\";\n\t\t\t\tif ($editallowed)\n\t\t\t\t\t$links .= actionLinkTagItem(__(\"Undelete\"), \"editpost\", $post['id'], \"delete=2&key=\".$key);\n\t\t\t\t$links .= \"<li><a href=\\\"#\\\" onclick=\\\"ReplacePost(\".$post['id'].\",false); return false;\\\">\".__(\"Close\").\"</a></li>\";\n\t\t\t\t$links .= \"<li>\".format(__(\"ID: {0}\"), $post['id']).\"</li></ul>\";\n\t\t\t}\n\t\t\telse if ($type == POST_NORMAL)\n\t\t\t{\n\t\t\t\t$links .= \"<ul class=\\\"pipemenu\\\">\";\n\n\t\t\t\t$links .= actionLinkTagItem(__(\"Link\"), \"thread\", \"\", \"pid=\".$post['id'].\"#\".$post['id']);\n\n\t\t\t\tif ($canreply && !$params['noreplylinks'])\n\t\t\t\t\t$links .= actionLinkTagItem(__(\"Quote\"), \"newreply\", $thread, \"quote=\".$post['id']);\n\n\t\t\t\tif ($editallowed && ($canmod || ($post['uid'] == $loguserid && $loguser['powerlevel'] > -1 && !$post['closed'])))\n\t\t\t\t\t$links .= actionLinkTagItem(__(\"Edit\"), \"editpost\", $post['id']);\n\n\t\t\t\tif ($editallowed && $canmod)\n\t\t\t\t{\n\t\t\t\t\t// TODO: perhaps make delete links not require a key to be passed\n\t\t\t\t\t// * POST-form delete confirmation, on separate page, a la Jul?\n\t\t\t\t\t// * hidden form and Javascript-submit() link?\n\t\t\t\t\t$key = hash('sha256', \"{$loguserid},{$loguser['pss']},{$salt}\");\n\t\t\t\t\t$links .= actionLinkTagItem(__(\"Delete\"), \"editpost\", $post['id'], \"delete=1&key=\".$key);\n\t\t\t\t}\n\t\t\t\tif ($canreply && !$params['noreplylinks'])\n\t\t\t\t\t$links .= \"<li>\".format(__(\"ID: {0}\"), actionLinkTag($post['id'], \"newreply\", $thread, \"link=\".$post['id'])).\"</li>\";\n\t\t\t\telse\n\t\t\t\t\t$links .= \"<li>\".format(__(\"ID: {0}\"), $post['id']).\"</li>\";\n\t\t\t\tif ($loguser['powerlevel'] > 0)\n\t\t\t\t\t$links .= \"<li>\".$post['ip'].\"</li>\";\n\t\t\t\t$links .= \"</ul>\";\n\t\t\t}\n\t\t}\n\n\t\tif ($type == POST_PM) {\n\t\t\t$message = __(\"Sent on {0}\");\n\t\t}\n\t\telse {\n\t\t\t$message = __(\"Posted on {0}\");\n\t\t}\n\t\t$meta = format($message, formatdate($post['date']));\n\t\t//Threadlinks for listpost.php\n\t\tif ($params['threadlink'])\n\t\t\t$meta .= \" \".__(\"in\").\" \".actionLinkTag($post['threadname'], \"thread\", $post['thread']);\n\t\t//Revisions\n\t\tif($post['revision'])\n\t\t{\n\t\t\tif ($post['revuser'])\n\t\t\t{\n\t\t\t\t$ru_link = UserLink(array('id'=>$post['revuser'], 'name'=>$post['ru_name'], 'displayname'=>$post['ru_dn'], 'powerlevel'=>$post['ru_power'], 'sex'=>$post['ru_sex']));\n\t\t\t\t$revdetail = format(__(\" by {0} on {1}\"), $ru_link, formatdate($post['revdate']));\n\t\t\t}\n\t\t\telse\n\t\t\t\t$revdetail = '';\n\n\t\t\tif ($canmod)\n\t\t\t\t$meta .= \" (<a href=\\\"javascript:void(0);\\\" onclick=\\\"showRevisions(\".$post['id'].\")\\\">\".format(__(\"rev. {0}\"), $post['revision']).\"</a>\".$revdetail.\")\";\n\t\t\telse\n\t\t\t\t$meta .= \" (\".format(__(\"rev. {0}\"), $post['revision']).$revdetail.\")\";\n\t\t}\n\t\t//</revisions>\n\t}\n\n\t$sideBarStuff .= GetRank($post);\n\tif($sideBarStuff)\n\t\t$sideBarStuff .= \"<br />\";\n\tif($post['title'])\n\t\t$sideBarStuff .= strip_tags(CleanUpPost($post['title'], \"\", true), \"<b><strong><i><em><span><s><del><img><a><br><small>\").\"<br />\";\n\telse\n\t{\n\t\t$levelRanks = array(-1=>__(\"Banned\"), 0=>\"\", 1=>__(\"Local mod\"), 2=>__(\"Full mod\"), 3=>__(\"Administrator\"));\n\t\t$sideBarStuff .= $levelRanks[$post['powerlevel']].\"<br />\";\n\t}\n\t$sideBarStuff .= GetSyndrome($post['activity']);\n\tif($post['picture'])\n\t{\n\t\tif($post['mood'] > 0 && file_exists(\"img/avatars/\".$post['uid'].\"_\".$post['mood']))\n\t\t\t$sideBarStuff .= \"<img src=\\\"img/avatars/\".$post['uid'].\"_\".$post['mood'].\"\\\" alt=\\\"\\\" />\";\n\t\telse\n\t\t\t$sideBarStuff .= \"<img src=\\\"\".$post['picture'].\"\\\" alt=\\\"\\\" />\";\n\t}\n\n\t$lastpost = ($post['lastposttime'] ? timeunits(time() - $post['lastposttime']) : \"none\");\n\t$lastview = timeunits(time() - $post['lastactivity']);\n\n\tif(!$params['forcepostnum'] && ($type == POST_PM || $type == POST_SAMPLE))\n\t\t$sideBarStuff .= \"<br />\\n\".__(\"Posts:\").\" \".$post['posts'];\n\telse\n\t\t$sideBarStuff .= \"<br />\\n\".__(\"Posts:\").\" \".$post['num'].\"/\".$post['posts'];\n\n\t$sideBarStuff .= \"<br />\\n\".__(\"Since:\").\" \".cdate($loguser['dateformat'], $post['regdate']).\"<br />\";\n\n\t$bucket = \"sidebar\"; include(\"./lib/pluginloader.php\");\n\n\t$sideBarStuff .= \"<br />\\n\".__(\"Last post:\").\" \".$lastpost;\n\t$sideBarStuff .= \"<br />\\n\".__(\"Last view:\").\" \".$lastview;\n/*\n\tif($hacks['themenames'] == 3)\n\t{\n\t\t$sideBarStuff = \"\";\n\t\t$isBlocked = 1;\n\t}*/\n\n\tif($post['lastactivity'] > time() - 300)\n\t\t$sideBarStuff .= \"<br />\\n\".__(\"User is <strong>online</strong>\");\n\n\tif($type == POST_NORMAL)\n\t\t$anchor = \"<a name=\\\"\".$post['id'].\"\\\" />\";\n\tif(!$isBlocked)\n\t{\n\t\t$pTable = \"table\".$post['uid'];\n\t\t$row1 = \"row\".$post['uid'].\"_1\";\n\t\t$row2 = \"row\".$post['uid'].\"_2\";\n\t\t$topBar1 = \"topbar\".$post['uid'].\"_1\";\n\t\t$topBar2 = \"topbar\".$post['uid'].\"_2\";\n\t\t$sideBar = \"sidebar\".$post['uid'];\n\t\t$mainBar = \"mainbar\".$post['uid'];\n\t}\n\n\t$postText = makePostText($post);\n\n\t$postCode =\n\"\n\t\t<table class=\\\"post margin {14} \".$pTable.\"\\\" id=\\\"post{13}\\\">\n\t\t\t<tr class=\\\"\".$row1.\"\\\">\n\t\t\t\t<td class=\\\"side userlink {1}\\\">\n\t\t\t\t\t{0}\n\t\t\t\t\t{5}\n\t\t\t\t</td>\n\t\t\t\t<td class=\\\"meta right {2}\\\">\n\t\t\t\t\t<div style=\\\"float: left;\\\" id=\\\"meta_{13}\\\">\n\t\t\t\t\t\t{7}\n\t\t\t\t\t</div>\n\t\t\t\t\t<div style=\\\"float: left; display: none;\\\" id=\\\"dyna_{13}\\\">\n\t\t\t\t\t\tHi.\n\t\t\t\t\t</div>\n\t\t\t\t\t{8}\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t\t<tr class=\\\"\".$row2.\"\\\">\n\t\t\t\t<td class=\\\"side {3}\\\">\n\t\t\t\t\t<div class=\\\"smallFonts\\\">\n\t\t\t\t\t\t{6}\n\t\t\t\t\t</div>\n\t\t\t\t</td>\n\t\t\t\t<td class=\\\"post {4}\\\" id=\\\"post_{13}\\\">\n\n\t\t\t\t\t{9}\n\t\t\t\t\t<!-- POST BEGIN -->\n\t\t\t\t\t{10}\n\t\t\t\t\t<!-- POST END -->\n\t\t\t\t\t{12}\n\t\t\t\t\t{11}\n\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t</table>\n\";\n\n\twrite($postCode,\n\t\t\t$anchor, $topBar1, $topBar2, $sideBar, $mainBar,\n\t\t\tUserLink($post, \"uid\"), $sideBarStuff, $meta, $links,\n\t\t\t\"\", $postText, \"\", \"\", $post['id'], $post['id'] == $highlight ? \"highlightedPost\" : \"\");\n\n}", "public function postLinks($id = null)\n {\n\n if ( is_null($id) ) {\n\n $total = Blog::active()->where('lang_ref', null)->count();\n $links = Blog::active();\n\n } else {\n\n $total = Blog::active()->where('id', '!=', $id)\n ->where('lang_ref', null)->count();\n $links = Blog::active()->where('id', '!=', $id);\n $this->template->id = $id;\n\n }\n\n $options = array(\n 'total_items' => $total,\n 'items_per_page' => \\Setting::get('admin_item_per_page'),\n );\n\n $pagination = \\Pagination::create($options);\n\n $links = $links->where('lang_ref', null)\n ->orderBy('created_at', 'desc')\n ->skip(\\Pagination::offset())\n ->take(\\Pagination::limit())\n ->get(array('title', 'slug', 'lang'));\n\n $this->template->partialOnly();\n $this->template->setPartial('admin/editor/index', compact('links', 'pagination'));\n\n }", "abstract public function publishPauta($postID, $opt);", "public function getPost( $postId );", "public function submit_post($post_id = 0)\n {\n }", "function MakePost($post, $type, $params=array())\r\n{\r\n\tglobal $loguser, $loguserid, $theme, $hacks, $isBot, $blocklayouts, $postText, $sideBarStuff, $sideBarData, $salt;\r\n\t\r\n\t$sideBarStuff = \"\";\r\n\t\r\n\tif(isset($_GET['pid']))\r\n\t\t$highlight = (int)$_GET['pid'];\r\n\r\n\t$isBlocked = $post['layoutblocked'] | $loguser['blocklayouts'] | $post['options'] & 1;\r\n\t$noSmilies = $post['options'] & 2;\r\n\t$noBr = $post['options'] & 4;\r\n\r\n\tif($post['deleted'] && $type == POST_NORMAL)\r\n\t{\r\n\t\t$meta = format(__(\"Posted on {0}\"), formatdate($post['date']));\r\n\t\t$links = \"<ul class=\\\"pipemenu\\\"><li>\".__(\"Post deleted\").\"</li>\";\r\n\t\tif(CanMod($loguserid,$params['fid']))\r\n\t\t{\r\n\t\t\t$key = hash('sha256', \"{$loguserid},{$loguser['pss']},{$salt}\");\r\n\t\t\tif (IsAllowed(\"editPost\", $post['id']))\r\n\t\t\t\t$links .= actionLinkTagItem(__(\"Undelete\"), \"editpost\", $post['id'], \"delete=2&key=\".$key);\r\n\t\t\t$links .= \"<li><a href=\\\"#\\\" onclick=\\\"ReplacePost(\".$post['id'].\",true); return false;\\\">\".__(\"View\").\"</a></li>\";\r\n\t\t}\r\n\t\t$links .= \"<li>\".format(__(\"ID: {0}\"), $post['id']).\"</li></ul>\";\r\n\t\twrite(\r\n\"\r\n\t\t<table class=\\\"post margin\\\" id=\\\"post{0}\\\">\r\n\t\t\t<tr>\r\n\t\t\t\t<td class=\\\"side userlink\\\" id=\\\"{0}\\\">\r\n\t\t\t\t\t{1}\r\n\t\t\t\t</td>\r\n\t\t\t\t<td class=\\\"smallFonts\\\" style=\\\"border-left: 0px none; border-right: 0px none;\\\">\r\n\t\t\t\t\t{2}\r\n\t\t\t\t</td>\r\n\t\t\t\t<td class=\\\"smallFonts right\\\" style=\\\"border-left: 0px none;\\\">\r\n\t\t\t\t\t{3}\r\n\t\t\t\t</td>\r\n\t\t\t</tr>\r\n\t\t</table>\r\n\",\t$post['id'], UserLink($post, \"uid\"), $meta, $links\r\n);\r\n\t\treturn;\r\n\t}\r\n\r\n\tif ($type == POST_SAMPLE)\r\n\t\t$meta = $params['metatext'] ? $params['metatext'] : __(\"Sample post\");\t// dirty hack\r\n\telse\r\n\t{\r\n\t\t$forum = $params['fid'];\r\n\t\t$thread = $params['tid'];\r\n\t\t$canmod = CanMod($loguserid, $forum);\r\n\t\t$replyallowed = IsAllowed(\"makeReply\", $thread);\r\n\t\t$editallowed = IsAllowed(\"editPost\", $post['id']);\r\n\t\t$canreply = $replyallowed && ($canmod || (!$post['closed'] && $loguser['powerlevel'] > -1));\r\n\t\t\r\n\t\t$links = \"\";\r\n\t\tif (!$isBot)\r\n\t\t{\r\n\t\t\tif ($type == POST_DELETED_SNOOP)\r\n\t\t\t{\r\n\t\t\t\t$key = hash('sha256', \"{$loguserid},{$loguser['pss']},{$salt}\");\r\n\t\t\t\t$links = \"<ul class=\\\"pipemenu\\\"><li>\".__(\"Post deleted\").\"</li>\";\r\n\t\t\t\tif ($editallowed)\r\n\t\t\t\t\t$links .= actionLinkTagItem(__(\"Undelete\"), \"editpost\", $post['id'], \"delete=2&key=\".$key);\r\n\t\t\t\t$links .= \"<li><a href=\\\"#\\\" onclick=\\\"ReplacePost(\".$post['id'].\",false); return false;\\\">\".__(\"Close\").\"</a></li>\";\r\n\t\t\t\t$links .= \"<li>\".format(__(\"ID: {0}\"), $post['id']).\"</li></ul>\";\r\n\t\t\t}\r\n\t\t\telse if ($type == POST_NORMAL)\r\n\t\t\t{\r\n\t\t\t\t$links .= \"<ul class=\\\"pipemenu\\\">\";\r\n\t\t\t\t\r\n\t\t\t\t$links .= actionLinkTagItem(__(\"Link\"), \"thread\", \"\", \"pid=\".$post['id'].\"#\".$post['id']);\r\n\r\n\t\t\t\tif ($canreply && !$params['noreplylinks'])\r\n\t\t\t\t\t$links .= actionLinkTagItem(__(\"Quote\"), \"newreply\", $thread, \"quote=\".$post['id']);\r\n\r\n\t\t\t\tif ($editallowed && ($canmod || ($post['uid'] == $loguserid && $loguser['powerlevel'] > -1 && !$post['closed'])))\r\n\t\t\t\t\t$links .= actionLinkTagItem(__(\"Edit\"), \"editpost\", $post['id']);\r\n\r\n\t\t\t\tif ($editallowed && $canmod)\r\n\t\t\t\t{\r\n\t\t\t\t\t// TODO: perhaps make delete links not require a key to be passed\r\n\t\t\t\t\t// * POST-form delete confirmation, on separate page, a la Jul?\r\n\t\t\t\t\t// * hidden form and Javascript-submit() link?\r\n\t\t\t\t\t$key = hash('sha256', \"{$loguserid},{$loguser['pss']},{$salt}\");\r\n\t\t\t\t\t$links .= actionLinkTagItem(__(\"Delete\"), \"editpost\", $post['id'], \"delete=1&key=\".$key);\r\n\t\t\t\t}\r\n\t\t\t\tif ($canreply && !$params['noreplylinks'])\r\n\t\t\t\t\t$links .= \"<li>\".format(__(\"ID: {0}\"), actionLinkTag($post['id'], \"newreply\", $thread, \"link=\".$post['id'])).\"</li>\";\r\n\t\t\t\telse\r\n\t\t\t\t\t$links .= \"<li>\".format(__(\"ID: {0}\"), $post['id']).\"</li>\";\r\n\t\t\t\tif ($loguser['powerlevel'] > 0)\r\n\t\t\t\t\t$links .= \"<li>\".$post['ip'].\"</li>\";\r\n\t\t\t\t$links .= \"</ul>\";\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t$meta = format(__(($type == POST_PM) ? \"Sent on {0}\" : \"Posted on {0}\"), formatdate($post['date']));\r\n\t\t//Threadlinks for listpost.php\r\n\t\tif ($params['threadlink'])\r\n\t\t\t$meta .= \" \".__(\"in\").\" \".actionLinkTag($post['threadname'], \"thread\", $post['thread']);\r\n\t\t//Revisions\r\n\t\tif($post['revision'])\r\n\t\t{\r\n\t\t\tif ($post['revuser'])\r\n\t\t\t{\r\n\t\t\t\t$ru_link = UserLink(array('id'=>$post['revuser'], 'name'=>$post['ru_name'], 'displayname'=>$post['ru_dn'], 'powerlevel'=>$post['ru_power'], 'sex'=>$post['ru_sex']));\r\n\t\t\t\t$revdetail = format(__(\" by {0} on {1}\"), $ru_link, formatdate($post['revdate']));\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t\t$revdetail = '';\r\n\t\t\t\r\n\t\t\tif ($canmod)\r\n\t\t\t\t$meta .= \" (<a href=\\\"javascript:void(0);\\\" onclick=\\\"showRevisions(\".$post['id'].\")\\\">\".format(__(\"rev. {0}\"), $post['revision']).\"</a>\".$revdetail.\")\";\r\n\t\t\telse\r\n\t\t\t\t$meta .= \" (\".format(__(\"rev. {0}\"), $post['revision']).$revdetail.\")\";\r\n\t\t}\r\n\t\t//</revisions>\r\n\t}\r\n\r\n\t$sideBarStuff .= GetRank($post);\r\n\tif($sideBarStuff)\r\n\t\t$sideBarStuff .= \"<br />\";\r\n\tif($post['title'])\r\n\t\t$sideBarStuff .= strip_tags(CleanUpPost($post['title'], \"\", true), \"<b><strong><i><em><span><s><del><img><a><br><small>\").\"<br />\";\r\n\telse\r\n\t{\r\n\t\t$levelRanks = array(-1=>__(\"Banned\"), 0=>\"\", 1=>__(\"Local mod\"), 2=>__(\"Full mod\"), 3=>__(\"Administrator\"));\r\n\t\t$sideBarStuff .= $levelRanks[$post['powerlevel']].\"<br />\";\r\n\t}\r\n\t$sideBarStuff .= GetSyndrome($post['activity']);\r\n\tif($post['picture'])\r\n\t{\r\n\t\tif($post['mood'] > 0 && file_exists(\"img/avatars/\".$post['uid'].\"_\".$post['mood']))\r\n\t\t\t$sideBarStuff .= \"<img src=\\\"img/avatars/\".$post['uid'].\"_\".$post['mood'].\"\\\" alt=\\\"\\\" />\";\r\n\t\telse\r\n\t\t\t$sideBarStuff .= \"<img src=\\\"\".$post['picture'].\"\\\" alt=\\\"\\\" />\";\r\n\t}\r\n\r\n\t$lastpost = ($post['lastposttime'] ? timeunits(time() - $post['lastposttime']) : \"none\");\r\n\t$lastview = timeunits(time() - $post['lastactivity']);\r\n\r\n\tif(!$params['forcepostnum'] && ($type == POST_PM || $type == POST_SAMPLE))\r\n\t\t$sideBarStuff .= \"<br />\\n\".__(\"Posts:\").\" \".$post['posts'];\r\n\telse\r\n\t\t$sideBarStuff .= \"<br />\\n\".__(\"Posts:\").\" \".$post['num'].\"/\".$post['posts'];\r\n\t\t\r\n\t$sideBarStuff .= \"<br />\\n\".__(\"Since:\").\" \".cdate($loguser['dateformat'], $post['regdate']).\"<br />\";\r\n\r\n\t$bucket = \"sidebar\"; include(\"./lib/pluginloader.php\");\r\n\r\n\t$sideBarStuff .= \"<br />\\n\".__(\"Last post:\").\" \".$lastpost;\r\n\t$sideBarStuff .= \"<br />\\n\".__(\"Last view:\").\" \".$lastview;\r\n\r\n\tif($hacks['themenames'] == 3)\r\n\t{\r\n\t\t$sideBarStuff = \"\";\r\n\t\t$isBlocked = 1;\r\n\t}\r\n\r\n\tif($post['lastactivity'] > time() - 300)\r\n\t\t$sideBarStuff .= \"<br />\\n\".__(\"User is <strong>online</strong>\");\r\n\r\n\tif($type == POST_NORMAL)\r\n\t\t$anchor = \"<a name=\\\"\".$post['id'].\"\\\" />\";\r\n\tif(!$isBlocked)\r\n\t{\r\n\t\t$pTable = \"table\".$post['uid'];\r\n\t\t$row1 = \"row\".$post['uid'].\"_1\";\r\n\t\t$row2 = \"row\".$post['uid'].\"_2\";\r\n\t\t$topBar1 = \"topbar\".$post['uid'].\"_1\";\r\n\t\t$topBar2 = \"topbar\".$post['uid'].\"_2\";\r\n\t\t$sideBar = \"sidebar\".$post['uid'];\r\n\t\t$mainBar = \"mainbar\".$post['uid'];\r\n\t}\r\n\r\n\t$tags = array();\r\n\t$rankHax = $post['posts'];\r\n\t//if($post['num'] == \"preview\")\r\n\t//\t$post['num'] = $post['posts'];\r\n\t//\r\n\t//\tCrappy hack to fix what another crappy hack broke\r\n\t$post2 = $post;\r\n\t$post2['posts'] = $post['num'];\r\n\t//Disable tags by commenting/removing this part.\r\n\t// TODO: this could be done only once somewhere else (unless plugins doing stuff like per-user &tags& are desired)\r\n\t$tags = array\r\n\t(\r\n\t\t\"postnum\" => $post['num'],\r\n\t\t\"postcount\" => $post['posts'],\r\n\t\t\"numdays\" => floor((time()-$post['regdate'])/86400),\r\n\t\t\"date\" => formatdate($post['date']),\r\n\t\t\"rank\" => GetRank($post2),\r\n\t);\r\n\t$bucket = \"amperTags\"; include(\"./lib/pluginloader.php\");\r\n\t\r\n\t$post['posts'] = $rankHax;\r\n\t\r\n\t$postText = ApplyTags(CleanUpPost($post['text'], $post['name'], $noSmilies, $noBr), $tags);\r\n\t$bucket = \"postMangler\"; include(\"./lib/pluginloader.php\");\r\n\t\r\n\tif($post['postheader'] && !$isBlocked)\r\n\t\t$postHeader = str_replace('$theme', $theme, ApplyTags(CleanUpPost($post['postheader'], $post['name'], $noSmilies, true), $tags));\r\n\r\n\tif($post['signature'] && !$isBlocked)\r\n\t{\r\n\t\tif(!$post['signsep'])\r\n\t\t\t$separator = \"<br />_________________________<br />\";\r\n\t\telse\r\n\t\t\t$separator = \"<br />\";\r\n\t\t\t\r\n\t\t$postFooter = ApplyTags(CleanUpPost($post['signature'], $post['name'], $noSmilies, true), $tags);\r\n\t}\r\n\r\n\t$postCode =\r\n\"\r\n\t\t<table class=\\\"post margin {14} \".$pTable.\"\\\" id=\\\"post{13}\\\">\r\n\t\t\t<tr class=\\\"\".$row1.\"\\\">\r\n\t\t\t\t<td class=\\\"side userlink {1}\\\">\r\n\t\t\t\t\t{0}\r\n\t\t\t\t\t{5}\r\n\t\t\t\t</td>\r\n\t\t\t\t<td class=\\\"meta right {2}\\\">\r\n\t\t\t\t\t<div style=\\\"float: left;\\\" id=\\\"meta_{13}\\\">\r\n\t\t\t\t\t\t{7}\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div style=\\\"float: left; display: none;\\\" id=\\\"dyna_{13}\\\">\r\n\t\t\t\t\t\tHi.\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t{8}\r\n\t\t\t\t</td>\r\n\t\t\t</tr>\r\n\t\t\t<tr class=\\\"\".$row2.\"\\\">\r\n\t\t\t\t<td class=\\\"side {3}\\\">\r\n\t\t\t\t\t<div class=\\\"smallFonts\\\">\r\n\t\t\t\t\t\t{6}\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</td>\r\n\t\t\t\t<td class=\\\"post {4}\\\" id=\\\"post_{13}\\\">\r\n\r\n\t\t\t\t\t{9}\r\n\t\t\t\t\t<!-- POST BEGIN -->\r\n\t\t\t\t\t{10}\r\n\t\t\t\t\t<!-- POST END -->\r\n\t\t\t\t\t{12}\r\n\t\t\t\t\t{11}\r\n\r\n\t\t\t\t</td>\r\n\t\t\t</tr>\r\n\t\t</table>\r\n\";\r\n\r\n\twrite($postCode,\r\n\t\t\t$anchor, $topBar1, $topBar2, $sideBar, $mainBar,\r\n\t\t\tUserLink($post, \"uid\"), $sideBarStuff, $meta, $links,\r\n\t\t\t$postHeader, $postText, $postFooter, $separator, $post['id'], $post['id'] == $highlight ? \"highlightedPost\" : \"\");\r\n\r\n}", "abstract protected function getPostUrl($id);", "public function single($id = null, $bIsPreview = false)\n {\n $oUri = Factory::service('Uri');\n\n // Get the single post by its slug\n if ($id) {\n $this->data['post'] = $this->blog_post_model->getById($id);\n } else {\n $this->data['post'] = $this->blog_post_model->getBySlug($oUri->rsegment(3));\n }\n\n // --------------------------------------------------------------------------\n\n // Check we have something to show, otherwise, bail out\n if (!$this->data['post']) {\n show404();\n }\n\n // --------------------------------------------------------------------------\n\n /**\n * If this post's status is not published then 404, unless logged in as a user\n * with post managing permissions.\n */\n if (!$this->data['post']->is_published || strtotime($this->data['post']->published) > time()) {\n\n /**\n * This post hasn't been published, or is scheduled. However, check to see\n * if the user has post management permissions.\n */\n if (!userHasPermission('admin:blog:post:' . $this->oBlog->id . ':manage')) {\n\n show404();\n }\n }\n\n // --------------------------------------------------------------------------\n\n // Get associations\n $this->blog_model->getAssociations($this->data['post']->id);\n\n // --------------------------------------------------------------------------\n\n // Correct URL?\n if (!$bIsPreview && siteUrl(uri_string()) !== $this->data['post']->url) {\n\n redirect($this->data['post']->url, 301);\n }\n\n // --------------------------------------------------------------------------\n\n // Widgets\n $this->fetchSidebarWidgets();\n\n // --------------------------------------------------------------------------\n\n // Meta\n $this->data['page']->title = $this->oBlog->label . ': ';\n $this->data['page']->title .= $this->data['post']->seo_title ? $this->data['post']->seo_title : $this->data['post']->title;\n $this->data['page']->seo->description = $this->data['post']->seo_description;\n $this->data['page']->seo->keywords = $this->data['post']->seo_keywords;\n\n // --------------------------------------------------------------------------\n\n $this->data['isSingle'] = true;\n\n // --------------------------------------------------------------------------\n\n // Load views\n $oView = Factory::service('View');\n $oView->load('structure/header', $this->data);\n $this->loadView('single', $this->data);\n $oView->load('structure/footer', $this->data);\n\n // --------------------------------------------------------------------------\n\n // Register a hit\n $oInput = Factory::service('Input');\n\n $data = array();\n $data['user_id'] = activeUser('id');\n $data['referrer'] = $oInput->server('HTTP_REFERER');\n\n $this->blog_post_model->addHit($this->data['post']->id, $data);\n }", "function post_to_fb_fanpage($id=''){\n\t\t$this->initials();\n\t\t$q=$this->m_fanpage->get_facebook_posting($id);\n\t\tforeach($q->result() as $res){\n\t\t\t$ID=$res->ID_post;\n\t\t\t$fbuser=$res->UID;\n\t\t\t$page=$res->page_id;\n\t\t\t$message=$res->messages;\n\t\t\t$url=$res->url;\n\t\t\t$image=get_image_post($res->image);\n\t\t\t$this->send_message_to_fb($ID,$fbuser,$page,$message,$url,$image);\n\t\t}\n\t}", "public function a_post_can_be_shown_by_id()\n {\n $post = factory(Post::class)->create(['slug' => 'i-am-slug']);\n\n $this->be($post->user, 'api')\n ->getJson('api/posts/'.$post->id)\n ->assertStatus(200)\n ->assertSee($post->title)\n ->assertSee($post->slug);\n }", "function single_post($post_id, $user_id)\n\t{\n\t\tglobal $connection;\n\t\t\n\t\t//Fetch all fields regarding the selected post\n\t\t$query = \"SELECT * \";\n\t\t\t$query .= \"FROM posts \";\n\t\t\t$query .= \"WHERE post_id = {$post_id} and published = 1\";\n\t\t\t\n\t\t$result = mysql_query($query, $connection);\n\t\tconfirm_query($result);\n\t\t\n\t\t$post_info = mysql_fetch_array($result);\n\t\t\n\t\tif(mysql_num_rows($result) > 0){\n\t\t\t//Check if author created a name\n\t\t\t$user = get_user_info($user_id);\n\t\t\t\n\t\t\t//If author did not save a name, the username will be displayed\n\t\t\tif($user['name'] == null){\n\t\t\t\t$author = $user['user_name'];\n\t\t\t} else {\n\t\t\t\t$author = $user['name'];\n\t\t\t}\n\t\t\t\n\t\t\t$category_name = get_category($post_info['cat_id']);\n\t\t\t$category_name = $category_name['cat_name'];\n\t\t\t\n\t\t\t//The post\n\t\t\t$post = \"<h2> {$post_info['title']} </h2>\";\n\t\t\t$post .= \"Posted on: {$post_info['date_created']}\";\n\t\t\t$post .= \" by {$author}\";\n\t\t\t$post .= \"<br /> <br /> <span id=\\\"post_content\\\"> {$post_info['content']} </span> <br /> <br />\";\n\t\t\t$post .= \"<span id=\\\"post_cat\\\"> Category: {$category_name} </span>\";\n\t\t\techo $post;\n\t\t}\n\t\telse {\n\t\t\treturn false;\n\t\t}\t\n\t\t\n\t}", "public function post_get(){\n\t\ttry {\n\t\t\t$postInfo = CA_Social::getPost($this->input->get('postId'), -1, TRUE, $this->self['id']);\n\t\t\t$this->ajaxResponse(array(\n\t\t\t\t'status' => TRUE,\n\t\t\t\t'postInfo' => $postInfo,\n\t\t\t));\n\t\t}catch(Exception $e){\n\t\t\t$this->ajaxResponse(array(\n\t\t\t\t'status' => FALSE,\n\t\t\t\t'message' => $e->getMessage(),\n\t\t\t));\n\t\t}\n\t}", "public function post();", "public function post();", "public function post();", "public function post($postId)\n {\n return view('user.post');\n }", "public function showPost($id){\n return $this->postsController->getPostByID($id, ACTIVE);\n }", "protected function DisplayPost()\n\t{\n\t\t\n\t}", "function post($postID){\n $data['post']=$this->post->get_post($postID);\n $this->load->view('post',$data);\n\n }", "public function showPost(): void {\n\t\t$commentSuccess = null;\n\t\t$commentError = null;\n\t\t$slug = $this->params['slug'];\n\n\t\tif (isset($_POST['submitButtonComment'])) {\n\t\t\ttry {\n\t\t\t\t(new FormHandler)->addComment($_POST, $slug);\n\n\t\t\t\t$commentSuccess = FormReturnMessage::COMMENT_SUCCESSFULLY_SENT;\n\t\t\t} catch (FormException $e) {\n\t\t\t\t$commentError = $e->getMessage();\n\t\t\t}\n\t\t}\n\n\t\t$postManager = new PostManager();\n\n\t\t$post = $postManager->findOneByWithComment([\n\t\t\t'p.slug' => $slug, \n\t\t], [\n\t\t\t'c.created_at' => \"DESC\", \n\t\t]);\n\n\t\tif (is_null($post)) {\n\t\t\tthrow new RequestedEntityNotFound(\"Post not found\");\n\t\t}\n\n\t\t$this->render(\"@client/pages/post.html.twig\", [\n\t\t\t'post' => $post, \n\t\t\t'commentSuccess' => $commentSuccess, \n\t\t\t'commentError' => $commentError, \n\t\t]);\n\t}" ]
[ "0.66571206", "0.6556276", "0.6369901", "0.622778", "0.613196", "0.6095096", "0.6090556", "0.60223836", "0.6002706", "0.5939467", "0.5917961", "0.5904219", "0.5893115", "0.5883928", "0.58832794", "0.5867964", "0.5847696", "0.58399034", "0.58237433", "0.579815", "0.5780538", "0.57708627", "0.5752143", "0.5752143", "0.5752143", "0.5751406", "0.57404494", "0.5737069", "0.57181877", "0.567246" ]
0.7937567
0
The method events() shows a list of posts typed as 'event'.
public function events() { $view_title = 'Eventos'; $this->load->model('post'); $query = $this->post->get_by_field( array('page' => '2', 'status' => '1'), null, array('field' => 'created', 'order' => 'desc') )->result(); $this->wpanel->set_meta_title($view_title); $this->wpanel->set_meta_description('Lista de eventos'); $this->wpanel->set_meta_keywords(' eventos, agenda'); $this->data_content['events'] = $query; $this->render('events'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function events_post() {\n\t\t\t$labels = array(\n\t\t\t\t'name' => __( 'Events' ),\n\t\t\t\t'singular_name' => __( 'Event' ),\n\t\t\t\t'add_new' => __( 'New Event' ),\n\t\t\t\t'add_new_item' => __( 'Add New Event' ),\n\t\t\t\t'edit_item' => __( 'Edit Event' ),\n\t\t\t\t'new_item' => __( 'New Event' ),\n\t\t\t\t'view_item' => __( 'View Event' ),\n\t\t\t\t'search_items' => __( 'Search Events' ),\n\t\t\t\t'not_found' => __( 'No Events Found' ),\n\t\t\t\t'not_found_in_trash' => __( 'No Events found in Trash' ),\n\t\t\t);\n\t\t\t$args = array(\n\t\t\t\t'labels' => $labels,\n\t\t\t\t'has_archive' => false,\n\t\t\t\t'public' => true,\n\t\t\t\t'hierarchical' => false,\n\t\t\t\t'exclude_from_search' => false,\n\t\t\t\t'menu_icon' => 'dashicons-calendar-alt',\n\t\t\t\t'supports' => array(\n\t\t\t\t\t'title',\n\t\t\t\t\t'editor',\n\t\t\t\t\t'excerpt',\n\t\t\t\t\t'thumbnail',\n\t\t\t\t)\n\t\t\t);\n\t\t\tregister_post_type( 'events', $args );\n\t\t}", "function events() { return $this->get('events'); }", "public function getEvents();", "public function getEvents();", "public function getEvents();", "public function getEvents();", "public function getEvents();", "public function FetchPosts ()\n {\n\n $event_instances = EventInstance::where( 'name', '!=', 'default' )->get();\n\n foreach( $event_instances as $event_instance )\n {\n if( $this->show_output ) echo( \"FetchPosts: \" . $event_instance->name .\"\\n\" );\n $this->ProcessPosts( $event_instance );\n }\n\n }", "public function index()\n {\n\n $posts=Auth::user()->posts()->where('type',2)->with('event')->get();\n\n return view('admin.events.index',compact('posts'));\n }", "public function list()\n {\n return Client::getInstance()\n ->makeRequest('/events');\n }", "public function getEvents(){\n\t\t\t\t$sql = 'SELECT * FROM events ORDER BY event_id DESC';\n\t\t\t\t$result = mysql_query($sql);\n\t\t\t\twhile($row = mysql_fetch_assoc($result)){\n\t\t\t\t\t$event_title = $row['event_title'];\n\t\t\t\t\t$event_date = $row['event_date'];\n\t\t\t\t\t$event_time = $row['event_time'];\n\t\t\t\t\t$event_venue = $row['event_venue'];\n\t\t\t\t\t\n\t\t\t\t\techo '<li class=\"event-scroll\"><h2>'.$event_title.'</h2><h3>Date:'.$event_date.'</h3><h3>Time: '.$event_time.'</h3><h3>Venue: '.$event_venue.'</h3></li>';\n\t\t\t\t}\n\t\t\t}", "public static function events($ajax_format = false) {\n\t\t// Get the data\n\t\t$feed_data = Events::aggregate();\n\n\t\t// Let's remove any weird HTML from the blog posts content\n\t\t$feed_data = Events::clean_post_content($feed_data);\n\n\t\t// Let's parse the dates from the feed\n\t\t$feed_data = Events::parse_event_dates($feed_data);\n\n\t\t// If called with Ajax, make sure to respond in JSON format\n\t\tif ($ajax_format) {\n\t\t\treturn json_encode($feed_data);\n\t\t}\n\n\t\treturn $feed_data;\n\n\t}", "public function events();", "public function events() {\n if (empty($this->info)) {\n $this->refreshInfo();\n }\n return !empty($this->info['events']) ? $this->info['events'] : array();\n }", "public function getEvents(){ }", "public function GetAll()\n {\n return Auth::user()->events()->get();\n }", "public function getEvents(): array;", "function wpel_query_event () {\n $events = array();\n\n $query = new WP_Query( array(\n 'post_type' => 'event',\n 'scope' => 'future',\n 'tax_query' => array( array( \n 'taxonomy' => 'event-categories',\n 'field' => 'slug',\n 'terms' => 'tournament'\n )),\n 'order' => 'ASC',\n 'orderby' => 'date-time',\n ) );\n \n if ( $query->have_posts() ) {\n while ( $query->have_posts() ) {\n $postdata = array();\n\n $query->the_post();\n $post = get_post();\n\n $postdata['permalink'] = get_post_permalink($post);\n $postdata['thumbnail'] = get_the_post_thumbnail($post);\n $postdata['title'] = get_the_title();\n $postdata['date'] = date_create_from_format( 'Y-m-d H:i:s', $post->_event_start);\n\n $events[] = $postdata;\n }\n }\n\n return $events;\n}", "function tbcf_query_events( $args = array() ) {\n\n\treturn apply_filters( 'tbcf_query_events', new WP_Query( array_merge( array(\n\t\t'post_type' => 'ctc_event',\n\t\t'paged' => tbcf_page_num(),\n\t\t'order' => 'ASC',\n\t\t'orderby' => 'meta_value',\n\t\t'meta_key' => '_ctc_event_start_date_start_time',\n\t\t'meta_type' => 'DATETIME',\n\t\t'meta_query' => array(\n\t\t\tarray(\n\t\t\t\t'key' => '_ctc_event_end_date',\n\t\t\t\t'value' => date_i18n( 'Y-m-d' ),\n\t\t\t\t'compare' => '>=',\n\t\t\t\t'type' => 'DATE'\n\t\t\t)\n\t\t)\n\t), $args ) ) );\n\n}", "public function listAction()\n {\n $postManager = $this->container->get('avro_blog.post_manager');\n\n $posts = $postManager->findAll();\n\n return array(\n 'posts' => $posts\n );\n }", "function events_posts()\n\t{\n\t\t$columns = array( \n 0\t=> 'id', \n 1 \t=> 'event_name',\n\t\t\t\t\t\t\t2\t=> 'event_link',\n 3\t=> 'logo',\n\t\t\t\t\t\t\t4\t=> 'status',\n );\n\t\t \n\t\t$limit = $this->security->sanitize_filename($this->input->post('length'));\n\t\t$start = $this->security->sanitize_filename($this->input->post('start'));\n\t\t\n\t\t$order = $columns[$this->input->post('order')[0]['column']];\n\t\t$dir = $this->security->sanitize_filename($this->input->post('order')[0]['dir']);\n\t\t$totalData = $this->event_model->allevent_count();\n\t\t\n\t\t$totalFiltered = $totalData; \n\n if(empty($this->input->post('search')['value']))\n { \n $posts = $this->event_model->allevents($this->security->xss_clean($limit),$this->security->xss_clean($start),$this->security->xss_clean($order),$this->security->xss_clean($dir));\n }\n else \n\t\t{\n\t\t\t$search = $this->security->sanitize_filename($this->input->post('search')['value']); \n\t\t\t$posts = $this->event_model->posts_search($this->security->xss_clean($limit),$this->security->xss_clean($start),$this->security->xss_clean($search),$this->security->xss_clean($order),$this->security->xss_clean($dir));\n\t\t\t$totalFiltered = $this->event_model->posts_search_count($this->security->xss_clean($search));\n\t\t}\n\n $data = array();\n\t\t\n if(!empty($posts))\n {\n\t\t\tforeach ($posts as $post)\n {\n $nestedData['id'] = $start + 1;\n $nestedData['eventname'] = $post->event_name;\n\t\t\t\t$nestedData['eventlink'] = $post->event_link;\n $nestedData['logo'] = $post->logo;\n\t\t\t\t\n\t\t\t\tif($post->status==1){\n\t\t\t\t\t$nestedData['status'] = '<span class=\"lbl-green\">Active</span>';\n\t\t\t\t}\n\t\t\t\telse if($post->status==0){\n\t\t\t\t\t$nestedData['status'] = '<span class=\"lbl-red\">Inactive</span>';\n\t\t\t\t}\n \n\n\t\t\t\t$nestedData['delete'] = '<a href=\"'.base_url().'eventdetail/'.$post->id.'\" target=\"_blank\"><i class=\"fa fa-edit fa-fw action_but\" aria-hidden=\"true\" title=\"Edit\" ></i></a><i class=\"fa fa-trash fa-fw action_but\" aria-hidden=\"true\" title=\"Delete\" onclick=\"confirmfullDeletion('.$post->id.')\"></i>';\n \n \n $data[] = $nestedData;\n\t\t\t\t$start++;\n\n }\n }\n\t\t\n $json_data = array(\n \"draw\" => intval($this->input->post('draw')), \n \"recordsTotal\" => intval($totalData), \n \"recordsFiltered\" => intval($totalFiltered), \n \"data\" => $data \n );\n \n echo json_encode($json_data);\n\t}", "public function index()\n {\n $events = Event::latest()->when(request()->q, function($events) {\n $events = $events->where('title', 'like', '%'. request()->q . '%');\n })->paginate(10);\n\n return view('admin.events.index', compact('events'));\n }", "function events(){\n\t\t}", "abstract public function events();", "public function actionIndex()\n {\n $searchModel = new EventsSearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n }", "function events() : \\Dan\\Events\\Handler\n {\n return dan('events');\n }", "public function events()\n {\n $responseArr = [\n 'events' => \\App\\Event::get(),\n 'event_active' => 'menu-active',\n 'title' => 'Events',\n ];\n return view('events.events')->with($responseArr);\n }", "public function events()\n {\n return $this->events;\n }", "public function events()\n {\n return $this->events;\n }", "public function event_talks()\n {\n return view('event.search');\n }" ]
[ "0.6857357", "0.6544295", "0.6518534", "0.6518534", "0.6518534", "0.6518534", "0.6518534", "0.63807416", "0.6372973", "0.6369069", "0.6345719", "0.6214066", "0.62049145", "0.6161559", "0.6143263", "0.61353576", "0.6083776", "0.60805875", "0.6070458", "0.6028947", "0.6002092", "0.5985047", "0.59558517", "0.59477574", "0.59474254", "0.59313583", "0.5931053", "0.5930726", "0.5930726", "0.5919552" ]
0.7183252
0
The method albuns() list all the available galeries of the site.
public function albuns() { $this->load->model('album'); $query = $this->album->get_by_field( 'status', 1, array('field'=>'created', 'order'=>'desc'), null, 'id, titulo, capa, created' )->result(); $this->wpanel->set_meta_description('Álbuns de fotos'); $this->wpanel->set_meta_keywords(' album, fotos'); $this->wpanel->set_meta_title('Álbuns de fotos'); $this->data_content['albuns'] = $query; $this->data_content['max_cols'] = $this->wpn_cols_mosaic; $this->render('albuns'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function allSuppliers();", "public function getAlergias()\n {\n return $this->alergias;\n }", "public function getAllGuitars()\n {\n $stmt = $this->DB->prepare(\"SELECT * FROM guitars\");\n $stmt->execute();\n $guitars = $stmt->fetchAll(PDO::FETCH_ASSOC);\n return $guitars;\n }", "public function all()\n {\n return AnestheticsResource::collection(\n Anesthesia::all()\n );\n }", "public function list () {\n require_once \"models/Alquileres.php\";\n $Alquileres = new Alquileres();\n $result = $Alquileres->list();\n $result = json_decode($result, true);\n\n }", "public function index()\n {\n $galeries = Galeries::orderBy('id', 'desc')->get();\n $count = $galeries->count();\n return view('admin.pages.galeries.index', compact('galeries', 'count'));\n }", "public function getGallerys()\n {\n $q = Doctrine_Query::create()\n ->from('Summers_Model_Gallery g');\n return $q->fetchArray();\n }", "public function bands_get() {\n return $this->execute('bands.get', array());\n }", "public function queryAll(){\n\t\t$sql = 'SELECT * FROM vcl_gal_rpt';\n\t\t$sqlQuery = new SqlQuery($sql);\n\t\treturn $this->getList($sqlQuery);\n\t}", "public function showAllBreweryHops() {\n\t\t$breweryhop = $this->ci->BreweriesModel->getAllBrewreyHops();\n\t\t//echo '<pre>'; print_r($breweryhop); echo '</pre>';exit;\n\t\t\t\n\t\t// set the output for the screen\n\t\t$str = '<h4><span>Recent Brewery Hops</span></h4>';\t\n\t\t\n\t\t// create the output for the screen\n\t\t$str .= '\n\t\t\t<ul id=\"hopList\">\n\t\t';\n\t\tforeach($breweryhop as $hop) {\n\t\t\t$str .= '\n\t\t\t\t<li><a href=\"' . base_url() . 'brewery/hop/' . $hop['id'] . '\">' . $hop['name'] . '</a> on ' . $hop['hopDate'] . '</li>\n\t\t\t';\n\t\t}\n\t\t$str .= '\n\t\t\t</ul>\n\t\t';\n\t\t// return formatted output\n\t\treturn $str;\n\t}", "public function getGalleryItems();", "public function getAll()\n {\n if ($galleries = $this->getList()) {\n foreach ($galleries as $index => $gallery) {\n $galleries[$index] = $this->extend($gallery);\n }\n }\n\n return $galleries;\n }", "public function index() {\n return Alergia::all();\n }", "public function get_all()\n\t{\n\t\t$db = $this->db_connection->get_connection();\n\n\t\t$sql = 'SELECT a.id, a.step_bet, a.start, a.stop, a.status, l.name, l.description, l.price FROM auctions a JOIN lots l ON a.lot_id = l.id WHERE a.status = 1 OR status = 2 ORDER BY a.id DESC';\n\n\t\t$query = $db->prepare($sql);\n\n\t\tif ($query->execute()) {\n\t\t\treturn $query->fetchAll(\\PDO::FETCH_ASSOC);\n\t\t} else {\n\t\t\thttp_response_code(500);\n\t\t\t$this->validator->check_response();\n\t\t}\n\t}", "public function getAilments($product);", "private function gallery_items(){\n $links = array(\n 'art' => array('link' => '/gallery/art-gallery', 'image_link' => '/images/gallery_icons/Art-135x110.jpg', 'label' => 'Art'),\n 'classrooms' => array('link' => '/gallery/classroom-gallery', 'image_link' => '/images/gallery_icons/Classrooms-135x110.jpg', 'label' => 'Classroom'),\n 'electives' => array('link' => '/gallery/electives-gallery', 'image_link' => '/images/gallery_icons/Electives-135x110.jpg', 'label' => 'Electives'),\n 'sports' => array('link' => '/gallery/sports-gallery', 'image_link' => '/images/gallery_icons/Sports-135x110.jpg', 'label' => 'Sports'),\n 'studentlife' => array('link' => '/gallery/student-life-gallery', 'image_link' => '/images/gallery_icons/Studentlife-135x110.jpg', 'label' => 'Life'),\n );\n return $links;\n }", "public function index()\n\t{\n\t\treturn Galeria::with('imagenes')->get();\n\t}", "public function index()\n\t{\n\n\t\treturn Artist::all();\n\t}", "public function getAlbums();", "public function retrieveAnimalAll()\n {\n $animals = R::getAll('select * from animal');\n\n return $animals;\n }", "public function showAlbums(){\n\n $albums = $this->model->getAlbums();\n $genre = $this->model_genre->getGenres();\n //se la paso a la vista jeje\n $this->view->showAlbums($albums, $genre);\n }", "public function index()\n {\n return Artist::all();\n }", "public function listarAlimentos()\n {\n return $this->alimentoDAO->listarAlimentos();\n }", "private function getAllBurgerStuff(){\n\n // Allereerst halen we de burger _ id op\n // We kijken in welke decade we moeten zijn\n // Laden de juiste template in\n $burger_id = $this->getBurgerId();\n\n // Als er geen burger id is dan tonen we de error page\n if ($burger_id == \"toonErrorPage\"){\n $this->loadErrorPage;\n }\n // Als er wel een burger id is, dan laden we de burger info in\n else{\n\n $burgerDAO = new BurgerDAO();\n $burgerFromDB = $burgerDAO->getBurgerinfoByBurgerid($burger_id);\n\n // Burger array aanmaken\n $burger = Array();\n\n // Burger ID meegeven\n $burger[\"id\"] = $burgerFromDB[\"id\"];\n\n // array met ingredienten maken\n $ingredienten = Array();\n\n // Kijken welk vlees er geselecteerd is\n // Meat uit de DB halen\n $meat = $burgerDAO->getMeatforBurger($burgerFromDB[\"meat_id\"]);\n\n // Vegetable uit DB halen\n $vegetable = $burgerDAO->getVegetableForBurger($burgerFromDB[\"vegetable_id\"]);\n\n $ingredienten[\"meat\"] = $meat[0];\n $ingredienten[\"vegetable\"] = $vegetable[0];\n\n\n if($burgerFromDB[\"salad\"] == 1){\n $ingredienten[\"salad\"] = \"salad\";\n }\n\n if($burgerFromDB[\"tomato\"] == 1){\n $ingredienten[\"tomato\"] = \"tomato\";\n }\n\n // Sauzen ophalen\n $sauzen = $burgerDAO->getSauzenForBurger($burger_id);\n\n // index j\n $j = 0;\n // Sauzen overlopen en in de ingredientenlijst zetten\n foreach ($sauzen as $saus){\n\n $index = \"saus\" . $j;\n $ingredienten[$index] = $sauzen[$j][\"sauce_name\"];\n\n $j++;\n\n }\n\n $burger[\"ingredienten\"] = $ingredienten;\n\n // Juiste decade meegeven\n $burger[\"decade\"] = $burgerFromDB[\"burger_decade\"];\n\n\n // We gaan de burger likes ophalen\n $likeDAO = new LikeDAO();\n $likes = $likeDAO->getLikesForBurger($burger_id);\n\n // En we gaan de maker ophalen\n $userDAO = new UserDAO();\n $creator = $userDAO->getUserForBurgerID($burgerFromDB[\"user_id\"]);\n\n // Daarna steken we alles in het burger object\n $burger[\"creator\"] = $creator[0] . \" \" . $creator[1];\n $burger[\"votes\"] = $likes[0];\n\n\n $this->smarty->assign('burger', $burger);\n\n\n // En dan kunnen we de juiste detail page laten zien adhv de decade\n switch($burgerFromDB['burger_decade'])\n {\n\n case \"50\":\n $this->load50sDetail();\n break;\n\n case \"80\":\n $this->load80sDetail();\n break;\n\n case \"00\":\n $this->load00sDetail();\n break;\n\n default:\n $this->loadErrorPage();\n break;\n }\n }\n\n }", "function GetAllBrands()\n\t{\n\t}", "public static function Gallery($atts){\n\t\t\t\n\t\t\tif (!function_exists('getfilters')){\n\t\t\tfunction getfilters($gal){\n\t\t\t\t$filters = array();\n\t\t\t\tforeach($gal as $item){\n\t\t\t\t\t$filters = array_merge($filters,wp_get_object_terms($item->pid, 'ngg_tag', 'fields=names'));\n\t\t\t\t}\n\t\t\t\t$filters = array_unique($filters);\n\t\t\t\tforeach($filters as $filter){\n\t\t\t\t\t$html .= '<li><a id=\"'.$filter.'\"><span>'.$filter.'</span></a></li>';\n\t\t\t\t}\t\t\t\t\n\t\t\t\treturn $html;\n\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tif (!function_exists('toHTML')){\n\t\t\tfunction toHTML($gal){\n\t\t\t\tglobal $nggdb;\n\t\t\t\t$html = '';\n\t\t\t\t$html .= ' <div class=\"smaller-title border\">\n\t\t\t\t\t\t\t<h2 class=\"category-title\">'.gettitle($gal).'</h2>\n\t\t\t\t\t\t\t<div class=\"categories\">\n\t\t\t\t\t\t\t<ul id=\"filters\">\n\t\t\t\t\t\t\t\t<li><a id=\"none\" class=\"selected\"><span>all</span></a></li>\n\t\t\t\t\t\t\t\t'.getfilters($gal).'\n\t\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>';\n\t\t\t\t$html .= '<div class=\"gal-wrapper\">\n\t\t\t\t\t\t\t<ul class=\"images-gallery\" id=\"all\">';\n\t\t\t\t$elid = 0;\t\n\t\t\t\tforeach($gal as $item){\n\t\t\t\t\t$elid++;\n\t\t\t\t\t $picture = nggdb::find_image($item->pid);\n\t\t\t\t\t$html .= '\n\t\t\t\t\t\t\t<li class=\"'.implode(' ', wp_get_object_terms($item->pid, 'ngg_tag', 'fields=names')).'\" data-id=\"'.$elid.'\">\n\t\t\t\t\t\t\t<div class=\"ic_container\"><a title=\"'.stripslashes(nggGallery::i18n($item->alttext)).'\" rel=\"group\" href=\"'.$picture->imageURL.'\"><img src=\"'.$picture->thumbURL.'\" alt=\"Hello World\" /></a>\n\t\t\t\t\t\t\t<div class=\"ic_caption\">\n\t\t\t\t\t\t\t<h3>'.stripslashes(nggGallery::i18n($item->alttext)).'</h3>\n\t\t\t\t\t\t\t<p class=\"ic_text\">'.$item->description.'</p>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div></li>';\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$html .= '\t</ul><div class=\"clear\"></div>\n\t\t\t\t\t\t</div>';\n\t\t\t\treturn $html;\n\t\t\t}\n\t\t\t}\n\t\t\t//----we have to check if there is a nextGenGalleryPlugin\n\t\t\tif (class_exists('nggLoader')){\n\t\t\t\textract( shortcode_atts( array(\n\t\t\t\t\t'id' => 0,\n\t\t\t\t), $atts ) );\n\t\t\t\t\n\t\t\t\t$gallery = getGallery($id);\n\t\t\t\techo toHTML($gallery);\n\t\t\t//if there is no nextGenGallery tell to get one\n\t\t\t}\n\t\t\telse { \n\t\t\t\t\tTiAdminPanel::AlertNow('error','NextGen Gallery plugin is not installed. I can not show you the gallery');\n\t\t\t\t}\n\t\t}", "public static function call_analysis_action_barea_mthd_getall(){\n return BonusAreaController::getall();}", "public function index()\n {\n $this->repository->pushCriteria(app('Prettus\\Repository\\Criteria\\RequestCriteria'));\n $hotel = $this->hotelRepository->all();\n $galeries = $this->repository->all();\n $wisata = $this->wisataRepository->all();\n $kuliner = $this->kulinerRepository->all();\n $modul = $this->modul;\n $w = $this->w;\n $k = $this->k;\n $h = $this->h;\n\n if (request()->wantsJson()) {\n\n return response()->json([\n 'data' => $galeries,\n ]);\n }\n // dd($w);\n return view('galery.index', compact('k','h','w','modul','galeries','hotel','wisata','kuliner'));\n }", "function pics() {\r\n \r\n global $gallerieThumb; \r\n global $gallerie;\r\n \r\n foreach ($gallerie as $key => $val ) {\r\n echo '<a class=\"view\" title=\"the Pack - project one\" href=\"'. $val .'\" rel=\"shadowbox[Mixed]\" ><img class=\"gallery\" rel=\"shadowbox\" src=\"'. $gallerieThumb[$key] .'\" alt=\"the Pack - project one #'. $key .' \" /></a>';\r\n\r\n }\r\n \r\n }", "public function getAltBadgesQuery() {\n $q = sqlquery(\"SELECT `balt`.`id`, `balt`.`headline`, `balt`.`description`, `balt`.`action_buttons`\n FROM `bc_badges_alt` `balt`\n WHERE `balt`.`approved` = 'on'\n ORDER BY `balt`.`position` DESC\");\n\n $items = array();\n while ($f = sqlfetch($q)) {\n $items[] = $this->get($f);\n }\n return $items;\n }" ]
[ "0.5799934", "0.57757264", "0.55943763", "0.55106777", "0.5474397", "0.54074484", "0.54001284", "0.5350576", "0.5343689", "0.53261656", "0.53208333", "0.5310408", "0.52786475", "0.52007806", "0.517867", "0.5175689", "0.516183", "0.5160482", "0.51373625", "0.51280385", "0.5113945", "0.51122224", "0.50985634", "0.5081072", "0.50624835", "0.50486255", "0.50435126", "0.5042413", "0.5039499", "0.50372237" ]
0.58616644
0
The method album() shows a list of pictures of a galery selected by $album_id.
public function album($album_id = null) { if ($album_id == null) show_404(); $this->load->model('album'); $this->load->model('foto'); $query_album = $this->album->get_by_id( $album_id, null, null, 'id, titulo, descricao, capa, created, status' )->row(); if (count($query_album) <= 0) show_404(); if ($query_album->status == 0) show_error('Este álbum foi suspenso temporariamente', 404); $query_pictures = $this->foto->get_by_field( array('album_id'=>$album_id, 'status'=>1), null, array('field' => 'created', 'order' => 'desc'), null, 'id, filename, descricao' )->result(); $this->wpanel->set_meta_description($query_album->descricao); $this->wpanel->set_meta_keywords(' album, fotos'); $this->wpanel->set_meta_title($query_album->titulo); if(file_exists('./media/capas/'.$query_album->capa)) $this->wpanel->set_meta_image(base_url('media/capas'.'/'.$query_album->capa)); $this->data_content['album'] = $query_album; $this->data_content['pictures'] = $query_pictures; $this->data_content['max_cols'] = $this->wpn_cols_mosaic; $this->render('album'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function album($album_id)\n {\n $data = array();\n $current_album = $this->album_model->find_by_id($album_id);\n $prev_album = $this->album_model->find_prev_album($current_album->created_at);\n $next_album = $this->album_model->find_next_album($current_album->created_at);\n $data['current_album'] = $current_album;\n $data['prev_url'] = empty($prev_album) ? base_url() : base_url() . 'show/album/' . $prev_album->id;\n $data['next_url'] = empty($next_album) ? base_url() : base_url() . 'show/album/' . $next_album->id;;\n $data['images'] = $this->image_model->get_images_by_album_id($album_id);\n $this->load->view('show/gallery', $data);\n }", "public function get_album_photos($albumid){\n $albumcontent = $this->google_curl->get(google_picasa::ALBUM_PHOTO_LIST.$albumid);\n\n return $this->get_photo_details($albumcontent);\n }", "public function photosGetAction($album_id){\n //todo: Check that user are allowed to view these photos. It is handled elsewhere now, but should be taken care of here.\n //Check if an album with this id exists, if not throw an exception. This shouldn't happen\n //and indicates an error in front end code\n $album = $this->getDoctrine()->getRepository('AppBundle:Gallery')->find($album_id);\n if ($album == null){\n throw new \\Exception('Attempted to load photos from non existing album. $album_id: ' . $album_id);\n }\n $photos = $this->getDoctrine()->getRepository('AppBundle:Photo')->findBy(\n array('gallery' => $album_id),\n array('dateAdded' => 'ASC')\n );\n return $this->render('gallery/gallery_photos.html.twig', array('photos' => $photos));\n }", "public function showAlbums(){\n\n $albums = $this->model->getAlbums();\n $genre = $this->model_genre->getGenres();\n //se la paso a la vista jeje\n $this->view->showAlbums($albums, $genre);\n }", "public function get_album_photo($album_id = '')\r\n {\r\n\t\t $this->model_photo=new Photos_Model();\r\n \t\t $this->photos = $this->model_photo->get_abmphoto($album_id);\r\n \t\t return $this->photos;\r\n }", "public function album(){\n $this->paginator = $this->chechAndSetModel('App\\Models\\Images');\n $email = explode(\" - \", $_SESSION['userID']);\n\n if(!isset($this->routeParams['id']) || intval($this->routeParams['id']) < 1){\n $this->redirect(\"/profile/album/\" . 1);\n\n }else if(intval($this->routeParams['id']) > $this->paginator->getPageNumber($email[0])){\n\n $this->redirect(\"/profile/album/\" . $this->paginator->getPageNumber($email[0]));\n }\n $offset = $this->paginator->getOffset($this->routeParams['id']);\n $records = Images::usersImageOnly($offset);\n View::render(\"Profile/album.html\", [\n \"images\" => $records,\n \"pages\" => $this->paginator->getPageNumber($email[0]),\n \"current\" => $this->routeParams['id']\n ]);\n }", "function albumAction()\n\t{\n\t\t$albums = new Application_Model_DbTable_Albums();\n\t\t$this->view->albums = $albums->fetchAll();\n\t}", "public function view_album($id) {\n $sql = \"SELECT * FROM albums a, songs s WHERE a.album_id = $id AND a.album_id = s.album\";\n\n //execute the query\n $query = $this->dbConnection->query($sql);\n\n if ($query && $query->num_rows > 0) {\n $musics = array();\n\n while ($query_row = $query->fetch_assoc()) {\n $musics[] = $query_row;\n }\n\n return $musics;\n }\n\n return false;\n }", "public function getAlbums();", "public function setAlbumId($albumID);", "public function show($id)\n\t{\n\t\t$album = Album::find($id);\n\t\t$photos = $album->photos;\n\t\treturn view(\"album\", compact('album', 'photos'));\n\t}", "public function showSingleAlbum($albumId)\n {\n $photo = new PhotoController();\n $album = new AlbumController();\n\n $albumData = $album->getAlbumDataByAlbumId($albumId);\n //if album exist\n if($albumData){\n $this->layout->content = View::make('singlealbum', array('albumId' => $albumId));\n $this->layout->bodyclass = \"home-page\";\n\n $album->countViews($albumId);\n $this->layout->content->albumId = $albumId;\n\n\n $this->layout->content->albumPhotos = $album->getAlbumPhotos($albumId);\n\n $albumData = $album->getAlbumDataByAlbumId($albumId);\n $this->layout->content->albumData = $albumData[0];\n\n //likes\n $this->layout->content->likes = $album->getAlbumLikes($albumId);\n $this->layout->content->isLikeAlreadyExists = $album->isLikeAlreadyExists($albumId);\n\n //comments\n $this->layout->content->comments = $album->getAlbumComments($albumId);\n\n //categories\n $this->layout->content->allExistingCategories = $photo->getAllExistingCategories();\n\n //roles\n $this->layout->content->isUserHavingPrivilegies = $album->isUserHavingPrivilegies($albumId);\n\n $this->layout->content->isUserAlbumCreator = $album->isUserAlbumCreator($albumId);\n }\n else\n $this->showNotFoundPage();\n }", "public function show(Album $album)\n {\n return $album;\n }", "function albumShow() {\r\n \r\n $thisPage = wire(\"page\");\r\n //$get = filter_input(INPUT_GET, 'page', FILTER_VALIDATE_INT);\r\n //$actualPage = $get == 0 ? 1:$get; \r\n $limit = getLimitNumber($thisPage);\r\n //$start = $limit*($actualPage-1);\r\n //$albumimages = $thisPage->gallery_images->find(\"start={$start}, limit={$limit}\");\r\n $numPictures = count($thisPage->gallery_images);\r\n \r\n $start = (wire(\"input\")->pageNum - 1) * $limit;\r\n $total = count($thisPage->gallery_images);\r\n $images = $thisPage->gallery_images->slice($start, $limit);\r\n $a = new PageArray();\r\n foreach($images as $unused) $a->add(new Page());\r\n $a->setTotal($total);\r\n $a->setLimit($limit);\r\n $a->setStart($start);\r\n \r\n\t$out =\" \";\r\n\t// Slides\r\n\t$out .=\"<div id='album'>\";\r\n $out .= listThumbs($images, $thisPage);\r\n $out .=\"</div>\";\r\n \r\n $out .= $a->renderPager();\r\n \r\n // Generate Pagination with the given limit\r\n /*\r\n $numPagination = intval(($numPictures/$limit)+0.999, 10);\r\n $i = 1;\r\n $out .=\"<ul id='pagination'>\";\r\n do {\r\n $go = ($i == ($actualPage+1)) ? \" class='next'\":\"\";\r\n $out .=\"<li{$go}><a href='?page={$i}'>| Seite {$i} |</a></li>\";\r\n $numPagination--;\r\n $i++;\r\n } while($numPagination > 0);\r\n $out .=\"</ul>\";*/\r\n \r\n \r\n \r\n\techo $out;\r\n}", "public function displayalbumAction()\n {\n \t$this->_useAdditionalContent = false;\n\n \t$albumName = $this->_request->getParam('albumName');\n\t\t$albumId = $this->_request->getParam('albumId');\n\t\t$page = $this->_request->getParam('page');\n\n\t\t$album = $this->_getAlbumFromNameOrId($albumName, $albumId, $page);\n \tif(empty($album)){\n \t\tthrow new Lib_Exception_NotFound(\"Album '$albumName' / '$albumId' could not be found\");\n \t}\n\n \tif((!$album->isReadableBy($this->_user, $this->_acl))){\n $this->_helper->redirectToRoute('othererror', array('error'=>'unauthorizedPrivateAlbumRead'), true);\n \t}\n\n \tZend_Registry::set('Category', $album->getCategory());\n \tZend_Registry::set('SubCategory', $album->getSubCategory());\n\n $comments = $album->getComments($this->_user, $this->_acl);\n\n \t$this->view->album = $album;\n \t$this->view->page = $page;\n $this->view->comments = $comments;\n if($identity = Zend_Auth::getInstance()->getIdentity()){\n \t$this->view->lastLogin = $identity->lastLogin;\n } else {\n \t$this->view->lastLogin = null;\n }\n\n \t$view = $album->getViewScript();\n \t$this->renderScript($view);\n }", "public function getImages(Album $album)\n {\n $images = Photo::where('album_id', $album->id)->latest()->paginate(env('IMG_PER_PAGE'));\n return view('images_views.albumimages', ['images' => $images, 'album' => $album]);\n }", "public function getAlbum($id)\n {\n $album = Organization::find($id)->album;\n return response()->json(compact('album'),200);\n }", "public function getAlbum();", "public function show($id){\n $album = Albums::with('Photos')->find($id);\n // $album = Albums::find($id);\n $photos = $album->photos;\n $data = array(\n 'album'=>$album,\n 'photos'=>$photos\n );\n return view('albums.show', $data);\n }", "public function getAlbumAction() {\n $sesdata = array();\n $value['text'] = $this->_getParam('text');\n $albums = Engine_Api::_()->getDbTable('albums', 'sesblog')->getAlbumsAction($value);\n foreach ($albums as $album) {\n $album_icon_photo = $this->view->itemPhoto($album, 'thumb.icon');\n $sesdata[] = array(\n 'id' => $album->album_id,\n 'label' => $album->title,\n 'photo' => $album_icon_photo\n );\n }\n return $this->_helper->json($sesdata);\n }", "public function album(){\n $data = array();\n $dao = UserDao::getInstance();\n\n // if album id + user id passed\n if(isset($_GET['id']) && isset($_GET['userId'])){\n $userId = htmlentities($_GET['userId']);\n $albumId = htmlentities($_GET['id']);\n\n // get user id full info\n if($_SESSION['logged']->getId() !== $userId){\n try{\n if(!$dao->getFullUserInfoById($userId)){\n $data['errors'] = 'No user with that id found';\n }\n $data['userInfo'] = $dao->getFullUserInfoById($userId);\n }\n catch (\\PDOException $e){\n $data['errors'] = $e->getMessage();\n }\n }\n\n // for album photos by id and userId\n try{\n if(!$dao->getUserAlbumPhotosById($userId,$albumId)){\n $data['errors'] = 'User do not own or have album with that id!!!';\n }\n $data['otherView'] = $dao->getUserAlbumPhotosById($userId,$albumId);\n }\n catch (\\PDOException $e){\n $data['errors'] = $e->getMessage();\n }\n }\n elseif (isset($_GET['id'])){\n // if only album id passed\n $albumId = htmlentities($_GET['id']);\n try{\n if(!$dao->getUserAlbumPhotosById($_SESSION['logged']->getId(), $albumId)){\n $data['errors'] = 'You dont own photo album with that id!!!';\n }\n $data['yourView'] = $dao->getUserAlbumPhotosById($_SESSION['logged']->getId(), $albumId);\n }\n catch (\\PDOException $e){\n $data['errors'] = $e->getMessage();\n }\n }\n else{\n // if no param passed -> album list\n try{\n $data['albums'] = $dao->getUserAlbumsBigLimit($_SESSION['logged']->getId());\n }\n catch (\\PDOException $e){\n $data['errors'] = $e->getMessage();\n }\n }\n\n $this->renderView('album', $data);\n }", "function get_album() // self album \n\t{\n\t\t$this->authentification->ajax_access();\n\t\t\n\t\t$username = $this->session->userdata(\"username\");\n\t\t \n\t\t$data['title'] = \"\";\n\t\t$data['username'] = $username;\n\t\t$data['album'] = $this->photo_mdl->album_photo($username);\n\t\t$data['photo'] = $this->photo_mdl->select_last_photo($username);\n\t\t$data['tml'] = $this->photo_mdl->select_last_phototml($username);\n\t\t\t\n\t\t$this->load->view(\"list-photo/list-album\",$data);\n\t}", "public function get(AlbumIDRequest $request)\n\t{\n\t\t$return = [];\n\t\t$return['albums'] = [];\n\t\t// Get photos\n\t\t// change this for smartalbum\n\t\t$album = $this->getAlbum($request['albumID']);\n\n\t\tif ($album->smart) {\n\t\t\t$publicAlbums = $this->albumsFunctions->getPublicAlbumsId();\n\t\t\t$album->setAlbumIDs($publicAlbums);\n\t\t\t$return = AlbumCast::toArray($album);\n\t\t} else {\n\t\t\t// take care of sub albums\n\t\t\t$children = $this->albumFunctions->get_children($album, 0, true);\n\n\t\t\t$return = AlbumCast::toArrayWith($album, $children);\n\t\t\t$return['owner'] = $album->owner->get_username();\n\n\t\t\t$thumbs = $this->albumFunctions->get_thumbs($album, $children);\n\t\t\t$this->albumFunctions->set_thumbs_children($return['albums'], $thumbs[1]);\n\t\t}\n\n\t\t// take care of photos\n\t\t$full_photo = $return['full_photo'] ?? Configs::get_value('full_photo', '1') === '1';\n\t\t$photos_query = $album->get_photos();\n\t\t$return['photos'] = $this->albumFunctions->photos($album, $photos_query, $full_photo, $album->get_license());\n\n\t\t$return['id'] = $request['albumID'];\n\t\t$return['num'] = strval(count($return['photos']));\n\n\t\t// finalize the loop\n\t\tif ($return['num'] === '0') {\n\t\t\t$return['photos'] = false;\n\t\t}\n\n\t\treturn $return;\n\t}", "public function show($id)\n {\n $album = Album::with('photos')->find($id);\n //$album = Album::find($id);\n return view('albums.show')->with('album',$album);\n }", "public function showAlbumsByGenre($idGenre){\n\n $albums = $this->model->getAlbumsByGenres($idGenre);\n\n //se la paso a la vista jeje\n $this->view->showAlbumsByGenre($albums);\n }", "public function showAlbums() {\n $this->layout->content = View::make('albums');\n $this->layout->bodyclass = \"home-page\";\n\n $albums = new AlbumsController();\n $this->layout->content->allAlbums = $albums->getAllAlbums();\n\n $this->layout->content->isAlbumCreator = $albums->isAlbumCreator();\n }", "public function show(Album $album)\n {\n // Skip this\n return redirect('albums');\n }", "public function show($id) {\n $album = Album::find($id);\n return view('albums.show')->with('album', $album);\n }", "function getgallery($id_album)\n\t{\n\t\t//query memanggil data\n\t\t$query = \"SELECT * FROM gallery where id_album='\".$id_album.\"'\";\n\t\t//memanggil semua data. Jika hanya memanggil 1 data ->fetch($query,0,0)\n\t\t$result = $this->fetch($query,1,0);\n\t\treturn $result;\n\t}", "public function listAction()\n {\n $albums = $this->repositoryService->get('album')->findByUser($this->requestedUser);\n $this->view->assign('albums', $albums);\n }" ]
[ "0.79836357", "0.73518497", "0.72780454", "0.7193807", "0.71628594", "0.71320873", "0.7085318", "0.6988869", "0.6945471", "0.69017", "0.6894558", "0.6809431", "0.67637455", "0.6729766", "0.6728389", "0.6692044", "0.66805416", "0.66625035", "0.6637804", "0.66205555", "0.66184473", "0.6573866", "0.65585226", "0.64912504", "0.6487738", "0.6452656", "0.6437971", "0.6415195", "0.64004934", "0.63538045" ]
0.7867445
1
The method foto() shows the picture selected by $picture_id, it only works if you are not using the lightbox plugin.
public function foto($picture_id = null) { if ($picture_id == null) show_404(); $this->load->model('album'); $this->load->model('foto'); $query_picture = $this->foto->get_by_id( $picture_id, null, null, 'id, album_id, filename, descricao, status' )->row(); $query_album = $this->album->get_by_id( $query_picture->album_id, null, null, 'id, titulo, descricao, capa, created, status' )->row(); if (count($query_picture) <= 0) show_404(); if ($query_picture->status == 0) show_error('Esta foto foi suspensa temporariamente', 404); $this->wpanel->set_meta_description($query_picture->descricao); $this->wpanel->set_meta_keywords('album, fotos'); $this->wpanel->set_meta_title($query_picture->descricao); if(file_exists('./media/albuns/'.$query_picture->album_id.'/'.$query_picture->filename)) $this->wpanel->set_meta_image(base_url('media/albuns/'.$query_picture->album_id.'/'.$query_picture->filename)); $this->data_content['album'] = $query_album; $this->data_content['picture'] = $query_picture; $this->render('foto'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function actionPicturePreview($picture_id){\n $db_picture = CropPictures::model()->findByPk($picture_id);\n $split_name = explode('.',$db_picture->Picturepath);\n $ftp_path = $split_name[0].'-thumbnail.'.$split_name[1];\n $picture_name = explode('/',$ftp_path);\n $picture_name = $picture_name[count($picture_name)-1];\n \n return \"<label for='preview_picture'>\".Yii::t('UserModule.dashboard', 'Picture Preview').\"</label>\"\n . \"<img id='preview-picture' src='assets/\".$picture_name.\"'/>\";\n }", "public function actionPicture($picture_id){\n $db_picture = CropPictures::model()->findByPk($picture_id);\n $split_name = explode('.',$db_picture->Picturepath);\n $ftp_path = $split_name[0].'-thumbnail.'.$split_name[1];\n $picture_name = explode('/',$ftp_path);\n $picture_name = $picture_name[count($picture_name)-1];\n \n return \"<img src='assets/\".$picture_name.\"'/>\";\n }", "public function show(Picture $picture)\n {\n }", "function showPicture($intPicId)\n {\n global $objDatabase, $_ARRAYLANG;\n\n $arrPictures = array();\n $intPicId = intval($intPicId);\n// Never used\n// $intCatId = intval($_GET['cid']);\n\n // we need to read the category id out of the database to prevent abusement\n $intCatId = $this->getCategoryId($intPicId);\n $categoryProtected = $this->categoryIsProtected($intCatId);\n if ($categoryProtected > 0) {\n if (!\\Permission::checkAccess($categoryProtected, 'dynamic', true)) {\n $link=base64_encode($_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING']);\n \\Cx\\Core\\Csrf\\Controller\\Csrf::header (\"Location: \".CONTREXX_DIRECTORY_INDEX.\"?section=Login&cmd=noaccess&redirect=\".$link);\n exit;\n }\n }\n\n // POPUP Code\n $objTpl = new \\Cx\\Core\\Html\\Sigma(ASCMS_MODULE_PATH.'/Gallery/View/Template/Backend');\n $objTpl->loadTemplateFile('module_gallery_show_picture.html',true,true);\n\n // get category description\n $objResult = $objDatabase->Execute(\n \"SELECT value FROM \".DBPREFIX.\"module_gallery_language \".\n \"WHERE gallery_id=$intCatId AND lang_id=$this->langId \".\n \"AND name='desc' LIMIT 1\");\n $strCategoryComment = '';\n if ($objResult && $objResult->RecordCount()) {\n $strCategoryComment = $objResult->fields['value'];\n }\n\n $objResult = $objDatabase->Execute(\n \"SELECT comment, voting \".\n \"FROM \".DBPREFIX.\"module_gallery_categories \".\n \"WHERE id=$intCatId\");\n $boolComment = '';\n $boolVoting = '';\n if ($objResult && $objResult->RecordCount()) {\n $boolComment = $objResult->fields['comment'];\n $boolVoting = $objResult->fields['voting'];\n }\n \n // get picture informations\n $objResult = $objDatabase->Execute(\n \"SELECT id, path, link, size_show \".\n \"FROM \".DBPREFIX.\"module_gallery_pictures \".\n \"WHERE id=$intPicId\");\n $objSubResult = $objDatabase->Execute(\n \"SELECT p.name, p.desc FROM \".DBPREFIX.\"module_gallery_language_pics p \".\n \"WHERE picture_id=$intPicId AND lang_id=$this->langId LIMIT 1\");\n while (!$objResult->EOF) {\n $imageReso = getimagesize($this->strImagePath.$objResult->fields['path']);\n $strImagePath = $this->strImageWebPath.$objResult->fields['path'];\n $imageName = $objSubResult->fields['name'];\n $imageDesc = $objSubResult->fields['desc'];\n //show image size based on the settings of \"Show image size\"\n $showImageSize = $this->arrSettings['show_image_size'] == 'on' && $objResult->fields['size_show'];\n $imageSize = ($showImageSize) ? round(filesize($this->strImagePath.$objResult->fields['path'])/1024,2) : '';\n $strImageWebPath = ASCMS_PROTOCOL .'://'.$_SERVER['SERVER_NAME'].CONTREXX_SCRIPT_PATH.'?section=Gallery'.$this->strCmd.'&amp;cid='.$intCatId.'&amp;pId='.$intPicId;\n $objResult->MoveNext();\n }\n \n // get pictures of the current category\n $objResult = $objDatabase->Execute(\n \"SELECT id FROM \".DBPREFIX.\"module_gallery_pictures \".\n \"WHERE status='1' AND validated='1' AND catid=$intCatId \".\n \"ORDER BY sorting, id\");\n if ($objResult && $objResult->RecordCount()) {\n while (!$objResult->EOF) {\n array_push($arrPictures,$objResult->fields['id']);\n $objResult->MoveNext();\n }\n }\n \n // get next picture id\n if (array_key_exists(array_search($intPicId,$arrPictures)+1,$arrPictures)) {\n $intPicIdNext = $arrPictures[array_search($intPicId,$arrPictures)+1];\n } else {\n $intPicIdNext = $arrPictures[0];\n }\n\n // get previous picture id\n if (array_key_exists(array_search($intPicId,$arrPictures)-1,$arrPictures)) {\n $intPicIdPrevious = $arrPictures[array_search($intPicId,$arrPictures)-1];\n } else {\n $intPicIdPrevious = end($arrPictures);\n }\n\n $strImageTitle = substr(strrchr($strImagePath, '/'), 1);\n // chop the file extension if the settings tell us to do so\n if ($this->arrSettings['show_ext'] == 'off') {\n $strImageTitle = substr($strImageTitle, 0, strrpos($strImageTitle, '.'));\n }\n\n // set language variables\n $objTpl->setVariable(array(\n 'TXT_CLOSE_WINDOW' => $_ARRAYLANG['TXT_CLOSE_WINDOW'],\n 'TXT_ZOOM_OUT' => $_ARRAYLANG['TXT_ZOOM_OUT'],\n 'TXT_ZOOM_IN' => $_ARRAYLANG['TXT_ZOOM_IN'],\n 'TXT_CHANGE_BG_COLOR' => $_ARRAYLANG['TXT_CHANGE_BG_COLOR'],\n 'TXT_PRINT' => $_ARRAYLANG['TXT_PRINT'],\n 'TXT_PREVIOUS_IMAGE' => $_ARRAYLANG['TXT_PREVIOUS_IMAGE'],\n 'TXT_NEXT_IMAGE' => $_ARRAYLANG['TXT_NEXT_IMAGE'],\n 'TXT_USER_DEFINED' => $_ARRAYLANG['TXT_USER_DEFINED']\n ));\n \n $imageSize = ($showImageSize) ? $_ARRAYLANG['TXT_FILESIZE'].': '.$imageSize.' kB<br />' : '';\n // set variables\n $objTpl->setVariable(array(\n 'CONTREXX_CHARSET' => CONTREXX_CHARSET,\n 'GALLERY_WINDOW_WIDTH' => $imageReso[0] < 420 ? 500 : $imageReso[0]+80,\n 'GALLERY_WINDOW_HEIGHT' => $imageReso[1]+120,\n 'GALLERY_PICTURE_ID' => $intPicId,\n 'GALLERY_CATEGORY_ID' => $intCatId,\n 'GALLERY_TITLE' => $strCategoryComment,\n 'IMAGE_THIS' => $strImagePath,\n 'IMAGE_PREVIOUS' => '?section=Gallery'.$this->strCmd.'&amp;cid='.$intCatId.'&amp;pId='.$intPicIdPrevious,\n 'IMAGE_NEXT' => '?section=Gallery'.$this->strCmd.'&amp;cid='.$intCatId.'&amp;pId='.$intPicIdNext,\n 'IMAGE_WIDTH' => $imageReso[0],\n 'IMAGE_HEIGHT' => $imageReso[1],\n 'IMAGE_LINK' => $strImageWebPath,\n 'IMAGE_NAME' => $strImageTitle, //$imageName,\n 'IMAGE_DESCRIPTION' => $_ARRAYLANG['TXT_IMAGE_NAME'].': '.$imageName.'<br />'\n . $imageSize\n . $_ARRAYLANG['TXT_RESOLUTION'].': '.$imageReso[0].'x'.$imageReso[1].' Pixel',\n 'IMAGE_DESC' => (!empty($imageDesc)) ? $imageDesc.'<br /><br />' : '',\n ));\n \n $objTpl->setGlobalVariable('CONTREXX_DIRECTORY_INDEX', CONTREXX_DIRECTORY_INDEX);\n\n //voting\n if ($objTpl->blockExists('votingTab')) {\n if ($this->arrSettings['show_voting'] == 'on' && $boolVoting) {\n $objTpl->setVariable(array(\n 'TXT_VOTING_TITLE' => $_ARRAYLANG['TXT_VOTING_TITLE'],\n 'TXT_VOTING_STATS_ACTUAL' => $_ARRAYLANG['TXT_VOTING_STATS_ACTUAL'],\n 'TXT_VOTING_STATS_WITH' => $_ARRAYLANG['TXT_VOTING_STATS_WITH'],\n 'TXT_VOTING_STATS_VOTES' => $_ARRAYLANG['TXT_VOTING_STATS_VOTES'],\n ));\n if (isset($_COOKIE[\"Gallery_Voting_$intPicId\"])) {\n $objTpl->hideBlock('showVotingBar');\n\n $objTpl->setVariable(array(\n 'TXT_VOTING_ALREADY_VOTED' => $_ARRAYLANG['TXT_VOTING_ALREADY_VOTED'],\n 'VOTING_ALREADY_VOTED_MARK' => intval($_COOKIE['Gallery_Voting_'.$intPicId])\n ));\n } else {\n $objTpl->setVariable(array(\n 'TXT_VOTING_ALREADY_VOTED' => '',\n 'VOTING_ALREADY_VOTED_MARK' => ''\n ));\n for ($i=1;$i<=10;$i++) {\n $objTpl->setVariable(array(\n 'VOTING_BAR_SRC' => ASCMS_MODULE_WEB_PATH.'/Gallery/View/Media/voting/'.$i.'.gif',\n 'VOTING_BAR_ALT' => $_ARRAYLANG['TXT_VOTING_RATE'].': '.$i,\n 'VOTING_BAR_MARK' => $i,\n 'VOTING_BAR_CID' => $intCatId,\n 'VOTING_BAR_PICID' => $intPicId\n ));\n $objTpl->parse('showVotingBar');\n }\n }\n\n $objResult = $objDatabase->Execute(\n \"SELECT mark FROM \".DBPREFIX.\"module_gallery_votes \".\n \"WHERE picid=$intPicId\");\n if ($objResult->RecordCount() > 0) {\n $intCount = 0;\n $intMark = 0;\n while (!$objResult->EOF) {\n $intCount++;\n $intMark = $intMark + intval($objResult->fields['mark']);\n $objResult->MoveNext();\n }\n $objTpl->setVariable(array(\n 'VOTING_STATS_MARK' => number_format(round($intMark / $intCount,1),1,'.','\\''),\n 'VOTING_STATS_VOTES' => $intCount\n ));\n } else {\n $objTpl->setVariable(array(\n 'VOTING_STATS_MARK' => 0,\n 'VOTING_STATS_VOTES' => 0\n ));\n }\n } else {\n $objTpl->hideBlock('votingTab');\n }\n }\n //comments\n if ($this->arrSettings['show_comments'] == 'on' && $boolComment) {\n $objResult = $objDatabase->Execute(\n \"SELECT date, name, email, www, comment FROM \".DBPREFIX.\"module_gallery_comments \".\n \"WHERE picid=$intPicId ORDER BY date ASC\");\n\n $objTpl->setVariable(array(\n 'TXT_COMMENTS_TITLE' => $objResult->RecordCount().'&nbsp;'.$_ARRAYLANG['TXT_COMMENTS_TITLE'],\n 'TXT_COMMENTS_ADD_TITLE' => $_ARRAYLANG['TXT_COMMENTS_ADD_TITLE'],\n 'TXT_COMMENTS_ADD_NAME' => $_ARRAYLANG['TXT_COMMENTS_ADD_NAME'],\n 'TXT_COMMENTS_ADD_EMAIL' => $_ARRAYLANG['TXT_COMMENTS_ADD_EMAIL'],\n 'TXT_COMMENTS_ADD_HOMEPAGE' => $_ARRAYLANG['TXT_COMMENTS_ADD_HOMEPAGE'],\n 'TXT_COMMENTS_ADD_TEXT' => $_ARRAYLANG['TXT_COMMENTS_ADD_TEXT'],\n 'TXT_COMMENTS_ADD_SUBMIT' => $_ARRAYLANG['TXT_COMMENTS_ADD_SUBMIT'],\n ));\n\n if ($objResult->RecordCount() == 0) { // no comments, hide the block\n $objTpl->hideBlock('showComments');\n } else {\n $i=0;\n while (!$objResult->EOF) {\n if ($i % 2 == 0) {\n $intRowClass = '1';\n } else {\n $intRowClass = '2';\n }\n\n if ($objResult->fields['www'] != '') {\n $strWWW = '<a href=\"'.$objResult->fields['www'].'\"><img alt=\"'.$objResult->fields['www'].'\" src=\"'.ASCMS_MODULE_WEB_PATH.'/Gallery/View/Media/www.gif\" align=\"baseline\" border=\"0\" /></a>';\n } else {\n $strWWW = '<img src=\"'.ASCMS_MODULE_WEB_PATH.'/Gallery/View/Media/pixel.gif\" width=\"16\" height=\"16\" alt=\"\" align=\"baseline\" border=\"0\" />';\n }\n if ($objResult->fields['email'] != '') {\n $strEmail = '<a href=\"mailto:'.$objResult->fields['email'].'\"><img alt=\"'.$objResult->fields['email'].'\" src=\"'.ASCMS_MODULE_WEB_PATH.'/Gallery/View/Media/email.gif\" align=\"baseline\" border=\"0\" /></a>';\n } else {\n $strEmail = '<img src=\"'.ASCMS_MODULE_WEB_PATH.'/Gallery/View/Media/pixel.gif\" width=\"16\" height=\"16\" alt=\"\" align=\"baseline\" border=\"0\" />';\n }\n $objTpl->setVariable(array(\n 'COMMENTS_NAME' => html_entity_decode($objResult->fields['name']),\n 'COMMENTS_DATE' => date($_ARRAYLANG['TXT_COMMENTS_DATEFORMAT'],$objResult->fields['date']),\n 'COMMENTS_WWW' => $strWWW,\n 'COMMENTS_EMAIL' => $strEmail,\n 'COMMENTS_TEXT' => nl2br($objResult->fields['comment']),\n 'COMMENTS_ROWCLASS' => $intRowClass\n ));\n\n $objTpl->parse('showComments');\n $objResult->MoveNext();\n $i++;\n }\n }\n } else {\n $objTpl->hideBlock('commentTab');\n }\n $objTpl->show();\n die;\n }", "public function view($id = null){\n $this->Photo->id = $id;\n if (!$this->Photo->exists()) {\n $this->invalidParameter();\n }\n\n $foto = $this->Photo->read(null, $id);\n\n $this->set('actions', $this->getAuthorizedActions());\n $this->set('isOwner', $this->Photo->isOwnedBy(\n $this->Photo->id, $this->Auth->user('id')\n ));\n\n $neighbors = $this->Photo->find('neighbors', array(\n 'field' => 'id',\n 'value' => $this->Photo->id,\n 'galleries_id' => $foto['Photo']['galleries_id']\n ));\n\n $this->set('vecinos', $neighbors);\n $this->set('id', $this->Photo->id);\n $this->set('foto', $foto);\n }", "function showpics($id)\t{\r\n\t\t$mysqli = connect(); //opens connection to database\r\n\t\t\r\n\t\t$sql = \"SELECT * FROM pictures WHERE userID = '$id' ORDER BY pictureID DESC\";\r\n\t\t\r\n\t\tif($stmt = $mysqli->prepare($sql))\t{\r\n\t\t\t$stmt->execute();\r\n\t\t\t$stmt->bind_result($pid, $userID, $pic);\r\n\t\t\t\r\n\t\t\t//the output is displayed in a form format\r\n\t\t\techo \"\r\n\t\t\t\t<form method='post' action='change_pic.php'>\r\n\t\t\t\t\t<table>\r\n\t\t\t\";\r\n\t\t\t\r\n\t\t\twhile($stmt->fetch())\t{\r\n\t\t\t\t$pName = $pic;\r\n\t\t\t\t\r\n\t\t\t\techo \"\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t<td><img src='userpics/\".$pName.\"' width='100px' height='100px' name = 'selected_picture'/></td>\r\n\t\t\t\t\t\t\t<td><input type='hidden' value='$pName' name='selected_picture' /></td>\r\n\t\t\t\t\t\t\t<td><input type='submit' value='select for profile' /></td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t\t\t\";\r\n\t\t\t}\r\n\t\t}\r\n\t\techo \"\r\n\t\t\t\t</table>\r\n\t\t\t</form>\r\n\t\t\";\r\n\t\t\r\n $stmt->close(); //closing prepared statement\r\n\t\t\r\n\t\t$mysqli->close(); //Closing connection to database\r\n\t}", "public function show(foto $foto)\n {\n //\n }", "public function displayPhoto( $id, $type = 'thumb.profile' ) \n {\n if (empty($id)) {\n return null;\n }\n $file = Engine_Api::_()->getItemTable('storage_file')->getFile($id, $type);\n if (!$file) {\n return null;\n }\n\n // Get url of the image\n $src = $file->map();\n return $src;\n }", "public function show($id)\n {\n $pic= Picture::find($id);\n return view('uploads.show')->withPicture($pic);\n }", "private static function render_picture( $picture) { ?>\n <Picture>\n <PictureUrl><?php echo esc_html( wp_get_attachment_url( $picture->id ) ); ?></PictureUrl>\n <Caption><?php echo esc_html(get_the_title( $picture->id ) ); ?></Caption>\n </Picture>\n <?php }", "public function pilih_foto()\n\t{\n\t\t$data['foto_dosen']=$this->Awal->ambil_foto($this->uri->segment(4));\n\t \t$this->load->view('mahasiswa/pilih_foto',$data);\t\n\t}", "public function show($id)\n {\n $picture = Picture::find($id);\n return view('pictures.showpicture')->with('users', $picture);\n }", "public function viewPictures($id,$link,$caption=null) {\n\t\t/**\n\t\t * TODO Apply the logic that you consider to display icons since there are not fields\n\t\t * available in apartment or unit to say , this app or unit belong to\n\t\t */\n\t\t$strlink = $this->display(array('link'=>$link,'caption'=>$caption,'image'=>'/images/24/camera_48.gif'));\n\t\treturn $strlink;\n\t}", "public function photoPreview($searchID=0, $phid=0, $uid=0, $filename='', $name='', $created=0,$aid=0)\n\t{\n\n\n\t\tif($searchID>0){\n\t\t\tglobal $db;\n\t\t\t$q=$db->query(\"SELECT * FROM `photos` WHERE `phid`='\".intval($searchID).\"' \");\n\t\t\tif($db->num_rows($q)>0){\n\t\t\t\twhile($a=$db->fetch_array($q)){\n\t\t\t\t\t$phid=$a['phid'];\n\t\t\t\t\t$uid=$a['uid'];\n\t\t\t\t\t$aid=$a['aid'];\n\t\t\t\t\t$filename=$a['filename'];\n\t\t\t\t\t$name=$a['name'];\n\t\t\t\t\t$created=$a['created'];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t$result='\n\t\t\t<div class=\"p-photos-block\">\n\t\t\t\t<a href=\"/photo/'.$phid.'/\" class=\"aimgi\">\n\t\t\t\t\t<img src=\"/photos/'.$uid.'/t_'.$filename.'\" alt=\"'.$name.'\"/>\n\t\t\t\t</a>\n\t\t\t\t<div class=\"p-photos-inf\">\n\t\t\t\t\t<strong class=\"p-photos-name\">'.$name.'</strong>\n\t\t\t\t\t<strong class=\"p-photos-author\">by Author (<a href=\"/album/'.$aid.'/\" >link</a>)</strong>\n\t\t\t\t\t<em class=\"p-photos-date\">'.date('Y/m/d', $created).'</em>\n\t\t\t\t</div>\n\t\t\t</div>';\n\n\t\treturn $result;\n\n\t}", "public function show($id)\n {\n echo 'show trong Controllerphoto '.$id;\n //\n }", "public function show($idImagen = null){\n\n $imagen = new ImagenModel();\n var_dump($imagen->getImage($idImagen));\n }", "public function show_pictures()\n {\n display_template('show-image-gallery.php');\n }", "function profile_image_display($size, $img_id)\n{\n if (!empty($img_id)) {\n echo wp_get_attachment_image($img_id, $size);\n }\n}", "function show_image()\n\t{\n\t\tglobal $photo_image_size;\n\n\t\tif($this->value != \"\")\n\t\t{\n\t\t\tif(!empty($photo_image_size))\n\t\t\t\t$size = \"&size=\"\n\t\t\t\t\t. $photo_image_size;\n\t\t\telse\n\t\t\t\t$size=\"\";\n\n\t\t\t$server_id = $this->ldap_server->server_id == 0\n\t\t\t\t? \"\" : \"&server_id=\" . $this->ldap_server->server_id;\n\n\t\t\techo \"<img src=\\\"image.php?dn=\"\n\t\t\t\t. urlencode($this->ldap_entry[\"dn\"])\n\t\t\t\t. \"&attrib=\" . $this->attribute . $size . $server_id\n\t\t\t\t. \"\\\" title=\\\"\" . $this->display_name . \"\\\">\\n\";\n\t\t}\n\n\t\tif($this->edit)\n\t\t{\n\t\t\t// Don't show \"Clear Image\" button if attribute is mandatory\n\t\t\tif($this->value == \"\" || $this->required)\n\t\t\t\techo \" <input type=\\\"hidden\\\" name=\\\"ldap_attribute_\"\n\t\t\t\t\t. $this->attribute . \"\\\" value=\\\"\\\">\";\n\t\t\telse\n\t\t\t\techo \" <br>\\n <input type=\\\"checkbox\\\" name=\\\"ldap_attribute_\"\n\t\t\t\t\t. $this->attribute . \"\\\">\" . gettext(\"Clear Image\") . \"<br>\\n\";\n\n\t\t\tif($this->required)\n\t\t\t\t$style = \"border-color:red;border-style:solid\";\n\t\t\telse\n\t\t\t\t$style = \"\";\n\n\t\t\techo \" <input style=\\\"\" . $style . \"\\\" type=\\\"file\\\" name=\\\"ldap_attribute_\"\n\t\t\t\t. $this->attribute . \"_file\\\" title=\\\"\" . $this->display_name\n\t\t\t\t. \"\\\" accept=\\\".jpg,.jpeg,.png,.gd2,.wbmp\\\">\";\n\t\t}\n\t}", "public function fotoUpload()\n\t{\n\t\t$this->display(\n\t\t\tarray(\n\t\t\t\t'seccion' => $this->seccion\n\t\t\t)\n\t\t);\n\t}", "public function showImage($id)\n\t{\n\t\tif($id) {\n\t\t\t$sql = \"SELECT image from rewardimages where reward_id = $id AND defaultimage='1'\";\t\n \t\t$list = Yii::app()->db->createCommand($sql)->queryRow();\n\t \t\t//return $list['name'];\n\t \t\t//$filepath = 'IMG_2510.JPG';\n\t \t\t$filepath = $list['image'];\n\t\t //$img=CHtml::image(Yii::app()->baseUrl.\"/images/reward/$id/\".$filepath);\n\t\t $setImage = Yii::app()->baseUrl.\"/images/reward/\".$id.\"/\".$filepath;\n\t\t if($filepath!='') {\n\t\t \t\t$img = '<img src=\"'.$setImage.'\" width=\"150px\" />';\n\t\t\t}else{\n\t\t\t\t$setImage = 'IMG_2510.JPG';\n\t\t\t\t$img = '<img src=\"'.$setImage.'\" width=\"150px\" />';\n\t\t\t}\n\t\t}\n\treturn $img;\n\t}", "public function show(FotoBarang $fotoBarang)\n {\n //\n }", "public function fbPhoto($fbid,$type=\"large\"){\n \n return \"\".SERVER_URL.\"system_files/modules/resizer/imgresize?src=https://graph.facebook.com/\".$fbid.\"/picture?type=\".$type.\"&w=250&h=250&zc=1&a=t\";\n}", "function picture($id = null) {\n\t\tif (!empty($this->params['named']['small'])) {\n\t\t\t$this->layout = 'tooltip'; \n\t\t}\n\t\t$this->set('person', $this->Person->read(null, $id));\n\t}", "public function actionPictureInformation($picture_id) {\n $picture = CropPictures::model()->findByPk($picture_id);\n $img_picture = '';\n $unknown = 'Unknown';\n $picture_date = $unknown;\n $latitude = $unknown;\n $longitude = $unknown;\n $user = $unknown;\n $device = $unknown;\n $crop = $unknown;\n $humidity = $unknown;\n $temperature = $unknown;\n $lw = $unknown;\n $rain = $unknown;\n \n if($picture != NULL){\n $img_picture = $this->actionPicturePreview($picture_id);\n $picture_date = $picture->PictureDate;\n $latitude = $picture->Latitude;\n $longitude = $picture->Longitude;\n $user = $picture->User;\n $device = $picture->Device;\n $crop = $picture->CropName;\n if($picture->Humidity != NULL){\n $humidity = $picture->Humidity.' %';\n }\n if($picture->Temperature != NULL){\n $temperature = $picture->Temperature.' °C';\n }\n if($picture->LW != NULL){\n $lw = $picture->LW;\n }\n if($picture->Rain != NULL){\n $rain = $picture->Rain;\n }\n }\n echo CJSON::encode(array('img_picture' => $img_picture, 'date' => $picture_date,\n 'latitude' => $latitude, 'longitude' => $longitude, 'user'=>$user, 'device'=>$device,\n 'temperature'=>$temperature,'humidity'=>$humidity,'rain'=>$rain, 'lw'=>$lw, 'crop'=>$crop)); \n\n }", "public function correspondingImageAction(){\r\n\t\t$album_id = $this->_getParam('album_id', false);\r\n\t\t$this->view->paginator = $paginator = Engine_Api::_()->getDbtable('photos', 'sesalbum')->getPhotoSelect(array('album_id'=>$album_id,'limit_data'=>100));\r\n\t}", "function bb_foto($arguments = array()) {\n\t\t$url = urldecode($this->parseArray(array('[/foto]'), array()));\n\t\t$parts = explode('/', $url);\n\t\t$filename = str_replace('#', '', array_pop($parts)); // replace # (foolproof)\n\t\t$path = PHOTOALBUM_PATH . 'fotoalbum' . implode('/', $parts);\n\t\t$album = FotoAlbumModel::instance()->getFotoAlbum($path);\n\t\tif (!$album) {\n\t\t\treturn '<div class=\"bb-block\">Fotoalbum niet gevonden: ' . htmlspecialchars($url) . '</div>';\n\t\t}\n\t\t$foto = new Foto($filename, $album);\n\t\tif (!$foto) {\n\t\t\treturn '';\n\t\t}\n\t\tif ($this->light_mode) {\n\t\t\t$link = $foto->getAlbumUrl() . '#' . $foto->getResizedUrl();\n\t\t\t$thumb = CSR_ROOT . $foto->getThumbUrl();\n\t\t\treturn $this->lightLinkThumbnail('foto', $link, $thumb);\n\t\t}\n\t\t$groot = in_array('Posters', $parts);\n\t\t$responsive = isset($arguments['responsive']);\n\t\t$fototag = new FotoBBView($foto, $groot, $responsive);\n\t\treturn $fototag->getHtml();\n\t}", "function getImage($id)\r\n\t{\r\n\t\t\r\n\t\tglobal $mysqli, $db_table_prefix; \r\n\t\t$stmt = $mysqli->prepare(\"SELECT image FROM \".$db_table_prefix.\"images WHERE id=?\");\r\n\t\t\t\r\n\t\t$stmt->bind_param(\"i\",$id);\r\n\t\t$stmt->execute();\r\n\t\t$stmt->store_result();\r\n\t\t$stmt->bind_result($showimage);\r\n\t\t$stmt->fetch();\r\n\t\tif(!isset($showimage))\r\n\t\t{\r\n\t\t\techo \"Please select an image.\";\r\n\t\t}\r\n\t\telse{\r\n\t\t\techo '<img src=\"data:image/jpeg;base64,'.base64_encode($showimage).'\"/>';\t\r\n\t\t}\r\n\t\t//header(\"Content-Type: image/jpeg\");\r\n\t\r\n\t\t$stmt->close();\t\r\n\t\t\r\n\t}", "public function show($id)\n {\n $user_id = Auth::user()->id;\n $photo = Photo::where('id', $id)->where('user_id', $user_id)->get();\n return view('REST.photos.show', ['photo' => $photo]);\n }", "public function edit($id)\n {\n $pic = DB::table('picture_gallery')->where('id', $id)->first();\n\n return view('admin.history.picture_gallery.edit')\n ->with('pic', $pic);\n }" ]
[ "0.7390552", "0.7313906", "0.67992395", "0.6473961", "0.64708215", "0.6468588", "0.64673024", "0.64257866", "0.6358238", "0.6334466", "0.6330345", "0.6305667", "0.6294371", "0.62679726", "0.6259405", "0.6190295", "0.6098156", "0.6067166", "0.6040318", "0.6035211", "0.6022279", "0.6002314", "0.59972537", "0.5993892", "0.59905654", "0.59778196", "0.59474176", "0.59276104", "0.5906283", "0.5893707" ]
0.7908542
0
The method videos() shows a list of videos from youtube. The videos is not loaded automaticaly from the channel, it must be inserted into the control panel by the manager.
public function videos() { $this->load->model('video'); $query_videos = $this->video->get_by_field( 'status', 1, array('field' => 'created', 'order' => 'desc'), null, 'link, titulo' )->result(); $this->wpanel->set_meta_description('Lista de vídeos'); $this->wpanel->set_meta_keywords('videos, filmes'); $this->wpanel->set_meta_title('Vídeos'); $this->data_content['videos'] = $query_videos; $this->data_content['max_cols'] = $this->wpn_cols_mosaic; $this->render('videos'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getVideos();", "public function videos();", "public function getVideos()\n {\n return $this->videos;\n }", "public function getVideos() {\n\t\treturn $this->whereRaw('is_deleted = ? and type = ?', array(0, Config::get('config.media_type.video')))->orderBy('updated_at', 'desc')->get();\n\t}", "public function getVideos()\n {\n $ret = array();\n try {\n $searchResponse = $this->youtube->playlistItems->listPlaylistItems('id,snippet',$this->getParams());\n // die(print_r($searchResponse));\n foreach ($searchResponse['items'] as $result) {\n $ret[] = array('id' => $result['snippet']['resourceId']['videoId']\n , 'title' => $result['snippet']['title']);\n }\n } catch (Google_ServiceException $e) {\n throw $e;\n } catch (Google_Exception $e) {\n throw $e;\n }\n return $ret;\n }", "static function nev_get_videos(){\n\t\t\tif (!is_user_logged_in()){\n header(\"HTTP/1.0 403 Security Check.\");\n exit;\n\t\t\t}\n\t\t\t$videos = nev_core::get_submitted_videos();\n\t\t\techo json_encode( array('videos' => $videos));\n\t\t\texit;\n\t\t}", "public function videos() {\n if(!is_null($this->videos)) return $this->videos;\n return $this->filterBy('type', 'video');\n }", "public function show_channel_videos($count = 50){\r\n\t\tif(empty($count)) $count = 50;\r\n\t\t//call the API and decode the response\r\n\t\t$url = 'https://www.googleapis.com/youtube/v3/search?part=snippet&channelId='.$this->channel_id.'&maxResults='.$count.'&key='.$this->api_key.'&order=date';\r\n\r\n\t\t$transient_name = 'revslider_' . md5($url);\r\n\t\tif($this->transient_sec > 0 && false !== ($data = get_transient($transient_name)))\r\n\t\t\treturn ($data);\r\n\r\n\t\t$rsp = json_decode(wp_remote_fopen($url));\r\n\r\n\t\tif(!isset($rsp->items)) return array();\r\n\r\n\t\tset_transient($transient_name, $rsp->items, $this->transient_sec);\r\n\r\n\t\treturn $rsp->items;\r\n\t}", "public function withVideos(): static\n {\n return $this->addExtensionsFromPresets(static::PRESET_MEDIA_VIDEO);\n }", "public function getrelatedvideos()\n\t{\n\t\t$db = $this->getDBO();\n\t\t$query = $db->getQuery(true);\n\t\t$limitrow = $this->getrelatedvideosrowcol();\n\t\t$rows = '';\n\t\t$videoid = $category = $video = '';\n\n\t\t// CODE FOR SEO OPTION OR NOT - START\n\t\t$video = JRequest::getVar('video');\n\t\t$id = JRequest::getInt('id');\n\t\t$flagVideo = is_numeric($video);\n\n\t\tif (isset($video) && $video != \"\")\n\t\t{\n\t\t\tif ($flagVideo != 1)\n\t\t\t{\n\t\t\t\t// Joomla router replaced to : from - in query string\n\t\t\t\t$videoTitle = JRequest::getString('video');\n\t\t\t\t$videoid = str_replace(':', '-', $videoTitle);\n\n\t\t\t\tif ($videoid != \"\")\n\t\t\t\t{\n\t\t\t\t\tif (!version_compare(JVERSION, '3.0.0', 'ge'))\n\t\t\t\t\t{\n\t\t\t\t\t\t$videoid = $db->getEscaped($videoid);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t$query->select('playlistid')\n\t\t\t\t\t\t->from('#__hdflv_upload')\n\t\t\t\t\t\t->where($db->quoteName('seotitle') . ' = ' . $db->quote($videoid));\n\n\t\t\t\t$db->setQuery($query);\n\t\t\t\t$video = $db->loadResult();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$videoid = JRequest::getInt('video');\n\t\t\t\t$query->select('playlistid')\n\t\t\t\t\t\t->from('#__hdflv_upload')\n\t\t\t\t\t\t->where($db->quoteName('id') . ' = ' . $db->quote($videoid));\n\t\t\t\t$db->setQuery($query);\n\t\t\t\t$video = $db->loadResult();\n\t\t\t}\n\t\t}\n\t\telseif (isset($id) && $id != '')\n\t\t{\n\t\t\t$videoid = JRequest::getInt('id');\n\t\t\t$query->select('playlistid')\n\t\t\t\t\t->from('#__hdflv_upload')\n\t\t\t\t\t->where($db->quoteName('id') . ' = ' . $db->quote($videoid));\n\t\t\t$db->setQuery($query);\n\t\t\t$video = $db->loadResult();\n\t\t}\n\n\t\tif (!isset($video) && $video == '')\n\t\t{\n\t\t\t$video = 0;\n\t\t}\n\n\t\tif (!isset($videoid) && $videoid == '')\n\t\t{\n\t\t\t$videoid = 0;\n\t\t}\n\n\t\t// Query for getting the pagination values for related video page\n\t\t$query->clear()\n\t\t\t\t->select(array('COUNT(a.id)'))\n\t\t\t\t->from('#__hdflv_upload AS a')\n\t\t\t\t->leftJoin('#__hdflv_video_category AS e ON e.vid=a.id')\n\t\t\t\t->leftJoin('#__hdflv_category AS b ON e.catid=b.id')\n\t\t\t\t->where($db->quoteName('a.published') . ' = ' . $db->quote('1'))\n\t\t\t\t->where($db->quoteName('b.published') . ' = ' . $db->quote('1'))\n\t\t\t\t->where($db->quoteName('a.playlistid') . ' = ' . $db->quote($video));\n\t\t$db->setQuery($query);\n\t\t$total = $db->loadResult();\n\t\t$pageno = 1;\n\n\t\tif (JRequest::getVar('page', '', 'post', 'int'))\n\t\t{\n\t\t\t$pageno = JRequest::getVar('page', '', 'post', 'int');\n\t\t}\n\n\t\t$thumbview = unserialize($limitrow[0]->thumbview);\n\t\t$length = $thumbview['relatedrow'] * $thumbview['relatedcol'];\n\t\t$pages = ceil($total / $length);\n\n\t\tif ($pageno == 1)\n\t\t{\n\t\t\t$start = 0;\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$start = ($pageno - 1) * $length;\n\t\t}\n\n\t\tif (isset($videoid) && (isset($video)) && !empty($video))\n\t\t{\n\t\t\t$query->clear()\n\t\t\t\t\t->select(\n\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t$db->quoteName('a.id'), $db->quoteName('a.filepath'), $db->quoteName('a.thumburl'),\n\t\t\t\t\t\t\t\t$db->quoteName('a.title'), $db->quoteName('a.description'),\n\t\t\t\t\t\t\t\t$db->quoteName('a.times_viewed'), $db->quoteName('a.ratecount'),\n\t\t\t\t\t\t\t\t$db->quoteName('a.rate'), $db->quoteName('a.amazons3'), $db->quoteName('a.seotitle'),\n\t\t\t\t\t\t\t\t$db->quoteName('b.id') . ' AS catid', $db->quoteName('b.category'),\n\t\t\t\t\t\t\t\t$db->quoteName('b.seo_category'), $db->quoteName('e.catid'), $db->quoteName('e.vid')\n\t\t\t\t\t\t\t)\n\t\t\t\t\t)\n\t\t\t\t\t->from('#__hdflv_upload AS a')\n\t\t\t\t\t->leftJoin('#__hdflv_video_category AS e ON e.vid=a.id')\n\t\t\t\t\t->leftJoin('#__hdflv_category AS b ON e.catid=b.id')\n\t\t\t\t\t->where($db->quoteName('a.published') . ' = ' . $db->quote('1'))\n\t\t\t\t\t->where($db->quoteName('b.published') . ' = ' . $db->quote('1'))\n\t\t\t\t\t->where($db->quoteName('a.playlistid') . ' = ' . $db->quote($video))\n\t\t\t\t\t->group($db->escape('a.id'))\n\t\t\t\t\t->order('rand()');\n\t\t\t$db->setQuery($query, $start, $length);\n\t\t\t$rows = $db->loadObjectList();\n\t\t}\n\n\t\tif (count($rows) > 0)\n\t\t{\n\t\t\t$rows['pageno'] = $pageno;\n\t\t\t$rows['pages'] = $pages;\n\t\t\t$rows['start'] = $start;\n\t\t\t$rows['length'] = $length;\n\t\t}\n\n\t\treturn $rows;\n\t}", "public function index()\n {\n $videos = $this->video->getInstance()->all();\n return view('admin.videos.index',compact('videos'));\n \n }", "public function index()\n {\n $videos = App\\Video::latest()->get();\n return view('dashboard.video.videoList', compact('videos'));\n }", "function videosListById($youtube, $part, $id) {\n $response = $youtube->videos->listVideos(\n $part,\n array(\n 'id' => $id\n )\n );\n\n printResults($response);\n}", "public function listvideowebex(){\n\t\t//pr($this->admin[idUser]);\n\t\t$data=$this->models->getvideowebex();\n\t\tif ($data){\t\n\t\t\t$this->view->assign('data',$data);\n\t\t}\n\t\treturn $this->loadView('webex/listvideowebex');\n\t}", "public function videos ()\n {\n\n $videos = $this->video->videos();\n\n // Create a custom array as response\n $response = [\n \"status\" => \"success\",\n \"code\" => 200,\n \"message\" => \"Ok\",\n \"data\" => $videos\n ];\n\n // return the custom in JSON format\n return response()->json($response);\n\n }", "public function index()\n {\n $videoList = Videos::getAllVideosAdmin();\n return view('admin.videos.list', ['videoList' => $videoList]);\n }", "public function videoList()\n {\n $id = intval($_GET['id']);\n $this->assign('cssFile', 'video');\n $this->assign('cssFile', 'add');\n $cate = M('article_category')->where(array('channel'=>'2', 'type'=>'1'))->findAll();\n \n foreach($cate as $c) {\n if($c['parent']==NULL) $realCate[$c['id']] = $c;\n else $realCate[$c['parent']]['children'][] = $c;\n $cate_id[] = $c['id'];\n }\n\n $this->assign('categories', $realCate);\n $map['category_id'] = $id ? $id : array('in', implode(',', $cate_id));\n $articles = M('article')->where($map)->findAll();\n $this->assign('articles', $articles);\n \n $hotArticles = D('Article')->getAppendArticles('click');\n $this->assign('hotArticles', $hotArticles);\n //foreach($hotArticles as $a) echo $a['title'];//$a['title']=substr($a['title'],0,10).\"...\";\t\t\n $lastArticles = D('Article')->getAppendArticles('create_time');\n $this->assign('lastArticles', $lastArticles);\n \n $video = D('Article')->getAppendVideo('create_time');\n $this->assign('video', $video);\n \n $this->show_banner();//banner 滚动图片列表\n $this->display('vlist');\n /*$id = intval($_GET['id']);\n $videos = M('video')->where(array('category_id'=>$id))->findAll();\n //print_r($videos);\n $cate = M('article_category')->where(array('channel'=>'2', 'type'=>'2'))->findAll();\n foreach($cate as $c) {\n if($c['parent']==NULL) $realCate[$c['id']] = $c;\n else $realCate[$c['parent']]['children'][] = $c;\n $cate_id[] = $c['id'];\n }\n $this->assign('videos', $videos);\n $this->assign('categories', $realCate);\n print_r( $realCate);\n $this->assign('cssFile', 'video');\n $this->assign('cssFile', 'add');\n $this->display('vlist');*/\n }", "public function AllLiveVideos()\n {\n $fetch['all_live_videos'] = FrontVideoRepository::getAllLiveVideos();\n if (array_filter($fetch)) {\n return Controller::getSuccessJsonResponse(['message' => trans('video::videos.fetch.success'), 'response' => $fetch]);\n } else {\n return Controller::getErrorJsonResponse([], trans('video::videos.fetch.error'));\n }\n }", "public function fetchAllVideos ()\n\t{\n\t\t$videoUrlArray = $this->fetchAllVideoPageSets(true);\n\t\t\n\t\t$videos = '{' .\"\\n\". ' \"fiveSecondVideos\" : { ' .\"\\n\". '\"videos\": [' . \"\\n\";\n\t\t\n\t\tfor ($i = 0; $i < count($videoUrlArray); $i++)\n\t\t{\n\t\t\t$videos .= $this->fetchVideoData($videoUrlArray[$i]);\n\t\t\t\n\t\t\tif ($i == (count($videoUrlArray) - 1))\n\t\t\t{\n\t\t\t\t$videos .= \"\\n\";\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$videos .= \",\\n\";\n\t\t\t}\n\t\t}\n\t\t\n\t\t$videos .= \"]}}\";\n\t\t\n\t\treturn $videos;\n\t}", "protected function _getElements() {\n return $this->_paginate(\"/channels/$this->id/videos\");\n }", "function display_playlist_videos($criteria='') {\n\t\t$playlist = $criteria['playlist'];\n\t\t$page_number = $criteria['page_number'];\n\t\t$nb_display = $criteria['nb_display'];\n\t\t\t\n\t\t$startIndex = ($page_number*$nb_display)-$nb_display+1;\n\t\t$preview = $GLOBALS['youtube_wpress']['youtube_settings']['preview'];\n\t\t$nb_display_preview = $GLOBALS['youtube_wpress']['youtube_settings']['nb_display_preview'];\n\t\t\n\t\t//Display results\n\t\tif(is_singular()) {\n\t\t\t$criteria2['id'] = $playlist;\n\t\t\t$criteria2['start-index'] = $startIndex;\n\t\t\t$criteria2['max-results'] = $nb_display;\n\t\t\t$criteria2['youtube_api_key'] = $GLOBALS['youtube_wpress']['youtube_settings']['youtube_api_key'];\n\t\t\t$v1 = new Youtube_class();\n\t\t\t$url = $v1->getPlaylistUrl($criteria2);\n\t\t\t$videosData = $v1->returnYoutubeVideosDatasByURL($url, array('playlist'=>1));\n\t\t\t$fd1 = new Vbox_display_class();\n\t\t\t$d = $fd1->displayVideosListFacebookLikeByVideosDatas($videosData, array('pageNumber'=>$page_number, 'nb_display'=>$nb_display));\n\t\t}\n\t\telse if($preview==1) {\n\t\t\t$criteria2['id'] = $playlist;\n\t\t\t$criteria2['start-index'] = $startIndex;\n\t\t\t$criteria2['max-results'] = $nb_display_preview;\n\t\t\t$criteria2['youtube_api_key'] = $GLOBALS['youtube_wpress']['youtube_settings']['youtube_api_key'];\n\t\t\t$v1 = new Youtube_class();\n\t\t\t$url = $v1->getPlaylistUrl($criteria2);\n\t\t\t$videosData = $v1->returnYoutubeVideosDatasByURL($url, array('playlist'=>1));\n\t\t\t\n\t\t\t$d = self::display_preview_videos($videosData);\n\t\t}\n\t\t\n\t\treturn $d;\n\t}", "public function swfAction()\n {\n $youtube = new Zend_Gdata_YouTube();\n \n try {\n $lists = $youtube->getUserUploads(self::$_uname);\n }\n catch (Exception $ex) {\n echo $ex->getMessage();\n exit;\n }\n \n \n // masih ngawur, masih belum selesai, klo dibikin gini cuma keluar 1 video :p\n // ntar aja dilanjut, ngantukkkkkkkkkkkkkkkkk\n foreach($lists as $vids) {\n $pub = new Zend_Date(\n $vids->getPublished()->getText(),\n Zend_Date::ISO_8601\n );\n \n // lempar ke view script\n $this->view->videoTitle = $this->view->escape($vids->getVideoTitle());\n $this->view->published = $pub;\n $this->view->videoTags = join(', ', $vids->getVideoTags());\n $this->view->desc = $this->view->escape($vids->getVideoDescription());\n \n if($vids->isVideoEmbeddable()) {\n $this->view->url = 'http://www.youtube.com/v/' . $vids->getVideoId(). '&fs=1';\n $this->view->width = 320;\n $height->view->height = 240;\n }\n }\n }", "public function getLatestVideos() {\r\n\t\t$this->query = \"SELECT * from \".Constants::$videoTable.$this->publishedClause_Where.$this->videoOrderingLatestClause.$this->getResultLimitString();\r\n\t\t$result = mysql_query($this->query);\r\n\t\tif(!$result){die(mysql_error());}\r\n\t\t\r\n\t\treturn $this->getVideoList($result);\r\n\t}", "function advanced_youtube_widget_WidgetShow($args) {\r\n \r\n extract( $args );\r\n //get the array of values\r\n $xArrOptions = unserialize(get_option('advanced_youtube_widget_options'));\r\n $xTitle = $xArrOptions[0];\r\n $xValue = $xArrOptions[1];\r\n $xType = $xArrOptions[2];\r\n $xCount = $xArrOptions[3];\r\n $xWidth = $xArrOptions[4];\r\n $xHeight = $xArrOptions[5];\r\n $sType = $xArrOptions[6];\r\n ?> \r\n <script type=\"text/javascript\" src=\"http://swfobject.googlecode.com/svn/trunk/swfobject/swfobject.js\"></script>\r\n <script type=\"text/javascript\">\r\n function showMyVideos2(data) {\r\n var feed = data.feed;\r\n var entries = feed.entry || [];\r\n var html = ['<ul class=\"videos\">'];\r\n for (var i = 0; i < entries.length; i++) {\r\n var entry = entries[i];\r\n var title = entry.title.$t.substr(0, 20);\r\n var thumbnailUrl = entries[i].media$group.media$thumbnail[0].url;\r\n var playerUrl = entries[i].media$group.media$content[0].url;\r\n var xStart = playerUrl.indexOf(\"/v/\") + 3;\r\n var xEnd = playerUrl.indexOf(\"&\");\r\n playerUrl = 'http://www.youtube.com/watch?v=' + playerUrl.substr(xStart,xEnd);\r\n html.push('<li onclick=\"document.location=\\''+playerUrl+'\\';\">',\r\n '<span class=\"titlec\"><a href=\"'+playerUrl+'\">', title, '...</a></span><br /><img src=\"', \r\n thumbnailUrl, '\" width=\"<?php echo $xWidth;?>\" height=\"<?php echo $xHeight;?>\"/>', '</span></li>');\r\n }\r\n html.push('</ul><br style=\"clear: left;\"/>');\r\n document.getElementById('videos2').innerHTML = html.join('');\r\n }\r\n </script>\r\n \r\n<?php\r\n if($xType==0){\r\n ?><?php echo $before_widget;?>\r\n <?php echo $before_title.$xTitle.$after_title;?>\r\n \r\n <div id=\"playerContainer\">\r\n <object id=\"player\"></object>\r\n </div>\r\n <div id=\"videos2\"></div>\r\n <script type=\"text/javascript\" src=\"http://gdata.youtube.com/feeds/api/videos?q=&author=<?php echo $xValue;?>&orderby=<?php echo $sType ?>&alt=json-in-script&callback=showMyVideos2&max-results=<?php echo $xCount;?>&format=5\"></script> \r\n <?php echo $after_widget;?>\r\n <?php\r\n }else{\r\n ?>\r\n <?php echo $before_widget;?>\r\n <?php echo $before_title.$xTitle.$after_title;?>\r\n \r\n <div id=\"playerContainer\">\r\n <object id=\"player\"></object>\r\n </div>\r\n <div id=\"videos2\"></div>\r\n <script type=\"text/javascript\" src=\"http://gdata.youtube.com/feeds/api/videos?q=<?php echo $xValue;?>&orderby=<?php echo $sType ?>&alt=json-in-script&callback=showMyVideos2&max-results=<?php echo $xCount;?>&format=5\"></script> \r\n <?php echo $after_widget;?>\r\n <?php\r\n }\r\n }", "public function getAllPopularVideos() {\r\n\t\t$catName = \"Videos\";\r\n\t\t$this->query = \"SELECT * from \".Constants::$contentTable.\" Where catid = \".$this->getCategoryIDList($catName).$this->publishedClause.$this->videoOrderingPopularClause;\r\n\t\t$result = mysql_query($this->query);\r\n\t\tif(!$result){die(mysql_error());}\r\n\t\t\r\n\t\treturn $this->getContentList($result);\r\n\t}", "public function getVideos()\n {\n $videos = DB::table('videos')\n ->join('admins', 'videos.admin_id', '=', 'admins.id')\n ->select('videos.*', 'admins.username')\n ->orderBy('videos.id', 'desc')->get();\n return view('back.pages.admin.videos')->with('videos', $videos);\n }", "function video_all(){\n\n\t\t\t$data['title']\t\t\t=\"Nos vidéos!\";\n\t\t\t$data['categories'] \t= $this->crud_model->Select_category_menu();\n\t\t\t$data['categories2'] \t= $this->crud_model->Select_category();\n\n\t\t\t$data['rand7'] \t\t= $this->crud_model->Select_article_7_cool();\n\t\t\t$data['carousels_one'] = $this->crud_model->Select_article_carousel_cool();\n\t\t\t$data['ones'] \t\t\t= $this->crud_model->Select_article_carousel_one();\n\n\t\t\t$data['articles_recents'] = $this->crud_model->Select_articles_recents();\n\n\t\t\t$data['article_interview'] = $this->crud_model->Select_article_intervieux_cool();\n\n\t\t\t$data['article_blog_one'] = $this->crud_model->Select_article_by_cat();\n\n\t\t\t$data['article_publicite'] = $this->crud_model->Select_article_publicite();\n\n\t\t\t$data['offres_art'] = $this->crud_model->Select_offres_emploies();\n\t\t\t$data['appel_offres_art'] = $this->crud_model->Select_appels_offres();\n\n\t\t\t$data['maison_art'] = $this->crud_model->Select_maison_art();\n\n\t\t\t$data['videos_footer'] = $this->crud_model->Select_our_videos();\n\n\t\t\t$data['contact_info_site'] = $this->crud_model->Select_contact_info_site();\n\n\t\t\t$data['pub_publicite'] = $this->crud_model->Select_galery_publicite();\n\t\t\t$data['pub_publicite3'] = $this->crud_model->Select_galery_publicite_lm3();\n\n\n\t\t\t$this->load->view('frontend/video', $data);\n\n\t\t}", "public function videos()\n {\n return $this->morphedByMany(\\Illuminate\\Support\\Facades\\Config::get('sitec.core.models.video', \\MediaManager\\Models\\Video::class), 'skillable')\n ->withPivot('valor');\n }", "public function renderMediaVideos() {\n global $s_lang;\n $arVideos = $this->adData[\"videos\"];\n foreach ($arVideos as $videoIndex => $arVideo) {\n $arVideos[$videoIndex] = array_merge($arVideos[$videoIndex], array_flatten(unserialize($arVideo[\"SER_META\"]), true, \"_\", \"META_\"));\n }\n $tpl_videos = new Template(\"tpl/\".$s_lang.\"/\".$this->tplVideos);\n $tpl_videos->addlist(\"liste\", $arVideos, \"tpl/\".$s_lang.\"/\".$this->tplVideosRow);\n return $tpl_videos->process(true);\n }", "public function videos()\n {\n return $this->attachments()->where('type', 'video');\n }" ]
[ "0.74067146", "0.7056405", "0.69436115", "0.69233143", "0.67639285", "0.67427135", "0.6716684", "0.66657156", "0.65226233", "0.6519992", "0.6513487", "0.64992243", "0.64621043", "0.64298123", "0.6397008", "0.63924265", "0.6386797", "0.6354365", "0.6317424", "0.63151145", "0.6301461", "0.62974644", "0.6294216", "0.626449", "0.625264", "0.62436306", "0.6230894", "0.62259376", "0.6220272", "0.62147784" ]
0.7616184
0
The method video() shows a video selected by $code.
public function video($code = null) { if ($code == null) show_404(); $this->load->model('video'); $query_video = $this->video->get_by_field( array('link'=>$code,'status'=>1), null, null, null, 'titulo, descricao, link, status' )->row(); if (count($query_video) <= 0) show_404(); if ($query_video->status == 0) show_error('Este vídeo foi suspenso temporariamente', 404); $this->data_content['video'] = $query_video; $this->wpanel->set_meta_description($query_video->titulo); $this->wpanel->set_meta_keywords('videos, filmes'); $this->wpanel->set_meta_title($query_video->titulo); $this->wpanel->set_meta_image('http://img.youtube.com/vi/'.$code.'/0.jpg'); $this->render('video'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function show(Video $video)\n {\n //\n }", "public function video($id)\n {\n \n $datos = Video::findOrFail($id);\n $url = $datos->video;\n $videoNumero = substr($url, 18);\n $libro_id = Session::get('libro_id');\n return view('video.show', compact('datos', 'videoNumero', 'libro_id'));\n }", "public function video()\n {\n $data = Page::where('page', 'video')->firstOrFail();\n return view('admin.pages', ['data' => $data]);\n }", "public function executeVideo() {\n\n\t\t$this->headerHeading = 'Video with others!';\n\t\t$this->headerTagline = 'HTML5 video tag experiment, way of the future.';\n\t\t\n\t\treturn View::SUCCESS;\n\t\t\n\t}", "public function show(Videofiles $videofiles)\n {\n //\n }", "public function videos();", "public function actionWatchVideo($iframe_code, $description)\n {\n //echo base64_decode($iframe_code);\n echo \"<div style='background-color:#DCDCDC;'>\";\n echo \"<div class='video'>\" . base64_decode($iframe_code) . \"<div />\";\n\n // STRIP WIDTH FROM IFRAME //\n $ssHTML = base64_decode($iframe_code);\n $amResults = array();\n preg_match('/width=\"([^\"]*)\"/i', $ssHTML, $amResults);\n $ssDefaultWidth = (count($amResults) > 0 && isset($amResults[1]) && $amResults[1] > 0) ? 'width:' . $amResults[1] . 'px;' : 'width:' . Yii::app()->params['defaultIframeWidth'] . 'px;';\n echo \"<div class='video_description' style='$ssDefaultWidth'>\" . base64_decode($description) . '<div />';\n echo \"<div />\";\n exit;\n }", "public static function video( $params )\n\t{\n\t}", "function view_video() {\n\t\t$sandbox = isset($_GET['sandbox']) && $_GET['sandbox'] == 1;\n\t\t$id = $_GET['id'];\n\t\t\n\t\t$video = ($sandbox) ? $this->playwire->getSandboxVideo($id) : $this->playwire->getVideo($id);\n\t\tinclude 'view.tpl.php';\n\t\texit();\n\t}", "public function findVideoGalleryByCode($code)\n {\n return $this->findVideoGallery(['code' => $code])->one();\n }", "public function videoTest()\n {\n $video = VideoTest::first();\n return view('videoTest')->with(compact('video'));\n }", "public function show(VideoGames $video_games)\n {\n //\n }", "public function video()\n {\n return view('doctor.video');\n }", "function video() {\n\t\t\treturn $this->API->getVideo($this->VideoID);\n\t\t}", "public function actionProgramVideo() {\n $programContent = Program::model()->find(\"id = \" . Yii::app()->params['program']);\n $this->layout = false;\n return $this->render(\"ajax_page_video\", array(\"program\" => $programContent));\n }", "public function videoDetail()\n {\n $id = intval($_GET['id']);\n $table = (isset($_GET['from']) && $_GET['from']=='daily') ? 'daily_video' : 'video';\n $video = M($table)->where(array('id'=>$id))->find();\n //$videoInfo = D('Article')->getVideoInfoByLink($video['link']);\n //print_r($video);\n //$this->assign('videoInfo', $videoInfo);\n $this->assign('video', $video);\n $this->assign('cssFile', 'v');\n $this->display('video');\n }", "public function show($id)\n\t{\n\t\t$video = Video::findOrFail($id);\n\n\t\treturn View::make('videos.show', compact('video'));\n\t}", "public function videos() \n {\n $this->load->model('video');\n $query_videos = $this->video->get_by_field(\n 'status', \n 1, \n array('field' => 'created', 'order' => 'desc'),\n null,\n 'link, titulo'\n )->result();\n $this->wpanel->set_meta_description('Lista de vídeos');\n $this->wpanel->set_meta_keywords('videos, filmes');\n $this->wpanel->set_meta_title('Vídeos');\n $this->data_content['videos'] = $query_videos;\n $this->data_content['max_cols'] = $this->wpn_cols_mosaic;\n $this->render('videos');\n }", "public function watchVideo() {\n\n\t\t\t$detect = new MobileDetect();\n\n\t\t\tif ($detect->isMobile()) {\n\t\t\t\t$height = 'style=\"height:70%; width:70% \"';\n\t\t\t} else {\n\t\t\t\t$height = 'height=\"360\" width=\"640\" ';\n\t\t\t}\n\t\t\t$this->content =\n\t\t\t\t\t'<video id=\"video\" '.$height.' preload=\"none\" >\n\t\t\t\t\t\t<!-- Pseudo HTML5 -->\n \t\t\t\t\t\t<source src=\"'.$this->download.'\" />\n\t\t\t\t\t</video>';\n\n\n\t\t}", "public function show(Video $video)\n {\n //\n return view('instructor.video.show', compact('video'));\n }", "public function render()\n {\n return view('components.video');\n }", "function rendervideo() {\n $data['path'] = base64_decode($_GET['path']);\n $this->load->view('rendervideo', $data);\n }", "public function show($id)\n {\n $video = OriginalVideo::findOrFail($id);\n return view('video.single', compact('video'));\n }", "public function show(Video $video)\n {\n return view('video.resource.show', compact('video')); }", "public function show($id)\n {\n $videos = App\\Video::find($id);\n return view('dashboard.video.singleVideo', compact('videos'));\n }", "public function index()\n {\n $data = video::get();\n return view(\"admin.video.index\",compact(\"data\"));\n }", "public function video() {\n if($this->isLogin() == false) {\n redirect(base_url('admin/login'));\n }\n else {\n $this->load->view('admin/video/list');\n }\n }", "function video(){\n \t//SET LANGUAGE\n\t\t$lang = $_GET['lang'];\n\t\tif ($lang == 'id'){require('lang/id.php');}\n\t\telseif ($lang == 'en'){require('lang/eng.php');}\n\t\telseif ($lang == 'uz'){require('lang/uzbek.php');}\n\t\telse{require('lang/eng.php');}\n\n\t\tsession_start();\n \t$_SESSION['lang'] = $lang;\n \t$this->view->assign('language',$LANG);\n\n\t\t//GET VIDEO\n\t\t$getVideo = $this->contentHelper->getVideo();\n\t\tforeach ($getVideo as $key => $value) {\n\t\t\t$getVideo[$key]['content_en'] = html_entity_decode($value['content_en'],ENT_QUOTES, 'UTF-8');\n\t\t}\n\t\t$this->view->assign('video',$getVideo);\t\n\t\t\n\t\treturn $this->loadView('video');\n }", "public function show($id)\n {\n $videos = Video::findorFail($id);\n return view('video',compact('videos'));\n }", "public function videourl()\n\t{\n\t\t$view = $this->getView('videourl');\n\n\t\tif ($model = $this->getModel('videourl'))\n\t\t{\n\t\t\t$view->setModel($model, true);\n\t\t}\n\n\t\t$view->getvideourl();\n\t}" ]
[ "0.7034882", "0.66175693", "0.66134846", "0.655451", "0.6549892", "0.6513958", "0.6446677", "0.64285153", "0.6370726", "0.6231025", "0.6217362", "0.6196483", "0.6195884", "0.61859876", "0.6175188", "0.6105677", "0.6063027", "0.60554767", "0.6046581", "0.60127205", "0.5999923", "0.5971582", "0.59696794", "0.59638435", "0.59593517", "0.59516954", "0.5937721", "0.5935044", "0.5889798", "0.5873687" ]
0.7908821
0
Method to get the seasons
public function getSeasons(): array { return $this->seasons; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function season()\n {\n $matches = MatchService::getSeasonMatches();\n \n $response = [];\n foreach ($matches as $match) {\n $response['weeks'][$match->week_id][] = MatchService::matchResultsFormatResponse($match);\n }\n \n return response()->json($response);\n }", "public function index()\n\t{\n\t\t$seasons = $this->competition->find(\\Config::get('pennants.competition_id'));\n\n\t\treturn $seasons;\n\t}", "public function seasons()\n {\n return $this->hasMany('App\\Season');\n }", "public function getIdSeason()\n {\n return $this->id_season;\n }", "public function getNumberOfSeasons() {\n\t\treturn $this->numberOfSeasons;\n\t}", "function getSeasonDates(){\n $season_data = App\\Models\\SeasonDate::all();\n $season_data = json_decode(json_encode($season_data),true);\n\n $return_data = array();\n for($i = 0; $i < count($season_data); $i++){\n $data = array();\n $data[\"season\"] = $season_data[$i][\"season\"];\n $data[\"year\"] = $season_data[$i][\"year\"];\n $data[\"start_date\"] = date('Y-m-d H:i:s', strtotime($season_data[$i][\"start_date\"]));\n $data[\"end_date\"] = date('Y-m-d H:i:s', strtotime($season_data[$i][\"end_date\"]));\n\n $return_data[$season_data[$i][\"id\"]] = $data;\n }\n return $return_data;\n }", "public function getNbSeasons()\n {\n\t\t$today = new \\DateTime('now');\n\t\t$maxNbSeason = 0;\n\t\tforeach($this->episodes as $key => $episode)\n\t\t{\n\t\t\tif($episode->getSeasonNumber() > $maxNbSeason AND $episode->getFirstAired() < $today)\n\t\t\t{\n\t\t\t\t$maxNbSeason = $episode->getSeasonNumber();\n\t\t\t}\n\t\t}\n return $maxNbSeason;\n }", "public function get_season($id) {\n $data = [];\n $data['season'] = $this->season_m->get($id);\n\n if ($this->teams_to_seasons_m->get($id, 'ID') !== NULL) {\n foreach ($this->teams_to_seasons_m->get($id, 'ID') as $key => $teamID) {\n $this->team_m->get($teamID);\n $data['teams'][$key] = $this->team_m->get($teamID);\n }\n }\n return $data;\n }", "public function getNameSeason()\n {\n return $this->name_season;\n }", "public function findSeasons($id){\r\n\t\t$this->loadModel('Seasons');\r\n\t\t$query = $this->Seasons->find()->where(['competition_id = ' => $id]);\r\n\t\t$results = $query->all();\r\n\t\t$data = $results->toList();\r\n\t\t\r\n\t\techo json_encode($data);\r\n\t\tdie();\r\n\t}", "public function getSeasonSelect()\n {\n $mainframe = Factory::getApplication();\n $db = Factory::getDbo();\n $query = $db->getQuery(true);\n\n $options = array(HTMLHelper::_('select.option', 0, Text::_($this->getParam('seasons_text'))));\n\n $query->select('s.id AS value, s.name AS text');\n $query->from('#__sportsmanagement_season AS s');\n\n $db->setQuery($query);\n $res = $db->loadObjectList();\n if ($res) {\n $options = array_merge($options, $res);\n }\n return HTMLHelper::_('select.genericlist', $options, 's', 'class=\"jlnav-select\"',\n 'value', 'text', $this->getSeasonId());\n }", "public function getCurrentSeason(){\r\n $status = 'CURRENT';\r\n $currentSeason = $this->entityManager->getRepository(Season::class)\r\n ->findOneByStatus($status);\r\n \r\n //$season_name = $currentSeason->getSeasonName();\r\n \r\n return $currentSeason;\r\n }", "public function getSemesters(){\n\t\t$semesterList;\n\t\t$thisYear = date('Y');\n\t\t$terms = ['full', 'block1', 'block2'];\n\t\t$today = new DateTime();\n\t\t$currentSemester = $this->whichSemester($today);\n\t\t$spring = array('name' => 'spring', 'year' => $thisYear);\n\t\t$summer = array('name' => 'summer', 'year' => $thisYear);\n\t\t$fall = array('name' => 'fall', 'year' => $thisYear);\n\n\t\tif($currentSemester == \"spring\"){\n\t\t\t$semesterList = array( $spring, $summer, $fall);\n\t\t\t//set current spring semester to start at end of last fall\n\n\t\t}\n\t\telse if($currentSemester == \"summer\"){\n\t\t\t$spring['year'] ++;\n\t\t\t$semesterList = array($summer, $fall, $spring);\n\t\t}\n\t\telse{\n\t\t\t$spring['year']++;\n\t\t\t$summer['year']++;\n\t\t\t$semesterList = array($fall, $spring, $summer);\n\t\t}\n\t\t//echo $currentSemester;\n\t\treturn array(\n\t\t\t'currentSemester' => $currentSemester,\n\t\t\t'semesterList' => $semesterList,\n\t\t\t'terms' => $terms,\n\t\t);\n\t}", "protected function _premieredseason() {\n\n\t\tif ( !isset( static::$data[ 'premiered' ] ) ) $this->premiered();\n\n\t\treturn ( isset( static::$data[ 'premiered' ][ 'season' ] ) ) ? static::$data[ 'premiered' ][ 'season' ] : FALSE;\n\t}", "public function get_every_season( $offset = 0, $limit = 10, $order = 'DESC' ) {\n\n\t\t\tglobal $wpdb;\n\n\t\t\treturn $wpdb->get_results( $wpdb->prepare( \"SELECT id, name, year\n\t\t\t\tFROM $wpdb->seasons\n\t\t\t\tORDER BY year $order, name ASC\n\t\t\t\tLIMIT %d, %d\",\n\t\t\t\t$offset, $limit ), ARRAY_A\n\t\t\t);\n\n\t\t}", "public function season($string)\n {\n \n $string = date('n', strtotime($string));\n\n $month = intval($string);\n\n $seasons = array( \n 1 => 'Winter',\n 2 => 'Winter',\n 3 => 'Spring',\n 4 => 'Spring',\n 5 => 'Spring',\n 6 => 'Summer',\n 7 => 'Summer',\n 8 => 'Summer',\n 9 => 'Fall',\n 10 => 'Fall',\n 11 => 'Fall',\n 12 => 'Winter');\n\n return $seasons[$month];\n \n }", "public function index() {\n // SFH: Ordered them by latest first\n $seasons = Season::orderBy('dateStart', 'desc')->get();\n\n // SFH: Check if there is an entry in the database\n // define new season stat and end dates\n if (sizeof($seasons) > 0) {\n $newSeasonStart = date('Y-m-d', strtotime($seasons->first()->dateEnd . \" +1 day\"));\n $newSeasonEnd = date('Y-m-d', strtotime($newSeasonStart . \" +1 year -1 day\"));\n }\n\n // SFH: Added compact for the seasons, newSeasonStart and newSeasonEnd\n return view('/admin/configuration/seasons', compact('seasons', 'newSeasonStart', 'newSeasonEnd'));\n }", "public function sfb_list_programs_by_season() {\n\n if (isset($_GET['start'])) {\n $start = \"'\" . $_GET['start'] . \"'\";\n if (isset($_GET['end'])) {\n $end = \"'\" . $_GET['end'] . \"'\" ;\n } else {\n $end = \"'8/1/2002'\";\n } \n } else {\n $start = \"'8/1/2002'\";\n $end = \"TODAY()\";\n }\n\n $start_year = 1991;\n $current_year = date(Y);\n\n $parsed_date = \"DATETIME_PARSE('8/1/2002', 'D MMM YYYY HH:mm')\";\n\n $query = \"?&sort[0][field]=Season&sort[0][direction]=asc&sort[1][field]=Date&sort[1][direction]=asc\";\n $query .= \"&filterByFormula=AND(IS_AFTER({Date}, \" . $start . \")\";\n $query .= \", IS_BEFORE({Date}, \" . $end . \"))\";\n\n $Programs = $this->query_airtable(\"Programs\",$query);\n\n\n echo \"<h2>Programs by Concert Season</h2>\";\n\n $prev_season = '';\n\n foreach($Programs as $index=>$this_program) {\n $fields = $this_program->fields;\n $this_season = $fields->Season;\n $program = $fields->ProgramDetails;\n $program_works = $fields->Works;\n $program_notes = $fields->ProgramNotes;\n\n $program_date = strtotime($this_program->fields->Date);\n $date = date('m', $program_date) . \"/\" . date('Y', $program_date);\n\n if ($this_season != $prev_season) { \n if ($prev_season > '') {\n echo \"<div style='clear: both'></div>\";\n echo \"</div> <!-- end table div -->\"; \n }\n\n echo \"<h3>\" . $this_season . \"</h3>\";\n echo \"<div class='sfb-programs-table'>\";\n $prev_season = $this_season;\n }\n\n echo \"<div class='sfb-program-archive-row'>\";\n\n echo \"<div style='float: left;'>\";\n echo $date;\n echo \"</div>\";\n\n echo \"<div style='width: 50%; float: left;'>\";\n echo $this_program->fields->Name;\n echo \"</div>\";\n\n echo \"<div style='float: left;'>\";\n if ($program == \"\") {\n echo \"&nbsp;\";\n } else {\n echo \"<a href='/programs-archive?program=\". $this_program->id . \"&view=Details'>Details</a>\";\n }\n \n echo \"</div>\";\n\n echo \"<div style='float: left;'>\";\n if ($program_works) {\n echo \"<a href='/programs-archive?program=\". $this_program->id . \"&view=Works'>Translations</a> \";\n } else {\n echo \"&nbsp;\";\n }\n echo \"</div>\";\n\n\n echo \"<div style='float: left;'>\";\n if ($program_notes != \"\") {\n echo \"<a href='/programs-archive?program=\". $this_program->id . \"&view=Notes'>Notes</a>\";\n }\n echo \"</div>\";\n echo \"<div style='clear: both'></div>\";\n echo \"</div> <!-- end row -->\";\n }\n\n if ($prev_season > '') {\n \n echo \"</div> <!-- end table div -->\"; \n }\n }", "public function getStandings()\n {\n $proc = \"CALL get_season_standings()\";\n $this->db->prepare($proc);\n $standings = array();\n\n if($this->db->execute())\n {\n $this->db->bindResults(array('wins', 'losses', 'first_name'));\n $position = 1;\n while($this->db->fetch())\n {\n $standing = $this->db->createObjectFromResult();\n\n if($position === 1)\n {\n $top_wins = $standing->wins;\n $standing->games_back = 0;\n }\n else\n {\n $standing->games_back = $top_wins - $standing->wins;\n }\n\n array_push($standings, $standing);\n $position++;\n }\n }\n\n return $standings;\n }", "function getLatestSeason(){\n return max(array_keys(Session::get(\"season_dates\")));\n }", "public function index()\n\t{\n\t\t$seasons = Season::all();\n\t\t\n\t\treturn View::make('seasons.index')\n\t\t\t->with('seasons', $seasons);\n\t}", "public function get_every_division( $id_season = NULL, $offset = 0, $limit = 10, $order = 'ASC' ) {\n\n\t\t\tglobal $wpdb;\n\n\t\t\tif ( NULL === $id_season ) {\n\n\t\t\t\treturn $wpdb->get_results( $wpdb->prepare(\n\t\t\t\t\t\"SELECT a.id, a.name, b.name AS season_name \n\t\t\t\t\tFROM $wpdb->divisions AS a\n\t\t\t\t\tLEFT JOIN $wpdb->seasons AS b\n\t\t\t\t\tON a.id_season = b.id\n\t\t\t\t\tORDER BY name $order\n\t\t\t\t\tLIMIT %d, %d\",\n\t\t\t\t\t$offset, $limit ), ARRAY_A\n\t\t\t\t);\n\n\t\t\t}\n\t\t\telse {\n\n\t\t\t\treturn $wpdb->get_results( $wpdb->prepare(\n\t\t\t\t\t\"SELECT a.id, a.name, b.name AS season_name \n\t\t\t\t\tFROM $wpdb->divisions AS a\n\t\t\t\t\tLEFT JOIN $wpdb->seasons AS b\n\t\t\t\t\tON a.id_season = b.id\n\t\t\t\t\tWHERE id_season = %d\n\t\t\t\t\tORDER BY name $order\n\t\t\t\t\tLIMIT %d, %d\",\n\t\t\t\t\t$id_season, $offset, $limit ), ARRAY_A\n\t\t\t\t);\n\n\t\t\t}\n\n\t\t}", "public function getAllStudios();", "function bball_season() {\r\n\tif ( date(\"m\") <= 5 ) {\r\n\t\treturn ( date(\"Y\") - 1 ) . \"-\" . date(\"Y\");\r\n\t}\r\n\telse {\r\n\t\treturn date(\"Y\") . \"-\" . ( date(\"Y\") + 1 );\r\n\t}\r\n}", "public function episodesOfSeason($show, $season)\n {\n //return $tvShow;\n\n $episodes = \\App\\Season::with('episodes')\n ->where('tv_show_id', $show)\n ->where('user_id', auth()->user()->id)\n //->where('season_number', $season)\n ->whereHas('episodes', function ($query) {\n $query->where('watched', false);\n //->where('user_id', auth()->user()->id);\n })\n ->get();\n\n \n\n \n return $episodes;\n\n\n }", "public function index()\n {\n //get all seasons\n $seasons = Season::all();\n\n //render view\n return View::make('site.seasons.games.index', ['seasons' => $seasons]);\n }", "public function getReleaseSeasonNumber()\n {\n return $this->releaseSeasonNumber;\n }", "public function show($id)\n\t{\n\t\t$season = $this->season->find($id);\n\n\t\treturn $season;\n\t}", "public function getSeasonFinaleAttribute()\n {\n return DB::table('episodes')\n ->where([\n ['serie_id', $this->serie_id],\n ['episodeSeason', $this->episodeSeason],\n ['episodeNumber', $this->episodeNumber + 1]\n ])\n ->count() == 0;\n }", "public function getPicturesNewSeason(){\n\n \t$dataNewSeason = DB::table('pictures')->where('status','=', 2)->get();\n \treturn $dataNewSeason;\n }" ]
[ "0.77796274", "0.75886893", "0.7224484", "0.70342165", "0.6882016", "0.6871212", "0.6818403", "0.6722542", "0.6696152", "0.6668137", "0.66567194", "0.66192704", "0.6546529", "0.6540077", "0.64937544", "0.6455563", "0.64247143", "0.63298655", "0.6315455", "0.62821335", "0.6222002", "0.6171574", "0.61620057", "0.6109225", "0.608658", "0.60805243", "0.59993356", "0.5936786", "0.58883494", "0.5852243" ]
0.8478567
0
The deidentified item. Generated from protobuf field .google.privacy.dlp.v2.ContentItem item = 1;
public function setItem($var) { GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\ContentItem::class); $this->item = $var; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getItemID()\n {\n return $this->itemID;\n }", "public function getItemID()\n {\n return $this->itemID;\n }", "public function getItemID()\n {\n return $this->itemID;\n }", "public function get_item_id() {\n\t\treturn $this->item_id;\n\t}", "public function getCdNfdsaidaItem()\n {\n return $this->cd_nfdsaida_item;\n }", "public function show($item)\n {\n $id = $this->guessId($item);\n\n $resp = $this->makeRequest(\"/items/{$id}/notes.json\");\n $data = $this->parseResponse($resp);\n return $data;\n }", "public function getItemId()\n {\n return $this->item_id;\n }", "public function getItemId()\n {\n return $this->item_id;\n }", "public function getItemId()\n {\n return $this->item_id;\n }", "public function getItemId()\n {\n return $this->item_id;\n }", "function getItem($dType, $itemId){\n $result = $this->dma->managementApiCall('GET', \"{$this->hashid}/items/{$dType}/{$itemId}\");\n return $result['response'];\n }", "private static function _item( $item ) {\n return !is_array($item)\n ? $item\n : ( isset($item['item']) // SHOULD be an auction...\n ? $item['item']\n : NULL );\n }", "public function setItems($var)\n {\n $arr = GPBUtil::checkRepeatedField($var, \\Google\\Protobuf\\Internal\\GPBType::MESSAGE, \\Google\\Cloud\\Dlp\\V2beta1\\ContentItem::class);\n $this->items = $arr;\n\n return $this;\n }", "public function item_deleted($item_id = NULL)\n {\n \t$client = new Client();\n \t$url_string = $this->base_api.\"deleted/\".$item_id.$this->after_item;\n \t$response = $client->get($url_string);\n \t$response = $response->json();\n \treturn $response;\n }", "public function getItem($item) {\n return [\n 'ASIN' => (String) $item->ASIN,\n 'URL' => (String) $item->DetailPageURL,\n 'IMAGE' => ((String) $item->MediumImage->URL) ? (String) $item->MediumImage->URL : 'img/image-unavailable.png',\n 'TITLE' => (String) $item->ItemAttributes->Title,\n 'BRAND' => (String) $item->ItemAttributes->Brand,\n 'PartNumber' => (String) $item->ItemAttributes->PartNumber,\n 'MANUFACTURER' => (String) $item->ItemAttributes->Manufacturer,\n 'MPN' => (String) $item->ItemAttributes->MPN,\n 'UPC' => (String) $item->ItemAttributes->UPC,\n 'PRICE' => ((String) $item->OfferSummary->LowestNewPrice->FormattedPrice == \"Too low to display\") ? \"99999999999\" : (String) $item->OfferSummary->LowestNewPrice->Amount,\n 'FORMATTEDPRICE' => ((String) $item->OfferSummary->LowestNewPrice->FormattedPrice == \"Too low to display\") ? \"See retailer for more information\" : (String) $item->OfferSummary->LowestNewPrice->FormattedPrice,\n 'SALESRANK' => (String) $item->SalesRank,\n 'REVIEWURL' => (String) $item->CustomerReviews->IFrameURL,\n 'ENERGYUSE' => 9999\n ];\n }", "public function getMetatagItem() {\n return new Item([\n 'project_id' => 86701,\n 'template_id' => 823399,\n ]);\n }", "public final function getItemId() { return $this->itemId; }", "public function getItem()\n {\n return $this->item;\n }", "public function getItem()\n {\n return $this->item;\n }", "public function getItem()\n {\n return $this->item;\n }", "public function getItem()\n {\n return $this->item;\n }", "public function getMetatagMultilangItem() {\n return new Item([\n 'project_id' => 86701,\n 'template_id' => 429623,\n ]);\n }", "public function getItemData($item) \n {\n $option = $item->getOptionByCode('personalization');\n if (!$option) {\n return false;\n }\n return unserialize($option->getValue());\n }", "function getId_item()\n {\n if (!isset($this->iid_item) && !$this->bLoaded) {\n $this->DBCarregar();\n }\n return $this->iid_item;\n }", "public function getItem()\n {\n return $this->get(self::ITEM);\n }", "public function remove( $item ) {\n\t\t$items = $this->get();\n\n\t\t// If the item is not in dismissed items, there's nothing to do.\n\t\tif ( ! array_key_exists( $item, $items ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tunset( $items[ $item ] );\n\n\t\t$this->set( $items );\n\t}", "public function getItem() {\n\t\treturn $this->item;\n\t}", "protected function _getItem()\n {\n $app = JFactory::getApplication();\n\n $id = $app->input->get('eid');\n\n $db = $this->getDbo();\n $query = $db->getQuery(true)\n ->select('a.eventbrite_ids, a.eventbrite_ids_order')\n ->from('#__eventbrites as a')\n ->where('id='.$id);\n\n $db->setQuery($query);\n\n // set the _item property\n $this->_item = $db->loadObject();\n }", "protected function getEmbedCode(FieldItemInterface $item) {\n switch ($item->getFieldDefinition()->getType()) {\n case 'link':\n return $item->uri;\n case 'string':\n case 'string_long':\n return $item->value;\n default:\n break;\n }\n }", "protected function getEmbedCode(FieldItemInterface $item) {\n switch ($item->getFieldDefinition()->getType()) {\n case 'link':\n return $item->uri;\n\n case 'string':\n case 'string_long':\n return $item->value;\n\n default:\n break;\n }\n }" ]
[ "0.55172724", "0.55172724", "0.55172724", "0.5463531", "0.5378374", "0.5322588", "0.53097963", "0.53097963", "0.53097963", "0.53097963", "0.5286605", "0.52280724", "0.5226461", "0.52102804", "0.5185791", "0.51774865", "0.5161264", "0.51391035", "0.51391035", "0.51391035", "0.51391035", "0.5132528", "0.5089078", "0.5087711", "0.5035764", "0.5024714", "0.5015766", "0.50154895", "0.49912405", "0.49903834" ]
0.57519436
0
An overview of the changes that were made on the `item`. Generated from protobuf field .google.privacy.dlp.v2.TransformationOverview overview = 2;
public function setOverview($var) { GPBUtil::checkMessage($var, \Google\Cloud\Dlp\V2\TransformationOverview::class); $this->overview = $var; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function representBasic($item)\n {\n return \"[Attribution #\". $item->getId() .\"] (\" . $item->getMembre()->getFullName() . \")\";\n }", "public function getOverview()\n {\n return $this->overview;\n }", "public function getResourceDescription($item){\n $body = array();\n if(isset($item->abstract)){\n foreach($item->abstract as $abstract){\n $body[]=(string) $abstract;\n }\n }\n if(isset($item->originInfo)){\n foreach($item->originInfo as $info){\n $origin = array();\n if(isset($info->edition)){\n $origin[]= strlen($info->edition) > 1 ? \"Edition: \" . (string) $info->edition : '';\n }\n if(isset($info->dateIssued)){\n $origin[]= strlen($info->dateIssued) > 1 ?\"Issued: \" . (string) $info->dateIssued : '';\n }\n if(isset($info->dateCreated)){\n $origin[]= strlen($info->dateCreated) > 1 ?\"Created: \" . (string) $info->dateCreated : '';\n }\n if(isset($info->copyrightDate)){\n $origin[]= strlen($info->copyrightDate) > 1 ? \"Copyright: \" . (string) $info->copyrightDate : '';\n }\n if(isset($info->dateCaptured)){\n $origin[]= strlen($info->dateCaptured) > 1 ? \"Captured: \" . (string) $info->dateCaptured : '';\n }\n if(isset($info->dateValid)){\n $origin[]= strlen($info->dateValid) > 1 ? \"Valid: \" . (string) $info->dateValid : '';\n }\n if(isset($info->dateModified)){\n $origin[]= strlen($info->dateModified) > 1 ? \"Modified: \" . (string) $info->dateModified : '';\n }\n if(isset($info->dateOther)){\n $origin[]= strlen($info->dateOther) > 1 ? \"Dated: \" . (string) $info->dateOther : '';\n }\n if(isset($info->publisher)){\n $publishers=array();\n foreach($info->publisher as $publisher){\n $publishers[]= (string) $publisher;\n }\n array_filter($publishers);\n if(count($publishers) > 0){\n $origin[]=\"Publisher: \" . implode(\"; \", $publishers);\n }\n }\n array_filter($origin);\n if(count($origin) > 0){\n $body[]=\"<div class='originInfo'>\" . implode(\"<br/>\", $origin) . \"</div>\";\n }\n }\n }\n if(isset($item->note)){\n foreach($item->note as $note){\n $body[]=(string) $note;\n }\n }\n if(isset($item->targetAudience)){\n $aud = $this->getItemKeywords($item, 'audience');\n $body[] = implode(\"; \", array_filter($aud));\n }\n if(isset($item->physicalDescription)){\n foreach($item->physicalDescription as $physicalDescription){\n $description = array();\n if(isset($physicalDescription->form)){\n $description[] = (string)$physicalDescription->form;\n }\n if(isset($physicalDescription->internetMediaType)){\n $description[] = (string)$physicalDescription->internetMediaType;\n }\n if(isset($physicalDescription->extent)){\n $description[] = (string)$physicalDescription->extent;\n }\n if(isset($physicalDescription->digitalOrigin)){\n $description[] = (string)$physicalDescription->digitalOrigin;\n }\n if(isset($physicalDescription->note)){\n $description[] = (string)$physicalDescription->note;\n }\n $body[]= implode(\" - \", array_filter($description));\n }\n }\n if(isset($item->accessCondition)){\n $conditions = array();\n foreach($item->accessCondition as $condition){\n $conditions[]=(string) $condition;\n }\n $body[] = implode(\"; \", array_filter($conditions)); \n }\n $body = array_map(\"trim\", $body);\n return implode(\"<br/><br/>\", array_filter($body));\n }", "public function transform( Task $item ) {\n\n $task = [\n 'id' => (int) $item->id,\n 'title' => $item->title,\n 'description' => [ 'html' => pm_get_content( $item->description ), 'content' => $item->description ],\n 'estimation' => $item->estimation,\n 'start_at' => format_date( $item->start_at ),\n 'due_date' => format_date( $item->due_date ),\n 'complexity' => $item->complexity,\n 'priority' => $item->priority,\n //'order' => (int) $order,\n 'payable' => $item->payable,\n 'recurrent' => $item->recurrent,\n 'parent_id' => $item->parent_id, \n 'status' => $item->status,\n 'project_id' => $item->project_id,\n 'category_id' => $item->category_id,\n 'created_at' => format_date( $item->created_at ),\n 'completed_at' => format_date( $item->completed_at ),\n 'updated_at' => format_date( $item->updated_at ),\n 'task_list_id' => $item->task_list,\n 'meta' => $this->meta( $item ),\n 'assignees' => $this->assignees( $item ),\n 'creator' => $this->get_creator( $item )\n ];\n \n if ( $this->list_task_transormer_filter ) {\n return apply_filters( 'pm_list_task_transormer', $task, $item ); \n }\n \n return $task;\n }", "public function getFeedItemDescription()\n {\n return $this->getSummary();\n }", "public function untransform(array $item): FormItem\n\t{\n\t\t$privacy = (array_key_exists('private', $item) && $item['private']);\n\t\t$rewatching = (array_key_exists('rewatching', $item) && $item['rewatching']);\n\n\t\t$untransformed = FormItem::from([\n\t\t\t'id' => $item['id'],\n\t\t\t'anilist_id' => $item['anilist_id'] ?? NULL,\n\t\t\t'mal_id' => $item['mal_id'] ?? NULL,\n\t\t\t'data' => [\n\t\t\t\t'status' => $item['watching_status'],\n\t\t\t\t'reconsuming' => $rewatching,\n\t\t\t\t'reconsumeCount' => $item['rewatched'],\n\t\t\t\t'notes' => $item['notes'],\n\t\t\t\t'private' => $privacy,\n\t\t\t],\n\t\t]);\n\n\t\tif (is_numeric($item['episodes_watched']) && $item['episodes_watched'] > 0)\n\t\t{\n\t\t\t$untransformed['data']['progress'] = (int) $item['episodes_watched'];\n\t\t}\n\n\t\tif (is_numeric($item['user_rating']) && $item['user_rating'] > 0)\n\t\t{\n\t\t\t$untransformed['data']['ratingTwenty'] = $item['user_rating'] * 2;\n\t\t}\n\n\t\treturn $untransformed;\n\t}", "public function getModifiedDetailView()\n {\n return ['attribute' => 'modified'];\n }", "public function getItemDescription()\n {\n return $this->itemDescription;\n }", "public function overview() {\n return 'overview';\n }", "public function transform($item);", "protected function transformItem($item)\n {\n $taxon = optional($item->observation->taxon);\n\n return [\n 'id' => $item->id,\n 'taxon' => $taxon->name,\n 'year' => $item->observation->year,\n 'month' => $item->observation->month,\n 'day' => $item->observation->day,\n 'time' => optional($item->time)->format('H:i'),\n 'latitude' => $item->observation->latitude,\n 'longitude' => $item->observation->longitude,\n 'location' => $item->observation->location,\n 'mgrs10k' => $item->observation->mgrs10k,\n 'accuracy' => $item->observation->accuracy,\n 'elevation' => $item->observation->elevation,\n 'sex' => $item->observation->sex_translation,\n 'observer' => $item->observer,\n 'identifier' => $item->identifier,\n 'stage' => optional($item->observation->stage)->name_translation,\n 'license' => $item->license_translation,\n 'number' => $item->observation->number,\n 'note' => $item->observation->note,\n 'project' => $item->observation->project,\n 'habitat' => $item->observation->habitat,\n 'found_on' => $item->observation->found_on,\n 'found_dead' => $item->found_dead ? __('Yes') : __('No'),\n 'found_dead_note' => $item->found_dead_note,\n 'status' => $item->status_translation,\n 'types' => $item->observation->types->pluck('name')->implode(', '),\n 'atlas_code' => $taxon->uses_atlas_codes ? $item->atlas_code : null,\n ];\n }", "public function transform($item) {\n return [\n 'id' => $item['id'],\n 'name' => $item['name'],\n 'user_id' => $item['user_id'],\n 'bot_id' => $item['bot_id'],\n 'full_items_base_id' => $item['full_items_base_id'],\n 'unique_steam_key' => $item['unique_steam_key'],\n 'unique_item_attr' => $item['unique_item_attr'],\n 'status' => $item['status'],\n 'price' => $item['price'],\n ];\n }", "public function getChangeDescription() {\n $changeList = $this->getSortedChangeInfoList();\n $firstChangeDescription = $changeList[0]->getChangeDescription();\n $numberOfAnotherChanges = count($changeList) - 1; // minus the one which change description is displayed\n return $firstChangeDescription . \" and $numberOfAnotherChanges more change\" . ($numberOfAnotherChanges > 1 ? \"s\" : \"\");\n }", "public function formatItem($item, $type = 'unknown') {\t\r\n\t\t$html = '';\r\n\t\t\r\n\t\t$html .= \"<div class=\\\"$type\\\" title=\\\"\" . strtolower($item->getName()) . \"\\\">\" . PHP_EOL;\r\n\t\t$html .= \"<h2>$type \" . $item->getName();\r\n\t\t\r\n\t\tif(is_a($item, 'ReflectionFunction') || is_a($item, 'ReflectionMethod'))\r\n\t\t\t$html .= \"(\" . $this->formatParameters($item->getParameters()) . \")\";\r\n\t\t\t\r\n\t\t$html .= \"</h2>\" . PHP_EOL;\r\n\t\tif($parser = $this->parseComment($item)) { //Get our parsed comment\r\n\t\t\t$shortDesc = $parser->getShortDesc();\r\n\t\t\tif(!empty($shortDesc)) {\r\n\t\t\t\t$html .= \"<pre class=\\\"comment\\\">\" . $shortDesc . \"</pre>\";\r\n\t\t\t}\r\n\t\t\t$desc = $parser->getDesc();\r\n\t\t\tif(!empty($desc)) {\r\n\t\t\t\t$html .= \"<p class=\\\"comment\\\">Description:</p>\";\r\n\t\t\t\t$html .= \"<pre class=\\\"comment\\\">\" . $desc . \"</pre>\";\r\n\t\t\t}\r\n\t\t\t$html .= $this->formatPHPDocParams($parser->getParams());\r\n\t\t}\r\n\t\t$filename = $this->formatFilePath($item->getFileName());\r\n\t\tif(!empty($filename)) {\r\n\t\t\t$html .= \"<p class=\\\"info\\\"><span class=\\\"filename\\\">\" . $filename. \": </span><span class=\\\"lines\\\">Lines \" . $item->getStartLine() . \" - \" . $item->getEndLine() . \"</span></p>\" . PHP_EOL;\r\n\t\t}\r\n\t\t$html .= \"</div>\" . PHP_EOL;\r\n\t\t\r\n\t\treturn $html;\r\n\t}", "public function edit(item $item)\n {\n $units = unitofmeasurement::get();\n $category = item_category::get();\n $location = location::get();\n $brand = Brand::get();\n $department = Department::get();\n return view('item.edit',compact('item','units','category','location','brand','department'));\n }", "function dh_theme_get_display_description($snippet=false, $item=null)\n{\n $itemTypeElements = detailed_item_type_elements($item);\n foreach ($itemTypeElements as $element => $elementInfo) {\n if (strpos($elementInfo['element_description'], 'Display Description')!==false) {\n if ($snippet and strlen($elementInfo['text']) > $snippet) {\n return substr($elementInfo['text'],0,$snippet).\"...\";\n } else {\n return $elementInfo['text'];\n }\n }\n }\n if (!$item) {\n return metadata('item', array('Dublin Core', 'Description'),array('snippet'=>$snippet));\n } else {\n return metadata($item, array('Dublin Core', 'Description'),array('snippet'=>$snippet));\n }\n}", "public function transform($item)\n {\n return Transformer::transform($item);\n }", "function parse_single_description($inv_item=array()) { return $this->item['item_description']; }", "public function getDescription() {\n\t\treturn 'These transfrmations do not need any special additional configuration, they will simply take the current value of the field and transform it';\n\t}", "public function transform($item): array\n {\n return [\n 'id' => $item->uuid,\n 'title' => $item->title,\n 'content' => $item->content,\n 'image' => $item->image ? $item->user_directory . '/' . $item->image : null,\n 'date' => date('Y/m/d H:i', strtotime($item->updated_at)),\n 'author' => $item->firstname . ' ' . $item->lastname\n ];\n }", "public function getFeedItemDescription()\n {\n return $this->intro;\n }", "public function transform(array|object $item): AnimeListItem\n\t{\n\t\t$item = (array) $item;\n\t\t$animeId = $item['media']['id'];\n\t\t$anime = $item['media'];\n\n\t\t$genres = [];\n\n\t\t$rating = (int) $item['rating'] !== 0\n\t\t\t? (int) $item['rating'] / 2\n\t\t\t: '-';\n\n\t\t$total_episodes = (int) $anime['episodeCount'] !== 0\n\t\t\t? (int) $anime['episodeCount']\n\t\t\t: '-';\n\n\t\t$AnilistId = NULL;\n\t\t$MALid = NULL;\n\n\t\t$mappings = $anime['mappings']['nodes'] ?? [];\n\t\tif ( ! empty($mappings))\n\t\t{\n\t\t\tforeach ($mappings as $mapping)\n\t\t\t{\n\t\t\t\tif ($mapping['externalSite'] === 'MYANIMELIST_ANIME')\n\t\t\t\t{\n\t\t\t\t\t$MALid = $mapping['externalId'];\n\t\t\t\t}\n\n\t\t\t\tif ($mapping['externalSite'] === 'ANILIST_ANIME')\n\t\t\t\t{\n\t\t\t\t\t$AnilistId = $mapping['externalId'];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t$streamingLinks = array_key_exists('nodes', $anime['streamingLinks'])\n\t\t\t? Kitsu::parseStreamingLinks($anime['streamingLinks']['nodes'])\n\t\t\t: [];\n\n\t\t$titles = Kitsu::getFilteredTitles($anime['titles']);\n\t\t$title = $anime['titles']['canonical'];\n\n\t\treturn AnimeListItem::from([\n\t\t\t'id' => $item['id'],\n\t\t\t'anilist_id' => $AnilistId,\n\t\t\t'mal_id' => $MALid,\n\t\t\t'episodes' => [\n\t\t\t\t'watched' => (int) $item['progress'] !== 0\n\t\t\t\t\t? (int) $item['progress']\n\t\t\t\t\t: '-',\n\t\t\t\t'total' => $total_episodes,\n\t\t\t\t'length' => $anime['episodeLength'],\n\t\t\t],\n\t\t\t'airing' => [\n\t\t\t\t'status' => Kitsu::getAiringStatus($anime['startDate'], $anime['endDate']),\n\t\t\t\t'started' => $anime['startDate'],\n\t\t\t\t'ended' => $anime['endDate'],\n\t\t\t],\n\t\t\t'anime' => [\n\t\t\t\t'id' => $animeId,\n\t\t\t\t'age_rating' => $anime['ageRating'],\n\t\t\t\t'title' => $title,\n\t\t\t\t'titles' => $titles,\n\t\t\t\t'slug' => $anime['slug'],\n\t\t\t\t'show_type' => (string) StringType::from($anime['subtype'])->upperCaseFirst(),\n\t\t\t\t'cover_image' => Kitsu::getPosterImage($anime),\n\t\t\t\t'genres' => $genres,\n\t\t\t\t'streaming_links' => $streamingLinks,\n\t\t\t],\n\t\t\t'watching_status' => $item['status'],\n\t\t\t'notes' => $item['notes'],\n\t\t\t'rewatching' => (bool) $item['reconsuming'],\n\t\t\t'rewatched' => (int) $item['reconsumeCount'],\n\t\t\t'user_rating' => (is_string($rating)) ? $rating : (int) $rating,\n\t\t\t'private' => $item['private'] ?? FALSE,\n\t\t]);\n\t}", "public function column_view_details( $item ): string {\n\t\t$id = wp_unique_id();\n\n\t\t?>\n\t\t<div id=\"details-<?php echo esc_attr( $id ); ?>\" style=\"display:none;\">\n\t\t\t<table class=\"form-table\">\n\t\t\t\t<tbody>\n\t\t\t\t<?php foreach ( $item as $prop_name => $prop_val ) : ?>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<th scope=\"row\"><?php echo esc_html( $prop_name ); ?></th>\n\t\t\t\t\t\t<td><?php echo esc_html( $prop_val ); ?></td>\n\t\t\t\t\t</tr>\n\t\t\t\t<?php endforeach; ?>\n\t\t\t\t</tbody>\n\t\t\t</table>\n\t\t</div>\n\t\t<?php\n\t\treturn sprintf(\n\t\t\t'<a href=\"%s\" class=\"button button-secondary thickbox\" title=\"%s\">%s</a>',\n\t\t\t\"#TB_inline?&inlineId=details-{$id}\",\n\t\t\t__( 'Bekijk details', 'siw' ),\n\t\t\t__( 'Bekijk details', 'siw' )\n\t\t);\n\t}", "function renderOverview()\n {\n\n global $LANG;\n\n $sysLang = $this->sysLang;\n $accumObj = $this->l10ncfgObj->getL10nAccumulatedInformationsObjectForLanguage($sysLang);\n $accum = $accumObj->getInfoArray();\n $l10ncfg = $this->l10ncfg;\n\n $output = '';\n\n $showSingle = GeneralUtility::_GET('showSingle');\n\n if ($l10ncfg['displaymode'] > 0) {\n $showSingle = $showSingle ? $showSingle : 'NONE';\n if ($l10ncfg['displaymode'] == 2) {\n $noAnalysis = true;\n }\n } else {\n $noAnalysis = false;\n }\n\n // Traverse the structure and generate HTML output:\n foreach ($accum as $pId => $page) {\n $output .= '<h3>' . $page['header']['icon'] . htmlspecialchars($page['header']['title']) . ' [' . $pId . ']</h3>';\n\n $tableRows = array();\n\n foreach ($accum[$pId]['items'] as $table => $elements) {\n foreach ($elements as $elementUid => $data) {\n if (is_array($data['fields'])) {\n\n $FtableRows = array();\n $flags = array();\n\n if (!$noAnalysis || $showSingle === $table . ':' . $elementUid) {\n foreach ($data['fields'] as $key => $tData) {\n if (is_array($tData)) {\n list(, $uidString, $fieldName) = explode(':', $key);\n list($uidValue) = explode('/', $uidString);\n\n $diff = '';\n $edit = true;\n $noChangeFlag = !strcmp(trim($tData['diffDefaultValue']),\n trim($tData['defaultValue']));\n if ($uidValue === 'NEW') {\n $diff = '<em>' . $LANG->getLL('render_overview.new.message') . '</em>';\n $flags['new']++;\n } elseif (!isset($tData['diffDefaultValue'])) {\n $diff = '<em>' . $LANG->getLL('render_overview.nodiff.message') . '</em>';\n $flags['unknown']++;\n } elseif ($noChangeFlag) {\n $diff = $LANG->getLL('render_overview.nochange.message');\n $edit = true;\n $flags['noChange']++;\n } else {\n $diff = $this->diffCMP($tData['diffDefaultValue'], $tData['defaultValue']);\n $flags['update']++;\n }\n\n if (!$this->modeOnlyChanged || !$noChangeFlag) {\n $fieldCells = array();\n $fieldCells[] = '<b>' . htmlspecialchars($fieldName) . '</b>' . ($tData['msg'] ? '<br/><em>' . htmlspecialchars($tData['msg']) . '</em>' : '');\n $fieldCells[] = nl2br(htmlspecialchars($tData['defaultValue']));\n $fieldCells[] = $edit && $this->modeWithInlineEdit ? ($tData['fieldType'] === 'text' ? '<textarea name=\"' . htmlspecialchars('translation[' . $table . '][' . $elementUid . '][' . $key . ']') . '\" cols=\"60\" rows=\"5\">' . GeneralUtility::formatForTextarea($tData['translationValue']) . '</textarea>' : '<input name=\"' . htmlspecialchars('translation[' . $table . '][' . $elementUid . '][' . $key . ']') . '\" value=\"' . htmlspecialchars($tData['translationValue']) . '\" size=\"60\" />') : nl2br(htmlspecialchars($tData['translationValue']));\n $fieldCells[] = $diff;\n\n if ($page['header']['prevLang']) {\n reset($tData['previewLanguageValues']);\n $fieldCells[] = nl2br(htmlspecialchars(current($tData['previewLanguageValues'])));\n }\n\n $FtableRows[] = '<tr class=\"db_list_normal\"><td>' . implode('</td><td>',\n $fieldCells) . '</td></tr>';\n }\n }\n }\n }\n\n if (count($FtableRows) || $noAnalysis) {\n\n // Link:\n if ($this->modeShowEditLinks) {\n reset($data['fields']);\n list(, $uidString) = explode(':', key($data['fields']));\n if (substr($uidString, 0, 3) !== 'NEW') {\n $editId = is_array($data['translationInfo']['translations'][$sysLang]) ? $data['translationInfo']['translations'][$sysLang]['uid'] : $data['translationInfo']['uid'];\n $editLink = ' - <a href=\"#\" onclick=\"' . htmlspecialchars(BackendUtility::editOnClick('&edit[' . $data['translationInfo']['translation_table'] . '][' . $editId . ']=edit',\n $this->doc->backPath)) . '\"><em>[' . $LANG->getLL('render_overview.clickedit.message') . ']</em></a>';\n } else {\n $editLink = ' - <a href=\"' . htmlspecialchars($this->doc->issueCommand(\n '&cmd[' . $table . '][' . $data['translationInfo']['uid'] . '][localize]=' . $sysLang\n )) . '\"><em>[' . $LANG->getLL('render_overview.clicklocalize.message') . ']</em></a>';\n }\n } else {\n $editLink = '';\n }\n\n $tableRows[] = '<tr class=\"t3-row-header\">\n\t\t\t\t\t\t\t\t<td colspan=\"2\" style=\"width:300px;\"><a href=\"' . htmlspecialchars('index.php?id=' . GeneralUtility::_GET('id') . '&showSingle=' . rawurlencode($table . ':' . $elementUid)) . '\">' . htmlspecialchars($table . ':' . $elementUid) . '</a>' . $editLink . '</td>\n\t\t\t\t\t\t\t\t<td colspan=\"3\" style=\"width:200px;\">' . htmlspecialchars(GeneralUtility::arrayToLogString($flags)) . '</td>\n\t\t\t\t\t\t\t</tr>';\n\n if (!$showSingle || $showSingle === $table . ':' . $elementUid) {\n $tableRows[] = '<tr class=\"bgColor-20 tableheader\">\n\t\t\t\t\t\t\t\t\t<td>Fieldname:</td>\n\t\t\t\t\t\t\t\t\t<td width=\"25%\">Default:</td>\n\t\t\t\t\t\t\t\t\t<td width=\"25%\">Translation:</td>\n\t\t\t\t\t\t\t\t\t<td width=\"25%\">Diff:</td>\n\t\t\t\t\t\t\t\t\t' . ($page['header']['prevLang'] ? '<td width=\"25%\">PrevLang:</td>' : '') . '\n\t\t\t\t\t\t\t\t</tr>';\n\n $tableRows = array_merge($tableRows, $FtableRows);\n }\n }\n }\n }\n }\n\n if (count($tableRows)) {\n $output .= '<table class=\"typo3-dblist\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">' . implode('',\n $tableRows) . '</table>';\n }\n }\n\n return $output;\n }", "public function get_description() {\n return \"The user with id '$this->userid' added a new check \" .\n \"[{$this->other['user']}]=[{$this->other['info']}] for cue number \" .\n \"'{$this->other['cue']}' and guess number '{$this->other['guess']}' \" .\n \"to the elang activity course module id '$this->contextinstanceid'.\";\n }", "abstract public function transform($item);", "public function transform($item)\n {\n return [\n \"id\" => $item->id,\n \"name\" => $item->name,\n \"price\" => $item->price,\n \"available\" => $item->available\n ];\n }", "public function descriptionItem(string $item): void\n {\n [$color, $icon] = self::LOOKUP_TABLE[$item] ?? self::LOOKUP_TABLE['.'];\n\n $symbolsOnCurrentLine = $this->processed % $this->compactSymbolsPerLine;\n\n if ($symbolsOnCurrentLine >= $this->terminal->width() - 4) {\n $symbolsOnCurrentLine = 0;\n }\n\n if ($symbolsOnCurrentLine === 0) {\n $this->output->writeln('');\n $this->output->write(' ');\n }\n\n $this->output->write(sprintf('<fg=%s;options=bold>%s</>', $color, $icon));\n\n $this->processed++;\n }", "public abstract function transform($item);", "public abstract function transform($item);" ]
[ "0.5654432", "0.499808", "0.49967036", "0.4981332", "0.48205984", "0.48092818", "0.47978336", "0.47363982", "0.4709089", "0.46871734", "0.4672224", "0.4655813", "0.4651497", "0.46342453", "0.46257338", "0.46254274", "0.46060356", "0.45994958", "0.4595899", "0.45866698", "0.45673415", "0.44915798", "0.44761327", "0.44705817", "0.44539815", "0.44428182", "0.4427472", "0.44175982", "0.44140857", "0.44140857" ]
0.59515345
0
Add precision parameters to DECIMAL query
function cast_decimal_precision( $where, WP_Query $query ) { if ( ! $query->is_main_query() ) { return $where; } return str_replace( 'DECIMAL', 'DECIMAL(10,2)', $where ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getPrecision();", "protected function setPrecision($precision)\n {\n $this->options['precision'] = (int) $precision;\n }", "function testDecimalDataType() {\n $data = array(\n 'id' => 1,\n 'decimalfield' => 10.35,\n );\n $this->insertValues($data);\n $this->selectAndCheck($data);\n }", "public final function formatDecimal( int $precision = 8 ) : float\n {\n\n return \\round( $this->properties[ 'decimal' ], $precision );\n\n }", "public function decimal($name, $precision, $scale)\n\t{\n\t\treturn $this->column(__FUNCTION__, compact('name', 'precision', 'scale'));\n\t}", "public function decimal($name, $precision, $scale)\n\t{\n\t\treturn $this->column(__FUNCTION__, compact('name', 'precision', 'scale'));\n\t}", "public function decimal($precision = null, $scale = null)\n\t{\n\t\t$length = [];\n\t\tif (null !== $precision) {\n\t\t\t$length[] = $precision;\n\t\t}\n\t\tif (null !== $scale) {\n\t\t\t$length[] = $scale;\n\t\t}\n\t\treturn $this->schema->createColumnSchemaBuilder(Schema::TYPE_DECIMAL, $length);\n\t}", "public static function float_precision(mixed $cols = \"\", int $precision = 0)\n\t{\n\t\tself::$datatype = \"$cols FLOAT($precision)\";\n\t\treturn new self;\n\t}", "public function precision(): ?int;", "public function decimal($column, $precision = 8, $scale = 2)\n {\n\t\treturn $this->addColumnNew($column, [\n\t\t\t'type' => Column::TYPE_DECIMAL,\n\t\t\t'size' => 16,\n\t\t\t'scale' => $scale,\n\t\t\t'precision' => $precision\n\t\t]);\n //return $this->addColumnNew('decimal', $column, compact('precision', 'scale'));\n }", "public function setPrecision($precision)\n {\n $this->precision = $precision;\n return $this;\n }", "public function getPricePrecision()\n {\n return $this->pricePrecision;\n }", "public static function setParams($table, $nameColumn, $precision){\r\n\t\tself::$_table = $table;\r\n\t\tself::$_nameColumn = $nameColumn;\r\n\t\tself::$_precision = $precision;\r\n\t}", "public static function decimal($name, $length, $decimals = null) {\n\t\treturn new ColumnDefinition('DECIMAL', $name, array($length, $decimals));\n\t}", "public function __construct($precision = 0) {\n $this->setPrecision($precision);\n }", "public static function double_precision(mixed $cols = \"\", int $length = 10, int $decimal = 0)\n\t{\n\t\tself::$datatype = \"$cols DOUBLE PRECISION($length, $decimal)\";\n\t\treturn new self;\n\t}", "public function setPricePrecision($pricePrecision)\n {\n $this->pricePrecision = $pricePrecision;\n return $this;\n }", "public static function decimal(string $name, int $precision = 8, int $scale = 2): Column\n {\n return self::make($name, self::DECIMAL, compact('precision', 'scale'));\n }", "protected function getPrecision()\n {\n return $this->options['precision'];\n }", "public function round( Integer $precision ) {\n\t\treturn parent::round($precision->absolute());\n\t}", "public function setDecimalPlaces($decimalPlaces)\n {\n $this->decimalPlaces = $decimalPlaces;\n return $this;\n }", "public function setDecimalPlaces($decimalPlaces)\n {\n $this->decimalPlaces = $decimalPlaces;\n return $this;\n }", "function fun_prec($prec){\r\n\t\t\t\tif($prec=='vlow')\r\n\t\t\t\t\t$prec = 4.05 ;\r\n\t\t\t\telse if($prec==\"low\")\r\n\t\t\t\t\t$pre = 3.24 ;\r\n\t\t\t\telse if($prec==\"nom\")\r\n\t\t\t\t\t$prec = 2.43 ;\r\n\t\t\t\telse if($prec=='high')\r\n\t\t\t\t\t$prec = 1.62 ;\r\n\t\t\t\telse if($prec=='vhigh')\r\n\t\t\t\t\t$prec = 0.81 ;\r\n\t\t\t\telse if($prec=='ehigh')\r\n\t\t\t\t\t$prec = 0.00 ;\r\n\t\t\t\treturn $prec;\r\n\t\t\t}", "public function getPrecision()\n {\n return $this->precision;\n }", "public function getPrecision()\n {\n return $this->precision;\n }", "public static function ps_round($value, $precision = 0)\n {\n }", "public function setPrecision($scale)\n {\n $this->$precision = $scale;\n $this->calculate();\n return $this;\n }", "protected function addDecimalField($name, $maxDigits, $decimalPlaces) {\n return $this->attachField(new DecimalField($this, $name, $maxDigits, $decimalPlaces));\n }", "public function setPrecision(int $precision): self\n {\n if (!$this->type->instance() instanceof Decimal && !$this->type->instance() instanceof DateTimeOffset && !$this->type->instance() instanceof Duration && !$this->type->instance() instanceof TimeOfDay) {\n throw new ConfigurationException(\n 'unsupported_precision',\n sprintf('The property \"%s\" does not support a precision', $this->getName())\n );\n }\n\n $this->precision = $precision;\n\n return $this;\n }", "public function filterByDecimals($decimals)\n {\n $this->filter[] = $this->field('decimals').' = '.$this->quote($decimals);\n return $this;\n }" ]
[ "0.6404168", "0.61159533", "0.6095666", "0.60854954", "0.60412973", "0.60412973", "0.5964038", "0.5937565", "0.58991635", "0.5849949", "0.56843555", "0.5659312", "0.5658033", "0.5609934", "0.5568515", "0.55127704", "0.5506189", "0.5405185", "0.5397754", "0.53515804", "0.5312715", "0.5312715", "0.52805704", "0.5273793", "0.5273793", "0.52613574", "0.5220669", "0.5213468", "0.51743174", "0.5165153" ]
0.71682453
0
returns the list of available cleaners within the requested start time and duration.
public function availableCleaners(Request $request,CleanerRepository $cleanerRepository,BookingRepository $bookingRepository){ $val = new Validation(); $st = $request->query->get('startTime'); //$val->validateTime($st); $startTime = new DateTime($st); $duration = $request->query->get('duration'); $durVal = $val->validateDuration($duration); if($durVal != 'OK'){ $response = new Response(json_encode(array('error: ' => $durVal))); $response->headers->set('Content-Type', 'application/json'); return $response; } $endTime = $startTime->add(new DateInterval("PT{$duration}H")); $startTime = new DateTime($st); $startVal = $val->validateStartTime($startTime); if($startVal != 'OK'){ $response = new Response(json_encode(array('error: ' => $startVal))); $response->headers->set('Content-Type', 'application/json'); return $response; } $endVal = $val->validateEndTime($endTime); if($endVal != 'OK'){ $response = new Response(json_encode(array('error: ' => $endVal))); $response->headers->set('Content-Type', 'application/json'); return $response; } $allCleaners = $cleanerRepository->listAll(); $busyCleaners = $bookingRepository->findCleanerIdByStartTimeEndTime($startTime,$endTime); $aTmp1 =[]; foreach($allCleaners as $aV){ $aTmp1[] = $aV['cleanerId']; } $aTmp2 =[]; foreach($busyCleaners as $aV){ $aTmp2[] = $aV['cleanerId']; } $aTmp3= array_diff($aTmp1,$aTmp2); foreach($aTmp3 as $key => $value){ $availableCleaners[] = $value; } $result=[]; foreach($availableCleaners as $id){ $result[] = $cleanerRepository->findById($id); } $response = new Response(json_encode(array('availableCleaners' => $result))); $response->headers->set('Content-Type', 'application/json'); return $response; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function getWarmers()\n {\n $warmer1 = $this->getMock('ONGR\\ElasticsearchBundle\\Cache\\WarmerInterface');\n $warmer1\n ->expects($this->once())\n ->method('warmUp')\n ->with(new Search());\n $warmer1\n ->expects($this->once())\n ->method('getName')\n ->will($this->returnValue('warmer1'));\n\n $warmer2 = $this->getMock('ONGR\\ElasticsearchBundle\\Cache\\WarmerInterface');\n $warmer2\n ->expects($this->once())\n ->method('warmUp')\n ->with(new Search());\n $warmer2\n ->expects($this->once())\n ->method('getName')\n ->will($this->returnValue('warmer2'));\n\n return [$warmer1, $warmer2];\n }", "private function getCleaningAreaTime()\n {\n $maxWorkingTime = $this->batteryPower->getMaxWorkingTime();\n $maxCleaningArea = $this->floorArea->getMaxCleaningArea();\n $areaToCleanInMaxTime = $this->floorTypeSpeed->getAreaForTime($maxWorkingTime);\n $maxCleaningAreaTime = $this->floorTypeSpeed->getTimeForArea($maxCleaningArea);\n $minArea = min($areaToCleanInMaxTime, $maxCleaningArea);\n $minCleaningTime = min($maxWorkingTime, $maxCleaningAreaTime);\n return [$minArea, $minCleaningTime];\n }", "private function getCleaningAreaTime() {\n $maxWorkingTime = $this->batteryPower->getMaxWorkingTime();\n $maxCleaningArea = $this->floorArea->getMaxCleaningArea();\n $areaToCleanInMaxTime = $this->floorTypeSpeed->getAreaForTime($maxWorkingTime);\n $maxCleaningAreaTime = $this->floorTypeSpeed->getTimeForArea($maxCleaningArea);\n $minArea = min($areaToCleanInMaxTime, $maxCleaningArea);\n $minCleaningTime = min($maxWorkingTime, $maxCleaningAreaTime);\n return [$minArea, $minCleaningTime];\n }", "public function run(): array\n {\n $tasks = [];\n $i = 0;\n while (true) {\n [ $area, $cleaningTime] = $this->getCleaningAreaTime();\n\n // Cleaning\n $this->floorArea->clean($area);\n $this->batteryPower->work($cleaningTime);\n $tasks[\"cleaning_cycle_\" . $i] = $cleaningTime;\n\n //Charging Now\n $timeToCharge = $this->batteryPower->charge();\n $tasks[\"battery_charging_cycle_\" . $i] = $timeToCharge;\n if ($this->floorArea->isCleaned()) {\n break;\n }\n\n $i++;\n }\n return $tasks;\n }", "public function provide_filter ( )\n {\n return array(\n array('1:05:00', 3900),\n array('1:05:01', 3901),\n array('5:00', 300),\n array('5:05', 305),\n array('0:00', 0),\n );\n\n }", "protected function get_available_campaigns() {\n\n\t\t/**\n\t\t * cache the campaigns during the current request\n\t\t */\n\t\tif ( ! empty( $this->campaigns ) ) {\n\t\t\treturn $this->campaigns;\n\t\t}\n\n\t\t$filtered = array();\n\n\t\t$all_campaigns = tve_ult_get_campaigns( array(\n\t\t\t'get_designs' => true,\n\t\t\t'get_events' => false,\n\t\t\t'get_settings' => false,\n\t\t\t'get_logs' => false,\n\t\t\t'only_running' => true,\n\t\t) );;\n\n\t\tforeach ( $all_campaigns as $campaign ) {\n\n\t\t\t/**\n\t\t\t * if the schedule for the campaign applies (e.g. the current time is in the required interval, or a cookie exists)\n\t\t\t * we continue checking if the display settings apply\n\t\t\t *\n\t\t\t */\n\t\t\tif ( ! isset( $manager ) ) {\n\t\t\t\trequire_once TVE_Ult_Const::plugin_path( 'inc/classes/display_settings/class-thrive-display-settings-manager.php' );\n\t\t\t\t$manager = new Thrive_Ult_Display_Settings_Manager();\n\t\t\t\t$manager->load_dependencies();\n\t\t\t}\n\n\t\t\t$saved_ptions = new Thrive_Ult_Campaign_Options( $campaign->ID );\n\t\t\t$saved_ptions->initOptions();\n\n\t\t\t$available = $saved_ptions->displayCampaign();\n\n\t\t\t/**\n\t\t\t * a campaign is available if it has display settings and also has designs other than shortcodes\n\t\t\t */\n\t\t\tif ( $available && count( $campaign->designs ) ) {\n\t\t\t\t$other_than_shortcode = false;\n\t\t\t\tforeach ( $campaign->designs as $design ) {\n\t\t\t\t\tif ( $design['post_type'] !== TVE_Ult_Const::DESIGN_TYPE_SHORTCODE ) {\n\t\t\t\t\t\t$other_than_shortcode = true;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$available = $other_than_shortcode;\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * TODO: why do we check here for shortcodes if the shortcodes campaigns are loaded separately ? see line 193: $shortcode_campaigns = TU_Shortcodes::get_campaigns();\n\t\t\t *\n\t\t\t * the campaign has no display settings and has no other designs than shortcode\n\t\t\t * but a shortcode design of campaign was used\n\t\t\t *\n\t\t\t * not sure why this check is made here\n\t\t\t */\n\t\t\tif ( ! $available && in_array( $campaign->ID, array_values( TU_Shortcodes::get_campaigns() ) ) ) {\n//\t\t\t\t$available = true;\n\t\t\t}\n\n\t\t\tif ( $available ) {\n\t\t\t\t$filtered [] = $campaign;\n\t\t\t}\n\t\t}\n\n\t\t$this->campaigns = $filtered;\n\n\t\treturn $filtered;\n\t}", "public function findForwardersExpiredDue();", "public function findExpired() : iterable;", "protected function chs()\n {\n $chs = array();\n $options = $this->bootstrapOptions();\n\n foreach ($this->requests as $requestArray) {\n $request = $requestArray[0];\n $query = $requestArray[1];\n $timeout = static::requestIsSubscribe($request) ? $this->curlSubscribeTimeout : $this->curlTimeout;\n\n $ch = curl_init();\n\n array_unshift($request, $this->origin);\n\n $url = implode('/', $request) . $this->glue($query);\n\n curl_setopt_array($ch, $options);\n curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);\n curl_setopt($ch, CURLOPT_URL, $url);\n\n $chs[] = $ch;\n }\n\n return $chs;\n }", "public static function available_summoners() {\n return DB::select(DB::raw(\"SELECT characters.id, characters.name FROM characters, char_magic WHERE char_magic.character_id = characters.id AND beschworung = 'Wesen'::magic_beschworung ORDER BY name\"));\n }", "protected function defineJobs()\n {\n sleep($this->sleep);\n\n return $this->daemonsList;\n }", "function retrieveSchedulers() {\n\t\t$GLOBALS['log']->info('Gathering Schedulers');\n\t\t$executeJobs = array();\n\t\t$query \t= \"SELECT id \" .\n\t\t\t\t\"FROM schedulers \" .\n\t\t\t\t\"WHERE deleted=0 \" .\n\t\t\t\t\"AND status = 'Active' \" .\n\t\t\t\t\"AND date_time_start < \".db_convert(\"'\".TimeDate::getInstance()->nowDb().\"'\",'datetime').\" \" .\n\t\t\t\t\"AND (date_time_end > \".db_convert(\"'\".TimeDate::getInstance()->nowDb().\"'\",'datetime').\" OR date_time_end IS NULL)\";\n\t\t\t\t\n\t\t$result\t= $this->db->query($query);\n\t\t$rows=0;\n\t\t$executeTimes = array();\n\t\t$executeIds = array();\n\t\t$executeJobTimes = array();\n\t\twhile(($arr = $this->db->fetchByAssoc($result)) != null) {\n\t\t\t$focus = BeanFactory::getBean('Schedulers', $arr['id']);\n\t\t\t$executeTimes[$rows] = $this->deriveDBDateTimes($focus);\n\t\t\tif(count($executeTimes) > 0) {\n\t\t\t\tforeach($executeTimes as $k => $time) {\n\t\t\t\t$executeIds[$rows] = $focus->id;\n\t\t\t\t\t$executeJobTimes[$rows] = $time;\n\t\t\t\t}\n\t\t\t}\n\t\t\t$rows++;\n\t\t}\n\t\t$executeJobs['ids'] = $executeIds;\n\t\t$executeJobs['times'] = $executeJobTimes;\n\t\treturn $executeJobs;\n\t}", "public function getAvailabilityStarts();", "private function getDueCourses() {\t\n\n\t\t$this->relevantCourses = array();\n\n\t\t$courses = array();\n\t\t//get available courses by sections\n\t\tforeach ($this->jCustomer->checkAvailableCourses as $section => $ref_id) {\n\t\t\t$courses = $courses + $this->noUICM->getAvailableCourses($ref_id);\n\t\t}\n\n\t\t//only programs relevant on this level:\n\t\tforeach ($courses as $obj_id => $crs_data) {\n\t\t\t$crs_type = $crs_data['type'];\n\t\t\tif($crs_type === 'prg') {\n\t\t\t\t$prg_ref_id = $crs_data['refId'];\n\t\t\t\t$this->getCoursesBelowPrg($prg_ref_id); //fills this->relevantCourses\n\t\t\t}\n\t\t}\n\t\t\n\n\t\t$ret = array();\n\t\tforeach ($this->relevantCourses as $crs) {\n\t\t\n\t\t\t$crs_start_date = $crs['courseStart']; //dd.mm.YYYY\n\t\t\t$crs_start_time = $crs['courseStartTime']; //hh:MM\n\t\t\t$start_date_str = $crs_start_date .' ' .$crs_start_time;\n\n\n\t\t\t//webinars: 1 hour;\n\t\t\t//f2f: 3 days\n\t\t\t$ctype = str_replace('prg_amd_type_', '', $crs['in_subtype']);\n\t\t\tif( in_array($ctype, array(\n\t\t\t\t\t'od01','od02','od03','od04'\n\t\t\t\t\t,'fk01','fk02','fk03','fk04','fk05'\n\t\t\t\t))) {\n\t\t\t\t$ctype = 'webinar';\n\t\t\t}\n\t\t\tif( in_array($ctype, array(\n\t\t\t\t\t'odfinal'\n\t\t\t\t\t,'fkfinal'\n\t\t\t\t))) {\n\t\t\t\t$ctype = 'f2f';\n\t\t\t}\n\n\t\t\t$start_date = DateTime::createFromFormat('d.m.Y H:i', $start_date_str);\n\t\t\t$today = new DateTime('NOW');\n\n\t\t\tif ($start_date > $today) { //only future dates\n\t\t\t\t\n\t\t\t\t$diff = $today->diff($start_date);\n\n\t\t\t\t$hours = $diff->h;\n\t\t\t\t$hours = $diff->h + ($diff->d * 24);\n\n\t\t\t\tif($diff->m == 0 && $diff->y == 0) {\n\t\t\t\t\tif($ctype == 'webinar' && $hours == 1) {\n\t\t\t\t\t\tarray_push($ret, $crs);\n\t\t\t\t\t}\n\n\t\t\t\t\tif($ctype == 'f2f' && $hours == 72) {\n\t\t\t\t\t\tarray_push($ret, $crs);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn $ret;\n\t}", "public function getCollectFromCustomerReservations()\n {\n\t\t/* @var $bookingDao \\DDD\\Dao\\Booking\\Booking */\n\t\t$bookingDao = $this->getServiceLocator()->get('dao_booking_booking');\n\n\t\t$collectFromCustomerReservations = $bookingDao->getCollectFromCustomerReservations();\n\n\t\treturn $collectFromCustomerReservations;\n\t}", "public function getWorkers(){\n return WorkersResource::collection(User::WhereNotIn('type', ['C', 'EM'])->get());\n }", "public function findSuppliersExpiredDue();", "public function getAvailableTasks();", "protected function getValidTimeRange()\n {\n $order2ECCmdLog = CommandLog::where('command_name', OrderEC2DB::class)->first();\n $ec2PosCmdLog = CommandLog::where('command_name', OrderDB2POS::class)->first();\n\n $start = !empty($ec2PosCmdLog) ? $ec2PosCmdLog['last_succeed_time'] : '';\n $end = !empty($order2ECCmdLog) ? $order2ECCmdLog['last_succeed_time'] : '';\n\n return [\n 'start' => $start,\n 'end' => $end\n ];\n }", "public function query()\n { \n $bill_collection_list = CustomerDetails::with('users', 'customers.house.road.sector.territory')\n ->where('due', 0)\n ->cable()\n ->byUserTerritory();\n\n if($this->bill_collector != null) {\n $bill_collection_list->where('users_id', $this->bill_collector);\n }\n if($this->territory != null) {\n $bill_collection_list->whereHas('customers', function($query){\n $query->where('territory_id', $this->territory);\n });\n }\n if($this->sector != null) {\n $bill_collection_list->whereHas('customers', function($query){\n $query->where('sectors_id', $this->sector);\n });\n }\n if($this->road != null) {\n $bill_collection_list->whereHas('customers', function($query){\n $query->where('roads_id', $this->road);\n });\n }\n if($this->daterange != null) {\n $explode_date = explode(\"-\", $this->daterange);\n $start_date = str_replace(' ', '', $explode_date[0]);\n $end_date = str_replace(' ', '', $explode_date[1]);\n $begin_time = Carbon::createFromFormat('d/m/Y', $start_date)->setTime(0, 0, 0);\n $finish_time = Carbon::createFromFormat('d/m/Y', $end_date)->setTime(23, 59, 59);\n $bill_collection_list->whereBetween('timestamp', [$begin_time, $finish_time]);\n }\n \n return $this->applyScopes($bill_collection_list);\n }", "public static function get_unfree_days($startDate, $Duration)\n {\n $month = date(\"m\", strtotime(\"+150 days\", strtotime($startDate)));\n $year = date(\"Y\", strtotime(\"+150 days\", strtotime($startDate)));\n\n $endDate = date($year . '-' . $month . '-t', strtotime($startDate));\n $unfreeDays = array();\n while (strtotime($startDate) <= strtotime($endDate)) {\n $dayofweek = date('w', strtotime($startDate));\n if ($dayofweek == 6) {\n $startDate = date(\"Y-m-d\", strtotime(\"+1 day\", strtotime($startDate)));\n continue;\n }\n $results = TimeSlots::RenderSlots($startDate, $Duration);\n if (count($results) == 0)\n array_push($unfreeDays, $startDate);\n $startDate = date(\"Y-m-d\", strtotime(\"+1 day\", strtotime($startDate)));\n }\n //if slots count return add the date to array\n //for etch to all date in month when startDate\n return $unfreeDays;\n }", "public function getFreeAndBusyWorkers() {\n\t\t$free = $this->getFreeWorkers();\n\t\treturn array(\n\t\t\t'free' => $free,\n\t\t\t'busy' => $this->workerPoolSize - $free,\n\t\t\t'total' => $this->workerPoolSize\n\t\t);\n\t}", "public function getLiveCampaigns()\r\n {\r\n // from the launch campaigns table\r\n // based on the condition the the time limit in days has not expired\r\n $adapter = $this->sql->getAdapter()->getDriver()->getConnection();\r\n \r\n $query = $adapter->execute(\"SELECT *, date_add(launch_date, INTERVAL campaign_length DAY)\r\n AS endData FROM launchcampaign WHERE (campaign_status = 1 AND draft_status = 1)\r\n AND date_add(launch_date, INTERVAL campaign_length DAY) >= CURDATE()\r\n ORDER BY endData DESC\");\r\n \r\n return $query;\r\n }", "public static function getSuggestions() {\n\n\t\t$sorted_recipes = array();\n\t\t//Seperate the Recipes that canBeCooked\n\t\tforeach(self::$recipes as $recipe) {\n\t\t\tif ($recipe->canBeCooked()) {\n\t\t\t\t$sorted_recipes[] = $recipe;\n\t\t\t}\n\t\t}\n\n\t\t//If there are matches found:\n\t\tif (!empty($sorted_recipes)) {\n\t\t\t//Sort the Recipe based in ingredients which will expire soon\n\t\t\tusort($sorted_recipes, function($a, $b) {\n\t\t\t\treturn ($a->cook_by > $b->cook_by);\n\t\t\t});\n\t\t}\n\t\t//Return sorted array\n\t\treturn $sorted_recipes;\n\t}", "public static function getDelinquency()\n\t\t{\n\t\t\t//get required values..\n\t\t\t\n\t\t\t$compliance= self::getComplianceData();\n\t\t\t$reminder = ReminderMaster::getActiveReminder();\n\t\t\t$remDate = $reminder->getLastRemDate();\n\t\t\t$startDate = self::getYearStartDate();\n\t\t\t$endDate = self::getYearEndDate();\n\n\t\t\t\n\t\t\t//get all months for the current year till this month end (including this month)\n\t\t\t$dayArray = CommonHelpers::getInbetweenMonthend($startDate,$remDate);\n\n\t\t\t//check if end date for active year is before the rem date...\n\t\t\t$res = array_search($endDate,$dayArray);\n\t\t\tif (!$res):\n\t\t\t\t//if no then remove the two elements at the end where\n\t\t\t\t//to give two months time before the reminder date.\n\t\t\t\tarray_pop($dayArray);\n\t\t\t\tarray_pop($dayArray);\n\t\t\telse:\n\t\t\t\t//if yes, truncate the array only to the year end date.\n\t\t\t\t$position = $res-sizeof($dayArray) + 1;\n\t\t\t\tarray_splice($dayArray,$position); \t\n\t\t\tendif;\n\n\t\t\t//reindex array\t\n\t\t\t$recomp = ArrayHelper::index($compliance,null,'centreID'); \n\t\t\t\n\t\t\t//now find which centres are fully compliant\n\t\t\t$fullCompCentres=array();\n\t\t\tforeach ($recomp as $key=>$value):\n\t\t\t\tif(sizeof($value) >= sizeof($dayArray))\n\t\t\t\t$fullCompCentres[]=$key;\n\t\t\tendforeach;\n\n\t\t\t//get centre code of all centres\n\t\t\t$query = new Query();\n\t\t\t$centres=\t$query->select(['name','wpLocCode','code','_id'=>false])\n\t\t\t\t\t\t->from ('centres')\n\t\t\t\t\t\t->where(['status'=>Centres::STATUS_ACTIVE])\n\t\t\t\t\t\t->all();\n\t\t\t\n\t\t\tforeach($centres as $centre):\n\t\t\t\t\t$centresCode[] = (int)Arrayhelper::getValue($centre,'wpLocCode');\n\t\t\tendforeach;\n\n\t\t\t//get partially compliant centres \n\t\t\t$compCentresAll = array_unique(Arrayhelper::getColumn($compliance, function($element){\n\t\t\t\treturn (int)$element['centreID'];\n\t\t\t}));\n\n\t\t\t$partCompCentres = array_diff($compCentresAll,$fullCompCentres);\n\n\t\t\t//get totally non compliant centres\n\t\t\t$res1 = array_diff($compCentresAll,$centresCode);\n\t\t\t$res2 = array_diff($centresCode, $compCentresAll);\n\t\t\t$zeroCompCentres = array_merge($res1,$res2);\n\t\t\t\n\t\t\t//check all months array & create array of noncompliance month\n\t\t\t$comptemp = array();\n\t\t\t$comp = array();\n\n\t\t\tfor ($i=0; $i<sizeof($compliance); $i++):\n\t\t\t\t$comptemp[$compliance[$i]['centreID']][] =\t\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t'forDate'=>$compliance[$i]['forDate'],\n\t\t\t\t\t\t\t'centreID'=>(int)$compliance[$i]['centreID']\n\t\t\t\t\t\t];\n\t\t\tendfor;\n\n\t\t\tforeach ($comptemp as $key=>$value):\n\t\t\t\t$comp[$key]=ArrayHelper::getColumn($value,'forDate');\n\t\t\tendforeach;\n\n\t\t\tforeach ($comp as $key=>$value):\n\t\t\t\t$diff= array_values(array_diff($dayArray,$value));\n\t\t\t\tforeach ($diff as &$val):\n\t\t\t\t\t$val = \\Yii::$app->formatter->asDate($val, 'php:m-Y');\n\t\t\t\tendforeach;\n\t\t\t\t$nonCompliance[$key][]=$diff;\n\t\t\tendforeach;\n\n\t\t\t$complianceDetails = \n\t\t\t\t[\n\t\t\t\t\t'fullCompliance'=>$fullCompCentres, \n\t\t\t\t\t'partCompliance'=>$partCompCentres,\n\t\t\t\t\t'zeroCompliance'=>$zeroCompCentres,\n\t\t\t\t\t'noncomplianceMonths'=>$nonCompliance,\n\t\t\t\t\t'complianceConsolidated'=>$compliance, \n\t\t\t\t];\n\t\t\treturn $complianceDetails;\n\t\t}", "public function getCandidates();", "public function getDevicesScheduledToRetire(): GetDevicesScheduledToRetireRequestBuilder {\n return new GetDevicesScheduledToRetireRequestBuilder($this->pathParameters, $this->requestAdapter);\n }", "public function getFreeBusy(Request $request)\n {\n $service = new Google_Service_Calendar($this->client);\n $this->client->setAccessToken(Auth::user()->gcalendar_credentials);\n $userId = Auth::id();\n $calendarId = Calendar::where('user_id', $userId)->first()->calendar_id;\n\n $date_from = Carbon::now()->toRfc3339String();\n $date_to = Carbon::now()->addDays(7)->toRfc3339String();\n\n $freebusy_req = new Google_Service_Calendar_FreeBusyRequest();\n $freebusy_req->setTimeMin($date_from);\n $freebusy_req->setTimeMax($date_to);\n $freebusy_req->setTimeZone(env('APP_TIMEZONE'));\n\n //dd($freebusy_req);\n\n $item = new Google_Service_Calendar_FreeBusyRequestItem();\n $item->setId($calendarId);\n\n $freebusy_req->setItems(array($item));\n\n $query = $service->freebusy->query($freebusy_req);\n\n $response_calendar = $query->getCalendars();\n\n //$busy = $response_calendar->$calendarId;\n\n $response_calendar = $service->freebusy->query($freebusy_req)->getCalendars();\n\n $busy = $response_calendar[$calendarId]->getBusy();\n //dd($busy);\n\n $freeTime = array();\n $freeTimeStart = array();\n\n $busyStart = Carbon::parse($busy[0]->getStart());\n $queryStart = Carbon::parse($date_from);\n\n if ($busyStart > $queryStart) {\n $ft = $busyStart->diffInMinutes($queryStart);\n array_push($freeTime,$ft);\n array_push($freeTimeStart,$queryStart);\n }\n\n for ($i=1; $i < count($busy) ; $i++) { \n $end = Carbon::parse($busy[$i]->getStart());\n $start = Carbon::parse($busy[$i-1]->getEnd());\n $ft = $end->diffInMinutes($start);\n array_push($freeTime,$ft);\n array_push($freeTimeStart,$start);\n }\n\n \n\n for ($i=0; $i < count($freeTime); $i++) { \n\n $collection = $this->plan($freeTime[$i]);\n $timeSpent = 0;\n foreach ($collection as $todo) {\n $title = $todo->title;\n $desc = $todo->description;\n $start = Carbon::parse($freeTimeStart[$i])->addMinutes($timeSpent);\n //$duration = $todo->duration;\n $end = Carbon::parse($start)->addMinutes($todo->duration);\n //dd($start,$end);\n $calendar = $calendarId;\n\n $this->store($title,$desc,$start,$end,$calendar);\n $timeSpent+=$todo->duration;\n \n }\n }\n\n return response()->json();\n }", "function getDatesFromRange($date_time_from, $date_time_to, $duration, $blocked_slots)\n{\n $tmp_raw = [];\n $start = Carbon\\Carbon::parse($date_time_from);\n $end = Carbon\\Carbon::parse($date_time_to);\n $diff = $end->diffInMinutes($start); //dd($diff/$duration);\n $tmp = Carbon\\Carbon::parse($start);\n //init\n $Hi_format_init = $start->format('H:i');\n $tmp_raw[''] = 'available';\n $tmp_raw[$Hi_format_init] = in_array($Hi_format_init, $blocked_slots)?'not_available':'available';\n for($i = 0; $i < ($diff/$duration); $i++){\n $tmp_next = $tmp->addMinutes($duration);\n $Hi_format = $tmp_next->format('H:i');\n //$tmp_raw[] = $tmp_next->format('H:i');\n $tmp_raw[$Hi_format] = in_array($Hi_format, $blocked_slots)?'not_available':'available';\n }\n return $tmp_raw;\n}", "public static function findAllEndingActiveServices()\n {\n $limit = self::calculateEndDate(self::REMINDER_DAYS, time());\n return self::find()\n ->where(['>=', 'end_date', time()])\n ->andWhere(['<=', 'end_date', $limit])\n ->andWhere(['status' => self::ACTIVE])\n ->andWhere(['OR',\n ['reminder' => self::DEFAULT_REMINDER],\n ['reminder' => self::REMINDER_FAILED],\n ])\n ->all();\n }" ]
[ "0.49499232", "0.49276453", "0.49030468", "0.48506382", "0.46844432", "0.46317777", "0.4620508", "0.4598668", "0.45813847", "0.457139", "0.45486444", "0.4531461", "0.45260537", "0.45108053", "0.44909447", "0.44587564", "0.445268", "0.4452208", "0.44419634", "0.44372094", "0.44262305", "0.44042674", "0.44026706", "0.43796694", "0.43715355", "0.43609333", "0.43529826", "0.43414906", "0.43306005", "0.4312186" ]
0.5285287
0
Get the text from every URL contained in UrlList
public static function getAllText($urlList) { $cache = Cache::getInstance(); $urlTextList = array(); foreach($urlList as $url) { $clearUrl = stripslashes($url); $textOfUrlCached = $cache->getSingleResultOfModuleTwoByUrl($clearUrl); if ($textOfUrlCached) { $urlTextList[$clearUrl] = $textOfUrlCached; } else { $url_headers = @get_headers($clearUrl); if (isset($url_headers[0])) { $header_array = explode(' ', $url_headers[0]); if(isset($header_array[1]) && in_array($header_array[1], self::$include_header_code) && !isset($urlTextList[$clearUrl])) { $html = self::getHtmlOfURL($clearUrl); if($html != null) { $urlTextList[$clearUrl] = self::getTextFromHtml($html); $cache->setSingleResultInModuleTwo($clearUrl, $urlTextList[$clearUrl]); } } } } } return $urlTextList; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getLinktexts($url)\n {\n if (!empty($this->linktexts[$url])) {\n return $this->linktexts[$url];\n } else {\n return [];\n }\n }", "public function getUrlList($url) {\n\n //get homepage contents\n $homepage = file_get_contents($url);\n mb_convert_encoding($homepage, 'UTF-8');\n //use regex parse http:// or https:// or ftp:// url\n mb_regex_encoding('UTF-8');\n \n preg_match_all(\"/(http|https|ftp):\\/\\/[^<>[:space:]]+[[:alnum:]#?\\/&=+%_]/\", $homepage, $match);\n $list = $match[0];\n\n $recordList = Array();\n\n \n foreach ($list as $value) {\n\n //replace '/ and \";var to null string \n $result = preg_replace(\"/\\'\\/|\\\"(;var)/\", \"\", $value);\n $result = utf8_encode($result);\n // use result as url to pass \n $requestcode = strval($this->responseCode(10000, $result));\n\n if((strpos($requestcode, \"4\", 0) === 0) ||(strpos($requestcode, \"5\", 0) === 0)) {\n $temp = array(\"responseCode\" => $requestcode, \"url\" => $result);\n array_push($recordList, $temp);\n }\n \n }\n \n //use regex parse href=\"\" url\n preg_match_all(\"/(href=\\\")\\/[^<>[:space:]]+[[:alnum:]#?\\/&=+%_]/\", $homepage, $match1);\n $list1 = $match1[0];\n\n foreach ($list1 as $value) {\n\n //replace href=\" to null string\n $result = preg_replace(\"/(href=\\\")/\", \"\", $value);\n if(preg_match(\"/\\/(tw)\\//\", $result)||preg_match(\"/\\/(ysm)/\", $result)||preg_match(\"/\\/css/\", $result)) {\n // combine http://dev.muzik-online.com with \\tw\\ , \\ysm , \\css\n $string = utf8_encode('http://dev.muzik-online.com'.$result);\n // use result string as url to pass\n $requestcode = strval($this->responseCode(10000, $string));\n\n if((strpos($requestcode, \"4\", 0) === 0) ||(strpos($requestcode, \"5\", 0) === 0)) {\n $temp = array(\"responseCode\" => $requestcode, \"url\" => $string);\n array_push($recordList, $temp);\n }\n\n \n }\n else if(preg_match(\"/\\/(concert)/\", $result)||preg_match(\"/\\/(article)/\", $result)||preg_match(\"/\\/(listen)/\", $result)||preg_match(\"/\\/(download)/\", $result)||preg_match(\"/\\/(cashflow)/\", $result)||preg_match(\"/\\/(periodical)/\", $result)) {\n //combine http://dev.muzik-online.com/tw with \\concert , \\article , \\listen , \\download, \\cashflow, \\periodical\n $string = utf8_encode('http://dev.muzik-online.com/tw'.$result);\n // use result string as url to pass\n $requestcode = strval($this->responseCode(10000, $string));\n\n if((strpos($requestcode, \"4\", 0) === 0) ||(strpos($requestcode, \"5\", 0) === 0)) {\n $temp = array(\"responseCode\" => $requestcode, \"url\" => $string);\n array_push($recordList, $temp);\n }\n \n }\n else {\n //other website \n $string = utf8_encode('http:'.$result);\n $requestcode = strval($this->responseCode(10000, $string));\n\n if((strpos($requestcode, \"4\") === 0) ||(strpos($requestcode, \"5\") === 0)) {\n $temp = array(\"responseCode\" => $requestcode, \"url\" => $string);\n array_push($recordList, $temp);\n }\n }\n }\n\n return $recordList;\n }", "public function getUrlsList(){\n return $this->_get(2);\n }", "public static function getAllTextTest() {\n return self::getAllText(\n array(\n 'http://allrecipes.com/recipe/7281/chocolate-cherry-cake-i/',\n 'http://www.pillsbury.com/recipes/chocolate-cherry-bars/15d6f3ce-21b3-43fb-8cb0-b33fb4177d3e',\n 'http://allrecipes.com/recipe/39846/tomato-cold-soup-with-parmesan-cheese-ice-cream/'\n )\n );\n }", "public function getUrlS();", "function extractUrlsFromCommonCrawlIndexResults($cc_filename)\r\n{\r\n $contents = file_get_contents($cc_filename);\r\n $contents = '[' . preg_replace('/\\}\\s*\\{\"urlkey/', \"}\\n, {\\\"urlkey\", $contents) . ']';\r\n\r\n $json = json_decode($contents);\r\n\r\n foreach ($json as $k=>$obj)\r\n {\r\n echo $obj->url . \"\\n\";\r\n }\r\n}", "function getLinkinText($str){//all link start with http ftp\r\n $pattern = \"/(http|https|ftp|ftps)\\:\\/\\/[a-zA-Z0-9\\-\\.]+\\.[a-zA-Z]{2,3}(\\/\\S*)?/\";\r\n if($num_found = preg_match_all($pattern,$str , $out))\r\n {\r\n// echo \"FOUND \".$num_found.\" LINKS:\\n\";\r\n return array_unique($out[0]);\r\n } else return null;\r\n}", "public function listUrls()\n {\n return $this->request('list');\n }", "public static function annotateTexts(array $urlTextList, $confidence = SPOTLIGHT_DEFAULT_CONFIDENCE)\n {\n $annotateResults = array();\n\n foreach ($urlTextList as $url => $text)\n {\n $annotateResults[$url] = self::annotate($text, $confidence);\n }\n return $annotateResults;\n }", "function getUrlFromText($text)\n\n\t{\n\n\t\tpreg_match('#\\bhttps?://[^,\\s()<>]+(?:\\([\\w\\d]+\\)|([^,[:punct:]\\s]|/))#', $text, $matches);\n\n\t\t// print_r($matches);\n\n\t\treturn $matches[0];\n\n\t}", "function getTweetContent($page)\n{\n return substr($page->text(), 0, 118) . ' ' . \"http://google.com/\";\n// return substr($page->text(), 0, 120) . ' ' . $page->url();\n}", "public abstract function getExternalLinks();", "public static function urlInfos($url){\n\treturn Site::urlInfos($url);\n }", "public function parseEtfs($url);", "private function _fetch_twitterlist($url = ''){\n \n try{\n // $url ='http://search.twitter.com/search.json?ref='.$list.'&rpp=5';\n $ch = curl_init();\n curl_setopt($ch, CURLOPT_URL, $url);\n curl_setopt($ch, CURLOPT_USERAGENT, \"LaunchBoard Mozilla Parl\");\n curl_setopt($ch, CURLOPT_HEADER, 0);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($ch, CURLOPT_TIMEOUT, 10);\n $output = json_decode(curl_exec($ch));\n curl_close($ch);\n return $output;\n } catch (Exeption $e){\n return null;\n } \n }", "function FindUrlsHTML($content) {\t\n\t$urls = '(http|www|ftp)';\n\t$ltrs = '\\w';\n\t$gunk = '/#~;:.?+=&%@!\\-{}\\[\\]\\.';\n\t$punc = '.:?\\-';\n\t$any = \"$ltrs$gunk$punc\";\n\tpreg_match_all(\"{\\b$urls:[$any]+?(?=[$punc]*[^$any]|$)}x\", $content, $matches);\n\t\n\tforeach ($matches[0] as $u) {\n\t\t//if(!eregi(\".gif\",$u) && !eregi(\".jpg\",$u) && !eregi(\".jpeg\",$u) && !eregi(\".css\",$u) && !eregi(\".js\",$u)) {\t\n\t\t## look for hash\n\t\t$pos=strpos($u,\"#\");\n\t\t\tif($pos===false || $pos !=\"0\") {\n\t\t\t$href=(!eregi(\"http\",$u)) ? \"http://\".$u : $u;\n\t\t\t$content=str_replace($u,'<a href=\"'.$href.'\">'.$u.'</a>',$content);\n\t\t\t} \t\n\t\t//}\n\t}\nreturn $content;\n}", "public function getLinks();", "public function getURLs() {\n return $this->doc->getElementsByTagName(\"a\");\n }", "protected function findListOfUrl($source){\n //preg_match_all(\"/<p class=\\\"info\\\"> <span class=\\\"url\\\">[a-zA-Z\\.\\/(<b>)(<\\/b>)0-9\\-#&_;+?=\\[\\]\\(\\)\\\"\\'\\$\\:%áčďéěíňóřšťúůýžÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ\\<\\>~,!]*<\\/span>/i\", $source, $match);\n preg_match_all(\"/<a class=\\\"uri\\\" href=\\\"http:\\/\\/([a-zA-Z0-9-]*\\.)+[a-zA-Z]{2,4}/i\", $source, $match);\n return $match;\n }", "function getDomainsWPEHosted($wpeClientUrlListUrl) {\n $domains = array(\"techcrunch.com\",\"news.cnet.com\");\n \n return $domains;\n}", "public function parseListUrl() {\n// $url = \"https://www.tkkbs.sk/search.php?rstext=pozvanka&rskde=tsl\";\n $html = file_get_contents($this->url);\n// $html = file_get_contents($this->url);\n\n //Instantiate the DOMDocument class.\n $htmlDom = new DOMDocument;\n\n //Parse the HTML of the page using DOMDocument::loadHTML\n @$htmlDom->loadHTML($html);\n\n $finder = new DomXPath($htmlDom);\n $classBody=\"gb-entry-content\";\n\n $prayersBody = $finder->query(\"//*[contains(@class, '$classBody')]\");\n\n\n $className=\"gb-author-name\";\n $prayersTitle = $finder->query(\"//*[contains(@class, '$className')]\");\n\n\n //Loop through the DOMNodeList.\n //We can do this because the DOMNodeList object is traversable.\n foreach($prayersTitle as $link){\n\n //Get the link text.\n $linkText = $link->nodeValue;\n\n\n //Add the link to our $extractedLinks array.\n $extractedTitle[] = array(\n 'user' => trim(preg_replace('/\\t/', '', $linkText))\n );\n }\n\n\n foreach($prayersBody as $link){\n\n //Get the link text.\n $linkText = $link->nodeValue;\n\n\n //Add the link to our $extractedLinks array.\n $extractedBody[] = array(\n 'body' => trim(preg_replace('/\\t/', '', $linkText)),\n 'organization' => 649\n );\n }\n\n $merged = array_replace_recursive($extractedTitle,$extractedBody);\n\n $this->createPrayer($merged);\n }", "function follow_links($url){\n global $crawled;\n global $crawling;\n global $value;\n if(!in_array($url,$crawled)){\n if(!in_array($url,$crawling)){\n $crawled[] = $url;\n }\n }\n $doc = new DOMDocument();\n @$doc->loadHTML(@file_get_contents($url));\n $value = details($url);\n $linklist = $doc->getElementsByTagName(\"a\");\n foreach($linklist as $link){\n $l = $link->getAttribute(\"href\");\n if (!in_array($l, $crawled)) {\n if(!in_array($l,$crawling)){\n $crawling[] = $l;\n }\n }\n }\n $value = details($url);\n echo \"Title:\".$value[0].\"\\n\"; // print title\n echo \"Description:\".$value[1].\"\\n\"; // print Description\n echo \"keywords\".$value[2].\"\\n\"; // print keywords if any\n echo \"URL:\".$value[3].\"\\n\"; // print URL of crawled \n echo \"<hr/> \\n\"; // hr tag to remove cluttering\n }", "function getFileList($url) {\n $outputBuffer = array();\n\n error_reporting(0); //404 reports a warning i dont want\n $var = file_get_contents($url);\n error_reporting(1);\n\n if ($var != \"\") {\n preg_match_all(\"/a[\\s]+[^>]*?href[\\s]?=[\\s\\\"\\']+\" .\n \"(.*?)[\\\"\\']+.*?>\" . \"([^<]+|.*?)?<\\/a>/\", $var, &$matches);\n\n $matches = $matches[1];\n\n foreach ($matches as $var) {\n $ext = pathinfo($var, PATHINFO_EXTENSION);\n if ($ext == \"jpg\" | $ext == \"png\" | $ext == \"gif\") {\n $outputBuffer[] = $var;\n }\n }\n }\n return $outputBuffer;\n}", "private function getContent($url)\n {\n $handle = curl_init($url);\n\n curl_setopt($handle, CURLOPT_RETURNTRANSFER, TRUE);\n curl_setopt($handle, CURLOPT_TIMEOUT, 60);\n curl_setopt($handle, CURLOPT_FOLLOWLOCATION, 1);\n\n /* Get the HTML or whatever is linked in $url. */\n $response = curl_exec($handle);\n // response total time\n $time = curl_getinfo($handle, CURLINFO_TOTAL_TIME);\n /* Check for 404 (file not found). */\n $httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);\n\n curl_close($handle);\n\n return [$response, $httpCode, $time];\n }", "protected function findListOfUrl($source){\n //preg_match_all(\"/<p class=\\\"info\\\"> <span class=\\\"url\\\">[a-zA-Z\\.\\/(<b>)(<\\/b>)0-9\\-#&_;+?=\\[\\]\\(\\)\\\"\\'\\$\\:%áčďéěíňóřšťúůýžÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ\\<\\>~,!]*<\\/span>/i\", $source, $match);\n preg_match_all(\"/<div class=ro>http:\\/\\/([a-zA-Z0-9-]*\\.)+[a-zA-Z]{2,4}/i\", $source, $match);\n return $match;\n }", "static function gather($xbel)\n\t{\n\t\t$gatherer = new URLGatherer();\n\t\t$xbel->visit($gatherer);\n\t\treturn $gatherer->urls;\n\t}", "function truncator_find_urls($text, $tidy=true)\n{\n\t// Pattern is from 1 cassis.js (thanks Tantek!), slightly modified to not look for twitter names\n\t// E.G. beforehand it would return @tantek for @tantek.com. This function is just interested in addresses, not twitter names\n\t$pattern = '/(?:(?:(?:(?:http|https|irc)?:\\\\/\\\\/(?:(?:[!$&-.0-9;=?A-Z_a-z]|(?:\\\\%[a-fA-F0-9]{2}))+(?:\\\\:(?:[!$&-.0-9;=?A-Z_a-z]|(?:\\\\%[a-fA-F0-9]{2}))+)?\\\\@)?)?(?:(?:(?:[a-zA-Z0-9][-a-zA-Z0-9]*\\\\.)+(?:(?:aero|arpa|asia|a[cdefgilmnoqrstuwxz])|(?:biz|b[abdefghijmnorstvwyz])|(?:cat|com|coop|c[acdfghiklmnoruvxyz])|d[ejkmoz]|(?:edu|e[cegrstu])|f[ijkmor]|(?:gov|g[abdefghilmnpqrstuwy])|h[kmnrtu]|(?:info|int|i[delmnoqrst])|j[emop]|k[eghimnrwyz]|l[abcikrstuvy]|(?:mil|museum|m[acdeghklmnopqrstuvwxyz])|(?:name|net|n[acefgilopruz])|(?:org|om)|(?:pro|p[aefghklmnrstwy])|qa|r[eouw]|s[abcdeghijklmnortuvyz]|(?:tel|travel|t[cdfghjklmnoprtvwz])|u[agkmsyz]|v[aceginu]|w[fs]|y[etu]|z[amw]))|(?:(?:25[0-5]|2[0-4][0-9]|[0-1][0-9]{2}|[1-9][0-9]|[1-9])\\\\.(?:25[0-5]|2[0-4][0-9]|[0-1][0-9]{2}|[1-9][0-9]|[0-9])\\\\.(?:25[0-5]|2[0-4][0-9]|[0-1][0-9]{2}|[1-9][0-9]|[0-9])\\\\.(?:25[0-5]|2[0-4][0-9]|[0-1][0-9]{2}|[1-9][0-9]|[0-9])))(?:\\\\:\\\\d{1,5})?)(?:\\\\/(?:(?:[!#&-;=?-Z_a-z~])|(?:\\\\%[a-fA-F0-9]{2}))*)?)(?=\\\\b|\\\\s|$)/';\n\n\t$c = preg_match_all($pattern, $text, $m);\n\n\tif($c)\n\t{\n\t\t// Normalise\n\t\t$links = array_values($m[0]);\n\n\t\tob_start();\n\t\t$links = array_map(function($value) use ($tidy) {\n\t\t\treturn $tidy ? web_address_to_uri($value, true) : $value;\n\t\t}, $links);\n\t\tob_end_clean();\n\n\t\t// $links = ['http://someurl.tld', •••]\n\n\t\treturn $links;\n\t}\n\n\treturn array();\n}", "public function getLinks(){\r\n $html = @file_get_contents($this->current_url); \r\n preg_match_all('/<a href=\"(.*?)\"/', $html, $matches); // Inserts all the found links into an array. \r\n \r\n // Appends every found link to the array \"all_links\".\r\n foreach($matches[1] as $m){\r\n $is_link = strpos($m, 'http') or strpos($m, 'www'); // To verify if it's already a valid link (http or www in it).\r\n \r\n // If it's not a valid link, it adds the main url before the link.\r\n if($is_link === false){\r\n array_push($this->all_links, $this->main_url . $m); \r\n /*echo $this->main_url . $m . PHP_EOL;*/\r\n }\r\n // If it's a valid link.\r\n else{\r\n array_push($this->all_links, $m); \r\n /*echo $m . PHP_EOL;*/\r\n } \r\n } \r\n }", "private function extractUrls($html)\n {\n preg_match_all($this->urlRegEx, $html, $matches);\n\n foreach ($matches[0] as $url) {\n $this->addUrl($url);\n }\n\n return $this->cacheObjects;\n }", "public function retrieveUrl()\n {\n preg_match('/(.*)\\<a href\\=\\\"(.*)\\\"\\>\\[link\\]\\<\\/a\\>/i', $this->itemContent, $matches);\n if (count($matches) != 3) {\n return $url;\n }\n\n return $matches[2];\n }" ]
[ "0.6423402", "0.62335306", "0.6058975", "0.58637875", "0.58463764", "0.57932407", "0.5756893", "0.5695485", "0.5669617", "0.55877477", "0.55504435", "0.5498411", "0.54086256", "0.5403103", "0.5400555", "0.5371729", "0.5364746", "0.5361148", "0.5303805", "0.5298918", "0.52934164", "0.52649593", "0.524303", "0.52423614", "0.52417946", "0.5239931", "0.52337086", "0.52334744", "0.52175087", "0.5206612" ]
0.74317163
0
Get all text of tests urls (used to test this module)
public static function getAllTextTest() { return self::getAllText( array( 'http://allrecipes.com/recipe/7281/chocolate-cherry-cake-i/', 'http://www.pillsbury.com/recipes/chocolate-cherry-bars/15d6f3ce-21b3-43fb-8cb0-b33fb4177d3e', 'http://allrecipes.com/recipe/39846/tomato-cold-soup-with-parmesan-cheese-ice-cream/' ) ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getTestUrl()\n {\n return $this->getUrl('sync/test/index');\n }", "public function getUrlS();", "public function provideURLTests()\n {\n return [\n // Non-domain tests\n [null, 'de_DE', false, 'home', '/german/'],\n [null, 'de_DE', false, 'about', '/german/about-us/'],\n [null, 'de_DE', false, 'staff', '/german/about-us/my-staff/'],\n // Since de_DE is the only locale on the www.example.de domain, ensure that the locale\n // isn't unnecessarily added to the link.\n // In this case disable_default_prefix is ignored\n // See https://github.com/tractorcow/silverstripe-fluent/issues/75\n ['www.example.de', 'de_DE', false, 'home', '/'],\n ['www.example.de', 'de_DE', false, 'about', '/about-us/'],\n ['www.example.de', 'de_DE', false, 'staff', '/about-us/my-staff/'],\n\n // Test domains with multiple locales\n // - es_ES non default locale\n ['www.example.com', 'es_ES', false, 'home', '/es_ES/'],\n ['www.example.com', 'es_ES', false, 'about', '/es_ES/about-us/'],\n ['www.example.com', 'es_ES', false, 'staff', '/es_ES/about-us/my-staff/'],\n // - en_US default locale\n ['www.example.com', 'en_US', false, 'home', '/usa/'],\n ['www.example.com', 'en_US', false, 'about', '/usa/about-us/'],\n ['www.example.com', 'en_US', false, 'staff', '/usa/about-us/my-staff/'],\n // - en_US default locale, but with disable_default_prefix on\n ['www.example.com', 'en_US', true, 'home', '/'],\n ['www.example.com', 'en_US', true, 'about', '/about-us/'],\n ['www.example.com', 'en_US', true, 'staff', '/about-us/my-staff/'],\n\n // Test cross-domain links include the opposing domain\n // - to default locale\n ['www.example.de', 'en_US', true, 'home', 'http://www.example.com/'],\n ['www.example.de', 'en_US', true, 'staff', 'http://www.example.com/about-us/my-staff/'],\n // - to non defalut locale\n ['www.example.de', 'es_ES', true, 'home', 'http://www.example.com/es_ES/'],\n ['www.example.de', 'es_ES', true, 'staff', 'http://www.example.com/es_ES/about-us/my-staff/'],\n ];\n }", "public function getLinktexts($url)\n {\n if (!empty($this->linktexts[$url])) {\n return $this->linktexts[$url];\n } else {\n return [];\n }\n }", "public function getTests(): string\n {\n $result = '';\n $schemes = $this->getSecurityScehemes();\n // Public\n if (count($schemes) === 0) {\n return $this->getTestAllow() . $this->getTestDeny();\n }\n\n // Private\n $result = '';\n foreach ($schemes as $scheme => $scopes) {\n if (!is_string($scheme)) {\n throw new Exception(\"bad security scheme '$scheme' found\");\n }\n $security = $this->set->securitySchemeGet($scheme);\n if (is_null($security)) {\n echo \"security scheme '$scheme' is not defined\\n\";\n continue;\n }\n\n $result .= $this->getTestAllow($scheme, $security, $scopes);\n $result .= $this->getTestDeny($scheme, $security, $scopes);\n }\n\n return $result;\n }", "public function getLinks();", "public static function annotateTextsTest()\n {\n return self::annotateTexts(\n array(\n 'http://www.healthline.com/health/food-nutrition/pineapple-juice-benefits' => 'Chicken, pineapple, avocado, and black beans bring all of the flavors of Cuba to romaine lettuce! I came up with this recipe to use leftover chicken in a way that combines all of the delicious Cuban flavors I grew up with.'\n ));\n }", "public function getTests()\n {\n return $this->resolveTests($this->includeTests, $this->excludeTests);\n }", "public function getLocalizedUrls()\n {\n return $this->localized_urls;\n }", "public function urlAbsoluteProvider()\n {\n return [\n [\n 'http://example.com',\n '/test',\n 'http://example.com/test'\n ],\n [\n 'http://example.com/',\n '/test',\n 'http://example.com/test'\n ],\n [\n 'http://example.com/',\n '/test/sub',\n 'http://example.com/test/sub'\n ],\n [\n 'http://example.com/',\n 'http://example2.com',\n 'http://example2.com'\n ],\n [\n 'http://example.com/',\n '//example2.com',\n 'http://example2.com'\n ],\n [\n 'https://example.com/',\n '//example2.com',\n 'https://example2.com'\n ],\n [\n 'https://example.com/',\n '#title',\n 'https://example.com#title'\n ],\n [\n 'https://example.com/',\n 'test',\n 'https://example.com/test'\n ],\n [\n 'https://example.com/',\n 'javascript:void(0);',\n 'javascript:void(0);'\n ],\n [\n __DIR__.'/../data/index.html',\n 'http://facebook.com',\n 'http://facebook.com',\n true //local file\n ],\n [\n 'http://toastytech.com/evil/',\n '../links/index.html',\n 'http://toastytech.com/links/index.html',\n ],\n [\n 'http://toastytech.com/evil/evil2/',\n '../../links/index.html',\n 'http://toastytech.com/links/index.html',\n ],\n ];\n }", "function &exests_get_all()\n{\n\tstatic $TEXT = NULL;\n\tif (is_null($TEXT))\n\t{\n\t\t$TEXT = array(\n\t\t\tEXESTS_RIGHT => __('Right'),\n\t\t\tEXESTS_PARTIALLY_RIGHT => __('Partially right'),\n\t\t\tEXESTS_WRONG_ANSWER => __('Wrong answer'),\n\t\t\tEXESTS_TLE => __('Time limit exceeded'),\n\t\t\tEXESTS_SIGKILL => __('Terminated by SIGKILL'),\n\t\t\tEXESTS_SIGSEGV => __('Illegal access to memeory'),\n\t\t\tEXESTS_SIGNAL => __('Terminated by signal'),\n\t\t\tEXESTS_ILLEGAL_CALL => __('Illegal system call'),\n\t\t\tEXESTS_EXIT_NONZERO => __('Non-zero exit code'),\n\t\t\tEXESTS_SYSTEM_ERROR => __('System error')\n\t\t);\n\t}\n\treturn $TEXT;\n}", "public function getHtmlEntitiesSample() {\n return $GLOBALS['base_url'] . '/' . $this->getModulePath('aggregator') . '/tests/modules/aggregator_test/aggregator_test_title_entities.xml';\n }", "public static function getAllText($urlList)\n {\n $cache = Cache::getInstance();\n\n $urlTextList = array();\n foreach($urlList as $url)\n {\n $clearUrl = stripslashes($url);\n \n $textOfUrlCached = $cache->getSingleResultOfModuleTwoByUrl($clearUrl);\n \n if ($textOfUrlCached)\n {\n $urlTextList[$clearUrl] = $textOfUrlCached;\n }\n else\n {\n\n $url_headers = @get_headers($clearUrl);\n if (isset($url_headers[0]))\n {\n $header_array = explode(' ', $url_headers[0]);\n \n if(isset($header_array[1]) && in_array($header_array[1], self::$include_header_code) && !isset($urlTextList[$clearUrl]))\n {\n $html = self::getHtmlOfURL($clearUrl);\n \n if($html != null)\n {\n $urlTextList[$clearUrl] = self::getTextFromHtml($html);\n \n $cache->setSingleResultInModuleTwo($clearUrl, $urlTextList[$clearUrl]);\n }\n }\n }\n }\n }\n return $urlTextList;\n }", "public function parseContentTestDataProvider() {\n\t\treturn array(\n\t\t\t'Image urls are properly replaced' => array('<img src=\"fileadmin/secure/image.jpg\">', '<img src=\"securedl/999/4%2C7%2C8%2C3/86400/abcdefgh/fileadmin/secure/image.jpg\">'),\n\t\t\t'Image urls with strange cases are properly replaced' => array('<img src=\"fileadmin/secure/image.jPg\">', '<img src=\"securedl/999/4%2C7%2C8%2C3/86400/abcdefgh/fileadmin/secure/image.jPg\">'),\n\t\t\t'XHTML Image urls are properly replaced' => array('<img src=\"fileadmin/secure/image.jpg\" />', '<img src=\"securedl/999/4%2C7%2C8%2C3/86400/abcdefgh/fileadmin/secure/image.jpg\" />'),\n\t\t\t'Link urls are properly replaced' => array('<a href=\"fileadmin/secure/image.jpg\">', '<a href=\"securedl/999/4%2C7%2C8%2C3/86400/abcdefgh/fileadmin/secure/image.jpg\">'),\n\t\t\t'Source urls are properly replaced' => array('<source src=\"fileadmin/secure/image.jpg\">', '<source src=\"securedl/999/4%2C7%2C8%2C3/86400/abcdefgh/fileadmin/secure/image.jpg\">'),\n\t\t\t'Image urls in not secured directories are ignored' => array('<img src=\"fileadmin/not-secure/image.jpg\">', '<img src=\"fileadmin/not-secure/image.jpg\">'),\n\t\t\t'Image urls with not configured types are ignored' => array('<img src=\"fileadmin/secure/image.gif\">', '<img src=\"fileadmin/secure/image.gif\">'),\n\t\t\t'Link urls with not configured types are ignored' => array('<a href=\"fileadmin/secure/file.doc\" target=\"_blank\" title=\"Click to view the document (PDF, DOC, &hellip;)\">', '<a href=\"fileadmin/secure/file.doc\" target=\"_blank\" title=\"Click to view the document (PDF, DOC, &hellip;)\">'),\n\t\t\t'Link urls with configured types are not ignored' => array('<a href=\"fileadmin/secure/file.pdf\" target=\"_blank\" title=\"Click to view the document (PDF, DOC, &hellip;)\">', '<a href=\"securedl/999/4%2C7%2C8%2C3/86400/abcdefgh/fileadmin/secure/file.pdf\" target=\"_blank\" title=\"Click to view the document (PDF, DOC, &hellip;)\">'),\n\t\t);\n\t}", "function CPT_get_all_texts( ) {\n\treturn plugin_config_get( 'CPT_texts', array(), ALL_USERS, ALL_PROJECTS );\n}", "public function testUrl() : void\n {\n $contents = $this->getFileContents($this->targetFile('index.html'));\n\n self::assertContains('\"magic-link.html', $contents);\n self::assertContains('Another page', $contents);\n }", "public function testGetUrl()\n {\n $this->assertEquals(\n self::$testUrl,\n $this->researchGroup->getUrl()\n );\n }", "public function channelUrls()\n {\n yield [\n 'http://www.twitch.tv/test_channel',\n ];\n }", "public function getUrlsList(){\n return $this->_get(2);\n }", "public function getTests()\n {\n return $this->tests;\n }", "public function tests()\n {\n return $this->tests;\n }", "public function tests()\n {\n return $this->tests;\n }", "public function listUrls()\n {\n return $this->request('list');\n }", "public function providerTestRenderTrimmedWithMoreLinkAndPath() {\n $data = [];\n // Simple path with default options.\n $data[] = ['test-path', '/test-path'];\n // Add a fragment.\n $data[] = ['test-path#test', '/test-path#test'];\n // Query specified as part of the path.\n $data[] = ['test-path?foo=bar', '/test-path?foo=bar'];\n // Empty path.\n $data[] = ['', '/%3Cfront%3E'];\n // Front page path.\n $data[] = ['<front>', '/%3Cfront%3E'];\n\n // External URL.\n $data[] = ['https://www.drupal.org', 'https://www.drupal.org'];\n $data[] = ['http://www.drupal.org', 'http://www.drupal.org'];\n $data[] = ['www.drupal.org', '/www.drupal.org'];\n\n return $data;\n }", "function getUrlFromText($text)\n\n\t{\n\n\t\tpreg_match('#\\bhttps?://[^,\\s()<>]+(?:\\([\\w\\d]+\\)|([^,[:punct:]\\s]|/))#', $text, $matches);\n\n\t\t// print_r($matches);\n\n\t\treturn $matches[0];\n\n\t}", "public function urls()\n {\n return $this->container['config']->get('apps.url', []);\n }", "public function getDistUrls(): array;", "function getPlansURLs(){\n $urls = array();\n $domain = \"https://www.studierendenwerk-ulm.de/\";\n $url = $domain.\"/essen-trinken/speiseplaene/\";\n $site = new simple_html_dom();\n $site->load_file($url);\n $as = $site->find(\"a\");\n foreach ( $as as $a ) {\n if ((strpos($a->href,\"mensa-uni\") !== false ||\n strpos($a->href,\"uni-bistro\") !== false ||\n strpos($a->href,\"cafeteria-uni-west\") !== false ||\n strpos($a->href,\"cafeteria-b-mensavital\") !== false ||\n strpos($a->href,\"rittwitzstr\") !== false ||\n strpos($a->href,\"UL\") !== false ||\n strpos($a->href,\"Bistro\") !== false ||\n strpos($a->href,\"CB\") !== false ||\n strpos($a->href,\"West\") !== false //||\n //strpos($a->href,\"HL\") !== false ||\n //strpos($a->href,\"OE\") !== false\n ) && (strpos($a->href,\".pdf\") !== false || strpos($a->href,\".PDF\") !== false)\n )\n array_push($urls,$a->href.\"\\n\");\n }\n return $urls;\n }", "public function listUrl() {\n return $this->historyService->listUrl();\n }", "public function getUrlAsString()\n {\n return $this->_urlAsString;\n }" ]
[ "0.63095194", "0.60250896", "0.5860788", "0.5798306", "0.5720965", "0.5706737", "0.5635901", "0.56092644", "0.5589292", "0.55837476", "0.5564176", "0.5561334", "0.5557323", "0.55248713", "0.55032235", "0.5484919", "0.5480074", "0.5470375", "0.546865", "0.5463863", "0.5438355", "0.5438355", "0.54318595", "0.54317063", "0.5385658", "0.5384539", "0.53772014", "0.5368398", "0.53637207", "0.5351986" ]
0.75977105
0
Update the timestamp of when this thread was last replied to.
public function lastUpdate() { DB::table('topics') ->where('topic_id', $this->id) ->update(['topic_last_reply' => time()]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function replied()\n\t{\n\t\t\n\t\t$this->reply_time = time();\n\t\t$this->save(false, \"reply_time\");\n\t\t$this->item->status->lastreply = time();\n\t\t$this->item->status->save(false, \"lastreply\");\n\t}", "public function updateTime(){\r\n\t\t$date = new DateTime();\r\n\t\t$this->_lastUpdate = date_timestamp_get($date);\t\t\r\n\t}", "protected function setLastUpdated()\n {\n $this->setFieldValue(self::FIELD_LAST_UPDATED, time);\n }", "public function notify($reply)\n {\n $this->user->notify(new ThreadWasUpdated($this->thread, $reply));\n }", "public function updated(MessageThread $messageThread)\n {\n //\n }", "public function touchLastSeen()\n {\n if ($this->isOnline()) {\n return;\n }\n\n $oldTimestamps = $this->timestamps;\n $this->timestamps = false;\n\n $this\n ->newQuery()\n ->where('id', $this->id)\n ->update(['last_seen' => $this->freshTimestamp()])\n ;\n\n $this->last_seen = $this->freshTimestamp();\n $this->timestamps = $oldTimestamps;\n }", "public function getUpdate_time()\r\n {\r\n return $this->update_time;\r\n }", "public function refreshUpdated()\n {\n $this->setUpdated(date('Y-m-d H:i:s'));\n }", "public function getTimestampUpdated();", "public function setUpdated()\n {\n $this->setUpdateTime(new \\DateTime(\"now\"));\n }", "public function getUpdatedSince()\n {\n return $this->updatedSince;\n }", "public function refreshUpdated()\n {\n $this->setUpdated(new \\DateTime());\n }", "public function refreshUpdated() {\n\t\t$this->setUpdated(new \\DateTime(\"now\"));\n\t}", "public function getLastUpdateTime()\n {\n return $this->last_update_time;\n }", "public function updateLastInteractionMoment();", "public function getUpdatedTime()\n {\n return $this->updated_time;\n }", "public function update(AbstractTimerSubject $subject): void\n {\n echo $subject->getLastRecordTime();\n }", "public function updateLastUpdated()\n {\n if(isset($this->columnList['LastUpdated'])) {\n $Date = new \\DateTime(\"now\",new \\DateTimeZone(self::DB_TIMEZONE));\n $this->LastUpdated = $Date->format(self::ISO_DATETIME);\n }\n }", "public function getReplied()\n {\n return $this->replied;\n }", "public function getTimeUpdated()\n {\n return $this->time_updated;\n }", "public function getUpdateTime()\r\n {\r\n return $this->update_time;\r\n }", "public function lastUpdate(){\r\n\t\treturn $this->_lastUpdate;\r\n\t}", "public function getUpdateTime()\n {\n return $this->update_time;\n }", "public function getUpdateTime()\n {\n return $this->update_time;\n }", "public function getUpdateTime()\n {\n return $this->update_time;\n }", "public function getUpdateTime()\n {\n return $this->update_time;\n }", "public function getUpdateTime()\n {\n return $this->update_time;\n }", "public function getUpdateTime()\n {\n return $this->update_time;\n }", "public function getUpdateTime()\n {\n return $this->update_time;\n }", "public function getUpdateTime()\n {\n return $this->update_time;\n }" ]
[ "0.7530349", "0.66134036", "0.6374762", "0.61396044", "0.6112539", "0.60803616", "0.59880906", "0.59359473", "0.59240645", "0.5911579", "0.5844459", "0.5834647", "0.5826438", "0.5818417", "0.5813253", "0.58125997", "0.5789358", "0.5758197", "0.57416755", "0.5721437", "0.56960905", "0.5650424", "0.5649568", "0.5649568", "0.5649568", "0.5649568", "0.5649568", "0.5649568", "0.5649568", "0.5649568" ]
0.77981436
0
Log a manager action showing the truncated table
public function logManagerAction() { if ($this->modx->error->status) { $this->modx->logManagerAction('database_truncate','table',$this->getProperty('t')); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function logManagerAction() {\n\n }", "function truncateAction()\n {\n $em = $this->getDoctrine()->getManager();\n $className = 'AppBundle:Jobs';\n $cmd = $em->getClassMetadata($className);\n $connection = $em->getConnection();\n $dbPlatform = $connection->getDatabasePlatform();\n $connection->query('SET FOREIGN_KEY_CHECKS=0');\n $q = $dbPlatform->getTruncateTableSql($cmd->getTableName());\n $connection->executeUpdate($q);\n $connection->query('SET FOREIGN_KEY_CHECKS=1');\n\n }", "private function deleteMainAdminLogEntry()\n\t{\n\t\tif($this->objAdmin_Store)\n\t\t{\n\t\t\t$this->objAdmin_Store->deleteEntryAfterScreening($this->m_iProfileId);\n\t\t}\n\t}", "function echo_truncate()\n {\n \tif($this->truncated)\n \t{\n \t\techo '<h4>All the tables of the database have been truncated</h4>';\n \t}\n \telse\n \t{\n \t\techo '<h4>There are no tables to truncate</h4>';\n \t}\n }", "public function actionTruncate() {\n Yii::$app->db->createCommand()->truncateTable('vm')->execute();\n\n return $this->redirect(['/vm/index']);\n }", "function post_log_activate()\n{\n post_log_create_tables();\n}", "protected function truncateTable()\n {\n $this->info('Truncating users table');\n DB::table('users')->truncate();\n\n $this->info('Truncating roles table');\n DB::table('roles')->truncate();\n\n $this->info('Truncating password_resets table');\n DB::table('password_resets')->truncate();\n\n $this->info('Truncating role_user table');\n DB::table('role_user')->truncate();\n\n $this->info('Truncating permission_role table');\n DB::table('permission_role')->truncate();\n }", "public function getLog()\n\t{\n\t\t\n $request = Mage::app()->getRequest();\n\t\t$actionName = $request->getActionName();\n $controllerName = $request->getControllerName();\n $implodedControllerName = implode(' => ', array_map('ucfirst', explode('_', $controllerName)));\n\n\t if ($this->_isLogNeeded($actionName, $implodedControllerName)) {\n\n $entity = end(explode('_', $controllerName));\n $user = Mage::getSingleton('admin/session')->getUser();\n\n\t\t\t$adminlog = Mage::getModel('adminlog/adminlog');\n\t\t\t$dynamicValues = $this->_getDynamicValues($controllerName);\n\t\t\t$currentId = $request->getParam($dynamicValues[0]);\n\t \t$storeId = $request->getParam('store');\n\t\t\t$store = Mage::getModel('core/store')->load($storeId);\n\n\t\t\tif ($user) {\n /* Get the user details */\n \n\t\t\t\t$data['user_id'] = $user->getUserId();\n\t\t\t\t$data['user_email'] = $user->getEmail();\n\t\t\t\t$data['remote_ip'] = Mage::helper('core/http')->getRemoteAddr();\n\t\t\t\t$data['store_name'] = $store->getName() ? $store->getName() : 'All store views';\n\t\t\t\t$data['controller_name'] = $implodedControllerName;\n\t\t\t\t$data['action'] = ucfirst($actionName);\n\t\t\t\t$data['full_path'] = $request->getModulename() . \"/\" . $controllerName . \"/\" . $actionName;\n\t\t\t\t$data['logged_at'] = time();\n\n\t\t\t\t$data['additional_info'] = \"\";\n\t\t\t\tif (!empty($dynamicValues)) {\n\t\t \t\tif (($actionName == \"save\") && ($dynamicValues[1] == \"catalog/product\")) {\n\t\t \t\t\t$product = $request->getParam('product');\n\t\t\t\t\t\t$data['additional_info'] = $dynamicValues[3] . $product['sku'];\n\t\t \t\t} elseif (($actionName == \"save\") && ($dynamicValues[1] == \"customer/customer\")) {\n\t\t\t\t\t\t$account = $request->getParam('account');\n\t\t\t\t\t\t$data['additional_info'] = $dynamicValues[3] . $account['firstname'] . \" \" . $account['lastname'];\n\t\t \t\t} elseif ($actionName == \"save\") {\n\t\t \t\t\t$data['additional_info'] = $dynamicValues[3] . $request->getParam($dynamicValues[4]);\n\t\t \t\t} elseif (($actionName == \"new\")) {\n\t\t \t\t \t$data['additional_info'] = \"Tried to create a new \" . $entity;\n\t\t \t\t} elseif (($actionName == \"duplicate\")) {\n\t\t \t\t\t$productId = $request->getParam('id');\n\t\t \t\t\t$_product = Mage::getModel('catalog/product')->load($productId); \n\t\t\t\t\t\t$data['additional_info'] = \"Duplicated the \" . $entity.\" \".$_product['sku'];\n\t\t \t\t} elseif (($actionName == \"delete\")) {\n\t\t \t\t \t$data['additional_info'] = \"Deleted the \" . $entity;\n\t\t \t\t}\n\n\t\t \t} else {\n\t\t \t\t$data['additional_info'] = str_replace(\" => \", \" \", $implodedControllerName) . \" section was modified.\";\n\t\t \t}\n\n try {\n \t$adminlog->setData($data)->save();\n } catch (Exception $e) {\n \tMage::getSingleton('core/session')->addError($entity . ' saved successfully. However, there occured an error while saving the log.');\n }\n\t\t\t}\n\t\t}\n\t}", "public function logsAction()\n {\n $block = $this->getLayout()->createBlock(\n 'ddg_automation/adminhtml_dashboard_tabs_logs'\n );\n $this->getResponse()->setBody($block->toHtml());\n }", "public function actionCopyRecordsIntoAccessLogTable()\n {\n echo \"\\nStart copy\";\n \n // Check if this command already was run one time\n $sql = \"SELECT id\n FROM \" . self::ACCESS_LOG_TABLE . \"\n WHERE login_session_id LIKE 'AAAAAAAAAA%' OR login_session_id = 'unknown' LIMIT 1\";\n $command = Yii::app()->db->createCommand($sql);\n $accLogId = $command->queryScalar(); \n if (!empty($accLogId)) {\n echo \"\\nThis command already was run one time\";\n return;\n }\n \n echo \"\\nRUN...\";\n \n $sql = \"SELECT user_id FROM action_log WHERE user_id > 0 GROUP BY user_id\";\n $command = Yii::app()->db->createCommand($sql);\n $users = $command->queryColumn();\n $usersCount = count($users);\n \n echo \"\\nUsers count = \" . $usersCount;\n \n if (empty($users))\n return;\n \n $transaction = Yii::app()->db->beginTransaction();\n \n try {\n echo \"\\nProgress = 0 %\";\n \n // Insert unknown users logs\n //------------------------------------------\n $this-> insertUnknownUsersLogs();\n //------------------------------------------\n \n \n // Insert logged in users logs\n //------------------------------------------\n while (count($users) > 0) {\n $curUsers = array_splice($users, 0, 100);\n \n $sql = '';\n $dataForInsert = array();\n foreach ($curUsers as $userId) {\n if (!empty($sql))\n $sql .= ' UNION ';\n\n $sql .= $this->getUsersLogsSql($userId);\n }\n\n $this->getActionLogsFromDb($sql, $dataForInsert);\n if (!empty($dataForInsert)) {\n $this->insertUserLogsData($dataForInsert);\n }\n \n echo \"\\nProgress = \" . floor( (1 - count($users)/$usersCount) * 100 ) . \" %\";\n }\n //------------------------------------------\n \n $transaction->commit();\n echo \"\\nSuccess\";\n } catch (Exception $e) {\n echo \"\\nException\";\n $transaction->rollback();\n }\n \n echo \"\\nFINISHED\";\n }", "public function logAction()\n {\n $flashMessenger = $this->_helper->FlashMessenger;\n $recordType = $this->_getParam('type');\n $recordId = $this->_getParam('id');\n if (empty($recordType) || empty($recordId)) {\n $flashMessenger->addMessage(__('Record not selected.'), 'error');\n }\n $this->view->record = array(\n 'record_type' => Inflector::classify($recordType),\n 'record_id' => (integer) $recordId,\n );\n }", "public function run()\n {\n Db::query('truncate table menus');\n $data = [\n ['id' => 1, 'name' => '通用', 'pid' => 0, 'action' => ''],\n ['id' => 2, 'name' => '通用', 'pid' => 1, 'action' => '/admin/common/index'],\n ['id' => 3, 'name' => '日志管理', 'action' => '', 'pid' => 0],\n ['id' => 4, 'name' => '日志列表', 'action' => '/admin/log/index', 'pid' => 3],\n ];\n $this->table('menus')->insert($data)->save();\n }", "public function create_tb_login_log()\n {\n $this->db->query(\"CREATE TABLE `{$this->db->dbprefix}login_log` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `login_id` int(11) NOT NULL,\n `lasttime` datetime NOT NULL,\n `agent` text NOT NULL,\n `last_activity` int(10) UNSIGNED DEFAULT NULL,\n PRIMARY KEY (`id`)\n ) ENGINE=MyISAM DEFAULT CHARSET=utf8;\");\n }", "protected function truncateTable()\n {\n // TODO: Implement truncateTable() method.\n }", "public function actionRemoveCopiedRecordsIntoAccessLogTable()\n {\n $sql = \"DELETE FROM \" . self::ACCESS_LOG_TABLE . \" \n WHERE login_session_id LIKE 'AAAAA%' OR login_session_id = 'unknown' LIMIT 5000\";\n \n $command = Yii::app()->db->createCommand($sql);\n \n echo \"\\nProgress: \";\n do {\n $rowsCount = $command->execute();\n if (empty($rowsCount))\n break;\n \n sleep(1); \n echo '.';\n } while (true);\n \n echo \"\\nFINISH\";\n }", "public function create_tb_log()\n {\n $this->db->query(\"CREATE TABLE `{$this->db->dbprefix}log` (\n `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,\n `tipe` varchar(100) NOT NULL,\n `time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,\n `user` varchar(128) DEFAULT NULL,\n `desc` varchar(255) DEFAULT NULL,\n PRIMARY KEY (`id`)\n ) ENGINE=InnoDB DEFAULT CHARSET=utf8;\");\n }", "public function handlerReset()\n {\n (new shopSdekintPluginOrderActionsModel)->truncate();\n (new shopSdekintPluginCourierCallsModel)->truncate();\n }", "public function logPostDelete(TableGatewayEvent $e)\n {\n $params = $e->getParam('statement')->getParameterContainer();\n \n $this->logger->log(\n Logger::INFO, \n 'Datensatz mit ID \"' . $params->offsetGet('where1') \n . '\" aus Tabelle \"' . $e->getTarget()->getTable() \n . '\" gelöscht'\n );\n }", "public function delLog() {\n \n try{\n $table_prifix = $this->getTablePrifix();\n $dbObj = $this->getConnectionObj();\n $dbObj->query('SET FOREIGN_KEY_CHECKS = 0');\n \n $table_names = array('log_customer',\n 'log_quote',\n 'log_summary',\n 'log_summary_type',\n 'log_url',\n 'log_url_info',\n 'log_visitor',\n 'log_visitor_info',\n 'log_visitor_online');\n \n \n foreach($table_names as $table_name){\n $dbObj->query('TRUNCATE TABLE `'.$table_prifix.$table_name.'`');\n }\n \n $dbObj->query('SET FOREIGN_KEY_CHECKS = 1');\n \n return $this->__('Log tables has been empty successfully !!');\n \n } catch (Exception $e){\n Mage::log($e->getMessage(), null, 'gts.log', true); \n return $e->getMessage(); \n }\n \n }", "public function getTable()\r\n\t{\r\n\t\treturn 'worldcuppool.user_log';\t\r\n\t}", "public function log(){\n\t\t$this->model('WorkoutModel');\n\t\t$selects = $this->model->getWorkouts();\n\t\t$logHistory = $this->model->getLog();\n\t\t$this->view('workout'.'/'.'log.php',[$selects,$logHistory]);\n\t\t$this->view->render();\n\t}", "public function md_logs_page() {\r\n\t\t// $page = (isset($_GET['page'])) ? $_GET['page'] : \"Market Reports\";\r\n\t\t$this->logs_table->type = (get_admin_page_title() == \"Market Data Logs\") ? \"Market Data\" : \"Market Reports\";\r\n\r\n\t\t$logs_table = $this->logs_table;\r\n\r\n\t include($this->admin_url . 'view/market-downloads-logs.php');\t\r\n\r\n\t}", "public static function getDeleteTableLogTables()\n {\n $result = Common::prefixTables('log_conversion',\n 'log_link_visit_action',\n 'log_visit',\n 'log_conversion_item');\n if (Db::isLockPrivilegeGranted()) {\n $result[] = Common::prefixTable('log_action');\n }\n return $result;\n }", "public static function truncate() {\n\t\t$cmd = Yii::$app->db->createCommand();\n\t\t$cmd->truncateTable(self::tableName());\n\t\t$cmd->execute();\n\t}", "public function run()\n\t{\n\t\tDB::disableQueryLog();\n\n\t\t// Uncomment the below to wipe the table clean before populating\n\t\tDB::table($this->table)->truncate();\n\n\t\tparent::run();\n\t}", "public function run()\n {\n DB::disableQueryLog();\n\n // Uncomment the below to wipe the table clean before populating\n DB::table($this->table)->truncate();\n\n parent::run();\n }", "public function table_visitor()\n {\n $this->template->load('admin_temp','log_visitor');\n }", "function logging($act=null){\n $mdbLog = MDB2::factory(DSN);\n\t\t$mdbLog->setFetchMode(MDB2_FETCHMODE_ASSOC);\n\t if(LOGGING == \"monthly\" || LOGGING == \"all\"){\n\t $strTable = (LOGGING==\"monthly\"?LOGGING_PREFIX.date(\"Ym\"):LOGGING_PREFIX.\"all\");\n\t $_query = \"SHOW TABLES FROM db_bcms LIKE '\".$strTable.\"'\";\n\t $res = $mdbLog->queryAll($_query);\n\t if (PEAR::isError($res)) die($res->getMessage());\n\n\t if(count($res)==\"0\"){ // create table\n\t $_create = \"\n\t CREATE TABLE `\".$strTable.\"` (\n `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,\n `login` VARCHAR( 20 ) NOT NULL ,\n `datetime` DATETIME NOT NULL ,\n `ip` VARCHAR( 20 ) NOT NULL ,\n `query` TEXT NOT NULL,\n INDEX ( `login` , `ip` ) )\n\t \";\n\t $res = $mdbLog->exec($_create);\n\t if (PEAR::isError($res)) die($res->getMessage());\n\t }\n\t \n\t $_insert = \"INSERT INTO \".$strTable.\"(`id`,`login`,`datetime`,`ip`,`query`) VALUES(\n\t '','\".$_SESSION[\"login\"].\"',NOW(),'\".$_SERVER[\"REMOTE_ADDR\"].\"','\".$act.\"') \";\n\t $res = $mdbLog->exec($_insert);\n\t if (PEAR::isError($res)) die($res->getMessage());\n\t }\n\t $mdbLog->disconnect();\n\t}", "public function log($action, $arr = array())\n {\n /* add additional info to the message */\n $extra_info = \"\";\n if (isset($arr['extra_info']))\n {\n $extra_info = $arr['extra_info'];\n }\n\n switch ($action)\n {\n default:\n return;\n case 'add':\n $username = $this->ion_auth->user()->row()->username;\n $msg = \"{$username} ha aggiunto id {$arr['id']} nella tabella {$arr['table']} {$extra_info}\";\n break;\n case 'edit':\n $username = $this->ion_auth->user()->row()->username;\n $msg = \"{$username} ha modificato id {$arr['id']} nella tabella {$arr['table']} {$extra_info}\";\n break;\n case 'export':\n $username = $this->ion_auth->user()->row()->username;\n $msg = \"{$username} ha esportato id {$arr['id']} dalla tabella {$arr['table']} {$extra_info}\";\n break;\n case 'delete':\n $username = $this->ion_auth->user()->row()->username;\n $msg = \"{$username} ha cancellato id {$arr['id']} dalla tabella {$arr['table']} {$extra_info}\";\n break;\n case 'publish':\n $username = $this->ion_auth->user()->row()->username;\n $msg = \"{$username} ha pubblicato id {$arr['id']} dalla tabella {$arr['table']}\";\n break;\n case 'unpublish':\n $username = $this->ion_auth->user()->row()->username;\n $msg = \"{$username} ha sospeso la pubblicazione id {$arr['id']} dalla tabella {$arr['table']}\";\n break;\n case 'revision':\n $username = $this->ion_auth->user()->row()->username;\n $msg = \"{$username} ha inserito in revisione id {$arr['id']} dalla tabella {$arr['table']}\";\n break;\n case 'revision_ok':\n $username = $this->ion_auth->user()->row()->username;\n $msg = \"{$username} ha approvato le revisioni id {$arr['id']} dalla tabella {$arr['table']}\";\n break; \n case 'restore_ok':\n $username = $this->ion_auth->user()->row()->username;\n $msg = \"{$username} ha ripristinato id {$arr['id']} dalla tabella {$arr['table']}\";\n break; \n }\n $data = array(\n 'action' => $action,\n 'type' => in_array($action, $this->admin_types) ? 'admin' : 'all',\n 'message' => $msg\n );\n $this->add_info();\n $this->db->insert('sys_activity_log', $data);\n }", "protected function clearLogsEntries() {\n $this->drupalGet(Url::fromRoute('dblog.confirm'));\n }" ]
[ "0.6621307", "0.59986997", "0.58749247", "0.5824681", "0.58156747", "0.5654726", "0.5626205", "0.5531352", "0.5490355", "0.54841226", "0.5469729", "0.54381835", "0.5423056", "0.54083127", "0.5404893", "0.53941464", "0.53875923", "0.5362", "0.5360827", "0.5359462", "0.53501916", "0.5345595", "0.5330861", "0.53018016", "0.5273177", "0.525628", "0.5213717", "0.5208187", "0.51896673", "0.51801544" ]
0.8198414
0
Get file stats on a created temp file
function getTmpStats() { $temp = tmpfile(); if (false === $temp) { return false; } $stat = fstat($temp); fclose($temp); if (false === $stat) { return false; } return prepStats($stat); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function tmpfile () {}", "function fstat ($handle) {}", "public function getStat()\n {\n return fstat($this->stream);\n }", "public static function getStats() {\n return array (\n \"filesOk\" => self::$filesOk,\n \"filesFail\" => self::$filesFail \n );\n }", "public function stream_stat()\n\t{\n\t\treturn $this->file->getStat();\n\t}", "public function stat() {\n $result = fstat($this->handle);\n return $result;\n }", "function stat ($filename) {}", "public function stream_stat() {\n return fstat($this->handle);\n }", "protected static function fileUsage() {\n return \\Drupal::service('file.usage');\n }", "public function stream_stat();", "public function testStat() {\r\n\t\t$fileContent = \"test stat file\";\r\n\t\t$containerName = $this->getContainerName ();\r\n\t\t$fileName = 'azure://' . $containerName . '/teststat.txt';\r\n\t\t\r\n\t\t$storageClient = $this->_createStorageClient ();\r\n\t\t$storageClient->registerStreamWrapper ();\r\n\t\tfile_put_contents ( $fileName, $fileContent );\r\n\t\t\r\n\t\t$fh = fopen ( $fileName, 'r' );\r\n\t\t$array = fstat ( $fh );\r\n\t\t\r\n\t\t$this->assertNotNull ( $array );\r\n\t\t$this->assertEquals ( $array [\"mode\"], 0100000 );\r\n\t\t$this->assertTrue ( $array [\"ctime\"] > 0 );\r\n\t\t$this->assertTrue ( $array [\"ctime\"] <= time () );\r\n\t\t$this->assertTrue ( $array [\"mtime\"] > 0 );\r\n\t\t$this->assertTrue ( $array [\"mtime\"] <= time () );\r\n\t\t$this->assertTrue ( $array [\"atime\"], 0 );\r\n\t\t$this->assertEquals ( strlen ( $fileContent ), $array [\"size\"] );\r\n\t\t\r\n\t\tfclose ( $fh );\r\n\t\t\r\n\t\t// The same data should be available via url_stat().\r\n\t\t$stat_via_url_stat = stat ( $fileName );\r\n\t\t$this->assertIdentical ( $stat_via_url_stat, $array );\r\n\t\t\r\n\t\t// In addition, stating a non existing file should return false.\r\n\t\t$stat_non_existing = stat ( 'azure://non-existing' );\r\n\t\t$this->assertTrue ( $stat_non_existing === false );\r\n\t}", "public function info()\n\t{\n\t\tclearstatcache();\n\t\treturn stat($this->_path);\n\t}", "function read_stats() {\n include(\"stats.php\");\n return array($r, $f);\n }", "public function stream_stat()\n {\n $stat = fstat($this->objStream);\n\n // FIXME: Need to calculate the length of the $objStream.\n //$contentLength = $this->obj->contentLength();\n $contentLength = $stat['size'];\n\n return $this->generateStat($this->obj, $this->container, $contentLength);\n }", "function getTempFile(){ return $this->tmp; }", "public function stream_stat()\n {\n $this->initBuffer($this->_path);\n $stat = array();\n $stat[0] = $stat['dev'] = is_resource($this->_curlHandle) ? intval($this->_curlHandle) : 0;\n $stat[1] = $stat['ino'] = null;\n $stat[2] = $stat['mode'] = $this->_mode;\n $stat[3] = $stat['nlink'] = 1;\n $stat[4] = $stat['uid'] = getmyuid();\n $stat[5] = $stat['gid'] = getmygid();\n $stat[6] = $stat['rdev'] = null;\n $stat[7] = $stat['size'] = strlen($this->_buffer);\n $stat[8] = $stat['atime'] = $this->_bufferAccessTime;\n $stat[9] = $stat['mtime'] = $this->_bufferModifyTime;\n $stat[10] = $stat['ctime'] = $this->_bufferModifyTime; // the cURL buffer is modified/created at the same operations because it is immutable\n $stat[11] = $stat['blksize'] = null; // not supported for this data\n $stat[12] = $stat['blocks'] = null; // not supported for this data\n return $stat;\n }", "public static function getTempFilename(){\r\n if (is_null(self::$tmp_files)){\r\n self::$tmp_files = array();\r\n register_shutdown_function(array('AS2Adapter', '_deleteTempFiles'));\r\n }\r\n \r\n $dir = sys_get_temp_dir();\r\n $filename = tempnam($dir, 'as2file_');\r\n self::$tmp_files[] = $filename;\r\n return $filename;\r\n }", "public function getStats() {\r\n\t\tglobal $SITE_DIR;\r\n\t\t$files = array();\r\n\t\t$directoryHandle = opendir($SITE_DIR . 'data/cache');\r\n\t\twhile (false !== ($filename = readdir($directoryHandle))) {\r\n\t\t\tif (substr($filename, 0, strlen($this->prefix)) == $this->prefix) {\r\n\t\t\t\t$files[] = $SITE_DIR . 'data/cache/' . $filename;\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn array('files' => count($files));\r\n\t}", "private function getTemporaryEmptyFile()\n {\n $tmpFile = tempnam(sys_get_temp_dir(), 'hash');\n\n unlink($tmpFile);\n\n try {\n $this->writer->reset();\n $this->writer->erase(true);\n $this->writer->write($this->file->getPathname(), new MetadataBag(), $tmpFile);\n } catch (PHPExiftoolExceptionInterface $e) {\n /**\n * Some files can not be written by exiftool\n */\n copy($this->file->getPathname(), $tmpFile);\n }\n $this->temporaryFiles[] = $tmpFile;\n\n return $tmpFile;\n }", "public static function createTempFileAutoDel(): array\n {\n $tmpFile = tmpfile();\n try {\n $metaData = stream_get_meta_data($tmpFile);\n $fileName = $metaData['uri'];\n return [$fileName, $tmpFile];\n } catch (\\Throwable $e) {\n fclose($tmpFile);\n throw $e;\n }\n }", "public function stream_stat() {\n return array(\n// 7 => $this->size,\n// 'size' => $this->size,\n );\n }", "function GetFileCounter()\n\t{\n\t\treturn $this->_FileCounter;\n\t}", "public function getStats()\n {\n $directory = new \\RecursiveIteratorIterator(\n new \\RecursiveDirectoryIterator($this->path),\n \\RecursiveIteratorIterator::SELF_FIRST\n );\n\n $cacheIterator = new \\RegexIterator($directory, '/^.+\\.cache/i', \\RecursiveRegexIterator::GET_MATCH);\n\n $stats[ 'path' ] = $this->path;\n $stats[ 'files' ] = 0;\n $stats[ 'size' ] = 0;\n\n foreach ($cacheIterator as $cacheFiles) {\n foreach ($cacheFiles as $cacheFile) {\n $stats[ 'files' ]++;\n $stats[ 'size' ] += filesize($cacheFile);\n }\n }\n\n return $stats;\n }", "function file_stat_get_count( $proj, &$today, &$total, $inc, $fbasename )\n{\n global $cache_name, $repo_directory;\n $rtoday = 0;\n $rtotal = 0;\n $now = floor(time()/24/60/60); // number of days since 1970\n $fname = $repo_directory.$cache_name.$fbasename.\"-\".basename($proj,\".git\");\n $fd = 0;\n \n \n //$fp1 = sem_get(fileinode($fname), 1);\n //sem_acquire($fp1);\n \n if( file_exists( $fname ) )\n $file = fopen( $fname, \"r\" ); // open the counter file\n else\n $file = FALSE;\n if( $file != FALSE ){\n fseek( $file, 0 ); // rewind the file to beginning\n // read out the counter value\n fscanf( $file, \"%d %d %d\", $fd, $rtoday, $rtotal );\n if( $fd != $now ){\n $rtoday = 0;\n $fd = $now;\n }\n if( $inc ){\n $rtoday++;\n $rtotal++;\n }\n fclose( $file );\n }\n // uncomment the next lines to erase the counters\n //$rtoday = 0;\n //$rtotal = 0; \n $file = fopen( $fname, \"w\" ); // open or create the counter file \n // write the counter value\n fseek( $file, 0 ); // rewind the file to beginning\n fwrite( $file, \"$fd $rtoday $rtotal\\n\" );\n fclose( $file );\n $today = $rtoday;\n $total = $rtotal; \n}", "function statReadWriteInit($mode, $sourceDir, $fileFullPath) {\n //It can work in one of three modes:\n //statReadWriteInit('READ', ...) - calculate statistic variables basing on amount of files in upload_folder AND read uploaded counters from $_SESSION array.\n //statReadWriteInit('WRITE', ...) - when user upload a file, we call this function with WRITE parameter, so counter of mime-type will be ++ and put to $_SESSION array\n //statReadWriteInit('INIT', ...) - initialization of static variables in $_SESSION array. Such as $_SESSION['stat']['img/pdf/txt/otherCount'] = 0;\n\n if($mode == 'READ') {\n if(isset($_POST['resetBt'])) {\n statReadWriteInit('INIT', null, null);\n }\n $imgCounter = $pdfCounter = $txtCounter = $otherCounter = $folderCounter = 0; //in this variables we'll calculate quantity of files specified types\n $fileList = scandir($sourceDir);\n foreach($fileList as $value) {\n $mimeType = mime_content_type($sourceDir.$value);\n if($mimeType == 'image/jpeg' || $mimeType == 'image/png' || $mimeType == 'image/gif') {$imgCounter++; continue;};\n if($mimeType == 'text/plain') {$txtCounter++; continue;};\n if($mimeType == 'application/pdf') {$pdfCounter++; continue;};\n if($mimeType == 'directory') {$folderCounter++; continue;};\n $otherCounter++;\n }\n\n echo \"\n <table>\n <tr>\n <td align='right'><p></p></td><td><p>Всего загружено:</p></td><td><p>За текущий сеанс {$_SESSION['user']}:</p></td>\n </tr>\n <tr>\n <td align='right'><p>Изображений:</p></td><td align='right'><p>$imgCounter</p></td><td align='right'><p>{$_SESSION['stat']['imgCount']}</p></td>\n </tr>\n <tr>\n <td align='right'><p>PDF документов:</p></td><td align='right'><p>$pdfCounter</p></td><td align='right'><p>{$_SESSION['stat']['pdfCount']}</p></td>\n </tr>\n <tr>\n <td align='right'><p>TXT документов</p></td><td align='right'><p>$txtCounter</p></td><td align='right'><p>{$_SESSION['stat']['txtCount']}</p></td>\n </tr>\n <tr>\n <td align='right'><p>Папок:</p></td><td align='right'><p>$folderCounter</p></td><td align='right'><p>--</p></td>\n </tr>\n <tr>\n <td align='right'><p>Других файлов:</p></td><td align='right'><p>$otherCounter</p></td><td align='right'><p>{$_SESSION['stat']['otherCount']}</p></td>\n </tr>\n <tr>\n <td><p></p></td><td><p></p></td><td><form method='POST' enctype='application/x-www-form-urlencoded' action='' />\n <button type='submit' name='resetBt' value='reset'>Сбросить статистику сессии</button>\n </form></td>\n </tr>\n </table>\n \";\n\n return true;\n\n } elseif($mode == 'WRITE') {\n $fileType = mime_content_type($fileFullPath);\n switch(true) {\n case ($fileType == 'image/jpeg' || $fileType == 'image/png' || $fileType == 'image/gif'):\n $_SESSION['stat']['imgCount']++;\n break;\n case ($fileType == 'application/pdf'):\n $_SESSION['stat']['pdfCount']++;\n break;\n case ($fileType == 'text/plain'):\n $_SESSION['stat']['txtCount']++;\n break;\n default:\n $_SESSION['stat']['otherCount']++;\n }\n return true;\n\n } elseif($mode == 'INIT') {\n $_SESSION['stat']['imgCount'] = 0;\n $_SESSION['stat']['pdfCount'] = 0;\n $_SESSION['stat']['txtCount'] = 0;\n $_SESSION['stat']['otherCount'] = 0;\n return true;\n\n } else return false;\n}", "protected static function getTempFile() {\n $ret = temp_file(__CLASS__);\n // my_dump($ret);\n return $ret;\n }", "public function stat();", "public function analyzeFile()\n\t{\n\t\t$file = $this->getNextFile();\n\t\tif ($file['status'] !== 'run')\n\t\t{\n\t\t\treturn array('status' => $file['status'], 'time' => 0, 'files' => 0);\n\t\t}\n\n\t\tif (Config::$development !== true)\n\t\t{\n\t\t\t$this->db->bind('ID', $file['id']);\n\t\t\t$this->db->update('UPDATE BOTSECTOR_LOGS SET BLG_STATUS = \\'PARSING\\', BLG_STARTED = NOW() WHERE BLG_ID = :ID');\n\t\t}\n\t\t/* Remove old stats */\n\t\t$this->db->bind('ID', $file['id']);\n\t\t$this->db->delete('DELETE FROM BOTSECTOR_STATISTICS WHERE BLG_ID = :ID');\n\n\t\t$startTime = time();\n\n\t\t$months = array('Jan' => 1, 'Feb' => 2, 'Mar' => 3, 'Apr' => 4, 'May' => 5, 'Jun' => 6, 'Jul' => 7, 'Aug' => 8, 'Sep' => 9, 'Oct' => 10, 'Nov' => 11, 'Dec' => 12);\n\n\t\t$statistics = array();\n\t\tif (substr($file['path'], -3) === '.gz')\n\t\t{\n\t\t\t$f = gzopen($file['path'], 'r');\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$f = fopen($file['path'], 'r');\n\t\t}\n\t\t$totalLines = 0;\n\t\tif (Config::$development === true)\n\t\t{\n\t\t\t$microtime = -1 * microtime(true);\n\t\t}\n\t\t$error = false;\n\t\t$defaultStat = array();\n\t\tforeach ($this->types as $type)\n\t\t{\n\t\t\t$defaultStat[$type[0]] = array(0, 0);\n\t\t}\n\t\twhile (!feof($f))\n\t\t{\n\t\t\t$buffer = stream_get_line($f, 8192000); // 4096 * 2000\n\t\t\t$buffer .= stream_get_line($f, 4096, \"\\n\"); // Stop at the end of a line\n\t\t\tif (substr($buffer, -1) !== \"\\n\")\n\t\t\t{\n\t\t\t\t$buffer .= \"\\n\";\n\t\t\t}\n\t\t\t$lines = substr_count($buffer, \"\\n\");\n\t\t\t$totalLines += $lines;\n\t\t\t$max = preg_match_all('~^[0-9.:]+ - .*? \\[(\\d+)/([A-Za-z]+)/(\\d+):.+?\\] \"(?:HEAD|GET|POST) https?://([a-zA-Z0-9\\.\\-_]+?)(?::\\d+)?(/.*?) HTTP/1\\..\" (-|\\d+) (-|\\d+) \".*?\" \"(.*?)\"$~m', $buffer, $matches);\n\t\t\t/* if ($lines > 10 && $lines * 0.95 >= $max)\n\t\t\t {\n\t\t\t echo \"<pre>Not parsed lines:\\n\";\n\t\t\t for ($i = 0; $i < $max; $i++)\n\t\t\t {\n\t\t\t $buffer = str_replace($matches[0][$i].\"\\n\", '', $buffer);\n\t\t\t }\n\t\t\t print_r($buffer);\n\t\t\t throw new Exception('Wrong count: lines ('.$lines.') vs matches ('.$max.')');\n\t\t\t } */\n\t\t\t$allDates = array();\n\t\t\t$knownDates = array();\n\t\t\tfor ($i = 0; $i < $max; $i++)\n\t\t\t{\n\t\t\t\t$status = (int) $matches[6][$i];\n\t\t\t\t/* Ignore HTTP statuses below 200 (mostly «100 Continue») */\n\t\t\t\tif ($status < 200)\n\t\t\t\t{\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\t$path = $matches[5][$i];\n\t\t\t\tif ($path === '')\n\t\t\t\t{\n\t\t\t\t\t$path = '/';\n\t\t\t\t}\n\t\t\t\t/* Remove Query-string */\n\t\t\t\tif (($pos = strpos($path, '?')) !== false)\n\t\t\t\t{\n\t\t\t\t\t$path = substr($path, 0, $pos);\n\t\t\t\t}\n\t\t\t\t/* If it's an error, group by specific directories, so that it doesn't fill the database */\n\t\t\t\tif ($status >= 300 && $status !== 304)\n\t\t\t\t{\n\t\t\t\t\tif ($status < 400)\n\t\t\t\t\t{\n\t\t\t\t\t\t$prepend = '/botsector-redirects';\n\t\t\t\t\t}\n\t\t\t\t\telseif ($status < 500)\n\t\t\t\t\t{\n\t\t\t\t\t\t$prepend = '/botsector-client-errors';\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t$prepend = '/botsector-server-errors';\n\t\t\t\t\t}\n\t\t\t\t\t$path = $prepend.substr($path, strrpos($path, '/'));\n\t\t\t\t}\n\n\t\t\t\t$date = &$knownDates[$matches[3][$i]][$matches[2][$i]][$matches[1][$i]];\n\t\t\t\tif (!isset($date))\n\t\t\t\t{\n\t\t\t\t\t$date = sprintf('%04d-%02d-%02d', $matches[3][$i], $months[$matches[2][$i]], $matches[1][$i]);\n\t\t\t\t}\n\t\t\t\t$allDates[$date] = $date;\n\t\t\t\tif (($crawler = $this->getCrawler($matches[8][$i], $matches[0][$i])) === false)\n\t\t\t\t{\n\t\t\t\t\t$error = true;\n\t\t\t\t}\n\t\t\t\tif (($domain = $this->getDomain($matches[4][$i], false)) === false)\n\t\t\t\t{\n\t\t\t\t\t/* Call with 200 status AND (standard browser OR bot reads robots.txt) => domain allowed */\n\t\t\t\t\tif (($status < 300 && ($crawler === self::browsers || $crawler !== self::browsers && $matches[5][$i] === '/robots.txt')) === false)\n\t\t\t\t\t{\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\t$domain = $this->getDomain($matches[4][$i], true);\n\t\t\t\t}\n\t\t\t\t$category = $this->getCategoryAndType($domain, $path);\n\t\t\t\t$stat = &$statistics[$date][$domain][$category['directory']][$crawler];\n\t\t\t\tif (!isset($stat))\n\t\t\t\t{\n\t\t\t\t\t$stat = $defaultStat;\n\t\t\t\t}\n\t\t\t\t$stat[$category['type']][0] ++;\n\t\t\t\t$stat[$category['type']][1] += (int) $matches[7][$i];\n\n\t\t\t\tunset($stat);\n\t\t\t\tunset($date);\n\t\t\t}\n\t\t}\n\t\tfclose($f);\n\t\tunset($knownDates);\n\n\t\tif (Config::$development === true)\n\t\t{\n\t\t\t$microtime += microtime(true);\n\t\t\techo '<br/>Lines: <strong>'.$totalLines.' - '.ceil($totalLines / $microtime).'/s</strong>';\n\t\t\tif ($error === true)\n\t\t\t{\n\t\t\t\tthrow new Exception('Found errors, no insertion');\n\t\t\t}\n\t\t}\n\n\t\t$inserts = 0;\n\t\tif (Config::$development === true)\n\t\t{\n\t\t\t$microtime = -1 * microtime(true);\n\t\t}\n\t\t/* Start a transaction (this should speed things up) */\n\t\t$this->db->begin();\n\t\tforeach ($statistics as $date => $dates)\n\t\t{\n\t\t\tforeach ($dates as $domain => $domains)\n\t\t\t{\n\t\t\t\tforeach ($domains as $directory => $directories)\n\t\t\t\t{\n\t\t\t\t\twhile (isset($this->removedDirectories[$directory]))\n\t\t\t\t\t{\n\t\t\t\t\t\t$directory = $this->removedDirectories[$directory];\n\t\t\t\t\t}\n\t\t\t\t\tforeach ($directories as $userAgent => $statistic)\n\t\t\t\t\t{\n\t\t\t\t\t\t$inserts++;\n\t\t\t\t\t\t$this->insertStatistic($date, $file['id'], $domain, $directory, $userAgent, $statistic);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t/* Force last entries to be injected in database */\n\t\t$this->insertStatistic(0, 0, 0, 0, 0, 0);\n\t\t$this->db->commit();\n\n\t\t$this->removedDirectories = array();\n\t\tif (Config::$development === true)\n\t\t{\n\t\t\t$microtime += microtime(true);\n\t\t\techo '<br/>Inserts: <strong>'.$inserts.' - '.ceil($inserts / $microtime).'/s</strong>';\n\t\t}\n\t\t$this->db->bind('ID', $file['id']);\n\t\tif (count($allDates) === 0)\n\t\t{\n\t\t\t$this->db->bind('MIN', '0000-00-00');\n\t\t\t$this->db->bind('MAX', '0000-00-00');\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->db->bind('MIN', min($allDates));\n\t\t\t$this->db->bind('MAX', max($allDates));\n\t\t}\n\t\t$this->db->update('UPDATE BOTSECTOR_LOGS SET BLG_MIN_DATE = :MIN, BLG_MAX_DATE = :MAX, BLG_STATUS = \\'PARSED\\', BLG_FINISHED = NOW() WHERE BLG_ID = :ID');\n\t\treturn array('status' => 'reload', 'time' => time() - $startTime, 'files' => $this->getFilesLeft());\n\t}", "public function testStatSuccess ()\n {\n $response = $this->getWebResponse('stat_file');\n $web = $this->getMock('\\\\Hdfs\\\\Web\\\\WebHdfsWrapper');\n $web->expects($this->once())\n ->method('exec')\n ->with(Method::GET, self::REMOTE_FILE, 'GETFILESTATUS')\n ->will($this->returnValue($response));\n $hdfs = new \\Hdfs\\Web($web);\n\n $entry = $hdfs->stat(self::REMOTE_FILE);\n\n $this->assertEquals(basename(self::REMOTE_FILE), $entry->getName());\n $this->assertEquals(Hdfs\\EntryType::FILE, $entry->getType());\n $this->assertEquals(octdec('755'), $entry->getMode());\n $this->assertEquals(11, $entry->getSize());\n $this->assertEquals(1427994123442, $entry->getMtime());\n $this->assertTrue((bool)$entry->getOwner());\n $this->assertEquals('hdfs', $entry->getGroup());\n $this->assertEquals(3, $entry->getRfactor());\n }", "public function stream_stat() {\n return array(\n 'size' => strlen(self::$bytes[$this->current])\n );\n }" ]
[ "0.6499606", "0.6412766", "0.63080215", "0.6214666", "0.61824423", "0.61274767", "0.61132663", "0.60867435", "0.6061181", "0.5983936", "0.5890707", "0.58814204", "0.5875186", "0.58604544", "0.58314234", "0.5826546", "0.58043456", "0.5803359", "0.57765007", "0.5774808", "0.5736911", "0.57301104", "0.57166654", "0.5704443", "0.5667451", "0.5666625", "0.56384724", "0.5620342", "0.5610098", "0.5589459" ]
0.76449907
0
Attempt to check if a set of files can be written
function checkFileWriteablity($files) { if (isset($_POST['op']) && $_POST['op'] === 'proceed') { return true; // user said skip this } $tmpStats = getTmpStats(); if (false === $tmpStats) { return true; // tests are not applicable } $message = array(); foreach ($files as $file) { $dirName = dirname($file); $fileName = basename($file); $dirStat = getStats($dirName); if (false !== $dirStat) { $uid = $tmpStats['uid']; $gid = $tmpStats['gid']; if (!(($uid === $dirStat['uid'] && $dirStat['user']['write']) || ($gid === $dirStat['gid'] && $dirStat['group']['write']) || (file_exists($file) && is_writable($file)) || (false !== stripos(PHP_OS, 'WIN')) ) ) { $uidStr = (string) $uid; $dUidStr = (string) $dirStat['uid']; $gidStr = (string) $gid; $dGidStr = (string) $dirStat['gid']; if (function_exists('posix_getpwuid')) { $tempUsr = posix_getpwuid($uid); $uidStr = isset($tempUsr['name']) ? $tempUsr['name'] : (string) $uid; $tempUsr = posix_getpwuid($dirStat['uid']); $dUidStr = isset($tempUsr['name']) ? $tempUsr['name'] : (string) $dirStat['uid']; } if (function_exists('posix_getgrgid')) { $tempGrp = posix_getgrgid($gid); $gidStr = isset($tempGrp['name']) ? $tempGrp['name'] : (string) $gid; $tempGrp = posix_getgrgid($dirStat['gid']); $dGidStr = isset($tempGrp['name']) ? $tempGrp['name'] : (string) $dirStat['gid']; } $message[] = sprintf( CHMOD_CHGRP_ERROR, $fileName, $uidStr, $gidStr, basename($dirName), $dUidStr, $dGidStr ); } } } return empty($message) ? true : $message; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function ensureWritable()\n {\n foreach (self::$all_files as $type)\n {\n $filename = self::_createFileName($type);\n if (file_exists($filename) && !is_writable($filename))\n {\n return false;\n }\n elseif (!is_writable(dirname($filename)))\n {\n return false;\n }\n }\n return true;\n }", "protected function writableFolderCheck()\n {\n $fileName = '/configtester_' . date('Y-m-d-h-i-s') . '.txt';\n\n $fileSystems = [\n ['name' => 'files', 'folder' => '', 'label' => '<code>files/</code> in the webroot'],\n ['name' => 'extensions', 'folder' => '', 'label' => '<code>extensions/</code> in the webroot'],\n ['name' => 'config', 'folder' => ''],\n ['name' => 'cache', 'folder' => ''],\n ];\n if ($this->app['config']->get('general/database/driver') === 'pdo_sqlite') {\n $fileSystems[] = ['name' => 'app', 'folder' => 'database'];\n }\n $fileSystems = Bag::fromRecursive($fileSystems);\n\n foreach ($fileSystems as $fileSystem) {\n $contents = $this->isWritable($fileSystem, $fileName);\n if ($contents != 'ok') {\n $folderName = $this->getFoldername($fileSystem);\n $notice = json_encode([\n 'severity' => 1,\n 'notice' => 'Bolt needs to be able to <strong>write files to</strong> the folder <code>' . $folderName . \"</code>, but it doesn't seem to be writable.\",\n 'info' => 'Make sure the folder exists, and is writable to the webserver.',\n ]);\n $this->app['logger.flash']->configuration($notice);\n }\n }\n }", "public function ensureWritable($files)\n {\n $errors = [];\n\n foreach ($files as $filename) {\n if (!is_dir($dir = dirname(PHPFOX_DIR . $filename))) {\n if (!@mkdir($dir, 0777, true)) {\n $errors[] = 'mkdir -p ' . $dir;\n } else {\n @chmod($dir, 0777);\n }\n }\n if (!is_writable($dir = dirname(PHPFOX_DIR . $filename))) {\n $errors[] = 'chmod 777 ' . $dir;\n }\n\n if (file_exists($filename = PHPFOX_DIR . $filename) and !is_writeable($filename)) {\n $errors[] = 'chmod 777 ' . $filename;\n }\n }\n return implode('<br />', $errors);\n }", "public function hasFileSet(){\n return $this->_has(1);\n }", "public function check()\n {\n $initParams = $this->serviceManager->get(InitParamListener::BOOTSTRAP_PARAM);\n $filesystemDirPaths = isset($initParams[Bootstrap::INIT_PARAM_FILESYSTEM_DIR_PATHS])\n ? $initParams[Bootstrap::INIT_PARAM_FILESYSTEM_DIR_PATHS]\n : [];\n $directoryList = new DirectoryList(BP, $filesystemDirPaths);\n $driverPool = new DriverPool();\n $fileWriteFactory = new WriteFactory($driverPool);\n\n $generationDirs = [\n DirectoryList::GENERATED,\n DirectoryList::GENERATED_CODE,\n DirectoryList::GENERATED_METADATA\n ];\n\n foreach ($generationDirs as $generationDirectory) {\n $directoryPath = $directoryList->getPath($generationDirectory);\n $directoryWrite = $fileWriteFactory->create($directoryPath);\n\n if (!$directoryWrite->isExist()) {\n try {\n $directoryWrite->create();\n } catch (\\Exception $e) {\n return false;\n }\n }\n\n if (!$directoryWrite->isWritable()) {\n return false;\n }\n }\n\n return true;\n }", "private function check_for_directory_errors() {\n $errors = FALSE;\n\n // If the output path doesn't exist\n if( !is_dir( $this->output_path ) )\n {\n $this->messages[] = 'The path ' . $this->output_path . ' does not exists';\n $errors = TRUE;\n }\n\n // Checking if the directory where the output files will be written, is readable/writable\n if(!is_writable($this->output_path) || !is_readable($this->output_path)) {\n $this->messages[] = $this->output_path . ' is not a readable or writable directory';\n $errors = TRUE;\n } else {\n // If it is, checking if the contained files are readable/writable\n $not_writable_files = FALSE;\n $files = scandir($this->output_path);\n foreach ($files as $file) {\n if ($file != \".\" && $file != \"..\") {\n if (!is_writable($this->output_path .'/' . $file) || !is_readable($this->output_path .'/' . $file)) {\n $this->messages[] = $this->output_path .'/' . $file . ' is not readable or writable<br>';\n $errors = TRUE;\n }\n }\n }\n }\n\n return $errors;\n }", "public function canCreateFiles()\n\t{\n\t\treturn $this->filePermissions;\n\t}", "function is_writeable ($filename) {}", "public function checkFiles() {\n $iterator = new FilesystemIterator($this->recordPath, FilesystemIterator::SKIP_DOTS);\n $count = iterator_count($iterator);\n\n if (\n $count < 3\n ||\n !file_exists($this->transcriptionsPath)\n ||\n !file_exists($this->fileidsPath)\n ) {\n throw new Exception('User\\'s model directory doesn\\'t contain files for adaptation!');\n }\n }", "function checkPermissions()\n {\n if (is_writeable($this->filePath) AND\n is_dir($this->filePath)) {\n return true;\n } else {\n return false;\n }\n }", "function is_writable ($filename) {}", "function check_write($path)\n{\n if ($path == '') // || $path == '.' || $path == '..'\n return 0;\n\n return is_writable($path) ? (is_dir($path) ? 1 : - 1) : (is_file($path) ? 0 : ($path == '.' || $path == '..' ? 0 : check_write(dirname($path))));\n}", "function isWriteable ( $canContinue, $file, $mode, $desc ) \r\n{\r\n\t@chmod( $file, $mode );\r\n\t$good = is_writable( $file ) ? 1 : 0;\r\n\tMessage ( $desc.' is writable: ', $good );\r\n\treturn ( $canContinue && $good );\r\n}", "public function hasLastWriteErrors();", "function checkForbidden($files, $theDest)\t{\n\t\tforeach($files as $file) {\n\t\t\t$info = t3lib_div::split_fileref($file);\n\t\t\tif (!$this->basicFileFunc->checkIfAllowed($info['fileext'], $theDest, $file))\t{\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t}", "function hasFiles() : bool {\n return sizeof($_FILES) > 0;\n }", "function isWriteable ( $canContinue, $file, $mode, $desc )\n{\n\t@chmod( $file, $mode );\n\t$good = is_writable( $file ) ? 1 : 0;\n\tMessage ( '<b>' . $desc .'</b> ('. $file .') is writable: ', $good );\n\treturn ( $canContinue && $good );\n}", "function exists($files);", "function fileIsWritable($path){\n $isFile= is_file($path);\n \n if($isFile){\n \n $writtable=is_writable($path);\n if($writtable){\n addUniqueRequirement(\"FILEWRITTABLE:$path\",\"File $path is writtable\",true);\n return true;\n }else{\n addUniqueRequirement(\"FILEWRITTABLE:$path\",\"File $path exists but is not writable.\",false);\n return false;\n }\n }else{\n if(is_dir($path))\n addUniqueRequirement(\"FILEEXISTS:$path\",\"$path is a directory. It should be a file.\",false);\n else\n addUniqueRequirement(\"FILEEXISTS:$path\",\"$path does not exist.\",false);\n \n return false;\n }\n}", "protected function checkFilePermissions()\n\t{\n\t\tinclude 'file-permissions.php';\n\t\t$permissions = new FilePermissions;\n\n\t\tif ($permissions->hasSafeMode()) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (!$permissions->canCreateFolder()) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (!$permissions->canCreateFile()) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}", "function checkWritePerms($organ) \n{\n\n return false;\n}", "private function getFilesAndVerify()\n {\n // Over limits threshold\n if ($this->isOverThreshold()) {\n // Prepare response and save current progress\n $this->prepareResponse(false, false);\n $this->saveOptions();\n return false;\n }\n $this->saveVerifyFiles();\n $this->saveOptions();\n //$this->log(json_encode(array_diff($this->files, $this->verifyFiles)));\n //wp_die(print_r(array_diff($this->files, $this->verifyFiles)));\n return true;\n }", "public function hasFiles()\n {\n return !empty($this->files);\n }", "public function hasFile(string ... $keys): bool;", "private function _checkFiles( $aFilePaths ) {\n return $this->_getWarningsByFunctionName( 'file_exists', $aFilePaths );\n }", "function spgm_CheckPerms($strFilePath) {\n\t\n spgm_Trace(\n '<p>function spgm_CheckPerms</p>'.\"\\n\"\n .'strFilePath: '.$strFilePath.'<br />'.\"\\n\"\n );\n\t\n if (! file_exists($strFilePath)) return false;\n\n $fileperms = fileperms($strFilePath);\n $isreadable = $fileperms & 4;\n if ( is_file($strFilePath) ) {\n // pictures, thumbnails, config files and comments only need to be readable\n if (! $isreadable) {\n spgm_Warning(\n $strFilePath.': '.WARNMSG_DIR_INSUFFICIENT_PERMISSIONS.'<br />'\n );\n }\n return $isreadable;\t\n }\n else if ( is_dir($strFilePath) ) {\n // galleries need to be both readable and executable\n $isexecutable = $fileperms & 1;\n if (! $isreadable || ! $isexecutable)\n spgm_Warning(\n $strFilePath.': '.WARNMSG_DIR_INSUFFICIENT_PERMISSIONS.'<br />'\n );\n return ( $isreadable && $isexecutable); // ($dirperms & 5) == 5 ?\n }\n \n // default behavior: the strFilePath does not exist\n return false;\n}", "function resourceFilesAreSetUp() {\n\t$dir = __DIR__ . '/external-resources';\n\t$files = [ '/i18n/trx_en.json', '/i18n/trx_es.json', '/scripts/surveys.js', '/version' ];\n\tforeach( $files as $file ) {\n\t\tif ( !file_exists(\"{$dir}{$file}\") ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\treturn true;\n}", "private function CheckPathWritable()\r\n\t{\r\n\t\t\r\n\t}", "function getTestFileAllow(){\n $mas=pathinfo($this->name);\n $ext=strtolower($mas['extension']);\n\n if (count($this->allow_file)>0){\n if (!in_array($ext,$this->allow_file)) {\n $this->error=11;\n return 0;\n }\n }\n\n if (count($this->forbid_file)>0){\n if (in_array($ext,$this->forbid_file)) {\n $this->error=12;\n return 0;\n }\n }\n \n if ($this->maxSizeFile!=0 && $this->size > $this->maxSizeFile*1024){\n $this->error=14;\n return 0;\n }\n\n return 1;\n }", "public function haveFiles() {\n return sizeof($this->commit->getFiles());\n }" ]
[ "0.69094294", "0.63652104", "0.63422793", "0.63346404", "0.6288635", "0.6270816", "0.62614775", "0.61891925", "0.61723715", "0.6170681", "0.6160296", "0.60487556", "0.6032419", "0.6003089", "0.59996694", "0.59403557", "0.5933565", "0.59185064", "0.5898105", "0.58896905", "0.5839096", "0.5834186", "0.5833851", "0.5795335", "0.57842904", "0.5768144", "0.5737374", "0.5731378", "0.5720207", "0.5699935" ]
0.6811608
1
Monta um objeto TipoAssentamento
public function make($iCodigo) { /** * O objeto TipoAssentamento é montado no lazyLoad da classe TipoAssentamento. */ $oTipoAssentamento = new TipoAssentamento($iCodigo); return $oTipoAssentamento; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getAsistenciaTipo()\n {\n return $this->asistenciaTipo;\n }", "public function getTiempo();", "public function getTipo(){\n return $this->tipo;\n }", "public function tipoOrigen()\n {\n return $this->belongsTo('crmcomercial\\Entities\\TipoOrigen', 'pro_tiporig');\n }", "static function etapas_tipo_proceso($idTipoProceso){\n return $etapas=Etapa::where('tipo_procesos_id', $idTipoProceso)->orderBy('indice', 'asc')->get();\n }", "public function getTipoAfastamentosByTipo($tipo=NULL, $tabela='tipo_afastamentos') {\n\t\t$this->db->where('nome', $tipo);\n\t\t$query = $this->db->get($tabela);\n\t\treturn $query->row();\n\t}", "function cl_tipoassentamentoferias() { \n //classes dos rotulos dos campos\n $this->rotulo = new rotulo(\"tipoassentamentoferias\"); \n $this->pagina_retorno = basename($GLOBALS[\"HTTP_SERVER_VARS\"][\"PHP_SELF\"]);\n }", "public function get_tipo_pessoa()\n {\n // loads the associated object\n if (empty($this->tipo_pessoa))\n $this->tipo_pessoa = new TipoPessoa($this->tipo_pessoa_id);\n \n // returns the associated object\n return $this->tipo_pessoa;\n }", "public function entity()\n {\n return Prova::class;\n }", "public function tipo(): Al\n {\n return $this->tipo;\n }", "function pesquisar_estagiarios($tipo, $txt){\r\n\t\tglobal $estagiarios;\r\n\t\t\r\n\t\t// pesquisa por cpf\r\n\t\tif($tipo == 'cpf')\r\n\t\t\t$estagiarios = buscar_cpf($txt);\r\n\t\t\r\n\t\t// pesquisa por nome\r\n\t\tif($tipo == 'nome')\r\n\t\t\t$estagiarios = buscar_nome($txt);\r\n\t\t\r\n\t\t//pesquisa por lotacao\r\n\t\tif($tipo == 'lotacao')\r\n\t\t\t$estagiarios = buscar_lotacao($txt);\r\n\t\t\r\n\t\t//pesquisa por status do contrato\r\n\t\tif($tipo == 'status')\r\n\t\t\t$estagiarios = buscar_status($txt);\r\n\t}", "public function matenimientoTipoContrato(){\n $query = \"call sp_maeTipoContratoMantenimiento(:flag,:idTipoContrato,:contrato,:contenido,:activo,:usuario);\";\n $parms = array(\n ':flag' => $this->_flag,\n ':idTipoContrato' => $this->_idTipoContrato,\n ':contrato' => $this->_contrato,\n ':contenido' => $this->_contenido,\n ':activo' => (!empty($this->_activo))?$this->_activo:'I',\n ':usuario' => $this->_usuario\n );\n $data = $this->queryOne($query,$parms);\n return $data;\n }", "public function relacionAnteproyecto()\n {\n return $this->hasOne(Anteproyecto::class, 'PK_NPRY_IdMctr008', 'FK_NPRY_IdMctr008');\n }", "public function getTipoBoleto();", "public function tipoTarea() {\n return $this->belongsTo('App\\TiposProyecto','tipo_proyecto_id');\n }", "public function getEstablecimientoTipo(){\r\n\t\treturn $_SESSION['INFORMACION_GENERAL']['ESTABLECIMIENTO']['TIPO'];\r\n\t}", "public function refactory_amigos($datos,$tipo){\n\n $complete = \"\"; \n \n foreach ($datos as $valor){\n $global = new Global_var();\n $empresa = '';\n $nombre = '';\n $url = '';\n $aux = $this->$tipo;\n //$aux = $this->segui;\n //echo $valor->type;\n if($valor->type == \"Empresa\"){ \t \n $empresa = 'style=\"background-color: #CBFEC1\"';\n $nombre = $valor->nombre;\n $url = $global->url_empresa;\n }else{\n $nombre = $valor->nick;\n $url = $global->url_usuario;\n } \n $aux = str_ireplace('{empresa}', $empresa, $aux); \n $aux = str_ireplace('{id}', $valor->id, $aux);\n $aux = str_ireplace('{url}', $url, $aux);\n $aux = str_ireplace('{imagen}', $valor->imagen, $aux);\n $aux = str_ireplace('{nombre}', $nombre, $aux);\n $complete .= $aux;\n }\n \n //$this->$segui = $complete;\n $this->$tipo = $complete;\n $this->actualizar_diccionarios();\n \n }", "private function cargarObjeto($param){\n //print_r ($param);\n $obj = null;\n \n if( array_key_exists('idarchivocargadoestado',$param) and array_key_exists('idestadotipos',$param) and array_key_exists('acedescripcion',$param)\n and array_key_exists('idusuario',$param)and array_key_exists('acefechaingreso',$param)and array_key_exists('acefechafin',$param)\n and array_key_exists('idarchivocargado',$param)){\n \n //creo objeto estadotipos\n $objEstadoTipo = new EstadoTipos();\n $objEstadoTipo->setIdestadotipos($param['idestadotipos']); \n $objEstadoTipo->cargar();\n \n //creo objeto usuario\n $objUsuario = new Usuario();\n $objUsuario->setIdusuario($param['idusuario']); \n $objUsuario->cargar();\n \n //creo objeto archivocargado\n $objArchivo = new ArchivoCargado();\n $objArchivo->setACId($param['idarchivocargado']); \n $objArchivo->cargar();\n \n //agregarle los otros objetos\n $obj = new ArchivoCargadoEstado();\n $obj->setear($param['idarchivocargadoestado'], $objEstadoTipo, $param['acedescripcion'], $objUsuario, $param['acefechaingreso'],\n $param['acefechafin'], $objArchivo);\n }\n return $obj;\n }", "public function getTipoContrato(){\n\t\t\n\t\t$tc = $this->acoes_portal_dao->getTipoContratoDAO();\n\t\t\n\t\tfor($i = 0; $i < pg_num_rows($tc); $i++){\n\t\t\t\n\t\t\t$tc_id = pg_fetch_result($tc, $i, 'tpcoid');\n\t\t\t$tc_descricao = pg_fetch_result($tc, $i, 'tpcdescricao');\n\t\t\t\n\t\t\t$tipo_contrato[$i]['tc_id'] = $tc_id;\n\t\t\t$tipo_contrato[$i]['tc_descricao'] = $tc_descricao;\n\t\t\t\n\t\t}\n\t\t\n\t\treturn $tipo_contrato;\n\t}", "function setTipo($itipo = '')\n {\n $this->itipo = $itipo;\n }", "public function getTienda()\n {\n return $this->hasOne(Tiendas::className(), ['Id' => 'tienda_id']);\n }", "protected function crear_box_anuncio($value,$tipo = null){\n\n\t\t$this->anuncio_class = 'mod1';\n\n\t\t$this->define_lang_info($value['id']);\t\t\t\t//texto y desc en idioma indicado\n\t\t$this->define_imagen($value['id'],$value['ussr']);\t//obtenemos imagen principal del anuncio\n\t\t$this->propiety_promoted($value);\t\t\t\t\t\t//promocion o no del anuncio\n\t\t//var_dump($this);\n\t\t$subtip = $this->show_subtipo_inmueble($value['subtipo_inmueble']);\n\t\t$municipio = $this->show_municipio($value['municipio']);\n\t\t$titulo = '<h3><a href=\"#\">'.$subtip.' en '.$municipio.'</a> <small>Miami</small></h3>';\n\t\t$texto = '<p>'.substr($this->anuncio_idioma_data['descripcion'],0,100).'</p>';\n\n\t\tif($this->anuncio_class == 'mod1'){\n\t\t\t$cuadro = 'mod1 col-md-4 col-sm-6 col-xs-12';\t//3 por fila \n\t\t\t$interior = '<div class=\"property-image\">';\n\t\t\t$interior .= $this->anuncio_imagen;\n\t\t\t\n\t\t $interior .= '<div class=\"property-status\"><h5>'.$this->propiety_status($value).'</h5></div>';\n\t\t $interior .= $this->propiety_promoted($value);\n\t\t $interior .= '</div>';\t\t \n\t\t $interior .= $this->propiety_features($value); \n\t\t $interior .='<div class=\"property-content\">';\t\t \n\t\t\t$interior .= $titulo;\n\t\t\t//$interior .= '<div class=\"row\">';\n\t\t\t// $interior .= '<div class=\"property-text\">';\n\t\t\t// $interior .= $texto;\t\t\t\n\t\t\t// $interior .= '</div>';\n\n\t\t\t$interior .= '<div class=\"mod-logo\">'.$this->propiety_logo($value['ussr']).'</div>';\t\n\t\t $interior .= $this->propiety_price($value['precio'],$value['tipo_venta']);\n\t\t $interior .='</div>';\t\n\t\t //$interior .= '</div>';\t \n\t\t}else{\n\t\t\t$cuadro = 'mod2 col-md-6 col-sm-12 col-xs-12';\t//2 por fila \n\t\t\t$interior = '<div class=\"property-content-list\">\n\t\t <div class=\"property-image-list\">';\n\t\t $interior .= $this->anuncio_imagen;\n\t\t $interior .= '<div class=\"property-status\"><h5>'.$this->propiety_status($value).'</h5></div>';\n\t\t $interior .= $this->propiety_promoted($value);\n\t\t $interior .= $this->propiety_price($value['precio']);\n\t\t $interior .= '</div>';\n\t\t $interior .= '<div class=\"property-text\">';\n\t\t\t$interior .= $titulo; \n\t\t\t//$interior .= $texto; \n\t\t\t$interior .= '<div class=\"mod-logo\">'.$this->propiety_logo($value['ussr']).'</div>';\n\t\t $interior .= '</div>';\n\t\t $interior .= '</div>';\n\t\t $interior .= $this->propiety_features($value); \n\t\t}\n\n\t\t$salida = '<div class=\"'.$cuadro.'\">';\n\t\t$salida .= '<div class=\"property-container\">';\n\t\t$salida .= $interior;\n\t\t$salida .= '</div>';\n\t\t$salida .= '</div>';\n\n\t\treturn $salida;\n\t}", "public function getTipo(){\n\t\treturn $this->tipo;\n\t}", "public function getTipo(){\n\t\treturn $this->tipo;\n\t}", "public function atendimento() {\n return $this->belongsTo(Atendimento::class, 'profissional_id');\n }", "public function getSerieComprobante($punto_venta,$tipo)\r\n {\r\n $criteria=new CDbCriteria;\r\n $criteria->select='serie';\r\n $criteria->condition='punto_venta_id='.$punto_venta.' and comprobante_id='.$tipo;\r\n return $this->find($criteria)->serie; //devuelve la serie\r\n }", "public function setTipo($tipo){\n $this->tipo = $tipo;\n }", "function getDatosTipo()\n {\n $nom_tabla = $this->getNomTabla();\n $oDatosCampo = new core\\DatosCampo(array('nom_tabla' => $nom_tabla, 'nom_camp' => 'tipo'));\n $oDatosCampo->setEtiqueta(_(\"tipo\"));\n $oDatosCampo->setTipo('texto');\n $oDatosCampo->setArgument(1);\n return $oDatosCampo;\n }", "protected function cargarTipoPago() {\n\t\t$tipoPago = array(\"1\"=>\"Proveedor Frecuente\",\"2\"=>\"Caja Chica\");\n\n return $tipoPago;\n\t}", "public function analizar() {\n //Analizaremos los parámetros internos de Foxtrot y acceso a archivos públicos. La clase concreta debería completar el análisis o bien sobreescribir\n //por completo este método.\n\n $this->parametros=json_decode($this->solicitud->__p);\n \n //Buscar a qué tipo corresponde la solicitud\n foreach($this->tipos as $tipo) {\n if(call_user_func('\\\\solicitud\\\\tipos\\\\'.$tipo.'::es',$this->url,$this->solicitud)) {\n //Si la solicitud corresponde a este tipo, generar la instancia\n $this->fabricarRecurso($tipo);\n return $this;\n }\n }\n\n $this->error=true;\n\n return $this;\n }" ]
[ "0.6111095", "0.57725567", "0.56945294", "0.56893885", "0.5685025", "0.5668161", "0.56336004", "0.56280947", "0.55636865", "0.55299276", "0.5523025", "0.5522405", "0.55209225", "0.5512981", "0.5510287", "0.5496227", "0.54960895", "0.54809517", "0.5462307", "0.54139984", "0.5396", "0.5388209", "0.5376581", "0.5376581", "0.5371103", "0.5370455", "0.53661686", "0.53648174", "0.5363078", "0.53518283" ]
0.63372266
0
/ Search for class by class ID param: class ID ( CSCI222, STAT360, ...) return: an associative array containing ID, course name, and section number; false on fail
function classSearchID($id) { $sql = "SELECT strCourseID, strCourseName, intSectionNumber FROM tblCourse WHERE tblCourse.strCourseID = ? INNER JOIN tblSection ON tblSection.strCourseID = tblCourse.strCourseID"; if ($result = dbGetAll($sql, "s", $id)) return $result; return false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function get_courses($classid) {\n\n $query = $this->db->select(array('id', 'course'))\n ->from('course')\n ->where('course.class_id',$classid)\n ->get();\n\n if ($query->num_rows() > 0)\n {\n foreach ($query->result() as $row)\n {\n $course_data[$row->id] = $row->course;\n };\n return $course_data; \n }\n \n else\n {\n return false;\n };\n }", "function isValidClass($class_id = '') {\n $data = $this->class_model->select('id, class_name, student_amount')->where('id', $class_id)->where('student_partner_id', $this->auth_manager->userid())->get();\n if ($data) {\n // returning class name and student amount if class valid\n return array(\n 'class_name' => @$data->class_name,\n 'student_amount' => @$data->student_amount,\n );\n } else {\n return false;\n }\n }", "function checkClass($id) {\n $groupArr = array('a','b','c','d','e','f','g','h');\n $expGroup = \"groups.*.matches[?name==`$id`]\";\n $resexpGroup = JmesPath\\search($expGroup, $GLOBALS['wcJsonData']);\n\n foreach(array_filter($resexpGroup) as $key => $value) {\n $groupNum = $key;\n return $groupArr[$groupNum];\n }\n }", "function select_classcourse(){\n\t\t\t$classes_array = array();\n\t\t\t$course_id = $this->uri->segment(4);\n\t\t\t$course = array($course_id);\n\t\t\t$classes = $this->db->query(\"SELECT class_code, class_description, subject_description, fname, mname, lname\n\t\t\t\t\t\t\t\t\t\tFROM tbl_classes \n\t\t\t\t\t\t\t\t\t\tLEFT JOIN tbl_subject ON tbl_classes.subject_id = tbl_subject.subject_id\n\t\t\t\t\t\t\t\t\t\tLEFT JOIN tbl_classteachers ON tbl_classes.class_id = tbl_classteachers.class_id\n\t\t\t\t\t\t\t\t\t\tLEFT JOIN tbl_userinfo ON tbl_classteachers.teacher_id = tbl_userinfo.user_id\n\t\t\t\t\t\t\t\t\t\tWHERE tbl_classes.course_id = ?\", $course);\n\n\t\t\tif($classes->num_rows > 0){\n\t\t\t\tforeach($classes->result() as $row){\n\t\t\t\t\t$classes_array[] = array($row->fname, $row->mname, $row->lname, $row->class_description, $row->class_code, $row->subject_description);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn $classes_array;\n\t\t\t\n\t}", "private function communFindById($class, $id) {\t\t\n\t\t$table = self::getTableBdd($class);\n\t\t$primary = self::idBdd($table);\n\t\t$attributs = self::getAttributs($class);\n\t\t$pdo = ConnexionBDD::getInstance()->query(\"SELECT * FROM \" . $table. \" WHERE \" . $primary . \"=\" . Securite::bdd($id));\n\t\t$tableau = $pdo->fetch(PDO::FETCH_ASSOC);\n\t \tforeach ($tableau as $key => $row) {\n\t \t\t$attribut = \"set\".ucfirst($key); \n\t \t\tif (in_array($attribut,$attributs)) {\n\t\t\t if (class_exists($key)) {\n\t\t\t\t $sousClass = self::findByIdSousClass($key, $row);\n\t\t\t\t $class->$attribut($sousClass);\n\t\t\t\t} else {\n\t\t\t\t $class->$attribut($row); \t\t\n\t\t\t\t} \t\t\n\t\t\t}\n\t \t}\n\n \t\treturn $class;\n\t}", "public function getClassesSection($section_id)\n {\n $class = new Clase();\n $response = $class->getClassesOfSection($section_id);\n if ($response != false) {\n $response = $response->fetchAll(PDO::FETCH_OBJ);\n\n $controller = new ClassController();\n $classes = $controller->castClass($response);\n return $classes;\n }\n }", "function get_class_ids($school_id)\n {\n \t\t\n\t $sql = \"select ClassId from class where SchoolId='$school_id'\";\n\t $res = mysql_query($sql) or die(\"Error in fetching ClassId from Class Table\".mysql_error());\n\t $class_ids = array();\n\n\t while($row = mysql_fetch_array($res)){\n\t $class = $row[\"ClassId\"];\n\t array_push($class_ids,$class);\n\t }\n\t return $class_ids;\n }", "function get_section_ids($class_id)\n {\n \t\t\n \t $sql = \"select SectionId from section where ClassId='$class_id'\";\n\t $res = mysql_query($sql) or die(\"Error in fetching SectionId from section Table\".mysql_error());\n\t $section_ids = array();\n\n\t while($row = mysql_fetch_array($res)){\n\t $section_id = $row[\"SectionId\"];\n\t array_push($section_ids,$section_id);\n\t }\n\t return $section_ids; \t\n }", "function getclass($search)\n {\n\n $q = \"select * from class where course like '%$search%' or year like '%$search%' or section like '%$search%' or college like '%$search%' or sem like '%$search%' or subject like '%$search%' or mergesubject like '%$search%' or sy like '%$search%' order by course,year,section,college,sem,subject,mergesubject,SY asc\";\n $r = mysqli_query($conn, $q);\n\n return $r;\n }", "public function classByID($id) {\n return $this->where('class.id', $id)\n ->select('class.id', 'school_id', 'class_name', 'class_type', 'student_code', 'assistant_teacher_code')->first();\n }", "public function get_running_class($id) {\n\n date_default_timezone_set(\"Asia/Kolkata\");\n\n if ($id != '') {\n\n $this->db->select('*');\n\n $this->db->from('course_class');\n\n $this->db->where('course_id', $id);\n\n $this->db->where('DATE(class_end_datetime) >=', date('Y-m-d'));\n\n $this->db->where('DATE(class_start_datetime) <=', date('Y-m-d'));\n\n $result = $this->db->get()->num_rows();\n\n return $result;\n\n } else {\n\n return FALSE;\n\n }\n\n }", "public function belongsToClass($class_id)\n {\n $subject = Subject::find($this->subject_id);\n\n // grab class id and check\n if ($subject->class_id == $class_id)\n return true;\n else return false;\n /*$class = TheClass::find($class_id);\n if (!$class) return false;\n\n if ($class_id == $class->id) return true;\n else return false;*/\n\n }", "function getClass()\n\t{\n\n include \"b_ConnectionString.php\";\n\n\n\t\t$captured_Selections = $_POST['sent_SchoolYear'];\n\t\t$captured_Section = $_POST['sent_Section'];\n\t\t$captured_Subject = $_POST['sent_Subject'];\n\n\t\t$selectedClass = ''; \n\n\t\t$query = \n\t\t\t'select classID \n\n\t\t\tfrom classes\n\n\t\t\tWHERE syTermID_Classes = ' . $captured_Selections . \n\t\t\t' and sectionID_Classes = ' . $captured_Section . \n\t\t\t' and subjectID_Classes = ' . $captured_Subject .\n\t\t\t'';\n\n\t\t$tableQuery = mysqli_query($mySQL_ConStr, $query) \n\t\t\tor die (\"cannot load tables\"); \n\n\t\twhile($getRow = mysqli_fetch_assoc($tableQuery))\n\t\t{\n\t\t\t//$gradeArrayEntry = [];\n\t\t\t$selectedClass = $getRow['classID'];\n\n\t\t}\t\t\n\n\t\techo json_encode($selectedClass);\n\t}", "function portal_get_class_identifier($student_id) {\n $query = 'SELECT class_uuid FROM portal_classes WHERE class_id = (SELECT class_id FROM portal_class_students WHERE member_id = ?)';\n\n $query_params = array();\n $query_params[] = $student_id;\n \n $results = mystery_select_query($query, $query_params, 'portal_dbh');\n \n return array_shift(array_shift($results));\n}", "public function hasClass($id, $cl)\n {\n if (!is_array($cl)) {\n $cl = preg_split('|\\\\s+|', trim($cl));\n }\n\n if (is_string($id) && !is_numeric($id)) {\n $id = $this->find($id);\n }\n if ($id instanceof Node) {\n $exc = $id->exc;\n $id = $id->ids;\n if (!empty($exc)) {\n $id = array_diff_key($id, $exc);\n }\n }\n if (is_array($id)) {\n $ret = self::$_ar_;\n foreach ($id as $id => $e) {\n $c = $this->hasClass($id, $cl);\n if ($c) {\n $ret[$id] = $e;\n } elseif (false === $c) {\n return $c;\n }\n }\n return $ret;\n }\n\n if (!isset($this->attrs[$id])) {\n return 0;\n }\n\n if (!$cl) {\n return 0;\n }\n\n // $id has no attributes at all (but indexed)\n foreach ($cl as $cl) {\n if (!isset($this->class_idx[$cl])) {\n return self::$_fl_;\n }\n // class doesn't exist\n $cl = $this->class_idx[$cl];\n $aid = $this->attrs[$id];\n if (is_array($cl) ? !isset($cl[$aid]) : $cl != $aid) {\n return 0;\n }\n\n }\n return self::$_tr_;\n }", "public function get_yet_to_class($id) {\n\n date_default_timezone_set(\"Asia/Kolkata\");\n\n if ($id != '') {\n\n $this->db->select('*');\n\n $this->db->from('course_class');\n\n $this->db->where('course_id', $id);\n\n $this->db->where('DATE(class_end_datetime) >', date('Y-m-d'));\n\n $this->db->where('DATE(class_start_datetime) >', date('Y-m-d'));\n\n $result = $this->db->get()->num_rows();\n\n return $result;\n\n } else {\n\n return FALSE;\n\n }\n\n }", "public static function classLookup($classId) {\n switch($classId) {\n case 1:\n return 'warrior';\n break;\n case 2:\n return 'paladin';\n break;\n case 3:\n return 'hunter';\n break;\n case 4:\n return 'rogue';\n break;\n case 5:\n return 'priest';\n break;\n case 6:\n return 'death-knight';\n break;\n case 7:\n return 'shaman';\n break;\n case 8:\n return 'mage';\n break;\n case 9:\n return 'warlock';\n break;\n case 10:\n return 'monk';\n break;\n case 11:\n return 'druid';\n break;\n case 12:\n return 'demon-hunter';\n break;\n }\n }", "function classSearchDep($dep) {\n\t$sql = \"SELECT strCourseID, strCourseName, intSectionNumber\n\t\tFROM tblCourse\n\t\tWHERE tblCourse.strDepartment = $dep\n\t\tINNER JOIN tblSection\n\t\tON tblSection.strCourseID = tblCourse.strCourseID\";\n\t$result = $conn->query($sql);\n\treturn $result;\n}", "static function findById($search_id)\n {\n $courses = Course::getAll();\n foreach($courses as $course) {\n if ($course->getId() == $search_id) {\n return $course;\n }\n }\n }", "public function findClass($className)\n\t{\n\t\t$fileName = strtolower($className).\".php\";\n\t\t$sectionNumber = count(self::$autoloadSections);\n\t\t$i=0;\n\t\t$startDir = self::$autoloadSections[$i];\n\t\t$classPath = false;\n\t\twhile (($classPath = $this->searchFileInDir($startDir, $fileName)) == null)\n\t\t{\n\t\t\t$i++;\n\t\t\tif ($i < $sectionNumber)\n\t\t\t{\n\t\t\t\t$startDir = self::$autoloadSections[$i];\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t break;\n\t\t\t}\n\t\t}\n\t\tif ($classPath !== false)\n\t\t{\n\t\t return array(\"path\" => $classPath, \"dir\" => $startDir);\n\t\t}\n\t\telse\n\t\t{\n\t\t return false;\n\t\t}\n\n\t}", "function getclassbyid($id)\n {\n $q = \"select * from class where id=$id\";\n $r = mysqli_query($conn, $q);\n\n return $r;\n }", "public static function find($className, $ID) {\n\t\tself::tracer ( \"<br/>????? recherche ID <b>$ID</b> dans Memo des objets de type <b>$className</b>\");\t\t\n\t\treturn self::getMemoFor($className)->isKnown($ID);\n\t}", "function getProgram($classId) {\n\nif (isset($_GET['classId']) && (int)$_GET['classId'] > 0) {\n\t$classId = (int)$_GET['classId'];\n\n\t$sql = \"SELECT *\n\t\t\tFROM classinfo\n\t\t\tWHERE classinfoid = $classId\n\t\t\tORDER BY classname\";\n\t$result = dbQuery($sql) or die('Cannot get Programm ' . mysql_error());\n\t$row = dbFetchAssoc($result);\n\t\n\t$programmId\t=\t$row['classname'];\n\t\n\treturn $programmId;\n\t}\n}", "function get_all_class_sec()\n\t {\n\t\t $sql=\"SELECT c.class_name,c.class_id,s.sec_name,s.sec_id,cm.class_sec_id,cm.class,cm.section,cm.status FROM edu_class AS c,edu_sections AS s ,edu_classmaster AS cm WHERE cm.class = c.class_id AND cm.section = s.sec_id AND cm.status='Active' ORDER BY c.class_name\";\n\t\t $result1=$this->db->query($sql);\n return $result1->result();\n\t }", "public function getClassesCourse($course_id)\n {\n $class = new Clase();\n $response = $class->getClassesOfCourse($course_id);\n if ($response != false) {\n $response = $response->fetchAll(PDO::FETCH_OBJ);\n\n $controller = new ClassController();\n $classes = $controller->castClass($response);\n return $classes;\n }\n }", "function get_class_sec_stu($crns_list)\n{\n $conn = get_Db_Connection();\n $array_course_ids = array();\n for ($i = 0; $i < count($crns_list); $i++) {\n $sql_courses_id = \"SELECT * FROM Class WHERE Class_crn = '$crns_list[$i]';\";\n $result_classes_ids = $conn->query($sql_courses_id);\n $rows_classes_crns = $result_classes_ids->fetch_assoc();\n $array_course_ids[] = $rows_classes_crns['Class_Section'];\n }\n //var_dump($array_list);\n return $array_course_ids;\n}", "function isCapped($className)\n{\n include(\"dbForGreeley.php\");\n $numberInClass = countClassStudents($className);\n $results = $mysqli->query(\"SELECT * FROM classInfo\"); //Individual class info\n if($results)\n {\n for ($i = 0; $i < $results->num_rows; $i++)\n {\n $results->data_seek($i);\n $row = $results->fetch_assoc();\n if($className == $row['className'])\n {\n $classCap = $row['classCap'];\n if($classCap == $numberInClass)\n {\n return true; //Class is capped\n }\n else\n {\n return false; //Class is not capped\n }\n }\n }\n }\n else\n {\n echo \"false\";\n }\n}", "private function searchReturnClass($a_class)\n\t{\n\t\t$a_class = strtolower($a_class);\n\n\t\t$node = $this->getNodeIdForTargetClass($this->current_node, $a_class);\n\t\t$node = $node[\"node_id\"];\n\t\t$n_arr = explode(\":\", $node);\n\t\tfor($i = count($n_arr)-2; $i>=0; $i--)\n\t\t{\n\t\t\tif ($this->return[$this->getClassForCid($n_arr[$i])] != \"\")\n\t\t\t{\n\t\t\t\treturn $this->getClassForCid($n_arr[$i]);\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}", "private function getCidForClass($a_class, $a_check = false)\n\t{\n\t\tif ($this->class_cid[$a_class] == \"\")\n\t\t{\n\t\t\t$this->readClassInfo($a_class);\n\t\t}\n\t\tif ($this->class_cid[$a_class] == \"\")\n\t\t{\n\t\t\tif ($a_check)\n\t\t\t{\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tif (DEVMODE == 1)\n\t\t\t{\n\t\t\t\t$add = \"<br><br>Please make sure your GUI class name ends with 'GUI' and that the filename is 'class.[YourClassName].php'. In exceptional cases you\n\t\t\t\t\tmay solve the issue by putting an empty * @ilCtrl_Calls [YourClassName]: into your class header.\".\n\t\t\t\t\t\" In both cases you need to reload the control structure in the setup.\";\n\t\t\t}\n\t\t\tinclude_once(\"./Services/UICore/exceptions/class.ilCtrlException.php\");\n\t\t\tthrow new ilCtrlException(\"Cannot find cid for class \".$a_class.\".\".$add);\n\t\t}\n\t\treturn $this->class_cid[$a_class];\n\t}", "function get_class($id) {\n $id = mysqli_real_escape_string($this->connection, $id); \n $return = $this->query(\n //\"SELECT accepted, aerobic_id AS AerobicID, aerobic.name AS AerobicName, class.description AS ClassDescription,\n // class.kwds_id AS KWID, class.name AS ClassName, class.user_id AS teacher, day, difficulty_id AS DifficultyID,\n // difficulty.name AS DifficultyName, era_id AS EraID, era.name AS EraName, fee, hours, `class`.`limit` AS 'limit',\n // `class`.other AS other, prefix.name AS PrefixName, room.id AS RoomID, room.name AS RoomName, sca_first AS SCAFirst,\n // sca_last AS SCALast, style_id AS StyleID, style.name AS StyleName, title.name AS 'Title', type_id AS TypeID,\n // type.name AS TypeName, class.url as 'url',user.first AS MundaneFirst, user.id AS UserID, user.last AS MundaneLast\n //FROM `aerobic`, `class`, `difficulty`, `era`, `group`, `kingdom`, `prefix`, `room`, `style`, `title`, `type`, `user`\n //WHERE aerobic.id=aerobic_id AND difficulty_id=difficulty.id AND era_id=era.id AND `class`.id='$id'\n // AND user.group_id=`group`.id AND kingdom_id=kingdom.id AND prefix_id=prefix.id\n // AND (room_id=room.id or room_id='0') AND style_id=style.id AND title_id=title.id AND type_id=type.id\n // AND class.user_id=user.id\n //GROUP BY room_id\n //ORDER BY class.name\"\n \"SELECT accepted, class.description AS ClassDescription,\n class.kwds_id AS KWID, class.name AS ClassName, class.user_id AS teacher, day, difficulty_id AS DifficultyID,\n difficulty.name AS DifficultyName, fee, hours, `class`.`limit` AS 'limit',\n `class`.other AS other, prefix.name AS PrefixName, room.id AS RoomID, room.name AS RoomName, sca_first AS SCAFirst,\n sca_last AS SCALast, style_id AS StyleID, style.name AS StyleName, title.name AS 'Title', type_id AS TypeID,\n type.name AS TypeName, class.url as 'url',user.first AS MundaneFirst, user.id AS UserID, user.last AS MundaneLast\n FROM `class`, `difficulty`, `group`, `kingdom`, `prefix`, `room`, `style`, `title`, `type`, `user`\n WHERE difficulty_id=difficulty.id AND `class`.id='$id'\n AND user.group_id=`group`.id AND kingdom_id=kingdom.id AND prefix_id=prefix.id\n AND (room_id=room.id or room_id='0') AND style_id=style.id AND title_id=title.id AND type_id=type.id\n AND class.user_id=user.id\n GROUP BY room_id\n ORDER BY class.name\"\n );\n if ($return) return $return[0];\n else return array();\n }" ]
[ "0.6437587", "0.63881916", "0.636822", "0.6320802", "0.6196118", "0.60858285", "0.604985", "0.60465026", "0.6018451", "0.59775573", "0.5975823", "0.59576726", "0.59284407", "0.5895964", "0.5887209", "0.5886109", "0.58354145", "0.5817564", "0.5800885", "0.57931304", "0.5779707", "0.57535356", "0.57451963", "0.57424474", "0.574098", "0.57077485", "0.5657765", "0.5621885", "0.56157297", "0.5614823" ]
0.78452504
0
/ Get class sections from department name param: department name (Computer Science, Psychology, ...) return: ID, Name, and Section
function classSearchDep($dep) { $sql = "SELECT strCourseID, strCourseName, intSectionNumber FROM tblCourse WHERE tblCourse.strDepartment = $dep INNER JOIN tblSection ON tblSection.strCourseID = tblCourse.strCourseID"; $result = $conn->query($sql); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function getSectionOptions() {\n $sql = \"\n SELECT s.id, \n CONCAT(s.description,' (',f.description,')') AS description\n FROM section s\n JOIN faculty f\n ON s.faculty = f.id\n ORDER BY 2\";\n $dbConn = DbConnectionRegistry::getInstance('mycpd');\n $results = $dbConn->get_all($sql, 'OBJECT');\n if (empty($results)) {\n // initialize array to prevent php warning msg.\n $results = Array();\n }\n\n return $results;\n }", "public function getDepartment();", "abstract protected function getRequiredSections();", "abstract public function sectionName();", "public function getSectionByClass()\n {\n $html = \"\";\n $classID = $this->input->post(\"class_id\");\n $mode = $this->input->post(\"all\");\n $multi = $this->input->post(\"multi\");\n if (!empty($classID)) {\n if (loggedin_role_id() == 3) {\n $result = $this->db->select('teacher_allocation.section_id,section.name')\n ->from('teacher_allocation')\n ->join('section', 'section.id = teacher_allocation.section_id', 'left')\n ->where(array('teacher_allocation.class_id' => $classID, 'teacher_allocation.teacher_id' => get_loggedin_user_id(), 'teacher_allocation.session_id' => get_session_id()))\n ->get()->result_array();\n } else {\n $result = $this->db->select('sections_allocation.section_id,section.name')\n ->from('sections_allocation')\n ->join('section', 'section.id = sections_allocation.section_id', 'left')\n ->where('sections_allocation.class_id', $classID)\n ->get()->result_array();\n }\n if (count($result)) {\n if ($multi == false) {\n $html .= '<option value=\"\">' . translate('select') . '</option>';\n }\n if ($mode == true && loggedin_role_id() != 3) {\n $html .= '<option value=\"all\">' . translate('all_sections') . '</option>';\n }\n foreach ($result as $row) {\n $html .= '<option value=\"' . $row['section_id'] . '\">' . $row['name'] . '</option>';\n }\n } else {\n $html .= '<option value=\"\">' . translate('no_selection_available') . '</option>';\n }\n } else {\n $html .= '<option value=\"\">' . translate('select_class_first') . '</option>';\n }\n echo $html;\n }", "public function getSectionService();", "function get_section_ids($class_id)\n {\n \t\t\n \t $sql = \"select SectionId from section where ClassId='$class_id'\";\n\t $res = mysql_query($sql) or die(\"Error in fetching SectionId from section Table\".mysql_error());\n\t $section_ids = array();\n\n\t while($row = mysql_fetch_array($res)){\n\t $section_id = $row[\"SectionId\"];\n\t array_push($section_ids,$section_id);\n\t }\n\t return $section_ids; \t\n }", "function parse_section()\n\t{\n\t\t\n\t\t/*\n\t\t * Convert the HTML to an object.\n\t\t */\n\t\ttry\n\t\t{\n\t\t\t$this->html_to_object();\n\t\t}\n\t\tcatch (Exception $e)\n\t\t{\n\t\t\t throw new Exception($e->getMessage());\n\t\t\t return FALSE;\n\t\t}\n\t\t\n\t\t/*\n\t\t * Save the section number and the catch line.\n\t\t *\n\t\t * For example:\n\t\t * <p class=vacno>16VAC30-12-40. Information to be sent to persons on the list.</p>\n\t\t */\n\t\t$tmp = $this->dom->find('p.vacno', 0);\n\t\t$tmp = $tmp->plaintext;\n\t\t\n\t\t/*\n\t\t * If the section number and catch line are found in the HTML, extract it.\n\t\t */\n\t\tif (!empty($tmp))\n\t\t{\n\t\t\t$pos = strpos($tmp, '. ');\n\t\t\t$this->section->section_number = substr($tmp, 0, $pos);\n\t\t\t$this->section->catch_line = html_entity_decode(substr($tmp, ($pos+2)));\n\t\t}\n\t\t\n\t\t/*\n\t\t * But if the section number and catch line aren't found in the HTML, then this is a form\n\t\t * list or a DIBR list. Get the pseudo-section-number from the URL.\n\t\t */\n\t\telse\n\t\t{\n\t\t\t$components = explode('+', $this->url);\n\t\t\t$this->section->section_number = $components[2];\n\t\t}\n\t\t\n\t\t/*\n\t\t * Break the section number into its constitutents, to extract its ancestry (title, agency,\n\t\t * and chapter).\n\t\t */\n\t\tpreg_match('/([0-9]{1,2})VAC([0-9]{1,3})-([0-9]{1,3})-([0-9]{1,4})/', $this->section->section_number, $parts);\n\t\t\n\t\t/*\n\t\t * Produce an object containing all of our structural data.\n\t\t */\n\t\t$structure = array(\n\t\t\t1 => 'title',\n\t\t\t2 => 'agency',\n\t\t\t3 => 'chapter',\n\t\t\t4 => 'section');\n\t\t$this->section->structure = new stdClass();\n\t\t$i=1;\n\t\tforeach ($structure as $number => $label)\n\t\t{\n\t\t\t$tmp = new stdClass();\n\t\t\t$tmp->label = $label;\n\t\t\t$tmp->identifier = $parts[$number];\n\t\t\t$tmp->TO_BE_NAMED = 'TO_BE_DEFINED';\n\t\t\t$tmp->level = $parts[$i];\n\t\t\t$this->section->structure->unit[] = $tmp;\n\t\t\t$i++;\n\t\t}\n\n\t\t/*\n\t\t * Find all \"parts.\" I have no idea what this means.\n\t\t */\n\t\t$this->dom->find('p.part');\n\t\t\n\t\t/*\n\t\t * Save the statutory authority under which this regulation was established. This may be\n\t\t * multiple paragraphs, so we build it up with a loop.\n\t\t */\n\t\t$this->section->authority = '';\n\t\tforeach ($this->dom->find('p.auth') as $auth)\n\t\t{\n\t\t\t\n\t\t\t/*\n\t\t\t * Skip the section header (which is just a P tag).\n\t\t\t */\n\t\t\tif ($auth->plaintext == 'Statutory Authority')\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\t$this->section->authority .= $auth->plaintext;\n\t\t\t\n\t\t}\n\t\t\n\t\t/*\n\t\t * Convert HTML entities to Unicode.\n\t\t */\n\t\t$this->section->authority = html_entity_decode($this->section->authority);\n\t\t\n\t\t/*\n\t\t * Save the actual text of this regulation. We do this by getting a list of all paragraphs\n\t\t * with a class that starts with \"sect,\" since we know that sections of text can have the\n\t\t * class \"sectind\" or \"sectbi\", which means it's possible that othe classes are lurking out\n\t\t * there somewhere.\n\t\t */\n\t\t$this->section->text = '';\n\t\tforeach ($this->dom->find('p[class^=sect]') as $text)\n\t\t{\n\t\t\t$this->section->text .= $text->innertext . \"\\n\\n\";\n\t\t}\n\t\t\n\t\t/*\n\t\t * If we didn't get any text, eliminate the variable.\n\t\t */\n\t\t$this->section->text = trim($this->section->text);\n\t\tif (empty($this->section->text))\n\t\t{\n\t\t\tunset($this->section->text);\n\t\t}\n\t\t\n\t\t/*\n\t\t * If we got any text.\n\t\t */\n\t\tif (!empty($this->section->text))\n\t\t{\n\t\t\n\t\t\t/*\n\t\t\t * Convert HTML entities to Unicode.\n\t\t\t */\n\t\t\t$this->section->text = html_entity_decode($this->section->text);\n\t\t\n\t\t\t/*\n\t\t\t * Take our unstructured text and give it structure.\n\t\t\t */\n\t\t\t$structurer = new SubsectionIdentifier();\n\t\t\t$structurer->text = $this->section->text;\n\t\t\t$structurer->parse();\n\t\t\t$this->section->text = $structurer->structured;\n\t\t\t\n\t\t}\n\t\t\n\t\t/*\n\t\t * Save the history of the establishment of and modifications to this regulation.\n\t\t */ \n\t\t$this->section->history = '';\n\t\tforeach ($this->dom->find('p[class^=history]') as $history)\n\t\t{\n\t\t\t\n\t\t\t/*\n\t\t\t * Skip the section header (which is just a P tag).\n\t\t\t */\n\t\t\tif ($history->innertext == 'Historical Notes')\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t$this->section->history .= $history->innertext . \"\\n\\n\";\n\t\t\t\n\t\t}\n\t\t\n\t\t/*\n\t\t * Convert HTML entities to Unicode.\n\t\t */\n\t\t$this->section->history = html_entity_decode($this->section->history);\n\t\t\n\t\t/*\n\t\t * If we didn't get any history data, eliminate the variable.\n\t\t */\n\t\t$this->section->history = trim($this->section->history);\n\t\tif (empty($this->section->history))\n\t\t{\n\t\t\tunset($this->section->history);\n\t\t}\n\t\t\n\t\treturn TRUE;\n\t\t\n\t}", "public function getSections ()\n {\n return $this->sections;\n }", "function learndash_course_get_sections( $course_id = 0, $query_args = array() ) {\n\t$sections = array();\n\n\t$course_id = absint( $course_id );\n\tif ( ! empty( $course_id ) ) {\n\t\t$ld_course_object = LDLMS_Factory_Post::course( intval( $course_id ) );\n\t\tif ( ( $ld_course_object ) && ( is_a( $ld_course_object, 'LDLMS_Model_Course' ) ) ) {\n\t\t\t$query_args_defaults = array(\n\t\t\t\t'return_type' => 'WP_Post',\n\t\t\t);\n\n\t\t\t$query_args = wp_parse_args( $query_args, $query_args_defaults );\n\n\t\t\t$sections = $ld_course_object->get_sections( $query_args );\n\t\t}\n\t}\n\n\treturn $sections;\n}", "public function wholeSection($class = 'auto', $sections = array()) {\n\t\t$sectionsHtml = '';\n\t\t$count = 1;\n\t\tforeach ($sections as $section) {\n\t\t\t$anchor = \"section\" . $count;\n\t\t\t$sectionsHtml .= $this->individualSection($section['title'], \n\t\t\t\t\t$section['content'], $anchor);\n\t\t\t$count++;\n\t\t}\n\t\t$class .= ' section-container ';\n\t\t$sectionsHtml = $this->Html->div($class, $sectionsHtml, array(\n\t\t\t\t'escape' => FALSE,\n\t\t\t\t'data-section' => ''\n\t\t));\n\t\treturn $sectionsHtml;\n\t}", "public function getSectionAccess($section_id)\n {\n switch ($section_id) {\n case 'patient': {\n $return = array(\n 'publicService' => array(\n 'index' => 1,\n 'primaryTest'=>'آزمون های بدو ورود',\n 'publicTest' =>'آزمون های عمومی',\n 'name_fa' => 'خدمات عمومی'\n ),\n 'anxietyClinic' => array(\n 'index' => 1,\n 'test'=>'آزمون ها',\n 'consultation'=>'مشاوره',\n 'presenceService'=>'خدمات حضوری',\n 'name_fa' => 'کلینیک اختلالات اضطراب'\n ),\n 'diagnosisClinic' => array(\n 'index' => 1,\n 'test'=>'آزمون ها',\n 'consultation'=>'مشاوره',\n 'presenceService'=>'خدمات حضوری',\n 'name_fa' => 'كلينيک تشخيص'\n ),\n 'behavioralEmotionalClinic' => array(\n 'index' => 1,\n 'test'=>'آزمون ها',\n 'consultation'=>'مشاوره',\n 'presenceService'=>'خدمات حضوری',\n 'name_fa' => 'كلينيك رفتاری هيجانی'\n ),\n 'developmentalClinic' => array(\n 'index' => 1,\n 'test'=>'آزمون ها',\n 'consultation'=>'مشاوره',\n 'presenceService'=>'خدمات حضوری',\n 'name_fa' => 'كلينيک تحول و تكامل'\n ),\n 'learningDisabilitiesClinic' => array(\n 'index' => 1,\n 'test'=>'آزمون ها',\n 'consultation'=>'مشاوره',\n 'presenceService'=>'خدمات حضوری',\n 'name_fa' => 'كلينيک مهارت های تحصيلی'\n ),\n 'depressionClinic' => array(\n 'index' => 1,\n 'test'=>'آزمون ها',\n 'consultation'=>'مشاوره',\n 'presenceService'=>'خدمات حضوری',\n 'name_fa' => 'كلينيک اختلالات خلقی'\n ),\n 'familyClinic' => array(\n 'index' => 1,\n 'test'=>'آزمون ها',\n 'consultation'=>'مشاوره',\n 'presenceService'=>'خدمات حضوری',\n 'name_fa' => 'كلينيک خانواده'\n ),\n 'rehabilitationClinic' => array(\n 'index' => 1,\n 'test'=>'آزمون ها',\n 'consultation'=>'مشاوره',\n 'presenceService'=>'خدمات حضوری',\n 'name_fa' => 'كلينيک اختلالات كف لگن'\n ),\n 'industrialOrganizationalClinic' => array(\n 'index' => 1,\n 'test'=>'آزمون ها',\n 'consultation'=>'مشاوره',\n 'presenceService'=>'خدمات حضوری',\n 'name_fa' => 'كلينيک صنعتی سازمانی'\n ),\n 'creditManagement' => array(\n 'index' => 1,\n 'increaseCredit'=>'افزایش اعتبار',\n 'transactionList'=>'لیست تراکنش ها',\n 'name_fa' => 'مدیریت اعتبار'\n ),\n\n 'profile' => array(\n 'index' => 1,\n 'singleMenu'=>1,\n 'name_fa' => 'مشاهده پرونده'\n ),\n 'signout' => array(\n 'index' => 1,\n 'singleMenu'=>1,\n 'name_fa' => 'خروج'\n )\n\n );\n break;\n }\n\n case 'estekhare': {\n $return = array(\n\n\n );\n break;\n }\n default: {\n $return = null;\n }\n }\n\n return $return;\n }", "public function get_sections() {\n global $DB;\n $sql = \"SELECT cs.*, ss.pageorder, ss.stealth\n FROM {course_sections} cs, {subpage_sections} ss\n WHERE cs.id = ss.sectionid AND ss.subpageid = ? ORDER BY ss.pageorder\";\n return $DB->get_records_sql($sql, array($this->subpage->id));\n\n }", "public function get_section_names($co = null, $sec = array())\n\t{\n\t\t$this->set_current_jobs();\n\t\t$sections = array();\n\t\tforeach($this->current_jobs->arr() as $o)\n\t\t{\n\t\t\tif(sizeof($sec) && !in_array($o->prop(\"company_section\") , $sec))//kui pole ette antud yksustes j2tab vahele\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tif((!$co || $co == $o->prop(\"employer\")) && $o->prop(\"company_section.name\"))\n\t\t\t{\n\t\t\t\t$sections[$o->prop(\"company_section\")] = $o->prop(\"company_section.name\");\n\t\t\t}\n\t\t}\n\n\t\treturn $sections;\n\t}", "function getSectionProf($sectionid) {\n\t$sql = \"SELECT strFirstName, strLastName\n\t\tFROM tblFaculty\n\t\tWHERE tblSection.intSectionID = $sectionid \n\t\tAND tblSection.intFacultyID = tblFaculty.intFacultyID\";\n\t$result = $conn->query($sql);\n\treturn $result;\n}", "function getDepartmentName($dept)\r\n{\r\n // What if we moved this into the DepartmentsHandler class?\r\n global $depts;\r\n if(isset($depts[$dept])){ // Make sure that ticket has a department\r\n $department = $depts[$dept]->getVar('department');\r\n } else { // Else, fill it with 0\r\n $department = _XHELP_TEXT_NO_DEPT;\r\n }\r\n return $department;\r\n}", "function getSectionList($db, $varname, $default = \"\", $extra = \"\", $criteria = \"\", $action = \"\", $listonly = false)\n{\n global $strDataCompany;\n $strResult = \"\";\n $criteria .= ($strDataCompany == \"\") ? \"\" : \"AND management_code LIKE '%\" . printCompanyCode(\n $strDataCompany\n ) . \"%'\";\n if (!$listonly) {\n $strResult .= \"<select name=\\\"$varname\\\" $action>\\n\";\n }\n $strResult .= $extra;\n $strSQL = \"SELECT * FROM hrd_section WHERE 1=1 $criteria ORDER BY department_code, section_code \";\n $resDb = $db->execute($strSQL);\n while ($rowDb = $db->fetchrow($resDb)) {\n $strCode = $rowDb['section_code'];\n $strName = $rowDb['section_name'];\n ($strCode == $default) ? $strSelect = \"selected\" : $strSelect = \"\";\n $strResult .= \"<option value=\\\"$strCode\\\" $strSelect>$strCode - $strName</option>\\n\";\n }\n if (!$listonly) {\n $strResult .= \"</select>\\n\";\n }\n return $strResult;\n}", "function lookup_section($user, $course) {\n global $CFG;\n \n $sql = \"SELECT sec.*, c.course_number, c.department\n FROM {$CFG->prefix}block_courseprefs_sections sec,\n {$CFG->prefix}block_courseprefs_courses c,\n {$CFG->prefix}block_courseprefs_students cpsst\n WHERE sec.idnumber = '{$course->idnumber}'\n AND cpsst.sectionsid = sec.id\n AND sec.coursesid = c.id\n AND cpsst.status = 'enrolled'\n AND cpsst.usersid = {$user->id}\";\n\n return get_record_sql($sql);\n}", "public function sections() {\n $data = [];\n\n if(empty($this->section)):\n $data = $this->getSections()->fetchAll(PDO::FETCH_NUM);\n else:\n $data = $this->getSubSectionsFrom($this->section)->fetchAll(PDO::FETCH_NUM);\n endif;\n\n return $data;\n }", "function get_all_class_sec()\n\t {\n\t\t $sql=\"SELECT c.class_name,c.class_id,s.sec_name,s.sec_id,cm.class_sec_id,cm.class,cm.section,cm.status FROM edu_class AS c,edu_sections AS s ,edu_classmaster AS cm WHERE cm.class = c.class_id AND cm.section = s.sec_id AND cm.status='Active' ORDER BY c.class_name\";\n\t\t $result1=$this->db->query($sql);\n return $result1->result();\n\t }", "public function get_subject_list($class_id, $section_id)\n {\n $this->db->select('sa.subject_id,s.name');\n $this->db->from('subject_assign as sa');\n $this->db->join('subject as s', 's.id = sa.subject_id', 'left');\n $this->db->where('sa.class_id', $class_id);\n $this->db->where('sa.section_id', $section_id);\n $subjects = $this->db->get()->result();\n $name_list = '';\n foreach ($subjects as $row) {\n $name_list .= '- ' . $row->name . '<br>';\n }\n return $name_list;\n }", "public static function getAllSections()\n\t\t{\n\t\t\ttry \n\t\t\t{\n\t\t\t\t$data = DB::table('section')->get();\n\t\t\t\treturn $data;\n\t\t\t} \n\t\t\tcatch (Exception $e) \n\t\t\t{\n\t\t\t\tAjaxController::SystemLogs($e->getMessage());\n\t\t\t\treturn 'ERROR';\n\t\t\t}\n\t\t}", "public function getSectionNames ();", "function getDepartmentCourses($DeptID){\n\tglobal $conn;\n\t\n\t$sqlGet = sprintf(\"SELECT COUNT(*) FROM `\".DB_PREFIX.\"courses` WHERE `DeptID` = '%s'\", $DeptID);\t\t\n\t$res = db_query($sqlGet,DB_NAME,$conn);\n\t$row = db_fetch_array($res);\n\treset($row);\n\treturn current($row);\n}", "function extract_section($name)\n{\n $pos = strpos ( $name, \".\" );\n if (is_numeric ( substr ( $name, $pos + 1 ) ))\n return substr ( $name, 0, $pos );\n return null;\n}", "public function getSections(Request $request){\n $subcoursework = SubCoursework::where('id', $request->input('subcoursework'))->first();\n\n if(!$subcoursework){\n return Response::json(array());\n } else {\n $subcourseworkId = $subcoursework->id;\n }\n\n $sections = Section::where('subcoursework_id', $subcourseworkId)->get();\n $results=[];\n foreach ($sections as $sctn){\n $result = [];\n $result['name'] = $sctn->name;\n $result['id'] = $sctn->id;\n $results[] = $result;\n }\n\n return Response::json($results);\n }", "public function getCoursesTaught() // {{{\n {\n global $CCV_CONST;\n $records = array();\n $elements = $this->m_xpath->query(\"//section[@id='9dc74140d0ff4b26a2d4a559bc9b5a2b']\");\n for ($i = 0; !is_null($elements) && $i < $elements->length; $i++)\n {\n $record = array();\n $id = $this->get_xpath(\"@recordId\", $elements->item($i));\n $record[\"role\"] = $this->get_xpath(\"field[@id='cefdb78ecd9e43fb8554d21e7d454132']/value\", $elements->item($i));\n $record[\"department\"] = $this->get_xpath(\"field[@id='b532bb9be90e4a93a879f23e79cfd652']/value\", $elements->item($i));\n $record[\"semester\"] = $this->get_xpath(\"field[@id='bab7abad3efb404897984bee6ed33692']/value\", $elements->item($i));\n $record[\"code\"] = $this->get_xpath(\"field[@id='d62dd205bef0463a8a23436c75f83f41']/value\", $elements->item($i));\n $record[\"title\"] = $this->get_xpath(\"field[@id='95728285a48242a896b5727c98a7c0c5']/value\", $elements->item($i));\n $record[\"level\"] = $this->get_xpath(\"field[@id='6db7aff8daf74420abcca56f8e6d6cc3']/lov/@id\", $elements->item($i));\n $date = $this->get_xpath(\"field[@id='76f08a7bda38475bb15660d4fc57745f']/value\", $elements->item($i));\n @list($record[\"start_date_year\"], $record[\"start_date_month\"], $record[\"start_date_day\"]) = explode(\"-\", $date);\n $date = $this->get_xpath(\"field[@id='c87587a998c04d3bbb23e853516d2f94']/value\", $elements->item($i));\n @list($record[\"end_date_year\"], $record[\"end_date_month\"], $record[\"end_date_day\"]) = explode(\"-\", $date);\n $record[\"nb_students\"] = $this->get_xpath(\"field[@id='c2b79aa4e9e0431db8f3c4e2c32db3b0']/value\", $elements->item($i));\n $record[\"nb_credits\"] = $this->get_xpath(\"field[@id='c2b79aa4e9e0431db8f3c4e2c32db3b0']/value\", $elements->item($i));\n $record[\"nb_credits\"] = $this->get_xpath(\"section[@id='05b1c7c941194144b786690d89ba7c8c']/field[@id='97231512141a452a82151cc162e9a59c']/value\", $elements->item($i));\n $records[$id] = $record;\n }\n return $records;\n }", "function getSection (&$phpFile, &$phpFunc, &$title){\n$sectionInfo = array(\n 'home' => array ('HOME' ),\n '404' => array ('Document not found'),\n 'login' => array ('Log In'),\n 'news' => array ('NEWS', 'news.php'),\n 'newsadmin' => array ('News Page Administration', 'news.php', 'newsadmin'),\n 'shame' => array ('Bans', 'shame.php'),\n 'shameadmin' => array ('Bans Administration', 'shame.php', 'shameadmin'),\n 'messages' => array ('BZ Mail'),\n 'bzforums' => array ('BZ Forums'),\n 'fights' => array ('Matches'),\n 'teams' => array ('Teams'),\n 'teaminfo' => array ('Team Information'),\n 'leaveteam' => array ('Leave Team,'),\n 'jointhisteam' => array ('Join Team', 'jointeam.php', 'jointeam'), // \"alias\"\n 'jointeam' => array ('Join Team'),\n 'playerinfo' => array ('Player Profile'),\n 'playeradmin' => array ('Player Profile EDIT', 'playerinfo.php', 'playerinfo'), // \"alias\"\n 'sendmessage' => array ('Send Message'),\n 'dismissteam' => array ('Dismiss Team'),\n 'deleteplayer' => array ('Delete Player'),\n 'online' => array (\"Who's Online\"),\n 'banplayer' => array ('Ban Player'),\n 'teamadmin' => array ('Team Administration'),\n 'faq' => array ('Frequently Asked Questions'),\n 'rules' => array ('Match Rules and How-tos'),\n 'links' => array ('Links'),\n 'linkadmin' => array ('Links Page Administration', 'links.php', 'linkadmin'),\n 'contact' => array ('Contact Information'),\n 'entermatch' => array ('Enter Match'),\n 'editmatch' => array ('Edit/Delete Match', 'entermatch.php', 'entermatch'),\n 'createteam' => array ('Create Team'),\n 'register' => array ('Register'),\n 'players' => array ('Players'),\n 'invite' => array ('Invite'),\n 'oppsumm' => array ('Opponent Summary'),\n 'adminlist' => array ('List of Administrators'),\n 'debuginfo' => array ('Debug info'),\n 'visitlog' => array ('Visitor Log'),\n 'admintext' => array ('Administrate Site Text'),\n 'bulkmail' => array ('Bulk Mail'),\n 'reviveteam' => array ('Revive a Deleted Team'),\n 'runmaintenance' => array ('Run Site Maintenance'),\n 'debug' => array ('Debugging Information'),\n 'dispchangelog' => array ('Display Code Change Log'),\n 'ipreport' => array ('Duplicate Player IPs'),\n 'badpass' => array ('Possible password hack attempts'),\n 'permissions' => array('Permissions'),\n 'required' => array ('Enter REQUIRED Information'),\n 'createaccount' => array ('Create New Account'),\n 'standings' => array ('Standings'),\n 'seasons' => array ('Seasons'),\n 'season' => array ('Season Standings'),\n 'addseason' => array ('Manage Season'),\n);\n\n\n if( isset( $_POST['link'] ) )\n $sName = $_POST['link'];\n else if( isSet( $_GET['link'] ) )\n $sName = $_GET['link'];\n else\n $sName = 'home';\n\n if (!$sectionInfo[$sName])\n $sName = '404';\n\n // By now, we have a valid section.\n if (isset($sectionInfo[$sName][2])) \n $phpFunc = 'section_' . $sectionInfo[$sName][2];\n else\n $phpFunc = 'section_' . $sName;\n\n if (isset($sectionInfo[$sName][1]))\n $phpFile = 'section/' . $sectionInfo[$sName][1];\n else\n $phpFile = 'section/' . $sName . \".php\";\n $title = $sectionInfo[$sName][0];\n\n $GLOBALS['MODULE_NAME'] = substr($phpFunc,8);\n}", "protected abstract function generateSections();", "public function getSectionSubject(Request $request){\n\t\t$class_div_id = $request->class_div_id;\n\t\t//display all the details about the class and the subject\n\t\t//note that subject is defined at the syllabus table and NOT at the class_syllabus table\n\t\t//hence that should be the route here\n\t\t$record = Syllabus::join('sch_classes', 'sch_classes.class_id', '=', 'syllabus.class_id')\n\t\t\t\t\t->join('subjects', 'subjects.subject_id', '=', 'syllabus.subject_id')\n\t\t\t\t\t->join('class_syllabus', 'class_syllabus.syllabus_id', '=', 'syllabus.syllabus_id')\n\t\t\t\t\t->join('class_div', 'class_div.class_div_id', '=', 'class_syllabus.class_div_id')\n\t\t\t\t\t->select('syllabus.class_id AS class_id','syllabus.subject_id AS subject_id',\n\t\t\t\t\t\t'class_div.class_div_id AS class_div_id', 'class_div', 'subject')\n\t\t\t\t\t->where('class_syllabus.class_div_id', '=', $class_div_id)\n\t\t\t\t\t->get();\n\t\treturn $record;\n\t}" ]
[ "0.59809196", "0.5936653", "0.5755903", "0.57545286", "0.5654836", "0.5639641", "0.55766976", "0.55225134", "0.55031997", "0.5470757", "0.5428518", "0.5421831", "0.5365207", "0.53523034", "0.5351241", "0.53511095", "0.53370076", "0.5322198", "0.53215784", "0.5309402", "0.5305511", "0.52975005", "0.5296613", "0.529363", "0.5265602", "0.5262897", "0.5252013", "0.5247096", "0.5238826", "0.5227167" ]
0.62738353
0
/ Get the scheduling information about a certain section param: sectionid (123456789098, ...) return: start time, end time, days
function getSectionTime($sectionid) { $sql = "SELECT intSectionTimeStart, intSectionTimeEnd, strDayPattern FROM tblSectionTime, tblSectionDayPattern WHERE tblSection.sectionID = $sectionid"; $result = $conn->query($sql); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function getSectionDate($sectionid) {\n\t$sql = \"SELECT dtmStart, dtmEnd\n\t\tFROM tblSection\n\t\tWHERE sectionID = $sectionid\";\n\t$result = $conn->query($sql);\n\treturn $result;\n}", "public function getSection($section = \"\", $id = 0)\n\t{\n\t\tif ($id != 0)\n\t\t{\n\t\t\t$db = JFactory::getDbo();\n\n\t\t\t$query = \" SELECT * FROM \" . $db->quoteName($this->_table_prefix . $section)\n\t\t\t\t. \" WHERE \" . $db->quoteName($section . \"_id\") . \" = \" . (int) $id . \" \";\n\n\t\t\t$db->setQuery($query);\n\n\t\t\treturn $db->loadObject();\n\t\t}\n\n\t\treturn null;\n\t}", "function get_sections($secid=''){\n\tglobal $wpdb;\n\t$table=$wpdb->prefix .'cts_sections';\n\t$query = ($secid) ? \"SELECT * FROM $table where `id`='$secid'\" : \"SELECT * FROM $table\";\n\t$rows = $wpdb->get_results($query);\n\treturn $rows;\n}", "private function get_update_time($section){\n\t\tswitch ($section) {\n\t\t\tcase \"highscore\":\n\t\t\t\treturn date(\"Y-m-d H:i:s\", strtotime( '-1 hour' ) );\n\t\t\t\tbreak;\n\t\t\tcase \"alliances\":\n\t\t\tcase \"players\":\n\t\t\t\treturn date(\"Y-m-d H:i:s\", strtotime( '-1 day' ) );\n\t\t\t\tbreak;\n\t\t\tcase \"playerData\":\n\t\t\tcase \"universe\":\n\t\t\t\treturn date(\"Y-m-d H:i:s\", strtotime( '-1 week' ) );\n\t\t\t\tbreak;\n\t\t\tcase \"serverData\":\n\t\t\tdefault:\n\t\t\t\treturn date(\"Y-m-d H:i:s\", strtotime( '-1 month' ) );\n\t\t\t\tbreak;\n\t\t}\n\t}", "function getSectionDetails($params = array()){\n\t\t$this->db->select('*');\n\t\t$this->db->from($this->sectionTbl);\n //fetch data by conditions\n\t\tif(array_key_exists(\"conditions\",$params)){\n\t\t\tforeach ($params['conditions'] as $key => $value) {\n\t\t\t\t$this->db->where($key,$value);\n\t\t\t}\n\t\t}\n\t\tif(array_key_exists(\"id\",$params)){\n\t\t\t$this->db->where('id',$params['id']);\n\t\t\t$query = $this->db->get();\n\t\t\t$result = $query->row_array();\n\t\t}else{\n //set start and limit\n\t\t\tif(array_key_exists(\"start\",$params) && array_key_exists(\"limit\",$params)){\n\t\t\t\t$this->db->limit($params['limit'],$params['start']);\n\t\t\t}elseif(!array_key_exists(\"start\",$params) && array_key_exists(\"limit\",$params)){\n\t\t\t\t$this->db->limit($params['limit']);\n\t\t\t}\n\t\t\t$query = $this->db->get();\n\t\t\tif(array_key_exists(\"returnType\",$params) && $params['returnType'] == 'count'){\n\t\t\t\t$result = $query->num_rows();\n\t\t\t}elseif(array_key_exists(\"returnType\",$params) && $params['returnType'] == 'single'){\n\t\t\t\t$result = ($query->num_rows() > 0)?$query->row_array():FALSE;\n\t\t\t}else{\n\t\t\t\t$result = ($query->num_rows() > 0)?$query->result_array():FALSE;\n\t\t\t}\n\t\t}\n //return fetched data\n\t\treturn $result;\n\t}", "public function get_by_id_sec($section_id){\n\n\t\t\t$this->db->from($this->tab_name); //from\n\t\t\t$this->db->where('section_id', $section_id); //where\n\n\t\t\t$Q = $this->db->get();// select *\n\n\t\t\treturn $Q->row(); // returbn the specific row\n\t\t}", "public function scheduleDetails($id)\n\t{\n\t\t$this->load->helper('url');\n\t\t$query =$this->db->query('select s.*,datediff(s.schedule_start_time,now()) as daycount from schedules s where s.course_vendor_map_id in ('.$id.') and s.schedule_end_time>now() order by course_vendor_map_id ASC');\n\t\t//$query = $this->db->get();\n\t\treturn $query->result_array();\n\t}", "public function get_section($section_id) {\n $ojs_section = NULL;\n \n if (array_key_exists($section_id, $this->section_list)) {\n $ojs_section = $this->section_list[$section_id];\n }\n \n return $ojs_section;\n }", "abstract public function sectionName();", "function get_lunch_schedule($schedtype,$gc_start_break,$sched_break_start,$gc_end_break,$sched_break_end,$start_break_partner,$end_break_partner,$sched_to,$actual_timeout,$employee_idno,$date_timelog){\n\t//------------------$gc_end_break - lunch start\n\t//-------------------$gc_start_break - lunch end\n\t//--baligtad\n\t$trs = get_instance();\n\t$trs->load->model('time_record/Timerecordsummary_model');\n\t\t$ded1 = 0;\n\t\t$ded2 = 0;\n\t\t$fix_lunch_break = 0;\n\t\t$lunch_deduction = 0;\n\t\t//-----------LUNCH DEDUCTION / OVERBREAK--------------------------\n\t\t//early out\n\t\tif($gc_start_break <= $sched_break_start){\n\t\t\t$x = $gc_start_break - $sched_break_start;\n\t\t\t$ded1 = $ded1 + $ded2;\n\t\t}\n\t\t//late in\n\t\tif($gc_end_break >= $sched_break_end){\n\t\t\t$y = $gc_end_break -$sched_break_end;\n\t\t\t$ded2 = $ded2 + $y;\n\t\t}\n\t\t//checks if start or end break of employee is greater than his actual time out\n\t\tif($gc_start_break > $sched_to || $gc_end_break > $sched_to){\n\t\t\t$lunch_deduction = 0;\n\t\t}else{\n\t\t\t//\n\t\t\t$lunch_deduction = $ded1 + $ded2;\n\t\t}\n\t\t// $lunch_deduction = $ded1 + $ded2;\n\n\t\t// $one = date('H:i', mktime(0,$gc_start_break));\n\t\t// $two = date('H:i', mktime(0,$start_break_partner));\n\t\t// $three = date('H:i', mktime(0,$gc_end_break));\n\t\t// $four = date('H:i', mktime(0,$end_break_partner));\n\t\t// print_r(array(\n\t\t// \t'start_break' => $one,\n\t\t// \t'start_partner' => $two,\n\t\t// \t'end_break' => $three,\n\t\t// \t'end_break_partner' => $four\n\t\t// ));\n\n\n\t\t// print_r(array('start' => $start_break_partner, 'sched' => $sched_break_start));\n\t\t//----FIX LUNCH BREAK------------------\n\t\tif(($gc_start_break > $sched_break_start) && ($start_break_partner < $sched_break_start)){\n\t\t\t$fix_lunch_break = $fix_lunch_break + ($gc_start_break - $sched_break_start);\n\t\t}\n\t\telse{\n\t\t\t$fix_lunch_break = $fix_lunch_break + 0;\n\t\t}\n\t\tif(($gc_end_break < $sched_break_end)){\n\t\t\t$fix_lunch_break = $fix_lunch_break + ($sched_break_end - $gc_end_break);\n\t\t}else{\n\t\t\t$fix_lunch_break = $fix_lunch_break + 0;\n\t\t}\n\t\t//checks if employee is half day\n\t\tif(($actual_timeout == $gc_start_break) && ($actual_timeout < $sched_break_end)){\n\t\t\t$fix_lunch_break = $fix_lunch_break\t+ ($gc_start_break - $gc_end_break);\n\t\t}\n\t\t//checks if start or end break of employee is greater than his actual time out\n\t\tif($gc_start_break > $sched_to || $gc_end_break > $sched_to){\n\t\t\t$fix_lunch_break = 0;\n\t\t}else{\n\t\t\t$fix_lunch_break = $fix_lunch_break;\n\t\t}\n\t\t//will check if time record exist in work order. if workorder exist, it will remove the overbreak of employee\n\t\t$breakout_hhmm = date('H:i', mktime(0,$gc_start_break));\n\t\t$check_workorder = $trs->Timerecordsummary_model->check_lunch_workorder($employee_idno,$date_timelog,$breakout_hhmm)->row();\n\t\tif($check_workorder != null){\n\t\t\t$et = convert_to_minutes($check_workorder->end_time);\n\t\t\tif($et > $sched_break_end){\n\t\t\t\t$overbreak_deduct = $et - $sched_break_end;\n\t\t\t\t$fix_lunch_break = $fix_lunch_break - $lunch_deduction;\n\t\t\t\t$lunch_deduction = $lunch_deduction - $overbreak_deduct;\n\n\t\t\t}\n\t\t}\n\t\t$getbreaks = array(\n\t\t\t'fix_lunch_break' => $fix_lunch_break,\n\t\t\t'lunch_deduction' => $lunch_deduction\n\t\t);\n\t\treturn $getbreaks;\n}", "function report_editdates_update_dates_by_section($courseid, array $sectionnums, $offset) {\n global $DB, $CFG;\n\n if ($courseid == SITEID) {\n return false;\n }\n\n if (!is_array($sectionnums)) {\n return false;\n }\n\n $course = $DB->get_record('course', array('id' => $courseid), '*', MUST_EXIST);\n $modinfo = get_fast_modinfo($course);\n\n $forceddatesettings = array();\n $moddatesettings = array();\n\n // Loop through each section in the course.\n foreach ($sectionnums as $sectionnum => $value) {\n // Course modules in the section.\n $cms = $modinfo->get_section_info($sectionnum);\n foreach ($cms as $key => $cmid) {\n $cm = $modinfo->get_cm($cmid);\n\n if (!$cm->has_view()) {\n continue;\n }\n\n if (!$cm->uservisible) {\n continue;\n }\n\n // Config date settings forced and this is one of the forced date setting.\n if ( ($CFG->enablecompletion || $CFG->enableavailability)\n && ($cm->completionexpected != 0 || $cm->availablefrom != 0\n || $cm->availableuntil != 0 ) ) {\n // Competionexpected is set for this module.\n if ($cm->completionexpected != 0) {\n $forceddatesettings[$cm->id]['completionexpected'] =\n strtotime($offset, $cm->completionexpected);\n }\n if ($cm->availablefrom != 0) {\n // Availablefrom is set for this module.\n $forceddatesettings[$cm->id]['availablefrom'] =\n strtotime($offset, $cm->availablefrom);\n }\n if ($cm->availableuntil != 0) {\n // Availableuntil is set for this module.\n $forceddatesettings[$cm->id]['availableuntil'] =\n strtotime($offset, $cm->availableuntil);\n }\n } else {\n // It is module date setting.\n\n $mod = report_editdates_mod_data_date_extractor::make($cm->modname, $course);\n if ($mod) {\n // Received date settings of the module.\n if ($cmdatesettings = $mod->get_settings($cm)) {\n // Loop through each setting and add to the array.\n foreach ($cmdatesettings as $cmdatetype => $cmdatesetting) {\n // Value should be updated only if this mod is enabled.\n if ($cmdatesetting->currentvalue != 0 ) {\n $moddatesettings[$cm->id][$cmdatetype] =\n strtotime($offset, $cmdatesetting->currentvalue);\n }\n }\n }\n }\n }\n } // End of $cms loop for each course module in section.\n } // End of loop for each section in course.\n\n $transaction = $DB->start_delegated_transaction();\n try {\n // Updating forced settings applied to modules.\n foreach ($forceddatesettings as $cmid => $cmdatsettings) {\n $cm = new stdClass();\n $cm->id = $cmid;\n foreach ($cmdatsettings as $datetype => $value) {\n $cm->$datetype = $value;\n }\n // Update object in course_modules class.\n $DB->update_record('course_modules', $cm, true);\n }\n\n // Updating mod date settings.\n foreach ($moddatesettings as $cmid => $datesettings) {\n $cm = $modinfo->get_cm($cmid);;\n $modname = $cm->modname;\n\n $modinstance = report_editdates_mod_data_date_extractor::make($cm->modname, $course);\n if ($modinstance) {\n $modinstance->save_dates($cm, $datesettings);\n }\n }\n $transaction->allow_commit();\n\n } catch (Exception $e) {\n $transaction->rollback($e);\n }\n}", "public function getScheduleTimes();", "public function getSchedule() { }", "function getAssignmentsForSection($section){\r\n $query = \"select * from assignment where section_id =?\";\r\n return $this->makeParamQuery($query, array($section));\r\n }", "public function getSectionService();", "private function getPendingBySection($section) {\n switch ($section) {\n case self::REGATTA:\n return UpdateManager::getPendingRequests();\n case self::SEASON:\n return UpdateManager::getPendingSeasons();\n case self::SCHOOL:\n return UpdateManager::getPendingSchools();\n case self::FILE:\n return UpdateManager::getPendingFiles();\n case self::CONFERENCE:\n return UpdateManager::getPendingConferences();\n case self::SAILOR:\n return UpdateManager::getPendingSailors();\n default:\n throw new InvalidArgumentException(\"Invalid section provided: $section.\");\n }\n }", "function loadTaskDetails($id_task)\n{\n\t$db = database();\n\n\t$task = array();\n\n\t$db->fetchQuery('\n\t\tSELECT \n\t\t\tid_task, next_time, time_offset, time_regularity, time_unit, disabled, task\n\t\tFROM {db_prefix}scheduled_tasks\n\t\tWHERE id_task = {int:id_task}',\n\t\tarray(\n\t\t\t'id_task' => $id_task,\n\t\t)\n\t)->fetch_callback(\n\t\tfunction ($row) use (&$task) {\n\t\t\tglobal $txt;\n\n\t\t\t$task = array(\n\t\t\t\t'id' => $row['id_task'],\n\t\t\t\t'function' => $row['task'],\n\t\t\t\t'name' => $txt['scheduled_task_' . $row['task']] ?? $row['task'],\n\t\t\t\t'desc' => $txt['scheduled_task_desc_' . $row['task']] ?? '',\n\t\t\t\t'next_time' => $row['disabled'] ? $txt['scheduled_tasks_na'] : standardTime($row['next_time'] == 0 ? time() : $row['next_time'], true, 'server'),\n\t\t\t\t'disabled' => $row['disabled'],\n\t\t\t\t'offset' => $row['time_offset'],\n\t\t\t\t'regularity' => $row['time_regularity'],\n\t\t\t\t'offset_formatted' => date('H:i', $row['time_offset']),\n\t\t\t\t'unit' => $row['time_unit'],\n\t\t\t);\n\t\t}\n\t);\n\n\t// Should never, ever, happen!\n\tif (empty($task))\n\t{\n\t\tthrow new \\ElkArte\\Exceptions\\Exception('no_access', false);\n\t}\n\n\treturn $task;\n}", "function get_section_fields($sid=0){\n\tglobal $wpdb;\n\t$table=$wpdb->prefix . 'cts';\n\t$query = \"SELECT * FROM $table where `section_id`='$sid'\";\n\t$rows = $wpdb->get_results( $query );\n\treturn $rows;\t\n}", "public function getScheduleInfo() {\n \t$val = $this->cacheGetPlain('schedule_info');\n \tif (is_null($val))\n \t\treturn $this->cacheSetPlain('schedule_info', $this->getOffering()->getScheduleInfo());\n \telse\n \t\treturn $val;\n\t}", "private function section($section)\r\n\t{\r\n\t\t$ret_val = null;\r\n\t\tswitch(isset($this->container()->sections[$section]))\r\n\t\t{\r\n\t\t\tcase false:\r\n\t\t\tif(!$this->sectionModel instanceof Section)\r\n\t\t\t{\r\n\t\t\t\t$where = is_numeric($section) ? ['id' => $section] : ['name' => $section];\r\n\t\t\t\t$found = $this->containerModel->getSections()\r\n\t\t\t\t\t->where($where)\r\n\t\t\t\t\t->one();\r\n\t\t\t\t$this->sectionModel = $found instanceof Section ? $found : null;\r\n\t\t\t\t$ret_val = $this->sectionModel;\r\n\t\t\t\t$this->containerModel->populateRelation('sections', array_merge($this->containerModel>sections, [$section => $ret_val]));\r\n\t\t\t\tCache::setModel('config-container-'.$this->container()->name(), $this->containerModel);\r\n\t\t\t}\r\n\t\t\tbreak;\r\n\r\n\t\t\tdefault:\r\n\t\t\t$ret_val = $this->containerModel->sections[$section];\r\n\t\t\tbreak;\r\n\t\t}\r\n\t\treturn $ret_val;\r\n\t}", "function getSectionRoom($sectionid) {\n\t$sql = \"SELECT strFacilityName, intRoomNumber\n\t\tFROM tblFacility, tblRoom\n\t\tWHERE tblSection.intSectionID = $sectionID\n\t\tAND tblSection.intRoomID = tblRoom.intRoomID\n\t\tAND tblRoom.intFacilityID = tblFacility.intFacilityID\";\n\t$result = $conn->query($sql);\n\treturn $result;\n}", "public function get_section()\n\t{\n\t\treturn $this->section;\n\t}", "abstract protected function getRequiredSections();", "function getReservationData($timestamp, $startHr, $maxHr)\n\t{\n\t\t$day = $timestamp;\n\t\t//hmm\n\t\t$start = $timestamp + (60 * 60 * ($startHr));\n\t\t$dayText = date(\"D, m/j/y g:i a\", $start);\n\t\t$startText = date(\"g:i a\", $start);\n\t\t$availableSlots = array();\n\t\tfor ($x=1; $x<=$maxHr; $x++){\n\t\t\t$end = $start+($x*60*60);\n\t\t\t$s = ($x==1) ? \"\" : \"s\";\n\t\t\t$endText = date(\"g:i a\", $end);\n\t\t\t$availableSlots[] = array(\"totalHours\"=>$x,\"start\" => $start, \"end\" => $end, \"text\"=> $x.\" hour\".$s.\": \".$startText.\"-\".$endText);\n\t\t}\n\t\treturn array(\"dayat6\" => $day,\"min\" => $timestamp+(($startHr)*60*60), \"max\" => $timestamp+(($startHr+1)*60*60), \"dayText\" => $dayText,\"start\" => $start, \"startText\" => $startText, \"slots\" => $availableSlots);\n\t}", "public function getSection($id = null) {\n if (!Helper::isEmpty($id)) {\n $sql = \"SELECT `s`.*,\n (\n SELECT COUNT(`id`)\n FROM `{$this->tableCategories}`\n WHERE `section` = `s`.`id`\n ) AS `categories_count`\n FROM `{$this->tableSections}` `s`\n WHERE `s`.`id` = ?\";\n return $this->Db->fetchOne($sql, $id);\n }\n return null;\n }", "public function test_get_section_name() {\n $sections = get_fast_modinfo($this->course)->get_section_info_all();\n $courseformat = course_get_format($this->course);\n foreach ($sections as $section) {\n // Assert that with unmodified section names, get_section_name returns the same result as get_default_section_name.\n $this->assertEquals($courseformat->get_default_section_name($section), $courseformat->get_section_name($section));\n if ($section->section == 0) {\n $sectionname = get_string('section0name', 'format_masonry');\n $this->assertEquals($sectionname, $courseformat->get_default_section_name($section));\n } else {\n $sectionname = get_string('sectionname', 'format_masonry') . ' ' . $section->section;\n $this->assertEquals($sectionname, $courseformat->get_default_section_name($section));\n }\n $this->assertNotEmpty($courseformat->inplace_editable_render_section_name($section));\n }\n }", "function getSection(){\n\t\t\treturn $this->section;\t\n\t\t}", "function read_calendar_events($id, $start, $end)\n{\n return requests($id,$start,$end);\n}", "public function getDoseSchedule();", "public function section($id=null)\n\t{\n\t\tif (!isset($this->_cache['section'])\n\t\t || ($id !== null && (int) $this->_cache['section']->get('id') != $id && (string) $this->_cache['section']->get('alias') != $id))\n\t\t{\n\t\t\t$this->_cache['section'] = null;\n\n\t\t\tif ($this->_cache['sections'] instanceof \\Hubzero\\Base\\ItemList)\n\t\t\t{\n\t\t\t\tforeach ($this->_cache['sections'] as $key => $section)\n\t\t\t\t{\n\t\t\t\t\tif ((int) $section->get('id') == $id || (string) $section->get('alias') == $id)\n\t\t\t\t\t{\n\t\t\t\t\t\t$this->_cache['section'] = $section;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!$this->_cache['section'])\n\t\t\t{\n\t\t\t\t$this->_cache['section'] = ForumModelSection::getInstance($id, $this->get('scope'), $this->get('scope_id'));\n\t\t\t}\n\t\t\tif (!$this->_cache['section']->exists())\n\t\t\t{\n\t\t\t\t$this->_cache['section']->set('scope', $this->get('scope'));\n\t\t\t\t$this->_cache['section']->set('scope_id', $this->get('scope_id'));\n\t\t\t}\n\t\t}\n\n\t\treturn $this->_cache['section'];\n\t}" ]
[ "0.6252642", "0.58510464", "0.55425066", "0.5538829", "0.5519664", "0.5516883", "0.5506211", "0.55008185", "0.54846025", "0.54522985", "0.5429784", "0.53330606", "0.53123325", "0.5296199", "0.52839994", "0.5283646", "0.52835923", "0.52761644", "0.5270543", "0.5230302", "0.5180896", "0.51802003", "0.51771873", "0.51693004", "0.5146546", "0.5135753", "0.5132412", "0.51291645", "0.5119462", "0.5111077" ]
0.6821433
0
/ Get the date the section is scheduled for param: sectionid (123456789098, ...) return: start date, end date
function getSectionDate($sectionid) { $sql = "SELECT dtmStart, dtmEnd FROM tblSection WHERE sectionID = $sectionid"; $result = $conn->query($sql); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function getSectionTime($sectionid) {\n\t$sql = \"SELECT intSectionTimeStart, intSectionTimeEnd, strDayPattern\n\t\tFROM tblSectionTime, tblSectionDayPattern\n\t\tWHERE tblSection.sectionID = $sectionid\";\n\t$result = $conn->query($sql);\n\treturn $result;\n}", "function report_editdates_update_dates_by_section($courseid, array $sectionnums, $offset) {\n global $DB, $CFG;\n\n if ($courseid == SITEID) {\n return false;\n }\n\n if (!is_array($sectionnums)) {\n return false;\n }\n\n $course = $DB->get_record('course', array('id' => $courseid), '*', MUST_EXIST);\n $modinfo = get_fast_modinfo($course);\n\n $forceddatesettings = array();\n $moddatesettings = array();\n\n // Loop through each section in the course.\n foreach ($sectionnums as $sectionnum => $value) {\n // Course modules in the section.\n $cms = $modinfo->get_section_info($sectionnum);\n foreach ($cms as $key => $cmid) {\n $cm = $modinfo->get_cm($cmid);\n\n if (!$cm->has_view()) {\n continue;\n }\n\n if (!$cm->uservisible) {\n continue;\n }\n\n // Config date settings forced and this is one of the forced date setting.\n if ( ($CFG->enablecompletion || $CFG->enableavailability)\n && ($cm->completionexpected != 0 || $cm->availablefrom != 0\n || $cm->availableuntil != 0 ) ) {\n // Competionexpected is set for this module.\n if ($cm->completionexpected != 0) {\n $forceddatesettings[$cm->id]['completionexpected'] =\n strtotime($offset, $cm->completionexpected);\n }\n if ($cm->availablefrom != 0) {\n // Availablefrom is set for this module.\n $forceddatesettings[$cm->id]['availablefrom'] =\n strtotime($offset, $cm->availablefrom);\n }\n if ($cm->availableuntil != 0) {\n // Availableuntil is set for this module.\n $forceddatesettings[$cm->id]['availableuntil'] =\n strtotime($offset, $cm->availableuntil);\n }\n } else {\n // It is module date setting.\n\n $mod = report_editdates_mod_data_date_extractor::make($cm->modname, $course);\n if ($mod) {\n // Received date settings of the module.\n if ($cmdatesettings = $mod->get_settings($cm)) {\n // Loop through each setting and add to the array.\n foreach ($cmdatesettings as $cmdatetype => $cmdatesetting) {\n // Value should be updated only if this mod is enabled.\n if ($cmdatesetting->currentvalue != 0 ) {\n $moddatesettings[$cm->id][$cmdatetype] =\n strtotime($offset, $cmdatesetting->currentvalue);\n }\n }\n }\n }\n }\n } // End of $cms loop for each course module in section.\n } // End of loop for each section in course.\n\n $transaction = $DB->start_delegated_transaction();\n try {\n // Updating forced settings applied to modules.\n foreach ($forceddatesettings as $cmid => $cmdatsettings) {\n $cm = new stdClass();\n $cm->id = $cmid;\n foreach ($cmdatsettings as $datetype => $value) {\n $cm->$datetype = $value;\n }\n // Update object in course_modules class.\n $DB->update_record('course_modules', $cm, true);\n }\n\n // Updating mod date settings.\n foreach ($moddatesettings as $cmid => $datesettings) {\n $cm = $modinfo->get_cm($cmid);;\n $modname = $cm->modname;\n\n $modinstance = report_editdates_mod_data_date_extractor::make($cm->modname, $course);\n if ($modinstance) {\n $modinstance->save_dates($cm, $datesettings);\n }\n }\n $transaction->allow_commit();\n\n } catch (Exception $e) {\n $transaction->rollback($e);\n }\n}", "abstract public function sectionName();", "public function getSection($section = \"\", $id = 0)\n\t{\n\t\tif ($id != 0)\n\t\t{\n\t\t\t$db = JFactory::getDbo();\n\n\t\t\t$query = \" SELECT * FROM \" . $db->quoteName($this->_table_prefix . $section)\n\t\t\t\t. \" WHERE \" . $db->quoteName($section . \"_id\") . \" = \" . (int) $id . \" \";\n\n\t\t\t$db->setQuery($query);\n\n\t\t\treturn $db->loadObject();\n\t\t}\n\n\t\treturn null;\n\t}", "public function getScheduledDate();", "public function get_section($section_id) {\n $ojs_section = NULL;\n \n if (array_key_exists($section_id, $this->section_list)) {\n $ojs_section = $this->section_list[$section_id];\n }\n \n return $ojs_section;\n }", "function sectionID( )\r\n {\r\n return $this->SectionID;\r\n }", "function get_sections($secid=''){\n\tglobal $wpdb;\n\t$table=$wpdb->prefix .'cts_sections';\n\t$query = ($secid) ? \"SELECT * FROM $table where `id`='$secid'\" : \"SELECT * FROM $table\";\n\t$rows = $wpdb->get_results($query);\n\treturn $rows;\n}", "public function getScheduledStart();", "function em_get_the_start( $post_id = 0, $type = 'datetime' ) {\n\t$post_id = (int) ( empty( $post_id ) ? get_the_ID() : $post_id );\n\n\tif ( empty( $post_id ) )\n\t\treturn false;\n\n\t$date = get_post_meta( (int) $post_id, '_event_start_date', true );\n\n\treturn apply_filters( 'em_get_the_start', ( ! empty( $date ) ? em_format_date( $date, $type ) : false ), $post_id );\n}", "function getStartEndCrontabDate($timestampStart, $timestampEnd)\n{\n global $CRONSTEP;\n\n $result = array( \"start\" => 0, \"end\" => 0 );\n\n $result[\"start\"] = date('YmdHi', addTime($timestampStart, $CRONSTEP));\n $result[\"end\"] = date('YmdHi', addTime($timestampEnd, $CRONSTEP));\n\n return $result;\n}", "public function getRenderSection();", "function get_programme_details($programme_id, $date = null, $action = null) {\n if ($date) {\n $date = explode('-', $date);\n if (count($date) == 2) {\n if (is_numeric($date[1]) && strlen($date[1]) == 4) {\n if ($date[0] == 'autumn')\n $date = mktime(0,0,0,9,1,$date[1]);\n elseif ($date[0] == 'spring')\n $date = mktime(0,0,0,1,1,$date[1]);\n elseif ($date[0] == 'summer')\n $date = mktime(0,0,0,8,31,$date[1]);\n }\n }\n elseif (count($date) == 3) {\n if ( is_numeric($date[0]) &&\n is_numeric($date[1]) &&\n is_numeric($date[2]) )\n if (checkdate($date[1], $date[2], $date[0]))\n $date = mktime(0,0,0,$date[1],$date[0],$date[2]);\n }\n elseif (count($date) == 1) {\n if (strtotime($date[0]))\n $date = strtotime($date[0]);\n else {\n $date = explode(' ', $date[0]);\n if (count($date) == 3)\n if ( is_numeric($date[0]) &&\n is_numeric($date[1]) &&\n is_numeric($date[2]) ) {\n if (checkdate($date[1], $date[0], $date[2]))\n $date = mktime(0,0,0,$date[1],$date[0],$date[2]);\n }\n }\n }\n else\n return false;\n }\n else\n $date = mktime();\n \n // work out the start and end dates of the current term based on current date:\n // first term runs from 1 September to 31 December\n if (date('n', $date) >= 9 && date('n') <= 12) {\n $from = mktime(0,0,0,9,1,date('Y', $date));\n $to = mktime(0,0,0,12,31,date('Y', $date));\n $programme_date = 'autumn-'.date('Y', $date);\n }\n // second and third term dates are divided by date of Easter Sunday\n else {\n // second term runs from 1 January to Easter Sunday\n if (date('Y-m-d', $date) <= date('Y-m-d', easter_date(date('Y', $date)))) {\n $from = mktime(0,0,0,1,1,date('Y', $date));\n $to = easter_date(date('Y', $date));\n $programme_date = 'spring-'.date('Y', $date);\n }\n // third term runs from Easter Monday to 31 August\n else {\n $from = mktime(0,0,0,date('m', easter_date(date('Y', $date))),\n date('d', easter_date(date('Y', $date)))+1,\n date('Y', $date));\n $to = mktime(0,0,0,8,31,date('Y', $date));\n $programme_date = 'summer-'.date('Y', $date);\n }\n }\n $programme['from'] = $from;\n $programme['to'] = $to;\n $programme['date'] = $programme_date;\n \n $query = \"SELECT youth_event_id, name, logo, time, end_time, blurb, inline_name,\n background_colour, border_colour, shortname\n FROM youth_events \";\n if (intval($programme_id))\n $query .= \"WHERE youth_event_id = '$programme_id'\";\n else\n $query .= \"WHERE shortname = '$programme_id'\";\n \n $result = mysql_query($query) or die ('Error in query: $query. ' . mysql_error());\n if (mysql_num_rows($result) > 0) {\n while($row = mysql_fetch_object($result)) {\n $programme['id'] = $event_id = $row->youth_event_id;\n $programme['name'] = $row->name;\n $programme['shortname'] = $row->shortname;\n $programme['inline_name'] = $row->inline_name;\n $programme['logo'] = $row->logo;\n $programme['time'] = $row->time;\n $programme['end_time'] = $row->end_time;\n $programme['border_colour'] = $row->border_colour;\n \n $programme['header'] = '<div class=\"tiles\">';\n if (file_exists('images/graphics/'.$row->logo.'_logo.jpg'))\n {\n $programme['header'] .= '<div class=\"tile sixth\">';\n $programme['header'] .= '<img src=\"images/graphics/'.$row->logo.'_logo.jpg\" alt=\"'.$row->name.' logo\" /></div>';\n }\n $programme['header'] .= '<div class=\"tile five-sixths\" style=\"margin-bottom:10px\">';\n $programme['header'] .= '<h5 style=\"margin:0 0 3px 0; line-height:110%;\"><span style=\"color:#'.$row->border_colour.'\">';\n $programme['header'] .= '<span style=\"font-size:1.3em\">'.$row->name.' programme</span></span>';\n if ($action != 'edit')\n $programme['header'] .= '<br/><span style=\"font-size:0.8em\">' . date('F', $from) . ' to ' . date('F Y', $to) . '</span>';\n $programme['header'] .= '</h5><p><strong>';\n if ($row->blurb)\n $programme['header'] .= $row->blurb . ' ';\n if ($row->logo)\n $programme['header'] .= '<a href=\"/youth#'.$row->logo.'\" style=\"color:#'.$row->border_colour.'\">Find&nbsp;out&nbsp;more.</a>';\n $programme['header'] .= '</strong></p></div>';\n $programme['header'] .= '<br class=\"clear\" /></div>';\n }\n return($programme);\n }\n else\n return false;\n }", "public static function section_is_active($section_id)\n {\n global $database;\n $now = time();\n $sql = 'SELECT COUNT(*) FROM `:prefix:sections` ';\n $sql .= 'WHERE (' . $now . ' BETWEEN `publ_start` AND `publ_end`) OR ';\n $sql .= '(' . $now . ' > `publ_start` AND `publ_end`=0) ';\n $sql .= 'AND `section_id`=' . $section_id;\n return($database->query($sql)->fetchColumn() != false);\n\t }", "function wpi_section_start($section_name){\n\tglobal $Wpi;\n\t\n\tif (!empty($section_name)){\n\t\t$Wpi->Template->section = $section_name;\n\t\t$Wpi->Template->sectionStart();\n\t}\t\t\n}", "function Event_Inscriptions_DateSpan($event=array())\n {\n if (empty($event)) { $event=$this->Event(); }\n \n return $this->Date_Span_Interval($event,\"StartDate\",\"EndDate\");\n }", "function read_calendar_events($id, $start, $end)\n{\n return requests($id,$start,$end);\n}", "public function getArrangements($locationId,$startDate,$endDate){\t\n\t\t\n\t\t//$startDate en $endDate DateTime objecten\n\t\t$start = $startDate;\n\t\t$end = $endDate;\n\t\t\n\t\t//eerst alle arrs ophalen, daarna datumcheck\n\t\t$db = JFactory::getDbo();\n\t\t$query = $db->getQuery(true);\n\t\t$query->from('#__jexbooking_arrangements');\n\t\t$query->select('*');\n\t\t$query->where('location_id='.(int)$locationId.' AND published=1 AND required=1');\n\t\t$db->setQuery($query);\n\t\t$rows = $db->loadObjectList();\n\t\t\n\t\t$result = array();\n\t\t\n\t\tif($rows){\n\t\t\tforeach($rows as $row){\t\t\t\t\n\t\t\t\t//start_date en end_date van arrangementen in DateTime-objecten omzetten\n\t\t\t\t$arrStart = new DateTime($row->start_date);\n\t\t\t\t$arrEnd = new DateTime($row->end_date);\n\t\t\t\t\n\t\t\t\t//mogelijkheden:\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t// start en end voor arrangement: $end < $arrEnd => default\n\t\t\t\t// start en end na arrangement: $start > $arrEnd => default\n\t\t\t\t\n\t\t\t\t// start voor arrStart en end na arrEnd: $start < $arrStart && $end > $arrEnd\n\t\t\t\t// start en end beiden tussen arrStart en arrEnd in: $start > $arrStart && $start < $arrEnd && $end > $arrStart && $end < $arrEnd \n\t\t\t\t// start voor arrStart, maar end tussen arrStart en arrEnd in: $start < $arrStart && $end > $arrStart && $end < $arrEnd\n\t\t\t\t\n\t\t\t\t// start na arrStart en end na arrEnd: $start > $arrStart && $start < $arrEnd && $end > $arrEnd\n\t\t\t\t$date = new stdClass();\n\t\t\t\t$date->start = $start;\n\t\t\t\t$date->end = $end;\n\t\t\t\t$date->arrStart = $arrStart;\n\t\t\t\t$date->arrEnd = $arrEnd;\n\t\t\t\t\n\t\t\t\tswitch ($date){\n\t\t\t\t\tcase ($date->start <= $date->arrStart && $date->end >= $date->arrEnd):\n\t\t\t\t\t\t//arrangement valt geheel binnen periode\n\t\t\t\t\t\t$result['overlap_message'] = 'Binnen de door u gekozen periode valt het '.ucwords($row->name).' arrangement. Uw prijs wordt berekend door de kosten van het arrangement op te tellen bij de dagen die vooraf gaan aan het arrangement en de dagen erna.';\t\t\t\t\t\t\n\t\t\t\t\t\t$result['buiten_arr'] = ($date->start->diff($date->arrStart)->days) + ($date->arrEnd->diff($date->end)->days);\n\t\t\t\t\t\t$result['arrangement'] = $row;\n\t\t\t\t\t\tif($result['buiten_arr'] == 0){\n\t\t\t\t\t\t\t$result['overlap_message'] = 'De door u gekozen periode valt samen met het '.ucwords($row->name).' arrangement. De kosten van uw verblijf worden berekend aan de hand van het arrangement.';\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak 2;\n\t\t\t\t\t\t\n\t\t\t\t\tcase ($date->start >= $date->arrStart && $date->start <= $date->arrEnd && $date->end <= $date->arrEnd && $date->end >= $date->arrStart):\n\t\t\t\t\t\t//periode valt geheel binnen arrangement\n\t\t\t\t\t\t$result['overlap_message'] = 'De door u gekozen periode valt geheel binnen het '.ucwords($row->name).' arrangement. De prijs van de door u gekozen periode is gelijk aan die van het arrangement.';\n\t\t\t\t\t\t$result['buiten_arr'] = 0;\n\t\t\t\t\t\t$result['arrangement'] = $row;\n\t\t\t\t\t\t\n\t\t\t\t\t\tbreak 2;\n\t\t\t\t\tcase ($date->start <= $date->arrStart && $date->end > $date->arrStart && $date->end <= $date->arrEnd):\n\t\t\t\t\t\t//aankomst is voor arrangement en vertrek is binnen arrangement\n\t\t\t\t\t\t$result['overlap_message'] = 'De door u gekozen vertrekdatum valt binnen het '.ucwords($row->name).' arrangement. Uw prijs wordt berekend door de kosten van het arrangement op te tellen bij de dagen voorafgaand aan het arrangement.';\n\t\t\t\t\t\t$result['buiten_arr'] = $date->start->diff($date->arrStart)->days;\n\t\t\t\t\t\t$result['arrangement'] = $row;\n\t\t\t\t\t\t\n\t\t\t\t\t\tbreak 2;\n\t\t\t\t\tcase ($date->start >= $date->arrStart && $date->start < $date->arrEnd && $date->end >= $date->arrEnd):\n\t\t\t\t\t\t//aankomst is binnen arrangement en vertrek is na arrangement\n\t\t\t\t\t\t$result['overlap_message'] = 'De door u gekozen aankomstdatum valt binnen het '.ucwords($row->name).' arrangement. Uw prijs zal berekend worden door de kosten van het arrangement op te tellen bij de dagen erna.';\n\t\t\t\t\t\t$result['buiten_arr'] = $date->arrEnd->diff($date->end)->days;\n\t\t\t\t\t\t$result['arrangement'] = $row;\n\t\t\t\t\t\t\n\t\t\t\t\t\tbreak 2;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\t$result = null;\n\t\t\t\t\t\t\n\t\t\t\t\t\tbreak 2;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t} else{\n\t\t\t$result = null;\n\t\t}\n\t\t\n\t\t\n\t\treturn $result;\n\t\t\n\t}", "public function getStartDate();", "public function getStartDate();", "public static function display_section_booking(){\n ?>\n <p class=\"description\">\n Section dédier à l'affichagade\n des infos de réservation\n </p>\n <?php\n }", "public function get_by_id_sec($section_id){\n\n\t\t\t$this->db->from($this->tab_name); //from\n\t\t\t$this->db->where('section_id', $section_id); //where\n\n\t\t\t$Q = $this->db->get();// select *\n\n\t\t\treturn $Q->row(); // returbn the specific row\n\t\t}", "protected function section_header($section, $course, $onsectionpage, $sectionreturn=null) {\r\n global $PAGE;\r\n\r\n $o = '';\r\n $sectionstyle = '';\r\n\r\n if ($course->sectionprogress) {\r\n $total = 0;\r\n $complete = 0;\r\n $cancomplete = isloggedin() && !isguestuser();\r\n $modinfo = get_fast_modinfo($course);\r\n\r\n $sectionmods = array();\r\n $completioninfo = new completion_info($course);\r\n if (!empty($modinfo->sections[$section->section])) {\r\n foreach ($modinfo->sections[$section->section] as $cmid) {\r\n\r\n $thismod = $modinfo->cms[$cmid];\r\n\r\n if ($thismod->modname == 'label') {\r\n // Labels are special (not interesting for students)!\r\n continue;\r\n }\r\n\r\n if ($thismod->uservisible) {\r\n if (isset($sectionmods[$thismod->modname])) {\r\n $sectionmods[$thismod->modname]['name'] = $thismod->modplural;\r\n $sectionmods[$thismod->modname]['count']++;\r\n } else {\r\n $sectionmods[$thismod->modname]['name'] = $thismod->modfullname;\r\n $sectionmods[$thismod->modname]['count'] = 1;\r\n }\r\n if ($cancomplete && $completioninfo->is_enabled($thismod) != COMPLETION_TRACKING_NONE) {\r\n $total++;\r\n $completiondata = $completioninfo->get_data($thismod, true);\r\n if ($completiondata->completionstate == COMPLETION_COMPLETE ||\r\n $completiondata->completionstate == COMPLETION_COMPLETE_PASS) {\r\n $complete++;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n if ($section->section != 0) {\r\n // Only in the non-general sections.\r\n if (!$section->visible) {\r\n $sectionstyle = ' hidden';\r\n } else if (course_get_format($course)->is_section_current($section)) {\r\n $sectionstyle = ' current';\r\n }\r\n }\r\n\r\n $o .= html_writer::start_tag('li', array('id' => 'section-' . $section->section,\r\n 'class' => 'section main clearfix fordsoncourseformat' . $sectionstyle, 'role' => 'region',\r\n 'aria-label' => get_section_name($course, $section)));\r\n\r\n // Create a span that contains the section title to be used to create the keyboard section move menu.\r\n $o .= html_writer::tag('span', get_section_name($course, $section), array('class' => 'hidden sectionname'));\r\n $leftcontent = $this->section_left_content($section, $course, $onsectionpage);\r\n $o .= html_writer::tag('div', $leftcontent, array('class' => 'left side'));\r\n\r\n $rightcontent = $this->section_right_content($section, $course, $onsectionpage);\r\n $o .= html_writer::tag('div', $rightcontent, array('class' => 'right side'));\r\n $o .= html_writer::start_tag('div', array('class' => 'content'));\r\n\r\n // When not on a section page, we display the section titles except the general section if null.\r\n $hasnamenotsecpg = (!$onsectionpage && ($section->section != 0 || !is_null($section->name)));\r\n\r\n // When on a section page, we only display the general section title, if title is not the default one.\r\n $hasnamesecpg = ($onsectionpage && ($section->section == 0 && !is_null($section->name)));\r\n\r\n $classes = ' accesshide';\r\n if ($hasnamenotsecpg || $hasnamesecpg) {\r\n $classes = '';\r\n }\r\n if (!$PAGE->user_is_editing()) {\r\n $sectionname = html_writer::tag('span', $this->section_title_without_link($section, $course),\r\n array('class' => 'sectionname'));\r\n // Add collapse toggle.\r\n if (course_get_format($course)->is_section_current($section)) {\r\n if ($course->sectionprogress && $total > 0) {\r\n $o .= $this->section_progressbar($total, $complete);\r\n }\r\n $o .= '<h3 class=\"sectionname\">' . $sectionname . '</h3> ';\r\n } else if ($section->section != 0) {\r\n if ($course->sectionprogress && $total > 0) {\r\n $o .= $this->section_progressbar($total, $complete);\r\n }\r\n $o .= '<h3 class=\"sectionname\">' . $sectionname . '</h3> ';\r\n } else if ($section->section == 0 && !is_null($section->name)) {\r\n $o .= $this->output->heading($sectionname, 3, 'sectionname' . $classes);\r\n }\r\n // End collapse toggle.\r\n\r\n $o .= '<div class=\"clearfix\">';\r\n $o .= $this->section_availability($section) . '</div>';\r\n if ($section->uservisible || $section->visible) {\r\n // Show summary if section is available or has availability restriction information.\r\n // Do not show summary if section is hidden but we still display it because of course setting\r\n // \"Hidden sections are shown in collapsed form\".\r\n $o .= $this->section_summary($section, $course, null);\r\n }\r\n\r\n } else {\r\n $sectionname = html_writer::tag('span', $this->section_title_without_link($section, $course));\r\n\r\n $o .= '<div class=\"clearfix\">' . $this->output->heading($sectionname, 3, 'sectionname' . $classes);\r\n $o .= $this->section_availability($section) . '</div>';\r\n if ($section->uservisible || $section->visible) {\r\n // Show summary if section is available or has availability restriction information.\r\n // Do not show summary if section is hidden but we still display it because of course setting\r\n // \"Hidden sections are shown in collapsed form\".\r\n $o .= $this->section_summary($section, $course, null);\r\n }\r\n }\r\n if (course_get_format($course)->is_section_current($section)) {\r\n $classes = 'collapse show';\r\n } else if ($section->section != 0) {\r\n $classes = 'collapse';\r\n } else {\r\n $classes = '';\r\n }\r\n $o .= '<div id=\"collapse-' .\r\n $section->section .\r\n '\" class=\"' .\r\n $classes .\r\n '\" role=\"tabpanel\" aria-labelledby=\"heading' .\r\n $section->section .\r\n '\">' .\r\n '<span class=\"hidden\">' . $sectionname . '</span>';\r\n\r\n return $o;\r\n }", "function em_get_the_date( $post_id = 0, $args = array() ) {\n\t$post_id = (int) ( empty( $post_id ) ? get_the_ID() : $post_id );\n\t$date = array();\n\n\tif ( empty( $post_id ) )\n\t\treturn false;\n\n\t$defaults = array(\n\t\t'range'\t => '', // start, end\n\t\t'output' => '', // datetime, date, time\n\t\t'format' => '', // date or time format\n\t);\n\n\t$args = apply_filters( 'em_get_the_date_args', wp_parse_args( $args, $defaults ) );\n\n\t$occurrence = em_get_current_occurrence( $post_id );\n\n\t// if current event is event occurrence?\n\tif ( ! empty( $occurrence ) ) {\n\t\t$start_date = $occurrence['start'];\n\t\t$end_date = $occurrence['end'];\n\t} else {\n\t\t$start_date = get_post_meta( $post_id, '_event_start_date', true );\n\t\t$end_date = get_post_meta( $post_id, '_event_end_date', true );\n\t}\n\n\tif ( empty( $start_date ) )\n\t\treturn false;\n\n\t// date format options\n\t$options = get_option( 'events_maker_general' );\n\t$date_format = $options['datetime_format']['date'];\n\t$time_format = $options['datetime_format']['time'];\n\n\tif ( ! empty( $args['format'] ) && is_array( $args['format'] ) ) {\n\t\t$date_format = ( ! empty( $args['format']['date'] ) ? $args['format']['date'] : $date_format);\n\t\t$time_format = ( ! empty( $args['format']['time'] ) ? $args['format']['time'] : $time_format);\n\t}\n\n\t// what is there to display?\n\tif ( ! empty( $args['range'] ) ) {\n\t\tif ( $args['range'] === 'start' && ! empty( $start_date ) )\n\t\t\t$date = $start_date;\n\t\telseif ( $args['range'] === 'end' && ! empty( $end_date ) )\n\t\t\t$date = $end_date;\n\t} else\n\t\t$date = array( 'start' => $start_date, 'end' => $end_date );\n\n\t// what part of the date to display and how to format it?\n\tif ( ! empty( $date ) ) {\n\t\t// start and end, returns array\n\t\tif ( is_array( $date ) ) {\n\t\t\tforeach ( $date as $key => $value ) {\n\t\t\t\t// output date only\n\t\t\t\tif ( $args['output'] === 'date' )\n\t\t\t\t\t$date[$key] = ! empty( $args['format'] ) ? em_format_date( $value, 'date', $args['format'] ) : em_format_date( $value, 'date', $date_format );\n\t\t\t\t// output time only\n\t\t\t\telseif ( $args['output'] === 'time' )\n\t\t\t\t\t$date[$key] = ! empty( $args['format'] ) ? em_format_date( $value, 'time', $args['format'] ) : em_format_date( $value, 'time', $time_format );\n\t\t\t\t// output date & time\n\t\t\t\telse\n\t\t\t\t\t$date[$key] = ! empty( $args['format'] ) ? em_format_date( $value, 'datetime', $args['format'] ) : em_format_date( $value, 'datetime', $date_format . ' ' . $time_format );\n\t\t\t}\n\t\t}\n\t\t// start or end, returns string\n\t\telse {\n\t\t\t// output date only\n\t\t\tif ( $args['output'] === 'date' )\n\t\t\t\t$date = ! empty( $args['format'] ) ? em_format_date( $date, 'date', $args['format'] ) : em_format_date( $date, 'date', $date_format );\n\t\t\t// output time only\n\t\t\telseif ( $args['output'] === 'time' )\n\t\t\t\t$date = ! empty( $args['format'] ) ? em_format_date( $date, 'time', $args['format'] ) : em_format_date( $date, 'time', $time_format );\n\t\t\t// output date & time\n\t\t\telse\n\t\t\t\t$date = ! empty( $args['format'] ) ? em_format_date( $date, 'datetime', $args['format'] ) : em_format_date( $date, 'datetime', $date_format . ' ' . $time_format );\n\t\t}\n\t}\n\n\treturn apply_filters( 'em_get_the_date', $date, $post_id, $args );\n}", "private function get_update_time($section){\n\t\tswitch ($section) {\n\t\t\tcase \"highscore\":\n\t\t\t\treturn date(\"Y-m-d H:i:s\", strtotime( '-1 hour' ) );\n\t\t\t\tbreak;\n\t\t\tcase \"alliances\":\n\t\t\tcase \"players\":\n\t\t\t\treturn date(\"Y-m-d H:i:s\", strtotime( '-1 day' ) );\n\t\t\t\tbreak;\n\t\t\tcase \"playerData\":\n\t\t\tcase \"universe\":\n\t\t\t\treturn date(\"Y-m-d H:i:s\", strtotime( '-1 week' ) );\n\t\t\t\tbreak;\n\t\t\tcase \"serverData\":\n\t\t\tdefault:\n\t\t\t\treturn date(\"Y-m-d H:i:s\", strtotime( '-1 month' ) );\n\t\t\t\tbreak;\n\t\t}\n\t}", "public function getStart(): \\DateTime;", "public function test_get_section_name() {\n $sections = get_fast_modinfo($this->course)->get_section_info_all();\n $courseformat = course_get_format($this->course);\n foreach ($sections as $section) {\n // Assert that with unmodified section names, get_section_name returns the same result as get_default_section_name.\n $this->assertEquals($courseformat->get_default_section_name($section), $courseformat->get_section_name($section));\n if ($section->section == 0) {\n $sectionname = get_string('section0name', 'format_masonry');\n $this->assertEquals($sectionname, $courseformat->get_default_section_name($section));\n } else {\n $sectionname = get_string('sectionname', 'format_masonry') . ' ' . $section->section;\n $this->assertEquals($sectionname, $courseformat->get_default_section_name($section));\n }\n $this->assertNotEmpty($courseformat->inplace_editable_render_section_name($section));\n }\n }", "function getSection(){\n\t\t\treturn $this->section;\t\n\t\t}", "function assignments_extend_date($course_id=null){\r\n\r\n global $db;\r\n $assignments = array();\r\n \r\n if($course_id==null) $course_id = $_SESSION['course_id'];\r\n \r\n // get course title\r\n $sql = \"SELECT title \r\n FROM \".TABLE_PREFIX.\"courses \r\n WHERE course_id = '\".$course_id.\"'\";\r\n \r\n $result = mysql_query($sql,$db) or die(mysql_error());\r\n $row = mysql_fetch_assoc($result);\r\n $course_title= $row['title'];\r\n \r\n $sql = \"SELECT assignment_id,title,date_due,date_cutoff\r\n FROM \".TABLE_PREFIX.\"assignments\r\n WHERE course_id = '\".$course_id.\"'\";\r\n\r\n $result = mysql_query($sql,$db) or die(mysql_error());\r\n $row_count = mysql_num_rows($result);\r\n\r\n if($row_count > 0){\r\n $index=0;\r\n while($row = mysql_fetch_assoc($result)){\r\n\t\t\t/*if( strpos( $row['date_due'].\"\", '0000-00-00' ) !== false ||\r\n\t\t\t\tstrpos( $row['date_cutoff'].\"\", '0000-00-00' ) !== false )\r\n\t\t\t{\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t{*/\r\n\t\t\t\t$assignment_id = $row['assignment_id'];\r\n\t\t\t\t$unix_ts = strtotime($row['date_due']);\r\n\t\t\t\t$time = date(\"h:i A\",$unix_ts);\r\n if( strpos( $row['date_due'].\"\", '0000-00-00' ) === false )\r\n {\r\n\t\t\t\t\t$assignments[$index] = array(\r\n\t\t\t\t\t\t\t\t\t\"id\"=>rand(5000,9000).\"\",\r\n\t\t\t\t\t\t\t\t\t\"title\"=> \"Due date of \".$row['title'],\r\n\t\t\t\t\t\t\t\t\t\"start\"=>$row['date_due'],\r\n\t\t\t\t\t\t\t\t\t\"end\"=>$row['date_due'],\r\n\t\t\t\t\t\t\t\t\t\"allDay\"=>false,\r\n\t\t\t\t\t\t\t\t\t\"color\"=>\"yellow\",\r\n\t\t\t\t\t\t\t\t\t\"textColor\" => \"black\",\r\n\t\t\t\t\t\t\t\t\t\"editable\"=>false\r\n\t\t\t\t\t\t\t\t\t) ;\r\n\t\t\t\t\t\t\t\t \r\n\t\t\t\t\t$unix_ts = strtotime($row['date_cutoff']); \r\n\t\t\t\t\t$time = date(\"h:i A\",$unix_ts);\r\n\t\t\t\t\t$index++;\r\n }\r\n\t\t\t\tif( strpos($row['date_cutoff'].\"\", '0000-00-00' ) === false )\r\n {\r\n $assignments[$index] = array(\r\n\t\t\t\t\t\t\t\t\"id\"=>rand(5000,9000).\"\",\r\n\t\t\t\t\t\t\t\t\"title\"=>\"Cut off date of \".$row['title'],\r\n\t\t\t\t\t\t\t\t\"start\"=>$row['date_cutoff'],\r\n\t\t\t\t\t\t\t\t\"end\"=>$row['date_cutoff'],\r\n\t\t\t\t\t\t\t\t\"allDay\"=>false,\r\n\t\t\t\t\t\t\t\t\"color\"=>\"red\",\r\n\t\t\t\t\t\t\t\t\"textColor\" => \"black\",\r\n\t\t\t\t\t\t\t\t\"editable\"=>false \r\n\t\t\t\t\t\t\t\t ) ; \r\n $index++;\r\n }\r\n\t\t\t}\r\n } \r\n return $assignments;\r\n}", "public function getSectionService();" ]
[ "0.62524116", "0.6189637", "0.55602264", "0.5535882", "0.5492758", "0.54904246", "0.536092", "0.5346842", "0.5267862", "0.5261511", "0.52379954", "0.5225707", "0.5189722", "0.51734287", "0.5171615", "0.5155529", "0.5143038", "0.5137742", "0.5136545", "0.5136545", "0.5129172", "0.5128958", "0.5119942", "0.51088536", "0.5106437", "0.50663894", "0.5050526", "0.50489306", "0.50456625", "0.5043347" ]
0.7262882
0
/ Get the professors name for the section param: sectionid (123456789098, ...) return: first name, last name
function getSectionProf($sectionid) { $sql = "SELECT strFirstName, strLastName FROM tblFaculty WHERE tblSection.intSectionID = $sectionid AND tblSection.intFacultyID = tblFaculty.intFacultyID"; $result = $conn->query($sql); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function get_section_name($prntid)\n\t{\n\t\t$this->db->select('sec.sect_name, std.*');\n\t\t$this->db->from('cms_students std');\n\t\t$this->db->join('cms_sections sec','std.sect_id=sec.sect_id','left');\n\t\t$this->db->where('std.prnt_id', $prntid);\n\t\t$query = $this->db->get();\n\t\t//echo $this->db->last_query();\n\t\treturn $query->result();\n\t}", "public function get_officer_name($officerID) {\n\t\t$query = $this->db->get_where('security_officer', \n\t\t\tarray('officer_id' => $officerID))->row_array();\n\t\t// Name of officer\n\t\treturn $query['first_name'] . \" \" . $query['last_name'];\n\t}", "public function getFirstName()\n {\n return $this->claim('given_name');\n }", "public function get_profession_names(object $employer = null, object_list $sections = null)\n\t{\n\t\t$professions = crm_person_work_relation_obj::find_professions($this->ref(), $employer);\n\t\t$profession_names = array();\n\n\t\tif($professions->count())\n\t\t{\n\t\t\t$profession = $professions->begin();\n\n\t\t\tdo\n\t\t\t{\n\t\t\t\t$profession_names[] = $profession->name();\n\t\t\t}\n\t\t\twhile ($profession = $professions->next());\n\t\t}\n\n\t\treturn $profession_names;\n\t}", "public function getFieldProg($prog_id){\n $organ = new User;\n $org_name = $organ->where('id','=',$prog_id)->first();\n return $org_name->name;\n }", "function bp_get_member_name_rp() {\n\t\tglobal $members_template;\n\t\t$data=get_userdata($members_template->member->id);\n\t\t// Generally, this only fires when xprofile is disabled\n\t\tif ( empty( $data->first_name ) ) {\n\t\t\t// Our order of preference for alternative fullnames\n\t\t\t$name_stack = array(\n\t\t\t\t'full_name',\n\t\t\t\t'display_name',\n\t\t\t\t'user_nicename',\n\t\t\t\t'user_login'\n\t\t\t);\n\n\t\t\tforeach ( $name_stack as $source ) {\n\t\t\t\tif ( !empty( $members_template->member->{$source} ) ) {\n\t\t\t\t\t// When a value is found, set it as fullname and be done\n\t\t\t\t\t// with it\n\t\t\t\t\t$members_template->member->fullname = $members_template->member->{$source};\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else { \n\t\t\t\n\t\t\t$members_template->member->fullname = $data->first_name . \" \" . $data->last_name;\n\t\t}\n\n\t\treturn apply_filters( 'bp_get_member_name_rp', $members_template->member->fullname );\n\t}", "function getPersonsName($personId){\n $results = $globalFunctionsConn->query(\"SELECT `firstName` FROM `people` WHERE `personId` = \".$personId . \" LIMIT 1\");\n return $results->fetch_assoc()['firstName'];\n }", "public function getProfessors()\n {\n return $this->hasMany(Professor::className(), ['id' => 'professor_id'])->viaTable('{{%datas_professor}}', ['datas_id' => 'id']);\n }", "function getName(int $id, array $people) :string {\n foreach ($people as $person) { \n if ($id === $person['id']) {\n $fullName = $person['first_name']. \" \" . $person['last_name'];\n }\n }\n return $fullName;\n}", "public static function get_names($technician) {\r\n\t\t\r\n\t$name = $technician['firstName'].' '.$technician['lastName'];\r\n\t\r\n\treturn $name;\r\n\t}", "function getFirstname();", "public function getFirstname(){\n return $this->customerFirstname;\n }", "function getStudentName($students,$email)\n{\n\n $name = \"\";\n if (! isset($students->list[$email])) {\n if ($email == '')\n $name = 'NOT ASSIGNED';\n else\n print \" person not found: $email<br>\\n\";\n }\n else {\n $student = $students->list[$email];\n $name = $student->lastName.\", \".$student->firstName;\n }\n \n return $name;\n}", "public function firstName($id) {\n if (key_exists($id, $this->_competitors)) { return $this->_competitors[$id]->firstName(); }\n else { return $this->_competitors[0]->firstName(); }\n }", "public function fullName() {\n \treturn $this->first_name.\" \".$this->last_name;\n }", "public function getSurname()\n {\n return $this->data['fields']['surname'];\n }", "public function getFirstName();", "public function getFirstName();", "public function getFirstName();", "public function getFirstName();", "public function getSurname();", "public function getName(){\n\t\treturn $this->firstName .\" \". $this->lastName;\n\t}", "function church_admin_get_person($id)\n{\n global $wpdb;\n $name=$wpdb->get_var('SELECT CONCAT_WS(\" \",first_name,last_name) FROM '.CA_PEO_TBL.' WHERE people_id=\"'.esc_sql($id).'\"');\n if($name){return esc_html($name);}else{return FALSE;}\n}", "public function get_name(){\n\t\tprint $this->first_name . \" \" . $this->last_name . \"\\n\";\t\n\t}", "public function fullName() {\n return $this->firstName.\" \".$this->lastName;\n }", "public function getFullName(){\n $result = DB::table('users')\n ->join('scouts', 'scout_id', '=', 'assurance_num')\n ->select('first_name', 'last_name')\n ->where('scout_id', '=', $this->scout_id)->first();\n \n return $result->first_name.' '.$result->last_name;\n }", "public function getProfessor($eProfName) {\n\t\t$returnProf;\n\t\t$this->professorFound = false;\n\t\t$objects = $this->ListOfProfessors;\n\t\t/** Goes through list of professors and searches for the name entered as parameters */\n\t\tfor ($i = 0; $i < count($objects); $i++) {\n\t\t\t/** If we were able to find a professor whose name matches the one in the parameter, we set \"professorFound\"\n\t\t\t * to true and set returnProf to the object we matched \n\t\t\t */\n\t\t\tif (strpos($objects[$i]->getProfName(), $eProfName) !== false) {\n\t\t\t\t$this->professorFound = true;\n\t\t\t\t$returnProf = $objects[$i];\n\t\t\t}\n\t\t}\n\t\t/** If we were not able to find the correct professor after looking through our list, we set the professor object\n\t\t * to the unknown object and return that.\n\t\t */\n\t\tif ($this->professorFound != true) {\n\t\t\tfor ($i = 0; $i < count($objects); $i++) {\n\t\t\t\tif (strpos($objects[$i]->getProfName(), \"unknown\") !== false) {\n\t\t\t\t\t$returnProf = $objects[$i];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $returnProf;\n\t}", "public function get_full_person(){\n\t\t$this->get_name();\n\t\t$this->get_email();\n\t\t$this->get_phone();\n\t\t$this->get_address();\n\t }", "public function getProfileFirstName(): string {\n\t\treturn ($this->profileFirstName);\n\t}", "private function get_name() {\n\t\t\t$full_name = $this->firstname . \" \" . $this->lastname;\n\t\t\treturn $full_name;\n\t\t}" ]
[ "0.6255117", "0.60434526", "0.59100235", "0.58323723", "0.57469434", "0.57354605", "0.57265127", "0.5724314", "0.56996256", "0.56879467", "0.567777", "0.5668324", "0.5661092", "0.56065965", "0.5601109", "0.5590425", "0.5589095", "0.5589095", "0.5589095", "0.5589095", "0.55789053", "0.5566901", "0.5560543", "0.55558705", "0.55058396", "0.55044466", "0.549527", "0.5493256", "0.5483449", "0.54799795" ]
0.6879647
0
/ Get the number of students allowed in a section param: sectionid (123456789098, ...) return: capacity
function getSectionCapacity($sectionid) { $sql = "SELECT intCapacity FROM tblSection WHERE intSectionID = $sectionid"; $result = $conn->query($sql); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function get_athelete_count($course) {\n global $CFG;\n\n $sql = \"SELECT COUNT(cpsst.usersid)\n FROM {$CFG->prefix}block_courseprefs_students cpsst,\n {$CFG->prefix}block_courseprefs_sportusers cpsspou,\n {$CFG->prefix}block_courseprefs_sections sec\n WHERE sec.idnumber = '{$course->idnumber}'\n AND cpsst.sectionsid = sec.id\n AND cpsst.usersid = cpsspou.usersid\n AND cpsst.status = 'enrolled'\";\n\n return count_records_sql($sql);\n}", "public function getNumberOfPermits()\n {\n return $this->number_of_permits;\n }", "public function getNumberOfPermits()\n {\n return $this->number_of_permits;\n }", "public function getNoOfPermits()\n {\n return $this->noOfPermits;\n }", "function count_student_coached()\r\n{\r\n\tglobal $a_students;\r\n\treturn count($a_students);\r\n}", "abstract protected function getRequiredSections();", "function totalAvailable($data){\n\t\t$query = $this->freeStudents($data);\n\t\treturn $query->num_rows();\n\t}", "function lookup_section($user, $course) {\n global $CFG;\n \n $sql = \"SELECT sec.*, c.course_number, c.department\n FROM {$CFG->prefix}block_courseprefs_sections sec,\n {$CFG->prefix}block_courseprefs_courses c,\n {$CFG->prefix}block_courseprefs_students cpsst\n WHERE sec.idnumber = '{$course->idnumber}'\n AND cpsst.sectionsid = sec.id\n AND sec.coursesid = c.id\n AND cpsst.status = 'enrolled'\n AND cpsst.usersid = {$user->id}\";\n\n return get_record_sql($sql);\n}", "public function showStudentList($sectionId, Request $request){\n $section = Section::find($sectionId);\n $section->load('level', 'subject');\n\n $users = User::whereHas('sections', function($q) use ($sectionId) {\n $q->where('section_id', '=', $sectionId);\n })->where('role', '=', 'student')->get();\n\n\n $numberOfActivities = Activity::where('section_id', '=', $sectionId)->count();\n $totalScore = Activity::where('section_id', '=', $sectionId)->sum('number_of_items');\n $template = 'teacher.partials.teacher_student_list';\n $returnHTML = view($template, compact('users', 'section', 'sectionId', 'totalScore', 'numberOfActivities'))->render();\n return response()->json( array('success' => true, 'html'=> $returnHTML) );\n }", "function studentsRegistedToCourse($courseName){\n\t\t$registedStudents = 0;\n\t\tforeach ($this->studentArray as $student) {\n\t\t\tif($student->hasGivenGrade($courseName)) {\n\t\t\t\t$registedStudents++;\n\t\t\t}\n\t\t}\n\t\treturn $registedStudents;\n\t}", "public function getCapacity(): int\n {\n return $this->capacity;\n }", "public function getTotalSections(SectionCriteria $criteria = null)\n\t{\n\t\tif (!$criteria)\n\t\t{\n\t\t\t$criteria = new SectionCriteria();\n\t\t}\n\n\t\t$query = blx()->db->createCommand()\n\t\t\t->select('count(id)')\n\t\t\t->from('sections');\n\n\t\tif ($this->_applySectionConditions($query, $criteria))\n\t\t{\n\t\t\treturn (int) $query->queryScalar();\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn 0;\n\t\t}\n\t}", "public static function getTotalStudentsCount() {\n return Studentterm::select('studentterms.studentid')->join('programs', 'studentterms.programid', '=', 'programs.programid')->where('programs.degreelevel', 'U')->where('studentterms.studentid', '>=', 200000000)->where('studentterms.studentid', '<', 201000000)->groupBy('studentterms.studentid')->count();\n }", "public function totalStudent() {\n $data = array();\n $query = $this->db->get('student_info');\n foreach ($query->result_array() as $row) {\n $data[] = $row;\n }return count($data);\n }", "function checkNonfacultyCrhrs($studentProfile)\n {\n $totWeight=0.0;\n $courseList = array();\n foreach($studentProfile->get(\"courses\") as $course)\n {\n $department = $course->get(\"department\");\n $courseNumber = $course->get(\"courseNumber\");\n if ($department==\"ADCS\" || $department==\"CDEV\" || $department==\"CRED\" || $department==\"EDUC\" \n || $department==\"HLSC\" || $department==\"MGT\" || $department==\"NURS\" || $department==\"PUBH\")\n {\n if(($department==\"HLSC\" && $courseNumber == 3450) || ($department==\"MGT\" && $courseNumber == 3780)){}\n else\n {\n $totWeight += $course->get(\"weight\");\n $courseList[] = $course->toArray();\n }\n }\n }\n return array(\n \"result\" => $totWeight <= 12,\n \"reason\" => $courseList\n );\n }", "public function getTotalCapacity()\n {\n return $this->totalCapacity;\n }", "function checkMusePhacMax($studentProfile)\n {\n $maxCourses = 0;\n if(trim($studentProfile->get(\"major\")) == \"Music\" || trim($studentProfile->get(\"secondMajor\")) == \"Music\")\n {\n $maxCourses = 8;\n }\n elseif(trim($studentProfile->get(\"major\")) == \"Kinesiology\" || trim($studentProfile->get(\"secondMajor\")) == \"Kinesiology\")\n {\n $maxCourses = 10;\n }\n else\n {\n $maxCourses = 4; \n }\n $musePhacMaxCourses = array();\n $courses = $studentProfile->get(\"courses\");\n foreach($courses as $course)\n \t{\n $department = $course->get(\"department\");\n if($department == \"MUSE\" || $department == \"PHAC\")\n {\n \t\t$musePhacMaxCourses[] = $course->toArray();\n }\n }\n return array\n \t(\n \"result\" => count($musePhacMaxCourses) <= $maxCourses,\n \"reason\" => $musePhacMaxCourses\n ); \n }", "public function getUsageLimit();", "public function getCapacity()\n {\n return $this->capacity;\n }", "public function getCapacity()\n {\n return $this->capacity;\n }", "function check24Discipline($studentProfile)\n {\n $max24Discipline = array();\n $largest = array();\n $list = array();\n $sizeLargest = 0;\n $department = \"\";\n $courses = $studentProfile->get(\"courses\");\n foreach($courses as $course)\n \t{\n $tempArray = array();\n $tempArray[] = $course;\n $department = $course->get(\"department\");\n if($department != \"PHAC\" && $department != \"MUSE\")\n {\n if(!array_key_exists($department, $max24Discipline))\n {\n $max24Discipline[$department] = $tempArray;\n }\n else\n {\n $max24Discipline[$department] = array_merge($max24Discipline[$department], $tempArray);\n }\n }\n }\n foreach($max24Discipline as $dept)\n {\n if(count($dept) > $sizeLargest)\n {\n $sizeLargest = count($dept);\n $largest = $dept;\n $department = $dept[0]->get(\"department\");\n }\n elseif(count($dept) == $sizeLargest)\n {\n $department = $department . \",\" . $dept[0]->get(\"department\");\n }\n }\n foreach($largest as $course)\n {\n $list[] = $course->toArray();\n }\n return array\n \t(\n \"result\" => $sizeLargest <= 24,\n \"reason\" => $list,\n \"dept\" => $department\n ); \n }", "public function getCapacity() {\n\t\treturn $this->capacity;\n\t}", "function getGroupsOccupancy()\n {\n $rs = $this->dbQuery(\n \"SELECT grp.*, COUNT(sg.student_id) AS cs FROM studentgroup AS grp\" .\n \" LEFT JOIN stud_group AS sg ON (grp.id=sg.group_id AND sg.cancel_stamp IS NULL)\" .\n \" WHERE grp.object_id=\" . $this->lecture_id .\n \" AND grp.year=\" . $this->schoolyear .\n \" GROUP BY grp.id\");\n\n $this->dumpVar('all student groups', $rs);\n\n if (empty($rs))\n {\n throw new Exception('The list of returned student groups is empty!');\n }\n return $rs;\n }", "public function getNumberOfStudents(){\n $this->db->order_by('cid', 'DESC');\n $this->db->where('did', 4);\n $query = $this->db->get('schoolcontacts');\n return $query;\n }", "public function getMax_students()\n {\n return $this->max_students;\n }", "function sectionVarCount($fld,$id)\n\t{\n\t\tglobal $db;\n\t\t//echo \"<br> \".$id;\n\t\t$sql_cnt = \"select count(*) as cnt from $fld where parent_id=$id\";\t\t\n\t\t$res_cnt = $db->select_data($sql_cnt);\n\t\treturn $res_cnt[0]['cnt'];\n\t\t\n\t}", "public static function get_enrollment_count($semester, $course) {\n self::$error = null;\n if (!self::check()) {\n return false;\n }\n\n $results = self::run_query(sql::GET_COURSE_ENROLLMENT_COUNT, array($semester, $course));\n if ($results === false) {\n self::$error .= \"Error while retrieving course enrollment counts.\";\n return false;\n }\n\n return $results[0]['num_students'];\n }", "function studentPassInCourse($courseName){\n\t\t$passedStudents = 0;\n\t\tforeach ($this->studentArray as $student) {\n\n\t\t\t//\n\t\t\tif($student->hasPassedCourse($courseName)){\n\t\t\t\t$passedStudents++;\n\t\t\t}\n\t\t}\n\t\treturn $passedStudents;\n\t}", "public static function segmentCount() : int;", "public function getSeatsNum();" ]
[ "0.6105077", "0.595448", "0.595448", "0.57465297", "0.5643384", "0.55089897", "0.5458241", "0.5457903", "0.5435209", "0.5420745", "0.54129964", "0.5412181", "0.5387589", "0.53719777", "0.53545797", "0.5327486", "0.5319255", "0.53183347", "0.5314863", "0.5314863", "0.5273774", "0.52481085", "0.52252847", "0.5201621", "0.51963204", "0.519579", "0.5186474", "0.51747906", "0.51740736", "0.51578975" ]
0.72446674
0
/ Get a description of the course param: course id (CSCI222, STAT360, ...) return: course description
function getCourseDescription($courseID) { $sql = "SELECT strCourseDescription FROM tblCourse WHERE strCourseID = $courseID"; $result = $conn->query($sql); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function get_course_object_description() {\n global $DB;\n\n $params = array(\n 'idnumber' => new external_value(PARAM_TEXT, 'The ELIS course idnumber.', VALUE_REQUIRED),\n 'name' => new external_value(PARAM_TEXT, 'The ELIS course name.', VALUE_OPTIONAL),\n 'code' => new external_value(PARAM_TEXT, 'The ELIS course code.', VALUE_OPTIONAL),\n 'syllabus' => new external_value(PARAM_TEXT, 'The ELIS course description.', VALUE_OPTIONAL),\n 'lengthdescription' => new external_value(PARAM_TEXT, 'The ELIS course length description. For example, days, weeks, months, semesters, etc.', VALUE_OPTIONAL),\n 'length' => new external_value(PARAM_INT, 'The ELIS course duration.', VALUE_OPTIONAL),\n 'credits' => new external_value(PARAM_FLOAT, 'The credits given for completing the ELIS course.', VALUE_OPTIONAL),\n 'completion_grade' => new external_value(PARAM_INT, 'A number from 0 to 100 to indicate the grade needed to complete the ELIS course.', VALUE_OPTIONAL),\n 'cost' => new external_value(PARAM_TEXT, 'The cost of the ELIS course.', VALUE_OPTIONAL),\n 'version' => new external_value(PARAM_TEXT, 'The ELIS course version.', VALUE_OPTIONAL),\n 'assignment' => new external_value(PARAM_TEXT, 'The ELIS program this ELIS course is assigned to.', VALUE_OPTIONAL),\n 'link' => new external_value(PARAM_TEXT, 'The shortname of the Moodle course that should be used as a template.', VALUE_OPTIONAL),\n );\n\n $fields = self::get_course_custom_fields();\n foreach ($fields as $field) {\n // Generate name using custom field prefix.\n $fullfieldname = data_object_with_custom_fields::CUSTOM_FIELD_PREFIX.$field->shortname;\n\n if ($field->multivalued) {\n $paramtype = PARAM_TEXT;\n } else {\n // Convert datatype to param type.\n switch($field->datatype) {\n case 'bool':\n $paramtype = PARAM_BOOL;\n break;\n case 'int':\n $paramtype = PARAM_INT;\n break;\n default:\n $paramtype = PARAM_TEXT;\n }\n }\n\n // Assemble the parameter entry and add to array.\n $params[$fullfieldname] = new external_value($paramtype, $field->name, VALUE_OPTIONAL);\n }\n\n return $params;\n }", "private function course()\n {\n $date = new DateBr();\n $course = new Course();\n $course = $course->courseAuth(0); \n $text = \"\";\n foreach($course as $item){\n $text .= empty($item->CourseType->description) ? '' : '<br><br><strong>'.$item->CourseType->description.'</strong><br>';\n $text .= empty($item->description) ? '' : ' '.$item->description;\n $text .= empty($item->institution) ? '' : ' - '.$item->institution;\n $text .= empty($item->start) ? '' : '<br> '.$date->convert($item->start);\n $text .= empty($item->end) ? '' : ' - '.$date->convert($item->end);\n $text .= empty($item->courseStatus->description) ? '' : ' - '.$item->courseStatus->description;\n }\n return $text;\n }", "abstract public function get_course();", "public function getcourse ($id_course){\n $coursesDetail = $this -> restfullDAO -> getcoursesByid_course ($id_course );\n return $coursesDetail [0];\n }", "public function getCourse() {\n \treturn $this->apcSession->getCourseLookupSession()->getCourse($this->getCourseId());\n\t}", "public function GetCourse()\n\t\t{\n\t\t\treturn Course::Get($this->GetAttribute('course_id'));\n\t\t}", "public function getCourse()\n {\n return $this->course;\n }", "function get_courseID()\r\n {\r\n return $this->courseID;\r\n }", "public function getCourseId ()\n {\n return $this->course_id;\n }", "public function getCourseInfoURL() {\r\n $url = $this->url;\r\n if (empty($url)) {\r\n $url = str_replace('%course_code%', \r\n\t $this->course_code, \r\n\t ($this->activelink ? COURSE_INFO_URL : COURSE_OLD_INFO_URL));\r\n\t }\r\n\t else {\r\n\t $url = $url.\"?LKCAMPAIGN=FBA01\"; \r\n\t } \r\n\t \r\n\t if ( $this->activelink ) {\r\n\t // work out the level part of the info url\r\n\t // undergraduate is default\r\n\t $level = \"undergraduate\";\r\n\t \r\n\t // postgraduate\r\n\t if ($this->OUCourseLevel == 'M') {\r\n\t $level = \"postgraduate\";\r\n\t }\r\n\t \r\n\t if ( $this->classification == Course::CLASS_OU_CORRES ) {\r\n\t // cpd courses start with a G\r\n\t if ( substr($this->course_code, 0, 1) == 'G') {\r\n\t $level = \"professional-skills\"; \r\n\t } \r\n\t if (empty($this->url)) {\r\n\t $href = str_replace('%course_code%', $this->course_code, COURSE_INFO_URL);\r\n\t $href = str_replace('%level%', $level, $href);\r\n }\r\n else {\r\n $href = $this->url.\"?LKCAMPAIGN=FBA01\";\r\n }\r\n\t $retval = array('title' => 'Course Details',\r\n 'href' => $href,\r\n 'target' => '_blank',\r\n 'description' => 'View information on The Open University website about this course.');\r\n }\r\n else if ( $this->classification == Course::CLASS_OPENLEARN ) {\r\n\t if (empty($this->url)) {\r\n\t $href = sprintf(OPENLEARN_URL, $this->course_code);\r\n }\r\n else {\r\n $href = $this->url.\"?LKCAMPAIGN=FBA01\";\r\n } \r\n $retval = array('title' => 'View on OpenLearn', \r\n 'href' => $href,\r\n 'target' => '_blank',\r\n 'description' => 'View or enrol on this course on OpenLearn');\r\n }\r\n else if ( $this->classification == Course::CLASS_OU_QUAL ) {\r\n\t if (empty($this->url)) {\r\n\t $href = str_replace('%course_code%', $this->course_code, QUAL_INFO_URL);\r\n\t $href = str_replace('%level%', $level, $href);\r\n }\r\n else {\r\n $href = $this->url.\"?LKCAMPAIGN=FBA01\";\r\n } \r\n\t $retval = array('title' => 'Qualification Details', \r\n 'href' => $href,\r\n 'target' => '_blank',\r\n 'description' => 'View information on The Open University website about this qualification.');\r\n }\t\t\r\n\t }\r\n\t else {\r\n\t if (empty($this->url)) {\r\n\t $href = str_replace('%course_code%', $this->course_code, COURSE_OLD_INFO_URL);\r\n }\r\n else {\r\n $href = $this->url.\"?LKCAMPAIGN=FBA01\";\r\n } \r\n\t $retval = array('title' => 'Course Details', \r\n 'href' => $href,\r\n 'target' => '_self',\r\n 'description' => 'Sorry, no course details are available as this course has ended.');\t\t\t\r\n }\r\n\t return $retval;\r\n }", "public function getCourseId()\n {\n return $this->course_id;\n }", "public function getCourseId() {\n \t$val = $this->cacheGetObj('course_id');\n \tif (is_null($val))\n \t\treturn $this->cacheSetObj('course_id', $this->getOffering()->getCourseId());\n \telse\n \t\treturn $val;\n\t}", "public function getCourse()\n\t{\n\t\treturn $this->db->query(\"SELECT * FROM course\");\n\t}", "function quiz_get_category_coursename($category, $courseid = 0) {\n/// name\n $cname = (isset($category->indentedname)) ? $category->indentedname : $category->name;\n if ($category->course != $courseid && $category->publish) {\n if ($catcourse=get_record(\"course\",\"id\",$category->course)) {\n $cname .= \" ($catcourse->shortname) \";\n }\n }\n return $cname;\n}", "public function getCourse()\n {\n return Course::where('slug', $this->courseSlug())\n ->first();\n }", "public function get_course($course_id){\n\t\t$this->db->select('*');\n\t\t$this->db->from($this->TABLENAME);\n\t\t$this->db->join('room',\"room.room_id = $this->TABLENAME.held_here\");\n\t\t$this->db->where('course_id', $course_id);\n\t\t$query = $this->db->get();\n\t\treturn $query->result();\n\t}", "public function course(): Course;", "public function getCourseCode()\n {\n return $this->courseCode;\n }", "public function getCourseCode(){\n return $this->_getModelProperty('course_code');\n }", "public function get_description();", "public function getCourse(int $id) {\n $sql = \"SELECT * FROM courses WHERE id= '$id'\";\n $result = $this->db->query($sql);\n return mysqli_fetch_all($result, MYSQLI_ASSOC);\n }", "abstract public function get_description();", "public function get_course() {\n return $this->parent->get_course();\n }", "public function get_course_name($id){\n\t\t\t$query = \"SELECT `course_name` FROM `education` WHERE `uid`='$id'\";\n\t\t\t$result = mysql_query($query);\n\t\t\tif($result){\n\t\t\t\t$row = mysql_fetch_array($result);\n\t\t\t\t$ind_id = $row['course_name'];\n\t\t\t\t$query2 = \"SELECT `course_name_data` FROM `course_name` WHERE `course_name_id`='$ind_id'\";\n\t\t\t\t$result2 = mysql_query($query2);\n\t\t\t\tif($result2){\n\t\t\t\t$row2 = mysql_fetch_array($result2);\n\t\t\t\t\techo $row2['course_name_data'];\n\t\t\t\t}else{\n\t\t\t\t\tdie('can not select'.mysql_error());\n\t\t\t\t}\n\t\t\t}\n\t\t}", "public function get_course() {\n global $DB;\n if ($this->course) {\n return $this->course;\n }\n if (!$this->context) {\n return null;\n }\n $params = array('id' => $this->get_course_context()->instanceid);\n $this->course = $DB->get_record('course', $params, '*', MUST_EXIST);\n return $this->course;\n }", "public function getLessonCourse($idCourse) {\n $sql = $this->db->prepare(\"SELECT l.id as id_lesson, l.title as title_lesson, l.description as description_lesson, c.id as id_content, c.title as title_content FROM lesson l INNER JOIN lesson_has_content lhc ON lhc.idLesson = l.id INNER JOIN content c ON c.id = lhc.idContent INNER JOIN course_has_lesson chl ON chl.idLesson = l.id INNER JOIN course cc ON cc.id = chl.idCourse WHERE cc.id = ?\");\n $sql->bindValue(1, $idCourse);\n $sql->execute();\n\n if($sql->rowCount() > 0) {\n return $sql->fetchAll(PDO::FETCH_ASSOC);\n } \n }", "function get_course($course=null) {\r\n global $DB;\r\n\r\n if (!empty($course->id)) {\r\n $extradata = $DB->get_records('course_config_fn', array('courseid' => $course->id));\r\n } else if (!empty($this->course->id)) {\r\n $extradata = $DB->get_records('course_config_fn', array('courseid' => $this->course->id));\r\n } else {\r\n $extradata = false;\r\n }\r\n\r\n if (is_null($course)) {\r\n $course = new Object();\r\n }\r\n\r\n if ($extradata) {\r\n foreach ($extradata as $extra) {\r\n $this->course->{$extra->variable} = $extra->value;\r\n $course->{$extra->variable} = $extra->value;\r\n }\r\n }\r\n\r\n return $course;\r\n }", "public function get_course_by_id($course_id) {\n\n $this->db->select('*');\n\n $this->db->from('course');\n\n $this->db->where('course_id', $course_id);\n\n $query = $this->db->get();\n\n $results = $query->result();\n\n return count($results) > 0 ? $results[0] : null;\n\n }", "public static function getDescription();", "public static function getDescription();" ]
[ "0.7737823", "0.73407686", "0.7283492", "0.7139409", "0.7110695", "0.7005263", "0.6860057", "0.6855295", "0.6823035", "0.68184334", "0.6731887", "0.66068554", "0.6544985", "0.65200734", "0.6478362", "0.6472874", "0.6436284", "0.6426508", "0.64160097", "0.6412007", "0.64026636", "0.63755697", "0.63671285", "0.6361414", "0.6361032", "0.63598955", "0.6356609", "0.6356562", "0.6298514", "0.6298514" ]
0.774708
0
/ Get the location of the section param: sectionid (123456789098, ...) return: building and room number
function getSectionRoom($sectionid) { $sql = "SELECT strFacilityName, intRoomNumber FROM tblFacility, tblRoom WHERE tblSection.intSectionID = $sectionID AND tblSection.intRoomID = tblRoom.intRoomID AND tblRoom.intFacilityID = tblFacility.intFacilityID"; $result = $conn->query($sql); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function sectionID( )\r\n {\r\n return $this->SectionID;\r\n }", "private function _get_section_id() {\n $section_id = '';\n\n // In DTD XML, we used to extract a substring of article ID to get a unique\n // section ID. This is not possible with schema XML as Tournesol uses a \n // a different convention for generating article IDs. \n \n // Instead, base section ID on section title. Remove whitespace and\n // punctuation and encode down to Latin-1 characters.\n $section_id = \n strtoupper(\n preg_replace(\n \"/[[:punct:][:space:]]/\", // remove whitespace & punct.\n \"\",\n iconv('UTF-8', 'ASCII//TRANSLIT', $this->_get_section_title()) // after down-coding to ASCII\n )\n );\n \n return $section_id;\n }", "public function getSection($section = \"\", $id = 0)\n\t{\n\t\tif ($id != 0)\n\t\t{\n\t\t\t$db = JFactory::getDbo();\n\n\t\t\t$query = \" SELECT * FROM \" . $db->quoteName($this->_table_prefix . $section)\n\t\t\t\t. \" WHERE \" . $db->quoteName($section . \"_id\") . \" = \" . (int) $id . \" \";\n\n\t\t\t$db->setQuery($query);\n\n\t\t\treturn $db->loadObject();\n\t\t}\n\n\t\treturn null;\n\t}", "private function getSection(string $section, string $line): string\n {\n if (1 === preg_match(self::REGEX_PSL_SECTION, $line, $matches)) {\n return self::PSL_SECTION[$matches['type']][$matches['point']];\n }\n\n return $section;\n }", "function get_section_from_location ($location) {\n return array_key_exists($location, $this->sectionsByLocation) ? $this->sectionsByLocation[$location] : null;\n }", "function ParseLocation($location)\n{\n\t\n\t// location strings look like WH,in,rm309\n\t$location = str_replace(\"OC\", \"MH\", $location);\n\t$tempArray = explode(\",\", $location);\n\t$building = $tempArray[0];\n\t$inside = $tempArray[1];\n\t$description = $tempArray[2];\n\t\n\t$floorNum = substr($building, 2, 1);\n\t$building = substr($building, 0, 2);\n\t\n\tif ($inside == \"in\")\n\t{\n\t\t$inside = \"inside\";\n\t} elseif ($inside == \"out\")\n\t{\n\t\t$inside = \"outside of\";\n\t}\n\n\tif ($floorNum == \"1\")\n\t{\n\t\t$floor = \"1st\";\n\t} elseif ($floorNum == \"2\")\n\t{\n\t\t$floor = \"2nd\";\n\t} elseif ($floorNum == \"3\")\n\t{\n\t\t$floor = \"3rd\";\n\t} elseif ($floorNum == \"4\")\n\t{\n\t\t$floor = \"4th\";\n\t} elseif ($floorNum == \"0\")\n\t{\n\t\t$floor = \"LL\";\n\t}\n\n\tif (stripos($description, \"rm\") !== false || stripos($description, \"room\") !== false)\n\t{\n\t\t// this has a room\n\t\t$description = str_ireplace(\"rm\", \"\", $description);\n\t\t$description = str_ireplace(\"room\", \"\", $description);\n\n\t\t$location = $inside . \" \" . $building . $description;\n\t} else\n\t{\n\t\tif ($floor != \"LL\")\n\t\t{\n\t\t\t$location = $inside . \" \" . $building . \" \" . $floor . \" floor \" . $description;\n\t\t} else\n\t\t{\n\t\t\t$location = $inside . \" \" . $building . \" (\" . $floor . \") \" . $description;\n\t\t}\n\t}\n\t\n\t$ret[0] = ucfirst($location);\n\t$ret[1] = $floorNum;\n\treturn $ret;\n}", "public function get_section($section_id) {\n $ojs_section = NULL;\n \n if (array_key_exists($section_id, $this->section_list)) {\n $ojs_section = $this->section_list[$section_id];\n }\n \n return $ojs_section;\n }", "function section(string $section) : string\n {\n return isset($this->sections[$section])? $this->sections[$section]: '';\n }", "private static function _office_location( $room_id ) {\n\n // If we've gotten this far, we've definitely instantiated the FSQLib object.\n $sql = self::$query_lib->get_query_str( FSQEnum::USER_OFFICE, $room_id );\n\n // If we find stuff, we only care about the first row (there should only be one anyway).\n if( $result = self::_run_query( $sql ) ) {\n $row = mysqli_fetch_assoc( $result );\n mysqli_free_result( $result );\n\n return $row;\n }\n }", "public function get_section()\n\t{\n\t\treturn $this->section;\n\t}", "function getSection(){\n\t\t\treturn $this->section;\t\n\t\t}", "private function section($section)\r\n\t{\r\n\t\t$ret_val = null;\r\n\t\tswitch(isset($this->container()->sections[$section]))\r\n\t\t{\r\n\t\t\tcase false:\r\n\t\t\tif(!$this->sectionModel instanceof Section)\r\n\t\t\t{\r\n\t\t\t\t$where = is_numeric($section) ? ['id' => $section] : ['name' => $section];\r\n\t\t\t\t$found = $this->containerModel->getSections()\r\n\t\t\t\t\t->where($where)\r\n\t\t\t\t\t->one();\r\n\t\t\t\t$this->sectionModel = $found instanceof Section ? $found : null;\r\n\t\t\t\t$ret_val = $this->sectionModel;\r\n\t\t\t\t$this->containerModel->populateRelation('sections', array_merge($this->containerModel>sections, [$section => $ret_val]));\r\n\t\t\t\tCache::setModel('config-container-'.$this->container()->name(), $this->containerModel);\r\n\t\t\t}\r\n\t\t\tbreak;\r\n\r\n\t\t\tdefault:\r\n\t\t\t$ret_val = $this->containerModel->sections[$section];\r\n\t\t\tbreak;\r\n\t\t}\r\n\t\treturn $ret_val;\r\n\t}", "abstract public function sectionName();", "public function get_section() {\n\n\t\treturn $this->section;\n\t}", "public function getSection($section) {\n\tif(array_key_exists($section, $this->config)) {\n\t return $this->config[$section];\n\t}\n\telse {\n\t return null;\n\t}\n }", "function getSectionID()\n\t{\n require 'b_ConnectionString.php';\n\n\t\t\t$query = \"select sectionID from sections order by sectionID DESC\";\n\t\t\t$result = mysqli_query($mySQL_ConStr, $query); \n\t\t\t$accountID = mysqli_fetch_row($result);\n\t\t\treturn $sectionID[0];\n\t}", "public function get_ini_section($section) {\n $positions = array_filter(array_map(function($item, $index) {\n if (preg_match(\"/::(.*?)::/\", $item) === 1) {\n return [\"section\" => $item, \"pos\" => $index];\n }\n return false;\n }, array_keys($this->config), array_keys(array_keys($this->config))),\n function($item) {\n if ($item === false)\n return false;\n return true;\n }\n );\n\n // trova la posizione della sezione voluta e quella della sezione successiva\n $section_pos = -1;\n $next_pos = -1;\n foreach ($positions as $p) {\n $name = $p[\"section\"];\n if ($section_pos == -1) {\n if ($name == \"::$section::\") {\n $section_pos = $p[\"pos\"];\n }\n } else {\n if ($next_pos == -1)\n $next_pos = $p[\"pos\"];\n }\n }\n\n // ritorna l'opportuno slice dell'array di configurazione\n if ($section_pos == -1) \n return []; \n if ($section_pos > -1 && $next_pos == -1)\n return array_slice($this->config, $section_pos+1); \n if ($section_pos > -1 && $next_pos > -1)\n return array_slice($this->config, $section_pos+1, ($next_pos - $section_pos) - 1);\n }", "function mpo_get_section_var ($var) {\n global $wpdb;\n if ($this->section_identifier && !empty($var)) {\n $res = $wpdb->get_var( $wpdb->prepare(\"SELECT $var FROM {$wpdb->prefix}sections WHERE section_identifier = %s\", $this->section_identifier) );\n return $res;\n }\n }", "public function get_by_id_sec($section_id){\n\n\t\t\t$this->db->from($this->tab_name); //from\n\t\t\t$this->db->where('section_id', $section_id); //where\n\n\t\t\t$Q = $this->db->get();// select *\n\n\t\t\treturn $Q->row(); // returbn the specific row\n\t\t}", "function wpi_section_name(){\n\tglobal $Wpi;\n\treturn $Wpi->Template->section;\n}", "public function getSection($key_section, $is_renturn_array = false);", "public function findSection($section)\n {\n return $this->sectionMap[$section] ?? false;\n }", "public function getSection($section = null)\n {\n if (is_null($section)) {\n return $this->sections;\n } elseif (array_key_exists($section, $this->sections)) {\n return $this->sections[$section];\n }\n }", "function getSectionPathFromId($id)\n{\n\t// force $id to be a int\n\t$id = intval($id);\n\n\t$path = '';\n\n\ttry\n\t{\n\t\t// must ini new connection in case we are already looping through the\n\t\t// global one\n\t\t$GLOBALS['dbInfo']['database'] = DATABASE_DEFAULT;\n\t\tif (defined('DATABASE_SYSTEM') && DATABASE_SYSTEM == 'postgresql')\n\t\t{\n\t\t\t$db = new PostgreSql($GLOBALS['dbInfo']);\n\t\t}\n\t\telseif (defined('DATABASE_SYSTEM') && DATABASE_SYSTEM == 'mysql')\n\t\t{\n\t\t\t$db = new MySql($GLOBALS['dbInfo']);\n\t\t}\n\n\t\t$db->queryOnce('\n\t\t\tSELECT \"Path\", \"ParentID\"\n\t\t\tFROM \"Sections\"\n\t\t\tWHERE \"Disabled\" = false\n\t\t\tAND \"ID\" = \\''.$id.'\\'\n\t\t');\n\t\t$pid = intval($db->record('ParentID'));\n\t\tif ($pid !== 0)\n\t\t{\n\t\t\t$path .= getSectionPathFromId($pid).'/';\n\t\t}\n\n\t\t$path .= $db->record('Path');\n\t}\n\tcatch (Exception $e)\n\t{\n\t\t// NOTE: you need to call __toString directy when passing it on to a function\n\t\ttrigger_error($e->__toString(), E_USER_ERROR);\n\t}\n\n\treturn $path;\n}", "function extract_section($name)\n{\n $pos = strpos ( $name, \".\" );\n if (is_numeric ( substr ( $name, $pos + 1 ) ))\n return substr ( $name, 0, $pos );\n return null;\n}", "public static function getParam($section, $param) {\r\n return self::$config[$section][$param];\r\n }", "public function getSectionId()\n {\n $id = $this->getDivIdentifier();\n if ($id === null) {\n $id = self::DEFAULT_ID;\n }\n return $id;\n }", "public function getSection() {\n\t\treturn $this->section;\n\t}", "public function getSection() {\n\t\treturn $this->section;\n\t}", "public function getSection() {\n\t\treturn $this->section;\n\t}" ]
[ "0.6361125", "0.63552845", "0.63275033", "0.62407213", "0.61583835", "0.6116392", "0.6056869", "0.6012793", "0.5988906", "0.59634405", "0.59406817", "0.5921291", "0.58711135", "0.58581954", "0.5793206", "0.57854444", "0.57585824", "0.5730343", "0.569893", "0.56856835", "0.5684721", "0.56685054", "0.5651427", "0.56393147", "0.56389284", "0.56335896", "0.5615981", "0.5611711", "0.5611711", "0.5611711" ]
0.6993126
0
Display options for logging
public static function logging() { $buildopts = array( 'files' => jgettext('Log file contents') , 'profile' => jgettext('Profile') ); //--Get component parameters $params = JComponentHelper::getParams('com_easycreator'); echo NL.'<div class="logging-options">'; $js = "v =( $('div_buildopts').getStyle('display') == 'block') ? 'none' : 'block';"; $js .= "$('div_buildopts').setStyle('display', v);"; $checked = ($params->get('logging')) ? ' checked="checked"' : ''; echo NL.'<input type="checkbox" onchange="'.$js.'" name="buildopts[]"' .$checked.' value="logging" id="logging" />'; echo NL.'<label class="inline" for="logging">'.jgettext('Activate logging').'</label>'; $style = ($params->get('logging')) ? '' : ' style="display: none;"'; echo NL.' <div id="div_buildopts"'.$style.'>'; foreach($buildopts as $name => $titel) { //--Get component parameters $checked = ($params->get($name)) ? ' checked="checked"' : ''; echo NL.'&nbsp;|__'; echo NL.'<input type="checkbox" name="buildopts[]"'.$checked.' value="'.$name.'" id="'.$name.'" />'; echo NL.'<label class="inline" for="'.$name.'">'.$titel.'</label><br />'; } echo NL.' </div>'; echo NL.'</div>'; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function display_options();", "public static function print_options_section() {\n echo \"<p>Settings related to the SalmonPress plugin.</p>\";\n }", "protected function _showOptions()\n {\n\n $this->_clearScreen();\n\n $migration_warning = false;\n\n try\n {\n $migration_warning = Migration::areJobsOutstanding();\n }\n\n catch (Exception $exception) {}\n\n if ($migration_warning)\n {\n $migration_warning = \"\\n\\n## NOTICE: There are outstanding migrations; please consider running them\";\n }\n\n $choice = (int)$this->_talkToUser(\"Welcome to the Whiskey CLI\\n\\nWhat would you like to do?\" . $migration_warning . \"\\n\\n1) Run latest migrations\\n2) View active server modules\\n3) View system information\\n4) Generate project key\\n5) Exit\\n\");\n\n switch ($choice)\n {\n\n case 1:\n $this->_runMigrations('up');\n break;\n\n case 2:\n $this->_viewActiveServerModules();\n break;\n\n case 3:\n $this->_viewSystemInformation();\n break;\n\n case 4:\n $this->_generateProjectKey();\n break;\n\n case 5:\n break;\n\n default:\n $this->_showOptions();\n break;\n\n }\n\n }", "public function optionsDump() {\n }", "abstract public function describe_options();", "public function form_cb_radio_logging() {\n $isOn = $this->pluginCommon->optUseLogging();\n\n // Radio button to select which action to perform.\n $buttons = array();\n // $id, $name, $value, $labelText, $checked=''\n $buttons[] = $this->makeRadioButton(\n $this->attrToString(Yfp_Ganalytics_Basic_Common::OK_LOG_ON . '_no', Yfp_Ganalytics_Basic_Common::WPOT_KEY_OPTIONS),\n $this->attrToArray(Yfp_Ganalytics_Basic_Common::OK_LOG_ON, Yfp_Ganalytics_Basic_Common::WPOT_KEY_OPTIONS),\n Yfp_Ganalytics_Basic_Common::OKV_IS_FALSE,\n 'No',\n $isOn ? '' : ' checked'\n );\n $buttons[] = $this->makeRadioButton(\n $this->attrToString(Yfp_Ganalytics_Basic_Common::OK_LOG_ON . '_yes', Yfp_Ganalytics_Basic_Common::WPOT_KEY_OPTIONS),\n $this->attrToArray(Yfp_Ganalytics_Basic_Common::OK_LOG_ON, Yfp_Ganalytics_Basic_Common::WPOT_KEY_OPTIONS),\n Yfp_Ganalytics_Basic_Common::OKV_IS_TRUE,\n 'Yes',\n $isOn ? ' checked' : ''\n );\n echo implode(\"\\n\\t\\t\", $buttons);\n echo '<br />Use debug mode. Logs an entry to the console. Rarely used.';\n //var_dump(get_option( Yfp_Ganalytics_Basic_Common::WPOT_KEY_OPTIONS ));\n }", "public function showLog()\r\n\t{\r\n\t\tif ($this->debug) {\r\n\t\t\treturn $this->log->showLog();\r\n\t\t}\r\n\t\t\r\n\t}", "function cp_set_options()\n {\n update_option('cp_is_displayed_debug_info', false);\n }", "public function options(){}", "function _logger_admin_settings() {\n//TODO\n}", "function admin_vote_logs() {\n\t\t?>\n\t\t<div class=\"wrap\">\n\t\t\t<h2><?php _e( 'Vote Logs' ); ?></h2>\n\t\t\t<?php\n\t\tif ( current_user_can( 'manage_options' ) ) {\n\t\t\t$this->list_admin_vote_logs();\n\t\t}\n\t\t?>\n\t\t</div>\n\t\t<?php\n\t}", "function options() {\n\t\t\t?>\n\t\t\t<h2><?php _e('Import Options', 'echo-importer'); ?></h2>\n\t\t\t<p><?php printf( _n( 'It looks like there&#8217;s %s comment in the file.' , 'It looks like there are %s comments in the file.', $this->found_comment_count, 'echo-importer' ), $this->found_comment_count ); ?></p>\n\t\t\t<p><?php _e('Click Next to import all of them.', 'echo-importer'); ?></p>\n\t\n\t\t\t<form action=\"?import=echo&amp;step=2&amp;id=<?php echo $this->id; ?>\" method=\"post\">\n\t\t\t<?php wp_nonce_field('import-echo'); ?>\n\t\t\t<p class=\"submit\">\n\t\t\t<input type=\"submit\" class=\"button\" value=\"<?php echo esc_attr__('Next', 'echo-importer'); ?>\" /><br />\n\t\t\t</p>\n\t\t\t</form>\n\t\t\t<?php\n\t\t}", "function tb_longwave_blog_options_callback() {\n\techo '<p>Certain options that influence the appearance of the blog part of Glisseo.</p>';\n}", "function logs(){\n\n\t\t}", "public function logConfig ()\n\t{\n\t\t$this->_log((array) $this->configuration);\n\t}", "function log()\r\n {\r\n $userinfo = $this->getUserInfo();\r\n\r\n $display_errors = ini_get('display_errors');\r\n $log_errors = ini_get('log_errors');\r\n\r\n if ($display_errors) {\r\n echo $this->_display($userinfo);\r\n }\r\n\r\n if ($log_errors) {\r\n $this->_log($userinfo);\r\n }\r\n }", "static function help()\n {\n # display the help banner if one has been set\n if (self::$banner !== null) {\n echo self::$banner . \"\\n\";\n }\n\n # to get the formatting to look nice when printed, do some\n # calculations regarding help message line-length.\n $max_before_colon_pos = 0;\n foreach (self::$options as $option) {\n # calculate the line-length based on the absence or presence\n # of a type requirement\n if ($option->type != null) {\n $t = substr($option->type, 0, 1);\n $line = \"{$option->long}, {$option->short} <$t>: {$option->description}\\n\";\n } else {\n $line = \"{$option->long}, {$option->short}: {$option->description}\\n\";\n }\n $before_colon_pos = strlen(substr($line, 0, strpos($line, ':')));\n\n if ($before_colon_pos > $max_before_colon_pos) {\n $max_before_colon_pos = $before_colon_pos;\n }\n }\n\n # then display the options\n echo \"Options:\\n\";\n foreach (self::$options as $option) {\n # same as above\n if ($option->type != null) {\n $t = substr($option->type, 0, 1);\n $line = \"{$option->long}, {$option->short} <$t>: {$option->description}\\n\";\n } else {\n $line = \"{$option->long}, {$option->short}: {$option->description}\\n\";\n }\n\n # now pad the string before the colon with spaces as appropriate\n $before_colon_str = substr($line, 0, strpos($line, ':'));\n $before_colon_str = str_pad($before_colon_str, $max_before_colon_pos, ' ', STR_PAD_LEFT);\n $after_colon_str = substr($line, strpos($line, ':'));\n\n # and output the result\n echo \"$before_colon_str$after_colon_str\";\n }\n die();\n }", "public function info(){\n\t\t$this->iLog(func_get_args(),__FUNCTION__);\n\t}", "function showDebug() {\n\n NotificationEvent::debugEvent($this);\n $this->showLdapDebug();\n }", "public function log(){\n\t\t$this->iLog(func_get_args(),__FUNCTION__);\n\t}", "protected function print_help_options(array $options): void {\n $left = [];\n $right = [];\n foreach ($options as $key => $option) {\n if ($option['hasvalue'] !== false) {\n $l = \"--$key={$option['hasvalue']}\";\n } else if (!empty($option['alias'])) {\n $l = \"-{$option['alias']}, --$key\";\n } else {\n $l = \"--$key\";\n }\n $left[] = $l;\n $right[] = $option['description'];\n }\n $this->cli_write('Options:' . PHP_EOL . $this->convert_to_table($left, $right));\n }", "public function toString() {\n\t\t$toReturn = '';\n\t\tforeach($this->options as $group => $options) {\n\t\t\t$toReturn .= \"[$group]\\n\";\n\t\t\tforeach($options as $option => $value) {\n\t\t\t\t$toReturn .= \"$option=$value\\n\";\n\t\t\t}\n\t\t}\n\t\treturn $toReturn;\n\t}", "public function view_option()\n{\n\t//option included, excluded\n\treturn \"excluded\";\n}", "public function settings_section_dentix()\n {\n \t// Think of this as help text for the section.\n \techo 'These settings do things for the Dentix.';\n }", "abstract protected function options();", "function display_options($options)\n\t{\n\t\tglobal $phpbb_root_path, $phpEx, $template, $user;\n\n\t\tforeach ($options as $name => $vars)\n\t\t{\n\t\t\tif (!is_array($vars) && strpos($name, 'legend') === false)\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif (strpos($name, 'legend') !== false)\n\t\t\t{\n\t\t\t\t$template->assign_block_vars('options', array(\n\t\t\t\t\t'S_LEGEND'\t\t=> true,\n\t\t\t\t\t'LEGEND'\t\t=> (isset($user->lang[$vars])) ? $user->lang[$vars] : $vars)\n\t\t\t\t);\n\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t$type = explode(':', $vars['type']);\n\n\t\t\t$l_explain = '';\n\t\t\tif (isset($vars['explain']) && $vars['explain'] && isset($vars['lang_explain']))\n\t\t\t{\n\t\t\t\t$l_explain = (isset($user->lang[$vars['lang_explain']])) ? $user->lang[$vars['lang_explain']] : $vars['lang_explain'];\n\t\t\t}\n\t\t\telse if (isset($vars['explain']) && $vars['explain'])\n\t\t\t{\n\t\t\t\t$l_explain = (isset($user->lang[$vars['lang'] . '_EXPLAIN'])) ? $user->lang[$vars['lang'] . '_EXPLAIN'] : '';\n\t\t\t}\n\n\t\t\t$content = $this->build_cfg_template($type, $name, $vars);\n\n\t\t\tif (!sizeof($content))\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t$template->assign_block_vars('options', array(\n\t\t\t\t'KEY'\t\t\t=> $name,\n\t\t\t\t'TITLE'\t\t\t=> (isset($user->lang[$vars['lang']])) ? $user->lang[$vars['lang']] : $vars['lang'],\n\t\t\t\t'S_EXPLAIN'\t\t=> (isset($vars['explain'])) ? $vars['explain'] : false,\n\t\t\t\t'TITLE_EXPLAIN'\t=> $l_explain,\n\t\t\t\t'CONTENT'\t\t=> $content['tpl'],\n\n\t\t\t\t// Find user link\n\t\t\t\t'S_FIND_USER'\t=> (isset($content['find_user'])) ? true : false,\n\t\t\t\t'U_FIND_USER'\t=> (isset($content['find_user'])) ? append_sid(\"{$phpbb_root_path}memberlist.$phpEx\", array('mode' => 'searchuser', 'form' => 'select_user', 'field' => 'username', 'select_single' => 'true', 'form' => 'umil', 'field' => $content['find_user_field'])) : '',\n\t\t\t));\n\t\t}\n\t}", "public function print_section_info() {\n\t\tprint 'Enter your settings below:';\n\t}", "protected function getOptions()\t{\n\t\treturn array(\n\t\t\tarray('sql', null, InputOption::VALUE_NONE, 'Dumps the generated SQL statements to the screen (does not execute them).')\n\t\t);\n\t}", "public function getOptionDetailHtml()\n {\n\n if ($this->type == 'configurable' && isset($this->additional['attributes'])) {\n $labels = [];\n\n foreach ($this->additional['attributes'] as $attribute) {\n $labels[] = $attribute['attribute_name'] . ' : ' . $attribute['option_label'];\n }\n\n return implode(', ', $labels);\n }\n }", "public function print_section_info() {\n print 'Enter your settings below:';\n }" ]
[ "0.69786626", "0.6355366", "0.6248515", "0.61714035", "0.599991", "0.59784925", "0.59753335", "0.59640855", "0.5846925", "0.5845414", "0.581913", "0.5728887", "0.5726585", "0.5722226", "0.57208616", "0.5714827", "0.5679331", "0.5656409", "0.5651389", "0.5630754", "0.5609408", "0.56093377", "0.55997854", "0.55861616", "0.5577901", "0.55724704", "0.5555991", "0.55518174", "0.55513144", "0.55512583" ]
0.7066298
0
Draw a file header template selector.
public static function header($selected = 'git') { $html = array(); foreach(new DirectoryIterator(ECRPATH_EXTENSIONTEMPLATES.'/std/header') as $fileInfo) { if($fileInfo->isDot()) continue; $name = $fileInfo->getFilename(); $checked = ($name == $selected) ? ' checked="checked"' : ''; $html[] = '<input type="radio" name="headerType"' .'value="'.$name.'" id="headerType'.$name.'"'.$checked.'>' .'<label class="inline" for="headerType'.$name.'">'.$name.'</label>'; } return implode(NL, $html); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function formatTemplateFile(Control $control);", "function formatHeader(&$tpl, $a_obj_id,$a_option)\n\t{\n\t\tglobal $lng, $ilias;\n\n\t\t//$tpl = new ilTemplate(\"tpl.tree.html\", true, true, \"Services/UIComponent/Explorer\");\n\n\t\t$tpl->setCurrentBlock(\"icon\");\n\t\t$tpl->setVariable(\"ICON_IMAGE\" , ilUtil::getImagePath(\"icon_mep_s.png\"));\n\t\t$tpl->setVariable(\"TXT_ALT_IMG\",\n\t\t\tilUtil::shortenText($this->media_pool->getTitle(), $this->textwidth, true));\n\t\t$tpl->parseCurrentBlock();\n\n\t\t$tpl->setCurrentBlock(\"link\");\n\t\t$tpl->setVariable(\"TITLE\", ilUtil::shortenText($this->media_pool->getTitle(), $this->textwidth, true));\n\t\t$tpl->setVariable(\"LINK_TARGET\", $this->target);\n\t\t$tpl->setVariable(\"TARGET\", \" target=\\\"\".$this->frame_target.\"\\\"\");\n\t\t$tpl->parseCurrentBlock();\n\n\t\t$tpl->setCurrentBlock(\"element\");\n\t\t$tpl->parseCurrentBlock();\n\n\t\t//$this->output[] = $tpl->get();\n\t}", "function render($file_template){\n\n\n\n\n\t}", "public function renderHeader();", "public static function header_output()\r\n {\r\n $css = '<style type=\"text/css\">' . PHP_EOL;\r\n // Add below line for EVERY CSS selector.\r\n //$css .= self::generate_css( 'SELECTOR', 'STYLE', 'MOD_NAME', 'PREFIX', 'POSTFIX').PHP_EOL;\r\n $css .= '</style>' . PHP_EOL;\r\n }", "function Header(){\n /*se inserta una imagen (Nombre/ruta del archivo,posicion en x,posicion en y, algo,ancho,formato de archivo)\n posicion x & y son respecto al de las coordenadas de la página*/\n $this->Image(\"../../imagenes/logoelementos/Escudo-240x300.png\",20,10,24,30);\n /*se selecciona un tipo y tamaño de fuente (se ecuentran en la carpeta font)\n (Nombre,estilo,tamaño)*/\n $this->SetFont('Arial','B',10);\n $txt=\"Universidad Aut\\xF3noma de Coahuila\\n\\nSistema se Infotecas Centrales\\nAtenci\\xF3n al Usuario\\n\\nReporte mensual de informaci\\xF3n y paqueter\\xEDa \\n mes-a\\xF1o\";\n /*Se utiliza un objeto multicelda que nos permite hacer saltos de linea. \n Por cada linea crea una celda (ancho,alto,string,borde[0 ó 1],alineacion)\n el cero en el ancho indica que ocupe el ancho disponible, no aplica en la altura*/\n $this->MultiCell(0,4.5,$txt,1,'C');\n $this->Ln(10);\n }", "abstract public function addHTMLHeaderFile($file, $type = \"js\");", "public function header()\n {\n $this->SetY(4);\n\n $this->MultiCell(50, 0, '<img src=\"' . $this->logoPath . '\">', 0, 'L', 0, 0, '', '', true, null, true);\n $this->setFontSize(10);\n\n $convertedHeaderRight = Configure::read('appDb.FCS_INVOICE_HEADER_TEXT');\n\n // add additional line break(s) on top\n $lineCount = substr_count($convertedHeaderRight, '<br />');\n if ($lineCount < 6) {\n $convertedHeaderRight = str_repeat('<br />', 6 - $lineCount) . $convertedHeaderRight;\n }\n\n $this->headerRight = $convertedHeaderRight;\n\n $this->MultiCell(145 - $this->lMargin, 0, $this->headerRight, 0, 'R', 0, 1, '', '', true, null, true);\n\n $this->SetY(36);\n $this->drawLine();\n }", "public function GenHeader () {\n\t\t$this->oTpl->assignByRef('css', $this->aCss);\n\n\t\t$this->aJs = array_unique($this->aJs);\n\t\t$this->oTpl->assignByRef('js', $this->aJs);\n\n\t\t$this->sOutputHeader = $this->oTpl->fetch($this->aTplFile['header']);\n\t\treturn $this->sOutputHeader;\n\t}", "function Header(){ //Header de los PDF´s\n\t\t$this->SetFont('Times','I',12);\n\t\t$this->Cell(35,2,date('F d, o'),0,1,'C');\n\t}", "public static function header($obj){\n $view = $obj->template->view;\n \n if(file_exists('core/views/header/'.$view.'.php')):\n include_once('core/views/header/'.$view.'.php'); \n else:\n include_once('core/views/header/header.php');\n endif;\n }", "public function header(){\n $title = $this->title;\n $css_files = $this->css_files;\n include_once('templates/header.php');\n }", "protected function header() {\n\t\techo '<div class=\"wrap\">';\n\t\tscreen_icon();\n\t\techo '<h2>' . __( 'Import OPML', 'feast' ) . '</h2>';\n\t}", "function Header()\n\t{\n\t\t$logo=logo();\n\t\t$ancho_logo=ancho_logo();\n\t\t$direc_fiscal=direc_fiscal();\n\t\t$telef_emp=telef_emp();\n\t\t\n\t\t$this->Image(\"../imagenes/$logo\",10,5,$ancho_logo);\n\t\t$this->SetFont('Arial','',12);\n\t\t$this->SetXY(50,5);\n\t\t$this->MultiCell(190,5,nombre_empresa(),'0','L');\n\t//\t$this->MultiCell(190,5,\"CABLE, C.A.\",'0','L');\n\t\t$this->SetFont('Arial','',10);\n\t\t$this->SetX(50)\t;\n\t\t$this->MultiCell(190,5,strtoupper(_(tipo_serv())),'0','L');\n\t\t//$this->Ln();\n\t}", "function drawInvoiceHeaderBlock() {\n // remember starting coordinates \n $starting_y = $this->GetY();\n $starting_x = $this->GetX();\n \n $company_image = get_company_invoicing_logo_path();\n if (is_file($company_image)) {\n $this->Image($company_image,$this->GetX(),$this->GetY(), null, 20);\n } // if\n $max_y1 = $this->getImageRBY();\n \n $this->SetX($starting_x);\n $this->SetY($starting_y);\n \n // draws company details\n $rgb = $this->convertHTMLColorToDec($this->getHeaderFontColor());\n $this->SetTextColor($rgb['R'],$rgb['G'],$rgb['B']);\n \n $company_name = ConfigOptions::getValue('invoicing_company_name');\n if (!$company_name) {\n $company_name = $this->owner_company->getName();\n } // if\n \n $company_details = ConfigOptions::getValue('invoicing_company_details');\n if (!$company_details) {\n $company_details = '';\n if ($this->owner_company->getConfigValue('office_address')) {\n $company_details .= \"\\n\" . $this->owner_company->getConfigValue('office_address');\n } // if\n if ($this->owner_company->getConfigValue('office_phone')) {\n $company_details .= \"\\n\" . $this->owner_company->getConfigValue('office_phone');\n } // if\n if ($this->owner_company->getConfigValue('office_fax')) {\n $company_details .= \"\\n\" . $this->owner_company->getConfigValue('office_fax');\n } // if\n if ($this->owner_company->getConfigValue('office_homepage')) {\n $company_details .= \"\\n\" . $this->owner_company->getConfigValue('office_homepage');\n } // if\n } // if\n \n $this->SetFont('','B',$this->font_size);\n $this->Cell(0, $this->line_height, $company_name, 0 , 0, 'R');\n $this->Ln();\n \n $this->SetX($x);\n $this->SetFont('','',$this->font_size);\n $this->MultiCell(0, $this->line_height, $company_details, 0, 'R', false, 1, '', '', true, 0, false, 1.25);\n $max_y2 = $this->GetY();\n \n $this->SetX($starting_x);\n $this->SetY(max($max_y1, $max_y2));\n }", "function Header()\n\t{\n\t\t$logo=logo();\n\t\t$ancho_logo=ancho_logo();\n\t\t$direc_fiscal=direc_fiscal();\n\t\t$telef_emp=telef_emp();\n\t\t\n\t\t$this->Image(\"../imagenes/$logo\",15,10,$ancho_logo);\n\t\t$this->SetFont('Arial','',12);\n\t\t$this->SetXY(70,15)\t;\n\t\t$this->MultiCell(190,5,nombre_empresa(),'0','L');\n\t//\t$this->MultiCell(190,5,\"CABLE, C.A.\",'0','L');\n\t\t$this->SetFont('Arial','',10);\n\t\t$this->SetX(70)\t;\n\t\t$this->MultiCell(190,5,strtoupper(_(tipo_serv())),'0','L');\n\t\t//$this->Ln(8);\n\t}", "function Header()\n\t{\n\t\t$this->SetFont('Arial','',12);\n\t\t$this->MultiCell(190,5,nombre_empresa(),'0','C');\n\t\t$this->SetFont('Arial','',10);\n\t\t$this->MultiCell(190,5,tipo_serv(),'0','C');\n\t}", "public function Header() {\n\t\t$ormargins = $this->getOriginalMargins();\n\t\t$headerfont = $this->getHeaderFont();\n\t\t$headerdata = $this->getHeaderData();\n\n\t\t$contwidth = ($this->GetPageWidth() - $ormargins['left'] - $ormargins['right'])/3;\n// \t\t$ccell = $ormargins['left']+$contwidth;\n// \t\t$rcell = $ormargins['left']+2*$contwidth;\n\t\t$this->SetTextColor(0, 2, 106);\n\t\t// header title\n\t\t$this->SetFont($headerfont[0], 'B', $headerfont[2] + 10);\n\t\t//$this->SetX($ccell);\n\n\t\t$this->SetY(8);\n\t\t$this->SetX($contwidth-20);\n\t\n\t\t$this->SetFillColor(255,255,255);\n\t\n\t\t$sch=$this->HEAD;\n\t\t$head=\"<tr><td>$sch</td></tr>\";\t\n\t\t$this->writeHTML($head,false,true);\n\t\n\t\t$this->SetLineStyle(array(\"width\" => 0.85 / $this->getScaleFactor(), \"cap\" => \"butt\", \"join\" => \"miter\", \"dash\" => 0, \"color\" => array(186, 156, 0)));\n\t\t\n\t\t\n\t\tif ($this->getRTL()) {\n\t\t\t$this->SetX($ormargins['right']);\n\t\t} else {\n\t\t\t$this->SetX($ormargins['left']);\n\t\t}\n\t\t\t\t\n\t\t$this->Cell(0, 0, '', 'T', 0, 'C');\n\t}", "public function Header() {\n \n // Logo SEIP\n $image_file = $this->generateAsset('bundles/pequivenseip/logotipos-pqv/logo_menu_seip.png'); //K_PATH_IMAGES.'logo_example.jpg';\n $this->Image($image_file, 10, 10, 15, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);\n // Set font\n $this->SetFont('helvetica', 'B', 16);\n $this->SetTextColor(255,0,0);\n // Title\n $text='<div align=\"center\" style=\"font-size: 1em;color: red;\">'.$this->title.'<br>'.$this->period->getDescription().'</div>';\n $this->writeHTML($text);\n // Logo Pqv\n $image_file = $this->generateAsset('bundles/pequivenseip/logotipos-pqv/logo_pqv2.gif'); //K_PATH_IMAGES.'logo_example.jpg';\n $this->Image($image_file, 190, 10, 15, '', 'GIF', '', 'T', false, 300, '', false, false, 0, false, false, false);\n // Línea HR\n $lineRed = array('width' => 1.0, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 0));\n $this->Line(0, 27, 300, 27, $lineRed);\n }", "public function setTemplateHeader($type, $link , $fileName)\n {\n $this->templateHeader = [\n \"type\" => \"header\",\n \"parameters\" => [\n [\n \"type\" => $type,\n $type => [\n \"link\" => $link,\n // \"provider\" => [\n // \"name\" => $provider\n // ],\n \"filename\" => $fileName\n ]\n\n ]\n ]\n ];\n return $this;\n }", "function sgfe_admin_header_style() {\n?>\n<style type=\"text/css\">\n/* Shows the same border as on front end */\n#headimg {\n\tborder-bottom: 1px solid #000;\n\tborder-top: 4px solid #000;\n}\n/* If NO_HEADER_TEXT is false, you would style the text with these selectors:\n\t#headimg #name { }\n\t#headimg #desc { }\n*/\n</style>\n<?php\n}", "public function loadTemplateHead()\n\t{\n\t\t$title = $this->sideTitle;\n\t\tif (isset($this->templateHeader)) { include_once 'views/' . $this->templateHeader; }\n\t}", "function qed_render_header_resources() {\r\n\t\t$inline_pieces = qed_di( 'register' )->get_var( 'header_inline_css_text' );\r\n\t\tif ( $inline_pieces ) {\r\n\t\t\tforeach ( $inline_pieces as $inline_piece_info ) {\r\n\t\t\t\tif ( empty( $inline_piece_info['text'] ) ) {\r\n\t\t\t\t\tcontinue;\r\n\t\t\t\t}\r\n\t\t\t\tprintf( \"<style type=\\\"text/css\\\">%s</style>\\n\", $inline_piece_info['text'] );\r\n\t\t\t}\r\n\t\t\tqed_di( 'register' )->set_var( 'header_inline_css_text', array() );\r\n\t\t}\r\n\r\n\t\t$custom_css = qed_get_option( 'custom_css_text' );\r\n\t\tif ( $custom_css ) {\r\n\t\t\tprintf( \"<style type=\\\"text/css\\\">\\n%s\\n</style>\\n\", $custom_css );\r\n\t\t}\r\n\t}", "public function createheader()\n {\n //\n }", "function Header()\n\t{\n\t\t$this->SetFont('Arial','',12);\n\t\t$this->MultiCell(190,5,nombre_empresa(),'0','C');\n\t\t$this->SetFont('Arial','',10);\n\t\t$this->MultiCell(190,5,tipo_serv(),'0','C');\n\t\t\n\t\t$this->Titulo();\n\t\t$this->Fecha();\n\t\t$this->TituloCampos();\n\t}", "function Header()\n\t{\n\t\t$this->SetXY(10,10);\n\t\t$this->SetFont('Arial','',12);\n\t\t$this->MultiCell(190,5,nombre_empresa(),'0','C');\n\t\t$this->SetFont('Arial','',10);\n\t\t$this->MultiCell(190,5,tipo_serv(),'0','C');\n\t\t\n\t}", "function loadHeader($path='body_default')\r\n\t{\r\n\t\tinclude('templates/' . $this->mc->config['template'] . '/' . $path . '/header.html');\r\n\t\t$header_template = ob_get_contents();\r\n\t\t$this->template = preg_replace('#\\{HEADER\\}#si', $header_template, $this->template);\r\n\t\tob_clean();\r\n\t\t\r\n\t\t$this->headerLoaded = true;\r\n\t}", "public function displayHead()\n {\n $background = array(\n 'notepaper'\t=> 'url(' . plugins_url('public/images/notepaper.png', dirname(__FILE__)) . ') top left repeat',\n 'white'\t\t=> '#fff',\n 'custom' => esc_attr( $this->_options->getOption('fvch-background-custom') )\n );\n $background = $background[ $this->_options->getOption('fvch-background') ];\n\n $font = array(\n 'Andale Mono'\t=> \"'Andale Mono', Courier New', Courier, monospace\",\n 'Courier'\t\t=> \"Courier, 'Courier New', Courier, monospace\",\n 'Courier New'\t=> \"'Courier New', Courier, monospace\",\n 'Menlo'\t\t\t=> \"'Menlo', 'Courier New', Courier, monospace\",\n 'Monaco'\t\t=> \"'Monaco', 'Courier New', Courier, monospace\"\n );\n $font = $font[ $this->_options->getOption('fvch-font-family') ];\n\n $fontSize = esc_attr( $this->_options->getOption('fvch-font-size') ) . 'px';\n ?>\n <style type=\"text/css\">\n .fvch-codeblock {\n background: <?php echo $background; ?>;\n }\n .fvch-codeblock pre, .fvch-line-numbers pre {\n background: <?php echo $background; ?>;\n line-height: <?php echo 'notepaper' == $this->_options->getOption('fvch-background') ? '18px' : '1.3em'; ?>;\n font-family: <?php echo $font; ?>;\n font-size: <?php echo $fontSize; ?>;\n }\n .fvch-line-numbers pre {\n background: #e2e2e2;\n }\n </style>\n <meta name=\"generator\" content=\"FV Code Highlighter\" />\n <?php\n }", "function drawItemsTableHeader() {\n $rgb = $this->convertHTMLColorToDec($this->getBodyFontColor());\n $this->SetTextColor($rgb['R'],$rgb['G'],$rgb['B']);\n \n // remember starting coordinates \n $starting_y = $this->GetY();\n $starting_x = $this->GetX();\n \n $this->SetFont('','B',$this->font_size);\n if (is_foreachable($this->items_table_column_labels)) {\n $this->Cell($this->getItemsTableColumnWidth(0), $this->line_height+4, $this->items_table_column_labels[0],1,0,'R',true,false);\n \t$this->Cell($this->getItemsTableColumnWidth(1), $this->line_height+4, $this->items_table_column_labels[1],1,0,'L',true,false);\n \t$this->Cell($this->getItemsTableColumnWidth(2), $this->line_height+4, $this->items_table_column_labels[2],1,0,'R',true,false);\n \t$this->Cell($this->getItemsTableColumnWidth(3), $this->line_height+4, $this->items_table_column_labels[3],1,0,'R',true,false);\n \t$this->Cell($this->getItemsTableColumnWidth(4), $this->line_height+4, $this->items_table_column_labels[4],1,0,'R',true,false);\n \t$this->Cell($this->getItemsTableColumnWidth(5), $this->line_height+4, $this->items_table_column_labels[5],1,0,'R',true,false);\n \t$this->Ln();\n } // if\n }", "function twentyten_admin_header_style() {\r\n?>\r\n<style type=\"text/css\">\r\n/* Shows the same border as on front end */\r\n#headimg {\r\n\tborder-bottom: 1px solid #000;\r\n\tborder-top: 4px solid #000;\r\n}\r\n/* If NO_HEADER_TEXT is false, you would style the text with these selectors:\r\n\t#headimg #name { }\r\n\t#headimg #desc { }\r\n*/\r\n</style>\r\n<?php\r\n}" ]
[ "0.587317", "0.5444766", "0.5244762", "0.51913804", "0.5101445", "0.509673", "0.50760484", "0.5027967", "0.49951732", "0.4974046", "0.49494445", "0.49297807", "0.49220437", "0.49104312", "0.48963958", "0.48960295", "0.4888171", "0.48863825", "0.4873357", "0.48697752", "0.48697633", "0.48569965", "0.48448855", "0.48289964", "0.48226658", "0.48226392", "0.4818157", "0.48134792", "0.48041782", "0.47922686" ]
0.56434405
1
Init the slack client
protected function initClient() { //get slack config $slack_config = config('slack-output'); if (empty( $slack_config["endpoint"] )) { throw new Exception("The endpoint url is not set in the config"); } //init client $this->client = new Client($slack_config["endpoint"], [ "username" => $slack_config["username"], "icon" => $slack_config["icon"] ]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function __construct()\n {\n $this->id = config('services.slack.id');\n $this->client_id = config('services.slack.client_id');\n $this->client_secret = config('services.slack.client_secret');\n $this->signing_secret = config('services.slack.signing_secret');\n $this->bot_token = config('services.slack.bot_token');\n $this->access_token = config('services.slack.access_token');\n $this->webhook_url = config('services.slack.webhook_url');\n $this->scopes = config('services.slack.scopes');\n $this->redirect_uri = config('services.slack.redirect_uri');\n\n /*\n * The default API Client.\n */\n $this->api_client = new Client([\n 'base_uri' => 'https://slack.com/api/',\n ]);\n\n /*\n * The webhook API Client.\n */\n $this->webhook_client = new Client([\n 'base_uri' => $this->webhook_url,\n ]);\n\n /*\n * The emojis available on the workspace.\n */\n $this->emojis = $this->setupEmojis();\n }", "public function initializeChannelClient(){\n DriverManager::loadDriver(\\BotMan\\Drivers\\Facebook\\FacebookDriver::class);\n\n //botman config\n $config = [\n 'facebook' => [\n 'token' => $_ENV['FACEBOOK_TOKEN'],\n 'verification'=>$_ENV['FACEBOOK_VERIFY_TOKEN'],\n ]\n ];\n\n // Create botman instance\n static::$botman = BotManFactory::create($config);\n\n //for manual requests\n static::$httpClient = HttpClient::create();\n\n }", "public function __construct()\n {\n parent::__construct('slack');\n $this->logger = GeneralUtility::makeInstance('TYPO3\\CMS\\Core\\Log\\LogManager')->getLogger(__CLASS__);\n $this->slackNotificationTimerService = GeneralUtility::makeInstance(SlackNotificationTimerService::class);\n }", "public function initializeChannelClient();", "public function init()\n {\n $this->httpClient = new Client([\n 'base_uri' => self::API_BASE_URL . '/' . self::API_VERSION . '/',\n ]);\n }", "public function __construct()\n {\n\n /*$curl = new anlutro\\cURL\\cURL;\n\n $response = $curl->get('http://www.google.com');\n\n print_r($response);exit();\n\n // easily build an url with a query string\n $url = $curl->buildUrl('http://www.google.com', ['s' => 'curl']);\n $response = $curl->get($url);\n\n // the post, put and patch methods takes an array of POST data\n $response = $curl->post($url, ['api_key' => 'my_key', 'post' => 'data']);\n\n // add \"json\" to the start of the method to convert the data to a JSON string\n // and send the header \"Content-Type: application/json\"\n $response = $curl->jsonPost($url, ['post' => 'data']);\n\n// if you don't want any conversion to be done to the provided data, for example\n // if you want to post an XML string, add \"raw\" to the start of the method\n $response = $curl->rawPost($url, '<?xml version...');\n\n// raw request are also the easiest way to upload files\n $file = curl_file_create('/path/to/file');\n $response = $curl->rawPost($url, ['file' => $file]);\n\n// a response object is returned\n var_dump($response->statusCode); // response status code integer (for example, 200)\n var_dump($response->statusText); // full response status (for example, '200 OK')\n echo $response->body;\n var_dump($response->headers); // array of headers\n var_dump($response->info); // array of curl info*/\n\n\n $vimala = 'https://hooks.slack.com/services/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';\n $vicky = 'https://hooks.slack.com/services/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';\n\n $client = new Maknz\\Slack\\Client($vicky);\n// $client->send('Sorry Wrong window!');\n $users = array('vignesh.m', 'senthilkumar', 'lenin' ,'saravanan', 'vignesh', 'tamilselvan ', 'baskar'\n ,'vignesh.m', 'senthilkumar', 'lenin' ,'saravanan', 'vignesh', 'tamilselvan ', 'baskar'\n ,'vignesh.m', 'senthilkumar', 'lenin' ,'saravanan', 'vignesh', 'tamilselvan ', 'baskar'\n ,'vignesh.m', 'senthilkumar', 'lenin' ,'saravanan', 'vignesh', 'tamilselvan ', 'baskar');\n for($i=0; $i <= count($users) ; $i++) {\n\n $settings = [\n 'username' => $users[$i],\n 'channel' => '#parkfind',\n 'link_names' => true\n ];\n $client = new Maknz\\Slack\\Client($vicky, $settings);\n// $client->to('@priya')->send('Happy holidays Priya');\n// $client->to('@lenin')->send('Congratulation lenin');\n// $client->to('@vigneshk')->send('Congratulation Vignesh Kuthalingam');\n// $client->to('@vignesh.m')->send('Congratulation Vignesh Kuthalingam');\n }\n\n echo \"<pre>\";print_r($client);echo \"</pre>\";exit();\n\n $this->middleware('guest', ['except' => 'logout']);\n }", "protected function init()\n {\n $this->client = new Client(\n $this->getHttpClientConfig()\n );\n\n $this->continents = Continents::load();\n }", "protected function _init(){\r\n date_default_timezone_set('America/Chicago');\r\n $this->guzzle = new GuzzleHttp\\Client();\r\n $this->config->load('pChron', true);\r\n }", "protected function initClient()\n {\n $this->client = new Client(['base_uri' => getenv('SALESFORCE_INSTANCE_URL') . 'services/data/' . getenv('SALESFORCE_API_VERSION') . '/']);\n }", "private function initConnector() {\n $this->sid = \"ACf9c6f06c02da4a709f156ec489c445ce\";\n $this->token = \"fda028e2dd1b388300feb621eecceb72\";\n $this->client = (new Client($this->sid,$this->token));\n }", "public function __construct()\n {\n $this->client = new DiscordClient(['token' => config('services.discord.bot_key')]);\n }", "public function __construct()\n {\n $this->client = new Client(config('app.twilio')['account_sid'], config('app.twilio')['auth_token']);;\n }", "public function init()\n {\n $this->require_plugin('libkolab');\n\n $this->rc = rcube::get_instance();\n\n // proceed initialization in startup hook\n $this->add_hook('startup', array($this, 'startup'));\n }", "public function __construct()\n {\n $this->client = new Client([\n 'base_uri' => config('api-gateway.api_endpoint')\n ]);\n }", "public function init()\n {\n if (! $this->hasConfig() ) {\n $this->config = SendinBlue\\Client\\Configuration::getDefaultConfiguration();\n }\n \n if ($this->apikey ) {\n $this->config->setApiKey('api-key', $this->apikey);\n } \n \n if (! $this->config->getApiKey('api-key') ) {\n throw new InvalidConfigException('\"' . get_class($this) . '::apikey\" cannot be null.');\n }\n \n $this->client = new SendinBlue\\Client\\Api\\ContactsApi(null, $this->config);\n }", "public function __construct()\n {\n $this->client = new Client();\n }", "public function __construct() {\n $host = get_config('local_rocketchat', 'host');\n $port = !empty($port = get_config('local_rocketchat', 'port')) ? ':' . $port : '';\n $protocol = get_config('local_rocketchat', 'protocol') == 0 ? 'https' : 'http';\n\n $this->url = $protocol . '://' . $host . $port;\n $this->username = get_config('local_rocketchat', 'username');\n $this->password = get_config('local_rocketchat', 'password');\n $this->api = '';\n\n $this->authenticate($this->username, $this->password);\n }", "public function init()\n\t{\n\t\t//create new curl handle\n\t\t$this->ch = curl_init();\n\n\t\t//set options\n\t\tcurl_setopt_array($this->ch, $this->config);\n\t}", "public function init()\n {\n parent::init();\n require_once __DIR__ . '/raven/lib/Raven/Autoloader.php';\n \\Raven_Autoloader::register();\n $options = ['curl_method' => 'exec'];//, sync,async,exec\n $options['log_vars'] = ['_COOKIE', '_SESSION', '_SERVER'];\n $options['message_limit'] = 1024 * 4;\n $this->client = new \\Raven_Client($this->dsn, $options);\n }", "public function __construct()\n {\n parent::__construct();\n\n $configuration = Configuration::apiKey('', '');\n $this->cbClient = Client::create($configuration);\n }", "public function initGatewayClient()\n {\n\n }", "public function __construct()\n {\n parent::__construct();\n $this->attach(new SlackNotificationObserver());\n }", "public function initialize() {\t\tif ( !defined('IS_CLI') )\n\t\t\tthrow new KernalError('Fatal error - Please run MysteriousBot from the command line!');\n\t\t\n\t\t$config = Config::get_instance();\n\t\t$logger = Logger::get_instance();\n\t\t$this->bot = BotManager::get_instance();\n\t\t$SM = Socket::get_instance();\n\t\t\n\t\t// Did they edit the \"yes_i_edited_this\" key?\n\t\tif ( $config->get('yes_i_edited_this') === false )\n\t\t\tthrow new KernalError('Configuration error - Please change the key \"yes_i_edited_this\" to true! (Hint: Its at the bottom of the file)');\n\t\t\n\t\t// Now let's go on to setup the IRC Bot\n\t\t$setup = false;\n\t\tforeach ( $config->get('clients') AS $uuid => $settings ) {\n\t\t\tif ( $settings['enabled'] !== true ) continue;\n\t\t\t\n\t\t\ttry {\n\t\t\t\tif ( $this->boot($uuid, $settings) )\n\t\t\t\t\t$setup = true;\n\t\t\t} catch ( KernalError $e ) {\n\t\t\t\tLogger::get_instance()->warning(__FILE__, __LINE__, 'Failed to boot bot '.$uuid.' - '.$e->getMessage());\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Set up the XMPP Bot\n\t\tif ( $config->get('xmpp.enabled') === true ) {\n\t\t\tforeach ( array('domain', 'port', 'username', 'password') AS $setting ) {\n\t\t\t\tif ( $config->get('xmpp.'.$setting) === false || is_empty($config->get('xmpp.'.$setting)) ) {\n\t\t\t\t\tthrow new KernalError('Configuration Error - XMPP requires setting '.$setting.' to be set, and not empty');\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t$this->xmpp = XMPP::get_instance();\n\t\t\t\n\t\t\ttry {\n\t\t\t\t$this->xmpp->setup();\n\t\t\t\t$host = $config->get('xmpp.host');\n\t\t\t\t\n\t\t\t\t$socketid = $SM->add_client($host, $config->get('xmpp.port'), false, array($this->xmpp, 'handle_read'), 'xmppbot');\n\t\t\t\t$this->xmpp->set_sid($socketid);\n\t\t\t\t\n\t\t\t\t$setup = true;\n\t\t\t\t$logger->info(__FILE__, __LINE__, 'XMPP bot booted up.');\n\t\t\t} catch ( XMPPError $e ) {\n\t\t\t\tLogger::get_instance()->warning(__FILE__, __LINE__, '[XMPP] '.$e->getMessage());\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Did we spawn any clients?\n\t\tif ( $setup === false ) {\n\t\t\tthrow new KernalError('No clients are spawned. Check the config?');\n\t\t}\n\t\t\n\t\t// Now lets start the socket server, if they enabled it\n\t\tif ( $config->get('socketserver.enabled') === true ) {\n\t\t\t$required_settings = array(\n\t\t\t\t'socketserver.ip', 'socketserver.port'\n\t\t\t);\n\t\t\t\n\t\t\tforeach ( $required_settings AS $setting ) {\n\t\t\t\tif ( $config->get($setting) === false || is_empty($config->get($setting)) ) {\n\t\t\t\t\tthrow new KernalError('Configuration error - The setting \"'.$setting.'\" is not set/empty! Please double check the config file, edit fully, and read all comments and documentation!');\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tSocketServer::get_instance()->setup();\n\t\t\t\n\t\t\t$ip = $config->get('socketserver.ip');\n\t\t\t$port = $config->get('socketserver.port');\n\t\t\t$this->SOCKET_SID = $SM->add_listener($ip, $port, array(SocketServer::get_instance(), 'handle_read'), array(SocketServer::get_instance(), 'new_connection'), 'socketserver');\n\t\t\t$logger->info(__FILE__, __LINE__, 'SocketServer booted up. Listening for connections on '.$ip.':'.$port);\n\t\t}\n\t\t\n\t\t// Now lets start the HTTP server, if they enabled it\n\t\tif ( $config->get('httpserver.enabled') === true ) {\n\t\t\t$required_settings = array(\n\t\t\t\t'httpserver.ip', 'httpserver.port', 'httpserver.webroot'\n\t\t\t);\n\t\t\t\n\t\t\tforeach ( $required_settings AS $setting ) {\n\t\t\t\tif ( $config->get($setting) === false || is_empty($config->get($setting)) ) {\n\t\t\t\t\tthrow new KernalError('Configuration error - The setting \"'.$setting.'\" is not set/empty! Please double check the config file, edit fully, and read all comments and documentation!');\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tHTTPServer::get_instance()->setup();\n\t\t\t\n\t\t\t$ip = $config->get('httpserver.ip');\n\t\t\t$port = $config->get('httpserver.port');\n\t\t\t$this->HTTP_SID = $SM->add_listener($ip, $port, array(HTTPServer::get_instance(), 'handle_read'), array(HTTPServer::get_instance(), 'new_connection'), 'httpserver', array('noexplode'=>true));\n\t\t\t$logger->info(__FILE__, __LINE__, 'HTTPServer booted up. Listening for connections on '.$ip.':'.$port);\n\t\t}\n\t\t\n\t\t// Start the plugin manager\n\t\tPluginManager::get_instance()->do_autoload();\n\t\t$this->init_complete = true;\n\t\t\n\t\t// Setup the DB Connection\n\t\tif ( $config->get('database.enabled') === true ) {\n\t\t\trequire BASE_DIR.'database/db.php';\n\t\t\tDB::get_instance()->setup();\n\t\t\t\n\t\t\t$logger->info(__FILE__, __LINE__, 'Setup database server');\n\t\t}\n\t\t\n\t\t// Everything is ready!\n\t\treturn $this;\n\t}", "public function init()\n {\n global $kong_helpdesk_options;\n\n $this->options = $kong_helpdesk_options;\n }", "public function __construct()\n {\n $this->jenkinsClient = new Client([\n 'base_uri' => 'http://localhost:8080',\n 'auth' => ['exampleUser', 'examplePass'],\n ]);\n }", "public function __construct()\n {\n if (is_null(self::$_client)) {\n self::$_client = new Client();\n }\n\n $this->apiCall();\n }", "protected function get_api_instance() {\n\t\treturn new Thrive_Dash_Api_Slack();\n\t}", "protected function init(){\n $this->setAuth(new SugarOAuthController());\n $this->setEndpointProvider(new SugarEndpointProvider());\n $Auth = $this->getAuth();\n $Auth->setActionEndpoint('authenticate',$this->EndpointProvider->getEndpoint('oauth2Token'));\n $Auth->setActionEndpoint('refresh',$this->EndpointProvider->getEndpoint('oauth2Refresh'));\n $Auth->setActionEndpoint('logout',$this->EndpointProvider->getEndpoint('oauth2Logout'));\n $Auth->setActionEndpoint('sudo',$this->EndpointProvider->getEndpoint('oauth2Sudo'));\n $Auth->setStorageController(new SugarStaticStorage());\n }", "public function __construct()\n {\n $this->client = new Client([\n 'base_uri' => 'https://api.paystack.co/',\n 'headers' => [\n 'Content-Type' => 'application/json',\n 'Authorization' => 'Bearer ' . config('paystack.secret')\n ]\n ]);\n }", "public function __construct()\n {\n $this->api = '';\n $this->client = new Guzzle(self::URI);\n }" ]
[ "0.7744389", "0.68864447", "0.6848252", "0.6727669", "0.66909784", "0.6562653", "0.6480921", "0.6407665", "0.64017475", "0.63715595", "0.6319276", "0.6205509", "0.6075309", "0.5989472", "0.5977209", "0.59666157", "0.59595424", "0.5947569", "0.5936837", "0.59305346", "0.59274757", "0.5868742", "0.5864547", "0.5861479", "0.58532155", "0.58487403", "0.5837211", "0.5816438", "0.58162355", "0.5756587" ]
0.78960955
0
Store a newly created Videos in storage.
public function store(CreateVideosRequest $request) { $input = $request->all(); $videos = $this->videosRepository->create($input); Flash::success('Videos saved successfully.'); return redirect(route('videos.index')); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function store(VideosRequest $request) {\n $account = Account::findOrFail($this->params($request)['account_id']);\n Video::create($this->params($request));\n return redirect(action('Admin\\AccountsController@show',$account->slug))->with('success', 'Votre photo a été enregistré');\n }", "public function store(Request $request)\n {\n $path=$request->file('route')->store('videos','public');\n $user_editor= Auth::user()->id;\n Video::create([\n 'title'=>$request->title,\n 'cont'=>$request->cont,\n 'desc'=>$request->desc,\n 'route'=>$path,\n 'user'=>$user_editor\n ]);\n return redirect()->route('video.index');\n }", "public function store(Request $request)\n {\n $video = new Videos();\n $video->video_source = AssetsConstantRepository::VIDEO_SOURCE_YOUTUBE;\n $video->video_url= $request->get(\"video_url\");\n $video->user_id = Session::get(SiteSessions::USER_ID);\n $video->title = $request->get(\"title\");\n $video->descriptions = $request->get(\"descriptions\");\n $video->added_on = Carbon::now();\n $video->save();\n\n// $youtube = new Youtube(array('key'=> Dotenv::findEnvironmentVariable(\"GOOGLE_API_KEY_YOUTUBE\")));\n//\n// var_dump($request->get(\"video_url\"));\n// $video = $youtube->getVideoInfo($youtube->parseVIdFromURL($request->get(\"video_url\")));\n// dd($video);\n return redirect('profile/'.Session::get(SiteSessions::USER_ID).'/videos');\n }", "public function store(VideoRequest $request)\n {\n return Helper::success(\n (new \\App\\Service\\Video())\n ->store(\n $request->data(),\n $request->user('wechat')\n )\n );\n }", "public function store(Request $request)\n {\n $request->validate([\n 'video_title'=>'required',\n ]);\n \n $userId = Auth::user()->id;\n \n try \n {\n\n if($request->video->getClientOriginalName()){\n $ext = $request->video->getClientOriginalExtension();\n $file = date('YmdHis').rand(1,99999).'.'.$ext; \n $request->video->storeAs('public/video',$file);\n }\n else\n {\n $file='';\n }\n\n \n $rs = Video::create([\n 'video_title' => $request->input('video_title'), \n 'video' => $file\n ]);\n \n if($rs)\n {\n $message = array('flag'=>'alert-success', 'message'=>'New Video Added Successfully');\n return redirect()->route('auth.video.index')->with(['message'=>$message]);\n }\n \n $message = array('flag'=>'alert-danger', 'message'=>'Unable to add new job, Please try again');\n return redirect()->route('auth.video.index')->with(['message'=>$message]); \n \n } \n catch (Exception $e) \n {\n $message = array('flag'=>'alert-danger', 'message'=>$e->getMessage());\n return back()->with(['message'=>$message]);\n }\n }", "public function store(Request $request)\n {\n $request->validate([\n 'video' => 'required|max:500',\n 'title' => 'required|max:191',\n 'description' => 'required|max:500',\n 'type_id' => 'required',\n 'tag_id' => 'required'\n ]);\n\n $upload = new Upload();\n $upload->video = $request->input('video');\n $upload->title = $request->input('title');\n $upload->description = $request->input('description');\n $upload->user_id = Auth::id();\n $upload->type_id = $request->input('type_id');\n $upload->tag_id = $request->input('tag_id');\n $upload->save();\n\n // $request->session()->flash('success', 'Video added successfuly');\n\n return redirect()->route('admin.uploads.index');\n\n }", "public function store(Request $request)\n {\n\n if(!Auth::check()){\n return redirect('/');\n }\n \n $request->validate([\n \n 'course_ref_id' => 'required',\n 'video_play_time' => 'required',\n 'video_title' => 'required',\n ]);\n\n if ($request->hasFile('video_file')) {\n \n //get unique name for file\n $video_name = uniqid().time().'.'.$request->video_file->getClientOriginalName();\n //upload the file\n $path_demo_video = $request->video_file->storeAs('public/videos', $video_name);\n //save path and name in database\n \n }\n\n\n if ($request->hasFile('poster')) {\n \n //get unique name for file\n $poster = uniqid().time().'.'.$request->poster->getClientOriginalName();\n //upload the file\n $path_demo_video = $request->poster->storeAs('public/videos', $poster);\n //save path and name in database\n \n }\n \n \n \n $video = new Video();\n $video->username = Auth::user()->name;\n $video->course_ref_id = $request->course_ref_id;\n $video->video_play_time = $request->video_play_time;\n $video->video = '/storage/videos/'.$video_name;\n $video->title = $request->video_title;\n $video->poster = $request->poster;\n $video->save();\n return redirect('/video');\n\n \n }", "public function store(Request $request)\n {\n $userRole = Auth::user()->role;\n if ($userRole == 'admin') {\n $video = new Video();\n\n $query = DB::table('videos')->insert([\n 'VIDEO_TITLE' => $request->input('VIDEO_TITLE'),\n 'VIDEO_FILE' => $request->input('VIDEO_FILE'),\n 'VIDEO_DESCRIPTION' => $request->input('VIDEO_DESCRIPTION'),\n 'VIDEO_AUTHOR' => $request->input('VIDEO_AUTHOR'),\n 'VIDEO_ORIGIN' => $request->input('VIDEO_ORIGIN'),\n 'VIDEO_TYPE' => $request->input('VIDEO_TYPE'),\n 'created_at' => $request->created_at,\n 'updated_at' => $request->updated_at,\n ]);\n\n if ($query) {\n return back()->with('success', 'Video have been successfully created');\n } else {\n return back()->with('fail', 'Something went wrong');\n }\n\n $video->save();\n return redirect('videos/manageVideos');\n }\n return redirect('/');\n }", "public function store(VideoRequest $request)\n {\n // Update Code\n $data = $request->all();\n if ($request->hasFile('image_media')) {\n $media = saveSingleMedia($request, 'image');\n if (TRUE != $media['status']) {\n Flash::error($media['message']);\n return redirect(route('video.index'));\n }\n \n $data['media_id'] = $media['media_id'];\n }\n\n if ($request->hasFile('video')) {\n $media = saveVideo($request, 'video');\n if (TRUE != $media['status']) {\n Flash::error($media['message']);\n return redirect(route('video.index'));\n }\n $data['url'] = $media['file_path'];\n }\n Video::create($data);\n Flash::success('Successfully created video');\n return redirect(route('video.index'));\n }", "public function store(VideoStoreRequest $request)\n {\n $estado=1;\n $post = Video::create([\n 'titulo'=>$request['titulo'],\n 'link'=>$request['link'],\n 'estado'=>$estado\n ]);\n return redirect('Videos/Admin')\n ->with('info','Registro exitoso');\n }", "public function store(VideoRequest $request)\n {\n if ($request->hasFile('video')) {\n\n $settings = Setting::first();\n\n if ($settings->aws_s3_storage) {\n if (\n $settings->aws_access_key_id != null &&\n $settings->aws_secret_access_key != null &&\n $settings->aws_default_region != null &&\n $settings->aws_bucket != null\n ) {\n config(['filesystems.disks.s3.key' => $settings->aws_access_key_id]);\n config(['filesystems.disks.s3.secret' => $settings->aws_secret_access_key]);\n config(['filesystems.disks.s3.region' => $settings->aws_default_region]);\n config(['filesystems.disks.s3.bucket' => $settings->aws_bucket]);\n \n $filename = Storage::disk('s3')->put('', $request->video);\n $url = Storage::disk('s3')->url($filename);\n\n $data = [\n 'status' => 200,\n 'video_path' => $url,\n 'server' => config('app.name', 'AWS'),\n 'message' => 'successfully uploaded'\n ];\n } else {\n $data = [\n 'status' => 400,\n 'message' => 'could not be uploaded'\n ];\n }\n } else {\n $filename = Storage::disk('videos')->put('', $request->video);\n $data = [\n 'status' => 200,\n 'video_path' => $request->root() . '/api/video/' . $filename,\n 'server' => config('app.name', 'Own'),\n 'message' => 'successfully uploaded'\n ];\n }\n } else {\n $data = [\n 'status' => 400,\n 'message' => 'could not be uploaded'\n ];\n }\n\n return response()->json($data, $data['status']);\n }", "public function store(Request $request)\n {\n $video['nome'] = $request->video_nome;\n $video['link'] = $request->video_link;\n $video['categoria_id'] = $request->video_categoria;\n $video['descricao'] = $request->descricao;\n Video::insert($video);\n return redirect('/video'); \n }", "public function store(Request $request)\n {\n // $inputs = $request->only('videos');\n\n \n // $inputs['video'] = $request->image->store('videos');\n\n // Videos::create($inputs);\n\n // return response('success');\n $video = Videos::first();\n if($video){\n $filename = public_path().'/uploads/videos/'.$video->video; \n unlink($filename);\n echo \"string\";\n $id = $video->id;\n $deletedRows = Videos::where('id', $id)->delete();\n }\n\n\n $validatedData = $request->validate([\n 'video' => 'required',\n ]);\n $data=$request->all();\n $video=$data['video'];\n $input = time().'.'.$video->getClientOriginalExtension();\n $destinationPath = public_path().'\\uploads\\videos';\n dd($destinationPath);\n $success = $video->move($destinationPath, $input);\n // if($success){\n // $video = new Videos();\n // $video->video = $input;\n // $video->save();\n // return redirect()->route('videos');\n // }\n\n \n\n }", "public function store(StoreVideoRequest $request)\n {\n $product=new Video();\n \n $product->title=$request['title'];\n $product->link=$request['link'];\n\n \n // $image=$request->file(\"file_name\");\n // if($image){\n // $image_full_name=$image->getClientOriginalName();\n // $upload_path=\"files/\";\n // $image_url=$upload_path.$image_full_name;\n // $success=$image->move($upload_path,$image_full_name);\n // if($success){\n // $product->video=$image_url;\n // }\n // }\n $product->save();\n \n // $file=$request->file('file_name');\n // $destination_path=public_path().'/files';\n // $files=$file->getClientOriginalName();\n // $file_name=$files;\n // $success=$file->move($destination_path,$file_name);\n return redirect()->back();\n }", "public function store(Request $request)\n {\n $pearl = Pearl::findOrFail($request->pearl);\n $file = request()->file('video');\n $ext = $file->extension();\n $file->storeAs('/public/videos/' . $request->pearl, 'video.' . $ext);\n $pearl->video->adress = 'storage/videos/' . $request->pearl . '/video.' . $ext;\n $pearl->video->save();\n return back();\n }", "public function store(Request $request)\n {\n\n //If ($request->hasFile('video')) {\n $file = $request->file('video');\n $destinationPath = public_path() . '/uploads/video';\n $filename = $file->getClientOriginalName();\n $file->move($destinationPath, $filename);\n $poster = $request->file('poster');\n $des = public_path() . '/uploads/poster';\n $posterName = $poster->getClientOriginalName();\n $poster->move($des, $posterName);\n App\\video::create([\n 'filename' => $filename,\n 'postername' => $posterName,\n 'videoTitle' => request('videoTitle'),\n 'videoBody' => request('videoBody')\n ]);\n\n App\\news::create([\n 'videoName' => $filename,\n 'filename' => $posterName,\n 'newsCategory_id'=>request('newsCategory_id'),\n 'category' => request('category'),\n 'author' => request('author'),\n 'newsTitle' => request('videoTitle'),\n 'newsBody' => request('videoBody')\n ]);\n // }\n session()->flash('message', 'Video Upload Successful');\n return redirect('/videoList');\n }", "public function store(Request $request)\n {\n $videoName = time().'.'.$request->video->extension();\n $request->video->move(public_path('videos'), $videoName);\n\n NationalVideo::create([\n 'national_id' => $request->national_id,\n 'title' => $request->title,\n 'category' => $request->category,\n 'video' => $videoName,\n ]);\n\n return back();\n }", "public function store()\n\t{\n\t\t\n\t\t\n\t\t$validator = Validator::make($data = Input::all(), Video::$rules);\n\n\n\t\tif ($validator->fails())\n\t\t{\n\t\t\treturn Redirect::back()->withErrors($validator)->withInput();\n\t\t}\n\t\t$file = Input::file('image');\n\t\t \n\t\t$destinationPath = public_path().'/uploads/';\n\t\t$filename = str_random(12).'_'.Input::file('image')->getClientOriginalName();;\n\t\t//$filename = $file->getClientOriginalName();\n\t\t//$extension =$file->getClientOriginalExtension(); \n\t\t$upload_success = Input::file('image')->move($destinationPath, $filename);\n\t\t\n\t\t$data['image'] = $filename;\n\t\tVideo::create($data);\n\n\t\treturn Redirect::route('videos.index');\n\t}", "public function store(Request $request)\n {\n DB::beginTransaction(); \n try \n {\n $file = $request->file('file');\n $name = $file->getClientOriginalName();\n $extention = $file->getClientOriginalExtension();\n $name = uniqid().\"-\".$name;\n $file->move(public_path().'/uploads/videos/', $name );\n $url = url('/').'/uploads/videos/' . $name;\n\n $thumbnail = $request->file('thumbnail');\n $thumbnail_name = $thumbnail->getClientOriginalName();\n $thumbnail_name = uniqid().\"-\".$thumbnail_name;\n $thumbnail->move(public_path().'/uploads/videos/thumbnail/', $thumbnail_name );\n $thumbnail_url = url('/').'/uploads/videos/thumbnail/' . $thumbnail_name; \n\n $video = new Video;\n $video->user_id = Auth::user()->id;\n $video->title = $request->title;\n $video->description = $request->description;\n $video->thumbnail_file_name = $thumbnail_name;\n $video->thumbnail_link = $thumbnail_url;\n $video->file_name = $name;\n $video->link = $url;\n $video->save();\n\n } catch (Exception $e) {\n DB::rollback();\n return response()->json([ \"error\" => $e->getMessage(), 'line' => $e->getLine()], 500);\n }\n DB::commit();\n\n $request->session()->flash('success', 'New video successfully submitted!');\n\n return \"Success\";\n }", "public function store(VideoRequest $request)\n {\n $user = JWTAuth::parseToken()->authenticate();\n $playlist = User::find($user->id)->playlist;\n\n if (! $playlist) {\n return response()->json(['errors' => 'Playlist not found'], 404);\n }\n\n if ($request->input('type') === 'Youtube Video') {\n \n if (! Str::startsWith($request->input('url'), 'https://www.youtube.com/watch')) {\n $errors = ['url' => ['The url is not accepted']];\n return response()->json(compact('errors'), 400);\n }\n $video = new Video($request->except('url'));\n $video->url = Str::replaceFirst('watch?v=', 'embed/', $request->input('url'));\n $playlist->videos()->save($video);\n \n } else if ($request->input('type') === 'Uploaded Video') {\n \n $url = Storage::disk('public')->put('uploads/'.$playlist->id, $request->file('file'));\n $video = new Video($request->except('url'));\n $video->url = storage_path('app') . '/public/' . $url;\n $playlist->videos()->save($video);\n \n }\n\n if (! $video) {\n return response()->json(['error' => 'There was an error storing the video'], 500);\n }\n\n return response()->json(compact('video'), 201)->header('Location', \"http://localhost:8000/api/videos/$video->id\");\n }", "public function store(Request $request)\n {\n $model = new Video();\n if($model->create($request->all())){\n flash('视频添加成功!!!')->overlay();\n\n return redirect(\"/admin/video\");\n };\n }", "public function store(Request $request)\n {\n $video = $request->except('_token');\n VideoWork::create($video);\n }", "function store_video($data){\n\n $this->db->insert('video', $data);\n \n }", "public function store(Request $request)\n {\n\n //datos del usuario\n $iduser = Auth::id();\n //datos de los playlist para identificar el usuario dueño de la misma.\n $results = DB::select('select * from playlis where id_user = :id', ['id' => $iduser]);\n //dd($results);\n $indice = $results[0]->id;\n $videoplaylist = new Videoplaylist($request->all());\n //verifica que la url este vacia con esto damos por hecho que se carga un video de la pc\n $file = $request->file('video');\n //valida que contengan todos los datos solicitados\n $validator = Validator::make($request->all(), [\n 'video' => 'required',\n 'name' => 'required',\n ]);\n if ($validator->fails()) {\n return redirect('admin/videoplaylist/create')\n ->withErrors($validator)\n ->withInput();\n }\n if ($request->url== null) {\n $path = public_path() . '\\videos\\Playlist';\n $extension = $request->file('video')->getClientOriginalExtension();\n $name = $request->name . '.' . $extension;\n $url = ($path.'\\\\'.$name);\n $videoplaylist->nombre_video=$request->name;\n $videoplaylist->url_video=$url;\n $videoplaylist->id_playlis=$indice;\n $videoplaylist->save();\n $file->move($path.'\\\\'.$name);\n }else{\n //de lo contrario se estaria guardando la url del video de youtube\n $validator = Validator::make($request->all(), [\n 'url' => 'required',\n 'name' => 'required',\n ]);\n if ($validator->fails()) {\n return redirect('admin/videoplaylist/create')\n ->withErrors($validator)\n ->withInput();\n }\n $videoplaylist->nombre_video=$request->name;\n $videoplaylist->url_video= $request->url;\n $videoplaylist->id_playlis=$indice;\n $videoplaylist->save();\n }\n }", "public function store(UploadVideoAjaxForm $request, Course $course)\n {\n $video_name = $request->upload($course->slug);\n return $course->videos()->create(\n [\n 'title' => $request->title,\n 'description' => $request->description,\n 'slug' => str_slug($request->title),\n 'url' => $video_name,\n ]\n );\n // return redirect($video_name->path());\n }", "public function store(VideoUploadRequest $request)\n {\n if($this->video->uploadVideo($request->except('_token'))){\n Alert::success('Success','uploading video!');\n return redirect()->route('videos.index');\n }else{\n Alert::error('Error uploading video','Oops');\n return redirect()->back();\n }\n }", "public function store(Request $request)\n {\n // return $request->all();\n $request->validate([\n 'title' => 'required',\n 'video' => 'required'\n ] , [\n 'title.required' => 'Ingresa el título del video',\n 'video.required' => 'Ingresa el archivo del video'\n ]);\n\n $name_file = md5(uniqid().$request->video->getClientOriginalName()).'.'.$request->video->getClientOriginalExtension();\n\n return $name_file;\n\n return $request->video->move(public_path().'/files/videos' , $name_file);\n return $dd;\n $v = new VideoQuestion;\n $v->title = $request->title;\n $v->status = 1;\n $v->file = $name_file;\n $v->save();\n\n\n return redirect('/admin/videos-question')->with('msj' , 'Video agregado exitosamente');\n }", "public function store(Request $req)\n {\n $req->validate([\n //'file' => 'required|mimes:csv,txt,xlx,xls,pdf|max:2048'\n 'name' => 'required',\n 'title' => 'required',\n 'description' => 'required',\n 'category' => 'required',\n 'video' => 'required | mimes:mp4,mov,ogg',\n ]);\n\n $videoModel = new VideoContent();\n\n if ($req->file()) {\n // $videoName = time() . '_' . $req->video->getClientOriginalName();\n // $videoPath = $req->file('video')\n // ->storeAs('uploads', $videoName, 'public');\n\n $video = $req->file('video');\n $videoName = time() . '_' . $video->getClientOriginalName();\n $videoPath = public_path() . '/uploads/videos/';\n $video->move($videoPath, $videoName);\n $videoModel->video_path = '/uploads/videos/' . $videoName;\n\n $videoModel->videoname = $videoName;\n\n $videoModel->name = $req->name;\n $videoModel->u_id = auth()->id();\n $videoModel->title = $req->title;\n $videoModel->description = $req->description;\n $videoModel->category_id = $req->category;\n $videoModel->save();\n\n return back()\n ->with('success', 'video has been uploaded.')\n ->with('video', $videoName);\n }\n }", "public function store(Request $request)\n {\n $this->validate($request,[\n \"titel\"=>\"required\",\n \"conten\"=>\"required\",\n \"photo\" =>\"required|max:20000\",\n \"video\" =>\"required\",\n \"prix\" => \"required\",\n ]);\n\n Pack::create( [\n\n \"titel\"=>$request->titel,\n \"content\"=>$request->conten,\n \"user_id\"=>auth()->id(),\n \"prix\"=>$request->prix,\n \"photo\" =>'uploads/posts/'.$request->photo,\n \"slug\"=>str_slug($request->titel)\n ]);\n $myField = Pack::where('titel', $request->titel)->first();\n $vid_array =$request->video;\n $array_len =count($vid_array);\n for($i=0; $i<$array_len; $i++)\n {\n //$destination_path = public_path('/uploads');\n //$vid_array[$i]->move($destination_path,$vid_array[$i]);\n\n VidPack::create([\n \"pack_id\" => $myField->id,\n \"name\" => substr($vid_array[$i], 0, strpos($vid_array[$i], \".mp4\")),\n \"video\" => 'uploads/'.$vid_array[$i]\n ]);\n }\n Session::flash('creatmatiere');\n return redirect()->back();\n }", "public function store(Request $request)\n {\n $this->validate($request, [\n 'style_id' => 'required|integer',\n 'district_id' => 'required|integer',\n 'title' => 'required|string|max:30',\n 'description' => 'string|max:200',\n ]);\n\n $video = new Video;\n\n $video->style_id = $request->style_id;\n $video->district_id = $request->district_id;\n $video->title = $request->title;\n $video->description = $request->description;\n $video->user_id = Auth::user()->id;\n\n $video->video_filename = time() . '.' . $request->extension;\n\n $current_video_count = Video::getVideosCount(Auth::user()->id);\n\n if($this->canSave($request->user(), $current_video_count)){\n $card->save();\n \n return $card->toJson();\n }\n return redirect('/plans');\n }" ]
[ "0.70933473", "0.70930785", "0.68016607", "0.67790496", "0.67693305", "0.6765582", "0.6738742", "0.6668513", "0.663928", "0.6611326", "0.6601131", "0.6598276", "0.65768784", "0.65581304", "0.6524176", "0.652088", "0.650592", "0.64729613", "0.64216304", "0.63896513", "0.6381401", "0.63590384", "0.6355957", "0.63405275", "0.63384145", "0.6332664", "0.6316283", "0.6243033", "0.62130517", "0.6199304" ]
0.71651226
0
Prepare products for response
private function prepareProductsForResponse($products) { if ( ! empty($products) && is_array($products)) { foreach ($products as $id => $product) { //Images if ( ! empty($product['images']) && is_array($image = json_decode($product['images'], TRUE))) { uasort($image, function ($a, $b) { if ($a == $b) { return 0; } return ($a < $b) ? -1 : 1; }); reset($image); $products[$id]['image'] = key($image); unset($products[$id]['images']); if ( ! is_float($product['price'])) { $products[$id]['price'] = intval($product['price']); } if ( ! is_float($product['discount_price'])) { $products[$id]['discount_price'] = intval($product['discount_price']); } } if ( ! empty($product['discount_price'])) { //Calculate is discount active $now = time(); if ($product['discount_start'] == '0000.00.00 00:00:00' || strtotime($product['discount_start']) <= $now) { $allow_start = TRUE; } else { $allow_start = FALSE; } if ($product['discount_end'] == '0000.00.00 00:00:00' || strtotime($product['discount_end']) <= $now) { $allow_end = TRUE; } else { $allow_end = FALSE; } if ($allow_start === TRUE && $allow_end === TRUE) { $products[$id]['active_discount'] = TRUE; } if ( ! empty($products[$id]['active_discount'])) { $products[$id]['discount'] = intval( (floatval($products[$id]['price']) - floatval($products[$id]['discount_price'])) / floatval($products[$id]['price']) * 100 ); } } //Sizes if ( ! empty ($products[$id]['sizes']) && is_array(($products[$id]['sizes'] = json_decode($products[$id]['sizes'], TRUE)))) { foreach ($products[$id]['sizes'] as $key => $size) { if (empty($size['name']) || empty($size['quantity'])) { if (isset($products[$id]['sizes'][$key])) { unset($products[$id]['sizes'][$key]); } } } } if ( ! empty($products[$id]['sizes']) && is_array($products[$id]['sizes'])) { $sizes = []; foreach ($products[$id]['sizes'] as $key => $size) { if ( ! empty($size['quantity'])) { $sizes[] = $key; } } if ( ! empty($sizes) && is_array($sizes)) { $products[$id]['available_sizes'] = implode(', ', $sizes); } } } } return $products; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function prepareCategoryProducts()\n {\n $categoryProducts = [];\n $defaultPosition = 0;\n\n if ($this->fixture->hasData('category_products')) {\n $products = $this->fixture->getDataFieldConfig('category_products')['source']->getProducts();\n foreach ($products as $product) {\n $categoryProducts[$product->getId()] = $defaultPosition;\n }\n }\n\n $this->fields['category_products'] = json_encode($categoryProducts);\n unset($this->fields['general']['category_products']);\n }", "protected function prepareAttributes()\n {\n\n // load the ID of the product that has been created recently\n $lastEntityId = $this->getLastEntityId();\n\n // load the website ID to relate the product with\n $websiteId = $this->getStoreWebsiteIdByCode($this->getCode());\n\n // return the prepared product\n return $this->initializeEntity(\n array(\n MemberNames::PRODUCT_ID => $lastEntityId,\n MemberNames::WEBSITE_ID => $websiteId\n )\n );\n }", "public function getProductsToPrepare() {\n\n $products = $this->setProductsToPrepare(Inventory::getProductsToPrepare());\n\n return response()->json($products);\n }", "private function prepareProduct(Product $product){\n $product->load('images');\n $data= $product->toArray();\n //get the extra images\n $data['extra_imagesResolution']=[];\n $data['imagesResolution']=[];\n if ($data['extra_images']){\n $arr=explode(',',$data['extra_images']);\n foreach ($arr as $item){\n list($name,$ext)=explode('.',$item);\n $data['extra_imagesResolution'][]=[\n 'larger'=> asset('storage/extra_images/'.$item),\n '400'=> asset('storage/extra_images/'.$name . '@' . 400 .'.'.$ext),\n ];\n }\n }\n\n/* //get the cover images\n list($name,$ext)= explode('.',$data['cover']);\n\n $data['cover']= [\n 'larger'=> asset(\"storage/product/\" .$data['cover']),\n '400'=>asset(\"storage/product/\" . $name . '@' . 400 .'.' .$ext),\n '550'=>asset(\"storage/product/\" . $name . '@' . 550 .'.' .$ext),\n '750'=>asset(\"storage/product/\" . $name . '@' . 750 .'.' .$ext),\n '1024'=>asset(\"storage/product/\" . $name . '@' . 1024 .'.' .$ext),\n ];*/\n\n\n //get the product images\n\n\n\n $data['images']= $product->images()->where('type',1)->get()->toArray();\n $data['imagesForPhone']=$product->images()->where('type',2)->get()->toArray();\n\n /* foreach ($product->images->toArray() as $item){\n list($name,$ext)= explode('.',$item['image_url']);\n $data['imagesResolution'][]=[\n 'larger'=>asset('storage/product/'.$item['image_url']),\n '400'=> asset('storage/product/'.$name . '@' . 400 .'.' .$ext),\n '550'=> asset('storage/product/'.$name . '@' . 550 .'.' .$ext),\n '750'=> asset('storage/product/'.$name . '@' . 750 .'.' .$ext),\n '1024'=> asset('storage/product/'.$name . '@' . 1024 .'.'.$ext),\n ];\n }\n\n\n $data['images']=$product->images->toArray();*/\n\n return $data;\n }", "public function getPrepareData()\n {\n if (!empty($this->products)) {\n foreach ($this->products as $product) {\n $this->amount += $product->quantity;\n $this->price += $product->price * $product->quantity;\n }\n\n if ($this->amount >= 3) {\n $this->discount += 10;\n }\n\n if (!empty($this->bonus)) {\n $this->discount += $this->bonus->discount;\n }\n\n if ($this->discount) {\n $this->price = $this->price * (1 - $this->discount / 100);\n }\n }\n }", "protected function prepareCrossSellingResponseCollection()\n {\n if(is_null($this->crossSellingResponseCollection))\n {\n $productIds = [];\n /** @var Block $block */\n foreach($this->apiCallService->getApiResponse()->getBlocks() as $block)\n {\n $hitIds = $block->getModel()->getHitIds();\n $productIds = array_merge($productIds, $hitIds);\n $type = $block->getType(); if(is_array($type)) { $type = $type[0];}\n $this->productIdsByType->offsetSet($type, $hitIds);\n }\n if(count($productIds))\n {\n $this->crossSellingResponseCollection = $this->productRepository->search(\n new Criteria($productIds),\n $this->getSalesChannelContext()\n );\n }\n }\n\n return $this->crossSellingResponseCollection;\n }", "private function _prepareData() {\n $itemIds = array();\n\n // Check if feature is enabled\n if (!Mage::getStoreConfig(Ntoklo_Recommendations_Helper_Data::CONFIG_XPATH_IS_ENABLED)) {\n return $this;\n }\n\n $recommendedIds = Mage::getSingleton('ntoklo_recommendations/service')\n ->setDebug($this->getData('debug'))\n ->getRecommendedIds($this);\n if (!count($recommendedIds)) {\n return $this;\n }\n\n // Prepare product collection\n $limit = $this->getData('max_products');\n /** @var $collection Mage_Catalog_Model_Resource_Product_Collection */\n $collection = Mage::getResourceModel('catalog/product_collection');\n $collection->addAttributeToSelect('*')\n ->addUrlRewrite()\n ->addAttributeToFilter('entity_id' ,array('in' => $recommendedIds))\n ->addStoreFilter()\n ->addAttributeToFilter('status', Mage_Catalog_Model_Product_Status::STATUS_ENABLED)\n ->setPageSize($limit ? $limit : 6);\n\n //Mage::getModel('cataloginventory/stock')->addInStockFilterToCollection($collection);\n\n // Load parent product if possible if product is not visible individually\n /** @var $item Mage_Catalog_Model_Product */\n foreach ($collection->getItems() as $item) {\n if (!$item->isSaleable()) {\n continue;\n }\n if ($item->getVisibility() != Mage_Catalog_Model_Product_Visibility::VISIBILITY_NOT_VISIBLE) {\n if (!in_array($item->getId(), $itemIds)) {\n $itemIds[] = $item->getId();\n $this->_items[] = $item;\n }\n } else {\n $parentIds = Mage::getResourceSingleton('catalog/product_type_configurable')->getParentIdsByChild($item->getId());\n\n if (!isset($parentIds[0])) {\n $parentIds = Mage::getSingleton('bundle/product_type')->getParentIdsByChild($item->getId());\n }\n if (!isset($parentIds[0])) {\n $parentIds = Mage::getResourceSingleton('catalog/product_type_grouped')->getParentIdsByChild($item->getId());\n }\n\n if (isset($parentIds[0])) {\n $item = Mage::getModel('catalog/product')->load($parentIds[0]);\n if (!in_array($item->getId(), $itemIds)) {\n $itemIds[] = $item->getId();\n $this->_items[] = $item;\n }\n }\n }\n }\n\n return $this;\n }", "protected function _resetEverything()\n {\n $data = array(\n 'sku' => $this->_sku,\n 'name' => $this->_name,\n 'desc' => $this->_desc,\n 'attributeSetId' => $this->_attributeSetId,\n 'attributeSet' => $this->_attributeSet,\n 'type' => $this->_type,\n 'weight' => 0,\n 'status' => $this->_status,\n 'visibility' => $this->_visibility,\n 'price' => 0,\n 'shortDesc' => $this->_shortDesc,\n 'stockData' => array(\n 'is_in_stock' => $this->_inStock,\n 'qty' => $this->_qty,\n ),\n 'taxClassId' => $this->_taxClassId,\n 'categoryIds' => $this->_categoryIds,\n 'websiteIds' => $this->_websiteIds,\n 'categories' => $this->_categories,\n 'websites' => $this->_websites,\n 'websiteCodes' => $this->_websiteCodes,\n 'image' => $this->_image,\n 'imageSmall' => $this->_imageSmall,\n 'imageThumb' => $this->_imageThumb,\n );\n\n // Make sure this is a valid array\n // Currently only used by random generator\n $this->_imageExtra = array();\n\n $this->_productData = $data;\n }", "public function getAllProducts($request, $response)\n {\n if ($this->auth->check()) {\n\n $user_id = $_SESSION['user'];\n $response_products=[];\n $products = $this->product->getProducts($user_id);\n $category_name=\"assign\";\n $tag_name=\"assign\";\n $product_id=\"\";\n\n foreach($products as $product) {\n $product_id=$product->product_id;\n if(!$product) {\n continue;\n } \n\n $category=$this->category->getCategory($product->category_id);\n if($category) {\n $category_name=$category->category_name;\n }\n\n $tag=$this->tag->getTag($product->tag_id);\n\n if($tag) {\n $tag_name=$tag->tag_name;\n }\n \n $product_tmp=new ProductData(\n $product_id,\n $product->product_name,\n $category_name,\n $tag_name,\n $product->imageurl,\n $product->price_sell,\n $product->price_cost\n );\n $response_products[]=$product_tmp;\n }\n $response->getBody()->write(json_encode($response_products));\n return $response;\n\n } else {\n\n $response->getBody()->write(json_encode(array(\"permissionDenied\" => true)));\n return $response;\n }\n\n }", "protected function getProducts()\r\n {\r\n\t\t$category = new Category((int)Configuration::get('FIELD_ONECATEPSL_CAT'), (int)Context::getContext()->language->id);\r\n\t\t$nb = (int)Configuration::get('FIELD_ONECATEPSL_NBR');\r\n\t\t$oneCate_Products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 8), 'position');\r\n $assembler = new ProductAssembler($this->context);\r\n $presenterFactory = new ProductPresenterFactory($this->context);\r\n $presentationSettings = $presenterFactory->getPresentationSettings();\r\n $presenter = new ProductListingPresenter(\r\n new ImageRetriever(\r\n $this->context->link\r\n ),\r\n $this->context->link,\r\n new PriceFormatter(),\r\n new ProductColorsRetriever(),\r\n $this->context->getTranslator()\r\n );\r\n\r\n $products_for_template = [];\r\n\t\tif(is_array($oneCate_Products)){\r\n foreach ($oneCate_Products as $rawProduct) {\r\n $products_for_template[] = $presenter->present(\r\n $presentationSettings,\r\n $assembler->assembleProduct($rawProduct),\r\n $this->context->language\r\n );\r\n }\r\n\t\t return $products_for_template;\r\n\t\t}\r\n return $oneCate_Products;\r\n }", "public function onGetAllProducts()\n {\n // handle\n $table = new Product();\n $products = $table->getAll();\n //prepare layout\n $theme = Theme::create($this->controller['theme']);\n $layout = $theme->render('partials/sections/products.html', array('products' => $products));\n //response\n $this->response->setContent($layout);\n $this->response->setStatusCode(200);\n return $this->response;\n }", "private function init_products_info()\n {\n $products = false;\n foreach ($this->categories as $section_name => $section) :\n foreach ($section as $category) :\n foreach ($category['sub_cat'] as $subcategory) :\n\n $subcat_name = $subcategory['cat_name'];\n $subcat_object = $this->get_html($subcategory['cat_url']);\n $list_of_products = $subcat_object->find('div[id=divProductList] div[class=prod-list-compare]');\n\n foreach ($list_of_products as $current_product) :\n $pickable = explode(' ', $current_product->next_sibling()->class);\n $pickable = array_search('hidden', $pickable);\n if (!$pickable) :\n $title = $current_product->parent()->find('span[class=h4]', 0)->innertext;\n $url = $this->site_info['main_url'].$current_product->parent()->find('a', 0)->href;\n $products[] = array(\n 'item_status' => 1,\n 'item_type_id' => self::PRODUCT_TYPE_ID,\n 'store_name' => $this->site_info['store_name'],\n 'item_code' => md5($url),\n 'item_title' => addslashes($title),\n 'item_buy_url' => $url,\n 'item_url_slug' => Common::createSlug($title, $url),\n 'category' => $this->search_cat(trim($subcat_name)),\n 'external_category' => 0,\n 'manufacturer_name' => ''\n );\n endif;\n endforeach;\n endforeach;\n endforeach;\n endforeach;\n\n $products = ($products) ? array_unique($products, SORT_REGULAR) : $products;\n foreach ($products as $key => $value){\n if ($value['category'] == '') {\n unset($products[$key]);\n continue;\n }\n }\n return $products;\n }", "private function syncShopifyProducts() {\n $shopifyProducts = $this->performCurl(\"GET\", $this->baseShopifyURL, \"admin/products.json\");\n $dataResponse = array (\"products\"=>array());\n foreach ($shopifyProducts->products as $product) {\n foreach($product->variants as $variant) {\n $result = $this->db->query(\"SELECT * FROM products WHERE product_sku = '\".$variant->sku.\"' LIMIT 1\");\n\n if (mysql_num_rows($result) == 0) {\n // NOTE: there is no scrubbing of the data being input here.\n $this->db->query(\"INSERT INTO products (product_name, product_sku, product_quantity, product_price, product_size)\n VALUES('\".$product->title.\"','\".$variant->sku.\"','\".$variant->inventory_quantity.\"','\".$variant->price.\"','\".$variant->title.\"')\");\n $dataResponse[\"products\"][] = array(\n \"sku\"=>$variant->sku,\n \"size\"=>$variant->title,\n \"price\"=>$variant->price,\n \"name\"=>$product->title,\n \"quantity\"=>$variant->inventory_quantity\n );\n }\n }\n\n }\n\n return $dataResponse;\n }", "private function _prepareIdsAndAttributesAndManufacturersForProducts(array $products)\n {\n // Prepare products and get products ids\n $ids = array();\n foreach ($products as $key => $item) {\n $ids[] = $item['product_id'];\n }\n\n // Get attributes\n $attributes = $this->model_module_product_fast->getProductsAttributesByProductsIds($ids);\n if ($attributes) {\n foreach ($attributes as $key => $item) {\n $attributes[$item['product_id']][$item['attribute_id']][$item['attribute_value_id']] = $item;\n unset($attributes[$key]);\n }\n }\n\n // Get manufacturers\n $manufacturers = $this->model_module_product_fast->getManufacturersByProductsIds($ids);\n \n if ($manufacturers) {\n foreach ($manufacturers as $key => $item) {\n $manufacturers[$item['product_id']] = $item;\n unset($manufacturers[$key]);\n }\n }\n\n return [\n 'ids' => $ids,\n 'attributes' => $attributes,\n 'manufacturers' => $manufacturers\n ];\n }", "private function prepareItemsPayload()\n {\n /**\n * @var $item Mage_Sales_Model_Order_Item\n */\n foreach ($this->order->getAllItems() as $item) {\n if ($item->getProductType() === Mulberry_Warranty_Model_Product_Type_Warranty::TYPE_ID) {\n $this->orderHasWarrantyProducts = true;\n $this->prepareItemPayload($item);\n }\n }\n }", "function addProducts()\n{\n echo '==================================== add Products =================================' .PHP_EOL;\n global $ProductService;\n\n $param = [\n ## ============================ *Required Parameters =============================\n 'data' => [\n [\n 'name' => 'Put product name',\n 'canComment' => 'true/false',\n 'canLike' => 'true/false',\n 'enable' => 'true/false',\n 'availableCount' => 'Put available count',\n 'price' => 'Put price',\n 'discount' => 'Put discount',\n ## ============ Optional Parameters ============\n# 'guildCode' => 'Put guild code',\n# 'parentProductId' => 'Put parent product id',\n# 'description' => 'Put product description',\n# 'uniqueId' => 'Put unique id',\n# 'metaData' => 'Put json string like : {\"test\":\"true\"}',\n# 'businessId' => 'Put business id',\n# 'unlimited' => 'true/false', # default : false\n# 'allowUserInvoice' => 'true/false', # default : false\n# 'allowUserPrice' => 'true/false', # default : false\n# 'currencyCode' => 'Put currency code',\n# 'attTemplateCode' => 'Put attribute template code',\n# 'attributes' =>\n# [\n# [\n# 'attCode' => 'Put attribute code',\n# 'attValue' => 'Put attribute value',\n# 'attGroup' => 'true/false',\n# ],\n# [\n# 'attCode' => 'Put attribute code',\n# 'attValue' => 'Put attribute value',\n# 'attGroup' => 'true/false',\n# ]\n# ],\n# 'groupId' => 'Put group id',\n# 'lat' => 'Put Latitude',\n# 'lng' => 'Put Longitude',\n# 'tags' => 'Put tags separated with comma',\n# 'content' => 'Put content',\n# 'previewImage' => 'Put image address',\n# 'tagTrees' => 'Put tag trees name separated with comma',\n# 'tagTreeCategoryName' => 'Put tag tree category name',\n# 'preferredTaxRate' => 'Put tax rate default is 0.09',\n# 'quantityPrecision' => 'Put decimal digits of quantity',\n\n ], [\n # اطلاعات محصول بعدی ...\n ],\n ## =========================== Optional Parameters ===============================\n# 'apiToken' => 'Put ApiToken',\n# 'scVoucherHash' => ['Put Service Call Voucher Hashes'],\n# 'scApiKey' => 'Put service call Api Key',\n\n ]\n ];\n try {\n $result = $ProductService->addProducts($param);\n print_r($result);\n }\n catch (ValidationException $e) {\n print_r($e->getResult());\n print_r($e->getErrorsAsArray());\n } catch (PodException $e) {\n print_r($e->getResult());\n }\n}", "public function getApiProducts()\n {\n $this->load->model('catalog/category');\n $this->load->model('catalog/product');\n $this->load->model('tool/image');\n $products = $this->model_catalog_product->getProducts([]);\n\n $currency = $this->config->get('config_currency');\n $apiProducts = [];\n foreach ($products as $prod){\n if ($prod['image']) {\n $img = $this->model_tool_image->resize($prod['image'], 200, 200);\n } else {\n $img = $this->model_tool_image->resize('placeholder.png', 200, 200);\n }\n // TODO: categories not working ??\n // $categories = $this->model_catalog_product->getCategories($prod['product_id']);\n // if (empty($categories[0]['category_id'])){\n // $categoryName = $this->model_catalog_category->getCategory($categories[0]['category_id']);\n // }\n\n // TODO: better url, below links to admin\n // $this->url->link('product/product', 'product_id=' . $prod['product_id']),\n $price = $this->tax->calculate($prod['price'], $prod['tax_class_id'], $this->config->get('config_tax'));\n $apiProducts[] = new \\Logshub\\SearchClient\\Model\\Product($prod['product_id'], [\n 'name' => $prod['name'],\n 'url' => '/index.php?route=product/product&product_id='.$prod['product_id'],\n 'urlImage' => $img,\n 'price' => $price,\n 'currency' => $currency,\n 'sku' => $prod['sku'],\n 'categories' => []\n // TODO: other attributes: description, headline, availibility, review_score, review_count, price_old\n ]);\n }\n\n return $apiProducts;\n }", "public function initialize_product()\n {\n $product_data = $this->get_product_data();\n foreach ($product_data as $product) {\n $data = array(\n \"ppr_player\" => $_SESSION['ply_id'],\n \"ppr_product\" => $product[\"prd_id\"],\n \"ppr_price\" => $product[\"prd_price\"]\n );\n $this->Create(Utility::TABLE_PLAYER_PRODUCT, $data);\n }\n }", "public function productsAction() {\n\t\t$hash = $this->getRequest()->getParam('key');\n\t\tif (Mage::app()->getStore()->getConfig('h5mag_shopapi_magazine/general/apikey') != \"\" && $this->testHash($hash)) {\n\t\t\t$product = Mage::getModel('h5mag_shopapi/'. Mage::app()->getStore()->getConfig('h5mag_shopapi_developer/general/model'));\n\t\t\tif (!$product) $product = Mage::getModel('h5mag_shopapi/generic');\n\t\t\t$locale = $this->getRequest()->getParam('locale');\n\t\t\tif (!empty($locale)) $product->setLocale($locale);\n\t\t\t$product->fetchAll($product_id);\n\t\t\t$this->send($callback.'('.$product->json().')');\n\t\t} else {\n\t\t\t$this->send($callback.'([])');\n\t\t}\n\t}", "protected function _buildData(){\r\n\t\tforeach($this->_products as $product){\r\n\t\t\t$data\t=\tarray();\r\n\t\t\tforeach($this->_keyMappings as $key => $attribute){\r\n\t\t\t\t/**\r\n\t\t\t\t * Take specific action based on the product\r\n\t\t\t\t * attribute that is being dealt with.\r\n\t\t\t\t */\r\n\t\t\t\tswitch($key){\r\n\t\t\t\t\t/**\r\n\t\t\t\t\t * Product URL. Build full path based on Magento LINK url and product URL key\r\n\t\t\t\t\t */\r\n\t\t\t\t\tcase self::KEY_PRODUCT_URL:\r\n\t\t\t\t\t\t$data[$key]\t=\tMage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK).$product->getUrlPath();\r\n\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t/**\r\n\t\t\t\t\t * Product Image. Resize based on image type\r\n\t\t\t\t\t */\r\n\t\t\t\t\tcase self::KEY_IMAGE_URL:\r\n\t\t\t\t\t\ttry{\r\n\t\t\t\t\t\t\t$data[$key]\t=\tMage::helper('catalog/image')->init($product, $attribute)->resize(Mage::helper('ordergroove/config')->getDefaultImageDimensions($attribute))->__toString();\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tcatch(Exception $e){\r\n\t\t\t\t\t\t\t$data[$key]\t=\t'';\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t/**\r\n\t\t\t\t\t * All remaining fields set straight key value pair, with a 0 if no value is found\r\n\t\t\t\t\t */\r\n\t\t\t\t\tdefault:\r\n\t\t\t\t\t\t$data[$key]\t= (string)($product->getData($attribute) ? str_replace('', '', $product->getData($attribute)) : 0);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\t/**\r\n\t\t\t * Add product data to the array\r\n\t\t\t */\r\n\t\t\t$this->_productData[$product->getSku()]\t=\t$data;\r\n\t\t}\r\n\t}", "public function DBProductToArray($product) { \n if (!$product) return null;\n $p = $product->toArray();\n unset($p['id']);\n unset($p['brand_id']);\n unset($p['retailer_id']);\n unset($p['clothing_type_id']);\n unset($p['garment_detail']);\n unset($p['description']);\n unset($p['target']);\n \n $p['garment_name'] = $p['name']; unset($p['name']);\n $p['style'] = $p['control_number']; unset($p['control_number']);\n $p['fit_priority'] = json_decode($p['fit_priority']); \n $p['fabric_content'] = json_decode($p['fabric_content']); \n $p['neck_line'] = $p['neckline']; unset($p['neckline']);\n $p['layring'] = $p['layering']; unset($p['layering']);\n \n foreach ($product->getProductSizes() as $ps) {\n foreach ($ps->getProductSizeMeasurements() as $psm) {\n $p['sizes'][$ps->getTitle()][$psm->getTitle()] = $psm->toArray();\n unset($p['sizes'][$ps->getTitle()][$psm->getTitle()]['title']);\n $p['sizes'][$ps->getTitle()][$psm->getTitle()]['maximum_body_measurement'] = $p['sizes'][$ps->getTitle()][$psm->getTitle()]['max_body_measurement'];\n unset($p['sizes'][$ps->getTitle()][$psm->getTitle()]['max_body_measurement']);\n unset($p['sizes'][$ps->getTitle()][$psm->getTitle()]['horizontal_stretch']);\n unset($p['sizes'][$ps->getTitle()][$psm->getTitle()]['vertical_stretch']);\n unset($p['sizes'][$ps->getTitle()][$psm->getTitle()]['stretch_type_percentage']);\n $p['sizes'][$ps->getTitle()][$psm->getTitle()]['fit_model'] = $p['sizes'][$ps->getTitle()][$psm->getTitle()]['fit_model_measurement'];\n unset($p['sizes'][$ps->getTitle()][$psm->getTitle()]['fit_model_measurement']);\n\n \n unset($p['sizes'][$ps->getTitle()][$psm->getTitle()]['vertical_stretch']);\n }\n }\n \n $p['product_color']= array();\n foreach ($product->getProductColors() as $pc) {\n array_push($p['product_color'],$pc->getTitle());\n }\n $this->db_product=$p;\n return $p;\n }", "protected function _makeOptionProducts() {\n\t\tif (Tools_Security_Acl::isAllowed(self::RESOURCE_STORE_MANAGEMENT)) {\n\t\t\t$this->_view->brands = Models_Mapper_Brand::getInstance()->fetchAll();\n\t\t\t$this->_view->tags = Models_Mapper_Tag::getInstance()->fetchAll();\n\t\t\treturn $this->_view->render('manage_products.phtml');\n\t\t}\n\t}", "protected function prepareAttributes()\n {\n\n // map the entity type code to the ID\n $entityType = $this->getEntityType($this->getValue(ColumnKeys::ENTITY_TYPE_CODE));\n $entityTypeId = $entityType[MemberNames::ENTITY_TYPE_ID];\n\n // load the data from the row\n $attributeCode = $this->getValue(ColumnKeys::ATTRIBUTE_CODE);\n $attributeModel = $this->getValue(ColumnKeys::ATTRIBUTE_MODEL);\n $backendModel = $this->getValue(ColumnKeys::BACKEND_MODEL);\n $backendType = $this->getValue(ColumnKeys::BACKEND_TYPE, BackendTypeKeys::BACKEND_TYPE_STATIC);\n $backendTable = $this->getValue(ColumnKeys::BACKEND_TABLE);\n $frontendModel = $this->getValue(ColumnKeys::FRONTEND_MODEL);\n $frontendInput = $this->getValue(ColumnKeys::FRONTEND_INPUT);\n $frontendLabel = $this->getValue(ColumnKeys::FRONTEND_LABEL);\n $frontendClass = $this->getValue(ColumnKeys::FRONTEND_CLASS);\n $sourceModel = $this->getValue(ColumnKeys::SOURCE_MODEL);\n $isRequired = $this->getValue(ColumnKeys::IS_REQUIRED, 0);\n $isUserDefined = $this->getValue(ColumnKeys::IS_USER_DEFINED, 1);\n $isUnique = $this->getValue(ColumnKeys::IS_UNIQUE, 0);\n $note = $this->getValue(ColumnKeys::NOTE);\n\n // return the prepared product\n return $this->initializeEntity(\n array(\n MemberNames::ENTITY_TYPE_ID => $entityTypeId,\n MemberNames::ATTRIBUTE_CODE => $attributeCode,\n MemberNames::ATTRIBUTE_MODEL => $attributeModel,\n MemberNames::BACKEND_MODEL => $backendModel,\n MemberNames::BACKEND_TYPE => $backendType,\n MemberNames::BACKEND_TABLE => $backendTable,\n MemberNames::FRONTEND_MODEL => $frontendModel,\n MemberNames::FRONTEND_INPUT => $frontendInput,\n MemberNames::FRONTEND_LABEL => $frontendLabel,\n MemberNames::FRONTEND_CLASS => $frontendClass,\n MemberNames::SOURCE_MODEL => $sourceModel,\n MemberNames::IS_REQUIRED => $isRequired,\n MemberNames::IS_USER_DEFINED => $isUserDefined,\n MemberNames::DEFAULT_VALUE => null,\n MemberNames::IS_UNIQUE => $isUnique,\n MemberNames::NOTE => $note\n )\n );\n }", "public function toArray($request)\n {\n return [\n 'id' => $this->id,\n 'title' => $this->name,\n 'type' => $this->type,\n 'attributes' => $this->attributes ? json_decode($this->attributes, true) : null,\n 'thumbnail' => url('/') . '/assets/images/thumbnails/'.$this->thumbnail,\n 'first_image' => url('/') . '/assets/images/products/' . $this->photo,\n 'images' => GalleryResource::collection($this->galleries),\n 'rating' => $this->ratings()->avg('rating') > 0 ? round($this->ratings()->avg('rating'), 2) : round(0.00, 2),\n 'current_price' => $this->mainPrice($this->price),\n 'previous_price' => $this->mainPrice($this->previous_price),\n 'stock' => $this->stock,\n 'condition' => $this->when($this->product_condition != 0, function() {\n if ($this->product_condition == 2) {\n return 'New';\n } else {\n return 'Used';\n }\n }),\n 'video' => $this->youtube,\n 'estimated_shipping_time' => $this->ship,\n 'colors' => $this->color,\n 'sizes' => $this->size,\n 'size_quantity' => $this->size_qty,\n 'size_price' => $this->size_price,\n 'details' => strip_tags($this->details),\n 'policy' => strip_tags($this->policy),\n 'whole_sell_quantity' => $this->whole_sell_qty,\n 'whole_sell_discount' => $this->whole_sell_discount,\n 'reviews' => RatingResource::collection($this->ratings),\n 'comments' => CommentResource::collection($this->comments),\n 'related_products' => ProductlistResource::collection($this->category->products()->where('status','=',1)->where('id','!=',$this->id)->take(8)->get()),\n 'shop' => [\n 'id' => $this->id != 0 ? $this->user->id : Admin::first()->id,\n 'name' => $this->user_id != 0 ? $this->user->shop_name : Admin::first()->shop_name,\n 'items' => $this->when(true, function() {\n if( $this->user_id != 0) {\n return Product::where('user_id','=',$this->user_id)->get()->count() . ' items';\n } else {\n return Product::where('user_id','=',0)->get()->count() . ' items';\n }\n }),\n ],\n 'created_at' => ['date'=>$this->created_at->format('d-m-Y h:i:sa')],\n 'updated_at' => ['date'=>$this->updated_at->format('d-m-Y h:i:sa')],\n ];\n }", "public function prepare_items()\n {\n\n $this->items = subscriptio_get_orders_related_to_subscription($this->get_related_object());\n }", "private function get_valu_products_data() {\n\t\t$products = array();\n\t\t$product_name = '';\n\t\t$category_name = '';\n\t\t$order_id = $this->aps_order->get_session_order_id();\n\t\t$order = $this->aps_order->get_order_by_id( $order_id );\n\t\t$items = $order->get_items();\n\t\t$currency = $this->get_fort_currency();\n\t\tforeach ( $items as $item ) {\n\t\t\t$product_name = $this->clean_string( $item->get_name() );\n\t\t\t$product_id = $item->get_product_id();\n\t\t\t$product_categories = get_the_terms( $product_id, 'product_cat' );\n\t\t\tforeach ( $product_categories as $product_category ) {\n\t\t\t\t$category_name = $this->clean_string( $product_category->name );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tbreak;\n\t\t}\n\t\tif ( count( $items ) > 1 ) {\n\t\t\t$product_name = 'MutipleProducts';\n\t\t}\n\t\t$product_price = $this->convert_fort_amount( $order->get_total(), $this->aps_order->get_currency_value(), $currency );\n\t\t$producs_string = '[{product_name=' . $product_name . ', product_price=' . $product_price . ', product_category=' . $category_name . '}]';\n\t\treturn $producs_string;\n\t}", "public function run()\n {\n $products = [\n ['name' => \"The Essential Steve Vai - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-steve-vai-cd/1329576.p?id=2155328&skuId=1329576&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329576', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1329\\/1329576.jpg\"}', 'upc' => '886977867422', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1329585.p?id=1218252623587&skuId=1329585&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329585', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400013295859', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1329619.p?id=1218252582136&skuId=1329619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400013296191', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1329655.p?id=1218259335863&skuId=1329655&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329655', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013296559', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1329673.p?id=1218252589179&skuId=1329673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400013296733', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1329719.p?id=1218252593513&skuId=1329719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400013297198', 'provider' => 'bestbuy'],\n ['name' => \"URC - MX-iOS MRX Kit for Apple® iPad®, iPod® touch and iPhone®\", 'description_short' => \"Compatible with Apple iPad, iPod touch and iPhone; enables mobile control over A/V systems; includes CC Control mobile app, MRX-1 network base station and RFX-250 418MHz RF antenna\", 'description_long' => \"Compatible with Apple iPad, iPod touch and iPhone; enables mobile control over A/V systems; includes CC Control mobile app, MRX-1 network base station and RFX-250 418MHz RF antenna\", 'price' => 599.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urc-mx-ios-mrx-kit-for-apple-ipad-ipod-touch-and-iphone/1329737.p?id=1219048477065&skuId=1329737&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329737', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1329\\/1329737_sa.jpg\"}', 'upc' => '656787300392', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1329746.p?id=1218252587534&skuId=1329746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400013297464', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1329755.p?id=1218252622163&skuId=1329755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400013297556', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1329828.p?id=1218252629876&skuId=1329828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400013298287', 'provider' => 'bestbuy'],\n ['name' => \"Sister Sweetly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sister-sweetly-cd/1329841.p?id=74629&skuId=1329841&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329841', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1329\\/1329841_sa.jpg\"}', 'upc' => '075992448628', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1329864.p?id=1218252574155&skuId=1329864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400013298645', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1329873.p?id=1218259333170&skuId=1329873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013298737', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1329891.p?id=1218259334715&skuId=1329891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1329891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013298911', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1330005.p?id=1218259332867&skuId=1330005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013300058', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1330111.p?id=1218259331679&skuId=1330111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013301116', 'provider' => 'bestbuy'],\n ['name' => \"My Baby Don't Wear No Shoes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-baby-dont-wear-no-shoes-cd/1330198.p?id=77339&skuId=1330198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1330\\/1330198_sa.jpg\"}', 'upc' => '096297109823', 'provider' => 'bestbuy'],\n ['name' => \"Hot Chili Mama - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-chili-mama-cd/1330214.p?id=74244&skuId=1330214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1330\\/1330214_sa.jpg\"}', 'upc' => '096297504024', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1330236.p?id=1218259332981&skuId=1330236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013302366', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 74.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1330263.p?id=1218259335100&skuId=1330263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013302632', 'provider' => 'bestbuy'],\n ['name' => \"Hated [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hated-pa-cd/1330269.p?id=72761&skuId=1330269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1330\\/1330269_sa.jpg\"}', 'upc' => '095451000723', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 84.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1330306.p?id=1218259331799&skuId=1330306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013303066', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1330397.p?id=1218259333871&skuId=1330397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013303974', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1330715.p?id=1218259332039&skuId=1330715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013307156', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1330779.p?id=1218259332613&skuId=1330779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013307798', 'provider' => 'bestbuy'],\n ['name' => \"Who Is Harry Nilsson (And Why Is Everybody Talkin' About Him)? (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/who-is-harry-nilsson-and-why-is-everybody-talkin-about-him-dvd/1330788.p?id=2143066&skuId=1330788&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330788', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1330\\/1330788_sa.jpg\"}', 'upc' => '705105266015', 'provider' => 'bestbuy'],\n ['name' => \"My Bloody Valentine 3D (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-bloody-valentine-3d-blu-ray-3d-3-d/1330815.p?id=1959454&skuId=1330815&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330815', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1330\\/1330815_sa.jpg\"}', 'upc' => '031398128724', 'provider' => 'bestbuy'],\n ['name' => \"Back to the Future: 25th Anniversary Trilogy [6 Discs/Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-the-future-25th-anniversary-trilogy-6-discs-blu-ray-blu-ray-disc/1330888.p?id=2129625&skuId=1330888&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1330888', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1330\\/1330888_sa.jpg\"}', 'upc' => '025192049491', 'provider' => 'bestbuy'],\n ['name' => \"Local H's Awesome Mix Tape, Vol. 1 [EP] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/local-hs-awesome-mix-tape-vol-1-ep-digipak-cd/1331183.p?id=2153951&skuId=1331183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331183_sa.jpg\"}', 'upc' => '751937397229', 'provider' => 'bestbuy'],\n ['name' => \"Back 2 Basics Chapter Two - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-2-basics-chapter-two-cd/1331208.p?id=2135787&skuId=1331208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331208.jpg\"}', 'upc' => '747656308424', 'provider' => 'bestbuy'],\n ['name' => \"Piano Tribute To Sugarland - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-tribute-to-sugarland-cd-various/1331235.p?id=2154679&skuId=1331235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331235_sa.jpg\"}', 'upc' => '707541931991', 'provider' => 'bestbuy'],\n ['name' => \"Vaya Puente [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vaya-puente-lp-vinyl/1331244.p?id=2192712&skuId=1331244&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331244', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331244_sa.jpg\"}', 'upc' => '846395005080', 'provider' => 'bestbuy'],\n ['name' => \"For You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-you-cd/1331253.p?id=2154229&skuId=1331253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331253_sa.jpg\"}', 'upc' => '099923211921', 'provider' => 'bestbuy'],\n ['name' => \"King Kong [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-kong-pa-cd/1331262.p?id=2189151&skuId=1331262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331262_sa.jpg\"}', 'upc' => '099923211723', 'provider' => 'bestbuy'],\n ['name' => \"Acoustic Sessions [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/acoustic-sessions-digipak-cd/1331271.p?id=2155889&skuId=1331271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331271_sa.jpg\"}', 'upc' => '616892107668', 'provider' => 'bestbuy'],\n ['name' => \"Rocksteady: The Roots of Reggae (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rocksteady-the-roots-of-reggae-dvd/1331299.p?id=2143649&skuId=1331299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331299_sa.jpg\"}', 'upc' => '085365641822', 'provider' => 'bestbuy'],\n ['name' => \"Leyendas de la Fania, Vol. 3 [Digipak] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leyendas-de-la-fania-vol-3-digipak-cd-various/1331305.p?id=2159859&skuId=1331305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331305_sa.jpg\"}', 'upc' => '846395071092', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute to Bryan Ferry - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-bryan-ferry-cd-various/1331314.p?id=2154682&skuId=1331314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331314_sa.jpg\"}', 'upc' => '707541932097', 'provider' => 'bestbuy'],\n ['name' => \"Corridos y Mas Exitos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/corridos-y-mas-exitos-cd/1331323.p?id=2151980&skuId=1331323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '064313594526', 'provider' => 'bestbuy'],\n ['name' => \"El Monarca de Sinaloa Exitos Con Banda y Norteno - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-monarca-de-sinaloa-exitos-con-banda-y-norteno-cd-various/1331387.p?id=2151981&skuId=1331387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '064313592225', 'provider' => 'bestbuy'],\n ['name' => \"In Search of Black Judas [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-search-of-black-judas-digipak-cd/1331429.p?id=2154678&skuId=1331429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331429_sa.jpg\"}', 'upc' => '053436830628', 'provider' => 'bestbuy'],\n ['name' => \"Human - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/human-cd/1331447.p?id=2159344&skuId=1331447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331447_sa.jpg\"}', 'upc' => '611587112422', 'provider' => 'bestbuy'],\n ['name' => \"Revenants - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revenants-cd/1331474.p?id=2154683&skuId=1331474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331474_sa.jpg\"}', 'upc' => '894587001372', 'provider' => 'bestbuy'],\n ['name' => \"Slime Flu [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slime-flu-pa-cd/1331517.p?id=2147374&skuId=1331517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331517_sa.jpg\"}', 'upc' => '099923212423', 'provider' => 'bestbuy'],\n ['name' => \"Elida y Avante: Live - En Concierto - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elida-y-avante-live-en-concierto-dvd/1331544.p?id=3243924&skuId=1331544&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '635750803023', 'provider' => 'bestbuy'],\n ['name' => \"The Confessions of a Nice Girl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-confessions-of-a-nice-girl-cd/1331562.p?id=2151314&skuId=1331562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331562_sa.jpg\"}', 'upc' => '894227002097', 'provider' => 'bestbuy'],\n ['name' => \"Backatcha! [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backatcha-digipak-cd/1331571.p?id=2154684&skuId=1331571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331571_sa.jpg\"}', 'upc' => '016351518729', 'provider' => 'bestbuy'],\n ['name' => \"The All-Star Jam: Live at Graves Mountain - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-all-star-jam-live-at-graves-mountain-cd-various/1331714.p?id=2154681&skuId=1331714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331714_sa.jpg\"}', 'upc' => '732351107328', 'provider' => 'bestbuy'],\n ['name' => \"7 Walkers [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/7-walkers-digipak-cd/1331723.p?id=2159350&skuId=1331723&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331723', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331723_sa.jpg\"}', 'upc' => '634457536227', 'provider' => 'bestbuy'],\n ['name' => \"W.A.R. (We Are... [DigDownLoad] [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/w-a-r-we-are-digdownload-pa-digipak-cd/1331732.p?id=2151954&skuId=1331732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331732_sa.jpg\"}', 'upc' => '693461216525', 'provider' => 'bestbuy'],\n ['name' => \"Bing Crosby Collection [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bing-crosby-collection-3-discs-dvd/1331778.p?id=2151315&skuId=1331778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331778_sa.jpg\"}', 'upc' => '025195052061', 'provider' => 'bestbuy'],\n ['name' => \"Timeless: Suite for Ma Dukes [CD & DVD] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timeless-suite-for-ma-dukes-cd-dvd-cd-various/1331787.p?id=2166676&skuId=1331787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331787.jpg\"}', 'upc' => '107671001722', 'provider' => 'bestbuy'],\n ['name' => \"Once AroundCD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/once-aroundcd/1331796.p?id=2160338&skuId=1331796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331796_sa.jpg\"}', 'upc' => '634457222922', 'provider' => 'bestbuy'],\n ['name' => \"Street Urchin [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/street-urchin-pa-cd/1331814.p?id=2151982&skuId=1331814&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331814', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331814_sa.jpg\"}', 'upc' => '097037738822', 'provider' => 'bestbuy'],\n ['name' => \"Walter Hawkins: Love Alive IV (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walter-hawkins-love-alive-iv-dvd/1331823.p?id=59387&skuId=1331823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331823_sa.jpg\"}', 'upc' => '048021901395', 'provider' => 'bestbuy'],\n ['name' => \"An Introduction to Elliott Smith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-introduction-to-elliott-smith-cd/1331869.p?id=2160343&skuId=1331869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331869_sa.jpg\"}', 'upc' => '759656054126', 'provider' => 'bestbuy'],\n ['name' => \"Small Craft on a Milk Sea [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/small-craft-on-a-milk-sea-digipak-cd/1331878.p?id=2155306&skuId=1331878&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331878', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331878_sa.jpg\"}', 'upc' => '801061020729', 'provider' => 'bestbuy'],\n ['name' => \"Soulsville [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soulsville-digipak-cd/1331923.p?id=2155674&skuId=1331923&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331923', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331923_sa.jpg\"}', 'upc' => '634457536128', 'provider' => 'bestbuy'],\n ['name' => \"The Absolute Beginners - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-absolute-beginners-cd/1331941.p?id=2153952&skuId=1331941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331941_sa.jpg\"}', 'upc' => '751937397328', 'provider' => 'bestbuy'],\n ['name' => \"Soul Seekers II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-seekers-ii-cd/1331969.p?id=2151983&skuId=1331969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331969_sa.jpg\"}', 'upc' => '734373210024', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbokits Aftermarket Radio Wire Harness Adapter for Select Ford Vehicles\", 'description_short' => \"Compatible with most Ford vehicles; connects an aftermarket radio to the vehicle&#039;s harness\", 'description_long' => \"Compatible with most Ford vehicles; connects an aftermarket radio to the vehicle&#039;s harness\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbokits-aftermarket-radio-wire-harness-adapter-for-select-ford-vehicles/1331972.p?id=1183160745729&skuId=1331972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331972_rc.jpg\"}', 'upc' => '086429006915', 'provider' => 'bestbuy'],\n ['name' => \"No Excuses [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-excuses-pa-cd/1331996.p?id=2159866&skuId=1331996&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1331996', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1331\\/1331996_sa.jpg\"}', 'upc' => '913754500927', 'provider' => 'bestbuy'],\n ['name' => \"My Kinda Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-kinda-party-cd/1332021.p?id=2148393&skuId=1332021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332021_sa.jpg\"}', 'upc' => '697487769720', 'provider' => 'bestbuy'],\n ['name' => \"Saw 3D - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saw-3d-cd-original-soundtrack/1332049.p?id=2156682&skuId=1332049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332049_sa.jpg\"}', 'upc' => '766929951822', 'provider' => 'bestbuy'],\n ['name' => \"Ritual Abuse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ritual-abuse-cd/1332058.p?id=2155900&skuId=1332058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332058.jpg\"}', 'upc' => '781676711628', 'provider' => 'bestbuy'],\n ['name' => \"The Slider [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-slider-digipak-cd/1332067.p?id=2155910&skuId=1332067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332067_sa.jpg\"}', 'upc' => '767981123226', 'provider' => 'bestbuy'],\n ['name' => \"Transatlantic: Whirld Tour 2010 - Live in London [2 Discs] - DVD - (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transatlantic-whirld-tour-2010-live-in-london-2-discs-dvd-2-disc/1332076.p?id=2155931&skuId=1332076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332076_sa.jpg\"}', 'upc' => '039843406199', 'provider' => 'bestbuy'],\n ['name' => \"The Day We Ran into the Sea [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-day-we-ran-into-the-sea-digipak-cd/1332085.p?id=2159851&skuId=1332085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332085_sa.jpg\"}', 'upc' => '689289010827', 'provider' => 'bestbuy'],\n ['name' => \"Forging the Eclipse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forging-the-eclipse-cd/1332094.p?id=2155923&skuId=1332094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332094_sa.jpg\"}', 'upc' => '039841496222', 'provider' => 'bestbuy'],\n ['name' => \"Human Frequency 2.0 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/human-frequency-2-0-cd/1332119.p?id=2155904&skuId=1332119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332119.jpg\"}', 'upc' => '026656202520', 'provider' => 'bestbuy'],\n ['name' => \"Worldwide: A Celebration of His... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worldwide-a-celebration-of-his-digipak-cd/1332128.p?id=3269235&skuId=1332128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332128_sa.jpg\"}', 'upc' => '730003112720', 'provider' => 'bestbuy'],\n ['name' => \"The Fonk Record - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fonk-record-cd/1332137.p?id=2155309&skuId=1332137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332137.jpg\"}', 'upc' => '881284514427', 'provider' => 'bestbuy'],\n ['name' => \"DJ-Kicks [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dj-kicks-digipak-cd/1332146.p?id=2155899&skuId=1332146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332146_sa.jpg\"}', 'upc' => '730003727023', 'provider' => 'bestbuy'],\n ['name' => \"Witchsorrow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/witchsorrow-cd/1332155.p?id=2155896&skuId=1332155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332155_sa.jpg\"}', 'upc' => '039841495324', 'provider' => 'bestbuy'],\n ['name' => \"Killer Instincts [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/killer-instincts-digipak-cd/1332164.p?id=2155917&skuId=1332164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332164_sa.jpg\"}', 'upc' => '020286155003', 'provider' => 'bestbuy'],\n ['name' => \"The Fragile Art of Existence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fragile-art-of-existence-cd/1332173.p?id=2155903&skuId=1332173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332173.jpg\"}', 'upc' => '781676711826', 'provider' => 'bestbuy'],\n ['name' => \"Matt Wilson's Christmas Tree-O [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matt-wilsons-christmas-tree-o-digipak-cd/1332191.p?id=2155912&skuId=1332191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332191_sa.jpg\"}', 'upc' => '753957214425', 'provider' => 'bestbuy'],\n ['name' => \"Crowned [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crowned-ep-cd/1332207.p?id=2155914&skuId=1332207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332207_sa.jpg\"}', 'upc' => '884502756586', 'provider' => 'bestbuy'],\n ['name' => \"Soy City Stranglers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soy-city-stranglers-cd/1332216.p?id=2155915&skuId=1332216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332216.jpg\"}', 'upc' => '880270311323', 'provider' => 'bestbuy'],\n ['name' => \"Caledonia's Hardy Sons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caledonias-hardy-sons-cd/1332221.p?id=98735&skuId=1332221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332221.jpg\"}', 'upc' => '016351791528', 'provider' => 'bestbuy'],\n ['name' => \"Dualitas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dualitas-cd/1332225.p?id=2156177&skuId=1332225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332225_sa.jpg\"}', 'upc' => '656191009225', 'provider' => 'bestbuy'],\n ['name' => \"Kick - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kick-cd/1332234.p?id=2155893&skuId=1332234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332234.jpg\"}', 'upc' => '020286154976', 'provider' => 'bestbuy'],\n ['name' => \"A Bureaucratic Desire for Extra-Capsular... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-bureaucratic-desire-for-extra-capsular-cd/1332243.p?id=2155901&skuId=1332243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332243.jpg\"}', 'upc' => '808720012224', 'provider' => 'bestbuy'],\n ['name' => \"This One's For You [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-ones-for-you-pa-cd/1332252.p?id=2157179&skuId=1332252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332252_sa.jpg\"}', 'upc' => '661278235725', 'provider' => 'bestbuy'],\n ['name' => \"The Avarice of Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-avarice-of-man-cd/1332289.p?id=2157180&skuId=1332289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332289_sa.jpg\"}', 'upc' => '661278235824', 'provider' => 'bestbuy'],\n ['name' => \"Fever Kingdoms - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fever-kingdoms-cd/1332304.p?id=2155892&skuId=1332304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332304.jpg\"}', 'upc' => '884502746167', 'provider' => 'bestbuy'],\n ['name' => \"Kids [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kids-digipak-cd/1332313.p?id=2155913&skuId=1332313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332313_sa.jpg\"}', 'upc' => '662102114421', 'provider' => 'bestbuy'],\n ['name' => \"Chromatic Black [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chromatic-black-pa-digipak-cd/1332322.p?id=2159852&skuId=1332322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332322_sa.jpg\"}', 'upc' => '689289010421', 'provider' => 'bestbuy'],\n ['name' => \"Useless Creatures [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/useless-creatures-digipak-cd/1332331.p?id=2155898&skuId=1332331&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332331', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332331.jpg\"}', 'upc' => '767981121925', 'provider' => 'bestbuy'],\n ['name' => \"Truth Rising [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/truth-rising-pa-cd/1332359.p?id=2155897&skuId=1332359&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332359_sa.jpg\"}', 'upc' => '673951021327', 'provider' => 'bestbuy'],\n ['name' => \"Crisis In Utopia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crisis-in-utopia-cd/1332368.p?id=2157945&skuId=1332368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332368_sa.jpg\"}', 'upc' => '656191008624', 'provider' => 'bestbuy'],\n ['name' => \"Sunrise On Avenue C [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sunrise-on-avenue-c-digipak-cd/1332377.p?id=2155916&skuId=1332377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332377_sa.jpg\"}', 'upc' => '654436017721', 'provider' => 'bestbuy'],\n ['name' => \"You Are the Night [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-are-the-night-digipak-cd/1332386.p?id=2159855&skuId=1332386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332386_sa.jpg\"}', 'upc' => '886977921728', 'provider' => 'bestbuy'],\n ['name' => \"The Imus Ranch Record II [Digipak] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-imus-ranch-record-ii-digipak-cd-various/1332395.p?id=2155312&skuId=1332395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332395_sa.jpg\"}', 'upc' => '607396618620', 'provider' => 'bestbuy'],\n ['name' => \"Dead New World [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-new-world-digdownload-cd/1332428.p?id=2155920&skuId=1332428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332428_sa.jpg\"}', 'upc' => '746105059023', 'provider' => 'bestbuy'],\n ['name' => \"The Wants - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wants-cd/1332437.p?id=2155909&skuId=1332437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332437_sa.jpg\"}', 'upc' => '020286154983', 'provider' => 'bestbuy'],\n ['name' => \"Codename: Rondo [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/codename-rondo-digipak-cd/1332446.p?id=2155906&skuId=1332446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332446.jpg\"}', 'upc' => '020286154952', 'provider' => 'bestbuy'],\n ['name' => \"Whirld Tour 2010: Live from Shepherd's... [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirld-tour-2010-live-from-shepherds-box-cd/1332455.p?id=2155907&skuId=1332455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332455.jpg\"}', 'upc' => '039841495720', 'provider' => 'bestbuy'],\n ['name' => \"Gone for Good [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gone-for-good-digipak-cd/1332464.p?id=2155905&skuId=1332464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332464_sa.jpg\"}', 'upc' => '020286132813', 'provider' => 'bestbuy'],\n ['name' => \"Dubber Side Of The Moon [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dubber-side-of-the-moon-digipak-cd/1332482.p?id=2155891&skuId=1332482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332482_sa.jpg\"}', 'upc' => '657481102329', 'provider' => 'bestbuy'],\n ['name' => \"Mama Said Knock You Out (Deluxe Edition) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mama-said-knock-you-out-deluxe-edition-cd/1332483.p?id=3323775&skuId=1332483&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332483', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332483_sa.jpg\"}', 'upc' => '602547098818', 'provider' => 'bestbuy'],\n ['name' => \"Eight Legs [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eight-legs-digipak-cd/1332491.p?id=2155927&skuId=1332491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332491_sa.jpg\"}', 'upc' => '020286154969', 'provider' => 'bestbuy'],\n ['name' => \"Lookin For A Love: The Complete Sar Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lookin-for-a-love-the-complete-sar-recordings-cd/1332492.p?id=3323814&skuId=1332492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332492_sa.jpg\"}', 'upc' => '018771825920', 'provider' => 'bestbuy'],\n ['name' => \"R.E.M.: Live from Austin, TX (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/r-e-m--live-from-austin-tx-dvd/1332507.p?id=2155329&skuId=1332507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332507_sa.jpg\"}', 'upc' => '607396807826', 'provider' => 'bestbuy'],\n ['name' => \"Going Back Home (Deluxe Edition) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/going-back-home-deluxe-edition-cd/1332509.p?id=3318227&skuId=1332509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332509_sa.jpg\"}', 'upc' => '602547034748', 'provider' => 'bestbuy'],\n ['name' => \"Sidewalks [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sidewalks-digipak-cd/1332516.p?id=2155330&skuId=1332516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332516_sa.jpg\"}', 'upc' => '829299091328', 'provider' => 'bestbuy'],\n ['name' => \"Joy in My Soul: The Complete SAR Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joy-in-my-soul-the-complete-sar-recordings-cd/1332518.p?id=3315002&skuId=1332518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332518_sa.jpg\"}', 'upc' => '018771825722', 'provider' => 'bestbuy'],\n ['name' => \"Icons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icons-cd/1332525.p?id=2155924&skuId=1332525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332525_sa.jpg\"}', 'upc' => '751097076026', 'provider' => 'bestbuy'],\n ['name' => \"James Brown: Live at the Boston Garden - April 5, 1968 (DVD) (Extended Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/james-brown-live-at-the-boston-garden-april-5-1968-dvd-extended-edition/1332527.p?id=1941833&skuId=1332527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332527_sa.jpg\"}', 'upc' => '826663155426', 'provider' => 'bestbuy'],\n ['name' => \"Heavy Metal Thunder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heavy-metal-thunder-cd/1332534.p?id=2155895&skuId=1332534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332534.jpg\"}', 'upc' => '852931002048', 'provider' => 'bestbuy'],\n ['name' => \"Spunk: The Original 1977 Bootleg Album [Bonus... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spunk-the-original-1977-bootleg-album-bonus-cd/1332536.p?id=3314110&skuId=1332536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332536_sa.jpg\"}', 'upc' => '881034103703', 'provider' => 'bestbuy'],\n ['name' => \"Set for Extinction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/set-for-extinction-cd/1332543.p?id=2155922&skuId=1332543&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332543_sa.jpg\"}', 'upc' => '781676711420', 'provider' => 'bestbuy'],\n ['name' => \"Like It Is: Yes at the... [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/like-it-is-yes-at-the-cd-dvd-digipak-cd-dvd/1332545.p?id=3315033&skuId=1332545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332545.jpg\"}', 'upc' => '8024391067246', 'provider' => 'bestbuy'],\n ['name' => \"Happy Talk [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happy-talk-digipak-cd/1332552.p?id=2155888&skuId=1332552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332552_sa.jpg\"}', 'upc' => '652905011126', 'provider' => 'bestbuy'],\n ['name' => \"Regulate: G Funk Era [20th Anniversary... [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/regulate-g-funk-era-20th-anniversary-pa-cd/1332554.p?id=3314065&skuId=1332554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332554_sa.jpg\"}', 'upc' => '602547056832', 'provider' => 'bestbuy'],\n ['name' => \"Charge It To My Heart [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charge-it-to-my-heart-digipak-cd/1332561.p?id=2155919&skuId=1332561&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332561.jpg\"}', 'upc' => '026656426421', 'provider' => 'bestbuy'],\n ['name' => \"Yes: Like It Is - At the Bristol Hippodrome - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yes-like-it-is-at-the-bristol-hippodrome-blu-ray-disc/1332563.p?id=3314528&skuId=1332563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332563.jpg\"}', 'upc' => '8024391067284', 'provider' => 'bestbuy'],\n ['name' => \"Geocidal [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/geocidal-digipak-cd/1332572.p?id=3314157&skuId=1332572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332572.jpg\"}', 'upc' => '689230016724', 'provider' => 'bestbuy'],\n ['name' => \"Crime of the Century [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crime-of-the-century-digipak-cd/1332581.p?id=3315087&skuId=1332581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332581_sa.jpg\"}', 'upc' => '600753307885', 'provider' => 'bestbuy'],\n ['name' => \"We All Bleed [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-all-bleed-digipak-cd/1332589.p?id=2155902&skuId=1332589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332589_sa.jpg\"}', 'upc' => '846070080029', 'provider' => 'bestbuy'],\n ['name' => \"Burning Bush Supper Club [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burning-bush-supper-club-digipak-cd/1332613.p?id=2156178&skuId=1332613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332613_sa.jpg\"}', 'upc' => '020286155089', 'provider' => 'bestbuy'],\n ['name' => \"Superstar Car Wash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/superstar-car-wash-cd/1332686.p?id=83849&skuId=1332686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332686_sa.jpg\"}', 'upc' => '093624520627', 'provider' => 'bestbuy'],\n ['name' => \"The Muppet Movie (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-muppet-movie-blu-ray-disc/1332695.p?id=248439&skuId=1332695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2150\\/21507322.jpg\"}', 'upc' => '786936836554', 'provider' => 'bestbuy'],\n ['name' => \"High Priest of Harmful Matter: Tales From the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-priest-of-harmful-matter-tales-from-the-cd/1332962.p?id=74569&skuId=1332962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332962_sa.jpg\"}', 'upc' => '721616006629', 'provider' => 'bestbuy'],\n ['name' => \"Kill City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kill-city-cd/1332971.p?id=3364729&skuId=1332971&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1332971', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1332\\/1332971_sa.jpg\"}', 'upc' => '095081404229', 'provider' => 'bestbuy'],\n ['name' => \"Pipe Dream - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pipe-dream-cd-original-broadway-cast/1333818.p?id=94994&skuId=1333818&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1333818', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1333\\/1333818_sa.jpg\"}', 'upc' => '090266148127', 'provider' => 'bestbuy'],\n ['name' => \"Independent Worm Saloon [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/independent-worm-saloon-pa-cd/1334363.p?id=76428&skuId=1334363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1334363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1334\\/1334363_sa.jpg\"}', 'upc' => '077779879823', 'provider' => 'bestbuy'],\n ['name' => \"Plays George Green - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-george-green-cd/1334611.p?id=2739706&skuId=1334611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1334611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1334\\/1334611.jpg\"}', 'upc' => '034060227329', 'provider' => 'bestbuy'],\n ['name' => \"Ragtime Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ragtime-concert-cd/1334620.p?id=2746523&skuId=1334620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1334620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1334\\/1334620.jpg\"}', 'upc' => '034060228425', 'provider' => 'bestbuy'],\n ['name' => \"Bacdafucup [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bacdafucup-pa-cd/1334988.p?id=1365908&skuId=1334988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1334988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1334\\/1334988_sa.jpg\"}', 'upc' => '731452344724', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Smiley World 8GB USB 2.0 Flash Drive - Yellow\", 'description_short' => \"EMTEC Smiley World 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; rubber material; 3D Take It Easy design; includes a cap holder with chain\", 'description_long' => \"EMTEC Smiley World 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; rubber material; 3D Take It Easy design; includes a cap holder with chain\", 'price' => 10.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/emtec-smiley-world-8gb-usb-2-0-flash-drive-yellow/1335014.p?id=1219484821127&skuId=1335014', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335014_sa.jpg\"}', 'upc' => '846143003276', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Smiley World 8GB USB 2.0 Flash Drive - Red\", 'description_short' => \"EMTEC Smiley World 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; rubber material; 3D Shame design; includes a cap holder with chain\", 'description_long' => \"EMTEC Smiley World 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; rubber material; 3D Shame design; includes a cap holder with chain\", 'price' => 10.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/emtec-smiley-world-8gb-usb-2-0-flash-drive-red/1335023.p?id=1219484819028&skuId=1335023', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335023_sa.jpg\"}', 'upc' => '846143003290', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Looney Tunes 8GB USB 2.0 Flash Drive - Red/Blue/Yellow\", 'description_short' => \"EMTEC Looney Tunes 8GB USB 2.0 Flash Drive: Write speeds up to 8MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Yosemite Sam design; includes a cap holder and chain\", 'description_long' => \"EMTEC Looney Tunes 8GB USB 2.0 Flash Drive: Write speeds up to 8MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Yosemite Sam design; includes a cap holder and chain\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-looney-tunes-8gb-usb-2-0-flash-drive-red-blue-yellow/1335032.p?id=1219484819025&skuId=1335032', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335032_sa.jpg\"}', 'upc' => '846143002057', 'provider' => 'bestbuy'],\n ['name' => \"Samsung - 27\\\" LED Curved HD Monitor - Black\", 'description_short' => \"4 ms GTG response time; Mega Infinity DCR (Dynamic Contrast Ratio); 350 cd/m&#178; brightness; 1920 x 1080 resolution; 178&#176; horizontal and vertical viewing angles; VGA, DisplayPort and HDMI inputs; two 5W speakers\", 'description_long' => \"4 ms GTG response time; Mega Infinity DCR (Dynamic Contrast Ratio); 350 cd/m&#178; brightness; 1920 x 1080 resolution; 178&#176; horizontal and vertical viewing angles; VGA, DisplayPort and HDMI inputs; two 5W speakers\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/samsung-27-led-curved-hd-monitor-black/1335041.p?id=1219487725934&skuId=1335041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312401875\\/1312401875_sa.jpg\"}', 'upc' => '887276026404', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Swivel Series 8GB USB 2.0 Flash Drive - Solid Green\", 'description_short' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 8MB/sec.; for PC, Mac and Linux; capless swivel design; rubber coating\", 'description_long' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 8MB/sec.; for PC, Mac and Linux; capless swivel design; rubber coating\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-swivel-series-8gb-usb-2-0-flash-drive-solid-green/1335069.p?id=1219484819026&skuId=1335069', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335069_sa.jpg\"}', 'upc' => '846143002699', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Tom and Jerry 8GB USB 2.0 Flash Drive - Brown\", 'description_short' => \"EMTEC Tom and Jerry 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Jerry design; includes a cap holder with chain\", 'description_long' => \"EMTEC Tom and Jerry 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Jerry design; includes a cap holder with chain\", 'price' => 11.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/emtec-tom-and-jerry-8gb-usb-2-0-flash-drive-brown/1335087.p?id=1219484819036&skuId=1335087', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335087_sa.jpg\"}', 'upc' => '846143003429', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Swivel Series 8GB USB 2.0 Flash Drive - Solid Orange\", 'description_short' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 8MB/sec.; for PC, Mac and Linux; capless swivel design; rubber coating\", 'description_long' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 8MB/sec.; for PC, Mac and Linux; capless swivel design; rubber coating\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-swivel-series-8gb-usb-2-0-flash-drive-solid-orange/1335096.p?id=1219484821516&skuId=1335096', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335096_sa.jpg\"}', 'upc' => '846143002637', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Swivel Series 8GB USB 2.0 Flash Drive - Black Geometric\", 'description_short' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 8MB/sec.; for PC, Mac and Linux; capless swivel design; rubber coating\", 'description_long' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 8MB/sec.; for PC, Mac and Linux; capless swivel design; rubber coating\", 'price' => 8.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/emtec-swivel-series-8gb-usb-2-0-flash-drive-black-geometric/1335147.p?id=1219484821451&skuId=1335147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335147_sa.jpg\"}', 'upc' => '846143002644', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Tom and Jerry 8GB USB 2.0 Flash Drive - Gray/White/Black\", 'description_short' => \"EMTEC Tom and Jerry 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Tom design; includes a cap holder with chain\", 'description_long' => \"EMTEC Tom and Jerry 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Tom design; includes a cap holder with chain\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-tom-and-jerry-8gb-usb-2-0-flash-drive-gray-white-black/1335156.p?id=1219484821062&skuId=1335156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335156_sa.jpg\"}', 'upc' => '846143003412', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - C600 Click 32GB USB 2.0 Flash Drive - Blue\", 'description_short' => \"EMTEC C600 Click 32GB USB 2.0 Flash Drive: Up to 8MB/sec. write speeds; PC and Mac compatible; slide-and-click opening mechanism\", 'description_long' => \"EMTEC C600 Click 32GB USB 2.0 Flash Drive: Up to 8MB/sec. write speeds; PC and Mac compatible; slide-and-click opening mechanism\", 'price' => 16.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/emtec-c600-click-32gb-usb-2-0-flash-drive-blue/1335174.p?id=1219484820672&skuId=1335174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335174_sa.jpg\"}', 'upc' => '846143001807', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Animals in The Jungle 8GB USB 2.0 Flash Drive - Red/Yellow/Blue\", 'description_short' => \"EMTEC Animals in The Jungle 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; for PC and Mac; 3D parrot design; includes a cap holder and beaded chain\", 'description_long' => \"EMTEC Animals in The Jungle 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; for PC and Mac; 3D parrot design; includes a cap holder and beaded chain\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-animals-in-the-jungle-8gb-usb-2-0-flash-drive-red-yellow-blue/1335183.p?id=1219484819027&skuId=1335183', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335183_sa.jpg\"}', 'upc' => '846143002095', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Animals in The Jungle 8GB USB 2.0 Flash Drive - Green\", 'description_short' => \"EMTEC Animals in The Jungle 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; for PC and Mac; 3D crocodile design; includes a cap holder and beaded chain\", 'description_long' => \"EMTEC Animals in The Jungle 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; for PC and Mac; 3D crocodile design; includes a cap holder and beaded chain\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-animals-in-the-jungle-8gb-usb-2-0-flash-drive-green/1335192.p?id=1219484819029&skuId=1335192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335192_sa.jpg\"}', 'upc' => '846143002088', 'provider' => 'bestbuy'],\n ['name' => \"Goodnight Vienna - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goodnight-vienna-cd/1335200.p?id=2291518&skuId=1335200&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335200', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335200_sa.jpg\"}', 'upc' => '077778037828', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - The Flintstones 8GB USB 2.0 Flash Drive - Purple\", 'description_short' => \"EMTEC The Flintstones 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Dino design; includes a cap holder with chain\", 'description_long' => \"EMTEC The Flintstones 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Dino design; includes a cap holder with chain\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-the-flintstones-8gb-usb-2-0-flash-drive-purple/1335207.p?id=1219484819035&skuId=1335207', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335207_sa.jpg\"}', 'upc' => '846143003405', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Smiley World 8GB USB 2.0 Flash Drive - Blue\", 'description_short' => \"EMTEC Smiley World 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; rubber material; 3D Happy Days design; includes a cap holder with chain\", 'description_long' => \"EMTEC Smiley World 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; rubber material; 3D Happy Days design; includes a cap holder with chain\", 'price' => 10.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/emtec-smiley-world-8gb-usb-2-0-flash-drive-blue/1335216.p?id=1219484819034&skuId=1335216', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335216_sa.jpg\"}', 'upc' => '846143003306', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Animalitos 8GB USB 2.0 Flash Drive - Gray/Blue/Red\", 'description_short' => \"EMTEC Animalitos 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; 3D Miss Penguin design; includes a cap holder and beaded chain\", 'description_long' => \"EMTEC Animalitos 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; 3D Miss Penguin design; includes a cap holder and beaded chain\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-animalitos-8gb-usb-2-0-flash-drive-gray-blue-red/1335225.p?id=1219484821711&skuId=1335225', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335225_sa.jpg\"}', 'upc' => '846143003375', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Animalitos 8GB USB 2.0 Flash Drive - Green/Pink/Red\", 'description_short' => \"EMTEC Animalitos 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; 3D Lady Turtle design; includes a cap holder and beaded chain\", 'description_long' => \"EMTEC Animalitos 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; 3D Lady Turtle design; includes a cap holder and beaded chain\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-animalitos-8gb-usb-2-0-flash-drive-green-pink-red/1335243.p?id=1219484820540&skuId=1335243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335243_sa.jpg\"}', 'upc' => '846143003368', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Swivel Series 8GB USB 2.0 Flash Drive - Pink Geometric\", 'description_short' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 8MB/sec.; for PC, Mac and Linux; capless swivel design; rubber coating\", 'description_long' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 8MB/sec.; for PC, Mac and Linux; capless swivel design; rubber coating\", 'price' => 8.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/emtec-swivel-series-8gb-usb-2-0-flash-drive-pink-geometric/1335252.p?id=1219484819024&skuId=1335252', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335252_sa.jpg\"}', 'upc' => '846143002651', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Animals in The Jungle 8GB USB 2.0 Flash Drive - Green\", 'description_short' => \"EMTEC Animals in The Jungle 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; for PC and Mac; 3D snake design; includes a cap holder and beaded chain\", 'description_long' => \"EMTEC Animals in The Jungle 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; for PC and Mac; 3D snake design; includes a cap holder and beaded chain\", 'price' => 11.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/emtec-animals-in-the-jungle-8gb-usb-2-0-flash-drive-green/1335261.p?id=1219484820475&skuId=1335261', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335261_sa.jpg\"}', 'upc' => '846143002118', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - El Chavo Series 8GB USB 2.0 Flash Drive - Black/Yellow/Red\", 'description_short' => \"EMTEC El Chavo Series 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Quico design; includes a cap holder with chain\", 'description_long' => \"EMTEC El Chavo Series 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Quico design; includes a cap holder with chain\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-el-chavo-series-8gb-usb-2-0-flash-drive-black-yellow-red/1335289.p?id=1219484819038&skuId=1335289', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335289_sa.jpg\"}', 'upc' => '846143003061', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Smiley World 8GB USB 2.0 Flash Drive - Purple\", 'description_short' => \"EMTEC Smiley World 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; rubber material; 3D Yum-Yum design; includes a cap holder with chain\", 'description_long' => \"EMTEC Smiley World 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; rubber material; 3D Yum-Yum design; includes a cap holder with chain\", 'price' => 10.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/emtec-smiley-world-8gb-usb-2-0-flash-drive-purple/1335298.p?id=1219484819030&skuId=1335298', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335298_sa.jpg\"}', 'upc' => '846143003283', 'provider' => 'bestbuy'],\n ['name' => \"The Tube City!: The Best of The Trashmen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tube-city-the-best-of-the-trashmen-cd/1335308.p?id=102169&skuId=1335308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335308.jpg\"}', 'upc' => '090771101129', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Animalitos 8GB USB 2.0 Flash Drive - Aqua Blue/Red/White\", 'description_short' => \"EMTEC Animalitos 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; 3D Sailor Whale design; includes a cap holder and beaded chain\", 'description_long' => \"EMTEC Animalitos 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; 3D Sailor Whale design; includes a cap holder and beaded chain\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-animalitos-8gb-usb-2-0-flash-drive-aqua-blue-red-white/1335311.p?id=1219484821257&skuId=1335311', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335311_sa.jpg\"}', 'upc' => '846143003382', 'provider' => 'bestbuy'],\n ['name' => \"Habemus Papam [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/habemus-papam-digipak-cd/1335339.p?id=3315452&skuId=1335339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335339.jpg\"}', 'upc' => '028948113354', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - C600 Click 16GB USB 2.0 Flash Drive - Yellow/Black\", 'description_short' => \"EMTEC C600 Click 16GB USB 2.0 Flash Drive: Up to 18MB/sec. read speeds; up to 8MB/sec. write speeds; PC and Mac compatible; slide-and-click opening mechanism\", 'description_long' => \"EMTEC C600 Click 16GB USB 2.0 Flash Drive: Up to 18MB/sec. read speeds; up to 8MB/sec. write speeds; PC and Mac compatible; slide-and-click opening mechanism\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-c600-click-16gb-usb-2-0-flash-drive-yellow-black/1335357.p?id=1219484820932&skuId=1335357', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335357_sa.jpg\"}', 'upc' => '846143001791', 'provider' => 'bestbuy'],\n ['name' => \"Raw 'N Alive at the Cellar, Chicago 1966! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raw-n-alive-at-the-cellar-chicago-1966-cd/1335362.p?id=98449&skuId=1335362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335362.jpg\"}', 'upc' => '090771101327', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - The Flintstones 8GB USB 2.0 Flash Drive - Orange/Blue/Black\", 'description_short' => \"EMTEC The Flintstones 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Fred Flintstone design; includes a cap holder with chain\", 'description_long' => \"EMTEC The Flintstones 8GB USB 2.0 Flash Drive: Read speeds up to 15MB/sec.; write speeds up to 5MB/sec.; for PC, Mac and Linux; soft-touch rubber material; 3D Fred Flintstone design; includes a cap holder with chain\", 'price' => 9.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/emtec-the-flintstones-8gb-usb-2-0-flash-drive-orange-blue-black/1335366.p?id=1219484820410&skuId=1335366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335366_sa.jpg\"}', 'upc' => '846143003399', 'provider' => 'bestbuy'],\n ['name' => \"25 Greatest Classics: With Top 10 Songs of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/25-greatest-classics-with-top-10-songs-of-cd/1335375.p?id=3316823&skuId=1335375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335375.jpg\"}', 'upc' => '088751208227', 'provider' => 'bestbuy'],\n ['name' => \"Out of Left Field - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-left-field-cd/1335399.p?id=104161&skuId=1335399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335399_sa.jpg\"}', 'upc' => '093624522522', 'provider' => 'bestbuy'],\n ['name' => \"I Hear Black - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-hear-black-cd/1335497.p?id=2469458&skuId=1335497&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335497.jpg\"}', 'upc' => '075678247620', 'provider' => 'bestbuy'],\n ['name' => \"Alibis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alibis-cd/1335512.p?id=88826&skuId=1335512&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335512', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335512_sa.jpg\"}', 'upc' => '075678248320', 'provider' => 'bestbuy'],\n ['name' => \"Lips: Party Classics - PRE-OWNED - Xbox 360\", 'description_short' => \"Belt out 40 classic hit songs\", 'description_long' => \"Belt out 40 classic hit songs\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lips-party-classics-pre-owned-xbox-360/1335874.p?id=1218251231650&skuId=1335874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335874_sa.jpg\"}', 'upc' => '799007784326', 'provider' => 'bestbuy'],\n ['name' => \"Flat Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flat-out-cd/1335889.p?id=70706&skuId=1335889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1335889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1335\\/1335889_sa.jpg\"}', 'upc' => '798387940025', 'provider' => 'bestbuy'],\n ['name' => \"Motorola - Wi-Fi Baby Monitor - Black\", 'description_short' => \"MOTOROLA Wi-Fi Baby Monitor: Range of up to 540&#039;; delivers live video and audio; night vision mode; remote pan, tilt and zoom; MJPEG video compression; compatible with iOS and Android devices\", 'description_long' => \"MOTOROLA Wi-Fi Baby Monitor: Range of up to 540&#039;; delivers live video and audio; night vision mode; remote pan, tilt and zoom; MJPEG video compression; compatible with iOS and Android devices\", 'price' => 169.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/motorola-wi-fi-baby-monitor-black/1336004.p?id=1219487731436&skuId=1336004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1336\\/1336004_sa.jpg\"}', 'upc' => '816479010811', 'provider' => 'bestbuy'],\n ['name' => \"Motorola - Wireless Video Baby Monitor - White\", 'description_short' => \"MOTOROLA Wireless Video Baby Monitor: Infrared night vision; wireless 2.4GHz FHSS technology; 2.4&quot; color screen; 2 cameras; 2-way communication\", 'description_long' => \"MOTOROLA Wireless Video Baby Monitor: Infrared night vision; wireless 2.4GHz FHSS technology; 2.4&quot; color screen; 2 cameras; 2-way communication\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/motorola-wireless-video-baby-monitor-white/1336013.p?id=1219487723868&skuId=1336013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1336\\/1336013_sa.jpg\"}', 'upc' => '816479012129', 'provider' => 'bestbuy'],\n ['name' => \"Coverdale & Page - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coverdale-page-cd/1336174.p?id=79024&skuId=1336174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1336\\/1336174_sa.jpg\"}', 'upc' => '720642448724', 'provider' => 'bestbuy'],\n ['name' => \"Rosetta Stone TOTALe: Spanish (Latin America) Level 1 - Mac|Windows\", 'description_short' => \"Learn Spanish from native speakers with support online\", 'description_long' => \"Learn Spanish from native speakers with support online\", 'price' => 179.99, 'sale_price' => 99.99, 'url' => 'http://www.bestbuy.com/site/rosetta-stone-totale-spanish-latin-america-level-1-macwindows/1336203.p?id=1218931037678&skuId=1336203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1336\\/1336203_sa.jpg\"}', 'upc' => '794678309014', 'provider' => 'bestbuy'],\n ['name' => \"The Sun Shop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sun-shop-cd/1336307.p?id=125256&skuId=1336307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1336\\/1336307.jpg\"}', 'upc' => '028568803628', 'provider' => 'bestbuy'],\n ['name' => \"Rosetta Stone TOTALe: Spanish (Latin America) Level 1 – 3 Set - Mac|Windows\", 'description_short' => \"Learn a new language to experience a new culture\", 'description_long' => \"Learn a new language to experience a new culture\", 'price' => 399.99, 'sale_price' => 169.99, 'url' => 'http://www.bestbuy.com/site/rosetta-stone-totale-spanish-latin-america-level-1-3-set-macwindows/1336319.p?id=1218924813450&skuId=1336319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1336\\/1336319_sa.jpg\"}', 'upc' => '794678309038', 'provider' => 'bestbuy'],\n ['name' => \"Rosetta Stone TOTALe: Spanish (Latin America) Level 1 – 5 Set - Mac|Windows\", 'description_short' => \"Engage with others around the world by learning a new language\", 'description_long' => \"Engage with others around the world by learning a new language\", 'price' => 499.99, 'sale_price' => 199.99, 'url' => 'http://www.bestbuy.com/site/rosetta-stone-totale-spanish-latin-america-level-1-5-set-macwindows/1336382.p?id=1218922172292&skuId=1336382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1336\\/1336382_sa.jpg\"}', 'upc' => '794678309045', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1336737.p?id=1218252646907&skuId=1336737&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336737', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013367372', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-protection-plan-geek-squad/1336782.p?id=1218252614736&skuId=1336782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013367822', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-protection-plan-geek-squad/1336791.p?id=1218252631655&skuId=1336791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013367914', 'provider' => 'bestbuy'],\n ['name' => \"Rosetta Stone TOTALe: French Level 1 - Mac|Windows\", 'description_short' => \"Learn French from native speakers with support online\", 'description_long' => \"Learn French from native speakers with support online\", 'price' => 179.99, 'sale_price' => 99.99, 'url' => 'http://www.bestbuy.com/site/rosetta-stone-totale-french-level-1-macwindows/1336828.p?id=1218924813550&skuId=1336828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1336\\/1336828_sa.jpg\"}', 'upc' => '794678311017', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1336864.p?id=1218252618647&skuId=1336864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013368645', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1336919.p?id=1218252624874&skuId=1336919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1336919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013369192', 'provider' => 'bestbuy'],\n ['name' => \"Sanus - VLT16 Tilting TV Wall Mount for Most 51\\\" - 80\\\" Flat-Panel TVs - Black\", 'description_short' => \"Fits most 51&quot; - 80&quot; flat-panel TVs weighing up to 125 lbs.; wall mount; tilting design; steel material; ProSet adjustments; ClickStand technology; Virtual Axis technology\", 'description_long' => \"Fits most 51&quot; - 80&quot; flat-panel TVs weighing up to 125 lbs.; wall mount; tilting design; steel material; ProSet adjustments; ClickStand technology; Virtual Axis technology\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sanus-vlt16-tilting-tv-wall-mount-for-most-51-80-flat-panel-tvs-black/1337012.p?id=1219487729446&skuId=1337012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1337\\/1337012_sa.jpg\"}', 'upc' => '793795527486', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1337035.p?id=1218252618198&skuId=1337035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013370358', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1337099.p?id=1218252618142&skuId=1337099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013370990', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1337123.p?id=1218252648249&skuId=1337123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013371232', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1337257.p?id=1218252593907&skuId=1337257&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013372574', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1337284.p?id=1218252611179&skuId=1337284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013372840', 'provider' => 'bestbuy'],\n ['name' => \"Brandenburg Concerti 1-6 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brandenburg-concerti-1-6-cd/1337306.p?id=1684765&skuId=1337306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1337\\/1337306.jpg\"}', 'upc' => '090317761121', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-protection-plan-geek-squad/1337318.p?id=1218252610163&skuId=1337318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013373182', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1337336.p?id=1218252638895&skuId=1337336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013373366', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1337354.p?id=1218252585593&skuId=1337354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013373540', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1337372.p?id=1218252613501&skuId=1337372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013373724', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1337423.p?id=1218252591397&skuId=1337423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1337423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013374233', 'provider' => 'bestbuy'],\n ['name' => \"Honeywell - True HEPA Filter - White\", 'description_short' => \"Compatible with Honeywell model series 10500, 10590, 17000 and 50100 air purifiers; captures up to 99.97% of common household particles; filter life up to 5 years\", 'description_long' => \"Compatible with Honeywell model series 10500, 10590, 17000 and 50100 air purifiers; captures up to 99.97% of common household particles; filter life up to 5 years\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honeywell-true-hepa-filter-white/1338043.p?id=1219050991509&skuId=1338043', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338043_sa.jpg\"}', 'upc' => '090271000410', 'provider' => 'bestbuy'],\n ['name' => \"Honeywell - Febreze Tower Fan - Gray\", 'description_short' => \"Febreze Freshness scent control dial; Febreze Set &amp; Refresh scent cartridge; 2 speeds; remote; oscillation\", 'description_long' => \"Febreze Freshness scent control dial; Febreze Set &amp; Refresh scent cartridge; 2 speeds; remote; oscillation\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honeywell-febreze-tower-fan-gray/1338104.p?id=1219048475274&skuId=1338104', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1306\\/1306087306\\/1306087306_sa.jpg\"}', 'upc' => '092926002213', 'provider' => 'bestbuy'],\n ['name' => \"Magic Christian Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magic-christian-music-cd/1338168.p?id=2155331&skuId=1338168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338168.jpg\"}', 'upc' => '5099964243825', 'provider' => 'bestbuy'],\n ['name' => \"Sitra Ahra [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sitra-ahra-digipak-cd/1338195.p?id=2156345&skuId=1338195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338195_sa.jpg\"}', 'upc' => '727361231323', 'provider' => 'bestbuy'],\n ['name' => \"Spiral Shadow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spiral-shadow-cd/1338201.p?id=2156346&skuId=1338201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338201_sa.jpg\"}', 'upc' => '822603122022', 'provider' => 'bestbuy'],\n ['name' => \"...Featuring Norah Jones [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/-featuring-norah-jones-digipak-cd/1338229.p?id=2141760&skuId=1338229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338229_sa.jpg\"}', 'upc' => '5099990986826', 'provider' => 'bestbuy'],\n ['name' => \"Daath [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/daath-digipak-cd/1338247.p?id=2156338&skuId=1338247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338247_sa.jpg\"}', 'upc' => '727701868820', 'provider' => 'bestbuy'],\n ['name' => \"Soap: The Complete Third Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soap-the-complete-third-season-3-discs-dvd/1338265.p?id=2085262&skuId=1338265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1842\\/18426641.jpg\"}', 'upc' => '043396310285', 'provider' => 'bestbuy'],\n ['name' => \"Barenaked Ladies Are Men [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barenaked-ladies-are-men-digipak-cd/1338317.p?id=2149429&skuId=1338317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338317_sa.jpg\"}', 'upc' => '857281002014', 'provider' => 'bestbuy'],\n ['name' => \"Cardiology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cardiology-cd/1338371.p?id=2151979&skuId=1338371&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338371_sa.jpg\"}', 'upc' => '5099990770524', 'provider' => 'bestbuy'],\n ['name' => \"Ass [2010 Bonus Tracks] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ass-2010-bonus-tracks-digipak-cd/1338413.p?id=2155332&skuId=1338413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338413_sa.jpg\"}', 'upc' => '5099964243924', 'provider' => 'bestbuy'],\n ['name' => \"Barenaked Ladies Are Me [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barenaked-ladies-are-me-digipak-cd/1338431.p?id=2149949&skuId=1338431&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338431_sa.jpg\"}', 'upc' => '857281002021', 'provider' => 'bestbuy'],\n ['name' => \"Omega Wave [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-wave-digipak-cd/1338477.p?id=2156335&skuId=1338477&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338477.jpg\"}', 'upc' => '727361257620', 'provider' => 'bestbuy'],\n ['name' => \"Straight Up [2010 Bonus Tracks] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/straight-up-2010-bonus-tracks-digipak-cd/1338501.p?id=2166673&skuId=1338501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338501_sa.jpg\"}', 'upc' => '5099964244020', 'provider' => 'bestbuy'],\n ['name' => \"Soap: The Complete First Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soap-the-complete-first-season-3-discs-dvd/1338529.p?id=2085258&skuId=1338529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1842\\/18425888.jpg\"}', 'upc' => '043396310308', 'provider' => 'bestbuy'],\n ['name' => \"Stand Up - CD - DVD (with Bonus Tracks)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stand-up-cd-dvd-with-bonus-tracks/1338538.p?id=2765702&skuId=1338538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338538.jpg\"}', 'upc' => '5099963124828', 'provider' => 'bestbuy'],\n ['name' => \"Stomp The Yard: Homecoming - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stomp-the-yard-homecoming-cd-original-soundtrack/1338547.p?id=2160673&skuId=1338547&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338547_sa.jpg\"}', 'upc' => '858684002199', 'provider' => 'bestbuy'],\n ['name' => \"Vinotemp - Alcohol Breath Tester Keychain - Black/Silver\", 'description_short' => \"Measures and displays your blood alcohol content (BAC); indicator lights; compact design\", 'description_long' => \"Measures and displays your blood alcohol content (BAC); indicator lights; compact design\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vinotemp-alcohol-breath-tester-keychain-black-silver/1338574.p?id=1218251779846&skuId=1338574', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338574_rc.jpg\"}', 'upc' => '657433004916', 'provider' => 'bestbuy'],\n ['name' => \"Ernie Haase & Signature Sound: A Tribute to The Cathedral Quartet (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ernie-haase-signature-sound-a-tribute-to-the-cathedral-quartet-dvd/1338592.p?id=2157190&skuId=1338592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338592_sa.jpg\"}', 'upc' => '617884608996', 'provider' => 'bestbuy'],\n ['name' => \"Olympia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/olympia-cd/1338708.p?id=2154263&skuId=1338708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338708.jpg\"}', 'upc' => '5099990642821', 'provider' => 'bestbuy'],\n ['name' => \"No Dice [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-dice-digipak-cd/1338726.p?id=2155336&skuId=1338726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338726.jpg\"}', 'upc' => '5099990580727', 'provider' => 'bestbuy'],\n ['name' => \"James Taylor [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/james-taylor-bonus-tracks-cd/1338799.p?id=2155337&skuId=1338799&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338799', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338799.jpg\"}', 'upc' => '5099990581120', 'provider' => 'bestbuy'],\n ['name' => \"Days of Defiance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/days-of-defiance-cd/1338826.p?id=2156340&skuId=1338826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338826_sa.jpg\"}', 'upc' => '727701867724', 'provider' => 'bestbuy'],\n ['name' => \"Soap: The Complete Fourth Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soap-the-complete-fourth-season-3-discs-dvd/1338835.p?id=2085259&skuId=1338835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1842\\/18425897.jpg\"}', 'upc' => '043396310315', 'provider' => 'bestbuy'],\n ['name' => \"Soap: The Complete Second Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soap-the-complete-second-season-3-discs-dvd/1338853.p?id=2085260&skuId=1338853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1842\\/18426623.jpg\"}', 'upc' => '043396310292', 'provider' => 'bestbuy'],\n ['name' => \"Epicureanist - Connoisseur Wine Opener - Antique brass\", 'description_short' => \"For easily removing corks from wine bottles; antique design; includes iron and wood stand\", 'description_long' => \"For easily removing corks from wine bottles; antique design; includes iron and wood stand\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/epicureanist-connoisseur-wine-opener-antique-brass/1338862.p?id=1218251779845&skuId=1338862', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338862_rc.jpg\"}', 'upc' => '657433005067', 'provider' => 'bestbuy'],\n ['name' => \"Epicureanist - Aerating Funnel - Silver\", 'description_short' => \"Wide base; strainer; stainless-steel stand\", 'description_long' => \"Wide base; strainer; stainless-steel stand\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/epicureanist-aerating-funnel-silver/1338871.p?id=1218251779141&skuId=1338871', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338871_rc.jpg\"}', 'upc' => '657433005074', 'provider' => 'bestbuy'],\n ['name' => \"Honeywell - Febreze Tower Fan - White\", 'description_short' => \"Febreze Freshness scent control dial; Febreze Set &amp; Refresh scent cartridge; 2 speeds; remote\", 'description_long' => \"Febreze Freshness scent control dial; Febreze Set &amp; Refresh scent cartridge; 2 speeds; remote\", 'price' => 69.99, 'sale_price' => 59.99, 'url' => 'http://www.bestbuy.com/site/honeywell-febreze-tower-fan-white/1338962.p?id=1219048476614&skuId=1338962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338962_sc.jpg\"}', 'upc' => '092926110246', 'provider' => 'bestbuy'],\n ['name' => \"Ben 10 Alien Force: Vilgax Attacks - PRE-OWNED - Xbox 360\", 'description_short' => \"Control Ben and 10 of his alien forms as you battle intergalactic villains\", 'description_long' => \"Control Ben and 10 of his alien forms as you battle intergalactic villains\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ben-10-alien-force-vilgax-attacks-pre-owned-xbox-360/1338999.p?id=1218251719777&skuId=1338999&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1338999', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1338\\/1338999_sa.jpg\"}', 'upc' => '799007761426', 'provider' => 'bestbuy'],\n ['name' => \"Motorola - Wireless Video Baby Monitor - White\", 'description_short' => \"MOTOROLA Wireless Video Baby Monitor: 2.4GHz signal transmission; color screen; high-sensitivity microphone; room temperature monitoring; visual sound level indicator; travel case\", 'description_long' => \"MOTOROLA Wireless Video Baby Monitor: 2.4GHz signal transmission; color screen; high-sensitivity microphone; room temperature monitoring; visual sound level indicator; travel case\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/motorola-wireless-video-baby-monitor-white/1339001.p?id=1219488150877&skuId=1339001', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339001_sa.jpg\"}', 'upc' => '816479011689', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band Metal Track Pack - PRE-OWNED - PlayStation 3\", 'description_short' => \"Enjoy head-banging fun to an incredible metal soundtrack\", 'description_long' => \"Enjoy head-banging fun to an incredible metal soundtrack\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-metal-track-pack-pre-owned-playstation-3/1339015.p?id=1218251721456&skuId=1339015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339015_sa.jpg\"}', 'upc' => '799007761440', 'provider' => 'bestbuy'],\n ['name' => \"Songs of Faith and Devotion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-of-faith-and-devotion-cd/1339019.p?id=80231&skuId=1339019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339019_sa.jpg\"}', 'upc' => '093624524328', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band Metal Track Pack - PRE-OWNED - PlayStation 2\", 'description_short' => \"Enjoy head-banging fun to an incredible metal soundtrack\", 'description_long' => \"Enjoy head-banging fun to an incredible metal soundtrack\", 'price' => 0.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-metal-track-pack-pre-owned-playstation-2/1339042.p?id=1218251725855&skuId=1339042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339042_sa.jpg\"}', 'upc' => '799007761471', 'provider' => 'bestbuy'],\n ['name' => \"Sudoku Ball Detective - PRE-OWNED - Nintendo DS\", 'description_short' => \"Solve a crime with the power of numbers\", 'description_long' => \"Solve a crime with the power of numbers\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sudoku-ball-detective-pre-owned-nintendo-ds/1339088.p?id=1218251717989&skuId=1339088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339088_sa.jpg\"}', 'upc' => '799007761495', 'provider' => 'bestbuy'],\n ['name' => \"Recollections - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/recollections-cd/1339108.p?id=78802&skuId=1339108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339108_sa.jpg\"}', 'upc' => '016351531124', 'provider' => 'bestbuy'],\n ['name' => \"Smithsonian Collection of Jazz Piano, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smithsonian-collection-of-jazz-piano-vol-3-cd-various/1339117.p?id=307182&skuId=1339117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '033251139328', 'provider' => 'bestbuy'],\n ['name' => \"Where the Wild Things Are - PRE-OWNED - Nintendo DS\", 'description_short' => \"Let the wild rumpus start in an all-new way\", 'description_long' => \"Let the wild rumpus start in an all-new way\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-the-wild-things-are-pre-owned-nintendo-ds/1339121.p?id=1218251725015&skuId=1339121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339121_sa.jpg\"}', 'upc' => '799007761532', 'provider' => 'bestbuy'],\n ['name' => \"The Music of O'Carolan - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-music-of-ocarolan-cd-various/1339126.p?id=93643&skuId=1339126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339126_sa.jpg\"}', 'upc' => '016351972323', 'provider' => 'bestbuy'],\n ['name' => \"Way of the Samurai 3 - PRE-OWNED - Xbox 360\", 'description_short' => \"Become a heralded hero or an infamous criminal\", 'description_long' => \"Become a heralded hero or an infamous criminal\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/way-of-the-samurai-3-pre-owned-xbox-360/1339158.p?id=1218251724767&skuId=1339158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339158_sa.jpg\"}', 'upc' => '799007761556', 'provider' => 'bestbuy'],\n ['name' => \"Battlefield: Bad Company 2 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Wreak total havoc on the battlefield\", 'description_long' => \"Wreak total havoc on the battlefield\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battlefield-bad-company-2-pre-owned-playstation-3/1339167.p?id=1218251722847&skuId=1339167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339167_sa.jpg\"}', 'upc' => '799007761563', 'provider' => 'bestbuy'],\n ['name' => \"Wacky World of Sports - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Prove your skills as a totally off-the-wall athlete\", 'description_long' => \"Prove your skills as a totally off-the-wall athlete\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wacky-world-of-sports-pre-owned-nintendo-wii/1339185.p?id=1218251720766&skuId=1339185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339185_sa.jpg\"}', 'upc' => '799007761570', 'provider' => 'bestbuy'],\n ['name' => \"Speed Zone - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Blast your way to the finish line\", 'description_long' => \"Blast your way to the finish line\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speed-zone-pre-owned-nintendo-wii/1339194.p?id=1218251722289&skuId=1339194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339194_sa.jpg\"}', 'upc' => '799007761587', 'provider' => 'bestbuy'],\n ['name' => \"Body and Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/body-and-soul-cd/1339260.p?id=1521148&skuId=1339260&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339260', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339260.jpg\"}', 'upc' => '063757700722', 'provider' => 'bestbuy'],\n ['name' => \"Conair - Curl Secret - Deep Plum Purple\", 'description_short' => \"Tourmaline ceramic curl chamber; 2 temperature settings; 3 timer settings; brushless motor; no-tangle feature\", 'description_long' => \"Tourmaline ceramic curl chamber; 2 temperature settings; 3 timer settings; brushless motor; no-tangle feature\", 'price' => 99.99, 'sale_price' => 69.99, 'url' => 'http://www.bestbuy.com/site/conair-curl-secret-deep-plum-purple/1339264.p?id=1219048476933&skuId=1339264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339264_rc.jpg\"}', 'upc' => '074108285591', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band Metal Track Pack - PRE-OWNED - Xbox 360\", 'description_short' => \"Enjoy head-banging fun to an incredible metal soundtrack\", 'description_long' => \"Enjoy head-banging fun to an incredible metal soundtrack\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-metal-track-pack-pre-owned-xbox-360/1339273.p?id=1218251723219&skuId=1339273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339273_sa.jpg\"}', 'upc' => '799007761624', 'provider' => 'bestbuy'],\n ['name' => \"Conair - Sonic Facial Body Brush - White\", 'description_short' => \"Synthetic bristles; gentle, effective cleansing; exfoliates skin; up to 90 days of results\", 'description_long' => \"Synthetic bristles; gentle, effective cleansing; exfoliates skin; up to 90 days of results\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conair-sonic-facial-body-brush-white/1339325.p?id=1219048476155&skuId=1339325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339325_rc.jpg\"}', 'upc' => '074108293336', 'provider' => 'bestbuy'],\n ['name' => \"Sacred 2: Fallen Angel - PRE-OWNED - PlayStation 3\", 'description_short' => \"Play as the Light or embrace the Shadow\", 'description_long' => \"Play as the Light or embrace the Shadow\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sacred-2-fallen-angel-pre-owned-playstation-3/1339421.p?id=1218251716361&skuId=1339421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339421_sa.jpg\"}', 'upc' => '799007761648', 'provider' => 'bestbuy'],\n ['name' => \"SpongeBob vs. The Big One: Beach Party Cook-Off - PRE-OWNED - Nintendo DS\", 'description_short' => \"Now SpongeBob&#039;s really cooking\", 'description_long' => \"Now SpongeBob&#039;s really cooking\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spongebob-vs-the-big-one-beach-party-cook-off-pre-owned-nintendo-ds/1339458.p?id=1218251716171&skuId=1339458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339458_sa.jpg\"}', 'upc' => '799007761662', 'provider' => 'bestbuy'],\n ['name' => \"NHL 10 - PRE-OWNED - Xbox 360\", 'description_short' => \"Bully and finesse your way to the Stanley Cup Championship\", 'description_long' => \"Bully and finesse your way to the Stanley Cup Championship\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nhl-10-pre-owned-xbox-360/1339476.p?id=1218251724323&skuId=1339476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339476_sa.jpg\"}', 'upc' => '799007761686', 'provider' => 'bestbuy'],\n ['name' => \"Authentic Music of the American Indian [Legacy] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/authentic-music-of-the-american-indian-legacy-cd-various/1339493.p?id=92883&skuId=1339493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339493_sa.jpg\"}', 'upc' => '076637031229', 'provider' => 'bestbuy'],\n ['name' => \"DiRT 2 - PRE-OWNED - Xbox 360\", 'description_short' => \"Experience the power and aggression of off-road racing\", 'description_long' => \"Experience the power and aggression of off-road racing\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dirt-2-pre-owned-xbox-360/1339519.p?id=1218251718957&skuId=1339519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339519_sa.jpg\"}', 'upc' => '799007761716', 'provider' => 'bestbuy'],\n ['name' => \"Damnation - PRE-OWNED - Xbox 360\", 'description_short' => \"Arm yourself for intense vertical combat in a steampunk setting\", 'description_long' => \"Arm yourself for intense vertical combat in a steampunk setting\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/damnation-pre-owned-xbox-360/1339528.p?id=1218251718578&skuId=1339528&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339528', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339528_sa.jpg\"}', 'upc' => '799007761723', 'provider' => 'bestbuy'],\n ['name' => \"Trivial Pursuit - PRE-OWNED - Xbox 360\", 'description_short' => \"The classic game gets a clever new twist\", 'description_long' => \"The classic game gets a clever new twist\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trivial-pursuit-pre-owned-xbox-360/1339537.p?id=1218251721581&skuId=1339537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339537_sa.jpg\"}', 'upc' => '799007761730', 'provider' => 'bestbuy'],\n ['name' => \"Raiden IV - PRE-OWNED - Xbox 360\", 'description_short' => \"Blast away your enemies with awesome new power\", 'description_long' => \"Blast away your enemies with awesome new power\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raiden-iv-pre-owned-xbox-360/1339546.p?id=1218251724198&skuId=1339546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339546_sa.jpg\"}', 'upc' => '799007761747', 'provider' => 'bestbuy'],\n ['name' => \"Space Bust-a-Move - PRE-OWNED - Nintendo DS\", 'description_short' => \"Battle for the galaxy till you bust\", 'description_long' => \"Battle for the galaxy till you bust\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/space-bust-a-move-pre-owned-nintendo-ds/1339555.p?id=1218251720457&skuId=1339555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339555_sa.jpg\"}', 'upc' => '799007761754', 'provider' => 'bestbuy'],\n ['name' => \"My DoItAll - PRE-OWNED - Nintendo DS\", 'description_short' => \"Get organized and stay in touch with friends at the same time\", 'description_long' => \"Get organized and stay in touch with friends at the same time\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-doitall-pre-owned-nintendo-ds/1339652.p?id=1218251722722&skuId=1339652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339652_sa.jpg\"}', 'upc' => '799007761792', 'provider' => 'bestbuy'],\n ['name' => \"The Wild Angels and Other Themes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wild-angels-and-other-themes-cd/1339661.p?id=72731&skuId=1339661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339661_sa.jpg\"}', 'upc' => '715187760721', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1339705.p?id=93274&skuId=1339705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339705.jpg\"}', 'upc' => '715187760523', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1339732.p?id=64592&skuId=1339732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339732_sa.jpg\"}', 'upc' => '715187760622', 'provider' => 'bestbuy'],\n ['name' => \"Personal Trainer: Walking - PRE-OWNED - Nintendo DS\", 'description_short' => \"Walk your way to health\", 'description_long' => \"Walk your way to health\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/personal-trainer-walking-pre-owned-nintendo-ds/1339734.p?id=1218251720830&skuId=1339734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339734_sa.jpg\"}', 'upc' => '799007761822', 'provider' => 'bestbuy'],\n ['name' => \"Dead Rising: Chop Till You Drop - PRE-OWNED - Nintendo Wii\", 'description_short' => \"This mall-going crowd is hungry for flesh, not sales\", 'description_long' => \"This mall-going crowd is hungry for flesh, not sales\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-rising-chop-till-you-drop-pre-owned-nintendo-wii/1339789.p?id=1218251719842&skuId=1339789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1339\\/1339789_sa.jpg\"}', 'upc' => '799007761860', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1339925.p?id=1218256957898&skuId=1339925&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339925', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013399250', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1339934.p?id=1218258073847&skuId=1339934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013399342', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1339943.p?id=1218258075708&skuId=1339943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013399434', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1339952.p?id=1218258077629&skuId=1339952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013399526', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1339989.p?id=1218258078084&skuId=1339989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013399892', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1339998.p?id=1218258073589&skuId=1339998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1339998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013399984', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1340001.p?id=1218258080591&skuId=1340001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1340001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013400017', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1340029.p?id=1218258077817&skuId=1340029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1340029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013400291', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1340047.p?id=1218258083236&skuId=1340047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1340047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013400475', 'provider' => 'bestbuy'],\n ['name' => \"Conair - Sonic Facial Brush - White\", 'description_short' => \"Synthetic bristles; gentle, effective cleansing; helps reduce areas of dry skin, oily patches and blemishes; up to 90 days of results\", 'description_long' => \"Synthetic bristles; gentle, effective cleansing; helps reduce areas of dry skin, oily patches and blemishes; up to 90 days of results\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conair-sonic-facial-brush-white/1340074.p?id=1219048475919&skuId=1340074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1340074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1340\\/1340074_rc.jpg\"}', 'upc' => '074108293343', 'provider' => 'bestbuy'],\n ['name' => \"Conair - Sonic Facial Brush - White\", 'description_short' => \"3 speeds; auto shutoff; waterproof design; rechargeable; includes brush head accessories\", 'description_long' => \"3 speeds; auto shutoff; waterproof design; rechargeable; includes brush head accessories\", 'price' => 79.99, 'sale_price' => 39.99, 'url' => 'http://www.bestbuy.com/site/conair-sonic-facial-brush-white/1340083.p?id=1219048477078&skuId=1340083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1340083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1340\\/1340083_rc.jpg\"}', 'upc' => '074108286796', 'provider' => 'bestbuy'],\n ['name' => \"Conair - Hot/Cold Therapy Facial Sauna - White\", 'description_short' => \"Warm steam; cool mist; red and green LED indicators; timer; automatic shutoff\", 'description_long' => \"Warm steam; cool mist; red and green LED indicators; timer; automatic shutoff\", 'price' => 49.99, 'sale_price' => 47.99, 'url' => 'http://www.bestbuy.com/site/conair-hot-cold-therapy-facial-sauna-white/1340108.p?id=1219048475917&skuId=1340108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1340108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1340\\/1340108_rc.jpg\"}', 'upc' => '074108286260', 'provider' => 'bestbuy'],\n ['name' => \"Conair - Beauty Hand Mitts - Pink\", 'description_short' => \"Heated design; 3 temperature settings; opens pores\", 'description_long' => \"Heated design; 3 temperature settings; opens pores\", 'price' => 29.99, 'sale_price' => 22.99, 'url' => 'http://www.bestbuy.com/site/conair-beauty-hand-mitts-pink/1340126.p?id=1219048475275&skuId=1340126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1340126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1340\\/1340126_sa.jpg\"}', 'upc' => '074108292513', 'provider' => 'bestbuy'],\n ['name' => \"Live at Orchestra Hall, Detroit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-orchestra-hall-detroit-cd/1340800.p?id=72104&skuId=1340800&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1340800', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1340\\/1340800_sa.jpg\"}', 'upc' => '089408332920', 'provider' => 'bestbuy'],\n ['name' => \"Lasko - Electric Convection Heater - White\", 'description_short' => \"Digital display; thermostat and timer; tip-over safety switch; automatic overheat protection; carry handles\", 'description_long' => \"Digital display; thermostat and timer; tip-over safety switch; automatic overheat protection; carry handles\", 'price' => 65.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lasko-electric-convection-heater-white/1341019.p?id=1219048475277&skuId=1341019', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341019_sa.jpg\"}', 'upc' => '046013763297', 'provider' => 'bestbuy'],\n ['name' => \"Lasko - MyHeat Personal Ceramic Heater - White\", 'description_short' => \"MyHeat concentrated personal warmth; built-in safety features; overload protection\", 'description_long' => \"MyHeat concentrated personal warmth; built-in safety features; overload protection\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lasko-myheat-personal-ceramic-heater-white/1341028.p?id=1219048475276&skuId=1341028', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341028_sa.jpg\"}', 'upc' => '046013765161', 'provider' => 'bestbuy'],\n ['name' => \"Lasko - MyHeat Personal Ceramic Heater - Purple\", 'description_short' => \"2.5 amps; MyHeat concentrated personal warmth; built-in safety features; overload protection\", 'description_long' => \"2.5 amps; MyHeat concentrated personal warmth; built-in safety features; overload protection\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lasko-myheat-personal-ceramic-heater-purple/1341073.p?id=1219048476328&skuId=1341073', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341073_sa.jpg\"}', 'upc' => '046013765109', 'provider' => 'bestbuy'],\n ['name' => \"Lasko - Xtra Air Tower Fan - Gray\", 'description_short' => \"3 speeds; electronic controls; multifunction remote; timer; widespread oscillation; easy-grip carry handle\", 'description_long' => \"3 speeds; electronic controls; multifunction remote; timer; widespread oscillation; easy-grip carry handle\", 'price' => 74.99, 'sale_price' => 69.99, 'url' => 'http://www.bestbuy.com/site/lasko-xtra-air-tower-fan-gray/1341082.p?id=1219048476871&skuId=1341082', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341082_sa.jpg\"}', 'upc' => '046013450203', 'provider' => 'bestbuy'],\n ['name' => \"Crane - 1-Gal. Ultrasonic Cool Mist Humidifier - Yellow\", 'description_short' => \"Humidifies rooms up to 250 sq. ft.; 0.3 amps; 1-gal. capacity; up to 2.1-gal. output per day; auto shutoff safety sensor; whisper-quiet operation\", 'description_long' => \"Humidifies rooms up to 250 sq. ft.; 0.3 amps; 1-gal. capacity; up to 2.1-gal. output per day; auto shutoff safety sensor; whisper-quiet operation\", 'price' => 45.99, 'sale_price' => 30.99, 'url' => 'http://www.bestbuy.com/site/crane-1-gal-ultrasonic-cool-mist-humidifier-yellow/1341091.p?id=1219048476219&skuId=1341091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341091_500x500_sa.jpg\"}', 'upc' => '854689001724', 'provider' => 'bestbuy'],\n ['name' => \"Crane - Demineralization Filter Cartridge for Crane Germ Defense EE-8064 and EE-8065 Humidifiers - White\", 'description_short' => \"Fits Crane Germ Defense EE-8064 and EE-8065 humidifier models; helps reduce white-dust mineral deposits; extends humidifier life\", 'description_long' => \"Fits Crane Germ Defense EE-8064 and EE-8065 humidifier models; helps reduce white-dust mineral deposits; extends humidifier life\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crane-demineralization-filter-cartridge-for-crane-germ-defense-ee-8064-and-ee-8065-humidifiers-white/1341107.p?id=1219054255586&skuId=1341107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341107_sa.jpg\"}', 'upc' => '854689001212', 'provider' => 'bestbuy'],\n ['name' => \"Crane - 1-Gal. Ultrasonic Cool Mist Humidifier - Hippo\", 'description_short' => \"Humidifies rooms up to 250 sq. ft.; 0.3 amps; 1-gal. capacity; up to 2.1-gal. output per day; auto shutoff safety sensor; whisper-quiet operation\", 'description_long' => \"Humidifies rooms up to 250 sq. ft.; 0.3 amps; 1-gal. capacity; up to 2.1-gal. output per day; auto shutoff safety sensor; whisper-quiet operation\", 'price' => 49.99, 'sale_price' => 39.99, 'url' => 'http://www.bestbuy.com/site/crane-1-gal-ultrasonic-cool-mist-humidifier-hippo/1341125.p?id=1219048476806&skuId=1341125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341125_sa.jpg\"}', 'upc' => '818767010015', 'provider' => 'bestbuy'],\n ['name' => \"Germ Guardian - 3.5W UV-C Bulb for Select Germ Guardian Air Sanitizers\", 'description_short' => \"Compatible with Guardian Technologies GG1000, GG1000CA and GGH200 air sanitizers; eliminates more than 98% of targeted airborne bacteria; up to 8 months of use\", 'description_long' => \"Compatible with Guardian Technologies GG1000, GG1000CA and GGH200 air sanitizers; eliminates more than 98% of targeted airborne bacteria; up to 8 months of use\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/germ-guardian-3-5w-uv-c-bulb-for-select-germ-guardian-air-sanitizers/1341189.p?id=1219048476485&skuId=1341189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341189_sa.jpg\"}', 'upc' => '895916001278', 'provider' => 'bestbuy'],\n ['name' => \"Trumpets in Stride - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trumpets-in-stride-cd/1341202.p?id=197203&skuId=1341202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341202.jpg\"}', 'upc' => '099402116129', 'provider' => 'bestbuy'],\n ['name' => \"Blue Diamond - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-diamond-cd/1341514.p?id=87114&skuId=1341514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341514_sa.jpg\"}', 'upc' => '011661029323', 'provider' => 'bestbuy'],\n ['name' => \"Vivir Al Este Eden - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vivir-al-este-eden-cd/1341676.p?id=1576741&skuId=1341676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341676_sa.jpg\"}', 'upc' => '022924467622', 'provider' => 'bestbuy'],\n ['name' => \"Viviendo Deprisa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/viviendo-deprisa-cd/1341845.p?id=1375573&skuId=1341845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341845_sa.jpg\"}', 'upc' => '090317410029', 'provider' => 'bestbuy'],\n ['name' => \"Behind the Wheel [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/behind-the-wheel-single-cd/1341907.p?id=1576319&skuId=1341907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341907_sa.jpg\"}', 'upc' => '093624033028', 'provider' => 'bestbuy'],\n ['name' => \"Parcel of Rogues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parcel-of-rogues-cd/1341916.p?id=100260&skuId=1341916&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1341916', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1341\\/1341916_sa.jpg\"}', 'upc' => '016351794529', 'provider' => 'bestbuy'],\n ['name' => \"ViewSonic - 21.5\\\" LED HD Monitor - Black\", 'description_short' => \"5 ms response time; 10,000,000:1 MEGA dynamic contrast ratio (1000:1 typical); 250 cd/m&#178; brightness; 1920 x 1080 resolution; 170&#176; horizontal and 160&#176; vertical viewing angles; DVI-D v1.3 with HDCP and VGA inputs\", 'description_long' => \"5 ms response time; 10,000,000:1 MEGA dynamic contrast ratio (1000:1 typical); 250 cd/m&#178; brightness; 1920 x 1080 resolution; 170&#176; horizontal and 160&#176; vertical viewing angles; DVI-D v1.3 with HDCP and VGA inputs\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/viewsonic-21-5-led-hd-monitor-black/1342027.p?id=1219052009925&skuId=1342027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342027_sa.jpg\"}', 'upc' => '766907722529', 'provider' => 'bestbuy'],\n ['name' => \"Cereal Killer Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cereal-killer-soundtrack-cd/1342130.p?id=84191&skuId=1342130&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342130', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342130_sa.jpg\"}', 'upc' => '614223103822', 'provider' => 'bestbuy'],\n ['name' => \"ViewSonic - 23.6\\\" LED HD Monitor - Black\", 'description_short' => \"5 ms response time; 10,000,000:1 MEGA dynamic contrast ratio (1000:1 typical); 300 cd/m&#178; brightness; 1920 x 1080 resolution; 170&#176; horizontal and 160&#176; vertical viewing angles; DVI-D v1.3 with HDCP and VGA inputs\", 'description_long' => \"5 ms response time; 10,000,000:1 MEGA dynamic contrast ratio (1000:1 typical); 300 cd/m&#178; brightness; 1920 x 1080 resolution; 170&#176; horizontal and 160&#176; vertical viewing angles; DVI-D v1.3 with HDCP and VGA inputs\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/viewsonic-23-6-led-hd-monitor-black/1342142.p?id=1219050755153&skuId=1342142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342142_sa.jpg\"}', 'upc' => '766907722949', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 9-Cell Lithium-Ion Battery for Select Dell Inspiron Laptops\", 'description_short' => \"Compatible with select Dell Inspiron laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Inspiron laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 55.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-9-cell-lithium-ion-battery-for-select-dell-inspiron-laptops/1342203.p?id=1219050990345&skuId=1342203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342203_sa.jpg\"}', 'upc' => '814352015403', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - AC Power Adapter and Charger for Select Acer Laptops - Black\", 'description_short' => \"Compatible with select Acer laptops; charges your laptop; safety fuses; smart technology\", 'description_long' => \"Compatible with select Acer laptops; charges your laptop; safety fuses; smart technology\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-ac-power-adapter-and-charger-for-select-acer-laptops-black/1342212.p?id=1219050991641&skuId=1342212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342212_sa.jpg\"}', 'upc' => '814352012235', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Dell Inspiron, Latitude and Precision Laptops\", 'description_short' => \"Compatible with select Dell Inspiron, Latitude and Precision laptops; 11.1V of power; 4300 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Inspiron, Latitude and Precision laptops; 11.1V of power; 4300 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 55.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-dell-inspiron-latitude-and-precision-laptops/1342221.p?id=1219050990142&skuId=1342221', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342221_sa.jpg\"}', 'upc' => '814352014659', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 9-Cell Lithium-Ion Battery for Select Dell Latitude and Precision Laptops\", 'description_short' => \"Compatible with select Dell Latitude and Precision laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Latitude and Precision laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 55.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-9-cell-lithium-ion-battery-for-select-dell-latitude-and-precision-laptops/1342249.p?id=1219050990470&skuId=1342249', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342249_sa.jpg\"}', 'upc' => '814352015427', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - AC Power Adapter and Charger for Select Toshiba Laptops - Black\", 'description_short' => \"Compatible with select Toshiba laptops; charges your laptop; safety fuses; smart technology\", 'description_long' => \"Compatible with select Toshiba laptops; charges your laptop; safety fuses; smart technology\", 'price' => 25.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-ac-power-adapter-and-charger-for-select-toshiba-laptops-black/1342258.p?id=1219050992243&skuId=1342258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342258_sa.jpg\"}', 'upc' => '814352012372', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 9-Cell Lithium-Ion Battery for Select Dell Latitude and Precision Laptops\", 'description_short' => \"Compatible with select Dell Latitude and Precision laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Latitude and Precision laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 55.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-9-cell-lithium-ion-battery-for-select-dell-latitude-and-precision-laptops/1342267.p?id=1219050993483&skuId=1342267', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342267_sa.jpg\"}', 'upc' => '814352014901', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - AC Power Adapter and Charger for Select IBM Laptops - Black\", 'description_short' => \"Compatible with select IBM laptops; charges your laptop; safety fuses; smart technology\", 'description_long' => \"Compatible with select IBM laptops; charges your laptop; safety fuses; smart technology\", 'price' => 25.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-ac-power-adapter-and-charger-for-select-ibm-laptops-black/1342276.p?id=1219050989953&skuId=1342276', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342276_sa.jpg\"}', 'upc' => '814352011917', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Asus Eee PC Laptops\", 'description_short' => \"Compatible with select Asus Eee PC laptops; 7.4V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Asus Eee PC laptops; 7.4V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 55.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-asus-eee-pc-laptops/1342285.p?id=1219050993158&skuId=1342285', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342285_sa.jpg\"}', 'upc' => '814352014741', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select HP Laptops\", 'description_short' => \"Compatible with select HP G-series, HDX, Pavilion and Presario laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select HP G-series, HDX, Pavilion and Presario laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-hp-laptops/1342294.p?id=1219050990976&skuId=1342294', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342294_sa.jpg\"}', 'upc' => '814352014949', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - AC Power Adapter and Charger for Select Acer Laptops and Tablets - Black\", 'description_short' => \"Compatible with select Acer laptops and tablets; charges your device; safety fuses; smart technology\", 'description_long' => \"Compatible with select Acer laptops and tablets; charges your device; safety fuses; smart technology\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-ac-power-adapter-and-charger-for-select-acer-laptops-and-tablets-black/1342319.p?id=1219050991109&skuId=1342319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342319_sa.jpg\"}', 'upc' => '814352012242', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select HP Compaq Mini Laptops\", 'description_short' => \"Compatible with select HP Compaq Mini laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select HP Compaq Mini laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-hp-compaq-mini-laptops/1342328.p?id=1219050992833&skuId=1342328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342328_500x500_sa.jpg\"}', 'upc' => '814352015687', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Dell Latitude D420 and D430 Laptop Models\", 'description_short' => \"Compatible with Dell Latitude D420 and D430 laptop models; 11.1V of power; 5200 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with Dell Latitude D420 and D430 laptop models; 11.1V of power; 5200 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 55.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-dell-latitude-d420-and-d430-laptop-models/1342337.p?id=1219050990538&skuId=1342337', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342337_sa.jpg\"}', 'upc' => '814352015090', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 12-Cell Lithium-Ion Battery for Select HP Laptops\", 'description_short' => \"Compatible with select HP laptops; 10.8V of power; 8800 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select HP laptops; 10.8V of power; 8800 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-12-cell-lithium-ion-battery-for-select-hp-laptops/1342346.p?id=1219050993544&skuId=1342346', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342346_sa.jpg\"}', 'upc' => '814352014932', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Dell Inspiron Laptops\", 'description_short' => \"Compatible with select Dell Inspiron laptops; 11.1V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Inspiron laptops; 11.1V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-dell-inspiron-laptops/1342355.p?id=1219050992965&skuId=1342355', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342355_sa.jpg\"}', 'upc' => '814352015397', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select HP/Compaq ProBook Laptops\", 'description_short' => \"Compatible with select HP/Compaq ProBook laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select HP/Compaq ProBook laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-hp-compaq-probook-laptops/1342364.p?id=1219050992761&skuId=1342364', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342364_500x500_sa.jpg\"}', 'upc' => '814352015700', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Toshiba Laptops\", 'description_short' => \"Compatible with select Toshiba Equium, Satellite and Satellite Pro laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Toshiba Equium, Satellite and Satellite Pro laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-toshiba-laptops/1342373.p?id=1219050989632&skuId=1342373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342373_sa.jpg\"}', 'upc' => '814352015298', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Asus Laptops\", 'description_short' => \"Compatible with select Asus laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Asus laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-asus-laptops/1342382.p?id=1219050991844&skuId=1342382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342382_500x500_sa.jpg\"}', 'upc' => '814352017186', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Dell Latitude and Precision Laptops\", 'description_short' => \"Compatible with select Dell Latitude and Precision laptops; 11.1V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Latitude and Precision laptops; 11.1V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-dell-latitude-and-precision-laptops/1342391.p?id=1219050987665&skuId=1342391', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342391_sa.jpg\"}', 'upc' => '814352015328', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Dell Latitude and Precision Laptops\", 'description_short' => \"Compatible with select Dell Latitude and Precision laptops; 11.1V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Latitude and Precision laptops; 11.1V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-dell-latitude-and-precision-laptops/1342406.p?id=1219050987666&skuId=1342406', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342406_sa.jpg\"}', 'upc' => '814352015502', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 9-Cell Lithium-Ion Battery for Select IBM ThinkPad Laptops\", 'description_short' => \"Compatible with select IBM ThinkPad laptops; 10.8V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select IBM ThinkPad laptops; 10.8V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 55.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-9-cell-lithium-ion-battery-for-select-ibm-thinkpad-laptops/1342415.p?id=1219050992897&skuId=1342415', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342415_sa.jpg\"}', 'upc' => '814352014628', 'provider' => 'bestbuy'],\n ['name' => \"Bangin' on Wax: The Best of the Bloods [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bangin-on-wax-the-best-of-the-bloods-pa-cd/1342416.p?id=75079&skuId=1342416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342416_sa.jpg\"}', 'upc' => '063961913826', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - AC Power Adapter and Charger for Select Sony Laptops - Black\", 'description_short' => \"Compatible with select Sony laptops; enables charging of your laptop battery; smart technology; safety fuses\", 'description_long' => \"Compatible with select Sony laptops; enables charging of your laptop battery; smart technology; safety fuses\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-ac-power-adapter-and-charger-for-select-sony-laptops-black/1342424.p?id=1219050992563&skuId=1342424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342424_sa.jpg\"}', 'upc' => '814352011931', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Dell Latitude Laptops\", 'description_short' => \"Compatible with Dell Latitude E5400, E5410, E5500, E5510 and E5520 laptop models; 11.1V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with Dell Latitude E5400, E5410, E5500, E5510 and E5520 laptop models; 11.1V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-dell-latitude-laptops/1342433.p?id=1219050991709&skuId=1342433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342433_sa.jpg\"}', 'upc' => '814352015496', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 9-Cell Lithium-Ion Battery for Select Dell Inspiron, Latitude and Vostro Laptops\", 'description_short' => \"Compatible with select Dell Inspiron, Latitude and Vostro laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Inspiron, Latitude and Vostro laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 55.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-9-cell-lithium-ion-battery-for-select-dell-inspiron-latitude-and-vostro-laptops/1342442.p?id=1219050991181&skuId=1342442', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342442_sa.jpg\"}', 'upc' => '814352015083', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select HP Laptops\", 'description_short' => \"Compatible with select HP laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select HP laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-hp-laptops/1342451.p?id=1219050993094&skuId=1342451', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342451_sa.jpg\"}', 'upc' => '814352014963', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Dell Inspiron and Vostro Laptops\", 'description_short' => \"Compatible with select Dell Inspiron and Vostro laptops; 11.1V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Inspiron and Vostro laptops; 11.1V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-dell-inspiron-and-vostro-laptops/1342479.p?id=1219050990667&skuId=1342479&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342479', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342479_sa.jpg\"}', 'upc' => '814352015540', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Toshiba Laptops\", 'description_short' => \"Compatible with select Toshiba Portege, Satellite, Satellite Pro and Tecra laptops; 11.1V of power; 4300 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Toshiba Portege, Satellite, Satellite Pro and Tecra laptops; 11.1V of power; 4300 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-toshiba-laptops/1342488.p?id=1219050990140&skuId=1342488', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342488_sa.jpg\"}', 'upc' => '814352015182', 'provider' => 'bestbuy'],\n ['name' => \"Classic Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-songs-cd/1342942.p?id=104135&skuId=1342942&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342942', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342942.jpg\"}', 'upc' => '715187761124', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Reissue] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-reissue-cd/1342960.p?id=94131&skuId=1342960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1342960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1342\\/1342960_sa.jpg\"}', 'upc' => '715187761025', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343099.p?id=1218257749517&skuId=1343099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013430991', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343105.p?id=1218257754492&skuId=1343105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013431059', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343114.p?id=1218257747617&skuId=1343114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013431141', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343123.p?id=1218257747945&skuId=1343123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013431233', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343141.p?id=1218257745150&skuId=1343141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013431417', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343169.p?id=1218257754619&skuId=1343169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013431691', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343178.p?id=1218257753769&skuId=1343178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013431783', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343187.p?id=1218257749823&skuId=1343187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013431875', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343202.p?id=1218257756603&skuId=1343202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013432025', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - Nose and Facial Hair Trimmer - Black/Stainless/Blue\", 'description_short' => \"Wet/dry trimmer; Vortex cleaning system; dual-edge blade; battery operated; ergonomic design\", 'description_long' => \"Wet/dry trimmer; Vortex cleaning system; dual-edge blade; battery operated; ergonomic design\", 'price' => 17.99, 'sale_price' => 12.99, 'url' => 'http://www.bestbuy.com/site/panasonic-nose-and-facial-hair-trimmer-black-stainless-blue/1343275.p?id=1218251723417&skuId=1343275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343275_rc.jpg\"}', 'upc' => '037988562336', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343293.p?id=1218257749946&skuId=1343293&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013432933', 'provider' => 'bestbuy'],\n ['name' => \"Cradle Rock: Lullaby Versions of... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cradle-rock-lullaby-versions-of-digipak-cd/1343309.p?id=2159082&skuId=1343309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343309_sa.jpg\"}', 'upc' => '881410006222', 'provider' => 'bestbuy'],\n ['name' => \"Wonderful and Frightening World of the Fall... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wonderful-and-frightening-world-of-the-fall-cd/1343318.p?id=2159075&skuId=1343318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343318_sa.jpg\"}', 'upc' => '607618206628', 'provider' => 'bestbuy'],\n ['name' => \"Mastermind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mastermind-cd/1343327.p?id=2159077&skuId=1343327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343327_sa.jpg\"}', 'upc' => '885470001586', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343336.p?id=1218257751798&skuId=1343336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013433367', 'provider' => 'bestbuy'],\n ['name' => \"Listen to the Banned [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/listen-to-the-banned-digipak-cd/1343345.p?id=2159073&skuId=1343345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343345_sa.jpg\"}', 'upc' => '618321523124', 'provider' => 'bestbuy'],\n ['name' => \"Balance 017°' \\\" - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/balance-017--cd/1343354.p?id=2159080&skuId=1343354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343354_sa.jpg\"}', 'upc' => '823867017949', 'provider' => 'bestbuy'],\n ['name' => \"Cradle Rock Country: Lullaby... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cradle-rock-country-lullaby-digipak-cd/1343372.p?id=2159086&skuId=1343372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343372_sa.jpg\"}', 'upc' => '881410006321', 'provider' => 'bestbuy'],\n ['name' => \"Blink of an Eye - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blink-of-an-eye-cd/1343381.p?id=2159084&skuId=1343381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343381_sa.jpg\"}', 'upc' => '700435719521', 'provider' => 'bestbuy'],\n ['name' => \"Marijuana Dreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marijuana-dreams-cd/1343405.p?id=2159090&skuId=1343405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343405.jpg\"}', 'upc' => '673795002124', 'provider' => 'bestbuy'],\n ['name' => \"Down There - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-there-cd/1343414.p?id=2159066&skuId=1343414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343414_sa.jpg\"}', 'upc' => '677517103526', 'provider' => 'bestbuy'],\n ['name' => \"Unconditional Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unconditional-love-cd/1343432.p?id=2159088&skuId=1343432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343432_sa.jpg\"}', 'upc' => '801193152923', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343441.p?id=1218257748198&skuId=1343441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013434418', 'provider' => 'bestbuy'],\n ['name' => \"Jackass 3D - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jackass-3d-cd-original-soundtrack/1343469.p?id=2159079&skuId=1343469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343469_sa.jpg\"}', 'upc' => '045778713226', 'provider' => 'bestbuy'],\n ['name' => \"Words Words Words [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/words-words-words-pa-digipak-cd/1343478.p?id=2155098&skuId=1343478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343478_sa.jpg\"}', 'upc' => '824363010120', 'provider' => 'bestbuy'],\n ['name' => \"Live from Chicago - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-chicago-cd/1343487.p?id=2159076&skuId=1343487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343487_sa.jpg\"}', 'upc' => '859219001328', 'provider' => 'bestbuy'],\n ['name' => \"Mastermind [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mastermind-digipak-cd/1343496.p?id=2159074&skuId=1343496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343496_sa.jpg\"}', 'upc' => '885470001593', 'provider' => 'bestbuy'],\n ['name' => \"One of Us - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-of-us-cd/1343502.p?id=2159068&skuId=1343502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343502.jpg\"}', 'upc' => '854024002287', 'provider' => 'bestbuy'],\n ['name' => \"The Fool [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fool-digipak-cd/1343511.p?id=2159085&skuId=1343511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343511_sa.jpg\"}', 'upc' => '883870058025', 'provider' => 'bestbuy'],\n ['name' => \"Out of the Ashes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-the-ashes-cd/1343557.p?id=2159078&skuId=1343557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343557_sa.jpg\"}', 'upc' => '885470001579', 'provider' => 'bestbuy'],\n ['name' => \"Cradle Rock: Lullaby Versions of... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cradle-rock-lullaby-versions-of-digipak-cd/1343566.p?id=2159081&skuId=1343566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343566_sa.jpg\"}', 'upc' => '881410006420', 'provider' => 'bestbuy'],\n ['name' => \"Live Your Love [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-your-love-digipak-cd/1343575.p?id=2159087&skuId=1343575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343575_sa.jpg\"}', 'upc' => '794558019729', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343618.p?id=1218257753025&skuId=1343618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013436184', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343627.p?id=1218257756992&skuId=1343627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013436276', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343636.p?id=1218257754302&skuId=1343636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013436368', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343654.p?id=1218257746696&skuId=1343654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013436542', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343672.p?id=1218257744973&skuId=1343672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013436726', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1343681.p?id=1218257750705&skuId=1343681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013436818', 'provider' => 'bestbuy'],\n ['name' => \"Original Songwriter Demos, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-songwriter-demos-vol-1-cd-various/1343881.p?id=2149324&skuId=1343881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343881_sa.jpg\"}', 'upc' => '093624963479', 'provider' => 'bestbuy'],\n ['name' => \"Confessin' the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/confessin-the-blues-cd/1343914.p?id=99260&skuId=1343914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343914_sa.jpg\"}', 'upc' => '730182602128', 'provider' => 'bestbuy'],\n ['name' => \"All I Want for Christmas [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-i-want-for-christmas-cd-dvd-cd-dvd-deluxe-edition/1343918.p?id=2155932&skuId=1343918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343918_sa.jpg\"}', 'upc' => '075678905988', 'provider' => 'bestbuy'],\n ['name' => \"Sun Records' Greatest Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sun-records-greatest-hits-cd-various/1343936.p?id=2150779&skuId=1343936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343936_sa.jpg\"}', 'upc' => '715180702926', 'provider' => 'bestbuy'],\n ['name' => \"Afrocubism [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afrocubism-digipak-cd/1343945.p?id=2149322&skuId=1343945&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343945', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343945_sa.jpg\"}', 'upc' => '075597978094', 'provider' => 'bestbuy'],\n ['name' => \"Swiss Movement [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swiss-movement-lp-vinyl/1343963.p?id=2155890&skuId=1343963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1343963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1343\\/1343963_sa.jpg\"}', 'upc' => '081227980474', 'provider' => 'bestbuy'],\n ['name' => \"Pokémon Mystery Dungeon: Explorers of Time - PRE-OWNED - Nintendo DS\", 'description_short' => \"Experience the fight and live the adventure\", 'description_long' => \"Experience the fight and live the adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pokemon-mystery-dungeon-explorers-of-time-pre-owned-nintendo-ds/1344113.p?id=1218251718643&skuId=1344113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1344\\/1344113_sc.jpg\"}', 'upc' => '799007761907', 'provider' => 'bestbuy'],\n ['name' => \"Wario Land: Shake It - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Wario&#039;s back and badder than ever\", 'description_long' => \"Wario&#039;s back and badder than ever\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wario-land-shake-it-pre-owned-nintendo-wii/1344122.p?id=1218251723807&skuId=1344122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1344\\/1344122_sa.jpg\"}', 'upc' => '799007761914', 'provider' => 'bestbuy'],\n ['name' => \"Spore Creatures - PRE-OWNED - Nintendo DS\", 'description_short' => \"Save the galaxy with a creature of your own design\", 'description_long' => \"Save the galaxy with a creature of your own design\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spore-creatures-pre-owned-nintendo-ds/1344131.p?id=1218251719968&skuId=1344131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1344\\/1344131_sa.jpg\"}', 'upc' => '799007761921', 'provider' => 'bestbuy'],\n ['name' => \"CrossworDS - PRE-OWNED - Nintendo DS\", 'description_short' => \"Spend your time sharpening your mind\", 'description_long' => \"Spend your time sharpening your mind\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crosswords-pre-owned-nintendo-ds/1344159.p?id=1218251726107&skuId=1344159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1344\\/1344159_sa.jpg\"}', 'upc' => '799007761938', 'provider' => 'bestbuy'],\n ['name' => \"Mystery P.I.: Portrait of a Thief - PRE-OWNED - Nintendo DS\", 'description_short' => \"Track down an art thief who steals rare paintings\", 'description_long' => \"Track down an art thief who steals rare paintings\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mystery-p-i--portrait-of-a-thief-pre-owned-nintendo-ds/1344177.p?id=1218251720951&skuId=1344177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1344\\/1344177_sa.jpg\"}', 'upc' => '799007761952', 'provider' => 'bestbuy'],\n ['name' => \"Turning Point: Fall of Liberty - PRE-OWNED - Xbox 360\", 'description_short' => \"Do your part to rid America from a Nazi occupation\", 'description_long' => \"Do your part to rid America from a Nazi occupation\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turning-point-fall-of-liberty-pre-owned-xbox-360/1344238.p?id=1218251722597&skuId=1344238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1344\\/1344238_sa.jpg\"}', 'upc' => '799007762003', 'provider' => 'bestbuy'],\n ['name' => \"Wii Music - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Create a virtual musical masterpiece\", 'description_long' => \"Create a virtual musical masterpiece\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wii-music-pre-owned-nintendo-wii/1344292.p?id=1218251716237&skuId=1344292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1344\\/1344292_sa.jpg\"}', 'upc' => '799007762058', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344459.p?id=1218257747946&skuId=1344459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013444592', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344477.p?id=1218257743186&skuId=1344477&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013444776', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344486.p?id=1218257747814&skuId=1344486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013444868', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344547.p?id=1218257743437&skuId=1344547&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013445476', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344556.p?id=1218257755281&skuId=1344556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013445568', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344565.p?id=1218257744843&skuId=1344565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013445650', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344592.p?id=1218257748328&skuId=1344592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013445926', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344608.p?id=1218257751614&skuId=1344608&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013446084', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344617.p?id=1218257751862&skuId=1344617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013446176', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344671.p?id=1218257750463&skuId=1344671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013446718', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344808.p?id=1218257755345&skuId=1344808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013448088', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344844.p?id=1218257750526&skuId=1344844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013448446', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344862.p?id=1218257749266&skuId=1344862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013448620', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344871.p?id=1218257747430&skuId=1344871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013448712', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344908.p?id=1218257746238&skuId=1344908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013449085', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344935.p?id=1218257743501&skuId=1344935&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344935', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013449351', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344944.p?id=1218257749700&skuId=1344944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013449443', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1344962.p?id=1218257747366&skuId=1344962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1344962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013449627', 'provider' => 'bestbuy'],\n ['name' => \"Philips Norelco - arcitec Electric Shaver Replacement Head - Black\", 'description_short' => \"Works with most Philips Norelco Series 8000 and arcitec electric shavers; V-Track Precision blades; stainless-steel construction; wet/dry operation\", 'description_long' => \"Works with most Philips Norelco Series 8000 and arcitec electric shavers; V-Track Precision blades; stainless-steel construction; wet/dry operation\", 'price' => 64.99, 'sale_price' => 63.99, 'url' => 'http://www.bestbuy.com/site/philips-norelco-arcitec-electric-shaver-replacement-head-black/1345038.p?id=1219485869870&skuId=1345038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345038_rc.jpg\"}', 'upc' => '075020046031', 'provider' => 'bestbuy'],\n ['name' => \"New Junk Aesthetic/Shit Happens... [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-junk-aesthetic-shit-happens-cd-dvd-cd-dvd-deluxe-edition/1345042.p?id=2159070&skuId=1345042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345042_sa.jpg\"}', 'upc' => '045778708222', 'provider' => 'bestbuy'],\n ['name' => \"Revisited [10/5] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revisited-10-5-cd/1345051.p?id=2153772&skuId=1345051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345051.jpg\"}', 'upc' => '075597978117', 'provider' => 'bestbuy'],\n ['name' => \"Philips Norelco - 4700 Electric Shaver - Black/Silver\", 'description_short' => \"DualPrecision heads; Aquatec technology; Pivot, Flex &amp; Float System; integrated pop-up trimmer; lithium-ion battery; up to 50 minutes of run time after a 1-hour charge\", 'description_long' => \"DualPrecision heads; Aquatec technology; Pivot, Flex &amp; Float System; integrated pop-up trimmer; lithium-ion battery; up to 50 minutes of run time after a 1-hour charge\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/philips-norelco-4700-electric-shaver-black-silver/1345092.p?id=1219485871393&skuId=1345092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345092_rc.jpg\"}', 'upc' => '075020043726', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - 12\\\" Retro Table Fan - Copper\", 'description_short' => \"Only at Best Buy\n3 speed settings; oscillating design; carry handle; removable fan guard; nonslip base; heavy-gauge metal construction; fused safety plug\", 'description_long' => \"Only at Best Buy\n3 speed settings; oscillating design; carry handle; removable fan guard; nonslip base; heavy-gauge metal construction; fused safety plug\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/insignia-12-retro-table-fan-copper/1345107.p?id=1219488150872&skuId=1345107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345107_sa.jpg\"}', 'upc' => '600603185533', 'provider' => 'bestbuy'],\n ['name' => \"Absolute Power - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/absolute-power-cd/1345112.p?id=2152037&skuId=1345112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345112.jpg\"}', 'upc' => '879822000969', 'provider' => 'bestbuy'],\n ['name' => \"Serendipity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serendipity-cd/1345158.p?id=2144849&skuId=1345158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345158_sa.jpg\"}', 'upc' => '091657003629', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1345185.p?id=1218257751341&skuId=1345185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013451859', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1345194.p?id=1218257751223&skuId=1345194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013451941', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1345219.p?id=1218257746759&skuId=1345219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013452191', 'provider' => 'bestbuy'],\n ['name' => \"Westcoast Gangsta Shit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/westcoast-gangsta-shit-cd/1345228.p?id=3205755&skuId=1345228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345228_sa.jpg\"}', 'upc' => '891970525194', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1345237.p?id=1218257754683&skuId=1345237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013452375', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1345246.p?id=1218257750642&skuId=1345246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013452467', 'provider' => 'bestbuy'],\n ['name' => \"Can't Buy a Break - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cant-buy-a-break-cd/1345253.p?id=76534&skuId=1345253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345253.jpg\"}', 'upc' => '019148500020', 'provider' => 'bestbuy'],\n ['name' => \"Payday - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/payday-cd/1345262.p?id=89435&skuId=1345262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345262.jpg\"}', 'upc' => '019148499225', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1345264.p?id=1218257749391&skuId=1345264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013452641', 'provider' => 'bestbuy'],\n ['name' => \"Undocumented Dancing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/undocumented-dancing-cd/1345271.p?id=2387624&skuId=1345271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345271_sa.jpg\"}', 'upc' => '048248112024', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1345273.p?id=1218257751286&skuId=1345273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013452733', 'provider' => 'bestbuy'],\n ['name' => \"Open House - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/open-house-cd/1345280.p?id=2305267&skuId=1345280&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345280', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345280_sa.jpg\"}', 'upc' => '048248112222', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1345282.p?id=1218257752485&skuId=1345282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013452825', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1345291.p?id=1218257745685&skuId=1345291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013452917', 'provider' => 'bestbuy'],\n ['name' => \"Danser - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/danser-cd/1345555.p?id=2718212&skuId=1345555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345555.jpg\"}', 'upc' => '884501921695', 'provider' => 'bestbuy'],\n ['name' => \"Racing Dreams (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/racing-dreams-dvd/1345743.p?id=2183238&skuId=1345743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345743_sa.jpg\"}', 'upc' => '761450722330', 'provider' => 'bestbuy'],\n ['name' => \"Dog The Bounty Hunter: Crime Is On The Run (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dog-the-bounty-hunter-crime-is-on-the-run-dvd/1345752.p?id=2113152&skuId=1345752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1861\\/18611847.jpg\"}', 'upc' => '733961224764', 'provider' => 'bestbuy'],\n ['name' => \"Mujer Divina: Homenaje a Agustín Lara - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mujer-divina-homenaje-a-agustin-lara-cd/1345825.p?id=2714356&skuId=1345825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345825_sa.jpg\"}', 'upc' => '888837396226', 'provider' => 'bestbuy'],\n ['name' => \"Amistades - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amistades-cd/1345834.p?id=2720988&skuId=1345834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345834_sa.jpg\"}', 'upc' => '097037697426', 'provider' => 'bestbuy'],\n ['name' => \"Wassaic Way - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wassaic-way-cd/1345843.p?id=2718177&skuId=1345843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345843_sa.jpg\"}', 'upc' => '634457608528', 'provider' => 'bestbuy'],\n ['name' => \"Mujer Divina: Homenaje a Agustín Lara [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mujer-divina-homenaje-a-agustin-lara-cd-dvd-cd-dvd/1345852.p?id=2691286&skuId=1345852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345852_sa.jpg\"}', 'upc' => '888837190329', 'provider' => 'bestbuy'],\n ['name' => \"Primera Fila - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/primera-fila-cd/1345861.p?id=2716284&skuId=1345861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345861_sa.jpg\"}', 'upc' => '888837155526', 'provider' => 'bestbuy'],\n ['name' => \"Blade Runner [Original Soundtrack] [SACD Hybrid] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blade-runner-original-soundtrack-sacd-hybrid-cd-original-soundtrack/1345889.p?id=2717746&skuId=1345889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345889_sa.jpg\"}', 'upc' => '780014215422', 'provider' => 'bestbuy'],\n ['name' => \"Claro Que Me Dolio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/claro-que-me-dolio-cd/1345898.p?id=2721555&skuId=1345898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345898_sa.jpg\"}', 'upc' => '097037697327', 'provider' => 'bestbuy'],\n ['name' => \"The Civil Wars [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-civil-wars-digipak-cd/1345907.p?id=2720225&skuId=1345907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1345907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1345\\/1345907_sa.jpg\"}', 'upc' => '888837385022', 'provider' => 'bestbuy'],\n ['name' => \"Wolfenstein: The New Order - PlayStation 4\", 'description_short' => \"Face off against a Nazi regime more powerful than the one in history books\", 'description_long' => \"Face off against a Nazi regime more powerful than the one in history books\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wolfenstein-the-new-order-playstation-4/1346005.p?id=1219049738021&skuId=1346005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1346005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1346\\/1346005_sa.jpg\"}', 'upc' => '093155118225', 'provider' => 'bestbuy'],\n ['name' => \"Wolfenstein: The New Order - Xbox One\", 'description_short' => \"Face off against a Nazi regime more powerful than the one in history books\", 'description_long' => \"Face off against a Nazi regime more powerful than the one in history books\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wolfenstein-the-new-order-xbox-one/1346014.p?id=1219049738018&skuId=1346014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1346014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1346\\/1346014_sa.jpg\"}', 'upc' => '093155118218', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - High-Velocity 4\\\" Mini Fan - Blue\", 'description_short' => \"Only at Best Buy\nINSIGNIA High-Velocity 4&quot; Mini Fan: Adjustable tilt-angle head; quiet motor; all-metal construction; nonslip base\", 'description_long' => \"Only at Best Buy\nINSIGNIA High-Velocity 4&quot; Mini Fan: Adjustable tilt-angle head; quiet motor; all-metal construction; nonslip base\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/insignia-high-velocity-4-mini-fan-blue/1346019.p?id=1219488150878&skuId=1346019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1346019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1346\\/1346019_sa.jpg\"}', 'upc' => '600603185502', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - 12\\\" Retro Table Fan - Stainless Steel\", 'description_short' => \"Only at Best Buy\n3 speed settings; oscillating design; carry handle; removable fan guard; nonslip base; heavy-gauge metal construction; fused safety plug\", 'description_long' => \"Only at Best Buy\n3 speed settings; oscillating design; carry handle; removable fan guard; nonslip base; heavy-gauge metal construction; fused safety plug\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/insignia-12-retro-table-fan-stainless-steel/1346028.p?id=1219488150879&skuId=1346028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1346028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1346\\/1346028_sa.jpg\"}', 'upc' => '600603185496', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - 12\\\" Retro Table Fan - Gunmetal\", 'description_short' => \"Only at Best Buy\n3 speed settings; oscillating design; carry handle; removable fan guard; nonslip base; heavy-gauge metal construction; fused safety plug\", 'description_long' => \"Only at Best Buy\n3 speed settings; oscillating design; carry handle; removable fan guard; nonslip base; heavy-gauge metal construction; fused safety plug\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/insignia-12-retro-table-fan-gunmetal/1346037.p?id=1219488150871&skuId=1346037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1346037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1346\\/1346037_sa.jpg\"}', 'upc' => '600603185489', 'provider' => 'bestbuy'],\n ['name' => \"Cheap Beer Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cheap-beer-night-cd/1346163.p?id=73664&skuId=1346163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1346163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1346\\/1346163.jpg\"}', 'upc' => '035651920124', 'provider' => 'bestbuy'],\n ['name' => \"Bad Is Beautiful - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-is-beautiful-cd/1346172.p?id=73663&skuId=1346172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1346172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1346\\/1346172.jpg\"}', 'upc' => '035651910125', 'provider' => 'bestbuy'],\n ['name' => \"Plays Bach 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-bach-2-cd/1346323.p?id=1684794&skuId=1346323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1346323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1346\\/1346323.jpg\"}', 'upc' => '727031999225', 'provider' => 'bestbuy'],\n ['name' => \"75th Birthday Celebration - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/75th-birthday-celebration-cd/1346751.p?id=66269&skuId=1346751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1346751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1346\\/1346751_sa.jpg\"}', 'upc' => '011105061926', 'provider' => 'bestbuy'],\n ['name' => \"Louis Armstrong & His Orchestra, Vol. 2 (1936-... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louis-armstrong-his-orchestra-vol-2-1936-cd/1346788.p?id=63752&skuId=1346788&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1346788', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1346\\/1346788.jpg\"}', 'upc' => '011105062022', 'provider' => 'bestbuy'],\n ['name' => \"Lords of the Fallen - PRE-OWNED - PlayStation 4\", 'description_short' => \"Do you have what it takes to do battle with a fallen god?\", 'description_long' => \"Do you have what it takes to do battle with a fallen god?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lords-of-the-fallen-pre-owned-playstation-4/1347009.p?id=1219489109616&skuId=1347009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347009_sa.jpg\"}', 'upc' => '799007841050', 'provider' => 'bestbuy'],\n ['name' => \"Lords of the Fallen - PRE-OWNED - Xbox One\", 'description_short' => \"Do you have what it takes to do battle with a fallen god?\", 'description_long' => \"Do you have what it takes to do battle with a fallen god?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lords-of-the-fallen-pre-owned-xbox-one/1347027.p?id=1219489109611&skuId=1347027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347027_sa.jpg\"}', 'upc' => '799007841067', 'provider' => 'bestbuy'],\n ['name' => \"BISSELL - 48-Oz. 2X Professional Deep Cleaner - Gray/Blue\", 'description_short' => \"Compatible with BISSELL, Hoover, Dirt Devil and Rug Doctor full-size deep-cleaning machines; cleans carpet and upholstery; removes stains and odors\", 'description_long' => \"Compatible with BISSELL, Hoover, Dirt Devil and Rug Doctor full-size deep-cleaning machines; cleans carpet and upholstery; removes stains and odors\", 'price' => 28.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bissell-48-oz-2x-professional-deep-cleaner-gray-blue/1347192.p?id=1218252622617&skuId=1347192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347192_sa.jpg\"}', 'upc' => '011120030563', 'provider' => 'bestbuy'],\n ['name' => \"Plays Liszt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-liszt-cd/1347297.p?id=1677035&skuId=1347297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347297.jpg\"}', 'upc' => '090266141524', 'provider' => 'bestbuy'],\n ['name' => \"BISSELL - 60-Oz. 2X Spring Breeze Deep Cleaner - Blue\", 'description_short' => \"Upright deep cleaner; spring breeze scent; 2x concentrated\", 'description_long' => \"Upright deep cleaner; spring breeze scent; 2x concentrated\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bissell-60-oz-2x-spring-breeze-deep-cleaner-blue/1347299.p?id=1218252646844&skuId=1347299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347299_sa.jpg\"}', 'upc' => '011120030778', 'provider' => 'bestbuy'],\n ['name' => \"BISSELL - Perfect Sweep Turbo Cordless Rechargeable Sweeper - Gray\", 'description_short' => \"Edge cleaning; cordless design; up to 60 minutes of cleaning time; rechargeable battery; powerful brushes clean crumbs, dirt and pet hair\", 'description_long' => \"Edge cleaning; cordless design; up to 60 minutes of cleaning time; rechargeable battery; powerful brushes clean crumbs, dirt and pet hair\", 'price' => 39.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/bissell-perfect-sweep-turbo-cordless-rechargeable-sweeper-gray/1347314.p?id=1218252633406&skuId=1347314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347314_sa.jpg\"}', 'upc' => '011120020076', 'provider' => 'bestbuy'],\n ['name' => \"StarTech - Point-to-Point VGA Video Extender Over Cat-5 Kit - Black\", 'description_short' => \"From our expanded online assortment; lets you connect a VGA display or projector remotely up to 250&#039; away; transmits a signal via standard Ethernet cable\", 'description_long' => \"From our expanded online assortment; lets you connect a VGA display or projector remotely up to 250&#039; away; transmits a signal via standard Ethernet cable\", 'price' => 126.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/startech-point-to-point-vga-video-extender-over-cat-5-kit-black/1347429.p?id=1218251780724&skuId=1347429', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347429_sa.jpg\"}', 'upc' => '065030835398', 'provider' => 'bestbuy'],\n ['name' => \"Low Rider 5 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/low-rider-5-cd-various/1347661.p?id=2281168&skuId=1347661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347661_sa.jpg\"}', 'upc' => '039405105027', 'provider' => 'bestbuy'],\n ['name' => \"BISSELL - SpotBot Pet Portable Deep Cleaner - Silver Sparkle\", 'description_short' => \"Deep Reach technology; preset cleaning cycles; hose and tool storage\", 'description_long' => \"Deep Reach technology; preset cleaning cycles; hose and tool storage\", 'price' => 149.99, 'sale_price' => 146.99, 'url' => 'http://www.bestbuy.com/site/bissell-spotbot-pet-portable-deep-cleaner-silver-sparkle/1347914.p?id=1218252613723&skuId=1347914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347914_rc.jpg\"}', 'upc' => '011120018363', 'provider' => 'bestbuy'],\n ['name' => \"DigiPower - BN1 Regarchargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Sony digital camera models; provides uninterrupted power\", 'description_long' => \"Compatible with select Sony digital camera models; provides uninterrupted power\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digipower-bn1-regarchargeable-lithium-ion-battery-black/1347932.p?id=1218252933609&skuId=1347932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347932_sa.jpg\"}', 'upc' => '758302636020', 'provider' => 'bestbuy'],\n ['name' => \"StarTech - 1-Port Low-Profile PCI Parallel Adapter Card - Green\", 'description_short' => \"PCI interface; up to 1.5 Mbps operating speed; supports EPP, ECP, SPP and BPP, IRQ sharing; plug-and-play installation\", 'description_long' => \"PCI interface; up to 1.5 Mbps operating speed; supports EPP, ECP, SPP and BPP, IRQ sharing; plug-and-play installation\", 'price' => 26.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/startech-1-port-low-profile-pci-parallel-adapter-card-green/1347987.p?id=1218252597074&skuId=1347987', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1347987', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1347\\/1347987_rc.jpg\"}', 'upc' => '065030788755', 'provider' => 'bestbuy'],\n ['name' => \"For Real Tho' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-real-tho-cd/1348072.p?id=89112&skuId=1348072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1348\\/1348072_sa.jpg\"}', 'upc' => '075678246227', 'provider' => 'bestbuy'],\n ['name' => \"Our Faith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/our-faith-cd/1348081.p?id=85904&skuId=1348081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1348\\/1348081.jpg\"}', 'upc' => '734273499727', 'provider' => 'bestbuy'],\n ['name' => \"Rebellious Soul [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rebellious-soul-pa-cd/1348137.p?id=2724828&skuId=1348137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1348\\/1348137_sa.jpg\"}', 'upc' => '075678684494', 'provider' => 'bestbuy'],\n ['name' => \"String Quintet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/string-quintet-cd/1348713.p?id=1760459&skuId=1348713&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1348\\/1348713.jpg\"}', 'upc' => '730099538824', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1348877.p?id=1218253346942&skuId=1348877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013488770', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1348886.p?id=1218253345328&skuId=1348886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013488862', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1348904.p?id=1218253346519&skuId=1348904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013489043', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1348913.p?id=1218253342966&skuId=1348913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013489135', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1348922.p?id=1218253342725&skuId=1348922&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348922', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013489227', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1348931.p?id=1218253347141&skuId=1348931&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013489319', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1348968.p?id=1218253818653&skuId=1348968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013489685', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1348986.p?id=1218253819995&skuId=1348986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013489869', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1348995.p?id=1218253817175&skuId=1348995&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1348995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013489951', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349002.p?id=1218253817337&skuId=1349002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013490025', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349011.p?id=1218253819351&skuId=1349011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013490117', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349048.p?id=1218253819288&skuId=1349048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013490483', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349057.p?id=1218253818075&skuId=1349057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013490575', 'provider' => 'bestbuy'],\n ['name' => \"Electric Peace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/electric-peace-cd/1349066.p?id=2725359&skuId=1349066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1349\\/1349066_sa.jpg\"}', 'upc' => '607618212520', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1349075.p?id=1218253818768&skuId=1349075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013490759', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1349084.p?id=1218253819798&skuId=1349084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013490841', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 279.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349093.p?id=1218257744974&skuId=1349093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013490933', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 309.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349109.p?id=1218253820321&skuId=1349109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013491091', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349118.p?id=1218253817282&skuId=1349118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013491183', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349127.p?id=1218253820384&skuId=1349127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013491275', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349136.p?id=1218253819406&skuId=1349136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013491367', 'provider' => 'bestbuy'],\n ['name' => \"Wind & Brass Concerti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wind-brass-concerti-cd/1349142.p?id=1777273&skuId=1349142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '030099538627', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349233.p?id=1218253818469&skuId=1349233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013492333', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 569.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349367.p?id=1218253819162&skuId=1349367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013493675', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349376.p?id=1218253817174&skuId=1349376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013493767', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Geek Squad Protection\", 'description_short' => \"5-Year Standard Geek Squad Protection\", 'description_long' => \"5-Year Standard Geek Squad Protection\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-geek-squad-protection/1349385.p?id=1218253818965&skuId=1349385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400013493859', 'provider' => 'bestbuy'],\n ['name' => \"Golden Piano Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-piano-hits-cd/1349552.p?id=89419&skuId=1349552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1349\\/1349552.jpg\"}', 'upc' => '052824211322', 'provider' => 'bestbuy'],\n ['name' => \"Cleo's Choice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cleos-choice-cd/1349570.p?id=68389&skuId=1349570&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349570', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1349\\/1349570_sa.jpg\"}', 'upc' => '052824902428', 'provider' => 'bestbuy'],\n ['name' => \"Sex Machine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sex-machine-cd/1349927.p?id=75964&skuId=1349927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1349\\/1349927_sa.jpg\"}', 'upc' => '731451798429', 'provider' => 'bestbuy'],\n ['name' => \"Revolution of the Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revolution-of-the-mind-cd/1349945.p?id=75961&skuId=1349945&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349945', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1349\\/1349945_sa.jpg\"}', 'upc' => '731451798320', 'provider' => 'bestbuy'],\n ['name' => \"There It Is - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/there-it-is-cd/1349981.p?id=75973&skuId=1349981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1349981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1349\\/1349981.jpg\"}', 'upc' => '731451798627', 'provider' => 'bestbuy'],\n ['name' => \"Teenage Mutant Ninja Turtles: Danger of the Ooze - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Test your ninja skills against Shredder&#039;s army of nefarious mutants\", 'description_long' => \"Test your ninja skills against Shredder&#039;s army of nefarious mutants\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teenage-mutant-ninja-turtles-danger-of-the-ooze-pre-owned-nintendo-3ds/1350004.p?id=1219489109610&skuId=1350004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1350\\/1350004_sa.jpg\"}', 'upc' => '799007841098', 'provider' => 'bestbuy'],\n ['name' => \"Castle: The Complete Fifth Season [5 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/castle-the-complete-fifth-season-5-discs-dvd-boxed-set/1350026.p?id=2705383&skuId=1350026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1350\\/1350026_sa.jpg\"}', 'upc' => '786936831580', 'provider' => 'bestbuy'],\n ['name' => \"Twilight Motel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twilight-motel-cd/1350059.p?id=76101&skuId=1350059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1350\\/1350059.jpg\"}', 'upc' => '015707946520', 'provider' => 'bestbuy'],\n ['name' => \"Take Me Along for the Ride - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-me-along-for-the-ride-cd/1350068.p?id=80464&skuId=1350068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1350\\/1350068.jpg\"}', 'upc' => '015707946421', 'provider' => 'bestbuy'],\n ['name' => \"The Incredible Dorothy Donegan Trio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-incredible-dorothy-donegan-trio-cd/1350237.p?id=65738&skuId=1350237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1350\\/1350237.jpg\"}', 'upc' => '091454031825', 'provider' => 'bestbuy'],\n ['name' => \"Live at the 1990 Floating Jazz Festival - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-1990-floating-jazz-festival-cd/1350246.p?id=65737&skuId=1350246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1350\\/1350246.jpg\"}', 'upc' => '091454031221', 'provider' => 'bestbuy'],\n ['name' => \"Last of the Whorehouse Piano Players - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-of-the-whorehouse-piano-players-cd/1350264.p?id=71247&skuId=1350264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1350\\/1350264.jpg\"}', 'upc' => '091454030620', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Cookery - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-cookery-cd/1350282.p?id=72109&skuId=1350282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1350\\/1350282.jpg\"}', 'upc' => '091454014620', 'provider' => 'bestbuy'],\n ['name' => \"In Japan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-japan-cd/1350353.p?id=65216&skuId=1350353&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350353', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1350\\/1350353_sa.jpg\"}', 'upc' => '091454015429', 'provider' => 'bestbuy'],\n ['name' => \"Symphonies 3 & 6 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphonies-3-6-cd/1350781.p?id=1779419&skuId=1350781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1350\\/1350781.jpg\"}', 'upc' => '730099526821', 'provider' => 'bestbuy'],\n ['name' => \"Rodeo / Billy The Kid - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rodeo-billy-the-kid-cd/1350889.p?id=1637868&skuId=1350889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1350889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/music\\/features\\/1350889.jpg\"}', 'upc' => '730099528221', 'provider' => 'bestbuy'],\n ['name' => \"Disney Interactive Studios - Club Penguin 3-Month Membership Card - Multi\", 'description_short' => \"Join an exciting virtual playground set in a charming winter wonderland\", 'description_long' => \"Join an exciting virtual playground set in a charming winter wonderland\", 'price' => 19.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-interactive-studios-club-penguin-3-month-membership-card-multi/1351007.p?id=1219050757412&skuId=1351007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1351007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1351\\/1351007_sa.jpg\"}', 'upc' => '799366769828', 'provider' => 'bestbuy'],\n ['name' => \"Piano Concerti 11 & 22 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-concerti-11-22-cd/1351129.p?id=1685930&skuId=1351129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1351129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1351\\/1351129.jpg\"}', 'upc' => '730099520621', 'provider' => 'bestbuy'],\n ['name' => \"Trumpet Concerti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trumpet-concerti-cd/1351511.p?id=1783064&skuId=1351511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1351511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1351\\/1351511.jpg\"}', 'upc' => '730099524322', 'provider' => 'bestbuy'],\n ['name' => \"How Beautiful Is Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-beautiful-is-night-cd/1351673.p?id=70849&skuId=1351673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1351673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1351\\/1351673.jpg\"}', 'upc' => '089408332524', 'provider' => 'bestbuy'],\n ['name' => \"George Gershwin plays George Gershwin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/george-gershwin-plays-george-gershwin-cd/1351753.p?id=2273577&skuId=1351753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1351753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1351\\/1351753.jpg\"}', 'upc' => '727031948322', 'provider' => 'bestbuy'],\n ['name' => \"For the Beauty of Wynona - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-the-beauty-of-wynona-cd/1351986.p?id=88647&skuId=1351986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1351986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1351\\/1351986_sa.jpg\"}', 'upc' => '093624503026', 'provider' => 'bestbuy'],\n ['name' => \"Falling in Love Again: Great Songs from the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/falling-in-love-again-great-songs-from-the-cd/1352066.p?id=92476&skuId=1352066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1352066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1352\\/1352066_sa.jpg\"}', 'upc' => '731451446726', 'provider' => 'bestbuy'],\n ['name' => \"Pablo Honey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pablo-honey-cd/1352342.p?id=2390090&skuId=1352342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1352342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1352\\/1352342_sa.jpg\"}', 'upc' => '077778140924', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits 1990-1992 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-1990-1992-cd/1352538.p?id=102447&skuId=1352538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1352538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1352\\/1352538_sa.jpg\"}', 'upc' => '077778136729', 'provider' => 'bestbuy'],\n ['name' => \"Their Greatest Hits [1993] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/their-greatest-hits-1993-cd/1352618.p?id=2096769&skuId=1352618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1352618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1352\\/1352618.jpg\"}', 'upc' => '762185154922', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1352627.p?id=82753&skuId=1352627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1352627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1352\\/1352627.jpg\"}', 'upc' => '715187761223', 'provider' => 'bestbuy'],\n ['name' => \"I Pagliacci - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-pagliacci-cd/1352716.p?id=1677032&skuId=1352716&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1352716', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1352\\/1352716.jpg\"}', 'upc' => '028943813228', 'provider' => 'bestbuy'],\n ['name' => \"16 Big Band Hits, Vol. 5 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-big-band-hits-vol-5-cd-various/1353699.p?id=187421&skuId=1353699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1353699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1353\\/1353699_sa.jpg\"}', 'upc' => '027779560528', 'provider' => 'bestbuy'],\n ['name' => \"Carmina Burana - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carmina-burana-cd/1354475.p?id=1685523&skuId=1354475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1354475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1354\\/1354475.jpg\"}', 'upc' => '730099519625', 'provider' => 'bestbuy'],\n ['name' => \"Hungarian Dances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hungarian-dances-cd/1354643.p?id=1682222&skuId=1354643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1354643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1354\\/1354643_sa.jpg\"}', 'upc' => '730099511025', 'provider' => 'bestbuy'],\n ['name' => \"Nutcracker - CD - Highlights\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nutcracker-cd-highlights/1354965.p?id=1770264&skuId=1354965&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1354965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1354\\/1354965.jpg\"}', 'upc' => '730099505024', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Yellow\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-yellow/1355003.p?id=1219050987661&skuId=1355003', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355003_sa.jpg\"}', 'upc' => '678621120096', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Black\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-black/1355012.p?id=1219048494210&skuId=1355012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355012_sa.jpg\"}', 'upc' => '678621120171', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Glow-in-the-Dark Green\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 35.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-glow-in-the-dark-green/1355021.p?id=1219050989350&skuId=1355021', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355021_sa.jpg\"}', 'upc' => '678621120201', 'provider' => 'bestbuy'],\n ['name' => \"Adesso - SlimTouch Pro Wireless Keyboard - Black\", 'description_short' => \"Compatible with PC; USB interface; 2.4GHz wireless technology; 87 keys; 4 Internet keys\", 'description_long' => \"Compatible with PC; USB interface; 2.4GHz wireless technology; 87 keys; 4 Internet keys\", 'price' => 64.99, 'sale_price' => 61.99, 'url' => 'http://www.bestbuy.com/site/adesso-slimtouch-pro-wireless-keyboard-black/1355058.p?id=1218252931664&skuId=1355058', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355058_sa.jpg\"}', 'upc' => '783750003858', 'provider' => 'bestbuy'],\n ['name' => \"Adesso - Slim Touch Desktop Keyboard - Black\", 'description_short' => \"Compatible with PC; USB port; built-in touchpad; multimedia keys and 2 Internet hot keys\", 'description_long' => \"Compatible with PC; USB port; built-in touchpad; multimedia keys and 2 Internet hot keys\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adesso-slim-touch-desktop-keyboard-black/1355067.p?id=1218252938389&skuId=1355067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355067_sa.jpg\"}', 'upc' => '783750003612', 'provider' => 'bestbuy'],\n ['name' => \"Adesso - SlimTouch Wireless Keyboard - Black\", 'description_short' => \"Compatible with PC; 2.4GHz wireless technology; quick-connect button; built-in touchpad; 87 keys; low battery indicator; sleep mode\", 'description_long' => \"Compatible with PC; 2.4GHz wireless technology; quick-connect button; built-in touchpad; 87 keys; low battery indicator; sleep mode\", 'price' => 74.99, 'sale_price' => 69.99, 'url' => 'http://www.bestbuy.com/site/adesso-slimtouch-wireless-keyboard-black/1355085.p?id=1218252932372&skuId=1355085', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355085_sa.jpg\"}', 'upc' => '783750003810', 'provider' => 'bestbuy'],\n ['name' => \"Adesso - Mini Trackball Keyboard - Black\", 'description_short' => \"Compatible with PC; USB interface; built-in optical track ball; membrane keyboard design\", 'description_long' => \"Compatible with PC; USB interface; built-in optical track ball; membrane keyboard design\", 'price' => 47.99, 'sale_price' => 43.99, 'url' => 'http://www.bestbuy.com/site/adesso-mini-trackball-keyboard-black/1355094.p?id=1218252936665&skuId=1355094', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355094_sa.jpg\"}', 'upc' => '783750002813', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Silver\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-silver/1355128.p?id=1219050987663&skuId=1355128', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355128_sa.jpg\"}', 'upc' => '678621120089', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Purple\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-purple/1355137.p?id=1219050987677&skuId=1355137', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355137_sa.jpg\"}', 'upc' => '678621120119', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Blue\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-blue/1355146.p?id=1219050990856&skuId=1355146', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355146_sa.jpg\"}', 'upc' => '678621120140', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm Color-Changing ABS Filament 2.2 lbs. - Blue/Green/Yellow Green\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-color-changing-abs-filament-2-2-lbs-blue-green-yellow-green/1355155.p?id=1219050992311&skuId=1355155', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355155_sa.jpg\"}', 'upc' => '678621120232', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Orange\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-orange/1355164.p?id=1219050990413&skuId=1355164', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355164_sa.jpg\"}', 'upc' => '678621120126', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm Color-Changing ABS Filament 2.2 lbs. - Gray/White\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-color-changing-abs-filament-2-2-lbs-gray-white/1355173.p?id=1219050989791&skuId=1355173', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355173_sa.jpg\"}', 'upc' => '678621120249', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Green\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-green/1355182.p?id=1219050990795&skuId=1355182', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355182_sa.jpg\"}', 'upc' => '678621120195', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Natural\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-natural/1355191.p?id=1219050987658&skuId=1355191', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355191_sa.jpg\"}', 'upc' => '678621120102', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Transparent\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-transparent/1355216.p?id=1219050993218&skuId=1355216', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355216_sa.jpg\"}', 'upc' => '678621120225', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Red\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-red/1355243.p?id=1219050992443&skuId=1355243', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355243_sa.jpg\"}', 'upc' => '678621120133', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - White\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-white/1355261.p?id=1219050987687&skuId=1355261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355261_sa.jpg\"}', 'upc' => '678621120157', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Gold\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-gold/1355289.p?id=1219050993426&skuId=1355289', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355289_sa.jpg\"}', 'upc' => '678621120164', 'provider' => 'bestbuy'],\n ['name' => \"Afinia - 1.75mm ABS Filament 2.2 lbs. - Pink\", 'description_short' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'description_long' => \"Compatible with Afinia H479 3D printers and other 3D printers with an extrusion temperature of 410-482&#176;; sealed in a vacuum-packed foil bag; 2.2 lbs. of filament\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afinia-1-75mm-abs-filament-2-2-lbs-pink/1355304.p?id=1219050987684&skuId=1355304', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355304_sa.jpg\"}', 'upc' => '678621120188', 'provider' => 'bestbuy'],\n ['name' => \"4 Seasons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-seasons-cd/1355759.p?id=1677969&skuId=1355759&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355759.jpg\"}', 'upc' => '730099505628', 'provider' => 'bestbuy'],\n ['name' => \"Friend of Mine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/friend-of-mine-cd/1355777.p?id=92333&skuId=1355777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1355777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1355\\/1355777_sa.jpg\"}', 'upc' => '011671115122', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Guitar Lesson Goldmine Series 100 Rock Lessons Instructional Book and CDs - Multi\", 'description_short' => \"Instructional book with 100 lessons for rock guitar techniques and 2 audio CDs\", 'description_long' => \"Instructional book with 100 lessons for rock guitar techniques and 2 audio CDs\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-guitar-lesson-goldmine-series-100-rock-lessons-instructional-book-and-cds-multi/1356002.p?id=1219050746451&skuId=1356002', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356002_sa.jpg\"}', 'upc' => '884088528546', 'provider' => 'bestbuy'],\n ['name' => \"Texas Style - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-style-cd/1356008.p?id=102493&skuId=1356008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356008_sa.jpg\"}', 'upc' => '730182601329', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Guitar Lesson Goldmine Series 100 Blues Lessons Instructional Book and CDs - Multi\", 'description_short' => \"Instructional book with 100 lessons for blues guitar techniques and 2 audio CDs\", 'description_long' => \"Instructional book with 100 lessons for blues guitar techniques and 2 audio CDs\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-guitar-lesson-goldmine-series-100-blues-lessons-instructional-book-and-cds-multi/1356011.p?id=1219050752881&skuId=1356011', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356011_sa.jpg\"}', 'upc' => '884088528515', 'provider' => 'bestbuy'],\n ['name' => \"Jawbone - Read & Burn: A Book About Wire - Multi\", 'description_short' => \"In-depth critical guide to Wire&#039;s history and body of work\", 'description_long' => \"In-depth critical guide to Wire&#039;s history and body of work\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jawbone-read-burn-a-book-about-wire-multi/1356039.p?id=1219050756126&skuId=1356039', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356039_sa.jpg\"}', 'upc' => '884088914905', 'provider' => 'bestbuy'],\n ['name' => \"Bo Burnham: Words, Words, Words (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bo-burnham-words-words-words-dvd/1356057.p?id=2140935&skuId=1356057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356057_sa.jpg\"}', 'upc' => '097368914148', 'provider' => 'bestbuy'],\n ['name' => \"Gunsmoke: The Fourth Season, Vol. 2 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gunsmoke-the-fourth-season-vol-2-3-discs-dvd/1356066.p?id=2162432&skuId=1356066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356066_sa.jpg\"}', 'upc' => '097368957848', 'provider' => 'bestbuy'],\n ['name' => \"United States of Tara: The Second Season [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/united-states-of-tara-the-second-season-2-discs-dvd/1356075.p?id=2166479&skuId=1356075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356075.jpg\"}', 'upc' => '097368956742', 'provider' => 'bestbuy'],\n ['name' => \"Elf (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elf-blu-ray-disc-2-disc/1356084.p?id=1372801&skuId=1356084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356084_sa.jpg\"}', 'upc' => '794043141317', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Danny Elfman: Oz the Great and Powerful Soundtrack Songbook - Multi\", 'description_short' => \"Piano and keyboard songbook featuring music by Danny Elfman for the Oz the Great and Powerful soundtrack\", 'description_long' => \"Piano and keyboard songbook featuring music by Danny Elfman for the Oz the Great and Powerful soundtrack\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-danny-elfman-oz-the-great-and-powerful-soundtrack-songbook-multi/1356109.p?id=1219050758281&skuId=1356109', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356109_sa.jpg\"}', 'upc' => '884088906870', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Alicia Keys: Girl on Fire Songbook - Multi\", 'description_short' => \"Piano, vocal and guitar sheet music for Alicia Keys&#039; Girl on Fire\", 'description_long' => \"Piano, vocal and guitar sheet music for Alicia Keys&#039; Girl on Fire\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-alicia-keys-girl-on-fire-songbook-multi/1356118.p?id=1219050757481&skuId=1356118', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356118_sa.jpg\"}', 'upc' => '884088881030', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Green Day: Ukulele Play-Along Volume 25 Songbook and CD - Multi\", 'description_short' => \"Ukulele songbook for 8 of Green Day&#039;s hits\", 'description_long' => \"Ukulele songbook for 8 of Green Day&#039;s hits\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-green-day-ukulele-play-along-volume-25-songbook-and-cd-multi/1356127.p?id=1219050753938&skuId=1356127', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356127_sa.jpg\"}', 'upc' => '884088862732', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Music Pro Guide Sonar X2 Producer Beginner/Intermediate Level Instructional DVD - Multicolor\", 'description_short' => \"Comprehensive guide to Sonar X2 Producer digital audio workstation for beginner and intermediate users\", 'description_long' => \"Comprehensive guide to Sonar X2 Producer digital audio workstation for beginner and intermediate users\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-music-pro-guide-sonar-x2-producer-beginner-intermediate-level-instructional-dvd-multicolor/1356136.p?id=1219050746445&skuId=1356136', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356136_sa.jpg\"}', 'upc' => '884088878290', 'provider' => 'bestbuy'],\n ['name' => \"Music Minus One - Various Artists: Weekend Warriors - Set List 1 Songbook and CD - Multi\", 'description_short' => \"Vocal songbook for 10 popular tracks by various artists\", 'description_long' => \"Vocal songbook for 10 popular tracks by various artists\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-minus-one-various-artists-weekend-warriors-set-list-1-songbook-and-cd-multi/1356145.p?id=1219050758478&skuId=1356145', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356145_sa.jpg\"}', 'upc' => '884088914813', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Guitar Lesson Goldmine Series 100 Country Lessons Instructional Book and CDs - Multi\", 'description_short' => \"Instructional book with 100 lessons for country guitar techniques and 2 audio CDs\", 'description_long' => \"Instructional book with 100 lessons for country guitar techniques and 2 audio CDs\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-guitar-lesson-goldmine-series-100-country-lessons-instructional-book-and-cds-multi/1356154.p?id=1219050757937&skuId=1356154', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356154_sa.jpg\"}', 'upc' => '884088528577', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Guitar Lesson Goldmine Series 100 Acoustic Lessons Instructional Book and CDs - Multi\", 'description_short' => \"Instructional book with 100 lessons for acoustic guitar techniques and 2 audio CDs\", 'description_long' => \"Instructional book with 100 lessons for acoustic guitar techniques and 2 audio CDs\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-guitar-lesson-goldmine-series-100-acoustic-lessons-instructional-book-and-cds-multi/1356163.p?id=1219050754321&skuId=1356163', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356163_sa.jpg\"}', 'upc' => '884088528584', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Quick Pro Guides Mastering Auto-Tune Instructional Book and DVD - Multicolor\", 'description_short' => \"Comprehensive guide to Auto-Tune pitch correction with workflow scenarios and creative objectives\", 'description_long' => \"Comprehensive guide to Auto-Tune pitch correction with workflow scenarios and creative objectives\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-quick-pro-guides-mastering-auto-tune-instructional-book-and-dvd-multicolor/1356172.p?id=1219050758345&skuId=1356172', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356172_sa.jpg\"}', 'upc' => '884088674854', 'provider' => 'bestbuy'],\n ['name' => \"Berklee Press - Berklee Guide Audio Postproduction For Film and Television Instructional Book - Multi\", 'description_short' => \"Covers essential audio postproduction skills, including dialogue, music, sound effects and Foley effects\", 'description_long' => \"Covers essential audio postproduction skills, including dialogue, music, sound effects and Foley effects\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/berklee-press-berklee-guide-audio-postproduction-for-film-and-television-instructional-book-multi/1356181.p?id=1219050755020&skuId=1356181', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356181_sa.jpg\"}', 'upc' => '884088574635', 'provider' => 'bestbuy'],\n ['name' => \"Solo Piano - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solo-piano-cd/1356204.p?id=71652&skuId=1356204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356204_sa.jpg\"}', 'upc' => '077778059721', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Claude-Michel Schönberg and Alain Boublil: Les Misérables Soundtrack Songbook - Multi\", 'description_short' => \"Piano and keyboard songbook featuring music by Claude-Michel Sch&#246;nberg and Alain Boublil from the Les Mis&#233;rables soundtrack\", 'description_long' => \"Piano and keyboard songbook featuring music by Claude-Michel Sch&#246;nberg and Alain Boublil from the Les Mis&#233;rables soundtrack\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-claude-michel-schonberg-and-alain-boublil-les-miserables-soundtrack-songbook-multi/1356206.p?id=1219050758085&skuId=1356206', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356206_sa.jpg\"}', 'upc' => '884088909871', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Guitar Lesson Goldmine Series 100 Jazz Lessons Instructional Book and CDs - Multi\", 'description_short' => \"Instructional book with 100 lessons for jazz guitar techniques and 2 audio CDs\", 'description_long' => \"Instructional book with 100 lessons for jazz guitar techniques and 2 audio CDs\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-guitar-lesson-goldmine-series-100-jazz-lessons-instructional-book-and-cds-multi/1356215.p?id=1219050757835&skuId=1356215', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356215_sa.jpg\"}', 'upc' => '884088528560', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Pitch Perfect Soundtrack Songbook - Multi\", 'description_short' => \"Piano, vocal and guitar songbook featuring music from the Pitch Perfect soundtrack\", 'description_long' => \"Piano, vocal and guitar songbook featuring music from the Pitch Perfect soundtrack\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-pitch-perfect-soundtrack-songbook-multi/1356224.p?id=1219050753750&skuId=1356224', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356224_sa.jpg\"}', 'upc' => '884088903640', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Various Composers: Top Hits Ukulele Chord Songbook - Multi\", 'description_short' => \"Ukulele songbook for a compilation of more than 30 hits by various composers\", 'description_long' => \"Ukulele songbook for a compilation of more than 30 hits by various composers\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-various-composers-top-hits-ukulele-chord-songbook-multi/1356233.p?id=1219050753748&skuId=1356233', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356233_sa.jpg\"}', 'upc' => '884088879785', 'provider' => 'bestbuy'],\n ['name' => \"Music Minus One - Various Artists: Weekend Warriors - Set List 1 Songbook and CD - Multi\", 'description_short' => \"Drums songbook for 10 popular tracks by various artists\", 'description_long' => \"Drums songbook for 10 popular tracks by various artists\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-minus-one-various-artists-weekend-warriors-set-list-1-songbook-and-cd-multi/1356242.p?id=1219050756331&skuId=1356242', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356242_sa.jpg\"}', 'upc' => '884088914851', 'provider' => 'bestbuy'],\n ['name' => \"Music Minus One - Various Artists: Weekend Warriors - Set List 1 Songbook and CD - Multi\", 'description_short' => \"Guitar songbook for 10 popular tracks by various artists\", 'description_long' => \"Guitar songbook for 10 popular tracks by various artists\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-minus-one-various-artists-weekend-warriors-set-list-1-songbook-and-cd-multi/1356251.p?id=1219050756950&skuId=1356251', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356251_sa.jpg\"}', 'upc' => '884088914820', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Phillip Phillips: The World from the Side of the Moon Songbook - Multi\", 'description_short' => \"Piano, vocal and guitar songbook for Phillip Phillips&#039; The World from the Side of the Moon\", 'description_long' => \"Piano, vocal and guitar songbook for Phillip Phillips&#039; The World from the Side of the Moon\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-phillip-phillips-the-world-from-the-side-of-the-moon-songbook-multi/1356279.p?id=1219050754609&skuId=1356279', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356279_sa.jpg\"}', 'upc' => '884088899387', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Music Pro Guides Digital Performer 8 Beginner/Intermediate Level Instructional DVD - Multicolor\", 'description_short' => \"Comprehensive guide to Digital Performer 8 software for beginner and intermediate users\", 'description_long' => \"Comprehensive guide to Digital Performer 8 software for beginner and intermediate users\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-music-pro-guides-digital-performer-8-beginner-intermediate-level-instructional-dvd-multicolor/1356288.p?id=1219050756258&skuId=1356288', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356288_sa.jpg\"}', 'upc' => '884088878283', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Justin Bieber for Ukulele Songbook - Multi\", 'description_short' => \"Ukulele songbook featuring music by Justin Bieber\", 'description_long' => \"Ukulele songbook featuring music by Justin Bieber\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-justin-bieber-for-ukulele-songbook-multi/1356297.p?id=1219050757155&skuId=1356297', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356297_sa.jpg\"}', 'upc' => '884088884338', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Eric Clapton FAQ: All That's Left to Know About Slowhand - Multi\", 'description_short' => \"Collection of facts about the life and music of Eric Clapton\", 'description_long' => \"Collection of facts about the life and music of Eric Clapton\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-eric-clapton-faq-all-thats-left-to-know-about-slowhand-multi/1356303.p?id=1219050756515&skuId=1356303', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356303_sa.jpg\"}', 'upc' => '884088522148', 'provider' => 'bestbuy'],\n ['name' => \"Music Minus One - Various Artists: Weekend Warriors - Set List 1 Songbook and CD - Multi\", 'description_short' => \"Bass songbook for 10 popular tracks by various artists\", 'description_long' => \"Bass songbook for 10 popular tracks by various artists\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-minus-one-various-artists-weekend-warriors-set-list-1-songbook-and-cd-multi/1356312.p?id=1219050753747&skuId=1356312', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356312_sa.jpg\"}', 'upc' => '884088914837', 'provider' => 'bestbuy'],\n ['name' => \"Music Minus One - Various Artists: Weekend Warriors - Set List 1 Songbook and CD - Multi\", 'description_short' => \"Piano and keyboard songbook for 10 popular tracks by various artists\", 'description_long' => \"Piano and keyboard songbook for 10 popular tracks by various artists\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-minus-one-various-artists-weekend-warriors-set-list-1-songbook-and-cd-multi/1356349.p?id=1219050753592&skuId=1356349', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356349_sa.jpg\"}', 'upc' => '884088914844', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Justin Timberlake: The 20/20 Experience Songbook - Multi\", 'description_short' => \"Piano, vocal and guitar songbook featuring music from Justin Timberlake&#039;s The 20/20 Experience\", 'description_long' => \"Piano, vocal and guitar songbook featuring music from Justin Timberlake&#039;s The 20/20 Experience\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-justin-timberlake-the-20-20-experience-songbook-multi/1356358.p?id=1219050755799&skuId=1356358', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356358_sa.jpg\"}', 'upc' => '884088912758', 'provider' => 'bestbuy'],\n ['name' => \"Intoxicated Demons [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/intoxicated-demons-ep-cd/1356525.p?id=74227&skuId=1356525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356525.jpg\"}', 'upc' => '088561111427', 'provider' => 'bestbuy'],\n ['name' => \"Piano Quintet Op 57 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-quintet-op-57-cd/1356749.p?id=1771467&skuId=1356749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356749.jpg\"}', 'upc' => '044747215723', 'provider' => 'bestbuy'],\n ['name' => \"In on the Kill Taker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-on-the-kill-taker-cd/1356972.p?id=83055&skuId=1356972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1356972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1356\\/1356972_sa.jpg\"}', 'upc' => '718751797024', 'provider' => 'bestbuy'],\n ['name' => \"Love Has Many Faces: A Quartet, A... [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-has-many-faces-a-quartet-a-box-cd/1357103.p?id=3310354&skuId=1357103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1357103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '081227957858', 'provider' => 'bestbuy'],\n ['name' => \"Westing (By Musket and Sextant) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/westing-by-musket-and-sextant-cd/1357258.p?id=94546&skuId=1357258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1357258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1357\\/1357258_sa.jpg\"}', 'upc' => '036172901425', 'provider' => 'bestbuy'],\n ['name' => \"Dutch Courage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dutch-courage-cd/1357276.p?id=95133&skuId=1357276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1357276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1357\\/1357276_sa.jpg\"}', 'upc' => '021075115123', 'provider' => 'bestbuy'],\n ['name' => \"Royal Trux [1988] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/royal-trux-1988-cd/1357329.p?id=97471&skuId=1357329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1357329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1357\\/1357329_sa.jpg\"}', 'upc' => '036172900527', 'provider' => 'bestbuy'],\n ['name' => \"Breeding the Spawn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breeding-the-spawn-cd/1357365.p?id=100720&skuId=1357365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1357365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1357\\/1357365.jpg\"}', 'upc' => '016861911324', 'provider' => 'bestbuy'],\n ['name' => \"Suspiria - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/suspiria-cd/1357604.p?id=91876&skuId=1357604&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1357604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1357\\/1357604_sa.jpg\"}', 'upc' => '724596146026', 'provider' => 'bestbuy'],\n ['name' => \"Here Come the Lords [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/here-come-the-lords-pa-cd/1357659.p?id=89618&skuId=1357659&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1357659', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1357\\/1357659.jpg\"}', 'upc' => '724382775720', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Fighting Championship: The Ultimate 100 Greatest Fights (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-fighting-championship-the-ultimate-100-greatest-fights-dvd/1358091.p?id=2056230&skuId=1358091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358091_sa.jpg\"}', 'upc' => '013132215099', 'provider' => 'bestbuy'],\n ['name' => \"Locked Down (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/locked-down-dvd/1358107.p?id=2144824&skuId=1358107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358107_sa.jpg\"}', 'upc' => '031398127383', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Fighting Championship: The Ultimate 100 Greatest Fights (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-fighting-championship-the-ultimate-100-greatest-fights-dvd/1358116.p?id=2056230&skuId=1358116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358116_sa.jpg\"}', 'upc' => '013132215198', 'provider' => 'bestbuy'],\n ['name' => \"Hatchet (Blu-ray Disc) (Director's Cut)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hatchet-blu-ray-disc-directors-cut/1358125.p?id=1772015&skuId=1358125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358125_sa.jpg\"}', 'upc' => '013132184197', 'provider' => 'bestbuy'],\n ['name' => \"Bratz: Kidz Sleep-Over Adventure/Kidz Fairy Tales (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bratz-kidz-sleep-over-adventure-kidz-fairy-tales-dvd/1358134.p?id=2123371&skuId=1358134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358134_sa.jpg\"}', 'upc' => '012236110644', 'provider' => 'bestbuy'],\n ['name' => \"Blue Mountain State: Season 1 (2 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-mountain-state-season-1-2-disc-blu-ray-disc/1358143.p?id=2136509&skuId=1358143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358143.jpg\"}', 'upc' => '031398126676', 'provider' => 'bestbuy'],\n ['name' => \"Fred: The Movie (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fred-the-movie-dvd/1358152.p?id=2139770&skuId=1358152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358152_sa.jpg\"}', 'upc' => '031398125372', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - HDMI A/V Cable - Black\", 'description_short' => \"HDMI - 6 ft - HDMI\", 'description_long' => \"HDMI - 6 ft - HDMI\", 'price' => 32.99, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/belkin-hdmi-a-v-cable-black/1358504.p?id=1218252936029&skuId=1358504', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1305\\/1305171570\\/1305171570_sa.jpg\"}', 'upc' => '722868782880', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - USB Extension Cable - Gray\", 'description_short' => \"USB for Printer, Scanner, Hard Drive - 10 ft - Type A USB - Type A USB\", 'description_long' => \"USB for Printer, Scanner, Hard Drive - 10 ft - Type A USB - Type A USB\", 'price' => 17.99, 'sale_price' => 13.99, 'url' => 'http://www.bestbuy.com/site/belkin-usb-extension-cable-gray/1358522.p?id=1218252933608&skuId=1358522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358522_sa.jpg\"}', 'upc' => '722868711286', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - HDMI A/V Cable - Black\", 'description_short' => \"HDMI - 6 ft - HDMI\", 'description_long' => \"HDMI - 6 ft - HDMI\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/belkin-hdmi-a-v-cable-black/1358559.p?id=1218252934373&skuId=1358559', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1305\\/1305171532\\/1305171532_sa.jpg\"}', 'upc' => '722868781999', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - 6' USB Extension Cable - Gray\", 'description_short' => \"Compatible with PC; extends your USB cable; supports up to 127 devices on a daisy-chain configuration; molded-strain relief construction; PVC overmolding; Flextec cable jacket; 480 Mbps transmission speed\", 'description_long' => \"Compatible with PC; extends your USB cable; supports up to 127 devices on a daisy-chain configuration; molded-strain relief construction; PVC overmolding; Flextec cable jacket; 480 Mbps transmission speed\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/belkin-6-usb-extension-cable-gray/1358586.p?id=1218252932018&skuId=1358586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358586_rc.jpg\"}', 'upc' => '722868711279', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - HDMI A/V Cable - Black\", 'description_short' => \"HDMI - 12 ft - HDMI\", 'description_long' => \"HDMI - 12 ft - HDMI\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/belkin-hdmi-a-v-cable-black/1358629.p?id=1218252932798&skuId=1358629&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358629', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1305\\/1305171563\\/1305171563_sa.jpg\"}', 'upc' => '722868782002', 'provider' => 'bestbuy'],\n ['name' => \"A Tribute to Glenn Miller, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-tribute-to-glenn-miller-vol-1-cd-various/1358738.p?id=1526508&skuId=1358738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358738_sa.jpg\"}', 'upc' => '087455662120', 'provider' => 'bestbuy'],\n ['name' => \"A Tribute to Glenn Miller, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-tribute-to-glenn-miller-vol-2-cd-various/1358747.p?id=1526509&skuId=1358747&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358747.jpg\"}', 'upc' => '087455662229', 'provider' => 'bestbuy'],\n ['name' => \"Golden Strings' Greatest Hits, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-strings-greatest-hits-vol-1-cd/1358756.p?id=1526507&skuId=1358756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358756.jpg\"}', 'upc' => '087455661925', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-2-cd/1358765.p?id=1526512&skuId=1358765&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358765.jpg\"}', 'upc' => '087455662526', 'provider' => 'bestbuy'],\n ['name' => \"48 Polka and Waltz Medley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/48-polka-and-waltz-medley-cd/1358774.p?id=193793&skuId=1358774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358774.jpg\"}', 'upc' => '087455662625', 'provider' => 'bestbuy'],\n ['name' => \"Polka's All Time Greatest Hits, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polkas-all-time-greatest-hits-vol-1-cd-various/1358792.p?id=193814&skuId=1358792&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358792', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358792.jpg\"}', 'upc' => '087455662823', 'provider' => 'bestbuy'],\n ['name' => \"Polkas All Time Greatest Hits, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polkas-all-time-greatest-hits-vol-2-cd-various/1358809.p?id=193817&skuId=1358809&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1358809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1358\\/1358809.jpg\"}', 'upc' => '087455662922', 'provider' => 'bestbuy'],\n ['name' => \"The Wolf Among Us - PRE-OWNED - Xbox 360\", 'description_short' => \"Face the monster within in a world where fantasy is the only reality\", 'description_long' => \"Face the monster within in a world where fantasy is the only reality\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wolf-among-us-pre-owned-xbox-360/1359005.p?id=1219489109615&skuId=1359005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1359005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1359\\/1359005_sa.jpg\"}', 'upc' => '799007841104', 'provider' => 'bestbuy'],\n ['name' => \"Chauvet Lighting - Techno Strobe - Black\", 'description_short' => \"From our expanded online assortment; 75 watts; 1 to 20 flashes per second; sound active or manual speed dial; chasing via optional controller\", 'description_long' => \"From our expanded online assortment; 75 watts; 1 to 20 flashes per second; sound active or manual speed dial; chasing via optional controller\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chauvet-lighting-techno-strobe-black/1359106.p?id=1218252936452&skuId=1359106', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1359106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1359\\/1359106_rc.jpg\"}', 'upc' => '781462001513', 'provider' => 'bestbuy'],\n ['name' => \"Reference Hdcd Sampler - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reference-hdcd-sampler-cd-various/1359210.p?id=1493971&skuId=1359210&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1359210', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1359\\/1359210.jpg\"}', 'upc' => '030911100322', 'provider' => 'bestbuy'],\n ['name' => \"Chauvet Lighting - Bubble King Bubble Machine - Black\", 'description_short' => \"From our expanded online assortment; 3 double wheels; manual button; removable fluid tank; metal construction\", 'description_long' => \"From our expanded online assortment; 3 double wheels; manual button; removable fluid tank; metal construction\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chauvet-lighting-bubble-king-bubble-machine-black/1359212.p?id=1218252932656&skuId=1359212', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1359212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1359\\/1359212_rc.jpg\"}', 'upc' => '781462220556', 'provider' => 'bestbuy'],\n ['name' => \"Holliday with Mulligan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/holliday-with-mulligan-cd/1359283.p?id=85490&skuId=1359283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1359283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1359\\/1359283_sa.jpg\"}', 'upc' => '021471519129', 'provider' => 'bestbuy'],\n ['name' => \"Chauvet Lighting - 1-Quart Fog Fluid\", 'description_short' => \"From our expanded online assortment; compatible with most water-based fog machines; 1 quart of fluid\", 'description_long' => \"From our expanded online assortment; compatible with most water-based fog machines; 1 quart of fluid\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chauvet-lighting-1-quart-fog-fluid/1359346.p?id=1218252938116&skuId=1359346', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1359346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1359\\/1359346_sa.jpg\"}', 'upc' => '781462321239', 'provider' => 'bestbuy'],\n ['name' => \"Chauvet Lighting - Heavy-Duty Lighting Stand - Black\", 'description_short' => \"From our expanded online assortment; 100-lbs. load capacity; extends up to 9&#039; tall; aluminum construction\", 'description_long' => \"From our expanded online assortment; 100-lbs. load capacity; extends up to 9&#039; tall; aluminum construction\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chauvet-lighting-heavy-duty-lighting-stand-black/1359355.p?id=1218252932230&skuId=1359355', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1359355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1359\\/1359355_sa.jpg\"}', 'upc' => '781462011024', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 14\\\" Stand Fan - White\", 'description_short' => \"0.5 amps; 3 fan speeds; oscillation or fixed direction; sleep mode; timer-off function; adjustable height and head angle; remote\", 'description_long' => \"0.5 amps; 3 fan speeds; oscillation or fixed direction; sleep mode; timer-off function; adjustable height and head angle; remote\", 'price' => 109.99, 'sale_price' => 68.99, 'url' => 'http://www.bestbuy.com/site/spt-14-stand-fan-white/1360148.p?id=1219050987664&skuId=1360148', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1360148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1360\\/1360148_sa.jpg\"}', 'upc' => '876840005648', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 13,000 BTU Portable Air Conditioner - Gray/White\", 'description_short' => \"Up to 320 sq. ft. cooling capacity; digital controls with LCD; self-evaporating technology; built-in dehumidifier; 3 fan speeds; washable filter; remote\", 'description_long' => \"Up to 320 sq. ft. cooling capacity; digital controls with LCD; self-evaporating technology; built-in dehumidifier; 3 fan speeds; washable filter; remote\", 'price' => 719.99, 'sale_price' => 539.99, 'url' => 'http://www.bestbuy.com/site/spt-13000-btu-portable-air-conditioner-gray-white/1360175.p?id=1219050987667&skuId=1360175', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1360175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1360\\/1360175_sa.jpg\"}', 'upc' => '876840005259', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 10,000 BTU Portable Air Conditioner - Black/White\", 'description_short' => \"Up to 300 sq. ft. cooling capacity; digital controls with remote; self-evaporating technology; automatic dehumidifier; 2 fan settings; washable filter\", 'description_long' => \"Up to 300 sq. ft. cooling capacity; digital controls with remote; self-evaporating technology; automatic dehumidifier; 2 fan settings; washable filter\", 'price' => 469.99, 'sale_price' => 348.99, 'url' => 'http://www.bestbuy.com/site/spt-10000-btu-portable-air-conditioner-black-white/1360184.p?id=1219050993350&skuId=1360184', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1360184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1360\\/1360184_sa.jpg\"}', 'upc' => '876840005280', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 16\\\" Outdoor Misting Fan - Black/Gray\", 'description_short' => \"0.5 amps; 3 fan speeds; normal, natural and sleep modes; 3 oscillation modes; 4-nozzle misting hub; remote with LED; connects to a standard garden hose or faucet\", 'description_long' => \"0.5 amps; 3 fan speeds; normal, natural and sleep modes; 3 oscillation modes; 4-nozzle misting hub; remote with LED; connects to a standard garden hose or faucet\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-16-outdoor-misting-fan-black-gray/1360209.p?id=1219050992046&skuId=1360209', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1360209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1360\\/1360209_sa.jpg\"}', 'upc' => '876840006119', 'provider' => 'bestbuy'],\n ['name' => \"SPT - Indoor Misting Fan - White/Blue\", 'description_short' => \"1.4L water tank; approximately 140ml/hour mist output; misting fan with ultrasonic humidifier; 7 fan speeds; 14&quot; fan blade; timer-off function; head oscillation and tilt; DC motor; water-level window\", 'description_long' => \"1.4L water tank; approximately 140ml/hour mist output; misting fan with ultrasonic humidifier; 7 fan speeds; 14&quot; fan blade; timer-off function; head oscillation and tilt; DC motor; water-level window\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-indoor-misting-fan-white-blue/1360218.p?id=1219050991312&skuId=1360218', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1360218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1360\\/1360218_sa.jpg\"}', 'upc' => '876840006461', 'provider' => 'bestbuy'],\n ['name' => \"The Happy Wanderer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-happy-wanderer-cd/1360397.p?id=100010&skuId=1360397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1360397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1360\\/1360397.jpg\"}', 'upc' => '033651005322', 'provider' => 'bestbuy'],\n ['name' => \"Live and Burning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-and-burning-cd/1360583.p?id=98186&skuId=1360583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1360583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1360\\/1360583_sa.jpg\"}', 'upc' => '014551471226', 'provider' => 'bestbuy'],\n ['name' => \"In the Shadow of the City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-shadow-of-the-city-cd/1360592.p?id=103033&skuId=1360592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1360592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1360\\/1360592_sa.jpg\"}', 'upc' => '014551481324', 'provider' => 'bestbuy'],\n ['name' => \"Solid Ground - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solid-ground-cd/1360645.p?id=87684&skuId=1360645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1360645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1360\\/1360645_sa.jpg\"}', 'upc' => '016351800725', 'provider' => 'bestbuy'],\n ['name' => \"Joy & Pain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joy-pain-cd/1360921.p?id=76133&skuId=1360921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1360921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1360\\/1360921_sa.jpg\"}', 'upc' => '048021746729', 'provider' => 'bestbuy'],\n ['name' => \"The Wolf Among Us - PRE-OWNED - PlayStation 4\", 'description_short' => \"Face the monster within in a world where fantasy is the only reality\", 'description_long' => \"Face the monster within in a world where fantasy is the only reality\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wolf-among-us-pre-owned-playstation-4/1361003.p?id=1219489109618&skuId=1361003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361003_sa.jpg\"}', 'upc' => '799007841111', 'provider' => 'bestbuy'],\n ['name' => \"Zoom - H6 Handy Audio Recorder - Gray\", 'description_short' => \"Secure Digital, Secure Digital High Capacity and SDXC card slot; supports 6-track simultaneous recording; auto, back-up and prerecord functions; 2&quot; color LCD display; USB 2.0 port; up to 20 hours of operation\", 'description_long' => \"Secure Digital, Secure Digital High Capacity and SDXC card slot; supports 6-track simultaneous recording; auto, back-up and prerecord functions; 2&quot; color LCD display; USB 2.0 port; up to 20 hours of operation\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zoom-h6-handy-audio-recorder-gray/1361013.p?id=1219050916844&skuId=1361013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361013_sa.jpg\"}', 'upc' => '884354012175', 'provider' => 'bestbuy'],\n ['name' => \"How Strong Is a Woman: The Island Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-strong-is-a-woman-the-island-sessions-cd/1361029.p?id=86630&skuId=1361029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361029.jpg\"}', 'upc' => '016244405624', 'provider' => 'bestbuy'],\n ['name' => \"Singin' & Groovin': 25 Best Sing-Along Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singin-groovin-25-best-sing-along-songs-cd/1361059.p?id=2145871&skuId=1361059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361059_sa.jpg\"}', 'upc' => '081227980276', 'provider' => 'bestbuy'],\n ['name' => \"Illuminations - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/illuminations-cd/1361068.p?id=2694560&skuId=1361068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361068_sa.jpg\"}', 'upc' => '093624964964', 'provider' => 'bestbuy'],\n ['name' => \"Point of Origin [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/point-of-origin-digipak-cd/1361174.p?id=2132039&skuId=1361174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361174.jpg\"}', 'upc' => '807297158229', 'provider' => 'bestbuy'],\n ['name' => \"Fly Like an Eagle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fly-like-an-eagle-cd/1361226.p?id=2168294&skuId=1361226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361226.jpg\"}', 'upc' => '740155301033', 'provider' => 'bestbuy'],\n ['name' => \"Strings Attached - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strings-attached-cd/1361235.p?id=2166687&skuId=1361235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361235_sa.jpg\"}', 'upc' => '803607109622', 'provider' => 'bestbuy'],\n ['name' => \"Love on a Summer Afternoon: Songs of Sam Davis - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-on-a-summer-afternoon-songs-of-sam-davis-cd-original-broadway-cast/1361244.p?id=2166688&skuId=1361244&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361244', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361244.jpg\"}', 'upc' => '803607109523', 'provider' => 'bestbuy'],\n ['name' => \"Ponte Duro: The Fania All Stars Story [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ponte-duro-the-fania-all-stars-story-box-cd/1361262.p?id=2159867&skuId=1361262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361262_sa.jpg\"}', 'upc' => '846395080100', 'provider' => 'bestbuy'],\n ['name' => \"Lift - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lift-cd/1361271.p?id=2155340&skuId=1361271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361271.jpg\"}', 'upc' => '649241895343', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Bass Trax, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-bass-trax-vol-2-cd/1361298.p?id=167466&skuId=1361298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361298_sa.jpg\"}', 'upc' => '054291882821', 'provider' => 'bestbuy'],\n ['name' => \"Fantasticks-Japan Tour - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fantasticks-japan-tour-cd-original-soundtrack/1361332.p?id=2118921&skuId=1361332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361332_sa.jpg\"}', 'upc' => '021471900521', 'provider' => 'bestbuy'],\n ['name' => \"The Darkest Night of the Year [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-darkest-night-of-the-year-digipak-cd/1361369.p?id=2154863&skuId=1361369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361369_sa.jpg\"}', 'upc' => '616892992523', 'provider' => 'bestbuy'],\n ['name' => \"Ohio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ohio-cd/1361378.p?id=2155100&skuId=1361378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361378_sa.jpg\"}', 'upc' => '634457537026', 'provider' => 'bestbuy'],\n ['name' => \"Sigh No More [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sigh-no-more-lp-lp-vinyl/1361387.p?id=2115871&skuId=1361387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361387_sa.jpg\"}', 'upc' => '892038002244', 'provider' => 'bestbuy'],\n ['name' => \"Black Dub [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-dub-digipak-cd/1361401.p?id=2155341&skuId=1361401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361401.jpg\"}', 'upc' => '886977409424', 'provider' => 'bestbuy'],\n ['name' => \"Of the Blue Colour of the Sky... [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/of-the-blue-colour-of-the-sky-slipcase-cd/1361429.p?id=2156683&skuId=1361429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361429_sa.jpg\"}', 'upc' => '766929957220', 'provider' => 'bestbuy'],\n ['name' => \"Oblivion (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/oblivion-dvd/1361517.p?id=2716562&skuId=1361517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361517_sa.jpg\"}', 'upc' => '025192150555', 'provider' => 'bestbuy'],\n ['name' => \"The Place Beyond the Pines (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/the-place-beyond-the-pines-blu-ray-disc-2-disc-ultraviolet-digital-copy/1361526.p?id=2716939&skuId=1361526&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361526', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361526_sa.jpg\"}', 'upc' => '025192182983', 'provider' => 'bestbuy'],\n ['name' => \"Riddick Collection [2 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/riddick-collection-2-discs-dvd/1361535.p?id=2711871&skuId=1361535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361535_sa.jpg\"}', 'upc' => '025192190643', 'provider' => 'bestbuy'],\n ['name' => \"Smash: Season Two [4 Discs] (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smash-season-two-4-discs-boxed-set-dvd/1361544.p?id=2711870&skuId=1361544&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361544_sa.jpg\"}', 'upc' => '025192168772', 'provider' => 'bestbuy'],\n ['name' => \"The Place Beyond the Pines (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-place-beyond-the-pines-dvd/1361562.p?id=2716939&skuId=1361562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361562_sa.jpg\"}', 'upc' => '025192182976', 'provider' => 'bestbuy'],\n ['name' => \"Oblivion (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oblivion-blu-ray-disc-2-disc-ultraviolet-digital-copy/1361571.p?id=2716562&skuId=1361571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1361571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1361\\/1361571_sa.jpg\"}', 'upc' => '025192170904', 'provider' => 'bestbuy'],\n ['name' => \"Gamer (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/gamer-blu-ray-3d-3-d/1362012.p?id=2062732&skuId=1362012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/21030789.jpg\"}', 'upc' => '031398164074', 'provider' => 'bestbuy'],\n ['name' => \"Phantom: The American Musical... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/phantom-the-american-musical-cd-various/1362331.p?id=94836&skuId=1362331&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362331', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362331_sa.jpg\"}', 'upc' => '090266166022', 'provider' => 'bestbuy'],\n ['name' => \"Get Dancin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-dancin-cd/1362377.p?id=80548&skuId=1362377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362377.JPG\"}', 'upc' => '090431507520', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-cd/1362386.p?id=88561&skuId=1362386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362386_sa.jpg\"}', 'upc' => '090431509029', 'provider' => 'bestbuy'],\n ['name' => \"If Loving You Is Wrong: Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/if-loving-you-is-wrong-golden-classics-cd/1362395.p?id=86200&skuId=1362395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362395_sa.jpg\"}', 'upc' => '090431519226', 'provider' => 'bestbuy'],\n ['name' => \"Art Blakey in Sweden - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-blakey-in-sweden-cd/1362411.p?id=64350&skuId=1362411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362411_sa.jpg\"}', 'upc' => '730182204421', 'provider' => 'bestbuy'],\n ['name' => \"Bolero - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bolero-cd/1362420.p?id=1370539&skuId=1362420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362420_sa.jpg\"}', 'upc' => '030182204620', 'provider' => 'bestbuy'],\n ['name' => \"A Prayer Before Dawn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-prayer-before-dawn-cd/1362448.p?id=70613&skuId=1362448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362448.jpg\"}', 'upc' => '730182204728', 'provider' => 'bestbuy'],\n ['name' => \"Sony - Camera Case - Black\", 'description_short' => \"Designed for select cameras and camcorders, including Alpha DSLR, NEX and Cyber-shot cameras and Handycam camcorders; 3 external pouches; mesh pouches; adjustable internal partition; zippered closure\", 'description_long' => \"Designed for select cameras and camcorders, including Alpha DSLR, NEX and Cyber-shot cameras and Handycam camcorders; 3 external pouches; mesh pouches; adjustable internal partition; zippered closure\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-camera-case-black/1362455.p?id=1219049222348&skuId=1362455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362455_rc.jpg\"}', 'upc' => '027242860971', 'provider' => 'bestbuy'],\n ['name' => \"T.O.P. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/t-o-p-cd/1362457.p?id=102094&skuId=1362457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362457_sa.jpg\"}', 'upc' => '074645280523', 'provider' => 'bestbuy'],\n ['name' => \"Undertow [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/undertow-pa-cd/1362572.p?id=102000&skuId=1362572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362572_sa.jpg\"}', 'upc' => '614223105222', 'provider' => 'bestbuy'],\n ['name' => \"Zodico Blues & Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zodico-blues-boogie-cd/1362616.p?id=77358&skuId=1362616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362616_sa.jpg\"}', 'upc' => '022211703921', 'provider' => 'bestbuy'],\n ['name' => \"Only for the Lonely [Compilation] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/only-for-the-lonely-compilation-cd/1362652.p?id=100064&skuId=1362652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362652_sa.jpg\"}', 'upc' => '025218881227', 'provider' => 'bestbuy'],\n ['name' => \"Rare Stamps/I've Never Found a Girl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rare-stamps-ive-never-found-a-girl-cd/1362661.p?id=82506&skuId=1362661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362661_sa.jpg\"}', 'upc' => '025218881326', 'provider' => 'bestbuy'],\n ['name' => \"This Is Your Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-your-night-cd/1362705.p?id=262069&skuId=1362705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362705.jpg\"}', 'upc' => '732865543223', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Williams Brothers & More: Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-williams-brothers-more-live-cd/1362741.p?id=133067&skuId=1362741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362741.jpg\"}', 'upc' => '732865543728', 'provider' => 'bestbuy'],\n ['name' => \"Live in Memphis, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-memphis-vol-1-cd/1362750.p?id=111762&skuId=1362750&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362750', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362750.jpg\"}', 'upc' => '732865160024', 'provider' => 'bestbuy'],\n ['name' => \"Fortune Tellin' Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fortune-tellin-man-cd/1362796.p?id=1422771&skuId=1362796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362796.jpg\"}', 'upc' => '038153065829', 'provider' => 'bestbuy'],\n ['name' => \"Lay It on 'em Girls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lay-it-on-em-girls-cd/1362803.p?id=1395818&skuId=1362803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362803.jpg\"}', 'upc' => '038153065928', 'provider' => 'bestbuy'],\n ['name' => \"I'll Live Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-live-again-cd/1362858.p?id=120968&skuId=1362858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362858_sa.jpg\"}', 'upc' => '048021445929', 'provider' => 'bestbuy'],\n ['name' => \"Unconditional Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unconditional-love-cd/1362983.p?id=191242&skuId=1362983&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362983', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362983.jpg\"}', 'upc' => '095888700722', 'provider' => 'bestbuy'],\n ['name' => \"In the Nude [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-nude-pa-cd/1362992.p?id=89902&skuId=1362992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1362992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1362\\/1362992_sa.jpg\"}', 'upc' => '022471020028', 'provider' => 'bestbuy'],\n ['name' => \"By All Means - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/by-all-means-cd/1363116.p?id=69439&skuId=1363116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363116.jpg\"}', 'upc' => '750817920229', 'provider' => 'bestbuy'],\n ['name' => \"Early Spring - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/early-spring-cd/1363125.p?id=69440&skuId=1363125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363125.jpg\"}', 'upc' => '750817920328', 'provider' => 'bestbuy'],\n ['name' => \"Love, Fantasy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-fantasy-cd/1363134.p?id=69441&skuId=1363134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363134.jpg\"}', 'upc' => '750817920427', 'provider' => 'bestbuy'],\n ['name' => \"Club Classics 1982-1984, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/club-classics-1982-1984-vol-1-cd-various/1363161.p?id=109184&skuId=1363161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363161.jpg\"}', 'upc' => '026656273629', 'provider' => 'bestbuy'],\n ['name' => \"Alligator 20th Anniversary Tour - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alligator-20th-anniversary-tour-cd-various/1363189.p?id=1416335&skuId=1363189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363189_sa.jpg\"}', 'upc' => '014551107828', 'provider' => 'bestbuy'],\n ['name' => \"Carnaval: Latino!/Pachanga with Barretto - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carnaval-latino-pachanga-with-barretto-cd/1363198.p?id=2382694&skuId=1363198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363198.jpg\"}', 'upc' => '025218241328', 'provider' => 'bestbuy'],\n ['name' => \"Our Man in Havana - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/our-man-in-havana-cd/1363205.p?id=70635&skuId=1363205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363205_sa.jpg\"}', 'upc' => '025218242929', 'provider' => 'bestbuy'],\n ['name' => \"Black Orchid - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-orchid-cd/1363214.p?id=71445&skuId=1363214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363214_sa.jpg\"}', 'upc' => '025218243025', 'provider' => 'bestbuy'],\n ['name' => \"Evenin' Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evenin-blues-cd/1363232.p?id=104589&skuId=1363232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363232_sa.jpg\"}', 'upc' => '025218051125', 'provider' => 'bestbuy'],\n ['name' => \"Roadgame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roadgame-cd/1363250.p?id=69900&skuId=1363250&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363250', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363250.jpg\"}', 'upc' => '025218677424', 'provider' => 'bestbuy'],\n ['name' => \"Double Feature: Truck Turner/Tough Guys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-feature-truck-turner-tough-guys-cd/1363278.p?id=85056&skuId=1363278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363278.jpg\"}', 'upc' => '025218881425', 'provider' => 'bestbuy'],\n ['name' => \"Mike E. Clark's... [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mike-e-clarks-pa-digipak-cd/1363454.p?id=2157366&skuId=1363454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363454_sa.jpg\"}', 'upc' => '756504460924', 'provider' => 'bestbuy'],\n ['name' => \"Performance & Coctails [Bonus CD] [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/performance-coctails-bonus-cd-bonus-tracks-cd/1363506.p?id=2149853&skuId=1363506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363506_sa.jpg\"}', 'upc' => '600753301562', 'provider' => 'bestbuy'],\n ['name' => \"Return to the Apocalyptic City [EP] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/return-to-the-apocalyptic-city-ep-pa-cd/1363508.p?id=101484&skuId=1363508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363508.jpg\"}', 'upc' => '075678248726', 'provider' => 'bestbuy'],\n ['name' => \"Eric Clapton [Rarities Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eric-clapton-rarities-edition-cd/1363524.p?id=2157368&skuId=1363524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363524_sa.jpg\"}', 'upc' => '600753309575', 'provider' => 'bestbuy'],\n ['name' => \"Orgasmatron - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/orgasmatron-cd/1363533.p?id=2149821&skuId=1363533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363533.jpg\"}', 'upc' => '602527488547', 'provider' => 'bestbuy'],\n ['name' => \"Going Back (Live At... [Blu-ray Disc] - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/going-back-live-at-blu-ray-disc-blu-ray-disc/1363542.p?id=2155668&skuId=1363542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363542_sa.jpg\"}', 'upc' => '801213337194', 'provider' => 'bestbuy'],\n ['name' => \"Video Games Live: Level 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/video-games-live-level-2-cd/1363579.p?id=2155121&skuId=1363579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363579_sa.jpg\"}', 'upc' => '826663123241', 'provider' => 'bestbuy'],\n ['name' => \"Video Games Live: Level 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/video-games-live-level-2-dvd/1363588.p?id=2154765&skuId=1363588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363588_sa.jpg\"}', 'upc' => '826663123234', 'provider' => 'bestbuy'],\n ['name' => \"Performance and Cocktails [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/performance-and-cocktails-digipak-cd/1363603.p?id=2149852&skuId=1363603&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363603', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363603_sa.jpg\"}', 'upc' => '600753301531', 'provider' => 'bestbuy'],\n ['name' => \"Donnie G: Don Gorilla [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/donnie-g-don-gorilla-pa-cd/1363621.p?id=2167742&skuId=1363621&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363621', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363621_sa.jpg\"}', 'upc' => '602527526669', 'provider' => 'bestbuy'],\n ['name' => \"On A Storytellers Night (Deluxe Edition) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-a-storytellers-night-deluxe-edition-cd/1363649.p?id=2164866&skuId=1363649&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363649', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363649_sa.jpg\"}', 'upc' => '602527396170', 'provider' => 'bestbuy'],\n ['name' => \"Flaws [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flaws-digipak-cd/1363658.p?id=2130320&skuId=1363658&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363658', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363658_sa.jpg\"}', 'upc' => '602527411712', 'provider' => 'bestbuy'],\n ['name' => \"Video Games Live: Level 2 - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/video-games-live-level-2-blu-ray-disc/1363676.p?id=2154765&skuId=1363676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363676_sa.jpg\"}', 'upc' => '826663123210', 'provider' => 'bestbuy'],\n ['name' => \"Word Gets Around - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/word-gets-around-cd/1363685.p?id=2157943&skuId=1363685&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363685', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363685_sa.jpg\"}', 'upc' => '600753301593', 'provider' => 'bestbuy'],\n ['name' => \"Twelve Nights In Hollywood 1&2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twelve-nights-in-hollywood-1-2-cd/1363694.p?id=2182690&skuId=1363694&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363694', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363694_sa.jpg\"}', 'upc' => '602527326665', 'provider' => 'bestbuy'],\n ['name' => \"All Time Greatest Performances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-performances-cd/1363703.p?id=2157370&skuId=1363703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363703_sa.jpg\"}', 'upc' => '030206185720', 'provider' => 'bestbuy'],\n ['name' => \"Rainbow's End: An Anthology 1973-1985 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rainbows-end-an-anthology-1973-1985-cd/1363721.p?id=2139141&skuId=1363721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363721_sa.jpg\"}', 'upc' => '600753293836', 'provider' => 'bestbuy'],\n ['name' => \"Death to False Metal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-to-false-metal-cd/1363749.p?id=2157371&skuId=1363749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363749_sa.jpg\"}', 'upc' => '602527394718', 'provider' => 'bestbuy'],\n ['name' => \"Music for Film and Television [10/12] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-film-and-television-10-12-cd/1363758.p?id=2149301&skuId=1363758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363758_sa.jpg\"}', 'upc' => '030206705225', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1363767.p?id=2155342&skuId=1363767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363767_sa.jpg\"}', 'upc' => '602527526485', 'provider' => 'bestbuy'],\n ['name' => \"Majors For Minors: Classical Music... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/majors-for-minors-classical-music-digipak-cd/1363776.p?id=2160677&skuId=1363776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363776_sa.jpg\"}', 'upc' => '790058162323', 'provider' => 'bestbuy'],\n ['name' => \"Another Perfect Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-perfect-day-cd/1363785.p?id=2149819&skuId=1363785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363785_sa.jpg\"}', 'upc' => '602527488448', 'provider' => 'bestbuy'],\n ['name' => \"Live at Leeds Deluxe Edition [E Album Set] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-leeds-deluxe-edition-e-album-set-pa-cd/1363812.p?id=2130216&skuId=1363812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363812_sa.jpg\"}', 'upc' => '600753251973', 'provider' => 'bestbuy'],\n ['name' => \"Escape the Fate [Deluxe Version] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/escape-the-fate-deluxe-version-cd/1363867.p?id=2157373&skuId=1363867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363867.jpg\"}', 'upc' => '602527531038', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits: The Ultimate Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-the-ultimate-collection-cd/1363876.p?id=2157374&skuId=1363876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363876_sa.jpg\"}', 'upc' => '602527517001', 'provider' => 'bestbuy'],\n ['name' => \"Comes & Goes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/comes-goes-cd/1363894.p?id=2151288&skuId=1363894&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363894_sa.jpg\"}', 'upc' => '5099996474921', 'provider' => 'bestbuy'],\n ['name' => \"Best of War - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-war-cd/1363903.p?id=2155344&skuId=1363903&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363903_sa.jpg\"}', 'upc' => '602527528854', 'provider' => 'bestbuy'],\n ['name' => \"Phil Collins: Going Back - Live at Roseland Ballroom, NYC (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/phil-collins-going-back-live-at-roseland-ballroom-nyc-dvd/1363912.p?id=2151172&skuId=1363912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363912_sa.jpg\"}', 'upc' => '801213032891', 'provider' => 'bestbuy'],\n ['name' => \"Bon Jovi Greatest Hits [Deluxe Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bon-jovi-greatest-hits-deluxe-edition-digipak-cd/1363921.p?id=2157375&skuId=1363921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363921_sa.jpg\"}', 'upc' => '602527517025', 'provider' => 'bestbuy'],\n ['name' => \"Honky Tonk Attitude - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honky-tonk-attitude-cd/1363937.p?id=80443&skuId=1363937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363937_sa.jpg\"}', 'upc' => '074645300221', 'provider' => 'bestbuy'],\n ['name' => \"Voices - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/voices-cd/1363958.p?id=2163552&skuId=1363958&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363958_sa.jpg\"}', 'upc' => '602527482644', 'provider' => 'bestbuy'],\n ['name' => \"Escape the Fate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/escape-the-fate-cd/1363985.p?id=2157376&skuId=1363985&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363985', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363985_sa.jpg\"}', 'upc' => '602527527956', 'provider' => 'bestbuy'],\n ['name' => \"Rock 'N' Roll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-n-roll-cd/1363994.p?id=2149820&skuId=1363994&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1363994', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1363\\/1363994_sa.jpg\"}', 'upc' => '602527488516', 'provider' => 'bestbuy'],\n ['name' => \"Breakfast In America (Deluxe Edition) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breakfast-in-america-deluxe-edition-cd/1364001.p?id=2149813&skuId=1364001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364001_sa.jpg\"}', 'upc' => '600753304389', 'provider' => 'bestbuy'],\n ['name' => \"Performance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/performance-cd/1364029.p?id=2157377&skuId=1364029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364029.jpg\"}', 'upc' => '030206185621', 'provider' => 'bestbuy'],\n ['name' => \"Band on the Run [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/band-on-the-run-lp-lp-vinyl/1364056.p?id=2140147&skuId=1364056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364056_sa.jpg\"}', 'upc' => '888072325661', 'provider' => 'bestbuy'],\n ['name' => \"Harry Potter and the Deathly Hallows,... [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harry-potter-and-the-deathly-hallows-ecd-cd/1364065.p?id=2155936&skuId=1364065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364065_sa.jpg\"}', 'upc' => '794043145933', 'provider' => 'bestbuy'],\n ['name' => \"Keith Emerson Band Featuring Marc Bonilla: Moscow (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keith-emerson-band-featuring-marc-bonilla-moscow-dvd/1364074.p?id=2157378&skuId=1364074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364074_sa.jpg\"}', 'upc' => '030206705027', 'provider' => 'bestbuy'],\n ['name' => \"All the Women I Am [CD/DVD]... [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-the-women-i-am-cd-dvd-cd-dvd-cd-dvd-deluxe-edition/1364083.p?id=2158248&skuId=1364083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364083.jpg\"}', 'upc' => '843930004195', 'provider' => 'bestbuy'],\n ['name' => \"Reggae Anthology: Dennis... [CD & DVD] [Box] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reggae-anthology-dennis-cd-dvd-box-cd-dvd/1364092.p?id=2160679&skuId=1364092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364092_sa.jpg\"}', 'upc' => '054645414524', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Blind Willie Johnson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-blind-willie-johnson-cd/1364099.p?id=87159&skuId=1364099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364099_sa.jpg\"}', 'upc' => '074645283524', 'provider' => 'bestbuy'],\n ['name' => \"OCS21 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ocs21-cd/1364126.p?id=2163487&skuId=1364126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364126.jpg\"}', 'upc' => '600753302835', 'provider' => 'bestbuy'],\n ['name' => \"Live At The Bbc - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-bbc-cd/1364135.p?id=2171472&skuId=1364135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364135.jpg\"}', 'upc' => '600753306437', 'provider' => 'bestbuy'],\n ['name' => \"ZZ Top: Live in Germany 1980 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zz-top-live-in-germany-1980-dvd/1364144.p?id=2151171&skuId=1364144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364144_sa.jpg\"}', 'upc' => '801213030293', 'provider' => 'bestbuy'],\n ['name' => \"All the Women I Am - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-the-women-i-am-cd/1364162.p?id=2150802&skuId=1364162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364162_sa.jpg\"}', 'upc' => '843930003945', 'provider' => 'bestbuy'],\n ['name' => \"Twelve Nights in Hollywood, Vols. 3-4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twelve-nights-in-hollywood-vols-3-4-cd/1364199.p?id=2174927&skuId=1364199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364199_sa.jpg\"}', 'upc' => '602527405759', 'provider' => 'bestbuy'],\n ['name' => \"Majors For Minors, Vol. 4: Bee... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/majors-for-minors-vol-4-bee-digipak-cd/1364205.p?id=2160680&skuId=1364205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364205_sa.jpg\"}', 'upc' => '790058162620', 'provider' => 'bestbuy'],\n ['name' => \"Live at the BBC, Vol. 1: In Session - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-bbc-vol-1-in-session-cd/1364214.p?id=2130325&skuId=1364214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364214_sa.jpg\"}', 'upc' => '600753205075', 'provider' => 'bestbuy'],\n ['name' => \"Mahler Re-Orchestration Of Symphony 9 \\\" Choral \\\" - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mahler-re-orchestration-of-symphony-9--choral--cd/1364311.p?id=3232064&skuId=1364311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364311_sa.jpg\"}', 'upc' => '044747210728', 'provider' => 'bestbuy'],\n ['name' => \"Crowley (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crowley-blu-ray-disc/1364444.p?id=1944180&skuId=1364444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364444_sa.jpg\"}', 'upc' => '013132232195', 'provider' => 'bestbuy'],\n ['name' => \"The Very Very Best of Crowded House - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-very-best-of-crowded-house-cd/1364471.p?id=2155345&skuId=1364471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364471_sa.jpg\"}', 'upc' => '5099991740328', 'provider' => 'bestbuy'],\n ['name' => \"Until One [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/until-one-pa-cd/1364499.p?id=2155310&skuId=1364499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364499_sa.jpg\"}', 'upc' => '5099990966620', 'provider' => 'bestbuy'],\n ['name' => \"Hits Alive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hits-alive-cd/1364514.p?id=2147211&skuId=1364514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364514_sa.jpg\"}', 'upc' => '886977587825', 'provider' => 'bestbuy'],\n ['name' => \"The Rocky Horror Glee Show - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-rocky-horror-glee-show-cd/1364523.p?id=2152065&skuId=1364523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364523_sa.jpg\"}', 'upc' => '886977964626', 'provider' => 'bestbuy'],\n ['name' => \"Nota - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nota-cd/1364569.p?id=2155347&skuId=1364569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364569_sa.jpg\"}', 'upc' => '886977444623', 'provider' => 'bestbuy'],\n ['name' => \"Somebody's Coming - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somebodys-coming-cd/1364578.p?id=2153978&skuId=1364578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364578_sa.jpg\"}', 'upc' => '027072809126', 'provider' => 'bestbuy'],\n ['name' => \"Blues [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-lp-lp-vinyl/1364587.p?id=2150763&skuId=1364587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364587_sa.jpg\"}', 'upc' => '886977451713', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Charlie Daniels Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-charlie-daniels-band-cd/1364596.p?id=2155348&skuId=1364596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364596_sa.jpg\"}', 'upc' => '886977866029', 'provider' => 'bestbuy'],\n ['name' => \"Barry Manilow: A Christmas Gift of Love (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barry-manilow-a-christmas-gift-of-love-dvd/1364611.p?id=2147170&skuId=1364611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364611_sa.jpg\"}', 'upc' => '886977734892', 'provider' => 'bestbuy'],\n ['name' => \"Sea Hawk: The Classic Film Scores of... [10/19] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sea-hawk-the-classic-film-scores-of-10-19-cd/1364648.p?id=2148325&skuId=1364648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364648.jpg\"}', 'upc' => '886977793226', 'provider' => 'bestbuy'],\n ['name' => \"Classic Film Scores: Captain From Castile [10/19] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-film-scores-captain-from-castile-10-19-cd/1364657.p?id=2148329&skuId=1364657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364657_sa.jpg\"}', 'upc' => '886977793622', 'provider' => 'bestbuy'],\n ['name' => \"Sale el Sol - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sale-el-sol-cd/1364666.p?id=2149540&skuId=1364666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364666_sa.jpg\"}', 'upc' => '886977743320', 'provider' => 'bestbuy'],\n ['name' => \"Classic Film Scores: Casablanca [10/19] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-film-scores-casablanca-10-19-cd/1364684.p?id=2148330&skuId=1364684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364684_sa.jpg\"}', 'upc' => '886977793721', 'provider' => 'bestbuy'],\n ['name' => \"Lost Horizon: The Classic Film Scores of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-horizon-the-classic-film-scores-of-cd/1364693.p?id=2148326&skuId=1364693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364693_sa.jpg\"}', 'upc' => '886977793325', 'provider' => 'bestbuy'],\n ['name' => \"Frank Sinatra: Concert Collection [7 Discs] - DVD - (7 Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frank-sinatra-concert-collection-7-discs-dvd-7-disc-boxed-set/1364702.p?id=2155937&skuId=1364702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364702_sa.jpg\"}', 'upc' => '826663122206', 'provider' => 'bestbuy'],\n ['name' => \"BBC Sessions [Deluxe... [CD & DVD] [Digipak] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bbc-sessions-deluxe-cd-dvd-digipak-cd-dvd-deluxe-edition/1364711.p?id=2144094&skuId=1364711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364711_sa.jpg\"}', 'upc' => '886977451928', 'provider' => 'bestbuy'],\n ['name' => \"Captain Blood: Classic Film Scores for Errol... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/captain-blood-classic-film-scores-for-errol-cd/1364757.p?id=2148327&skuId=1364757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364757_sa.jpg\"}', 'upc' => '886977793424', 'provider' => 'bestbuy'],\n ['name' => \"A Traditional Christmas: The Yule Log Edition (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-traditional-christmas-the-yule-log-edition-dvd/1364775.p?id=2020864&skuId=1364775&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364775', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364775_sa.jpg\"}', 'upc' => '886977661693', 'provider' => 'bestbuy'],\n ['name' => \"Live at Woodstock [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-woodstock-lp-lp-vinyl/1364784.p?id=2153984&skuId=1364784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364784.jpg\"}', 'upc' => '886977722516', 'provider' => 'bestbuy'],\n ['name' => \"The Evil Dead (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/the-evil-dead-blu-ray-disc/1364848.p?id=53027&skuId=1364848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364848_sa.jpg\"}', 'upc' => '013132146690', 'provider' => 'bestbuy'],\n ['name' => \"Superjudge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/superjudge-cd/1364892.p?id=92118&skuId=1364892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364892_sa.jpg\"}', 'upc' => '731454007924', 'provider' => 'bestbuy'],\n ['name' => \"Charlie St. Cloud (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charlie-st-cloud-blu-ray-disc/1364911.p?id=2150910&skuId=1364911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364911.jpg\"}', 'upc' => '025192050114', 'provider' => 'bestbuy'],\n ['name' => \"Scott Pilgrim vs. the World (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scott-pilgrim-vs-the-world-dvd/1364939.p?id=2155350&skuId=1364939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364939_sa.jpg\"}', 'upc' => '025192035289', 'provider' => 'bestbuy'],\n ['name' => \"Charlie St. Cloud (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charlie-st-cloud-dvd/1364948.p?id=2150910&skuId=1364948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1364948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1364\\/1364948_sa.jpg\"}', 'upc' => '025192050091', 'provider' => 'bestbuy'],\n ['name' => \"WWE: The John Cena Experience (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-the-john-cena-experience-dvd-3-disc/1365019.p?id=2140958&skuId=1365019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365019_sa.jpg\"}', 'upc' => '651191948475', 'provider' => 'bestbuy'],\n ['name' => \"Shaolin Mantis (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shaolin-mantis-dvd/1365028.p?id=27285&skuId=1365028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365028_sa.jpg\"}', 'upc' => '883476029597', 'provider' => 'bestbuy'],\n ['name' => \"Wwe: John Cena Experience (Best Buy Exclusive) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-john-cena-experience-best-buy-exclusive-blu-ray-disc/1365037.p?id=2162433&skuId=1365037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365037_sa.jpg\"}', 'upc' => '651191948482', 'provider' => 'bestbuy'],\n ['name' => \"Marvel Knights: Iron Man - Extremis (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/marvel-knights-iron-man-extremis-dvd/1365055.p?id=2140957&skuId=1365055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365055_sa.jpg\"}', 'upc' => '826663121193', 'provider' => 'bestbuy'],\n ['name' => \"Super Hero Squad Show: Quest for the Infinity Sword! Vol. 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-hero-squad-show-quest-for-the-infinity-sword-vol-2-dvd/1365064.p?id=2140951&skuId=1365064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365064_sa.jpg\"}', 'upc' => '826663121636', 'provider' => 'bestbuy'],\n ['name' => \"Katt Williams: 9 Lives (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/katt-williams-9-lives-dvd/1365091.p?id=2140947&skuId=1365091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365091_sa.jpg\"}', 'upc' => '883476029160', 'provider' => 'bestbuy'],\n ['name' => \"National Geographic: Great Migrations [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/national-geographic-great-migrations-3-discs-dvd/1365134.p?id=2162427&skuId=1365134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365134_sa.jpg\"}', 'upc' => '727994931669', 'provider' => 'bestbuy'],\n ['name' => \"This Country's Rockin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-countrys-rockin-cd/1365169.p?id=87481&skuId=1365169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365169.jpg\"}', 'upc' => '078636616223', 'provider' => 'bestbuy'],\n ['name' => \"Bosch - 3-Prong Power Cord Kit for Select Bosch Dishwashers - Gray\", 'description_short' => \"3.9&#039;, 3-prong power cord; rear connection; copper material\", 'description_long' => \"3.9&#039;, 3-prong power cord; rear connection; copper material\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bosch-3-prong-power-cord-kit-for-select-bosch-dishwashers-gray/1365189.p?id=1219050990735&skuId=1365189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365189_sa.jpg\"}', 'upc' => '825225906254', 'provider' => 'bestbuy'],\n ['name' => \"Vincebus Eruptum [Digital] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vincebus-eruptum-digital-cd/1365356.p?id=75125&skuId=1365356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365356_sa.jpg\"}', 'upc' => '731451468520', 'provider' => 'bestbuy'],\n ['name' => \"Live! Go for What You Know - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-go-for-what-you-know-cd/1365445.p?id=2065380&skuId=1365445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365445_sa.jpg\"}', 'upc' => '042284190428', 'provider' => 'bestbuy'],\n ['name' => \"Crash and Burn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crash-and-burn-cd/1365490.p?id=102176&skuId=1365490&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365490', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365490_sa.jpg\"}', 'upc' => '042282370624', 'provider' => 'bestbuy'],\n ['name' => \"Cameosis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cameosis-cd/1365524.p?id=76640&skuId=1365524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365524_sa.jpg\"}', 'upc' => '042283032323', 'provider' => 'bestbuy'],\n ['name' => \"Star Wars and Other Sci-Fi Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-wars-and-other-sci-fi-classics-cd/1365999.p?id=1832260&skuId=1365999&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1365999', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1365\\/1365999.jpg\"}', 'upc' => '730099900225', 'provider' => 'bestbuy'],\n ['name' => \"Rio/Robots/Horton Hears a Who Triple Feature (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rio-robots-horton-hears-a-who-triple-feature-dvd/1366017.p?id=3289380&skuId=1366017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1366017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2571\\/25710332.jpg\"}', 'upc' => '024543987598', 'provider' => 'bestbuy'],\n ['name' => \"Missing in Action 1 & 2 (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/missing-in-action-1-2-blu-ray-disc/1366026.p?id=3289385&skuId=1366026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1366026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2571\\/25715337.jpg\"}', 'upc' => '883904321187', 'provider' => 'bestbuy'],\n ['name' => \"Crane - Crane Ceramic Tower Heater EE-8080 - Black\", 'description_short' => \"Keep your living space comfrotable in an easy and affordable way with the powerful and complementary Crane EE-8080 Ceramic Tower Heater.\", 'description_long' => \"Keep your living space comfrotable in an easy and affordable way with the powerful and complementary Crane EE-8080 Ceramic Tower Heater.\", 'price' => 137.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crane-crane-ceramic-tower-heater-ee-8080-black/1366054.p?id=1219050746447&skuId=1366054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1366054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1366\\/1366054_sa.jpg\"}', 'upc' => '818767010183', 'provider' => 'bestbuy'],\n ['name' => \"Taxi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/taxi-cd/1366471.p?id=82131&skuId=1366471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1366471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1366\\/1366471_sa.jpg\"}', 'upc' => '093624524625', 'provider' => 'bestbuy'],\n ['name' => \"Marine 3-Pack (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marine-3-pack-blu-ray-disc/1367007.p?id=3289459&skuId=1367007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2571\\/25710483.jpg\"}', 'upc' => '024543988458', 'provider' => 'bestbuy'],\n ['name' => \"Cast Away/Last of the Mohicans/Master and Commander/Kingdom of Heaven (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cast-away-last-of-the-mohicans-master-and-commander-kingdom-of-heaven-dvd/1367016.p?id=3288149&skuId=1367016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367016_sa.jpg\"}', 'upc' => '024543989226', 'provider' => 'bestbuy'],\n ['name' => \"Secret of NIMH 1 & 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secret-of-nimh-1-2-dvd/1367025.p?id=3289396&skuId=1367025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367025_sa.jpg\"}', 'upc' => '883904321026', 'provider' => 'bestbuy'],\n ['name' => \"A-Team / A Good Day To Die Hard / Unstoppable (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-team-a-good-day-to-die-hard-unstoppable-dvd/1367034.p?id=3288353&skuId=1367034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2569\\/25696536.jpg\"}', 'upc' => '024543987857', 'provider' => 'bestbuy'],\n ['name' => \"Wall Street Double Feature (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wall-street-double-feature-dvd/1367043.p?id=3289424&skuId=1367043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367043_sa.jpg\"}', 'upc' => '024543988212', 'provider' => 'bestbuy'],\n ['name' => \"In Time / In The Name Of The King / Transporter (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-time-in-the-name-of-the-king-transporter-dvd/1367052.p?id=3289440&skuId=1367052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2571\\/25710168.jpg\"}', 'upc' => '024543987291', 'provider' => 'bestbuy'],\n ['name' => \"Legally Blonde 1 & 2 (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legally-blonde-1-2-blu-ray-disc/1367061.p?id=3289410&skuId=1367061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367061_sa.jpg\"}', 'upc' => '883904321163', 'provider' => 'bestbuy'],\n ['name' => \"30 Rock - CD - Original Soundtrack Collector's Edition Special\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/30-rock-cd-original-soundtrack-collectors-edition-special/1367062.p?id=2149548&skuId=1367062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367062_sa.jpg\"}', 'upc' => '854727002164', 'provider' => 'bestbuy'],\n ['name' => \"Bachelor Party/Porky's/Revenge of the Nerds/Weekend at Bernie's (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bachelor-party-porkys-revenge-of-the-nerds-weekend-at-bernies-dvd/1367089.p?id=3288296&skuId=1367089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367089_sa.jpg\"}', 'upc' => '024543987277', 'provider' => 'bestbuy'],\n ['name' => \"Flicka Family Collection (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flicka-family-collection-dvd/1367098.p?id=3289444&skuId=1367098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2571\\/25710237.jpg\"}', 'upc' => '024543987475', 'provider' => 'bestbuy'],\n ['name' => \"Wrecking Ball [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wrecking-ball-digipak-cd/1367099.p?id=2159069&skuId=1367099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367099_sa.jpg\"}', 'upc' => '026245102620', 'provider' => 'bestbuy'],\n ['name' => \"Punk Goes Pop, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/punk-goes-pop-vol-3-cd-various/1367105.p?id=2159092&skuId=1367105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367105_sa.jpg\"}', 'upc' => '714753014329', 'provider' => 'bestbuy'],\n ['name' => \"The Crosby Christmas Sessions [Blister] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-crosby-christmas-sessions-blister-cd/1367114.p?id=2161222&skuId=1367114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367114_sa.jpg\"}', 'upc' => '617742216127', 'provider' => 'bestbuy'],\n ['name' => \"Artificial Paradise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/artificial-paradise-cd/1367123.p?id=2124533&skuId=1367123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367123_sa.jpg\"}', 'upc' => '886977400520', 'provider' => 'bestbuy'],\n ['name' => \"Youngblood - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/youngblood-cd/1367132.p?id=2133988&skuId=1367132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367132_sa.jpg\"}', 'upc' => '886976318529', 'provider' => 'bestbuy'],\n ['name' => \"Truly Western Experience... [CD & DVD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/truly-western-experience-cd-dvd-digipak-cd/1367141.p?id=2155338&skuId=1367141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367141_sa.jpg\"}', 'upc' => '826811005726', 'provider' => 'bestbuy'],\n ['name' => \"This Means War/27 Dresses/What's Your Number?/Bride Wars (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-means-war-27-dresses-whats-your-number-bride-wars-dvd/1367209.p?id=3289405&skuId=1367209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2571\\/25710618.jpg\"}', 'upc' => '024543990888', 'provider' => 'bestbuy'],\n ['name' => \"Act of Valor/Limitless/Machine Gun Preacher/Paranoia (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/act-of-valor-limitless-machine-gun-preacher-paranoia-dvd/1367218.p?id=3288530&skuId=1367218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367218_sa.jpg\"}', 'upc' => '024543987314', 'provider' => 'bestbuy'],\n ['name' => \"Abraham Lincoln: Vampire Hunter/Immortals 3-D Double Feature (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/abraham-lincoln-vampire-hunter-immortals-3-d-double-feature-blu-ray-disc/1367227.p?id=3289054&skuId=1367227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367227_sa.jpg\"}', 'upc' => '024543988397', 'provider' => 'bestbuy'],\n ['name' => \"Rio/Epic Double Feature (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rio-epic-double-feature-blu-ray-disc/1367236.p?id=3289462&skuId=1367236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367236_sa.jpg\"}', 'upc' => '024543988359', 'provider' => 'bestbuy'],\n ['name' => \"Diary of a Wimpy Kid 1, 2 and 3 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diary-of-a-wimpy-kid-1-2-and-3-dvd/1367245.p?id=3288555&skuId=1367245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367245_sa.jpg\"}', 'upc' => '024543982975', 'provider' => 'bestbuy'],\n ['name' => \"Joy Ride 1 & 2 & 3 Triple Feature (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joy-ride-1-2-3-triple-feature-dvd/1367254.p?id=3289386&skuId=1367254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2571\\/25710255.jpg\"}', 'upc' => '024543987512', 'provider' => 'bestbuy'],\n ['name' => \"I, Robot/Independence Day/Prometheus/Abyss (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-robot-independence-day-prometheus-abyss-dvd/1367263.p?id=3289362&skuId=1367263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367263_sa.jpg\"}', 'upc' => '024543987871', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 2 [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-2-curb-cd/1367265.p?id=101684&skuId=1367265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367265.jpg\"}', 'upc' => '715187761322', 'provider' => 'bestbuy'],\n ['name' => \"Alvin & the Chipmunks 1, 2 & 3 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/alvin-the-chipmunks-1-2-3-dvd/1367272.p?id=3288153&skuId=1367272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367272_sa.jpg\"}', 'upc' => '024543982999', 'provider' => 'bestbuy'],\n ['name' => \"Robocop Double Feature (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => 23.99, 'url' => 'http://www.bestbuy.com/site/robocop-double-feature-blu-ray-disc/1367281.p?id=3289425&skuId=1367281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367281_sa.jpg\"}', 'upc' => '883904321200', 'provider' => 'bestbuy'],\n ['name' => \"Dash - Go Tilt-Head Stand Mixer - Red\", 'description_short' => \"DASH Go Tilt-Head Stand Mixer: Slider controls; 6 speeds; tilting head with eject button; 3-quart stainless-steel bowl; ABS metallic plastic body; includes 2 beaters and 2 dough hooks\", 'description_long' => \"DASH Go Tilt-Head Stand Mixer: Slider controls; 6 speeds; tilting head with eject button; 3-quart stainless-steel bowl; ABS metallic plastic body; includes 2 beaters and 2 dough hooks\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dash-go-tilt-head-stand-mixer-red/1367304.p?id=1219489109624&skuId=1367304', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367304_rc.jpg\"}', 'upc' => '852079003426', 'provider' => 'bestbuy'],\n ['name' => \"Dash - Go Tilt-Head Stand Mixer - Black\", 'description_short' => \"DASH Go Tilt-Head Stand Mixer: Slider controls; 6 speeds; tilting head with eject button; 3-quart stainless-steel bowl; ABS metallic plastic body; includes 2 beaters and 2 dough hooks\", 'description_long' => \"DASH Go Tilt-Head Stand Mixer: Slider controls; 6 speeds; tilting head with eject button; 3-quart stainless-steel bowl; ABS metallic plastic body; includes 2 beaters and 2 dough hooks\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dash-go-tilt-head-stand-mixer-black/1367313.p?id=1219489109623&skuId=1367313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367313_rc.jpg\"}', 'upc' => '852079003099', 'provider' => 'bestbuy'],\n ['name' => \"Flicka (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flicka-blu-ray-disc/1367359.p?id=1616180&skuId=1367359&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367359_sa.jpg\"}', 'upc' => '024543703600', 'provider' => 'bestbuy'],\n ['name' => \"Big Mommas: Like Father, Like Son (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-mommas-like-father-like-son-blu-ray-disc/1367395.p?id=2216462&skuId=1367395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '024543927150', 'provider' => 'bestbuy'],\n ['name' => \"Kyocera - DuraForce 4G Cell Phone - Black (AT&T)\", 'description_short' => \"Qualcomm Snapdragon 400 1.4GHz processorAndroid 4.4 KitKat operating system4G LTE speed4.5&quot; TFT-LCD touch screen\", 'description_long' => \"Qualcomm Snapdragon 400 1.4GHz processorAndroid 4.4 KitKat operating system4G LTE speed4.5&quot; TFT-LCD touch screen\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kyocera-duraforce-4g-cell-phone-black-at-t/1367446.p?id=1219489109613&skuId=1367446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367446_sa.jpg\"}', 'upc' => '067215024108', 'provider' => 'bestbuy'],\n ['name' => \"Songs and Dances of the Eastern Indians from... - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-and-dances-of-the-eastern-indians-from-various-cd/1367568.p?id=1462230&skuId=1367568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367568.jpg\"}', 'upc' => '093228033721', 'provider' => 'bestbuy'],\n ['name' => \"The Grand Tour - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-grand-tour-cd/1367700.p?id=93087&skuId=1367700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1367700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1367\\/1367700_sa.jpg\"}', 'upc' => '731454008624', 'provider' => 'bestbuy'],\n ['name' => \"Canon - EF 100-400mm f/4.5-5.6L IS II USM Telephoto Zoom Lens - White\", 'description_short' => \"Compatible with most Canon cameras with an EF mount; 3 optical image stabilization modes; ASC (Air Sphere Coating); 77mm filter size\", 'description_long' => \"Compatible with most Canon cameras with an EF mount; 3 optical image stabilization modes; ASC (Air Sphere Coating); 77mm filter size\", 'price' => 2199.99, 'sale_price' => 2099.99, 'url' => 'http://www.bestbuy.com/site/canon-ef-100-400mm-f-4-5-5-6l-is-ii-usm-telephoto-zoom-lens-white/1368051.p?id=1219489109622&skuId=1368051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1368051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1368\\/1368051_sa.jpg\"}', 'upc' => '013803240863', 'provider' => 'bestbuy'],\n ['name' => \"Blues Is Alright, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-is-alright-vol-1-cd-various/1368308.p?id=155614&skuId=1368308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1368308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1368\\/1368308_sa.jpg\"}', 'upc' => '048021743025', 'provider' => 'bestbuy'],\n ['name' => \"Blues Is Alright, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-is-alright-vol-2-cd-various/1368317.p?id=156318&skuId=1368317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1368317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1368\\/1368317_sa.jpg\"}', 'upc' => '048021743827', 'provider' => 'bestbuy'],\n ['name' => \"This Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-town-cd/1368415.p?id=90269&skuId=1368415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1368415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1368\\/1368415_sa.jpg\"}', 'upc' => '015707946629', 'provider' => 'bestbuy'],\n ['name' => \"The Last Airbender (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-airbender-blu-ray-disc/1369264.p?id=2154431&skuId=1369264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1369264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1369\\/1369264_sa.jpg\"}', 'upc' => '097360990942', 'provider' => 'bestbuy'],\n ['name' => \"In Europe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-europe-cd/1369423.p?id=68042&skuId=1369423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1369423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1369\\/1369423_sa.jpg\"}', 'upc' => '063757700920', 'provider' => 'bestbuy'],\n ['name' => \"Straight from the Heart: The Great Last... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/straight-from-the-heart-the-great-last-cd/1369441.p?id=63916&skuId=1369441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1369441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1369\\/1369441_sa.jpg\"}', 'upc' => '063757602026', 'provider' => 'bestbuy'],\n ['name' => \"25th Anniversary Rock & Roll Hall of Fame... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/25th-anniversary-rock-roll-hall-of-fame-cd/1369582.p?id=2155933&skuId=1369582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1369582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1369\\/1369582_sa.jpg\"}', 'upc' => '610583360523', 'provider' => 'bestbuy'],\n ['name' => \"25th Anniversary Rock & Roll Hall of Fame... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/25th-anniversary-rock-roll-hall-of-fame-cd/1369591.p?id=2155934&skuId=1369591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1369591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1369\\/1369591_sa.jpg\"}', 'upc' => '610583360325', 'provider' => 'bestbuy'],\n ['name' => \"Buckwheat Zydeco's Bayou Boogie [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buckwheat-zydecos-bayou-boogie-digipak-cd/1369607.p?id=2144120&skuId=1369607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1369607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1369\\/1369607_sa.jpg\"}', 'upc' => '081227980290', 'provider' => 'bestbuy'],\n ['name' => \"25th Anniversary Rock & Roll Hall of Fame... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/25th-anniversary-rock-roll-hall-of-fame-cd/1369616.p?id=2155935&skuId=1369616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1369616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1369\\/1369616_sa.jpg\"}', 'upc' => '610583360424', 'provider' => 'bestbuy'],\n ['name' => \"WipeDrive Six - Mac|Windows\", 'description_short' => \"Easily clear your computer of data\", 'description_long' => \"Easily clear your computer of data\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wipedrive-six-macwindows/1369743.p?id=1218253817392&skuId=1369743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1369743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1369\\/1369743_sa.jpg\"}', 'upc' => '812219001705', 'provider' => 'bestbuy'],\n ['name' => \"Motorola - Moto X Cell Phone - Black (Sprint)\", 'description_short' => \"Android operating system4G speedGoogle NowColor touch screen10.0MP rear-facing and 2.0MP front-facing cameras\", 'description_long' => \"Android operating system4G speedGoogle NowColor touch screen10.0MP rear-facing and 2.0MP front-facing cameras\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/motorola-moto-x-cell-phone-black-sprint/1370032.p?id=1219051910091&skuId=1370032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1370032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1370\\/1370032_sa.jpg\"}', 'upc' => '723755003088', 'provider' => 'bestbuy'],\n ['name' => \"HP - 24x Internal Double-Layer DVD±RW/CD-RW Drive - Black/Silver\", 'description_short' => \"Up to 12x DVD&#177;R DL and up to 24x DVD&#177;R write speeds; 48x32x48 CD-RW\", 'description_long' => \"Up to 12x DVD&#177;R DL and up to 24x DVD&#177;R write speeds; 48x32x48 CD-RW\", 'price' => 39.99, 'sale_price' => 27.99, 'url' => 'http://www.bestbuy.com/site/hp-24x-internal-double-layer-dvdrw-cd-rw-drive-black-silver/1371147.p?id=1219050755280&skuId=1371147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1371147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1371\\/1371147_sa.jpg\"}', 'upc' => '844149031989', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 9-Cell Lithium-Ion Battery for Select Dell Inspiron and Vostro Laptops\", 'description_short' => \"Compatible with select Dell Inspiron and Vostro laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Inspiron and Vostro laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 55.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-9-cell-lithium-ion-battery-for-select-dell-inspiron-and-vostro-laptops/1371165.p?id=1219050758212&skuId=1371165', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1371165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1371\\/1371165_sa.jpg\"}', 'upc' => '814352015021', 'provider' => 'bestbuy'],\n ['name' => \"SanDisk - Ultra 8GB SDHC Class 10 Memory Card - Black/Silver\", 'description_short' => \"Compatible with most devices with an SDHC card slot; 8GB capacity; Class 10 speed rating; waterproof and temperature-, x-ray- and shock-resistant design; integrated write-protect switch\", 'description_long' => \"Compatible with most devices with an SDHC card slot; 8GB capacity; Class 10 speed rating; waterproof and temperature-, x-ray- and shock-resistant design; integrated write-protect switch\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sandisk-ultra-8gb-sdhc-class-10-memory-card-black-silver/1372002.p?id=1219491357285&skuId=1372002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1372002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1372\\/1372002_sa.jpg\"}', 'upc' => '619659123567', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select HP Laptops\", 'description_short' => \"Compatible with select HP Envy, G-series, Pavilion and Presario laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select HP Envy, G-series, Pavilion and Presario laptops; 10.8V of power; 4400 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-hp-laptops/1372359.p?id=1219050755988&skuId=1372359', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1372359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1372\\/1372359_sa.jpg\"}', 'upc' => '814352015526', 'provider' => 'bestbuy'],\n ['name' => \"Viola Concerto-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/viola-concerto-cd/1372400.p?id=1705223&skuId=1372400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1372400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1372\\/1372400_sa.jpg\"}', 'upc' => '044747215020', 'provider' => 'bestbuy'],\n ['name' => \"I Am Not a Human Being [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-am-not-a-human-being-pa-cd/1372886.p?id=2155289&skuId=1372886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1372886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1372\\/1372886_sa.jpg\"}', 'upc' => '602527536927', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 9-Cell Lithium-Ion Battery for Select Dell Inspiron, Precision and XPS Laptops\", 'description_short' => \"Compatible with select Dell Inspiron, Precision and XPS laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Dell Inspiron, Precision and XPS laptops; 11.1V of power; 6600 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 55.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-9-cell-lithium-ion-battery-for-select-dell-inspiron-precision-and-xps-laptops/1372895.p?id=1219050755604&skuId=1372895', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1372895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1372\\/1372895_sa.jpg\"}', 'upc' => '814352015434', 'provider' => 'bestbuy'],\n ['name' => \"Joe Pace Presents: Praise for the Sanctuary (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joe-pace-presents-praise-for-the-sanctuary-dvd/1372977.p?id=2155149&skuId=1372977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1372977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1372\\/1372977_sa.jpg\"}', 'upc' => '014998418990', 'provider' => 'bestbuy'],\n ['name' => \"Brian Setzer Orchestra: It's Gonna Rock... 'Cause That's What I Do (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brian-setzer-orchestra-its-gonna-rock-cause-thats-what-i-do-dvd/1372986.p?id=2159093&skuId=1372986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1372986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1372\\/1372986_sa.jpg\"}', 'upc' => '640424999544', 'provider' => 'bestbuy'],\n ['name' => \"Hammer Smashed Face [EP] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hammer-smashed-face-ep-pa-cd/1373141.p?id=1577861&skuId=1373141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1373141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1373\\/1373141_sa.jpg\"}', 'upc' => '039841401424', 'provider' => 'bestbuy'],\n ['name' => \"DENAQ - 6-Cell Lithium-Ion Battery for Select Gateway Laptops\", 'description_short' => \"Compatible with select Gateway laptops; 11.1V of power; 4300 mAh capacity; overcharge protection; smart technology; no memory effect\", 'description_long' => \"Compatible with select Gateway laptops; 11.1V of power; 4300 mAh capacity; overcharge protection; smart technology; no memory effect\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denaq-6-cell-lithium-ion-battery-for-select-gateway-laptops/1373297.p?id=1219050755344&skuId=1373297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1373297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1373\\/1373297_sa.jpg\"}', 'upc' => '814352015410', 'provider' => 'bestbuy'],\n ['name' => \"Isn't Anything - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/isnt-anything-cd/1373533.p?id=92722&skuId=1373533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1373533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1373\\/1373533_sa.jpg\"}', 'upc' => '093624523123', 'provider' => 'bestbuy'],\n ['name' => \"Risky Business - CD - Original Soundtrack Germany\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/risky-business-cd-original-soundtrack-germany/1373891.p?id=1432424&skuId=1373891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1373891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1373\\/1373891_sa.jpg\"}', 'upc' => '077778743620', 'provider' => 'bestbuy'],\n ['name' => \"Next Is the E [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/next-is-the-e-single-cd/1373971.p?id=3552565&skuId=1373971&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1373971', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1373\\/1373971_sa.jpg\"}', 'upc' => '720841247029', 'provider' => 'bestbuy'],\n ['name' => \"Go [Remixes] [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-remixes-ep-cd/1373999.p?id=2424859&skuId=1373999&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1373999', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1373\\/1373999.jpg\"}', 'upc' => '720841237020', 'provider' => 'bestbuy'],\n ['name' => \"Pork Soda - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pork-soda-cd/1374060.p?id=1535059&skuId=1374060&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1374060', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1374\\/1374060_sa.jpg\"}', 'upc' => '606949225728', 'provider' => 'bestbuy'],\n ['name' => \"Underwater People - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/underwater-people-cd/1374140.p?id=97817&skuId=1374140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1374140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1374\\/1374140_sa.jpg\"}', 'upc' => '744627002022', 'provider' => 'bestbuy'],\n ['name' => \"Narada Decade: The Anniversary Collection - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/narada-decade-the-anniversary-collection-cd-various/1374729.p?id=92834&skuId=1374729&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1374729', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1374\\/1374729.jpg\"}', 'upc' => '083616391120', 'provider' => 'bestbuy'],\n ['name' => \"3.0 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3-0-cd/1375019.p?id=2714290&skuId=1375019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1375019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1375\\/1375019_sa.jpg\"}', 'upc' => '888837222020', 'provider' => 'bestbuy'],\n ['name' => \"First Ten Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-ten-years-cd/1375620.p?id=1759406&skuId=1375620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1375620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1375\\/1375620.jpg\"}', 'upc' => '710357783524', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of the Drifters [Rhino] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-the-drifters-rhino-cd/1375666.p?id=80970&skuId=1375666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1375666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1375\\/1375666_sa.jpg\"}', 'upc' => '081227121129', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of the Spinners [Rhino] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-the-spinners-rhino-cd/1375684.p?id=99862&skuId=1375684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1375684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1375\\/1375684_sa.jpg\"}', 'upc' => '081227121327', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Wilson Pickett [Rhino] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-wilson-pickett-rhino-cd/1375700.p?id=94932&skuId=1375700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1375700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1375\\/1375700_sa.jpg\"}', 'upc' => '081227121228', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Tommy James & the Shondells - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-tommy-james-the-shondells-cd/1375728.p?id=86683&skuId=1375728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1375728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1375\\/1375728_sa.jpg\"}', 'upc' => '081227121426', 'provider' => 'bestbuy'],\n ['name' => \"Guitar on Fire: The Atlantic Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-on-fire-the-atlantic-sessions-cd/1375764.p?id=76190&skuId=1375764&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1375764', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1375\\/1375764_sa.jpg\"}', 'upc' => '081227123529', 'provider' => 'bestbuy'],\n ['name' => \"Today's Active Lifestyles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/todays-active-lifestyles-cd/1376576.p?id=95161&skuId=1376576&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1376576', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1376\\/1376576_sa.jpg\"}', 'upc' => '036172934027', 'provider' => 'bestbuy'],\n ['name' => \"Dancing In The Dark - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancing-in-the-dark-cd/1376772.p?id=1365933&skuId=1376772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1376772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1376\\/1376772.jpg\"}', 'upc' => '090368009029', 'provider' => 'bestbuy'],\n ['name' => \"Rhythm Of Wings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rhythm-of-wings-cd/1376807.p?id=1829018&skuId=1376807&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1376807', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1376\\/1376807.jpg\"}', 'upc' => '090368009227', 'provider' => 'bestbuy'],\n ['name' => \"Barbie: Dreamhouse Party - Nintendo Wii\", 'description_short' => \"Join Barbie and friends behind the fantastic pink doors of the Dreamhouse\", 'description_long' => \"Join Barbie and friends behind the fantastic pink doors of the Dreamhouse\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barbie-dreamhouse-party-nintendo-wii/1377008.p?id=1219050919478&skuId=1377008', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1377008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1377\\/1377008_sa.jpg\"}', 'upc' => '815403010293', 'provider' => 'bestbuy'],\n ['name' => \"KitchenAid - Coffee Grinder - Onyx Black\", 'description_short' => \"Fingertip control; 160-watt motor; stainless-steel blade\", 'description_long' => \"Fingertip control; 160-watt motor; stainless-steel blade\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kitchenaid-coffee-grinder-onyx-black/1377141.p?id=1218254493833&skuId=1377141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1377141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1377\\/1377141_rc.jpg\"}', 'upc' => '883049216355', 'provider' => 'bestbuy'],\n ['name' => \"KitchenAid - 4-Slice Toaster Oven - Onyx Black\", 'description_short' => \"Bake, broil and toast functions; 60-minute timer; nonstick interior; soft-grip knobs; large viewing window\", 'description_long' => \"Bake, broil and toast functions; 60-minute timer; nonstick interior; soft-grip knobs; large viewing window\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kitchenaid-4-slice-toaster-oven-onyx-black/1377202.p?id=1218255234847&skuId=1377202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1377202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1377\\/1377202_rc.jpg\"}', 'upc' => '883049216188', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Glen Gray & the Casa Loma... [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-glen-gray-the-casa-loma-ecd-cd/1377316.p?id=66906&skuId=1377316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1377316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1377\\/1377316_sa.jpg\"}', 'upc' => '014921010420', 'provider' => 'bestbuy'],\n ['name' => \"Everybody's Reaching out for Someone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everybodys-reaching-out-for-someone-cd/1377370.p?id=79045&skuId=1377370&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1377370', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1377\\/1377370_sa.jpg\"}', 'upc' => '011661029729', 'provider' => 'bestbuy'],\n ['name' => \"Chauvet Lighting - Handheld Blacklight with Flashlight - Red\", 'description_short' => \"From our expanded online assortment; UL approved; 6V of power; plastic\", 'description_long' => \"From our expanded online assortment; UL approved; 6V of power; plastic\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chauvet-lighting-handheld-blacklight-with-flashlight-red/1377709.p?id=1218254495880&skuId=1377709', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1377709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1377\\/1377709_sa.jpg\"}', 'upc' => '781462000042', 'provider' => 'bestbuy'],\n ['name' => \"Once upon a Mattress [Original Broadway Cast] - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/once-upon-a-mattress-original-broadway-cast-cd-original-broadway-cast/1377717.p?id=93943&skuId=1377717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1377717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1377\\/1377717.jpg\"}', 'upc' => '008811076825', 'provider' => 'bestbuy'],\n ['name' => \"Close-Up, Vol. 2: People & Places - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/close-up-vol-2-people-places-cd/1378034.p?id=2144805&skuId=1378034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1378034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1378\\/1378034_sa.jpg\"}', 'upc' => '698519250223', 'provider' => 'bestbuy'],\n ['name' => \"Monster High: 13 Wishes - Nintendo 3DS\", 'description_short' => \"Join your favorite ghoulfriends on a freaky quest to save the school\", 'description_long' => \"Join your favorite ghoulfriends on a freaky quest to save the school\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monster-high-13-wishes-nintendo-3ds/1378292.p?id=1219050917899&skuId=1378292', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1378292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1378\\/1378292_sa.jpg\"}', 'upc' => '815403010262', 'provider' => 'bestbuy'],\n ['name' => \"METRA - Antenna Cable - Black\", 'description_short' => \"Compatible with 1989 - 2007 Nissan Infiniti vehicles; supports most RF CD changers\", 'description_long' => \"Compatible with 1989 - 2007 Nissan Infiniti vehicles; supports most RF CD changers\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-cable-black/1378388.p?id=1218019692128&skuId=1378388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1378388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1378\\/1378388_sa.jpg\"}', 'upc' => '086429007103', 'provider' => 'bestbuy'],\n ['name' => \"Scosche - Speaker Harness for Most 1986-1997 Ford Vehicles\", 'description_short' => \"Compatible with most 1986-1997 Ford vehicles; allows the installation of aftermarket speakers; helps produce nonpremium/JBL sound\", 'description_long' => \"Compatible with most 1986-1997 Ford vehicles; allows the installation of aftermarket speakers; helps produce nonpremium/JBL sound\", 'price' => 19.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/scosche-speaker-harness-for-most-1986-1997-ford-vehicles/1378510.p?id=1142292396384&skuId=1378510&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1378510', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1378\\/1378510_sa.jpg\"}', 'upc' => '033991886919', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Aftermarket Radio Wire Harness Adapter for Select GM Vehicles - Black\", 'description_short' => \"Compatible with most 1973-1993 GM vehicles; connects an aftermarket radio to your car&#039;s harness\", 'description_long' => \"Compatible with most 1973-1993 GM vehicles; connects an aftermarket radio to your car&#039;s harness\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-aftermarket-radio-wire-harness-adapter-for-select-gm-vehicles-black/1378538.p?id=1142291936184&skuId=1378538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1378538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1378\\/1378538_rc.jpg\"}', 'upc' => '086429002566', 'provider' => 'bestbuy'],\n ['name' => \"Much Ado about Nothing [Original Motion... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/much-ado-about-nothing-original-motion-cd-original-soundtrack/1379190.p?id=92569&skuId=1379190&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1379190', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1379\\/1379190_sa.jpg\"}', 'upc' => '074645400921', 'provider' => 'bestbuy'],\n ['name' => \"Brother - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brother-cd/1379305.p?id=79383&skuId=1379305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1379305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1379\\/1379305.jpg\"}', 'upc' => '074645340425', 'provider' => 'bestbuy'],\n ['name' => \"Metal Works '73-'93 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metal-works-73-93-cd/1379449.p?id=87455&skuId=1379449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1379449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1379\\/1379449_sa.jpg\"}', 'upc' => '074645393223', 'provider' => 'bestbuy'],\n ['name' => \"Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/life-cd/1379653.p?id=1488864&skuId=1379653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1379653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1379\\/1379653.jpg\"}', 'upc' => '759091225624', 'provider' => 'bestbuy'],\n ['name' => \"Terje Rypdal: Q.E.D. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/terje-rypdal-q-e-d-cd/1379831.p?id=70551&skuId=1379831&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1379831', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1379\\/1379831.jpg\"}', 'upc' => '731451337420', 'provider' => 'bestbuy'],\n ['name' => \"Sacred Works - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sacred-works-cd/1379920.p?id=1838654&skuId=1379920&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1379920', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1379\\/1379920.jpg\"}', 'upc' => '745099049423', 'provider' => 'bestbuy'],\n ['name' => \"Army Wives: The Complete Fourth Season [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/army-wives-the-complete-fourth-season-4-discs-dvd/1379943.p?id=2147119&skuId=1379943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1379943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1379\\/1379943_sa.jpg\"}', 'upc' => '786936807813', 'provider' => 'bestbuy'],\n ['name' => \"The Sorcerer's Apprentice (Blu-ray Disc) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sorcerers-apprentice-blu-ray-disc-3-disc/1379952.p?id=2151186&skuId=1379952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1379952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1379\\/1379952_sa.jpg\"}', 'upc' => '786936807875', 'provider' => 'bestbuy'],\n ['name' => \"The Sorcerer's Apprentice (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sorcerers-apprentice-dvd/1379989.p?id=2151186&skuId=1379989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1379989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1379\\/1379989.jpg\"}', 'upc' => '786936807882', 'provider' => 'bestbuy'],\n ['name' => \"The Sorcerer's Apprentice (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sorcerers-apprentice-blu-ray-disc-2-disc/1380014.p?id=2151186&skuId=1380014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380014.jpg\"}', 'upc' => '786936808889', 'provider' => 'bestbuy'],\n ['name' => \"Folly Seeing All This - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/folly-seeing-all-this-cd/1380044.p?id=68770&skuId=1380044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380044_sa.jpg\"}', 'upc' => '731451736322', 'provider' => 'bestbuy'],\n ['name' => \"Toby Keith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/toby-keith-cd/1380053.p?id=87718&skuId=1380053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380053.jpg\"}', 'upc' => '731451442124', 'provider' => 'bestbuy'],\n ['name' => \"Shania Twain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shania-twain-cd/1380080.p?id=102550&skuId=1380080&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380080', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380080_sa.jpg\"}', 'upc' => '731451442223', 'provider' => 'bestbuy'],\n ['name' => \"Dive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dive-cd/1380133.p?id=75844&skuId=1380133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380133_sa.jpg\"}', 'upc' => '731454008327', 'provider' => 'bestbuy'],\n ['name' => \"Acoustic Highway - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/acoustic-highway-cd/1380384.p?id=77236&skuId=1380384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380384_sa.jpg\"}', 'upc' => '724387754225', 'provider' => 'bestbuy'],\n ['name' => \"The Pillars of the Earth (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-pillars-of-the-earth-dvd-3-disc/1380563.p?id=2152004&skuId=1380563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380563_sa.jpg\"}', 'upc' => '043396360587', 'provider' => 'bestbuy'],\n ['name' => \"From Bessie to Brazil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-bessie-to-brazil-cd/1380570.p?id=68901&skuId=1380570&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380570', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380570_sa.jpg\"}', 'upc' => '013431454724', 'provider' => 'bestbuy'],\n ['name' => \"Eat Pray Love (DVD) (Extended Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eat-pray-love-dvd-extended-edition/1380581.p?id=2159868&skuId=1380581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380581_sa.jpg\"}', 'upc' => '043396362338', 'provider' => 'bestbuy'],\n ['name' => \"Peaceful Journey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peaceful-journey-cd/1380623.p?id=103598&skuId=1380623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380623.jpg\"}', 'upc' => '026656273728', 'provider' => 'bestbuy'],\n ['name' => \"Grown Ups (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grown-ups-dvd/1380624.p?id=2144800&skuId=1380624&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380624', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380624_sa.jpg\"}', 'upc' => '043396350144', 'provider' => 'bestbuy'],\n ['name' => \"Grown Ups (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grown-ups-blu-ray-disc/1380642.p?id=2144800&skuId=1380642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380642_sa.jpg\"}', 'upc' => '043396364455', 'provider' => 'bestbuy'],\n ['name' => \"Eat Pray Love (Blu-ray Disc) (Extended Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eat-pray-love-blu-ray-disc-extended-edition/1380651.p?id=2159868&skuId=1380651&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380651', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380651_sa.jpg\"}', 'upc' => '043396362369', 'provider' => 'bestbuy'],\n ['name' => \"Another Chance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-chance-cd/1380669.p?id=129787&skuId=1380669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380669_sa.jpg\"}', 'upc' => '021401710923', 'provider' => 'bestbuy'],\n ['name' => \"Boondocks: The Complete Third Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boondocks-the-complete-third-season-3-discs-dvd/1380679.p?id=2144788&skuId=1380679&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1380679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1380\\/1380679.jpg\"}', 'upc' => '043396353398', 'provider' => 'bestbuy'],\n ['name' => \"The Song Book - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-song-book-cd/1381409.p?id=66064&skuId=1381409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1381409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1381\\/1381409_sa.jpg\"}', 'upc' => '025218677929', 'provider' => 'bestbuy'],\n ['name' => \"The Blues Book - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-blues-book-cd/1381418.p?id=66065&skuId=1381418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1381418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1381\\/1381418_sa.jpg\"}', 'upc' => '025218678025', 'provider' => 'bestbuy'],\n ['name' => \"Steve Allen Plays Jazz Tonight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steve-allen-plays-jazz-tonight-cd/1381588.p?id=63633&skuId=1381588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1381588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1381\\/1381588.jpg\"}', 'upc' => '013431454823', 'provider' => 'bestbuy'],\n ['name' => \"Enchantment - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enchantment-cd/1381748.p?id=1522902&skuId=1381748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1381748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1381\\/1381748.jpg\"}', 'upc' => '767591300123', 'provider' => 'bestbuy'],\n ['name' => \"Spider-Man (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spider-man-blu-ray-disc/1381823.p?id=39444&skuId=1381823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1381823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1381\\/1381823_sa.jpg\"}', 'upc' => '043396263680', 'provider' => 'bestbuy'],\n ['name' => \"Copland: Billy the Kid; Grof¿: Grand Canyon... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/copland-billy-the-kid-grof-grand-canyon-cd/1381962.p?id=1695978&skuId=1381962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1381962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1381\\/1381962_sa.jpg\"}', 'upc' => '090266166725', 'provider' => 'bestbuy'],\n ['name' => \"Whatever - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whatever-cd/1382015.p?id=90423&skuId=1382015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382015_sa.jpg\"}', 'upc' => '720642495629', 'provider' => 'bestbuy'],\n ['name' => \"Sodom and America - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sodom-and-america-cd/1382113.p?id=104838&skuId=1382113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382113.jpg\"}', 'upc' => '074645375922', 'provider' => 'bestbuy'],\n ['name' => \"Aerosmith: Rock for the Rising Sun - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aerosmith-rock-for-the-rising-sun-blu-ray-disc/1382128.p?id=2706055&skuId=1382128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382128_sa.jpg\"}', 'upc' => '801213345595', 'provider' => 'bestbuy'],\n ['name' => \"Vampires Suck (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vampires-suck-dvd/1382225.p?id=2161225&skuId=1382225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382225_sa.jpg\"}', 'upc' => '024543718277', 'provider' => 'bestbuy'],\n ['name' => \"Ramona and Beezus (Blu-ray/DVD)(Digital Copy)(with Movie Money)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ramona-and-beezus-blu-ray-dvddigital-copywith-movie-money/1382252.p?id=2155456&skuId=1382252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382252_sa.jpg\"}', 'upc' => '024543673286', 'provider' => 'bestbuy'],\n ['name' => \"Vampires Suck (Blu-ray Disc) (2 Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vampires-suck-blu-ray-disc-2-disc-digital-copy/1382261.p?id=2161225&skuId=1382261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382261_sa.jpg\"}', 'upc' => '024543718345', 'provider' => 'bestbuy'],\n ['name' => \"Ramona and Beezus (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ramona-and-beezus-dvd/1382289.p?id=2155456&skuId=1382289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382289_sa.jpg\"}', 'upc' => '024543673217', 'provider' => 'bestbuy'],\n ['name' => \"It's Always Sunny in Philadelphia: A Very Sunny Christmas (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-always-sunny-in-philadelphia-a-very-sunny-christmas-dvd/1382304.p?id=2015734&skuId=1382304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382304.jpg\"}', 'upc' => '024543701453', 'provider' => 'bestbuy'],\n ['name' => \"No Rest, No Peace [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-rest-no-peace-digipak-cd/1382455.p?id=2721227&skuId=1382455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382455.jpg\"}', 'upc' => '811772029324', 'provider' => 'bestbuy'],\n ['name' => \"Things Are Getting Better - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/things-are-getting-better-cd/1382464.p?id=2721003&skuId=1382464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382464_sa.jpg\"}', 'upc' => '888072346024', 'provider' => 'bestbuy'],\n ['name' => \"The Smurfs 2: Music from and Inspired By - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-smurfs-2-music-from-and-inspired-by-cd-original-soundtrack/1382473.p?id=2715957&skuId=1382473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382473_sa.jpg\"}', 'upc' => '888837416726', 'provider' => 'bestbuy'],\n ['name' => \"Chet Baker Plays the Best of Lerner and Loewe... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chet-baker-plays-the-best-of-lerner-and-loewe-cd/1382491.p?id=2720935&skuId=1382491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382491_sa.jpg\"}', 'upc' => '888072345997', 'provider' => 'bestbuy'],\n ['name' => \"On a Clear Day You Can See Forever [Original... - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-a-clear-day-you-can-see-forever-original-cd-original-broadway-cast/1382499.p?id=93936&skuId=1382499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382499_sa.jpg\"}', 'upc' => '090266082025', 'provider' => 'bestbuy'],\n ['name' => \"Aerosmith: Rock for the Rising Sun (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aerosmith-rock-for-the-rising-sun-dvd/1382507.p?id=2706055&skuId=1382507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382507_sa.jpg\"}', 'upc' => '801213062195', 'provider' => 'bestbuy'],\n ['name' => \"Ricky Reed Is Real [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ricky-reed-is-real-pa-cd/1382516.p?id=2715647&skuId=1382516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382516_sa.jpg\"}', 'upc' => '886919514520', 'provider' => 'bestbuy'],\n ['name' => \"Painted Desert Serenade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/painted-desert-serenade-cd/1382907.p?id=87547&skuId=1382907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382907_sa.jpg\"}', 'upc' => '077778092025', 'provider' => 'bestbuy'],\n ['name' => \"El Amor Despues del Amor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-amor-despues-del-amor-cd/1382970.p?id=1380199&skuId=1382970&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1382970', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1382\\/1382970_sa.jpg\"}', 'upc' => '745099041427', 'provider' => 'bestbuy'],\n ['name' => \"Boost Mobile - Apple® iPhone® 6 16GB No-Contract Cell Phone - Space Gray\", 'description_short' => \"4.7-inch Retina HD displayA8 chip with 64-bit desktop-class architectureNew 8MP iSight camera with Focus PixelsTouch ID fingerprint identity sensoriOS and iCloud6.9mm thin, seamless design\", 'description_long' => \"4.7-inch Retina HD displayA8 chip with 64-bit desktop-class architectureNew 8MP iSight camera with Focus PixelsTouch ID fingerprint identity sensoriOS and iCloud6.9mm thin, seamless design\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boost-mobile-apple-iphone-6-16gb-no-contract-cell-phone-space-gray/1383001.p?id=1219491363150&skuId=1383001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383001_sa.jpg\"}', 'upc' => '885909950249', 'provider' => 'bestbuy'],\n ['name' => \"Don't Stop Believin': Everyman's Journey (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-stop-believin-everymans-journey-dvd/1383002.p?id=2712292&skuId=1383002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383002_sa.jpg\"}', 'upc' => '767685285015', 'provider' => 'bestbuy'],\n ['name' => \"Glory of Heracles - PRE-OWNED - Nintendo DS\", 'description_short' => \"Journey to a land of myths in a time desperate for heroes\", 'description_long' => \"Journey to a land of myths in a time desperate for heroes\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glory-of-heracles-pre-owned-nintendo-ds/1383075.p?id=1218255234992&skuId=1383075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383075_sa.jpg\"}', 'upc' => '799007783978', 'provider' => 'bestbuy'],\n ['name' => \"Dante's Inferno - PRE-OWNED - Xbox 360\", 'description_short' => \"Prepare to face the consequences of your sins\", 'description_long' => \"Prepare to face the consequences of your sins\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dantes-inferno-pre-owned-xbox-360/1383084.p?id=1218255233895&skuId=1383084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383084_sa.jpg\"}', 'upc' => '799007783985', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Reporter - PRE-OWNED - Nintendo DS\", 'description_short' => \"Do you have the news savvy to become a TV reporter?\", 'description_long' => \"Do you have the news savvy to become a TV reporter?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-reporter-pre-owned-nintendo-ds/1383109.p?id=1218255234991&skuId=1383109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383109_sa.jpg\"}', 'upc' => '799007784005', 'provider' => 'bestbuy'],\n ['name' => \"Sniper: Ghost Warrior - PRE-OWNED - Xbox 360\", 'description_short' => \"Control the power of death as you ghost through the jungle\", 'description_long' => \"Control the power of death as you ghost through the jungle\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sniper-ghost-warrior-pre-owned-xbox-360/1383127.p?id=1218255235957&skuId=1383127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383127_sa.jpg\"}', 'upc' => '799007784029', 'provider' => 'bestbuy'],\n ['name' => \"Deadly Premonition - PRE-OWNED - Xbox 360\", 'description_short' => \"Uncover the deadly truth behind the Red Seed Murders\", 'description_long' => \"Uncover the deadly truth behind the Red Seed Murders\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deadly-premonition-pre-owned-xbox-360/1383145.p?id=1218255234338&skuId=1383145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383145_sa.jpg\"}', 'upc' => '799007784043', 'provider' => 'bestbuy'],\n ['name' => \"Naughty Bear - PRE-OWNED - Xbox 360\", 'description_short' => \"Get your murderous revenge on teddy bears\", 'description_long' => \"Get your murderous revenge on teddy bears\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naughty-bear-pre-owned-xbox-360/1383181.p?id=1218255233502&skuId=1383181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383181_sa.jpg\"}', 'upc' => '799007784081', 'provider' => 'bestbuy'],\n ['name' => \"Scene It? Twilight - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Test your knowledge of all things Twilight\", 'description_long' => \"Test your knowledge of all things Twilight\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scene-it-twilight-pre-owned-nintendo-wii/1383215.p?id=1218255235435&skuId=1383215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383215_sa.jpg\"}', 'upc' => '799007784104', 'provider' => 'bestbuy'],\n ['name' => \"Dragon Age: Origins Awakening - PRE-OWNED - Xbox 360\", 'description_short' => \"Bring the ancient order of the Grey Wardens to action against the forces of the Darkspawn\", 'description_long' => \"Bring the ancient order of the Grey Wardens to action against the forces of the Darkspawn\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragon-age-origins-awakening-pre-owned-xbox-360/1383224.p?id=1218255235114&skuId=1383224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383224_sa.jpg\"}', 'upc' => '799007784111', 'provider' => 'bestbuy'],\n ['name' => \"Daniel X: The Ultimate Power - PRE-OWNED - Nintendo DS\", 'description_short' => \"Use your powers for good and stop the aliens\", 'description_long' => \"Use your powers for good and stop the aliens\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/daniel-x-the-ultimate-power-pre-owned-nintendo-ds/1383242.p?id=1218255233822&skuId=1383242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383242_sa.jpg\"}', 'upc' => '799007784128', 'provider' => 'bestbuy'],\n ['name' => \"Pokémon SoulSilver Version - PRE-OWNED - Nintendo DS\", 'description_short' => \"Enter a classic gaming world updated for today&#039;s gamers\", 'description_long' => \"Enter a classic gaming world updated for today&#039;s gamers\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pokemon-soulsilver-version-pre-owned-nintendo-ds/1383251.p?id=1218255235548&skuId=1383251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383251_sc.jpg\"}', 'upc' => '799007784135', 'provider' => 'bestbuy'],\n ['name' => \"Lost Planet 2 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Set out to conquer a transformed planet\", 'description_long' => \"Set out to conquer a transformed planet\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-planet-2-pre-owned-playstation-3/1383279.p?id=1218255233129&skuId=1383279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383279_sa.jpg\"}', 'upc' => '799007784142', 'provider' => 'bestbuy'],\n ['name' => \"Disney/Pixar Toy Story 3 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help Woody, Buzz Lightyear and their friends stay together\", 'description_long' => \"Help Woody, Buzz Lightyear and their friends stay together\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-pixar-toy-story-3-pre-owned-nintendo-ds/1383297.p?id=1218255232313&skuId=1383297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383297_sa.jpg\"}', 'upc' => '799007784166', 'provider' => 'bestbuy'],\n ['name' => \"UFC Undisputed 2010 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Step into the Octagon and step up to the best fighters in the world\", 'description_long' => \"Step into the Octagon and step up to the best fighters in the world\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ufc-undisputed-2010-pre-owned-playstation-3/1383321.p?id=1218255234017&skuId=1383321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383321_sa.jpg\"}', 'upc' => '799007784197', 'provider' => 'bestbuy'],\n ['name' => \"Alan Wake - PRE-OWNED - Xbox 360\", 'description_short' => \"Use the power of light to help you escape a nightmarish world\", 'description_long' => \"Use the power of light to help you escape a nightmarish world\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alan-wake-pre-owned-xbox-360/1383358.p?id=1218255233006&skuId=1383358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383358_sa.jpg\"}', 'upc' => '799007784210', 'provider' => 'bestbuy'],\n ['name' => \"Grand Theft Auto: Episodes from Liberty City - PRE-OWNED - PlayStation 3\", 'description_short' => \"The last two action-packed chapters of the Grand Theft Auto IV saga\", 'description_long' => \"The last two action-packed chapters of the Grand Theft Auto IV saga\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grand-theft-auto-episodes-from-liberty-city-pre-owned-playstation-3/1383367.p?id=1218255233626&skuId=1383367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383367_sa.jpg\"}', 'upc' => '799007784227', 'provider' => 'bestbuy'],\n ['name' => \"Charm Girls Club: Pajama Party — PRE-OWNED - Nintendo Wii\", 'description_short' => \"Giggle all night with your girlfriends\", 'description_long' => \"Giggle all night with your girlfriends\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charm-girls-club-pajama-party-pre-owned-nintendo-wii/1383376.p?id=1218255233379&skuId=1383376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383376_500x500_sa.jpg\"}', 'upc' => '799007784234', 'provider' => 'bestbuy'],\n ['name' => \"Buzz: Quiz World - PRE-OWNED - PlayStation 3\", 'description_short' => \"Buzz in for trivia fun\", 'description_long' => \"Buzz in for trivia fun\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buzz-quiz-world-pre-owned-playstation-3/1383394.p?id=1218255233894&skuId=1383394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383394_sa.jpg\"}', 'upc' => '799007784258', 'provider' => 'bestbuy'],\n ['name' => \"BlazBlue: Continuum Shift - PRE-OWNED - Xbox 360\", 'description_short' => \"Return to the fray and claim Kagutsuchi as your own\", 'description_long' => \"Return to the fray and claim Kagutsuchi as your own\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blazblue-continuum-shift-pre-owned-xbox-360/1383409.p?id=1218255235752&skuId=1383409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383409_sa.jpg\"}', 'upc' => '799007784265', 'provider' => 'bestbuy'],\n ['name' => \"Wipeout: The Game - PRE-OWNED - Nintendo Wii\", 'description_short' => \"It&#039;s your turn to run, jump and climb through the wildest obstacle course on earth\", 'description_long' => \"It&#039;s your turn to run, jump and climb through the wildest obstacle course on earth\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wipeout-the-game-pre-owned-nintendo-wii/1383418.p?id=1218255234644&skuId=1383418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383418_sa.jpg\"}', 'upc' => '799007784272', 'provider' => 'bestbuy'],\n ['name' => \"Borderlands Zombie Island of Dr. Ned/Mad Moxxi's Underdome Riot - PRE-OWNED - Xbox 360\", 'description_short' => \"Expand the Borderlands adventure with these add-on packs\", 'description_long' => \"Expand the Borderlands adventure with these add-on packs\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/borderlands-zombie-island-of-dr-ned-mad-moxxis-underdome-riot-pre-owned-xbox-360/1383427.p?id=1218255236230&skuId=1383427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383427_sa.jpg\"}', 'upc' => '799007784289', 'provider' => 'bestbuy'],\n ['name' => \"Wii Fit Plus - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Get in shape while having fun\", 'description_long' => \"Get in shape while having fun\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wii-fit-plus-pre-owned-nintendo-wii/1383436.p?id=1218255235210&skuId=1383436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383436_sa.jpg\"}', 'upc' => '799007784296', 'provider' => 'bestbuy'],\n ['name' => \"Jazzmatazz, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazzmatazz-vol-1-cd/1383577.p?id=2443658&skuId=1383577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383577_sa.jpg\"}', 'upc' => '094632199829', 'provider' => 'bestbuy'],\n ['name' => \"Griffin Technology - PowerBlock USB Wall Charger - Black\", 'description_short' => \"Compatible with most USB-powered mobile phones and tablets; ChargeSensor technology; up to 10W of power; type-A USB socket\", 'description_long' => \"Compatible with most USB-powered mobile phones and tablets; ChargeSensor technology; up to 10W of power; type-A USB socket\", 'price' => 24.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/griffin-technology-powerblock-usb-wall-charger-black/1383612.p?id=1219050755734&skuId=1383612&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383612_sa.jpg\"}', 'upc' => '685387410293', 'provider' => 'bestbuy'],\n ['name' => \"Griffin Technology - PowerJolt USB Vehicle Charger - Black\", 'description_short' => \"Compatible with most USB-powered mobile phones, e-readers and tablets; ChargeSensor technology; SmartFuse circuit breaker; up to 10W of power; USB type-A socket; LED power indicator\", 'description_long' => \"Compatible with most USB-powered mobile phones, e-readers and tablets; ChargeSensor technology; SmartFuse circuit breaker; up to 10W of power; USB type-A socket; LED power indicator\", 'price' => 24.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/griffin-technology-powerjolt-usb-vehicle-charger-black/1383721.p?id=1219050746449&skuId=1383721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383721_sa.jpg\"}', 'upc' => '685387406326', 'provider' => 'bestbuy'],\n ['name' => \"Janet. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/janet-cd/1383728.p?id=86480&skuId=1383728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383728_sa.jpg\"}', 'upc' => '077778782520', 'provider' => 'bestbuy'],\n ['name' => \"Griffin Technology - Survivor AUX 4' Auxiliary Audio Cable - Blue\", 'description_short' => \"For use with most devices with a headphone jack; heavy-duty nylon-braided cable material; pull-and-tug-resistant compression collars\", 'description_long' => \"For use with most devices with a headphone jack; heavy-duty nylon-braided cable material; pull-and-tug-resistant compression collars\", 'price' => 19.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/griffin-technology-survivor-aux-4-auxiliary-audio-cable-blue/1383803.p?id=1219050746450&skuId=1383803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383803_sa.jpg\"}', 'upc' => '685387406876', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1383960.p?id=82919&skuId=1383960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1383960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1383\\/1383960.jpg\"}', 'upc' => '715187761520', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Jackie Gleason [Capitol/Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-jackie-gleason-capitol-curb-cd/1384086.p?id=83703&skuId=1384086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1384086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1384\\/1384086.jpg\"}', 'upc' => '715187761421', 'provider' => 'bestbuy'],\n ['name' => \"Breakneck Speed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breakneck-speed-cd/1384111.p?id=2037487&skuId=1384111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1384111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '026245106222', 'provider' => 'bestbuy'],\n ['name' => \"Guitar Distortion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-distortion-cd/1384139.p?id=3459827&skuId=1384139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1384139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '026245106321', 'provider' => 'bestbuy'],\n ['name' => \"Street Certified [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/street-certified-pa-digipak-cd/1386017.p?id=3347692&skuId=1386017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1386017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1386\\/1386017_sa.jpg\"}', 'upc' => '822720716524', 'provider' => 'bestbuy'],\n ['name' => \"Pinkprint [Only @ Best Buy] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 28.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pinkprint-only--best-buy-cd/1386026.p?id=3328706&skuId=1386026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1386026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1386\\/1386026_sa.jpg\"}', 'upc' => '602547148919', 'provider' => 'bestbuy'],\n ['name' => \"The Last Ship [Original Broadway Cast Recording] - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-ship-original-broadway-cast-recording-cd-original-broadway-cast/1386035.p?id=3315971&skuId=1386035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1386035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1386\\/1386035.jpg\"}', 'upc' => '602547139955', 'provider' => 'bestbuy'],\n ['name' => \"Hot, Cool & Vicious - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-cool-vicious-cd/1386048.p?id=97783&skuId=1386048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1386048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1386\\/1386048_sa.jpg\"}', 'upc' => '042282836328', 'provider' => 'bestbuy'],\n ['name' => \"Cedarlane - Bellini Kitchen Master - White/Stainless-Steel\", 'description_short' => \"CEDARLANE Bellini Kitchen Master: 8-in-1 design; variable 10-speed rotary control; adjustable temperature control; LCD with blue background; 1000W heating element; 2L stainless-steel bowl; self-cleaning design\", 'description_long' => \"CEDARLANE Bellini Kitchen Master: 8-in-1 design; variable 10-speed rotary control; adjustable temperature control; LCD with blue background; 1000W heating element; 2L stainless-steel bowl; self-cleaning design\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cedarlane-bellini-kitchen-master-white-stainless-steel/1387016.p?id=1219526230887&skuId=1387016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387016_rc.jpg\"}', 'upc' => '884911000010', 'provider' => 'bestbuy'],\n ['name' => \"HTC - Cover for Google Nexus 9 Tablets - Black\", 'description_short' => \"Compatible with Google Nexus 9 tablets; polyurethane and microfiber materials; folds into a multiposition stand; magnetic attachment; flipping corner automatically activates your device&#039;s camera; pattern design\", 'description_long' => \"Compatible with Google Nexus 9 tablets; polyurethane and microfiber materials; folds into a multiposition stand; magnetic attachment; flipping corner automatically activates your device&#039;s camera; pattern design\", 'price' => 39.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/htc-cover-for-google-nexus-9-tablets-black/1387061.p?id=1219491357294&skuId=1387061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387061_sa.jpg\"}', 'upc' => '821793042899', 'provider' => 'bestbuy'],\n ['name' => \"Vornado - Tower Heater - Black\", 'description_short' => \"Heats rooms up to 256 sq. ft.; 12.5 amps; touch-sensitive interface with LCD display; adjustable thermistor; V-Flow heat circulation; 2 heat settings; tip-over switch; automatic safety shutoff\", 'description_long' => \"Heats rooms up to 256 sq. ft.; 12.5 amps; touch-sensitive interface with LCD display; adjustable thermistor; V-Flow heat circulation; 2 heat settings; tip-over switch; automatic safety shutoff\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vornado-tower-heater-black/1387071.p?id=1219050757347&skuId=1387071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387071_sa.jpg\"}', 'upc' => '043765006795', 'provider' => 'bestbuy'],\n ['name' => \"HTC - Keyboard Folio Case for Google Nexus 9 Tablets - Black\", 'description_short' => \"Compatible with Google Nexus 9 tablets; built-in mechanical keyboard; Bluetooth 4.0 technology; wireless range up to 200&#039;; magnetic attachment; 2 folding angles; built-in lithium-polymer battery\", 'description_long' => \"Compatible with Google Nexus 9 tablets; built-in mechanical keyboard; Bluetooth 4.0 technology; wireless range up to 200&#039;; magnetic attachment; 2 folding angles; built-in lithium-polymer battery\", 'price' => 129.99, 'sale_price' => 64.99, 'url' => 'http://www.bestbuy.com/site/htc-keyboard-folio-case-for-google-nexus-9-tablets-black/1387098.p?id=1219491357295&skuId=1387098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387098_sa.jpg\"}', 'upc' => '821793042738', 'provider' => 'bestbuy'],\n ['name' => \"PureGuardian - 1.3-Gal. Ultrasonic Warm and Cool Mist Humidifier - White\", 'description_short' => \"Humidifies rooms up to 600 sq. ft.; 1.3-gal. tank; SmartMist sensor; SilverClean protection; ultrasonic technology\", 'description_long' => \"Humidifies rooms up to 600 sq. ft.; 1.3-gal. tank; SmartMist sensor; SilverClean protection; ultrasonic technology\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pureguardian-1-3-gal-ultrasonic-warm-and-cool-mist-humidifier-white/1387123.p?id=1219051117978&skuId=1387123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387123_rc.jpg\"}', 'upc' => '817624010168', 'provider' => 'bestbuy'],\n ['name' => \"PureGuardian - 0.2-Gal. Ultrasonic Humidifier - Blue\", 'description_short' => \"0.5 amps; 0.2-gal. tank capacity; Silver Clean technology; ultrasonic technology; low-water indicator\", 'description_long' => \"0.5 amps; 0.2-gal. tank capacity; Silver Clean technology; ultrasonic technology; low-water indicator\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pureguardian-0-2-gal-ultrasonic-humidifier-blue/1387196.p?id=1219051115735&skuId=1387196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387196_sa.jpg\"}', 'upc' => '895916000554', 'provider' => 'bestbuy'],\n ['name' => \"GermGuardian - Combination Filter for GermGuardian AC4010 Tabletop Air Cleaning Systems - Black\", 'description_short' => \"Compatible with GermGuardian AC4010 tabletop air cleaning systems; multiple layers of filtration, including HEPA, charcoal and PCO\", 'description_long' => \"Compatible with GermGuardian AC4010 tabletop air cleaning systems; multiple layers of filtration, including HEPA, charcoal and PCO\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/germguardian-combination-filter-for-germguardian-ac4010-tabletop-air-cleaning-systems-black/1387266.p?id=1219051115743&skuId=1387266&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387266_sa.jpg\"}', 'upc' => '895916000943', 'provider' => 'bestbuy'],\n ['name' => \"iRobot - Braava 380t Floor Mopping Robot - Black\", 'description_short' => \"NorthStar navigation cube; Pro-Clean system; dry- and damp-mop modes; smart sensors; pause/resume feature; soft-touch bumper; 8-1/2&quot; cleaning path width\", 'description_long' => \"NorthStar navigation cube; Pro-Clean system; dry- and damp-mop modes; smart sensors; pause/resume feature; soft-touch bumper; 8-1/2&quot; cleaning path width\", 'price' => 299.99, 'sale_price' => 254.99, 'url' => 'http://www.bestbuy.com/site/irobot-braava-380t-floor-mopping-robot-black/1387309.p?id=1219051115731&skuId=1387309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387309_sa.jpg\"}', 'upc' => '885155005182', 'provider' => 'bestbuy'],\n ['name' => \"Rid of Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rid-of-me-cd/1387323.p?id=95018&skuId=1387323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387323_sa.jpg\"}', 'upc' => '731451469626', 'provider' => 'bestbuy'],\n ['name' => \"Ufc: Ultimate Fighter - Season 17 (5 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ufc-ultimate-fighter-season-17-5-disc-dvd/1387336.p?id=2716169&skuId=1387336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387336.jpg\"}', 'upc' => '013132606828', 'provider' => 'bestbuy'],\n ['name' => \"Pawn Shop Chronicles (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pawn-shop-chronicles-dvd/1387345.p?id=2716565&skuId=1387345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387345_sa.jpg\"}', 'upc' => '013132606989', 'provider' => 'bestbuy'],\n ['name' => \"Pawn Shop Chronicles (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pawn-shop-chronicles-blu-ray-disc-2-disc/1387354.p?id=2716565&skuId=1387354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387354_sa.jpg\"}', 'upc' => '013132607009', 'provider' => 'bestbuy'],\n ['name' => \"Epic (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/epic-blu-ray-disc-2-disc-ultraviolet-digital-copy/1387372.p?id=2737258&skuId=1387372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387372_sa.jpg\"}', 'upc' => '024543802440', 'provider' => 'bestbuy'],\n ['name' => \"Epic (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/epic-dvd/1387381.p?id=2737258&skuId=1387381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387381_sa.jpg\"}', 'upc' => '024543802372', 'provider' => 'bestbuy'],\n ['name' => \"Epic (Blu-ray 3D) (3-D) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/epic-blu-ray-3d-3-d-ultraviolet-digital-copy/1387405.p?id=2737258&skuId=1387405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387405_sa.jpg\"}', 'upc' => '024543866398', 'provider' => 'bestbuy'],\n ['name' => \"Full Attention - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/full-attention-cd/1387421.p?id=84728&skuId=1387421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387421_sa.jpg\"}', 'upc' => '054645128629', 'provider' => 'bestbuy'],\n ['name' => \"The Big Wedding (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-big-wedding-dvd-ultraviolet-digital-copy/1387423.p?id=2720879&skuId=1387423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387423_sa.jpg\"}', 'upc' => '031398173243', 'provider' => 'bestbuy'],\n ['name' => \"Strictly the Best, Vol. 9 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strictly-the-best-vol-9-cd-various/1387430.p?id=113694&skuId=1387430&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387430', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387430_sa.jpg\"}', 'upc' => '054645129121', 'provider' => 'bestbuy'],\n ['name' => \"Mud (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mud-dvd-ultraviolet-digital-copy/1387432.p?id=2719751&skuId=1387432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387432_sa.jpg\"}', 'upc' => '031398172888', 'provider' => 'bestbuy'],\n ['name' => \"The Big Wedding (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-big-wedding-blu-ray-disc-ultraviolet-digital-copy/1387441.p?id=2720879&skuId=1387441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387441_sa.jpg\"}', 'upc' => '031398173373', 'provider' => 'bestbuy'],\n ['name' => \"Strictly the Best, Vol. 10 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strictly-the-best-vol-10-cd-various/1387449.p?id=113695&skuId=1387449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387449_sa.jpg\"}', 'upc' => '054645129220', 'provider' => 'bestbuy'],\n ['name' => \"Mud (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mud-blu-ray-disc-ultraviolet-digital-copy/1387469.p?id=2719751&skuId=1387469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1387469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1387\\/1387469_sa.jpg\"}', 'upc' => '031398172895', 'provider' => 'bestbuy'],\n ['name' => \"Aftershock (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aftershock-blu-ray-disc/1388025.p?id=2719258&skuId=1388025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1388025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1388\\/1388025_sa.jpg\"}', 'upc' => '013132608983', 'provider' => 'bestbuy'],\n ['name' => \"Sony - AC Adapter and Charger\", 'description_short' => \"Compatible with InfoLithium V, H and P batteries; dual-charge; LCD battery life indicator\", 'description_long' => \"Compatible with InfoLithium V, H and P batteries; dual-charge; LCD battery life indicator\", 'price' => 149.99, 'sale_price' => 114.99, 'url' => 'http://www.bestbuy.com/site/sony-ac-adapter-and-charger/1388034.p?id=1218334699125&skuId=1388034', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1388034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1388\\/1388034_500x500_sa.jpg\"}', 'upc' => '027242781184', 'provider' => 'bestbuy'],\n ['name' => \"Emperor (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emperor-blu-ray-disc-ultraviolet-digital-copy/1388043.p?id=2714170&skuId=1388043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1388043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1388\\/1388043_sa.jpg\"}', 'upc' => '031398170884', 'provider' => 'bestbuy'],\n ['name' => \"Blues & Ragtime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-ragtime-cd/1388288.p?id=79860&skuId=1388288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1388288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1388\\/1388288_sa.jpg\"}', 'upc' => '016351972422', 'provider' => 'bestbuy'],\n ['name' => \"Chasin' Rainbows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chasin-rainbows-cd/1388297.p?id=79366&skuId=1388297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1388297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1388\\/1388297_sa.jpg\"}', 'upc' => '016351600226', 'provider' => 'bestbuy'],\n ['name' => \"Logitech - G930 Wireless Gaming Headset - Black\", 'description_short' => \"Wireless range up to 40&#039;; 7.1-channel surround sound; 3 programmable G-keys; noise-canceling microphone\", 'description_long' => \"Wireless range up to 40&#039;; 7.1-channel surround sound; 3 programmable G-keys; noise-canceling microphone\", 'price' => 159.99, 'sale_price' => 79.99, 'url' => 'http://www.bestbuy.com/site/logitech-g930-wireless-gaming-headset-black/1388362.p?id=1218255234461&skuId=1388362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1388362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1388\\/1388362_rc.jpg\"}', 'upc' => '097855067029', 'provider' => 'bestbuy'],\n ['name' => \"Dreamland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dreamland-cd/1388965.p?id=73538&skuId=1388965&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1388965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1388\\/1388965_sa.jpg\"}', 'upc' => '093624507628', 'provider' => 'bestbuy'],\n ['name' => \"Warm House - Zurich Tabletop Retro Electric Fireplace - Brown\", 'description_short' => \"WARM HOUSE Zurich Tabletop Retro Electric Fireplace: 2 heat settings; flames operate with and without heat; overheat protection; auto safety shutoff; cool-touch housing\", 'description_long' => \"WARM HOUSE Zurich Tabletop Retro Electric Fireplace: 2 heat settings; flames operate with and without heat; overheat protection; auto safety shutoff; cool-touch housing\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warm-house-zurich-tabletop-retro-electric-fireplace-brown/1389005.p?id=1219491357290&skuId=1389005', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389005_sa.jpg\"}', 'upc' => '859423003446', 'provider' => 'bestbuy'],\n ['name' => \"Frigidaire - SALAV Performance Series Upright Steam Cleaner - Gray\", 'description_short' => \"9.2 amps of power; 11&quot; cleaning path width; includes mop pad and carpet glider\", 'description_long' => \"9.2 amps of power; 11&quot; cleaning path width; includes mop pad and carpet glider\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frigidaire-salav-performance-series-upright-steam-cleaner-gray/1389014.p?id=1219491357291&skuId=1389014', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389014_sa.jpg\"}', 'upc' => '700115255127', 'provider' => 'bestbuy'],\n ['name' => \"Warm House - Ottawa Floorstanding Electric Fireplace - Black\", 'description_short' => \"WARM HOUSE Ottawa Floorstanding Electric Fireplace: Heats up to 400 sq. ft.; dual heat settings; cool-touch housing; automatic overheat protection; portable\", 'description_long' => \"WARM HOUSE Ottawa Floorstanding Electric Fireplace: Heats up to 400 sq. ft.; dual heat settings; cool-touch housing; automatic overheat protection; portable\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warm-house-ottawa-floorstanding-electric-fireplace-black/1389023.p?id=1219491357292&skuId=1389023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389023_sa.jpg\"}', 'upc' => '859423003408', 'provider' => 'bestbuy'],\n ['name' => \"Warm House - Venice Wall-Mounted LED Electric Fireplace - Black\", 'description_short' => \"WARM HOUSE Venice Wall-Mounted LED Electric Fireplace: Heats rooms up to 400 sq. ft; remote operation; 2 heat settings; overheat protection with automatic shutoff\", 'description_long' => \"WARM HOUSE Venice Wall-Mounted LED Electric Fireplace: Heats rooms up to 400 sq. ft; remote operation; 2 heat settings; overheat protection with automatic shutoff\", 'price' => 299.99, 'sale_price' => 236.99, 'url' => 'http://www.bestbuy.com/site/warm-house-venice-wall-mounted-led-electric-fireplace-black/1389032.p?id=1219491360893&skuId=1389032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389032_sa.jpg\"}', 'upc' => '859423003439', 'provider' => 'bestbuy'],\n ['name' => \"Warm House - Zurich Tabletop Retro Electric Fireplace - Black\", 'description_short' => \"WARM HOUSE Zurich Tabletop Retro Electric Fireplace: 2 heat settings; flames operate with and without heat; overheat protection; auto safety shutoff; cool-touch housing\", 'description_long' => \"WARM HOUSE Zurich Tabletop Retro Electric Fireplace: 2 heat settings; flames operate with and without heat; overheat protection; auto safety shutoff; cool-touch housing\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warm-house-zurich-tabletop-retro-electric-fireplace-black/1389041.p?id=1219491357293&skuId=1389041', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389041_sa.jpg\"}', 'upc' => '859423003453', 'provider' => 'bestbuy'],\n ['name' => \"Atlanta Bounce - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlanta-bounce-cd/1389349.p?id=94898&skuId=1389349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389349.jpg\"}', 'upc' => '096297037928', 'provider' => 'bestbuy'],\n ['name' => \"America's Most Colorful Hillbilly Band: Their... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/americas-most-colorful-hillbilly-band-their-cd/1389358.p?id=90122&skuId=1389358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389358.jpg\"}', 'upc' => '096297039120', 'provider' => 'bestbuy'],\n ['name' => \"Fiddle King of Cajun Swing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fiddle-king-of-cajun-swing-cd/1389367.p?id=77555&skuId=1389367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389367_sa.jpg\"}', 'upc' => '096297038024', 'provider' => 'bestbuy'],\n ['name' => \"Singin' in the Bathtub - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singin-in-the-bathtub-cd/1389508.p?id=79367&skuId=1389508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389508.jpg\"}', 'upc' => '016351600325', 'provider' => 'bestbuy'],\n ['name' => \"The Dutchman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dutchman-cd/1389517.p?id=77873&skuId=1389517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389517_sa.jpg\"}', 'upc' => '016351520524', 'provider' => 'bestbuy'],\n ['name' => \"Feadoga Stain, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feadoga-stain-vol-2-cd/1389526.p?id=74479&skuId=1389526&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389526', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389526.jpg\"}', 'upc' => '016351798329', 'provider' => 'bestbuy'],\n ['name' => \"Born Gangstaz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-gangstaz-cd/1389633.p?id=75594&skuId=1389633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '074645290324', 'provider' => 'bestbuy'],\n ['name' => \"06:21:03:11 Up Evil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/06210311-up-evil-cd/1389768.p?id=83025&skuId=1389768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1389768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1389\\/1389768_sa.jpg\"}', 'upc' => '074645343327', 'provider' => 'bestbuy'],\n ['name' => \"Funupsmanship - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/funupsmanship-cd/1390337.p?id=111226&skuId=1390337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390337.jpg\"}', 'upc' => '734956100629', 'provider' => 'bestbuy'],\n ['name' => \"Mad Max - Xbox One\", 'description_short' => \"Take on brutal marauders to survive the deadly Wasteland\", 'description_long' => \"Take on brutal marauders to survive the deadly Wasteland\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mad-max-xbox-one/1390457.p?id=1219050994618&skuId=1390457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390457_sa.jpg\"}', 'upc' => '883929360079', 'provider' => 'bestbuy'],\n ['name' => \"Count Me In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/count-me-in-cd/1390505.p?id=75612&skuId=1390505&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390505', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390505.jpg\"}', 'upc' => '025041103626', 'provider' => 'bestbuy'],\n ['name' => \"Boat People - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boat-people-cd/1390514.p?id=170692&skuId=1390514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390514_sa.jpg\"}', 'upc' => '729337700321', 'provider' => 'bestbuy'],\n ['name' => \"How the West Was Lost - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-the-west-was-lost-cd-various/1390541.p?id=85846&skuId=1390541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390541_sa.jpg\"}', 'upc' => '021585080126', 'provider' => 'bestbuy'],\n ['name' => \"English Consort Music For Recorder Quintet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/english-consort-music-for-recorder-quintet-cd/1390658.p?id=1755124&skuId=1390658&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390658', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390658.jpg\"}', 'upc' => '750582013324', 'provider' => 'bestbuy'],\n ['name' => \"Sun Flute 4 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sun-flute-4-various-cd/1390667.p?id=1784646&skuId=1390667&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390667', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582017124', 'provider' => 'bestbuy'],\n ['name' => \"Finlandia: Festival Of Finnish Music - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/finlandia-festival-of-finnish-music-various-cd/1390685.p?id=1784705&skuId=1390685&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390685', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390685.jpg\"}', 'upc' => '750582035722', 'provider' => 'bestbuy'],\n ['name' => \"Serenade Opus 31 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serenade-opus-31-cd/1390774.p?id=1754428&skuId=1390774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390774.jpg\"}', 'upc' => '750582013720', 'provider' => 'bestbuy'],\n ['name' => \"Pictures At An Exibition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pictures-at-an-exibition-cd/1390792.p?id=1784513&skuId=1390792&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390792', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582003929', 'provider' => 'bestbuy'],\n ['name' => \"Fever for da Flavor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fever-for-da-flavor-cd/1390809.p?id=84525&skuId=1390809&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390809_sa.jpg\"}', 'upc' => '022471012627', 'provider' => 'bestbuy'],\n ['name' => \"Violincello & Orchestra Concerto 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/violincello-orchestra-concerto-1-cd/1390836.p?id=1784508&skuId=1390836&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390836.jpg\"}', 'upc' => '750582031526', 'provider' => 'bestbuy'],\n ['name' => \"Symphony 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphony-4-cd/1390907.p?id=1784677&skuId=1390907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582033322', 'provider' => 'bestbuy'],\n ['name' => \"Piano Concerto No.1 (Orig. Version) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-concerto-no-1-orig-version-cd/1390943.p?id=1756305&skuId=1390943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1390943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1390\\/1390943.jpg\"}', 'upc' => '750582034626', 'provider' => 'bestbuy'],\n ['name' => \"Round 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/round-2-cd/1391069.p?id=100671&skuId=1391069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1391069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1391\\/1391069_sa.jpg\"}', 'upc' => '051617074724', 'provider' => 'bestbuy'],\n ['name' => \"Big Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-time-cd/1391112.p?id=89440&skuId=1391112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1391112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1391\\/1391112_sa.jpg\"}', 'upc' => '093624527626', 'provider' => 'bestbuy'],\n ['name' => \"The Muffs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-muffs-cd/1391149.p?id=92577&skuId=1391149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1391149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1391\\/1391149_sa.jpg\"}', 'upc' => '093624525127', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Louisiana Music [Rounder] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-louisiana-music-rounder-cd-various/1391559.p?id=89797&skuId=1391559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1391559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1391\\/1391559_sa.jpg\"}', 'upc' => '011661850828', 'provider' => 'bestbuy'],\n ['name' => \"Freestyle's Greatest Hits, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freestyles-greatest-hits-vol-2-cd-various/1391826.p?id=122946&skuId=1391826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1391826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1391\\/1391826_sa.jpg\"}', 'upc' => '094171423225', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - Soft-Shell Case for Apple® iPhone® 5 and 5s - Black\", 'description_short' => \"TUMI T-TECH Soft-Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; leatherette material; polycarbonate shell; molded button covers\", 'description_long' => \"TUMI T-TECH Soft-Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; leatherette material; polycarbonate shell; molded button covers\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-soft-shell-case-for-apple-iphone-5-and-5s-black/1392002.p?id=1219491357284&skuId=1392002', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1392002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1392\\/1392002_sa.jpg\"}', 'upc' => '030878147309', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - Soft-Shell Case for Apple® iPhone® 5 and 5s - Black\", 'description_short' => \"TUMI T-TECH Soft-Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; open access to ports and controls; pressable button covers; raised front bezel\", 'description_long' => \"TUMI T-TECH Soft-Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; open access to ports and controls; pressable button covers; raised front bezel\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-soft-shell-case-for-apple-iphone-5-and-5s-black/1392011.p?id=1219491360356&skuId=1392011', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1392011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1392\\/1392011_sa.jpg\"}', 'upc' => '030878009140', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - Hard Shell Case for Apple® iPhone® 5 and 5s - Light Pink\", 'description_short' => \"TUMI T-TECH Hard Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; slim profile; molded button covers\", 'description_long' => \"TUMI T-TECH Hard Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; slim profile; molded button covers\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-hard-shell-case-for-apple-iphone-5-and-5s-light-pink/1392039.p?id=1219491357286&skuId=1392039', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1392039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1392\\/1392039_sa.jpg\"}', 'upc' => '030878138260', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - Soft-Shell Case for Apple® iPhone® 5 and 5s - Yellow\", 'description_short' => \"TUMI T-TECH Soft-Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; ballistic nylon, leatherette and polycarbonate material; impact-resistant edge; nonslip grip; molded button covers; raised front lip\", 'description_long' => \"TUMI T-TECH Soft-Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; ballistic nylon, leatherette and polycarbonate material; impact-resistant edge; nonslip grip; molded button covers; raised front lip\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-soft-shell-case-for-apple-iphone-5-and-5s-yellow/1392048.p?id=1219491357287&skuId=1392048', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1392048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1392\\/1392048_sa.jpg\"}', 'upc' => '030878138932', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - Soft-Shell Case for Apple® iPhone® 5 and 5s - Pink\", 'description_short' => \"TUMI T-TECH Soft-Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; ballistic nylon, leatherette and polycarbonate material; impact-resistant edge; nonslip grip; molded button covers; raised front lip\", 'description_long' => \"TUMI T-TECH Soft-Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; ballistic nylon, leatherette and polycarbonate material; impact-resistant edge; nonslip grip; molded button covers; raised front lip\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-soft-shell-case-for-apple-iphone-5-and-5s-pink/1392057.p?id=1219491357289&skuId=1392057', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1392057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1392\\/1392057_sa.jpg\"}', 'upc' => '030878138925', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - TSoft-Shell Case for Apple® iPhone® 5 and 5s - Red\", 'description_short' => \"TUMI T-TECH Soft-Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; open access to ports and controls; pressable button covers; raised front bezel\", 'description_long' => \"TUMI T-TECH Soft-Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; open access to ports and controls; pressable button covers; raised front bezel\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-tsoft-shell-case-for-apple-iphone-5-and-5s-red/1392066.p?id=1219491357288&skuId=1392066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1392066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1392\\/1392066_sa.jpg\"}', 'upc' => '030878009164', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - Soft-Shell Slim Fitted Case for Apple® iPhone® 5 and 5s - Red\", 'description_short' => \"TUMI T-TECH Soft-Shell Slim Fitted Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; ballistic nylon; polycarbonate shell; flexible impact-resistant edges\", 'description_long' => \"TUMI T-TECH Soft-Shell Slim Fitted Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; ballistic nylon; polycarbonate shell; flexible impact-resistant edges\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-soft-shell-slim-fitted-case-for-apple-iphone-5-and-5s-red/1392075.p?id=1219491362703&skuId=1392075', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1392075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1392\\/1392075_sa.jpg\"}', 'upc' => '030878252027', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - Hard Shell Case for Apple® iPhone® 5 and 5s - Red/Orange Camo\", 'description_short' => \"TUMI T-TECH Hard Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; slim profile; molded button covers\", 'description_long' => \"TUMI T-TECH Hard Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; slim profile; molded button covers\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-hard-shell-case-for-apple-iphone-5-and-5s-red-orange-camo/1392084.p?id=1219491361924&skuId=1392084', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1392084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1392\\/1392084_sa.jpg\"}', 'upc' => '030878138307', 'provider' => 'bestbuy'],\n ['name' => \"Magellan - RoadMate 7\\\" GPS with Built-in Bluetooth, Lifetime Map Updates and Lifetime Traffic Updates - Black/Silver\", 'description_short' => \"MAGELLAN RoadMate 7&quot; GPS with Built-in Bluetooth, Lifetime Map Updates and Lifetime Traffic Updates: Preloaded base maps of the U.S., Canada and Puerto Rico; 7&quot; touch screen; text-to-speech voice guidance; lifetime traffic and map updates; Bluetooth\", 'description_long' => \"MAGELLAN RoadMate 7&quot; GPS with Built-in Bluetooth, Lifetime Map Updates and Lifetime Traffic Updates: Preloaded base maps of the U.S., Canada and Puerto Rico; 7&quot; touch screen; text-to-speech voice guidance; lifetime traffic and map updates; Bluetooth\", 'price' => 229.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magellan-roadmate-7-gps-with-built-in-bluetooth-lifetime-map-updates-and-lifetime-traffic-updates-black-silver/1393001.p?id=1219528527928&skuId=1393001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1393001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312395662\\/1312395662_sa.jpg\"}', 'upc' => '763357130690', 'provider' => 'bestbuy'],\n ['name' => \"Impermanent Resonance [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/impermanent-resonance-digipak-cd/1393002.p?id=2719826&skuId=1393002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1393002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1393\\/1393002_sa.jpg\"}', 'upc' => '885417059625', 'provider' => 'bestbuy'],\n ['name' => \"Goldkinder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goldkinder-cd/1393011.p?id=2731081&skuId=1393011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1393011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1393\\/1393011_sa.jpg\"}', 'upc' => '859381003830', 'provider' => 'bestbuy'],\n ['name' => \"Zmodo - 4-Channel, 4-Camera Indoor/Outdoor High-Definition NVR Security System - White\", 'description_short' => \"ZMODO 4-Channel, 4-Camera Indoor/Outdoor High-Definition NVR Security System: Includes 4 cameras and a 4-channel PoE (Power over Ethernet) NVR with a 1TB hard drive; 1/4&quot; CMOS image sensor; IR night vision; supports remote monitoring\", 'description_long' => \"ZMODO 4-Channel, 4-Camera Indoor/Outdoor High-Definition NVR Security System: Includes 4 cameras and a 4-channel PoE (Power over Ethernet) NVR with a 1TB hard drive; 1/4&quot; CMOS image sensor; IR night vision; supports remote monitoring\", 'price' => 299.99, 'sale_price' => 219.99, 'url' => 'http://www.bestbuy.com/site/zmodo-4-channel-4-camera-indoor-outdoor-high-definition-nvr-security-system-white/1393029.p?id=1219492692268&skuId=1393029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1393029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1393\\/1393029_sa.jpg\"}', 'upc' => '846655019390', 'provider' => 'bestbuy'],\n ['name' => \"Revocation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revocation-cd/1393127.p?id=2719715&skuId=1393127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1393127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1393\\/1393127_sa.jpg\"}', 'upc' => '781676721627', 'provider' => 'bestbuy'],\n ['name' => \"Bewitched - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bewitched-cd/1393147.p?id=66461&skuId=1393147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1393147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1393\\/1393147_sa.jpg\"}', 'upc' => '731451472428', 'provider' => 'bestbuy'],\n ['name' => \"Heavy Metal Music [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heavy-metal-music-digipak-cd/1393233.p?id=2719768&skuId=1393233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1393233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1393\\/1393233_sa.jpg\"}', 'upc' => '853423003260', 'provider' => 'bestbuy'],\n ['name' => \"Alive III - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alive-iii-cd/1393316.p?id=88184&skuId=1393316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1393316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1393\\/1393316_sa.jpg\"}', 'upc' => '731451477720', 'provider' => 'bestbuy'],\n ['name' => \"Benny & Joon [Music from the Original Motion... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/benny-joon-music-from-the-original-motion-cd-original-soundtrack/1393664.p?id=74455&skuId=1393664&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1393664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1393\\/1393664_sa.jpg\"}', 'upc' => '731383564420', 'provider' => 'bestbuy'],\n ['name' => \"Late for Nothing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/late-for-nothing-cd/1394001.p?id=2719906&skuId=1394001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1394001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1394\\/1394001_sa.jpg\"}', 'upc' => '727701902920', 'provider' => 'bestbuy'],\n ['name' => \"Necrocracy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/necrocracy-cd/1394029.p?id=2719891&skuId=1394029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1394029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1394\\/1394029_sa.jpg\"}', 'upc' => '781676720521', 'provider' => 'bestbuy'],\n ['name' => \"XXL Mini Mag 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/xxl-mini-mag-2-cd/1394171.p?id=2755189&skuId=1394171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1394171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1394\\/1394171.jpg\"}', 'upc' => '766930013922', 'provider' => 'bestbuy'],\n ['name' => \"The Absolute Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-absolute-greatest-hits-cd/1394199.p?id=2718492&skuId=1394199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1394199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1394\\/1394199_sa.jpg\"}', 'upc' => '181475703723', 'provider' => 'bestbuy'],\n ['name' => \"Walking Papers [Best Buy Exclusive] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-papers-best-buy-exclusive-digipak-cd/1394205.p?id=2730620&skuId=1394205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1394205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1394\\/1394205.jpg\"}', 'upc' => '858135004048', 'provider' => 'bestbuy'],\n ['name' => \"Yes, It's True [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yes-its-true-digipak-cd/1394214.p?id=2718986&skuId=1394214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1394214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1394\\/1394214_sa.jpg\"}', 'upc' => '186535007827', 'provider' => 'bestbuy'],\n ['name' => \"Lawn Mower Man [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lawn-mower-man-pa-digipak-cd/1394223.p?id=2717179&skuId=1394223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1394223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1394\\/1394223_sa.jpg\"}', 'upc' => '673951069626', 'provider' => 'bestbuy'],\n ['name' => \"Walking Papers [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-papers-digipak-cd/1394232.p?id=2719772&skuId=1394232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1394232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1394\\/1394232_sa.jpg\"}', 'upc' => '858135004031', 'provider' => 'bestbuy'],\n ['name' => \"Incitare [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incitare-digipak-cd/1395019.p?id=2719706&skuId=1395019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395019_sa.jpg\"}', 'upc' => '888072346314', 'provider' => 'bestbuy'],\n ['name' => \"Trin-I-Tee 5:7 Hits [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trin-i-tee-57-hits-cd-dvd-cd-dvd/1395028.p?id=2720994&skuId=1395028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395028_sa.jpg\"}', 'upc' => '887158424625', 'provider' => 'bestbuy'],\n ['name' => \"Edward Sharpe & the Magnetic Zeros [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/edward-sharpe-the-magnetic-zeros-digipak-cd/1395055.p?id=2717215&skuId=1395055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395055_sa.jpg\"}', 'upc' => '601091409620', 'provider' => 'bestbuy'],\n ['name' => \"Pura Vida Conspiracy [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pura-vida-conspiracy-digipak-cd/1395064.p?id=2723907&skuId=1395064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395064_sa.jpg\"}', 'upc' => '880882188023', 'provider' => 'bestbuy'],\n ['name' => \"Reggae Gold 2013 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reggae-gold-2013-cd-various/1395073.p?id=2721205&skuId=1395073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395073_sa.jpg\"}', 'upc' => '054645197922', 'provider' => 'bestbuy'],\n ['name' => \"Mulligan Meets Monk [Remastered] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mulligan-meets-monk-remastered-cd/1395082.p?id=2721467&skuId=1395082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395082_sa.jpg\"}', 'upc' => '888072345904', 'provider' => 'bestbuy'],\n ['name' => \"The Idolmaker [Score] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-idolmaker-score-cd-original-soundtrack/1395091.p?id=2721214&skuId=1395091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395091_sa.jpg\"}', 'upc' => '030206718829', 'provider' => 'bestbuy'],\n ['name' => \"How My Heart Sings! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-my-heart-sings-cd/1395107.p?id=2720975&skuId=1395107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395107_sa.jpg\"}', 'upc' => '888072345935', 'provider' => 'bestbuy'],\n ['name' => \"Trankazos de Verano 2013 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trankazos-de-verano-2013-cd-various/1395116.p?id=2721101&skuId=1395116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395116_sa.jpg\"}', 'upc' => '602537435586', 'provider' => 'bestbuy'],\n ['name' => \"Notorious - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/notorious-cd/1395118.p?id=2276749&skuId=1395118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395118_sa.jpg\"}', 'upc' => '077774641524', 'provider' => 'bestbuy'],\n ['name' => \"So Much Guitar! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-much-guitar-cd/1395134.p?id=2720918&skuId=1395134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395134_sa.jpg\"}', 'upc' => '888072345966', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Bing Crosby & Fred Astaire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-bing-crosby-fred-astaire-cd/1395136.p?id=79262&skuId=1395136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395136.jpg\"}', 'upc' => '715187761728', 'provider' => 'bestbuy'],\n ['name' => \"Jinx [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jinx-digipak-cd/1395143.p?id=2722051&skuId=1395143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395143_sa.jpg\"}', 'upc' => '749846018328', 'provider' => 'bestbuy'],\n ['name' => \"Best of Lena Horne [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-lena-horne-curb-cd/1395154.p?id=67607&skuId=1395154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395154.jpg\"}', 'upc' => '715187761629', 'provider' => 'bestbuy'],\n ['name' => \"1926-1929 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1926-1929-cd/1395289.p?id=1457943&skuId=1395289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395289_sa.jpg\"}', 'upc' => '750582767128', 'provider' => 'bestbuy'],\n ['name' => \"1933-1934 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1933-1934-cd/1395305.p?id=1469571&skuId=1395305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395305.jpg\"}', 'upc' => '750582766923', 'provider' => 'bestbuy'],\n ['name' => \"The Paris Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-paris-concert-cd/1395378.p?id=65170&skuId=1395378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395378.jpg\"}', 'upc' => '025218678124', 'provider' => 'bestbuy'],\n ['name' => \"At the Montreux Jazz Festival 1975 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-montreux-jazz-festival-1975-cd/1395387.p?id=66275&skuId=1395387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395387_sa.jpg\"}', 'upc' => '025218678926', 'provider' => 'bestbuy'],\n ['name' => \"Jurassic Park [Original Motion Picture... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jurassic-park-original-motion-picture-cd-original-soundtrack/1395617.p?id=2690530&skuId=1395617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395617_sa.jpg\"}', 'upc' => '008811085926', 'provider' => 'bestbuy'],\n ['name' => \"Rumble! The Best of Link Wray - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/rumble-the-best-of-link-wray-cd/1395886.p?id=104748&skuId=1395886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395886_sa.jpg\"}', 'upc' => '081227122225', 'provider' => 'bestbuy'],\n ['name' => \"Carolan's Welcome: Harp Music of Ireland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carolans-welcome-harp-music-of-ireland-cd/1395957.p?id=2067890&skuId=1395957&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1395957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1395\\/1395957_sa.jpg\"}', 'upc' => '053479017628', 'provider' => 'bestbuy'],\n ['name' => \"PNY - 8GB 1.6GHz PC3-12800 DDR3 Laptop Memory - Multi\", 'description_short' => \"Designed for laptops; 8GB of memory; operates at 1.6GHz\", 'description_long' => \"Designed for laptops; 8GB of memory; operates at 1.6GHz\", 'price' => 79.99, 'sale_price' => 29.99, 'url' => 'http://www.bestbuy.com/site/pny-8gb-1-6ghz-pc3-12800-ddr3-laptop-memory-multi/1396124.p?id=1219051117670&skuId=1396124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1396124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1396\\/1396124_sa.jpg\"}', 'upc' => '751492567082', 'provider' => 'bestbuy'],\n ['name' => \"Transition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transition-cd/1396368.p?id=65180&skuId=1396368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1396368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1396\\/1396368_sa.jpg\"}', 'upc' => '011105012423', 'provider' => 'bestbuy'],\n ['name' => \"Dream Harder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dream-harder-cd/1396448.p?id=103590&skuId=1396448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1396448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1396\\/1396448.jpg\"}', 'upc' => '720642447628', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - The Rolling Stones: Tattoo You Sheet Music - White/Black/Red\", 'description_short' => \"HAL LEONARD The Rolling Stones: Tattoo You Sheet Music: Guitar, vocal and piano sheet music for The Rolling Stones&#039; album, Tattoo You\", 'description_long' => \"HAL LEONARD The Rolling Stones: Tattoo You Sheet Music: Guitar, vocal and piano sheet music for The Rolling Stones&#039; album, Tattoo You\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-the-rolling-stones-tattoo-you-sheet-music-white-black-red/1397007.p?id=1219492696552&skuId=1397007', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397007_sa.jpg\"}', 'upc' => '073999257328', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Colbie Caillat: Coco Sheet Music - White/Brown/Green\", 'description_short' => \"HAL LEONARD Colbie Caillat: Coco Sheet Music: Piano, guitar and vocal sheet music for Colbie Caillat&#039;s Coco\", 'description_long' => \"HAL LEONARD Colbie Caillat: Coco Sheet Music: Piano, guitar and vocal sheet music for Colbie Caillat&#039;s Coco\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-colbie-caillat-coco-sheet-music-white-brown-green/1397016.p?id=1219492692393&skuId=1397016', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397016_sa.jpg\"}', 'upc' => '884088220945', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Alicia Keys: As I Am Sheet Music - Black/White/Red\", 'description_short' => \"HAL LEONARD Alicia Keys: As I Am Sheet Music: Piano, guitar and vocal sheet music for Alicia Keys&#039; album, As I Am\", 'description_long' => \"HAL LEONARD Alicia Keys: As I Am Sheet Music: Piano, guitar and vocal sheet music for Alicia Keys&#039; album, As I Am\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-alicia-keys-as-i-am-sheet-music-black-white-red/1397025.p?id=1219492693632&skuId=1397025', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397025_sa.jpg\"}', 'upc' => '884088219864', 'provider' => 'bestbuy'],\n ['name' => \"PNY - 2-Pack 8GB PC3-12800 DDR3 Desktop Memory Kit - Multi\", 'description_short' => \"Designed for desktops; 16GB of memory; operates at 1600MHz; low power consumption; enhanced thermal performance\", 'description_long' => \"Designed for desktops; 16GB of memory; operates at 1600MHz; low power consumption; enhanced thermal performance\", 'price' => 151.99, 'sale_price' => 113.99, 'url' => 'http://www.bestbuy.com/site/pny-2-pack-8gb-pc3-12800-ddr3-desktop-memory-kit-multi/1397026.p?id=1219051117603&skuId=1397026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397026_sa.jpg\"}', 'upc' => '751492565385', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Mumford & Sons: Sigh No More Sheet Music - White/Black/Blue/Yellow/Brown\", 'description_short' => \"HAL LEONARD Mumford &amp; Sons: Sigh No More Sheet Music: Piano, guitar and vocal sheet music for Mumford &amp; Sons&#039; debut album, Sigh No More\", 'description_long' => \"HAL LEONARD Mumford &amp; Sons: Sigh No More Sheet Music: Piano, guitar and vocal sheet music for Mumford &amp; Sons&#039; debut album, Sigh No More\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-mumford-sons-sigh-no-more-sheet-music-white-black-blue-yellow-brown/1397034.p?id=1219492696084&skuId=1397034', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397034_sa.jpg\"}', 'upc' => '884088538460', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Jack Johnson: To The Sea Sheet Music - Blue/Black/White\", 'description_short' => \"HAL LEONARD Jack Johnson: To The Sea Sheet Music: Piano, guitar and vocal sheet music for Jack Johnson&#039;s To The Sea\", 'description_long' => \"HAL LEONARD Jack Johnson: To The Sea Sheet Music: Piano, guitar and vocal sheet music for Jack Johnson&#039;s To The Sea\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-jack-johnson-to-the-sea-sheet-music-blue-black-white/1397043.p?id=1219492689659&skuId=1397043', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397043_sa.jpg\"}', 'upc' => '884088524302', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Bruno Mars: Doo-Wops & Hooligans Sheet Music - Yellow/Black\", 'description_short' => \"HAL LEONARD Bruno Mars: Doo-Wops &amp; Hooligans Sheet Music: Piano, guitar and vocal sheet music for Bruno Mars&#039; album, Doo-Wops &amp; Hooligans\", 'description_long' => \"HAL LEONARD Bruno Mars: Doo-Wops &amp; Hooligans Sheet Music: Piano, guitar and vocal sheet music for Bruno Mars&#039; album, Doo-Wops &amp; Hooligans\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-bruno-mars-doo-wops-hooligans-sheet-music-yellow-black/1397061.p?id=1219492695447&skuId=1397061', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397061_sa.jpg\"}', 'upc' => '884088547097', 'provider' => 'bestbuy'],\n ['name' => \"Chain Smokin' Texas Style - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chain-smokin-texas-style-cd/1397090.p?id=88454&skuId=1397090&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397090', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397090.jpg\"}', 'upc' => '011661952423', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - 30 Seconds to Mars: A Beautiful Lie Sheet Music - Red/Black/White\", 'description_short' => \"HAL LEONARD 30 Seconds to Mars: A Beautiful Lie Sheet Music: Piano, guitar and vocal sheet music for the album A Beautiful Lie by 30 Seconds to Mars\", 'description_long' => \"HAL LEONARD 30 Seconds to Mars: A Beautiful Lie Sheet Music: Piano, guitar and vocal sheet music for the album A Beautiful Lie by 30 Seconds to Mars\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-30-seconds-to-mars-a-beautiful-lie-sheet-music-red-black-white/1397098.p?id=1219492695316&skuId=1397098', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397098_sa.jpg\"}', 'upc' => '884088148058', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - The Goo Goo Dolls: Dizzy Up the Girl Sheet Music - Pink/Green/Black/Blue/Red\", 'description_short' => \"HAL LEONARD The Goo Goo Dolls: Dizzy Up the Girl Sheet Music: Guitar, piano and vocal sheet music for The Goo Goo Dolls&#039; album, Dizzy Up the Girl\", 'description_long' => \"HAL LEONARD The Goo Goo Dolls: Dizzy Up the Girl Sheet Music: Guitar, piano and vocal sheet music for The Goo Goo Dolls&#039; album, Dizzy Up the Girl\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-the-goo-goo-dolls-dizzy-up-the-girl-sheet-music-pink-green-black-blue-red/1397103.p?id=1219492693027&skuId=1397103', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397103_sa.jpg\"}', 'upc' => '073999923988', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Godsmack: The Oracle Sheet Music - Orange/Black/Yellow\", 'description_short' => \"HAL LEONARD Godsmack: The Oracle Sheet Music: Guitar, piano and vocal sheet music with inscribed tabs for Godsmack&#039;s album, The Oracle\", 'description_long' => \"HAL LEONARD Godsmack: The Oracle Sheet Music: Guitar, piano and vocal sheet music with inscribed tabs for Godsmack&#039;s album, The Oracle\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-godsmack-the-oracle-sheet-music-orange-black-yellow/1397112.p?id=1219492692894&skuId=1397112', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397112_sa.jpg\"}', 'upc' => '884088522025', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Jack Johnson: Sleep Through the Static Sheet Music - Red/Green/White/Black\", 'description_short' => \"HAL LEONARD Jack Johnson: Sleep Through the Static Sheet Music: Piano, guitar and vocal sheet music for Jack Johnson&#039;s Sleep Through the Static\", 'description_long' => \"HAL LEONARD Jack Johnson: Sleep Through the Static Sheet Music: Piano, guitar and vocal sheet music for Jack Johnson&#039;s Sleep Through the Static\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-jack-johnson-sleep-through-the-static-sheet-music-red-green-white-black/1397121.p?id=1219492694611&skuId=1397121', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397121_sa.jpg\"}', 'upc' => '884088242176', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Florence and the Machine: Lungs Sheet Music - White/Black/Brown/Blue/Yellow\", 'description_short' => \"HAL LEONARD Florence and the Machine: Lungs Sheet Music: Sheet music for piano, guitar and vocals of Florence and the Machine&#039;s album, Lungs\", 'description_long' => \"HAL LEONARD Florence and the Machine: Lungs Sheet Music: Sheet music for piano, guitar and vocals of Florence and the Machine&#039;s album, Lungs\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-florence-and-the-machine-lungs-sheet-music-white-black-brown-blue-yellow/1397149.p?id=1219492692645&skuId=1397149', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397149_sa.jpg\"}', 'upc' => '884088546106', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Beyonce: 4 Sheet Music - Black/Gold\", 'description_short' => \"HAL LEONARD Beyonce: 4 Sheet Music: Piano, vocal and guitar sheet music for Beyonce&#039;s album, 4\", 'description_long' => \"HAL LEONARD Beyonce: 4 Sheet Music: Piano, vocal and guitar sheet music for Beyonce&#039;s album, 4\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-beyonce-4-sheet-music-black-gold/1397158.p?id=1219492696938&skuId=1397158', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397158_sa.jpg\"}', 'upc' => '884088603519', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Bon Jovi: Greatest Hits Sheet Music - Gold/Black\", 'description_short' => \"HAL LEONARD Bon Jovi: Greatest Hits Sheet Music: Sheet music for Bon Jovi&#039;s Greatest Hits album for piano, guitar and vocals\", 'description_long' => \"HAL LEONARD Bon Jovi: Greatest Hits Sheet Music: Sheet music for Bon Jovi&#039;s Greatest Hits album for piano, guitar and vocals\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-bon-jovi-greatest-hits-sheet-music-gold-black/1397167.p?id=1219492684812&skuId=1397167', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397167_sa.jpg\"}', 'upc' => '884088554101', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Sarah McLachlan: Laws of Illusion Sheet Music - White/Black/Blue\", 'description_short' => \"HAL LEONARD Sarah McLachlan: Laws of Illusion Sheet Music: Piano, guitar and vocal sheet music arrangements of Sarah McLachlan&#039;s Laws of Illusion\", 'description_long' => \"HAL LEONARD Sarah McLachlan: Laws of Illusion Sheet Music: Piano, guitar and vocal sheet music arrangements of Sarah McLachlan&#039;s Laws of Illusion\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-sarah-mclachlan-laws-of-illusion-sheet-music-white-black-blue/1397176.p?id=1219492689768&skuId=1397176', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397176_sa.jpg\"}', 'upc' => '884088528195', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Sara Bareilles: Little Voice Sheet Music - White/Black/Brown/Gray\", 'description_short' => \"HAL LEONARD Sara Bareilles: Little Voice Sheet Music: Piano, guitar and vocal sheet music for Sara Bareilles&#039; album, Little Voice\", 'description_long' => \"HAL LEONARD Sara Bareilles: Little Voice Sheet Music: Piano, guitar and vocal sheet music for Sara Bareilles&#039; album, Little Voice\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-sara-bareilles-little-voice-sheet-music-white-black-brown-gray/1397185.p?id=1219492694989&skuId=1397185', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397185_sa.jpg\"}', 'upc' => '884088238988', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - The Rolling Stones: Some Girls Sheet Music - White/Black/Red/Blue/Pink/Yellow\", 'description_short' => \"HAL LEONARD The Rolling Stones: Some Girls Sheet Music: Piano, guitar and vocals sheet music for The Rolling Stones&#039; album, Some Girls\", 'description_long' => \"HAL LEONARD The Rolling Stones: Some Girls Sheet Music: Piano, guitar and vocals sheet music for The Rolling Stones&#039; album, Some Girls\", 'price' => 22.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-the-rolling-stones-some-girls-sheet-music-white-black-red-blue-pink-yellow/1397194.p?id=1219492684817&skuId=1397194', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397194_sa.jpg\"}', 'upc' => '073999949766', 'provider' => 'bestbuy'],\n ['name' => \"Theme from Star Trek: Deep Space Nine [Single] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/theme-from-star-trek-deep-space-nine-single-cd-original-soundtrack/1397198.p?id=1576310&skuId=1397198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397198_sa.jpg\"}', 'upc' => '052824140127', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - The Goo Goo Dolls Greatest Hits Vol. 1: The Singles Sheet Music - Red/Black/White\", 'description_short' => \"HAL LEONARD The Goo Goo Dolls Greatest Hits Vol. 1: The Singles Sheet Music: Sheet music and tablature for guitar, piano and vocals for The Goo Goo Dolls&#039; Greatest Hits Vol. 1: The Singles\", 'description_long' => \"HAL LEONARD The Goo Goo Dolls Greatest Hits Vol. 1: The Singles Sheet Music: Sheet music and tablature for guitar, piano and vocals for The Goo Goo Dolls&#039; Greatest Hits Vol. 1: The Singles\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-the-goo-goo-dolls-greatest-hits-vol-1-the-singles-sheet-music-red-black-white/1397209.p?id=1219492689767&skuId=1397209', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397209_sa.jpg\"}', 'upc' => '884088221065', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Eric Clapton: Clapton Sheet Music - Yellow/Blue/Black\", 'description_short' => \"HAL LEONARD Eric Clapton: Clapton Sheet Music: Guitar, piano and vocal sheet music for Eric Clapton&#039;s 20th album, Clapton\", 'description_long' => \"HAL LEONARD Eric Clapton: Clapton Sheet Music: Guitar, piano and vocal sheet music for Eric Clapton&#039;s 20th album, Clapton\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-eric-clapton-clapton-sheet-music-yellow-blue-black/1397227.p?id=1219492697004&skuId=1397227', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397227_sa.jpg\"}', 'upc' => '884088545499', 'provider' => 'bestbuy'],\n ['name' => \"Golden Philly Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-philly-classics-cd/1397269.p?id=81711&skuId=1397269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397269_sa.jpg\"}', 'upc' => '090431516928', 'provider' => 'bestbuy'],\n ['name' => \"Mike & Molly: Complete Third Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mike-molly-complete-third-season-3-discs-dvd/1397354.p?id=2718069&skuId=1397354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1397354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1397\\/1397354_sa.jpg\"}', 'upc' => '883929276172', 'provider' => 'bestbuy'],\n ['name' => \"Nasty Bass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nasty-bass-cd/1398099.p?id=167507&skuId=1398099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1398099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1398\\/1398099_sa.jpg\"}', 'upc' => '054291882920', 'provider' => 'bestbuy'],\n ['name' => \"OGIO - Renegade RSS Laptop Backpack - Black Pindot\", 'description_short' => \"Fits most laptops with up to a 15.6&quot; display; armored laptop compartment; padded tablet/e-reader sleeve; deluxe organization panel; phone pocket; shock-absorbing shoulder straps\", 'description_long' => \"Fits most laptops with up to a 15.6&quot; display; armored laptop compartment; padded tablet/e-reader sleeve; deluxe organization panel; phone pocket; shock-absorbing shoulder straps\", 'price' => 149.99, 'sale_price' => 124.99, 'url' => 'http://www.bestbuy.com/site/ogio-renegade-rss-laptop-backpack-black-pindot/1398265.p?id=1219051118372&skuId=1398265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1398265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1398\\/1398265_sa.jpg\"}', 'upc' => '031652179394', 'provider' => 'bestbuy'],\n ['name' => \"Bell'O - A/V Cabinet for Most Flat-Panel TVs Up to 60\\\" - Chocolate\", 'description_short' => \"Holds up to 4 components or video gaming systems; wood, wood-veneer and glass materials; soft-close European hinges; ventilation slots; integrated cable management system\", 'description_long' => \"Holds up to 4 components or video gaming systems; wood, wood-veneer and glass materials; soft-close European hinges; ventilation slots; integrated cable management system\", 'price' => 429.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bello-a-v-cabinet-for-most-flat-panel-tvs-up-to-60-chocolate/1399006.p?id=1219051118188&skuId=1399006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399006_sa.jpg\"}', 'upc' => '748249696553', 'provider' => 'bestbuy'],\n ['name' => \"RIDE - Xbox One\", 'description_short' => \"Ride around the world on your very own motorcycle\", 'description_long' => \"Ride around the world on your very own motorcycle\", 'price' => 39.99, 'sale_price' => 33.99, 'url' => 'http://www.bestbuy.com/site/ride-xbox-one/1399014.p?id=1219492696349&skuId=1399014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399014_sa.jpg\"}', 'upc' => '722674220071', 'provider' => 'bestbuy'],\n ['name' => \"Bass Is Loaded - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bass-is-loaded-cd/1399089.p?id=1543804&skuId=1399089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399089_sa.jpg\"}', 'upc' => '754863202629', 'provider' => 'bestbuy'],\n ['name' => \"Don't Know How to Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-know-how-to-party-cd/1399356.p?id=91676&skuId=1399356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399356_sa.jpg\"}', 'upc' => '731451483622', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Cameo [Casablanca] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-cameo-casablanca-cd/1399418.p?id=76648&skuId=1399418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399418_sa.jpg\"}', 'upc' => '731451482427', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Bar-Kays [Mercury] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-bar-kays-mercury-cd/1399436.p?id=73926&skuId=1399436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399436_sa.jpg\"}', 'upc' => '731451482328', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Kool & the Gang 1969-1976 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-kool-the-gang-1969-1976-cd/1399454.p?id=88353&skuId=1399454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399454_sa.jpg\"}', 'upc' => '731451482229', 'provider' => 'bestbuy'],\n ['name' => \"Funky Stuff: The Best of Funk Essentials - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/funky-stuff-the-best-of-funk-essentials-cd-various/1399472.p?id=83115&skuId=1399472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399472_sa.jpg\"}', 'upc' => '731451482120', 'provider' => 'bestbuy'],\n ['name' => \"I'm Ready - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-ready-cd/1399542.p?id=94775&skuId=1399542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399542_sa.jpg\"}', 'upc' => '731451751325', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Big Bands, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-big-bands-vol-2-cd/1399640.p?id=66816&skuId=1399640&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399640', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399640_sa.jpg\"}', 'upc' => '074645342221', 'provider' => 'bestbuy'],\n ['name' => \"Tribal Thunder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribal-thunder-cd/1399695.p?id=79617&skuId=1399695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399695_sa.jpg\"}', 'upc' => '012928804622', 'provider' => 'bestbuy'],\n ['name' => \"Victims - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/victims-cd/1399855.p?id=81012&skuId=1399855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1399855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1399\\/1399855_sa.jpg\"}', 'upc' => '016351450821', 'provider' => 'bestbuy'],\n ['name' => \"Infamous Angel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/infamous-angel-cd/1400629.p?id=80172&skuId=1400629&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1400629', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1400\\/1400629_sa.jpg\"}', 'upc' => '093624523826', 'provider' => 'bestbuy'],\n ['name' => \"Kamakiriad - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kamakiriad-cd/1400665.p?id=81877&skuId=1400665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1400665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1400\\/1400665_sa.jpg\"}', 'upc' => '093624523024', 'provider' => 'bestbuy'],\n ['name' => \"Suite Francese - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/suite-francese-cd/1400905.p?id=1770529&skuId=1400905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1400905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1400\\/1400905.jpg\"}', 'upc' => '723722044724', 'provider' => 'bestbuy'],\n ['name' => \"SpeakerCraft - Vital V8 8\\\" 80W Powered Subwoofer - Black Vinyl\", 'description_short' => \"SPEAKERCRAFT Vital V8 8&quot; 80W Powered Subwoofer: 80W amplifier; 8&quot; long-throw treated-paper-cone woofer with butyl surround; automatic signal-sensing power on/off; adjustable low-pass filter; recessed volume control; LFE (Low Frequency Effects) input\", 'description_long' => \"SPEAKERCRAFT Vital V8 8&quot; 80W Powered Subwoofer: 80W amplifier; 8&quot; long-throw treated-paper-cone woofer with butyl surround; automatic signal-sensing power on/off; adjustable low-pass filter; recessed volume control; LFE (Low Frequency Effects) input\", 'price' => 529.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speakercraft-vital-v8-8-80w-powered-subwoofer-black-vinyl/1401163.p?id=1218463344062&skuId=1401163', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1401163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1401\\/1401163_sa.jpg\"}', 'upc' => '664254009617', 'provider' => 'bestbuy'],\n ['name' => \"SpeakerCraft - Vital V10 10\\\" 120W Powered Subwoofer - Black Vinyl\", 'description_short' => \"SPEAKERCRAFT Vital V10 10&quot; 120W Powered Subwoofer: 120W amplifier; 10&quot; long-throw treated-paper-cone woofer with butyl surround; automatic signal-sensing power on/off; adjustable low-pass filter; recessed volume control; LFE (Low Frequency Effects) input\", 'description_long' => \"SPEAKERCRAFT Vital V10 10&quot; 120W Powered Subwoofer: 120W amplifier; 10&quot; long-throw treated-paper-cone woofer with butyl surround; automatic signal-sensing power on/off; adjustable low-pass filter; recessed volume control; LFE (Low Frequency Effects) input\", 'price' => 635.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speakercraft-vital-v10-10-120w-powered-subwoofer-black-vinyl/1401172.p?id=1218311710729&skuId=1401172', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1401172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1401\\/1401172_sa.jpg\"}', 'upc' => '664254009624', 'provider' => 'bestbuy'],\n ['name' => \"Unplugged & Seated - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unplugged-seated-cd/1401263.p?id=2389810&skuId=1401263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1401263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1401\\/1401263.jpg\"}', 'upc' => '093624528920', 'provider' => 'bestbuy'],\n ['name' => \"Concert Of Jewish Liturgical Music - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/concert-of-jewish-liturgical-music-cd-various/1401655.p?id=2069711&skuId=1401655&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1401655', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1401\\/1401655_sa.jpg\"}', 'upc' => '750582768729', 'provider' => 'bestbuy'],\n ['name' => \"Complete Flute Music 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-flute-music-1-cd/1401682.p?id=1784302&skuId=1401682&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1401682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582764226', 'provider' => 'bestbuy'],\n ['name' => \"Complete Symphonies & Concertos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 61.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-symphonies-concertos-cd/1401691.p?id=1784300&skuId=1401691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1401691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1401\\/1401691.jpg\"}', 'upc' => '750582764424', 'provider' => 'bestbuy'],\n ['name' => \"Grand Duett - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grand-duett-cd/1401842.p?id=1830016&skuId=1401842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1401842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1401\\/1401842.jpg\"}', 'upc' => '750582752322', 'provider' => 'bestbuy'],\n ['name' => \"HP - Refurbished LaserJet Pro Network-Ready Black-and-White Laser Printer - Black\", 'description_short' => \"Refurbished\nPrints up to 26 ISO ppm in black (Print speeds vary with use. See mfg. for info on print speeds.)250-sheet input tray and 10-sheet priority feed slot\", 'description_long' => \"Refurbished\nPrints up to 26 ISO ppm in black (Print speeds vary with use. See mfg. for info on print speeds.)250-sheet input tray and 10-sheet priority feed slot\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-refurbished-laserjet-pro-network-ready-black-and-white-laser-printer-black/1401867.p?id=1218255562182&skuId=1401867', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1401867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312218237\\/1312218237_sa.jpg\"}', 'upc' => '884962431412', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1401913.p?id=3259235&skuId=1401913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1401913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582757525', 'provider' => 'bestbuy'],\n ['name' => \"Spartacus: War Of The Damned (3 Disc) (Blu-ray Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spartacus-war-of-the-damned-3-disc-blu-ray-disc-boxed-set/1402056.p?id=2723319&skuId=1402056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1402\\/1402056.jpg\"}', 'upc' => '013132600895', 'provider' => 'bestbuy'],\n ['name' => \"Spartacus: War Of The Damned (3 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spartacus-war-of-the-damned-3-disc-dvd-boxed-set/1402065.p?id=2723582&skuId=1402065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1402\\/1402065.jpg\"}', 'upc' => '013132600888', 'provider' => 'bestbuy'],\n ['name' => \"Supernatural: The Complete Eighth Season [4 Discs] [Blu-ray] (Blu-ray Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/supernatural-the-complete-eighth-season-4-discs-blu-ray-blu-ray-disc-boxed-set/1402083.p?id=2718224&skuId=1402083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1402083.jpg\"}', 'upc' => '883929278220', 'provider' => 'bestbuy'],\n ['name' => \"Supernatural: The Complete Eighth Season [6 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/supernatural-the-complete-eighth-season-6-discs-dvd-boxed-set/1402092.p?id=2718158&skuId=1402092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1402092.jpg\"}', 'upc' => '883929278213', 'provider' => 'bestbuy'],\n ['name' => \"Geek Squad® - Steering Wheel Control Installation\", 'description_short' => \"Have your steering wheel control installed the easy way: neatly, reliably and professionally by a Geek Squad Autotech.\", 'description_long' => \"Have your steering wheel control installed the easy way: neatly, reliably and professionally by a Geek Squad Autotech.\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/geek-squad-steering-wheel-control-installation/1402108.p?id=1219051118053&skuId=1402108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1402\\/1402108_sa.jpg\"}', 'upc' => '400014021082', 'provider' => 'bestbuy'],\n ['name' => \"Scosche - Wiring Harness for Select Chrysler Vehicles\", 'description_short' => \"From our expanded online assortment; compatible with 1984 and newer Chrysler vehicles; color-coded wiring\", 'description_long' => \"From our expanded online assortment; compatible with 1984 and newer Chrysler vehicles; color-coded wiring\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scosche-wiring-harness-for-select-chrysler-vehicles/1402146.p?id=1218019653551&skuId=1402146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1402\\/1402146_rc.jpg\"}', 'upc' => '033991384910', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Mini Connector Set for Select GM Vehicles - Multi\", 'description_short' => \"Compatible with 1988 and newer GM vehicles; mini connector compatibility\", 'description_long' => \"Compatible with 1988 and newer GM vehicles; mini connector compatibility\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-mini-connector-set-for-select-gm-vehicles-multi/1402173.p?id=1218019624241&skuId=1402173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1402\\/1402173_sa.jpg\"}', 'upc' => '086429113064', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Aftermarket Radio Wire Harness Adapter for Select Nissan Vehicles - Multicolor\", 'description_short' => \"Compatible with 1984-1996 Nissan vehicles; connects an aftermarket radio to your car&#039;s harness\", 'description_long' => \"Compatible with 1984-1996 Nissan vehicles; connects an aftermarket radio to your car&#039;s harness\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-aftermarket-radio-wire-harness-adapter-for-select-nissan-vehicles-multicolor/1402217.p?id=1142291936401&skuId=1402217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1402\\/1402217_rc.jpg\"}', 'upc' => '086429002634', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2000-2005 Chevrolet Cavalier - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2000-2005 Chevrolet Cavalier vehicles; recessed DIN opening; plastic material\", 'description_long' => \"From our expanded online assortment; compatible with select 2000-2005 Chevrolet Cavalier vehicles; recessed DIN opening; plastic material\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2000-2005-chevrolet-cavalier-black/1402226.p?id=1218077426265&skuId=1402226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1402\\/1402226_rc.jpg\"}', 'upc' => '086429018109', 'provider' => 'bestbuy'],\n ['name' => \"Fact and Fiction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fact-and-fiction-cd/1402333.p?id=84663&skuId=1402333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1402\\/1402333.jpg\"}', 'upc' => '729021031625', 'provider' => 'bestbuy'],\n ['name' => \"Evil Woman Best of Crow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evil-woman-best-of-crow-cd/1402976.p?id=79307&skuId=1402976&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1402976', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1402\\/1402976.jpg\"}', 'upc' => '022775500226', 'provider' => 'bestbuy'],\n ['name' => \"Game & Wario - PRE-OWNED - Nintendo Wii U\", 'description_short' => \"Use the innovative GamePad in a variety of fun, exciting games\", 'description_long' => \"Use the innovative GamePad in a variety of fun, exciting games\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/game-wario-pre-owned-nintendo-wii-u/1403019.p?id=1219051117147&skuId=1403019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403019_sa.jpg\"}', 'upc' => '799007834854', 'provider' => 'bestbuy'],\n ['name' => \"Elemental - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elemental-cd/1403109.p?id=101301&skuId=1403109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403109_sa.jpg\"}', 'upc' => '731451487521', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select HTC Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with HTC EVO 4G, Hero, Touch Pro 2, Dash 3G, Tilt 2, Snap S511 and other mobile phones; 3.7V power; 1500 mAh rating\", 'description_long' => \"From our expanded online assortment; compatible with HTC EVO 4G, Hero, Touch Pro 2, Dash 3G, Tilt 2, Snap S511 and other mobile phones; 3.7V power; 1500 mAh rating\", 'price' => 19.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-htc-mobile-phones-black/1403443.p?id=1218255996648&skuId=1403443', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403443_sa.jpg\"}', 'upc' => '029521555295', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select VTech Cordless Phones - Black\", 'description_short' => \"Compatible with select VTech cordless phones; 2.4V power; 500 mAh rating\", 'description_long' => \"Compatible with select VTech cordless phones; 2.4V power; 500 mAh rating\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-vtech-cordless-phones-black/1403504.p?id=1218255999055&skuId=1403504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403504_sa.jpg\"}', 'upc' => '029521830286', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Pantech Breeze C520 Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with Pantech Breeze C520 mobile phones; 3.7V power; 650 mAh rating\", 'description_long' => \"From our expanded online assortment; compatible with Pantech Breeze C520 mobile phones; 3.7V power; 650 mAh rating\", 'price' => 19.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-pantech-breeze-c520-mobile-phones-black/1403522.p?id=1218255998938&skuId=1403522', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403522_sa.jpg\"}', 'upc' => '029521844054', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select LG Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with select LG mobile phones; 3.7V and 700 mAh\", 'description_long' => \"From our expanded online assortment; compatible with select LG mobile phones; 3.7V and 700 mAh\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-lg-mobile-phones-black/1403568.p?id=1218255995525&skuId=1403568', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403568_sa.jpg\"}', 'upc' => '029521844047', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Nickel-Metal Hydride Battery for Select Clarity Cordless Phones\", 'description_short' => \"From our expanded online assortment; compatible with select Clarity cordless phones; 3.7V power; 800 mAh rating\", 'description_long' => \"From our expanded online assortment; compatible with select Clarity cordless phones; 3.7V power; 800 mAh rating\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-nickel-metal-hydride-battery-for-select-clarity-cordless-phones/1403586.p?id=1218255999265&skuId=1403586', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403586_rc.jpg\"}', 'upc' => '029521555028', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Sanyo SCP-2700 Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with Sanyo SCP-2700 mobile phones; 3.7V of power; 800 mAh capacity\", 'description_long' => \"From our expanded online assortment; compatible with Sanyo SCP-2700 mobile phones; 3.7V of power; 800 mAh capacity\", 'price' => 19.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-sanyo-scp-2700-mobile-phones-black/1403656.p?id=1218256569378&skuId=1403656', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403656_sa.jpg\"}', 'upc' => '029521840995', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Sanyo Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Sanyo mobile phones; 3.7V of power; 840 mAh capacity\", 'description_long' => \"From our expanded online assortment; compatible with select Sanyo mobile phones; 3.7V of power; 840 mAh capacity\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-sanyo-mobile-phones-black/1403701.p?id=1218256566080&skuId=1403701', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403701', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403701_sa.jpg\"}', 'upc' => '029521844016', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Nickel-Cadmium Battery for Select Cordless Phones\", 'description_short' => \"Compatible with select Aastra Telecom and Southwestern Bell cordless phones; 3.6V; 800 mAh\", 'description_long' => \"Compatible with select Aastra Telecom and Southwestern Bell cordless phones; 3.6V; 800 mAh\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-nickel-cadmium-battery-for-select-cordless-phones/1403738.p?id=1218256567598&skuId=1403738', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403738_rc.jpg\"}', 'upc' => '029521558210', 'provider' => 'bestbuy'],\n ['name' => \"Clinch Mountain Treasures - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clinch-mountain-treasures-cd/1403751.p?id=76998&skuId=1403751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403751_sa.jpg\"}', 'upc' => '009001011220', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for HTC Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with select HTC mobile phones; 3.7V OF power; 1300 mAh capacity\", 'description_long' => \"From our expanded online assortment; compatible with select HTC mobile phones; 3.7V OF power; 1300 mAh capacity\", 'price' => 29.99, 'sale_price' => 20.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-htc-mobile-phones-black/1403774.p?id=1218256567332&skuId=1403774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403774_sa.jpg\"}', 'upc' => '029521562316', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Most UTStarcom and Pantech Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with select UTStarcom and Pantech mobile phones; 3.7V of power; 650 mAh capacity\", 'description_long' => \"From our expanded online assortment; compatible with select UTStarcom and Pantech mobile phones; 3.7V of power; 650 mAh capacity\", 'price' => 19.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-most-utstarcom-and-pantech-mobile-phones-black/1403847.p?id=1218256565779&skuId=1403847', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403847_sa.jpg\"}', 'upc' => '029521555592', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Motorola DROID X Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with Motorola DROID X mobile phones; 3.7V power of power; 1300 mAh capacity\", 'description_long' => \"From our expanded online assortment; compatible with Motorola DROID X mobile phones; 3.7V power of power; 1300 mAh capacity\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-motorola-droid-x-mobile-phones-black/1403892.p?id=1218256564619&skuId=1403892', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403892_sa.jpg\"}', 'upc' => '029521843538', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-ion Battery for LG Lotus LX600 Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with LG Lotus LX600 mobile phones; 3.7V of power; 900 mAh capacity\", 'description_long' => \"From our expanded online assortment; compatible with LG Lotus LX600 mobile phones; 3.7V of power; 900 mAh capacity\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-lg-lotus-lx600-mobile-phones-black/1403938.p?id=1218256562403&skuId=1403938', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403938_sa.jpg\"}', 'upc' => '029521844023', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for LG EnV Touch VX11000 Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with select LG EnV Touch VX11000 mobile phones; 3.7V of power; 900 mAh capacity\", 'description_long' => \"From our expanded online assortment; compatible with select LG EnV Touch VX11000 mobile phones; 3.7V of power; 900 mAh capacity\", 'price' => 24.99, 'sale_price' => 21.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-lg-env-touch-vx11000-mobile-phones-black/1403947.p?id=1218256568219&skuId=1403947', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403947_sa.jpg\"}', 'upc' => '029521843316', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Nickel-Metal Hydride Battery for Select Sharp Cordless Phones - Yellow\", 'description_short' => \"Nickel-Metal Hydride Battery for Select Sharp Cordless Phones\", 'description_long' => \"Nickel-Metal Hydride Battery for Select Sharp Cordless Phones\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-nickel-metal-hydride-battery-for-select-sharp-cordless-phones-yellow/1403974.p?id=1218256568862&skuId=1403974', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1403974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1403\\/1403974_rc.jpg\"}', 'upc' => '029521555158', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - 4\\\" 2-Way Bookshelf Speakers (Pair) - Black\", 'description_short' => \"4&quot; paper woofer; 0.5&quot; Mylar tweeter; designed for indoor use\", 'description_long' => \"4&quot; paper woofer; 0.5&quot; Mylar tweeter; designed for indoor use\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-4-2-way-bookshelf-speakers-pair-black/1404008.p?id=1219494239393&skuId=1404008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404008_sa.jpg\"}', 'upc' => '600603185557', 'provider' => 'bestbuy'],\n ['name' => \"Broan - Evolution 2 (QP2) Series 36\\\" Convertible Range Hood - Stainless Steel\", 'description_short' => \"BROAN Evolution 2 (QP2) Series 36&quot; Convertible Range Hood: Sealed, soft-touch control panel; 3 fan speeds; removable, dishwasher-safe antimicrobial filters; halogen lights\", 'description_long' => \"BROAN Evolution 2 (QP2) Series 36&quot; Convertible Range Hood: Sealed, soft-touch control panel; 3 fan speeds; removable, dishwasher-safe antimicrobial filters; halogen lights\", 'price' => 529.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broan-evolution-2-qp2-series-36-convertible-range-hood-stainless-steel/1404017.p?id=1219492691379&skuId=1404017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404017_sa.jpg\"}', 'upc' => '026715177059', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Most Kyocera Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with Kyocera Deco E1000, K126C, Lingo M1000, Marble K127, K132, S1000 and Wildcard M1000 mobile phones; lithium-ion; 900 mAh; 3.7V\", 'description_long' => \"From our expanded online assortment; compatible with Kyocera Deco E1000, K126C, Lingo M1000, Marble K127, K132, S1000 and Wildcard M1000 mobile phones; lithium-ion; 900 mAh; 3.7V\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-most-kyocera-mobile-phones-black/1404018.p?id=1218256566788&skuId=1404018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404018_sa.jpg\"}', 'upc' => '029521843385', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Most Samsung Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with Samsung Galaxy S Captivate SGH-i897, Epic 4G SPH-D70, Fascinate, i9000, Vibrant SGH-T959a and Galaxy S i9000 mobile phones; lithium-ion; 1200 mAh; 3.7V\", 'description_long' => \"From our expanded online assortment; compatible with Samsung Galaxy S Captivate SGH-i897, Epic 4G SPH-D70, Fascinate, i9000, Vibrant SGH-T959a and Galaxy S i9000 mobile phones; lithium-ion; 1200 mAh; 3.7V\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-most-samsung-mobile-phones-black/1404045.p?id=1218256564210&skuId=1404045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404045_sa.jpg\"}', 'upc' => '029521831917', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Sony Cyber-shot digital cameras; 3.6V; 630 mAh\", 'description_long' => \"Compatible with select Sony Cyber-shot digital cameras; 3.6V; 630 mAh\", 'price' => 39.99, 'sale_price' => 27.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-black/1404188.p?id=1218256565102&skuId=1404188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404188_sa.jpg\"}', 'upc' => '029521843279', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery - Dark Gray\", 'description_short' => \"Compatible with select Pentax, Konica Minolta, Samsung and Digimax digital cameras; 3.7V of power; 700 mAh capacity\", 'description_long' => \"Compatible with select Pentax, Konica Minolta, Samsung and Digimax digital cameras; 3.7V of power; 700 mAh capacity\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-dark-gray/1404197.p?id=1218256565529&skuId=1404197', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404197_rc.jpg\"}', 'upc' => '029521833836', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Olympus Digital Cameras - Black\", 'description_short' => \"Compatible with select Olympus digital cameras; 3.7V and 650 mAh\", 'description_long' => \"Compatible with select Olympus digital cameras; 3.7V and 650 mAh\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-olympus-digital-cameras-black/1404203.p?id=1218256565669&skuId=1404203', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404203_sa.jpg\"}', 'upc' => '029521843286', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery - Gray\", 'description_short' => \"Compatible with Casio EXILIM Pro EX-F1 digital cameras; 7.4V; 1950 mAh\", 'description_long' => \"Compatible with Casio EXILIM Pro EX-F1 digital cameras; 7.4V; 1950 mAh\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-gray/1404212.p?id=1218256562540&skuId=1404212', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404212_rc.jpg\"}', 'upc' => '029521562514', 'provider' => 'bestbuy'],\n ['name' => \"Quiet Days - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quiet-days-cd/1404233.p?id=74082&skuId=1404233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404233_sa.jpg\"}', 'upc' => '096045005025', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery - Tan\", 'description_short' => \"Compatible with select Samsung, Digimax and Konica Minolta digital cameras; 3.7V of power; 820 mAh capacity\", 'description_long' => \"Compatible with select Samsung, Digimax and Konica Minolta digital cameras; 3.7V of power; 820 mAh capacity\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-tan/1404249.p?id=1218256563938&skuId=1404249', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404249_sa.jpg\"}', 'upc' => '029521836035', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select FUJIFILM, Pentax, Ricoh and Toshiba digital cameras; 3.7V of power; 2000 mAh capacity\", 'description_long' => \"Compatible with select FUJIFILM, Pentax, Ricoh and Toshiba digital cameras; 3.7V of power; 2000 mAh capacity\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-black/1404267.p?id=1218256568358&skuId=1404267', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404267_rc.jpg\"}', 'upc' => '029521556490', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium Ion Digital Camera Battery - Black\", 'description_short' => \"Lithium Ion (Li-Ion) - 7.4V DC\", 'description_long' => \"Lithium Ion (Li-Ion) - 7.4V DC\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-digital-camera-battery-black/1404319.p?id=1218256567468&skuId=1404319', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404319_sa.jpg\"}', 'upc' => '029521830989', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Canon PowerShot Digital Cameras - Black\", 'description_short' => \"Compatible with select Canon PowerShot digital cameras; 3.6V and 740 mAh\", 'description_long' => \"Compatible with select Canon PowerShot digital cameras; 3.6V and 740 mAh\", 'price' => 19.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-canon-powershot-digital-cameras-black/1404346.p?id=1218256563528&skuId=1404346', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404346_sa.jpg\"}', 'upc' => '029521830132', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Samsung digital cameras; 3.7V; 740 mAh\", 'description_long' => \"Compatible with select Samsung digital cameras; 3.7V; 740 mAh\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-black/1404373.p?id=1218256566631&skuId=1404373', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404373_rc.jpg\"}', 'upc' => '029521830187', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Canon Digital Cameras - Black\", 'description_short' => \"Compatible with select Canon digital cameras; 7.4V and 1120 mAh\", 'description_long' => \"Compatible with select Canon digital cameras; 7.4V and 1120 mAh\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-canon-digital-cameras-black/1404406.p?id=1218256566560&skuId=1404406', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404406_sa.jpg\"}', 'upc' => '029521830149', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Panasonic Lumix digital cameras; 3.7V; 700 mAh\", 'description_long' => \"Compatible with select Panasonic Lumix digital cameras; 3.7V; 700 mAh\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-black/1404424.p?id=1218256569307&skuId=1404424', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404424_rc.jpg\"}', 'upc' => '029521843293', 'provider' => 'bestbuy'],\n ['name' => \"Despicable Me (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/despicable-me-dvd/1404497.p?id=2155947&skuId=1404497&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404497_sa.jpg\"}', 'upc' => '025192018176', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Etta James - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-etta-james-cd/1404518.p?id=86642&skuId=1404518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404518_sa.jpg\"}', 'upc' => '076732934128', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Plantation Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-plantation-recordings-cd/1404732.p?id=103578&skuId=1404732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404732_sa.jpg\"}', 'upc' => '076732934425', 'provider' => 'bestbuy'],\n ['name' => \"Orlando - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/orlando-cd-original-soundtrack/1404858.p?id=94081&skuId=1404858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1404858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1404\\/1404858_sa.jpg\"}', 'upc' => '030206541328', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Externally Vented Range Hood - Stainless Steel\", 'description_short' => \"UNBRANDED 30&quot; Externally Vented Range Hood: Push button controls; 400 cfm exhaust capacity; 3-speed exhaust fan; 2 dishwasher-safe mesh grease filters; dual incandescent light bulbs\", 'description_long' => \"UNBRANDED 30&quot; Externally Vented Range Hood: Push button controls; 400 cfm exhaust capacity; 3-speed exhaust fan; 2 dishwasher-safe mesh grease filters; dual incandescent light bulbs\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-externally-vented-range-hood-stainless-steel/1405016.p?id=1219492690540&skuId=1405016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405016_sa.jpg\"}', 'upc' => '883049283906', 'provider' => 'bestbuy'],\n ['name' => \"Country'S Best - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/countrys-best-cd-various/1405116.p?id=267758&skuId=1405116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405116_sa.jpg\"}', 'upc' => '012676214629', 'provider' => 'bestbuy'],\n ['name' => \"K.O.D. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/k-o-d-cd/1405330.p?id=290147&skuId=1405330&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405330', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '747014400524', 'provider' => 'bestbuy'],\n ['name' => \"Rich Gang [Deluxe Edition] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rich-gang-deluxe-edition-pa-cd/1405372.p?id=2739898&skuId=1405372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405372_sa.jpg\"}', 'upc' => '602537468942', 'provider' => 'bestbuy'],\n ['name' => \"Vampire Diaries: The Complete Fourth Season [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vampire-diaries-the-complete-fourth-season-5-discs-dvd/1405469.p?id=2718078&skuId=1405469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405469.jpg\"}', 'upc' => '883929276158', 'provider' => 'bestbuy'],\n ['name' => \"Going the Distance (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/going-the-distance-blu-ray-disc-2-disc/1405478.p?id=2167747&skuId=1405478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405478_sa.jpg\"}', 'upc' => '794043141454', 'provider' => 'bestbuy'],\n ['name' => \"Lottery Ticket (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lottery-ticket-dvd/1405496.p?id=2158856&skuId=1405496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405496_sa.jpg\"}', 'upc' => '883929120796', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Silver Nemesis (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-silver-nemesis-2-disc-dvd/1405511.p?id=2137259&skuId=1405511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405511_sa.jpg\"}', 'upc' => '883929096886', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Revenge of the Cybermen (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-revenge-of-the-cybermen-dvd/1405548.p?id=2137256&skuId=1405548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405548_sa.jpg\"}', 'upc' => '883929096893', 'provider' => 'bestbuy'],\n ['name' => \"Cats & Dogs: The Revenge of Kitty Galore (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cats-dogs-the-revenge-of-kitty-galore-blu-ray-disc-2-disc/1405566.p?id=2155238&skuId=1405566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405566_sa.jpg\"}', 'upc' => '883929106769', 'provider' => 'bestbuy'],\n ['name' => \"Superman/Shazam: The Return of Black Adam (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/superman-shazam-the-return-of-black-adam-dvd/1405575.p?id=2142546&skuId=1405575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405575_sa.jpg\"}', 'upc' => '883929104451', 'provider' => 'bestbuy'],\n ['name' => \"Deadwood: The Complete Series [13 Discs/Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 104.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deadwood-the-complete-series-13-discs-blu-ray-blu-ray-disc/1405593.p?id=2142569&skuId=1405593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405593_sa.jpg\"}', 'upc' => '883929142132', 'provider' => 'bestbuy'],\n ['name' => \"Secret Origin: The Story of DC Comics (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secret-origin-the-story-of-dc-comics-dvd/1405609.p?id=2143272&skuId=1405609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405609_sa.jpg\"}', 'upc' => '883929101580', 'provider' => 'bestbuy'],\n ['name' => \"Cats & Dogs: The Revenge of Kitty Galore (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cats-dogs-the-revenge-of-kitty-galore-dvd/1405627.p?id=2155238&skuId=1405627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405627_sa.jpg\"}', 'upc' => '883929106752', 'provider' => 'bestbuy'],\n ['name' => \"Men of a Certain Age: The Complete First Season [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/men-of-a-certain-age-the-complete-first-season-2-discs-dvd/1405636.p?id=2136076&skuId=1405636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405636_sa.jpg\"}', 'upc' => '883929150632', 'provider' => 'bestbuy'],\n ['name' => \"Peanuts Ultimate Holiday Collection [6 Discs/Blu-ray/DVD] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peanuts-ultimate-holiday-collection-6-discs-blu-ray-dvd-blu-ray-disc/1405645.p?id=2136535&skuId=1405645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405645_sa.jpg\"}', 'upc' => '883929141104', 'provider' => 'bestbuy'],\n ['name' => \"Mutiny on the Bounty (Blu-ray Disc) (Remastered)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mutiny-on-the-bounty-blu-ray-disc-remastered/1405654.p?id=23418&skuId=1405654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405654_sa.jpg\"}', 'upc' => '883929116157', 'provider' => 'bestbuy'],\n ['name' => \"Going the Distance (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/going-the-distance-dvd/1405672.p?id=2167747&skuId=1405672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405672_sa.jpg\"}', 'upc' => '794043141447', 'provider' => 'bestbuy'],\n ['name' => \"Superman/Shazam: The Return of Black Adam (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/superman-shazam-the-return-of-black-adam-blu-ray-disc/1405681.p?id=2142547&skuId=1405681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405681_sa.jpg\"}', 'upc' => '883929102433', 'provider' => 'bestbuy'],\n ['name' => \"Lottery Ticket (Blu-ray Disc) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lottery-ticket-blu-ray-disc-3-disc/1405709.p?id=2158856&skuId=1405709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405709_sa.jpg\"}', 'upc' => '883929121076', 'provider' => 'bestbuy'],\n ['name' => \"Sherlock: Season One [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sherlock-season-one-2-discs-dvd/1405718.p?id=2147378&skuId=1405718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405718_sa.jpg\"}', 'upc' => '883929129775', 'provider' => 'bestbuy'],\n ['name' => \"Inception (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inception-dvd/1405727.p?id=2164185&skuId=1405727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405727_sa.jpg\"}', 'upc' => '883929106127', 'provider' => 'bestbuy'],\n ['name' => \"The Polar Express (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-polar-express-blu-ray-3d-3-d/1405736.p?id=1400815&skuId=1405736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405736_sa.jpg\"}', 'upc' => '883929144778', 'provider' => 'bestbuy'],\n ['name' => \"Metalocalypse: Season Three [Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metalocalypse-season-three-blu-ray-blu-ray-disc/1405745.p?id=2136080&skuId=1405745&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405745', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405745.jpg\"}', 'upc' => '883929103478', 'provider' => 'bestbuy'],\n ['name' => \"Tsubasa: Season 2 Box Set - VC (4 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tsubasa-season-2-box-set-vc-4-disc-dvd-boxed-set/1405754.p?id=2144223&skuId=1405754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405754.jpg\"}', 'upc' => '704400023064', 'provider' => 'bestbuy'],\n ['name' => \"DragonBall: Curse of the Blood Rubies (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragonball-curse-of-the-blood-rubies-dvd/1405763.p?id=61853&skuId=1405763&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405763', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405763_sa.jpg\"}', 'upc' => '704400051975', 'provider' => 'bestbuy'],\n ['name' => \"I'm Still Here (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-still-here-blu-ray-disc/1405772.p?id=2147136&skuId=1405772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405772_sa.jpg\"}', 'upc' => '876964003537', 'provider' => 'bestbuy'],\n ['name' => \"Centurion (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/centurion-dvd/1405781.p?id=2147126&skuId=1405781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405781_sa.jpg\"}', 'upc' => '876964003414', 'provider' => 'bestbuy'],\n ['name' => \"I'm Still Here (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-still-here-dvd/1405809.p?id=2147136&skuId=1405809&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405809_sa.jpg\"}', 'upc' => '876964003520', 'provider' => 'bestbuy'],\n ['name' => \"Love and Distrust (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-and-distrust-dvd/1405827.p?id=2159870&skuId=1405827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405827_sa.jpg\"}', 'upc' => '625828566905', 'provider' => 'bestbuy'],\n ['name' => \"Kamui (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kamui-dvd-2-disc/1405836.p?id=2155227&skuId=1405836&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405836_sa.jpg\"}', 'upc' => '704400069802', 'provider' => 'bestbuy'],\n ['name' => \"South of the Border (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-of-the-border-dvd/1405845.p?id=2144111&skuId=1405845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405845_sa.jpg\"}', 'upc' => '881394110120', 'provider' => 'bestbuy'],\n ['name' => \"Blassreiter [4 Discs] (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blassreiter-4-discs-boxed-set-dvd/1405854.p?id=2144216&skuId=1405854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405854_sa.jpg\"}', 'upc' => '704400098529', 'provider' => 'bestbuy'],\n ['name' => \"One Piece: Season 3 Fourth Voyage (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-piece-season-3-fourth-voyage-2-disc-dvd/1405863.p?id=2155185&skuId=1405863&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405863.jpg\"}', 'upc' => '704400094675', 'provider' => 'bestbuy'],\n ['name' => \"What's Love Got to Do with It - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/whats-love-got-to-do-with-it-cd-original-soundtrack/1405866.p?id=103844&skuId=1405866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405866_sa.jpg\"}', 'upc' => '077778818922', 'provider' => 'bestbuy'],\n ['name' => \"The Extra Man (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-extra-man-dvd/1405872.p?id=2147132&skuId=1405872&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405872', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405872_sa.jpg\"}', 'upc' => '876964003438', 'provider' => 'bestbuy'],\n ['name' => \"Birdy The Mighty: Decode 2 (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/birdy-the-mighty-decode-2-2-disc-dvd/1405881.p?id=2144476&skuId=1405881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405881.jpg\"}', 'upc' => '704400067211', 'provider' => 'bestbuy'],\n ['name' => \"A Storm in Heaven - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-storm-in-heaven-cd/1405884.p?id=103112&skuId=1405884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405884_sa.jpg\"}', 'upc' => '077778795025', 'provider' => 'bestbuy'],\n ['name' => \"ESPN Films 30 for 30 Collection, Vol. 1 [6 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/espn-films-30-for-30-collection-vol-1-6-discs-dvd/1405936.p?id=2149550&skuId=1405936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405936_sa.jpg\"}', 'upc' => '825452506685', 'provider' => 'bestbuy'],\n ['name' => \"Desert Punk: Vc2 (6pc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/desert-punk-vc2-6pc-dvd-boxed-set/1405954.p?id=2144472&skuId=1405954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405954.jpg\"}', 'upc' => '704400069178', 'provider' => 'bestbuy'],\n ['name' => \"Girls Bravo (4 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/girls-bravo-4-disc-dvd-boxed-set/1405963.p?id=2144473&skuId=1405963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405963.jpg\"}', 'upc' => '704400045806', 'provider' => 'bestbuy'],\n ['name' => \"Classic Ray Stevens - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-ray-stevens-cd/1405964.p?id=100354&skuId=1405964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405964_sa.jpg\"}', 'upc' => '715187762121', 'provider' => 'bestbuy'],\n ['name' => \"Centurion (Blu-ray Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/centurion-blu-ray-disc-digital-copy/1405972.p?id=2147126&skuId=1405972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1405972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1405\\/1405972_sa.jpg\"}', 'upc' => '876964003421', 'provider' => 'bestbuy'],\n ['name' => \"Motorola - Wireless Video Baby Monitor - White\", 'description_short' => \"Infrared night vision; 2.4GHz digital wireless technology; up to 590&#039; range; 3.5&quot; color screen; 2-way audio; remote pan, tilt and zoom; room-temperature display; audio-only option; multiple camera viewing\", 'description_long' => \"Infrared night vision; 2.4GHz digital wireless technology; up to 590&#039; range; 3.5&quot; color screen; 2-way audio; remote pan, tilt and zoom; room-temperature display; audio-only option; multiple camera viewing\", 'price' => 179.99, 'sale_price' => 154.99, 'url' => 'http://www.bestbuy.com/site/motorola-wireless-video-baby-monitor-white/1406006.p?id=1219492696816&skuId=1406006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406006_sa.jpg\"}', 'upc' => '816479011832', 'provider' => 'bestbuy'],\n ['name' => \"Robo-geisha (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/robo-geisha-blu-ray-disc/1406025.p?id=2130417&skuId=1406025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406025_sa.jpg\"}', 'upc' => '704400088315', 'provider' => 'bestbuy'],\n ['name' => \"Fullmetal Alchemist: Brotherhood - Part 3 (2 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fullmetal-alchemist-brotherhood-part-3-2-disc-blu-ray-disc/1406034.p?id=2155224&skuId=1406034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406034.jpg\"}', 'upc' => '704400083822', 'provider' => 'bestbuy'],\n ['name' => \"Message in the Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/message-in-the-music-cd/1406053.p?id=93695&skuId=1406053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406053_sa.jpg\"}', 'upc' => '077776670621', 'provider' => 'bestbuy'],\n ['name' => \"Robo-geisha (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/robo-geisha-dvd/1406061.p?id=2130417&skuId=1406061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406061_sa.jpg\"}', 'upc' => '704400088308', 'provider' => 'bestbuy'],\n ['name' => \"Fullmetal Alchemist: Brotherhood - Part 3 (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fullmetal-alchemist-brotherhood-part-3-2-disc-dvd/1406098.p?id=2155222&skuId=1406098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406098.jpg\"}', 'upc' => '704400082641', 'provider' => 'bestbuy'],\n ['name' => \"Ragnarok [S.A.V.E.] [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ragnarok-s-a-v-e--4-discs-dvd/1406104.p?id=2155229&skuId=1406104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406104_sa.jpg\"}', 'upc' => '704400086748', 'provider' => 'bestbuy'],\n ['name' => \"Kamui (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kamui-blu-ray-disc/1406122.p?id=2155227&skuId=1406122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406122_sa.jpg\"}', 'upc' => '704400069819', 'provider' => 'bestbuy'],\n ['name' => \"Oh Edo Rocket: Season 1 Part 1 (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oh-edo-rocket-season-1-part-1-2-disc-dvd/1406131.p?id=2144218&skuId=1406131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406131.jpg\"}', 'upc' => '704400085901', 'provider' => 'bestbuy'],\n ['name' => \"The Piano Style of Nat King Cole - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-piano-style-of-nat-king-cole-cd/1406142.p?id=78297&skuId=1406142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406142_sa.jpg\"}', 'upc' => '077778120322', 'provider' => 'bestbuy'],\n ['name' => \"LEGO Legends of Chima: Laval's Journey - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Only you can protect the equilibrium and save Chima\", 'description_long' => \"Only you can protect the equilibrium and save Chima\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lego-legends-of-chima-lavals-journey-pre-owned-nintendo-3ds/1406159.p?id=1219051117216&skuId=1406159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406159_sa.jpg\"}', 'upc' => '799007834861', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Mel Tormé [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-mel-torme-curb-cd/1406259.p?id=71481&skuId=1406259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406259.jpg\"}', 'upc' => '715187761827', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1406277.p?id=99988&skuId=1406277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406277_sa.jpg\"}', 'upc' => '715187761926', 'provider' => 'bestbuy'],\n ['name' => \"Dance This Mess Around: Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-this-mess-around-best-of-cd/1406428.p?id=3376584&skuId=1406428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1204\\/12045896.jpg\"}', 'upc' => '042284623827', 'provider' => 'bestbuy'],\n ['name' => \"Cher's Greatest Hits: 1965-1992 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chers-greatest-hits-1965-1992-cd/1406437.p?id=1459400&skuId=1406437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1406437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1406\\/1406437.jpg\"}', 'upc' => '766483411527', 'provider' => 'bestbuy'],\n ['name' => \"Big Momma S 3-Film Collection (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-momma-s-3-film-collection-blu-ray-disc/1407005.p?id=3289363&skuId=1407005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2571\\/25710609.jpg\"}', 'upc' => '024543989431', 'provider' => 'bestbuy'],\n ['name' => \"West Side Story (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/west-side-story-dvd/1407014.p?id=25414&skuId=1407014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407014_sa.jpg\"}', 'upc' => '883904305552', 'provider' => 'bestbuy'],\n ['name' => \"GE - Artistry Series 20.3 Cu. Ft. Bottom-Freezer Refrigerator - Black\", 'description_short' => \"Up-front temperature controls; 3 electronic sensors; multiflow air tower; 2 adjustable glass shelves; 2 clear drawers; gallon-size door storage; Frost Guard defrost; optional icemaker\", 'description_long' => \"Up-front temperature controls; 3 electronic sensors; multiflow air tower; 2 adjustable glass shelves; 2 clear drawers; gallon-size door storage; Frost Guard defrost; optional icemaker\", 'price' => 1199.99, 'sale_price' => 1079.99, 'url' => 'http://www.bestbuy.com/site/ge-artistry-series-20-3-cu-ft-bottom-freezer-refrigerator-black/1407023.p?id=1219492696217&skuId=1407023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407023_sa.jpg\"}', 'upc' => '084691808213', 'provider' => 'bestbuy'],\n ['name' => \"Bill & Ted's Excellent Double Feature (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bill-teds-excellent-double-feature-dvd/1407041.p?id=3288183&skuId=1407041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2570\\/25707138.jpg\"}', 'upc' => '883904321088', 'provider' => 'bestbuy'],\n ['name' => \"X-Men Origins: Wolverine (DVD) (Spanish Version)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/x-men-origins-wolverine-dvd-spanish-version/1407069.p?id=2007499&skuId=1407069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407069_sa.jpg\"}', 'upc' => '024543943587', 'provider' => 'bestbuy'],\n ['name' => \"GE - Icemaker Kit - White\", 'description_short' => \"GE Icemaker Kit: Compatible with most top-freezer refrigerators and select bottom-freezer refrigerators; automatic icemaker; includes an ice bucket, fill tube, water valve and hardware\", 'description_long' => \"GE Icemaker Kit: Compatible with most top-freezer refrigerators and select bottom-freezer refrigerators; automatic icemaker; includes an ice bucket, fill tube, water valve and hardware\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-icemaker-kit-white/1407078.p?id=1219492697252&skuId=1407078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312298796\\/1312298796_sa.jpg\"}', 'upc' => '084691263623', 'provider' => 'bestbuy'],\n ['name' => \"GE - Artistry Series 20.3 Cu. Ft. Bottom-Freezer Refrigerator - White\", 'description_short' => \"Up-front temperature controls; 3 electronic sensors; multiflow air tower; 2 adjustable glass shelves; 2 clear drawers; gallon-size door storage; Frost Guard defrost; optional icemaker\", 'description_long' => \"Up-front temperature controls; 3 electronic sensors; multiflow air tower; 2 adjustable glass shelves; 2 clear drawers; gallon-size door storage; Frost Guard defrost; optional icemaker\", 'price' => 1199.99, 'sale_price' => 1079.99, 'url' => 'http://www.bestbuy.com/site/ge-artistry-series-20-3-cu-ft-bottom-freezer-refrigerator-white/1407087.p?id=1219492684813&skuId=1407087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407087_sa.jpg\"}', 'upc' => '084691808220', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Canon VIXIA Camcorders - Black\", 'description_short' => \"Compatible with select Canon VIXIA camcorders; 7.4V and 1780 mAh\", 'description_long' => \"Compatible with select Canon VIXIA camcorders; 7.4V and 1780 mAh\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-canon-vixia-camcorders-black/1407088.p?id=1218255994381&skuId=1407088', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407088_rc.jpg\"}', 'upc' => '029521830309', 'provider' => 'bestbuy'],\n ['name' => \"Internship/The Watch/Cedar Rapids/The Sitter (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/internship-the-watch-cedar-rapids-the-sitter-dvd/1407096.p?id=3289359&skuId=1407096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407096_sa.jpg\"}', 'upc' => '024543987796', 'provider' => 'bestbuy'],\n ['name' => \"Bronson Triple Threat Collection (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bronson-triple-threat-collection-blu-ray-disc/1407101.p?id=3288833&skuId=1407101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407101_sa.jpg\"}', 'upc' => '883904321224', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - 6.5\\\" 2-Way In-Ceiling Speakers (Pair) - Black\", 'description_short' => \"6.5&quot; polypropylene woofer; 1&quot; PEI tweeter; designed for indoor use\", 'description_long' => \"6.5&quot; polypropylene woofer; 1&quot; PEI tweeter; designed for indoor use\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-6-5-2-way-in-ceiling-speakers-pair-black/1407129.p?id=1219494239394&skuId=1407129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407129_sa.jpg\"}', 'upc' => '600603185564', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Canon VIXIA Camcorders - Gray\", 'description_short' => \"Compatible with select Canon VIXIA camcorders; 7.4V and 800 mAh\", 'description_long' => \"Compatible with select Canon VIXIA camcorders; 7.4V and 800 mAh\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-canon-vixia-camcorders-gray/1407149.p?id=1218255996764&skuId=1407149', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407149_rc.jpg\"}', 'upc' => '029521562491', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Panasonic Camcorders - Black\", 'description_short' => \"Compatible with select Panasonic camcorders; 7.4V and 1320 mAh\", 'description_long' => \"Compatible with select Panasonic camcorders; 7.4V and 1320 mAh\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-panasonic-camcorders-black/1407158.p?id=1218255995015&skuId=1407158', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407158_rc.jpg\"}', 'upc' => '029521831160', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Sony VAIO Laptops - Silver\", 'description_short' => \"Compatible with select Sony VAIO laptops; 11.1V and 4800 mAh\", 'description_long' => \"Compatible with select Sony VAIO laptops; 11.1V and 4800 mAh\", 'price' => 119.99, 'sale_price' => 64.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-sony-vaio-laptops-silver/1407167.p?id=1218255996059&skuId=1407167', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407167_sa.jpg\"}', 'upc' => '029521840728', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Canon VIXIA Camcorders - Black\", 'description_short' => \"Compatible with select Canon VIXIA camcorders; 7.4V and 2100 mAh\", 'description_long' => \"Compatible with select Canon VIXIA camcorders; 7.4V and 2100 mAh\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-canon-vixia-camcorders-black/1407176.p?id=1218255995337&skuId=1407176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407176_rc.jpg\"}', 'upc' => '029521830316', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Panasonic Camcorders - Black\", 'description_short' => \"Compatible with select Panasonic camcorders; 7.4V and 2500 mAh\", 'description_long' => \"Compatible with select Panasonic camcorders; 7.4V and 2500 mAh\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-panasonic-camcorders-black/1407185.p?id=1218255997487&skuId=1407185', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407185_rc.jpg\"}', 'upc' => '029521831177', 'provider' => 'bestbuy'],\n ['name' => \"Mobile Edge - Alienware Orion Carrying Case (Backpack) for 17.3\\\" Notebook - Black\", 'description_short' => \"Backpack - 17.3&quot; Screen Support - 20&quot; x 15.5&quot; x 8&quot; - Nylon - Black\", 'description_long' => \"Backpack - 17.3&quot; Screen Support - 20&quot; x 15.5&quot; x 8&quot; - Nylon - Black\", 'price' => 99.99, 'sale_price' => 72.99, 'url' => 'http://www.bestbuy.com/site/mobile-edge-alienware-orion-carrying-case-backpack-for-17-3-notebook-black/1407228.p?id=1218258082910&skuId=1407228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407228_sa.jpg\"}', 'upc' => '871981003676', 'provider' => 'bestbuy'],\n ['name' => \"Mobile Edge - SlipSuit Carrying Case (Sleeve) for 17.3\\\" Notebook - Black\", 'description_short' => \"Sleeve - 13.75&quot; x 17.5&quot; x 2.2&quot; - Neoprene - Black\", 'description_long' => \"Sleeve - 13.75&quot; x 17.5&quot; x 2.2&quot; - Neoprene - Black\", 'price' => 29.99, 'sale_price' => 21.99, 'url' => 'http://www.bestbuy.com/site/mobile-edge-slipsuit-carrying-case-sleeve-for-17-3-notebook-black/1407246.p?id=1218255999550&skuId=1407246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407246_sa.jpg\"}', 'upc' => '871981005281', 'provider' => 'bestbuy'],\n ['name' => \"ZhuZhu Pets: Featuring the Wild Bunch - Nintendo DS\", 'description_short' => \"The Zhuniverse is your playground\", 'description_long' => \"The Zhuniverse is your playground\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zhuzhu-pets-featuring-the-wild-bunch-nintendo-ds/1407316.p?id=1218255994380&skuId=1407316', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407316_sa.jpg\"}', 'upc' => '047875764408', 'provider' => 'bestbuy'],\n ['name' => \"ZhuZhu Pets: Featuring the Wild Bunch - Nintendo Wii\", 'description_short' => \"The Zhuniverse is your playground\", 'description_long' => \"The Zhuniverse is your playground\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zhuzhu-pets-featuring-the-wild-bunch-nintendo-wii/1407352.p?id=1218255998818&skuId=1407352', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407352_500x500_sa.jpg\"}', 'upc' => '047875764385', 'provider' => 'bestbuy'],\n ['name' => \"Definitive Dave Brubeck on Fantasy, Concord... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/definitive-dave-brubeck-on-fantasy-concord-cd/1407389.p?id=2163555&skuId=1407389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407389_sa.jpg\"}', 'upc' => '888072326255', 'provider' => 'bestbuy'],\n ['name' => \"Heaven and Hell: Neon Nights - Live at Wacken (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heaven-and-hell-neon-nights-live-at-wacken-dvd/1407403.p?id=2155223&skuId=1407403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407403_sa.jpg\"}', 'upc' => '801213021895', 'provider' => 'bestbuy'],\n ['name' => \"The Wind That Shakes the Barley [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wind-that-shakes-the-barley-digipak-cd/1407412.p?id=2163557&skuId=1407412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407412_sa.jpg\"}', 'upc' => '602527539812', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1407421.p?id=2157384&skuId=1407421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407421_sa.jpg\"}', 'upc' => '602527500867', 'provider' => 'bestbuy'],\n ['name' => \"Nothing Like This - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-like-this-cd/1407458.p?id=2154064&skuId=1407458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407458_sa.jpg\"}', 'upc' => '843930004157', 'provider' => 'bestbuy'],\n ['name' => \"Live Forever: The Stanley Theatre,... [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 67.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-forever-the-stanley-theatre-box-cd/1407467.p?id=2179062&skuId=1407467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407467_sa.jpg\"}', 'upc' => '602527471358', 'provider' => 'bestbuy'],\n ['name' => \"A Christmas Cornucopia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-christmas-cornucopia-cd/1407476.p?id=2155424&skuId=1407476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407476.jpg\"}', 'upc' => '602527533094', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Gallery - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-gallery-cd/1407485.p?id=2176342&skuId=1407485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407485_sa.jpg\"}', 'upc' => '030206185928', 'provider' => 'bestbuy'],\n ['name' => \"Bee Gees: In Our Own Time (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bee-gees-in-our-own-time-dvd/1407494.p?id=2155186&skuId=1407494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407494_sa.jpg\"}', 'upc' => '801213033294', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1407519.p?id=2157385&skuId=1407519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407519_sa.jpg\"}', 'upc' => '602527499314', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Rapper Alive [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-rapper-alive-pa-cd/1407537.p?id=2163546&skuId=1407537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407537_sa.jpg\"}', 'upc' => '720657943825', 'provider' => 'bestbuy'],\n ['name' => \"Icon 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-2-cd/1407564.p?id=2168711&skuId=1407564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407564_sa.jpg\"}', 'upc' => '602527514024', 'provider' => 'bestbuy'],\n ['name' => \"Bee Gees: In Our Own Time - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bee-gees-in-our-own-time-blu-ray-disc/1407573.p?id=2155186&skuId=1407573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407573_sa.jpg\"}', 'upc' => '801213337293', 'provider' => 'bestbuy'],\n ['name' => \"Velvet Revolver: Live in Houston, Texas (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/velvet-revolver-live-in-houston-texas-dvd/1407582.p?id=2155184&skuId=1407582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407582_sa.jpg\"}', 'upc' => '801213033195', 'provider' => 'bestbuy'],\n ['name' => \"Live Forever: The Stanley... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-forever-the-stanley-digipak-cd/1407591.p?id=2179063&skuId=1407591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407591_sa.jpg\"}', 'upc' => '602527470115', 'provider' => 'bestbuy'],\n ['name' => \"An Evening with Frank Zappa During Which... The Torture Never Stops (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-evening-with-frank-zappa-during-which-the-torture-never-stops-dvd/1407607.p?id=2155225&skuId=1407607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407607_sa.jpg\"}', 'upc' => '801213033492', 'provider' => 'bestbuy'],\n ['name' => \"Get Closer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-closer-cd/1407643.p?id=2156398&skuId=1407643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407643.jpg\"}', 'upc' => '5099964769523', 'provider' => 'bestbuy'],\n ['name' => \"Now That's What I Call Music! 36 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-thats-what-i-call-music-36-cd-various/1407661.p?id=2156094&skuId=1407661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407661.jpg\"}', 'upc' => '5099990877728', 'provider' => 'bestbuy'],\n ['name' => \"This Is War [Deluxe Edition CD/DVD] [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-war-deluxe-edition-cd-dvd-cd-dvd-cd-dvd-deluxe-edition/1407689.p?id=2156084&skuId=1407689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407689_sa.jpg\"}', 'upc' => '5099991792129', 'provider' => 'bestbuy'],\n ['name' => \"Nothin' But a Good Time [Box Set] [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothin-but-a-good-time-box-set-box-cd/1407698.p?id=2156095&skuId=1407698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407698_sa.jpg\"}', 'upc' => '5099990904721', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Hits: Rock and Roll Never Forgets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-hits-rock-and-roll-never-forgets-cd/1407707.p?id=2156088&skuId=1407707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407707_sa.jpg\"}', 'upc' => '5099994615128', 'provider' => 'bestbuy'],\n ['name' => \"And If Our God Is for Us... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/and-if-our-god-is-for-us-cd/1407734.p?id=2156396&skuId=1407734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407734_sa.jpg\"}', 'upc' => '5099969344428', 'provider' => 'bestbuy'],\n ['name' => \"Earth Song/Ocean Song - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/earth-song-ocean-song-cd/1407761.p?id=2155378&skuId=1407761&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407761', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407761_sa.jpg\"}', 'upc' => '5099990581021', 'provider' => 'bestbuy'],\n ['name' => \"Now That's What I Call the 1990s: The... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-thats-what-i-call-the-1990s-the-cd-various/1407789.p?id=2156132&skuId=1407789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407789.jpg\"}', 'upc' => '5099991780225', 'provider' => 'bestbuy'],\n ['name' => \"Post Card [2010 Bonus Tracks] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/post-card-2010-bonus-tracks-digipak-cd/1407798.p?id=2155376&skuId=1407798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407798.jpg\"}', 'upc' => '5099990580925', 'provider' => 'bestbuy'],\n ['name' => \"An Introduction to Syd Barrett - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-introduction-to-syd-barrett-cd/1407807.p?id=2765785&skuId=1407807&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407807', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407807_sa.jpg\"}', 'upc' => '5099990773624', 'provider' => 'bestbuy'],\n ['name' => \"Darkly, Darkly, Venus Aversa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/darkly-darkly-venus-aversa-cd/1407816.p?id=2159351&skuId=1407816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407816_sa.jpg\"}', 'upc' => '727361266028', 'provider' => 'bestbuy'],\n ['name' => \"Darkly, Darkly, Venus Aversa... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/darkly-darkly-venus-aversa-digipak-cd/1407825.p?id=2159352&skuId=1407825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407825.jpg\"}', 'upc' => '727361266127', 'provider' => 'bestbuy'],\n ['name' => \"Apple Records Box Set - CD - Various (with Bonus Tracks)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 319.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/apple-records-box-set-cd-various-with-bonus-tracks/1407861.p?id=2195546&skuId=1407861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407861_sa.jpg\"}', 'upc' => '5099991837226', 'provider' => 'bestbuy'],\n ['name' => \"Live Love in London - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-love-in-london-cd/1407889.p?id=2156339&skuId=1407889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407889.jpg\"}', 'upc' => '885417052022', 'provider' => 'bestbuy'],\n ['name' => \"Live Love in London [CD & DVD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-love-in-london-cd-dvd-cd/1407898.p?id=2156341&skuId=1407898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1407898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1407\\/1407898.jpg\"}', 'upc' => '885417052091', 'provider' => 'bestbuy'],\n ['name' => \"LifeProof - frē RealTree APC Hard Shell Waterproof Case for Apple® iPhone® 5 and 5s - Pink\", 'description_short' => \"LIFEPROOF fre RealTree APC Hard Shell Waterproof Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; waterproof up to 6.6&#039;; shock-resistant up to 6.6&#039;; camera cutout; built-in screen protector; play-through design\", 'description_long' => \"LIFEPROOF fre RealTree APC Hard Shell Waterproof Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; waterproof up to 6.6&#039;; shock-resistant up to 6.6&#039;; camera cutout; built-in screen protector; play-through design\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lifeproof-fre-realtree-apc-hard-shell-waterproof-case-for-apple-iphone-5-and-5s-pink/1408059.p?id=1219492696617&skuId=1408059', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408059_sa.jpg\"}', 'upc' => '819859015277', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for Motorola DROID Turbo Cell Phones - White/Gray\", 'description_short' => \"INCIPIO DualPro Case for Motorola DROID Turbo Cell Phones: Compatible with Motorola DROID Turbo cell phones; dLAST TPE polymer inner core; Plextonium polycarbonate outer shell; covered volume and power buttons; no-slip, soft-touch finish; shock-absorbent\", 'description_long' => \"INCIPIO DualPro Case for Motorola DROID Turbo Cell Phones: Compatible with Motorola DROID Turbo cell phones; dLAST TPE polymer inner core; Plextonium polycarbonate outer shell; covered volume and power buttons; no-slip, soft-touch finish; shock-absorbent\", 'price' => 29.99, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-motorola-droid-turbo-cell-phones-white-gray/1408068.p?id=1219492693697&skuId=1408068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408068_sa.jpg\"}', 'upc' => '840076109975', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Defender Series Hard Shell Case for Apple iPhone 5 and 5s - Gunmetal Gray/Admiral Blue\", 'description_short' => \"OTTERBOX Defender Series Hard Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; silicone material; screen protector; shock absorbent up to 6.6&#039;; play-through design; nonslip grip; belt clip\", 'description_long' => \"OTTERBOX Defender Series Hard Shell Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; silicone material; screen protector; shock absorbent up to 6.6&#039;; play-through design; nonslip grip; belt clip\", 'price' => 49.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/otterbox-defender-series-hard-shell-case-for-apple-iphone-5-and-5s-gunmetal-gray-admiral-blue/1408077.p?id=1219492697639&skuId=1408077', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408077_sa.jpg\"}', 'upc' => '660543026884', 'provider' => 'bestbuy'],\n ['name' => \"Double Play: Stevie Ray Vaughan... [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-play-stevie-ray-vaughan-cd-dvd-cd-dvd/1408078.p?id=2159354&skuId=1408078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408078.jpg\"}', 'upc' => '886977879722', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for Motorola DROID Turbo Cell Phones - Pink/Gray\", 'description_short' => \"INCIPIO DualPro Case for Motorola DROID Turbo Cell Phones: Compatible with Motorola DROID Turbo cell phones; dLAST TPE polymer inner core; Plextonium polycarbonate outer shell; covered volume and power buttons; no-slip, soft-touch finish; shock-absorbent\", 'description_long' => \"INCIPIO DualPro Case for Motorola DROID Turbo Cell Phones: Compatible with Motorola DROID Turbo cell phones; dLAST TPE polymer inner core; Plextonium polycarbonate outer shell; covered volume and power buttons; no-slip, soft-touch finish; shock-absorbent\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-motorola-droid-turbo-cell-phones-pink-gray/1408086.p?id=1219493016566&skuId=1408086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408086_sa.jpg\"}', 'upc' => '840076109951', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for Motorola DROID Turbo Cell Phones - Black\", 'description_short' => \"INCIPIO DualPro Case for Motorola DROID Turbo Cell Phones: Compatible with Motorola DROID Turbo cell phones; dLAST TPE polymer inner core; Plextonium polycarbonate outer shell; covered volume and power buttons; no-slip, soft-touch finish; shock-absorbent\", 'description_long' => \"INCIPIO DualPro Case for Motorola DROID Turbo Cell Phones: Compatible with Motorola DROID Turbo cell phones; dLAST TPE polymer inner core; Plextonium polycarbonate outer shell; covered volume and power buttons; no-slip, soft-touch finish; shock-absorbent\", 'price' => 29.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-motorola-droid-turbo-cell-phones-black/1408095.p?id=1219492690780&skuId=1408095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408095_sa.jpg\"}', 'upc' => '840076109944', 'provider' => 'bestbuy'],\n ['name' => \"Very Merry Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/very-merry-christmas-cd/1408096.p?id=2158857&skuId=1408096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408096_sa.jpg\"}', 'upc' => '793018311625', 'provider' => 'bestbuy'],\n ['name' => \"Living Proof [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-proof-digipak-cd/1408111.p?id=2152063&skuId=1408111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408111_sa.jpg\"}', 'upc' => '886977810725', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for Motorola DROID Turbo Cell Phones - Cyan/Gray\", 'description_short' => \"INCIPIO DualPro Case for Motorola DROID Turbo Cell Phones: Compatible with Motorola DROID Turbo cell phones; dLAST TPE polymer inner core; Plextonium polycarbonate outer shell; covered volume and power buttons; no-slip, soft-touch finish; shock-absorbent\", 'description_long' => \"INCIPIO DualPro Case for Motorola DROID Turbo Cell Phones: Compatible with Motorola DROID Turbo cell phones; dLAST TPE polymer inner core; Plextonium polycarbonate outer shell; covered volume and power buttons; no-slip, soft-touch finish; shock-absorbent\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-motorola-droid-turbo-cell-phones-cyan-gray/1408128.p?id=1219492698107&skuId=1408128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408128_sa.jpg\"}', 'upc' => '840076109968', 'provider' => 'bestbuy'],\n ['name' => \"Motorola - Wireless Video Baby Monitor - White\", 'description_short' => \"Night vision; 2.4GHz digital wireless technology; up to 590&#039; range; 2.8&quot; color screen; 2-way communication; room temperature display; digital zoom; audio-only option; expandable system\", 'description_long' => \"Night vision; 2.4GHz digital wireless technology; up to 590&#039; range; 2.8&quot; color screen; 2-way communication; room temperature display; digital zoom; audio-only option; expandable system\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/motorola-wireless-video-baby-monitor-white/1408146.p?id=1219492693365&skuId=1408146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312453119\\/1312453119_sa.jpg\"}', 'upc' => '816479011825', 'provider' => 'bestbuy'],\n ['name' => \"Promise: The Darkness on the Edge... [CD & DVD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/promise-the-darkness-on-the-edge-cd-dvd-cd/1408175.p?id=2164872&skuId=1408175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408175_sa.jpg\"}', 'upc' => '886977652523', 'provider' => 'bestbuy'],\n ['name' => \"Kurt Carr: Double Play [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kurt-carr-double-play-cd-dvd-cd-dvd/1408184.p?id=2159360&skuId=1408184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408184_sa.jpg\"}', 'upc' => '886977880322', 'provider' => 'bestbuy'],\n ['name' => \"Hezekiah Walker: Double Play [ECD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hezekiah-walker-double-play-ecd-cd-dvd/1408193.p?id=2171475&skuId=1408193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408193.jpg\"}', 'upc' => '886977880124', 'provider' => 'bestbuy'],\n ['name' => \"My Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-time-cd/1408209.p?id=2158858&skuId=1408209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408209_sa.jpg\"}', 'upc' => '094922364777', 'provider' => 'bestbuy'],\n ['name' => \"Gone with the Wind: Max Steiner's Classic... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gone-with-the-wind-max-steiners-classic-cd/1408218.p?id=2148328&skuId=1408218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408218_sa.jpg\"}', 'upc' => '886977793523', 'provider' => 'bestbuy'],\n ['name' => \"The Promise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-promise-cd/1408227.p?id=2160337&skuId=1408227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408227_sa.jpg\"}', 'upc' => '886977823022', 'provider' => 'bestbuy'],\n ['name' => \"Promise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/promise-cd/1408245.p?id=2147269&skuId=1408245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408245.jpg\"}', 'upc' => '886977617720', 'provider' => 'bestbuy'],\n ['name' => \"Double Play [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-play-cd-dvd-cd-dvd/1408254.p?id=2159362&skuId=1408254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408254_sa.jpg\"}', 'upc' => '886977873126', 'provider' => 'bestbuy'],\n ['name' => \"The Last Mambo [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-mambo-digipak-cd/1408272.p?id=2159364&skuId=1408272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408272_sa.jpg\"}', 'upc' => '811712012126', 'provider' => 'bestbuy'],\n ['name' => \"Original Album Classics: Dave Brubeck - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-album-classics-dave-brubeck-cd/1408306.p?id=2155355&skuId=1408306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408306_sa.jpg\"}', 'upc' => '886977849428', 'provider' => 'bestbuy'],\n ['name' => \"Double Play [CD & DVD] [Long Box] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-play-cd-dvd-long-box-cd-dvd/1408333.p?id=2159367&skuId=1408333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408333_sa.jpg\"}', 'upc' => '886977884825', 'provider' => 'bestbuy'],\n ['name' => \"Double Play: Elvis Presley [ECD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-play-elvis-presley-ecd-cd-dvd/1408342.p?id=2159368&skuId=1408342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408342.jpg\"}', 'upc' => '886977884924', 'provider' => 'bestbuy'],\n ['name' => \"Double Play: Waylon Jennings [ECD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-play-waylon-jennings-ecd-cd-dvd/1408351.p?id=2159369&skuId=1408351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408351_sa.jpg\"}', 'upc' => '886977884429', 'provider' => 'bestbuy'],\n ['name' => \"Double Play: Fred Hammond [ECD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-play-fred-hammond-ecd-cd-dvd/1408379.p?id=2159370&skuId=1408379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408379_sa.jpg\"}', 'upc' => '886977880421', 'provider' => 'bestbuy'],\n ['name' => \"The Gift - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gift-cd/1408397.p?id=2156348&skuId=1408397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408397_sa.jpg\"}', 'upc' => '886977207723', 'provider' => 'bestbuy'],\n ['name' => \"Madame Marie's Temple of Knowledge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madame-maries-temple-of-knowledge-cd/1408532.p?id=1479866&skuId=1408532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408532_sa.jpg\"}', 'upc' => '093228043829', 'provider' => 'bestbuy'],\n ['name' => \"Ultra 2011 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultra-2011-cd-various/1408815.p?id=2163548&skuId=1408815&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408815', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408815_sa.jpg\"}', 'upc' => '617465266126', 'provider' => 'bestbuy'],\n ['name' => \"O Moon, Queen of Night On Earth [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/o-moon-queen-of-night-on-earth-digipak-cd/1408824.p?id=2162429&skuId=1408824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408824_sa.jpg\"}', 'upc' => '093624961529', 'provider' => 'bestbuy'],\n ['name' => \"Wild Orchid Children Are... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-orchid-children-are-digipak-cd/1408833.p?id=2163538&skuId=1408833&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408833', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408833_sa.jpg\"}', 'upc' => '794558019828', 'provider' => 'bestbuy'],\n ['name' => \"The Age of Adz [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-age-of-adz-lp-vinyl/1408842.p?id=2163547&skuId=1408842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408842_sa.jpg\"}', 'upc' => '656605607719', 'provider' => 'bestbuy'],\n ['name' => \"For Colored Girls - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-colored-girls-cd-original-soundtrack/1408851.p?id=2162859&skuId=1408851&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408851', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408851_sa.jpg\"}', 'upc' => '075678892929', 'provider' => 'bestbuy'],\n ['name' => \"Exilarch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exilarch-cd/1408915.p?id=2184672&skuId=1408915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1408915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1408\\/1408915_sa.jpg\"}', 'upc' => '067003090728', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Jumpr Stack 9 Power Bank - Black/Orange\", 'description_short' => \"ENERPLEX Jumpr Stack 9 Power Bank: Universal compatibility; lithium-polymer battery; 9400 mAh capacity; micro USB input; micro USB and Lightning outputs; magnetic stack and charge functionality\", 'description_long' => \"ENERPLEX Jumpr Stack 9 Power Bank: Universal compatibility; lithium-polymer battery; 9400 mAh capacity; micro USB input; micro USB and Lightning outputs; magnetic stack and charge functionality\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enerplex-jumpr-stack-9-power-bank-black-orange/1409003.p?id=1219492692828&skuId=1409003', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409003_sa.jpg\"}', 'upc' => '811665020025', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Surfr Battery & Solar Case for Apple® iPhone® SE, 5s and 5 - Blue\", 'description_short' => \"ENERPLEX Surfr Battery &amp; Solar Case for Apple iPhone SE, 5s and 5: Compatible with Apple iPhone SE, 5s and 5; integrated 2000 mAh lithium-ion battery pack; built-in solar panel; protects your phone; play-through design\", 'description_long' => \"ENERPLEX Surfr Battery &amp; Solar Case for Apple iPhone SE, 5s and 5: Compatible with Apple iPhone SE, 5s and 5; integrated 2000 mAh lithium-ion battery pack; built-in solar panel; protects your phone; play-through design\", 'price' => 49.99, 'sale_price' => 27.99, 'url' => 'http://www.bestbuy.com/site/enerplex-surfr-battery-solar-case-for-apple-iphone-se-5s-and-5-blue/1409012.p?id=1219492691314&skuId=1409012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409012_sa.jpg\"}', 'upc' => '854556004629', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Jumpr Max Power Bank - Green\", 'description_short' => \"ENERPLEX Jumpr Max Power Bank: Compatible with most USB-enabled cell phones, cameras, tablets, GPS devices and more; 10,000 mAh capacity; dual USB outputs; micro USB input; battery status indicator; compact design\", 'description_long' => \"ENERPLEX Jumpr Max Power Bank: Compatible with most USB-enabled cell phones, cameras, tablets, GPS devices and more; 10,000 mAh capacity; dual USB outputs; micro USB input; battery status indicator; compact design\", 'price' => 69.99, 'sale_price' => 58.99, 'url' => 'http://www.bestbuy.com/site/enerplex-jumpr-max-power-bank-green/1409021.p?id=1219492694924&skuId=1409021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409021_sa.jpg\"}', 'upc' => '854556004513', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Jumpr Max Power Bank - Purple\", 'description_short' => \"ENERPLEX Jumpr Max Power Bank: Compatible with most USB-enabled cell phones, cameras, tablets, GPS devices and more; 10,000 mAh capacity; dual USB outputs; micro USB input; battery status indicator; compact design\", 'description_long' => \"ENERPLEX Jumpr Max Power Bank: Compatible with most USB-enabled cell phones, cameras, tablets, GPS devices and more; 10,000 mAh capacity; dual USB outputs; micro USB input; battery status indicator; compact design\", 'price' => 69.99, 'sale_price' => 58.99, 'url' => 'http://www.bestbuy.com/site/enerplex-jumpr-max-power-bank-purple/1409049.p?id=1219492694545&skuId=1409049', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409049_sa.jpg\"}', 'upc' => '854556004520', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Kickr IV Portable Solar Charger - Black\", 'description_short' => \"ENERPLEX Kickr IV Portable Solar Charger: Compatible with most USB-enabled cell phones, cameras, GPS devices and more; CIGS solar material; 6.5W power output; foldable 4-panel design; elastic bands\", 'description_long' => \"ENERPLEX Kickr IV Portable Solar Charger: Compatible with most USB-enabled cell phones, cameras, GPS devices and more; CIGS solar material; 6.5W power output; foldable 4-panel design; elastic bands\", 'price' => 99.99, 'sale_price' => 86.99, 'url' => 'http://www.bestbuy.com/site/enerplex-kickr-iv-portable-solar-charger-black/1409067.p?id=1219492694415&skuId=1409067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409067_sa.jpg\"}', 'upc' => '854556004285', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Jumpr Slate 5k-L Lightning Power Bank - Black\", 'description_short' => \"ENERPLEX Jumpr Slate 5k-L Lightning Power Bank: Universal compatibility; rubberized texture; Lightning cable; USB output; micro USB input; lithium-polymer battery; 5100 mAh capacity; binder cutouts\", 'description_long' => \"ENERPLEX Jumpr Slate 5k-L Lightning Power Bank: Universal compatibility; rubberized texture; Lightning cable; USB output; micro USB input; lithium-polymer battery; 5100 mAh capacity; binder cutouts\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enerplex-jumpr-slate-5k-l-lightning-power-bank-black/1409076.p?id=1219492684811&skuId=1409076', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409076_sa.jpg\"}', 'upc' => '811665020063', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Jumpr Stack 6 Power Bank - Black/Orange\", 'description_short' => \"ENERPLEX Jumpr Stack 6 Power Bank: Universal compatibility; Lightning connector output; 6200 mAh; micro USB input and output; magnetic stack and charge functionality\", 'description_long' => \"ENERPLEX Jumpr Stack 6 Power Bank: Universal compatibility; Lightning connector output; 6200 mAh; micro USB input and output; magnetic stack and charge functionality\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enerplex-jumpr-stack-6-power-bank-black-orange/1409085.p?id=1219492698172&skuId=1409085', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409085_sa.jpg\"}', 'upc' => '811665020018', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Jumpr Slate 10K Power Bank - Black\", 'description_short' => \"ENERPLEX Jumpr Slate 10K Power Bank: Universal compatibility; 10,000 mAh; dual 2.4-amp USB outputs; slim design; rubbery finish; binder holes\", 'description_long' => \"ENERPLEX Jumpr Slate 10K Power Bank: Universal compatibility; 10,000 mAh; dual 2.4-amp USB outputs; slim design; rubbery finish; binder holes\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enerplex-jumpr-slate-10k-power-bank-black/1409109.p?id=1219492695055&skuId=1409109', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409109_sa.jpg\"}', 'upc' => '854556004865', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Jumpr Mini Power Bank - Gray/Orange\", 'description_short' => \"ENERPLEX Jumpr Mini Power Bank: Universal compatibility; tethered micro USB output; lithium-polymer battery; charges cell phones, cameras and more; magnetic stack and charge capabilities with another Jumpr Mini\", 'description_long' => \"ENERPLEX Jumpr Mini Power Bank: Universal compatibility; tethered micro USB output; lithium-polymer battery; charges cell phones, cameras and more; magnetic stack and charge capabilities with another Jumpr Mini\", 'price' => 27.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/enerplex-jumpr-mini-power-bank-gray-orange/1409118.p?id=1219492697069&skuId=1409118', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409118_sa.jpg\"}', 'upc' => '854556004964', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Jumpr Slate 5K Power Bank - Black\", 'description_short' => \"ENERPLEX Jumpr Slate 5K Power Bank: Universal compatibility; rubberized exterior; lithium-polymer battery; 5100 mAh capacity; micro USB input and output; USB port; binder cutouts\", 'description_long' => \"ENERPLEX Jumpr Slate 5K Power Bank: Universal compatibility; rubberized exterior; lithium-polymer battery; 5100 mAh capacity; micro USB input and output; USB port; binder cutouts\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enerplex-jumpr-slate-5k-power-bank-black/1409127.p?id=1219492684818&skuId=1409127', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409127_sa.jpg\"}', 'upc' => '854556004858', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Jumpr Stack 3 Power Bank - Gray/Orange\", 'description_short' => \"ENERPLEX Jumpr Stack 3 Power Bank: Lithium-polymer battery; 3200 mAh; micro USB input; micro USB and Lightning outputs; magnetic stack-and-charge functionality\", 'description_long' => \"ENERPLEX Jumpr Stack 3 Power Bank: Lithium-polymer battery; 3200 mAh; micro USB input; micro USB and Lightning outputs; magnetic stack-and-charge functionality\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enerplex-jumpr-stack-3-power-bank-gray-orange/1409145.p?id=1219492693964&skuId=1409145', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409145_sa.jpg\"}', 'upc' => '811665020001', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Surfr Battery & Solar Case for Apple® iPhone® SE, 5s and 5 - Orange\", 'description_short' => \"ENERPLEX Surfr Battery &amp; Solar Case for Apple iPhoneSE, 5s and 5: Compatible with Apple iPhone SE, 5s and 5; integrated 2000 mAh lithium-ion battery pack; built-in solar panel; protects your phone; play-through design\", 'description_long' => \"ENERPLEX Surfr Battery &amp; Solar Case for Apple iPhoneSE, 5s and 5: Compatible with Apple iPhone SE, 5s and 5; integrated 2000 mAh lithium-ion battery pack; built-in solar panel; protects your phone; play-through design\", 'price' => 49.99, 'sale_price' => 27.99, 'url' => 'http://www.bestbuy.com/site/enerplex-surfr-battery-solar-case-for-apple-iphone-se-5s-and-5-orange/1409172.p?id=1219492691380&skuId=1409172', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409172_sa.jpg\"}', 'upc' => '854556004612', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Surfr Battery & Solar Case for Apple® iPhone® SE, 5s and 5 - Black\", 'description_short' => \"ENERPLEX Surfr Battery &amp; Solar Case for Apple iPhone SE, 5s and 5: Compatible with Apple iPhone SE, 5s and 5; integrated 2000 mAh lithium-ion battery pack; built-in solar panel; protects your phone; play-through design\", 'description_long' => \"ENERPLEX Surfr Battery &amp; Solar Case for Apple iPhone SE, 5s and 5: Compatible with Apple iPhone SE, 5s and 5; integrated 2000 mAh lithium-ion battery pack; built-in solar panel; protects your phone; play-through design\", 'price' => 49.99, 'sale_price' => 27.99, 'url' => 'http://www.bestbuy.com/site/enerplex-surfr-battery-solar-case-for-apple-iphone-se-5s-and-5-black/1409181.p?id=1219492695446&skuId=1409181', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409181_sa.jpg\"}', 'upc' => '854556004605', 'provider' => 'bestbuy'],\n ['name' => \"Two & a Half Men: Complete Tenth Seasons [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-a-half-men-complete-tenth-seasons-3-discs-dvd/1409208.p?id=2718172&skuId=1409208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409208_sa.jpg\"}', 'upc' => '883929278497', 'provider' => 'bestbuy'],\n ['name' => \"2 Broke Girls: The Complete Second Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-broke-girls-the-complete-second-season-3-discs-dvd/1409396.p?id=2718198&skuId=1409396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1409396.jpg\"}', 'upc' => '883929278473', 'provider' => 'bestbuy'],\n ['name' => \"Swordfish/Terminator 3: Rise of the Machines [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swordfish-terminator-3-rise-of-the-machines-2-discs-dvd/1409599.p?id=2163294&skuId=1409599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409599_sa.jpg\"}', 'upc' => '883929002566', 'provider' => 'bestbuy'],\n ['name' => \"Fellowes - Powershred W-11C 11-Sheet Crosscut Shredder - Black/Silver\", 'description_short' => \"Shreds paper, staples and credit cards; shreds up to 11 sheets per pass; shred speed of 16&#039; per minute\", 'description_long' => \"Shreds paper, staples and credit cards; shreds up to 11 sheets per pass; shred speed of 16&#039; per minute\", 'price' => 89.99, 'sale_price' => 76.99, 'url' => 'http://www.bestbuy.com/site/fellowes-powershred-w-11c-11-sheet-crosscut-shredder-black-silver/1409605.p?id=1218256564486&skuId=1409605&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409605', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409605_sa.jpg\"}', 'upc' => '043859546329', 'provider' => 'bestbuy'],\n ['name' => \"Ride to Hell Retribution - PRE-OWNED - PlayStation 3\", 'description_short' => \"Seek and achieve revenge with high-speed, gritty action\", 'description_long' => \"Seek and achieve revenge with high-speed, gritty action\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ride-to-hell-retribution-pre-owned-playstation-3/1409741.p?id=1219051765894&skuId=1409741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409741_sa.jpg\"}', 'upc' => '799007834892', 'provider' => 'bestbuy'],\n ['name' => \"Ride to Hell Retribution - PRE-OWNED - Xbox 360\", 'description_short' => \"Seek and achieve revenge with high-speed, gritty action\", 'description_long' => \"Seek and achieve revenge with high-speed, gritty action\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ride-to-hell-retribution-pre-owned-xbox-360/1409823.p?id=1219051766420&skuId=1409823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1409823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1409\\/1409823_sa.jpg\"}', 'upc' => '799007834908', 'provider' => 'bestbuy'],\n ['name' => \"Best of Big Maceo: The King of Chicago Blues... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-big-maceo-the-king-of-chicago-blues-cd/1410084.p?id=74632&skuId=1410084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1410084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1410\\/1410084_sa.jpg\"}', 'upc' => '096297700921', 'provider' => 'bestbuy'],\n ['name' => \"Un Mojado Sin Licencia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/un-mojado-sin-licencia-cd/1410093.p?id=86987&skuId=1410093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1410093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1410\\/1410093_sa.jpg\"}', 'upc' => '096297039625', 'provider' => 'bestbuy'],\n ['name' => \"What It is?: Ed Blackwell Project, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-it-is-ed-blackwell-project-vol-1-cd/1410164.p?id=64319&skuId=1410164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1410164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1410\\/1410164_sa.jpg\"}', 'upc' => '063757708926', 'provider' => 'bestbuy'],\n ['name' => \"Stone Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stone-blues-cd/1410226.p?id=92701&skuId=1410226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1410226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1410\\/1410226.jpg\"}', 'upc' => '015707928724', 'provider' => 'bestbuy'],\n ['name' => \"War in My Head - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/war-in-my-head-cd/1410397.p?id=72762&skuId=1410397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1410397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1410\\/1410397_sa.jpg\"}', 'upc' => '095451000624', 'provider' => 'bestbuy'],\n ['name' => \"I Love Being Here with You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-love-being-here-with-you-cd/1410743.p?id=64672&skuId=1410743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1410743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1410\\/1410743_sa.jpg\"}', 'upc' => '089408333620', 'provider' => 'bestbuy'],\n ['name' => \"Dedicated to Diz [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dedicated-to-diz-remaster-cd/1410752.p?id=132202&skuId=1410752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1410752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1410\\/1410752.jpg\"}', 'upc' => '089408332326', 'provider' => 'bestbuy'],\n ['name' => \"CE - Kul 30\\\" Deluxe Tower Fan - Silver\", 'description_short' => \"2 speeds; 2 wind modes; oscillating function; standard remote; storage pocket; 8-hour timer\", 'description_long' => \"2 speeds; 2 wind modes; oscillating function; standard remote; storage pocket; 8-hour timer\", 'price' => 49.99, 'sale_price' => 39.99, 'url' => 'http://www.bestbuy.com/site/ce-kul-30-deluxe-tower-fan-silver/1411027.p?id=1219051761773&skuId=1411027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1411027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1411\\/1411027_500x500_sa.jpg\"}', 'upc' => '765167334312', 'provider' => 'bestbuy'],\n ['name' => \"Sleepless in Seattle - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sleepless-in-seattle-cd-original-soundtrack/1411252.p?id=99131&skuId=1411252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1411252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1411\\/1411252_sa.jpg\"}', 'upc' => '074645376424', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Howard Jones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-howard-jones-cd/1411715.p?id=87285&skuId=1411715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1411715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1411\\/1411715_sa.jpg\"}', 'upc' => '075596154024', 'provider' => 'bestbuy'],\n ['name' => \"Piano Tribute to Kenny Chesney - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-tribute-to-kenny-chesney-cd-various/1412035.p?id=2159872&skuId=1412035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412035_sa.jpg\"}', 'upc' => '707541935593', 'provider' => 'bestbuy'],\n ['name' => \"Floetic Soul [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/floetic-soul-digipak-cd/1412044.p?id=2155939&skuId=1412044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412044_sa.jpg\"}', 'upc' => '016351578525', 'provider' => 'bestbuy'],\n ['name' => \"Memories: Celebrating Bobby's 60th... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-celebrating-bobbys-60th-cd/1412053.p?id=2160351&skuId=1412053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412053_sa.jpg\"}', 'upc' => '732351107229', 'provider' => 'bestbuy'],\n ['name' => \"Beh!nd the Curta!n [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/behnd-the-curtan-pa-digipak-cd/1412062.p?id=2198854&skuId=1412062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412062_sa.jpg\"}', 'upc' => '822720714728', 'provider' => 'bestbuy'],\n ['name' => \"Something on the Inside: An Inspirational... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-on-the-inside-an-inspirational-cd-various/1412071.p?id=2154430&skuId=1412071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412071_sa.jpg\"}', 'upc' => '015095723420', 'provider' => 'bestbuy'],\n ['name' => \"School for the Blindman [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/school-for-the-blindman-pa-cd/1412099.p?id=2159873&skuId=1412099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412099_sa.jpg\"}', 'upc' => '895561002439', 'provider' => 'bestbuy'],\n ['name' => \"Tamara Drewe - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tamara-drewe-cd-original-soundtrack/1412105.p?id=2162001&skuId=1412105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412105.jpg\"}', 'upc' => '738572134426', 'provider' => 'bestbuy'],\n ['name' => \"The Battles Rage On [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-battles-rage-on-digipak-cd/1412114.p?id=2163503&skuId=1412114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412114_sa.jpg\"}', 'upc' => '620638053423', 'provider' => 'bestbuy'],\n ['name' => \"Just Want to Be Me [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-want-to-be-me-slipcase-cd/1412123.p?id=2157350&skuId=1412123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412123_sa.jpg\"}', 'upc' => '046346109229', 'provider' => 'bestbuy'],\n ['name' => \"Celebrates 25 Years of Music: A Live Celebration - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/celebrates-25-years-of-music-a-live-celebration-cd/1412132.p?id=2159874&skuId=1412132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412132_sa.jpg\"}', 'upc' => '015095723222', 'provider' => 'bestbuy'],\n ['name' => \"Acoustic Tribute To Bon Jovi's Greatest Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/acoustic-tribute-to-bon-jovis-greatest-hits-cd-various/1412141.p?id=2159875&skuId=1412141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412141_sa.jpg\"}', 'upc' => '707541935791', 'provider' => 'bestbuy'],\n ['name' => \"Live in Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-concert-cd/1412187.p?id=2164179&skuId=1412187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412187_sa.jpg\"}', 'upc' => '895834001039', 'provider' => 'bestbuy'],\n ['name' => \"Bunny Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bunny-party-cd/1412202.p?id=2159876&skuId=1412202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412202_sa.jpg\"}', 'upc' => '068478500125', 'provider' => 'bestbuy'],\n ['name' => \"Piano Tribute To Kings Of Leon - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-tribute-to-kings-of-leon-various-cd/1412239.p?id=2159877&skuId=1412239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412239_sa.jpg\"}', 'upc' => '707541935692', 'provider' => 'bestbuy'],\n ['name' => \"40th Anniversary [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/40th-anniversary-cd-dvd-digipak-cd-dvd/1412248.p?id=2159878&skuId=1412248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412248_sa.jpg\"}', 'upc' => '895333002070', 'provider' => 'bestbuy'],\n ['name' => \"Franklin and the Adventures of the Noble Knights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/franklin-and-the-adventures-of-the-noble-knights-cd/1412266.p?id=2161987&skuId=1412266&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412266_sa.jpg\"}', 'upc' => '068478500026', 'provider' => 'bestbuy'],\n ['name' => \"Black Flag [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-flag-pa-cd/1412275.p?id=3169707&skuId=1412275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412275_sa.jpg\"}', 'upc' => '786984088226', 'provider' => 'bestbuy'],\n ['name' => \"George Kush Da Button [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/george-kush-da-button-pa-cd/1412309.p?id=2159879&skuId=1412309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412309_sa.jpg\"}', 'upc' => '895561002477', 'provider' => 'bestbuy'],\n ['name' => \"Celebrating 50 Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/celebrating-50-years-cd/1412318.p?id=2147278&skuId=1412318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412318_sa.jpg\"}', 'upc' => '732865168525', 'provider' => 'bestbuy'],\n ['name' => \"Imaginary Friends [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imaginary-friends-digipak-cd/1412336.p?id=2154724&skuId=1412336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412336_sa.jpg\"}', 'upc' => '800828313029', 'provider' => 'bestbuy'],\n ['name' => \"Standing Ovation [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/standing-ovation-pa-cd/1412354.p?id=2159881&skuId=1412354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412354_sa.jpg\"}', 'upc' => '678394100523', 'provider' => 'bestbuy'],\n ['name' => \"Magnetic Skyline [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magnetic-skyline-digipak-cd/1412372.p?id=2164177&skuId=1412372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412372_sa.jpg\"}', 'upc' => '5021449224128', 'provider' => 'bestbuy'],\n ['name' => \"Adventures in Coverland [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adventures-in-coverland-digipak-cd/1412405.p?id=2152028&skuId=1412405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412405_sa.jpg\"}', 'upc' => '748337538123', 'provider' => 'bestbuy'],\n ['name' => \"King Capo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-capo-cd/1412432.p?id=3169706&skuId=1412432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412432_sa.jpg\"}', 'upc' => '786984088127', 'provider' => 'bestbuy'],\n ['name' => \"Opera Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/opera-arias-cd/1412466.p?id=1758673&skuId=1412466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412466.jpg\"}', 'upc' => '710357784729', 'provider' => 'bestbuy'],\n ['name' => \"Ronnie Spector's... [Import] [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ronnie-spectors-import-ep-cd/1412469.p?id=2160354&skuId=1412469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412469_sa.jpg\"}', 'upc' => '016581700024', 'provider' => 'bestbuy'],\n ['name' => \"The Lowdown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lowdown-cd/1412478.p?id=2976256&skuId=1412478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412478_sa.jpg\"}', 'upc' => '823564616421', 'provider' => 'bestbuy'],\n ['name' => \"Keep On Ridin [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keep-on-ridin-pa-cd/1412502.p?id=2157390&skuId=1412502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412502_sa.jpg\"}', 'upc' => '947169673242', 'provider' => 'bestbuy'],\n ['name' => \"That Was Then This Is Now [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/that-was-then-this-is-now-pa-cd/1412548.p?id=2157391&skuId=1412548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412548_sa.jpg\"}', 'upc' => '802657801401', 'provider' => 'bestbuy'],\n ['name' => \"A Blackheart Christmas - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-blackheart-christmas-cd-various/1412557.p?id=2152027&skuId=1412557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412557_sa.jpg\"}', 'upc' => '748337535023', 'provider' => 'bestbuy'],\n ['name' => \"Live at Billy Bob's Texas [CD/DVD] [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-billy-bobs-texas-cd-dvd-cd-dvd-cd-dvd/1412566.p?id=2386738&skuId=1412566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412566_sa.jpg\"}', 'upc' => '662582505528', 'provider' => 'bestbuy'],\n ['name' => \"Tipica 73 [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tipica-73-lp-vinyl/1412609.p?id=2192713&skuId=1412609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412609_sa.jpg\"}', 'upc' => '846395005066', 'provider' => 'bestbuy'],\n ['name' => \"Corridos al Estilo Diferente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/corridos-al-estilo-diferente-cd/1412627.p?id=2157394&skuId=1412627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412627_sa.jpg\"}', 'upc' => '097037691424', 'provider' => 'bestbuy'],\n ['name' => \"Who Ride Wit Us, Vol. 4 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/who-ride-wit-us-vol-4-pa-cd/1412645.p?id=2157395&skuId=1412645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412645_sa.jpg\"}', 'upc' => '876509876787', 'provider' => 'bestbuy'],\n ['name' => \"Ghetto Funk [Synergy] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ghetto-funk-synergy-digipak-cd/1412663.p?id=1393814&skuId=1412663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1406\\/14069303.jpg\"}', 'upc' => '874757001722', 'provider' => 'bestbuy'],\n ['name' => \"Experience the Divine Bette Midler: Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/experience-the-divine-bette-midler-greatest-hits-cd/1412705.p?id=91612&skuId=1412705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412705_sa.jpg\"}', 'upc' => '075678249723', 'provider' => 'bestbuy'],\n ['name' => \"Heart Ache/Dethroned [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-ache-dethroned-digipak-cd/1412718.p?id=2164874&skuId=1412718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412718.jpg\"}', 'upc' => '634457534728', 'provider' => 'bestbuy'],\n ['name' => \"TC Kross - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tc-kross-cd/1412727.p?id=2156857&skuId=1412727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412727_sa.jpg\"}', 'upc' => '899368001251', 'provider' => 'bestbuy'],\n ['name' => \"Caffeine 2011 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caffeine-2011-cd/1412736.p?id=2156858&skuId=1412736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412736_sa.jpg\"}', 'upc' => '026656202629', 'provider' => 'bestbuy'],\n ['name' => \"Softly with These Songs: The Best of Roberta... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/softly-with-these-songs-the-best-of-roberta-cd/1412741.p?id=82356&skuId=1412741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412741_sa.jpg\"}', 'upc' => '075678249822', 'provider' => 'bestbuy'],\n ['name' => \"Rhythm of the Road, Vol. 1:... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rhythm-of-the-road-vol-1-digipak-cd/1412745.p?id=2156859&skuId=1412745&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412745', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412745_sa.jpg\"}', 'upc' => '662102114322', 'provider' => 'bestbuy'],\n ['name' => \"Atomic Clock [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atomic-clock-pa-cd/1412754.p?id=2156860&skuId=1412754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412754_sa.jpg\"}', 'upc' => '730003003226', 'provider' => 'bestbuy'],\n ['name' => \"K7 Tapes (Mixed By Big Pink) [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/k7-tapes-mixed-by-big-pink-digipak-cd/1412763.p?id=3275543&skuId=1412763&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412763', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412763_sa.jpg\"}', 'upc' => '730003726927', 'provider' => 'bestbuy'],\n ['name' => \"Television City Dream [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/television-city-dream-digipak-cd/1412772.p?id=2156862&skuId=1412772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412772_sa.jpg\"}', 'upc' => '751097076125', 'provider' => 'bestbuy'],\n ['name' => \"Legendary Atta Isaacs: Innovative Slack Key... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legendary-atta-isaacs-innovative-slack-key-cd/1412781.p?id=2139703&skuId=1412781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412781_sa.jpg\"}', 'upc' => '787258701032', 'provider' => 'bestbuy'],\n ['name' => \"Ain't No Other [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aint-no-other-pa-cd/1412803.p?id=90972&skuId=1412803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412803_sa.jpg\"}', 'upc' => '075679223029', 'provider' => 'bestbuy'],\n ['name' => \"Atlantique [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantique-digipak-cd/1412809.p?id=2164486&skuId=1412809&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412809.jpg\"}', 'upc' => '730003807725', 'provider' => 'bestbuy'],\n ['name' => \"Midwesterners: The Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midwesterners-the-hits-cd/1412827.p?id=2156863&skuId=1412827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412827_sa.jpg\"}', 'upc' => '746105061026', 'provider' => 'bestbuy'],\n ['name' => \"Will Never Die [DigDownLoad] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/will-never-die-digdownload-pa-cd/1412836.p?id=2156864&skuId=1412836&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412836_sa.jpg\"}', 'upc' => '673951021624', 'provider' => 'bestbuy'],\n ['name' => \"Bad Books [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-books-digipak-cd/1412845.p?id=2156865&skuId=1412845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412845_sa.jpg\"}', 'upc' => '793018312226', 'provider' => 'bestbuy'],\n ['name' => \"As a Dog Returns [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/as-a-dog-returns-digipak-cd/1412854.p?id=2156866&skuId=1412854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412854_sa.jpg\"}', 'upc' => '020286155041', 'provider' => 'bestbuy'],\n ['name' => \"MMX - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mmx-cd/1412863.p?id=2156867&skuId=1412863&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412863_sa.jpg\"}', 'upc' => '826056011025', 'provider' => 'bestbuy'],\n ['name' => \"Dance Party 2011 [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-party-2011-digipak-cd/1412872.p?id=2156868&skuId=1412872&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412872', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412872_sa.jpg\"}', 'upc' => '768697508826', 'provider' => 'bestbuy'],\n ['name' => \"Rebel Rave [Digipak] - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rebel-rave-digipak-various-cd/1412881.p?id=3263409&skuId=1412881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412881_sa.jpg\"}', 'upc' => '730003821127', 'provider' => 'bestbuy'],\n ['name' => \"Higher Than the Eiffel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/higher-than-the-eiffel-cd/1412918.p?id=2156869&skuId=1412918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412918.jpg\"}', 'upc' => '654436017226', 'provider' => 'bestbuy'],\n ['name' => \"Slack & Steel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slack-steel-cd/1412927.p?id=2139698&skuId=1412927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412927_sa.jpg\"}', 'upc' => '787258720200', 'provider' => 'bestbuy'],\n ['name' => \"Revision: Revise [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revision-revise-slipcase-cd/1412936.p?id=2156870&skuId=1412936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412936_sa.jpg\"}', 'upc' => '793018310628', 'provider' => 'bestbuy'],\n ['name' => \"Offspring of Time [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/offspring-of-time-pa-cd/1412945.p?id=2164176&skuId=1412945&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412945', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412945_sa.jpg\"}', 'upc' => '661278235527', 'provider' => 'bestbuy'],\n ['name' => \"America's Most Haunted [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/americas-most-haunted-pa-cd/1412954.p?id=2164175&skuId=1412954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412954.jpg\"}', 'upc' => '661278235626', 'provider' => 'bestbuy'],\n ['name' => \"What Separates Me From You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-separates-me-from-you-cd/1412963.p?id=2164879&skuId=1412963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1412963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1412\\/1412963_sa.jpg\"}', 'upc' => '746105062023', 'provider' => 'bestbuy'],\n ['name' => \"Young [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/young-ep-cd/1413007.p?id=2163292&skuId=1413007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1413007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1413\\/1413007_sa.jpg\"}', 'upc' => '730003420429', 'provider' => 'bestbuy'],\n ['name' => \"Anthropocentric [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anthropocentric-digipak-cd/1413034.p?id=2156872&skuId=1413034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1413034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1413\\/1413034_sa.jpg\"}', 'upc' => '039841493023', 'provider' => 'bestbuy'],\n ['name' => \"7 Sinners - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/7-sinners-cd/1413043.p?id=2156873&skuId=1413043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1413043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1413\\/1413043_sa.jpg\"}', 'upc' => '654436017820', 'provider' => 'bestbuy'],\n ['name' => \"Infected - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/infected-cd/1413052.p?id=2156874&skuId=1413052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1413052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1413\\/1413052_sa.jpg\"}', 'upc' => '039841496420', 'provider' => 'bestbuy'],\n ['name' => \"Apocalyptic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/apocalyptic-cd/1413061.p?id=2156875&skuId=1413061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1413061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1413\\/1413061_sa.jpg\"}', 'upc' => '039841496529', 'provider' => 'bestbuy'],\n ['name' => \"Bloody Pit of Horror [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bloody-pit-of-horror-digipak-cd/1413098.p?id=2156877&skuId=1413098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1413098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1413\\/1413098_sa.jpg\"}', 'upc' => '039841494327', 'provider' => 'bestbuy'],\n ['name' => \"Evangelia Heretika (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evangelia-heretika-dvd-3-disc/1413104.p?id=2157957&skuId=1413104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1413104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1413\\/1413104.jpg\"}', 'upc' => '039843406298', 'provider' => 'bestbuy'],\n ['name' => \"The Speakeasy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-speakeasy-cd/1413113.p?id=2156879&skuId=1413113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1413113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1413\\/1413113_sa.jpg\"}', 'upc' => '751097073520', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Lobo [Rhino] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-lobo-rhino-cd/1413606.p?id=89500&skuId=1413606&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1413606', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1413\\/1413606_sa.jpg\"}', 'upc' => '081227125424', 'provider' => 'bestbuy'],\n ['name' => \"Tweez - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tweez-cd/1413884.p?id=99148&skuId=1413884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1413884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1413\\/1413884_sa.jpg\"}', 'upc' => '036172083824', 'provider' => 'bestbuy'],\n ['name' => \"House Party: Tonight's the Night (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-party-tonights-the-night-dvd-ultraviolet-digital-copy/1414006.p?id=2715777&skuId=1414006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1414006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1414\\/1414006_sa.jpg\"}', 'upc' => '794043164439', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek: Original Series - Three Season Pack (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-original-series-three-season-pack-blu-ray-disc/1414015.p?id=2051524&skuId=1414015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1414015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1821\\/18219688.jpg\"}', 'upc' => '032429068446', 'provider' => 'bestbuy'],\n ['name' => \"Geek Squad® - Tablet Shield Installation (In-Store)\", 'description_short' => \"Protect your new tablet, Apple&#174; iPad&#174; or e-Reader by having one of the Agents at your local Geek Squad Precinct install a screen shield for you.\", 'description_long' => \"Protect your new tablet, Apple&#174; iPad&#174; or e-Reader by having one of the Agents at your local Geek Squad Precinct install a screen shield for you.\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/geek-squad-tablet-shield-installation-in-store/1414789.p?id=1218391207946&skuId=1414789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1414789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1414\\/1414789_105x105_sc.jpg\"}', 'upc' => '400014147898', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Most HTC Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with HTC Diamond Victor, Fuze, Raphael, Touch Pro, Touch Pro PPC-6850 and TyTn III mobile phones; lithium-ion; 1340 mAh; 3.7V\", 'description_long' => \"From our expanded online assortment; compatible with HTC Diamond Victor, Fuze, Raphael, Touch Pro, Touch Pro PPC-6850 and TyTn III mobile phones; lithium-ion; 1340 mAh; 3.7V\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-most-htc-mobile-phones-black/1414825.p?id=1218257002453&skuId=1414825', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1414825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1414\\/1414825_sa.jpg\"}', 'upc' => '029521842173', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Polymer Battery - Black\", 'description_short' => \"From our expanded online assortment; compatible with HTC Mogul, P3600, P3600i, P4000, P6300, P6500, Orange SPV M700, Sprint Mogul PPC-6800 and Swisscom XPA v1510 mobile phones; Lithium-polymer; 1500 mAh; 3.7V\", 'description_long' => \"From our expanded online assortment; compatible with HTC Mogul, P3600, P3600i, P4000, P6300, P6500, Orange SPV M700, Sprint Mogul PPC-6800 and Swisscom XPA v1510 mobile phones; Lithium-polymer; 1500 mAh; 3.7V\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-polymer-battery-black/1414834.p?id=1218256564139&skuId=1414834', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1414834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1414\\/1414834_sa.jpg\"}', 'upc' => '029521562446', 'provider' => 'bestbuy'],\n ['name' => \"Brother - Personal Electronic Labeler - Gray\", 'description_short' => \"Prints up to 2 lines of text on 3/8&quot; or 1/2&quot; nonlaminated labels; 7 framing options and 8 type styles; up to 173 symbols; 12-character LCD display\", 'description_long' => \"Prints up to 2 lines of text on 3/8&quot; or 1/2&quot; nonlaminated labels; 7 framing options and 8 type styles; up to 173 symbols; 12-character LCD display\", 'price' => 29.99, 'sale_price' => 28.99, 'url' => 'http://www.bestbuy.com/site/brother-personal-electronic-labeler-gray/1414989.p?id=1218256568562&skuId=1414989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1414989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1414\\/1414989_sa.jpg\"}', 'upc' => '012502623304', 'provider' => 'bestbuy'],\n ['name' => \"Hatsune Miku: Project DIVA F 2nd - PRE-OWNED - PlayStation 3\", 'description_short' => \"Play along to classic and brand-new tracks with the world&#039;s most popular digital singer\", 'description_long' => \"Play along to classic and brand-new tracks with the world&#039;s most popular digital singer\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hatsune-miku-project-diva-f-2nd-pre-owned-playstation-3/1415067.p?id=1219492696015&skuId=1415067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1415067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1415\\/1415067_sa.jpg\"}', 'upc' => '799007841135', 'provider' => 'bestbuy'],\n ['name' => \"36 Seasons [Only @ Best Buy] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/36-seasons-only--best-buy-cd/1415076.p?id=3318030&skuId=1415076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1415076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1415\\/1415076_sa.jpg\"}', 'upc' => '661868180329', 'provider' => 'bestbuy'],\n ['name' => \"Blues Alive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-alive-cd/1415604.p?id=2387668&skuId=1415604&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1415604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1415\\/1415604.jpg\"}', 'upc' => '077778779827', 'provider' => 'bestbuy'],\n ['name' => \"Tommy Flanagan Trio [1960] [OJC Reissue] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tommy-flanagan-trio-1960-ojc-reissue-cd/1415800.p?id=66364&skuId=1415800&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1415800', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1415\\/1415800.jpg\"}', 'upc' => '025218618229', 'provider' => 'bestbuy'],\n ['name' => \"Alpine - 6-1/2\\\" 2-Way Coaxial Car Speakers with Polypropylene Cones (Pair) - Black\", 'description_short' => \"Handles up to 240 watts peak power (60 watts RMS); 6-1/2&quot; mica-injected polypropylene cone\", 'description_long' => \"Handles up to 240 watts peak power (60 watts RMS); 6-1/2&quot; mica-injected polypropylene cone\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alpine-6-1-2-2-way-coaxial-car-speakers-with-polypropylene-cones-pair-black/1416147.p?id=1218256568420&skuId=1416147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416147_sa.jpg\"}', 'upc' => '793276601483', 'provider' => 'bestbuy'],\n ['name' => \"First Issue: The Dinah Washington Story (The... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-issue-the-dinah-washington-story-the-cd/1416168.p?id=71863&skuId=1416168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416168_sa.jpg\"}', 'upc' => '731451484124', 'provider' => 'bestbuy'],\n ['name' => \"Today's Gospel Favorites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/todays-gospel-favorites-cd/1416293.p?id=100188&skuId=1416293&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416293_sa.jpg\"}', 'upc' => '731451485824', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Gold: The Best of Minnie Riperton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-gold-the-best-of-minnie-riperton-cd/1416587.p?id=96732&skuId=1416587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416587_sa.jpg\"}', 'upc' => '077778051626', 'provider' => 'bestbuy'],\n ['name' => \"Barbie in the Nutcracker (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barbie-in-the-nutcracker-dvd/1416632.p?id=38292&skuId=1416632&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416632', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416632_sa.jpg\"}', 'upc' => '025192044069', 'provider' => 'bestbuy'],\n ['name' => \"The Kids Are All Right (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-kids-are-all-right-dvd/1416641.p?id=2154423&skuId=1416641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416641_sa.jpg\"}', 'upc' => '025192066856', 'provider' => 'bestbuy'],\n ['name' => \"Smokey and the Bandit: The 7-Movie Outlaw Collection [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smokey-and-the-bandit-the-7-movie-outlaw-collection-4-discs-dvd/1416687.p?id=2135283&skuId=1416687&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416687', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416687_sa.jpg\"}', 'upc' => '025192051258', 'provider' => 'bestbuy'],\n ['name' => \"Meet the Fockers (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meet-the-fockers-blu-ray-disc/1416696.p?id=1421070&skuId=1416696&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416696_sa.jpg\"}', 'upc' => '025192047381', 'provider' => 'bestbuy'],\n ['name' => \"The Wiz (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wiz-blu-ray-disc/1416732.p?id=48442&skuId=1416732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416732_sa.jpg\"}', 'upc' => '025192067662', 'provider' => 'bestbuy'],\n ['name' => \"Very Best and More - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/very-best-and-more-cd/1416747.p?id=79807&skuId=1416747&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416747_sa.jpg\"}', 'upc' => '042282263827', 'provider' => 'bestbuy'],\n ['name' => \"Meet the Parents (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meet-the-parents-blu-ray-disc/1416769.p?id=45723&skuId=1416769&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416769_sa.jpg\"}', 'upc' => '025192047428', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1416783.p?id=103157&skuId=1416783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416783.jpg\"}', 'upc' => '715187762329', 'provider' => 'bestbuy'],\n ['name' => \"It's a Very Merry Muppet Christmas Movie (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-a-very-merry-muppet-christmas-movie-dvd/1416787.p?id=1323057&skuId=1416787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416787_sa.jpg\"}', 'upc' => '025192049675', 'provider' => 'bestbuy'],\n ['name' => \"The Kids Are All Right (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-kids-are-all-right-blu-ray-disc/1416796.p?id=2154423&skuId=1416796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416796_sa.jpg\"}', 'upc' => '025192066863', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Ella Fitzgerald [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-ella-fitzgerald-curb-cd/1416827.p?id=66279&skuId=1416827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416827_sa.jpg\"}', 'upc' => '715187762022', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-2-cd/1416854.p?id=84671&skuId=1416854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1416854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1416\\/1416854_sa.jpg\"}', 'upc' => '042282414427', 'provider' => 'bestbuy'],\n ['name' => \"Na'auao [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naauao-digipak-cd/1417003.p?id=2739910&skuId=1417003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1417003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1417\\/1417003_sa.jpg\"}', 'upc' => '761268217127', 'provider' => 'bestbuy'],\n ['name' => \"Joseph and the Amazing Technicolor Dreamcoat... - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joseph-and-the-amazing-technicolor-dreamcoat-cd-original-cast-recording/1417087.p?id=87416&skuId=1417087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1417087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1417\\/1417087_sa.jpg\"}', 'upc' => '731451935220', 'provider' => 'bestbuy'],\n ['name' => \"Sons of Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sons-of-soul-cd/1417498.p?id=101976&skuId=1417498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1417498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1417\\/1417498_sa.jpg\"}', 'upc' => '731451493324', 'provider' => 'bestbuy'],\n ['name' => \"You Better Ask Somebody [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-better-ask-somebody-pa-cd/1417513.p?id=105019&skuId=1417513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1417513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1417\\/1417513.jpg\"}', 'upc' => '075679225221', 'provider' => 'bestbuy'],\n ['name' => \"Memorial Beach - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memorial-beach-cd/1417568.p?id=72291&skuId=1417568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1417568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1417\\/1417568_sa.jpg\"}', 'upc' => '093624522928', 'provider' => 'bestbuy'],\n ['name' => \"Unplugged - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unplugged-cd/1417666.p?id=105081&skuId=1417666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1417666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1417\\/1417666_sa.jpg\"}', 'upc' => '093624531029', 'provider' => 'bestbuy'],\n ['name' => \"You Might Be a Redneck If... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-might-be-a-redneck-if-cd/1417728.p?id=82796&skuId=1417728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1417728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1417\\/1417728_sa.jpg\"}', 'upc' => '093624531425', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - 4-Port USB 2.0 Hub - Black\", 'description_short' => \"Compatible with most devices with USB 2.0 connectivity; expands 1 USB 2.0 port into 4; 5V, 500 mA/port output; data transfer speeds up to 480 Mbps; USB-powered design; plug-and-play operation\", 'description_long' => \"Compatible with most devices with USB 2.0 connectivity; expands 1 USB 2.0 port into 4; 5V, 500 mA/port output; data transfer speeds up to 480 Mbps; USB-powered design; plug-and-play operation\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-4-port-usb-2-0-hub-black/1418028.p?id=1219492676127&skuId=1418028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418028_sa.jpg\"}', 'upc' => '600603185434', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - 4-Port USB 2.0 Hub - Black\", 'description_short' => \"Compatible with most devices with USB 2.0 connectivity; expands 1 USB 2.0 port into 4; 5V, 500 mA/port output; data transfer speeds up to 480 Mbps; plug-and-play operation\", 'description_long' => \"Compatible with most devices with USB 2.0 connectivity; expands 1 USB 2.0 port into 4; 5V, 500 mA/port output; data transfer speeds up to 480 Mbps; plug-and-play operation\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-4-port-usb-2-0-hub-black/1418037.p?id=1219492676126&skuId=1418037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418037_sa.jpg\"}', 'upc' => '600603185441', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Hitachi and Panasonic Camcorders - Dark Gray\", 'description_short' => \"Compatible with select Hitachi and Panasonic camcorders; 7.2V and 4000 mAh\", 'description_long' => \"Compatible with select Hitachi and Panasonic camcorders; 7.2V and 4000 mAh\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-hitachi-and-panasonic-camcorders-dark-gray/1418118.p?id=1218256954728&skuId=1418118', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418118_rc.jpg\"}', 'upc' => '029521227000', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Most HTC Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with HTC Dopod P3450, P3650, P860, Polaris 100, O2 Xda Orbit 2, Touch Cruise and Vox S710 mobile phones\", 'description_long' => \"From our expanded online assortment; compatible with HTC Dopod P3450, P3650, P860, Polaris 100, O2 Xda Orbit 2, Touch Cruise and Vox S710 mobile phones\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-most-htc-mobile-phones-black/1418181.p?id=1218256949445&skuId=1418181', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418181_sa.jpg\"}', 'upc' => '029521562675', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Panasonic Digital Cameras - Dark Gray\", 'description_short' => \"Compatible with select Panasonic digital cameras; 7.2V and 1500 mAh\", 'description_long' => \"Compatible with select Panasonic digital cameras; 7.2V and 1500 mAh\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-panasonic-digital-cameras-dark-gray/1418233.p?id=1218256948502&skuId=1418233', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418233_rc.jpg\"}', 'upc' => '029521556254', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Most PDAs - Black\", 'description_short' => \"From our expanded online assortment; compatible with Audiovox SMT 5600, Dopod 310, 565, 566, 575, 577W, 586, 586W, ST26C, I-Mate SP3, SP3i, O2 ST26B, O2 Xphone II, O2 Xphone IIm and Orange SPV C500 PDAs\", 'description_long' => \"From our expanded online assortment; compatible with Audiovox SMT 5600, Dopod 310, 565, 566, 575, 577W, 586, 586W, ST26C, I-Mate SP3, SP3i, O2 ST26B, O2 Xphone II, O2 Xphone IIm and Orange SPV C500 PDAs\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-most-pdas-black/1418242.p?id=1218256948187&skuId=1418242', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418242_sa.jpg\"}', 'upc' => '029521836486', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Most HTC Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with select HTC mobile phones; 3.7V power; 1300 mAh rating\", 'description_long' => \"From our expanded online assortment; compatible with select HTC mobile phones; 3.7V power; 1300 mAh rating\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-most-htc-mobile-phones-black/1418251.p?id=1218256943931&skuId=1418251', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418251_sa.jpg\"}', 'upc' => '029521843859', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Polymer Battery for Most HTC and HP Devices - Silver\", 'description_short' => \"From our expanded online assortment; 3.7V power; 1200 mAh rating; compatible with select HTC, Magician and I-Mate mobile phones\", 'description_long' => \"From our expanded online assortment; 3.7V power; 1200 mAh rating; compatible with select HTC, Magician and I-Mate mobile phones\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-polymer-battery-for-most-htc-and-hp-devices-silver/1418297.p?id=1218256945999&skuId=1418297', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418297_sa.jpg\"}', 'upc' => '029521836523', 'provider' => 'bestbuy'],\n ['name' => \"1929-1940 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1929-1940-cd/1418317.p?id=1469068&skuId=1418317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418317.jpg\"}', 'upc' => '750582788925', 'provider' => 'bestbuy'],\n ['name' => \"1938-1940 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1938-1940-cd/1418362.p?id=1459595&skuId=1418362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418362.jpg\"}', 'upc' => '750582789021', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Polymer Battery - Black\", 'description_short' => \"From our expanded online assortment; compatible with Dopod 696i, Dopod 699, I-Mate Pocket PC, O2 XDA II, O2 XDA IIi, Orange SPV M1000, Qtek 2020 and T-Mobile MDA II mobile phones; lithium-polymer; 1400 mAh; 3.7V\", 'description_long' => \"From our expanded online assortment; compatible with Dopod 696i, Dopod 699, I-Mate Pocket PC, O2 XDA II, O2 XDA IIi, Orange SPV M1000, Qtek 2020 and T-Mobile MDA II mobile phones; lithium-polymer; 1400 mAh; 3.7V\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-polymer-battery-black/1418427.p?id=1218256951279&skuId=1418427', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418427_sa.jpg\"}', 'upc' => '029521836530', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Polymer Battery - Black\", 'description_short' => \"From our expanded online assortment; compatible with HTC TyTN HERM 200, Cingular 8525, Mogul 6700, TyTN, Apache XV6700, I-Mate JASJAM and T-Mobile MDA VARIO II mobile phones; lithium-polymer; 1350 mAh; 3.7V\", 'description_long' => \"From our expanded online assortment; compatible with HTC TyTN HERM 200, Cingular 8525, Mogul 6700, TyTN, Apache XV6700, I-Mate JASJAM and T-Mobile MDA VARIO II mobile phones; lithium-polymer; 1350 mAh; 3.7V\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-polymer-battery-black/1418445.p?id=1218256950971&skuId=1418445', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418445_sa.jpg\"}', 'upc' => '029521557923', 'provider' => 'bestbuy'],\n ['name' => \"Der Kramerspiegel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/der-kramerspiegel-cd/1418567.p?id=1784538&skuId=1418567&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418567', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418567.jpg\"}', 'upc' => '750582816222', 'provider' => 'bestbuy'],\n ['name' => \"Waldesrauschen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waldesrauschen-cd/1418585.p?id=1784539&skuId=1418585&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418585', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418585.jpg\"}', 'upc' => '750582816420', 'provider' => 'bestbuy'],\n ['name' => \"Romantic Finnish Piano Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/romantic-finnish-piano-music-cd/1418601.p?id=1757438&skuId=1418601&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418601', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582816826', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Kyocera Contax Digital Cameras - Black\", 'description_short' => \"Compatible with select Kyocera Contax digital cameras; 3.7V and 1100 mAh\", 'description_long' => \"Compatible with select Kyocera Contax digital cameras; 3.7V and 1100 mAh\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-kyocera-contax-digital-cameras-black/1418603.p?id=1218256949516&skuId=1418603', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418603', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418603_rc.jpg\"}', 'upc' => '029521835441', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Most Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with select T-Mobile, HTC and NTT mobile phones; 3.7V of power; 1120 mAh capacity\", 'description_long' => \"From our expanded online assortment; compatible with select T-Mobile, HTC and NTT mobile phones; 3.7V of power; 1120 mAh capacity\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-most-mobile-phones-black/1418712.p?id=1218256952140&skuId=1418712', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418712', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418712_sa.jpg\"}', 'upc' => '029521562682', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Digital Cameras - Ivory\", 'description_short' => \"Compatible with select digital cameras; 6V and 600 mAh\", 'description_long' => \"Compatible with select digital cameras; 6V and 600 mAh\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-digital-cameras-ivory/1418749.p?id=1218256949587&skuId=1418749', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418749_rc.jpg\"}', 'upc' => '029521834154', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for HTC Mobile Phones - Black\", 'description_short' => \"From our expanded online assortment; compatible with select HTC mobile phones; 3.7V power; 900 mAh capacity\", 'description_long' => \"From our expanded online assortment; compatible with select HTC mobile phones; 3.7V power; 900 mAh capacity\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-htc-mobile-phones-black/1418785.p?id=1218256955441&skuId=1418785', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418785_sa.jpg\"}', 'upc' => '029521842036', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Olympus Digital Cameras - Light Brown\", 'description_short' => \"Compatible with select Olympus digital cameras; 3.6V and 645 mAh\", 'description_long' => \"Compatible with select Olympus digital cameras; 3.6V and 645 mAh\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-olympus-digital-cameras-light-brown/1418794.p?id=1218256944747&skuId=1418794', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418794_rc.jpg\"}', 'upc' => '029521833843', 'provider' => 'bestbuy'],\n ['name' => \"Oro Salsero - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oro-salsero-cd/1418821.p?id=2158383&skuId=1418821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418821_sa.jpg\"}', 'upc' => '602527513003', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1418849.p?id=2184317&skuId=1418849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418849_sa.jpg\"}', 'upc' => '602527499284', 'provider' => 'bestbuy'],\n ['name' => \"Live in Berlin [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-berlin-cd-dvd-digipak-cd-dvd/1418858.p?id=2159883&skuId=1418858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418858.jpg\"}', 'upc' => '602527530970', 'provider' => 'bestbuy'],\n ['name' => \"Oro Salsero - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oro-salsero-cd/1418867.p?id=2158384&skuId=1418867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418867_sa.jpg\"}', 'upc' => '602527512891', 'provider' => 'bestbuy'],\n ['name' => \"Meet the Orphans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meet-the-orphans-cd/1418876.p?id=2152016&skuId=1418876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418876_sa.jpg\"}', 'upc' => '602527531069', 'provider' => 'bestbuy'],\n ['name' => \"Meet the Orphans [Deluxe Edition] [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meet-the-orphans-deluxe-edition-cd-dvd-cd-dvd-deluxe-edition/1418903.p?id=2152015&skuId=1418903&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418903_sa.jpg\"}', 'upc' => '602527531052', 'provider' => 'bestbuy'],\n ['name' => \"Sting: Live in Berlin - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sting-live-in-berlin-blu-ray-disc/1418976.p?id=2163560&skuId=1418976&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418976', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418976_sa.jpg\"}', 'upc' => '602527530987', 'provider' => 'bestbuy'],\n ['name' => \"Desmond: Here I Am - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/desmond-here-i-am-cd/1418978.p?id=65665&skuId=1418978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418978_sa.jpg\"}', 'upc' => '025218671224', 'provider' => 'bestbuy'],\n ['name' => \"Oro Salsero 2CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oro-salsero-2cd/1418994.p?id=2163514&skuId=1418994&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1418994', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1418\\/1418994_sa.jpg\"}', 'upc' => '602527468112', 'provider' => 'bestbuy'],\n ['name' => \"Oro Salsero - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oro-salsero-cd/1419065.p?id=2163524&skuId=1419065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1419065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1419\\/1419065_sa.jpg\"}', 'upc' => '602527471211', 'provider' => 'bestbuy'],\n ['name' => \"Crossroads Guitar Festival 2010 (2 Discs) - Blu-ray Disc - (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crossroads-guitar-festival-2010-2-discs-blu-ray-disc-2-disc/1419596.p?id=2135562&skuId=1419596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1419596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1419\\/1419596_sa.jpg\"}', 'upc' => '603497948727', 'provider' => 'bestbuy'],\n ['name' => \"Sony - Cybershot RX1R 24.3-Megapixel Digital Camera - Black\", 'description_short' => \"Up to 9.1x digital zoom3&quot; Xtra Fine TFT-LCD monitorFull HD 24p movie modeFull-resolution 5 fps burst-mode shooting\", 'description_long' => \"Up to 9.1x digital zoom3&quot; Xtra Fine TFT-LCD monitorFull HD 24p movie modeFull-resolution 5 fps burst-mode shooting\", 'price' => 2799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-cybershot-rx1r-24-3-megapixel-digital-camera-black/1419657.p?id=1219051763099&skuId=1419657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1419657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1419\\/1419657_sa.jpg\"}', 'upc' => '027242871298', 'provider' => 'bestbuy'],\n ['name' => \"Rabbids Invasion: The Interactive TV Show - PRE-OWNED - PlayStation 4\", 'description_short' => \"Get ready Bwaah-some fun with the wacky Rabbids\", 'description_long' => \"Get ready Bwaah-some fun with the wacky Rabbids\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rabbids-invasion-the-interactive-tv-show-pre-owned-playstation-4/1420004.p?id=1219494268646&skuId=1420004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420004_sa.jpg\"}', 'upc' => '799007841142', 'provider' => 'bestbuy'],\n ['name' => \"Sony - Cyber-shot RX100 II 20.2-Megapixel Digital Camera - Black\", 'description_short' => \"3.6x optical zoom/up to 54x digital zoom3&quot; Xtra Fine TFT-LCD monitorFull HD 24p movie modeWi-Fi support\", 'description_long' => \"3.6x optical zoom/up to 54x digital zoom3&quot; Xtra Fine TFT-LCD monitorFull HD 24p movie modeWi-Fi support\", 'price' => 649.99, 'sale_price' => 579.99, 'url' => 'http://www.bestbuy.com/site/sony-cyber-shot-rx100-ii-20-2-megapixel-digital-camera-black/1420007.p?id=1219051767919&skuId=1420007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420007_sa.jpg\"}', 'upc' => '027242870802', 'provider' => 'bestbuy'],\n ['name' => \"Amped Wireless - High Power 700mW Dual Band AC Wi-Fi Router - Black\", 'description_short' => \"Up to 867 Mbps data transfer rates at 5.0GHz (up to 300 Mbps at 2.4GHz); 10 high-power amplifiers; 3 high-gain antennas; 5 Gigabit wired ports; USB 2.0 storage sharing port\", 'description_long' => \"Up to 867 Mbps data transfer rates at 5.0GHz (up to 300 Mbps at 2.4GHz); 10 high-power amplifiers; 3 high-gain antennas; 5 Gigabit wired ports; USB 2.0 storage sharing port\", 'price' => 159.99, 'sale_price' => 129.99, 'url' => 'http://www.bestbuy.com/site/amped-wireless-high-power-700mw-dual-band-ac-wi-fi-router-black/1420016.p?id=1219051768254&skuId=1420016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420016_sa.jpg\"}', 'upc' => '850214003478', 'provider' => 'bestbuy'],\n ['name' => \"Con La Mente en Blanco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/con-la-mente-en-blanco-cd/1420098.p?id=2157310&skuId=1420098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420098_sa.jpg\"}', 'upc' => '801472161325', 'provider' => 'bestbuy'],\n ['name' => \"From Death to Destiny - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-death-to-destiny-cd/1420177.p?id=2725058&skuId=1420177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420177_sa.jpg\"}', 'upc' => '817424012836', 'provider' => 'bestbuy'],\n ['name' => \"Didn't It Rain [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/didnt-it-rain-digipak-cd/1420274.p?id=2724356&skuId=1420274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420274_sa.jpg\"}', 'upc' => '825646437610', 'provider' => 'bestbuy'],\n ['name' => \"Prince Avalanche [Original Motion Picture... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prince-avalanche-original-motion-picture-cd/1420371.p?id=2729479&skuId=1420371&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420371_sa.jpg\"}', 'upc' => '656605322223', 'provider' => 'bestbuy'],\n ['name' => \"Bring You Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bring-you-back-cd/1420399.p?id=2724401&skuId=1420399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420399_sa.jpg\"}', 'upc' => '075678899447', 'provider' => 'bestbuy'],\n ['name' => \"The Wild Feathers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wild-feathers-cd/1420404.p?id=2719497&skuId=1420404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420404_sa.jpg\"}', 'upc' => '093624942955', 'provider' => 'bestbuy'],\n ['name' => \"Self Made, Vol. 3 [PA] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/self-made-vol-3-pa-cd-various/1420413.p?id=2724385&skuId=1420413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420413_sa.jpg\"}', 'upc' => '075678684159', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Blackhawk 12 x 42 Waterproof Binoculars - Mossy Oak\", 'description_short' => \"12x magnification; waterproof/fog-proof construction; 42mm objective lenses; BaK-4 roof prisms; fully coated optics\", 'description_long' => \"12x magnification; waterproof/fog-proof construction; 42mm objective lenses; BaK-4 roof prisms; fully coated optics\", 'price' => 104.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-blackhawk-12-x-42-waterproof-binoculars-mossy-oak/1420422.p?id=1219051764930&skuId=1420422', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420422_rc.jpg\"}', 'upc' => '790272983728', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Biometric Wall Safe - Black\", 'description_short' => \"Fingerprint control with 120-user memory; 2 solid-steel motorized locking bolts; steel construction; predrilled holes\", 'description_long' => \"Fingerprint control with 120-user memory; 2 solid-steel motorized locking bolts; steel construction; predrilled holes\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-biometric-wall-safe-black/1420431.p?id=1219051768755&skuId=1420431', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420431_sa.jpg\"}', 'upc' => '790272984657', 'provider' => 'bestbuy'],\n ['name' => \"Walking Dead: Season 3 (BBY Exclusive) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-dead-season-3-bby-exclusive-blu-ray-disc/1420459.p?id=2728384&skuId=1420459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1420459.jpg\"}', 'upc' => '013132609621', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Large Biometric Safe - Black\", 'description_short' => \"2nd generation biometric fingerprint technology with 120-user memory; 3-point solid-steel locking bolts; steel construction; predrilled anchor points\", 'description_long' => \"2nd generation biometric fingerprint technology with 120-user memory; 3-point solid-steel locking bolts; steel construction; predrilled anchor points\", 'price' => 279.99, 'sale_price' => 260.99, 'url' => 'http://www.bestbuy.com/site/barska-large-biometric-safe-black/1420468.p?id=1219051764672&skuId=1420468', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420468_sa.jpg\"}', 'upc' => '790272982660', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Large Biometric Keypad Safe - Black\", 'description_short' => \"Biometric fingerprint scanning technology; keypad; deadbolt locking system; removable storage shelf; steel construction\", 'description_long' => \"Biometric fingerprint scanning technology; keypad; deadbolt locking system; removable storage shelf; steel construction\", 'price' => 259.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-large-biometric-keypad-safe-black/1420477.p?id=1219051761779&skuId=1420477', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420477_sa.jpg\"}', 'upc' => '790272982653', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Blackhawk 10 x 40 Waterproof Monocular\", 'description_short' => \"10x magnification; waterproof/fog-proof construction; multicoated optics; roof prism\", 'description_long' => \"10x magnification; waterproof/fog-proof construction; multicoated optics; roof prism\", 'price' => 49.99, 'sale_price' => 47.99, 'url' => 'http://www.bestbuy.com/site/barska-blackhawk-10-x-40-waterproof-monocular/1420486.p?id=1219051765009&skuId=1420486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420486_rc.jpg\"}', 'upc' => '790272984671', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Blackhawk 10 x 25 Waterproof Monocular - Black\", 'description_short' => \"10x magnification; waterproof/fog-proof construction; multicoated optics; roof prism\", 'description_long' => \"10x magnification; waterproof/fog-proof construction; multicoated optics; roof prism\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-blackhawk-10-x-25-waterproof-monocular-black/1420501.p?id=1219051763622&skuId=1420501', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420501_rc.jpg\"}', 'upc' => '790272984664', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Battalion 7 x 32 Monocular\", 'description_short' => \"7x magnification; water-resistant construction; 32mm objective lens; BaK-4 roof prism; fully multicoated optics\", 'description_long' => \"7x magnification; water-resistant construction; 32mm objective lens; BaK-4 roof prism; fully multicoated optics\", 'price' => 69.99, 'sale_price' => 54.99, 'url' => 'http://www.bestbuy.com/site/barska-battalion-7-x-32-monocular/1420547.p?id=1219051767791&skuId=1420547', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420547_rc.jpg\"}', 'upc' => '790272984244', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Standard Keypad Depository Safe - Black\", 'description_short' => \"2 solid-steel locking bolts; keypad with 2-digit PIN code retention; steel construction; antifishing baffles and jagged-edge teeth; predrilled hole on bottom and back\", 'description_long' => \"2 solid-steel locking bolts; keypad with 2-digit PIN code retention; steel construction; antifishing baffles and jagged-edge teeth; predrilled hole on bottom and back\", 'price' => 249.99, 'sale_price' => 222.99, 'url' => 'http://www.bestbuy.com/site/barska-standard-keypad-depository-safe-black/1420556.p?id=1219051766675&skuId=1420556', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420556_sa.jpg\"}', 'upc' => '790272984121', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Large Keypad Depository Safe - Black\", 'description_short' => \"2 solid steel locking bolts; keypad with 2-digit PIN code retention; steel construction; antifishing baffles and jagged-edge teeth; predrilled holes on bottom and back\", 'description_long' => \"2 solid steel locking bolts; keypad with 2-digit PIN code retention; steel construction; antifishing baffles and jagged-edge teeth; predrilled holes on bottom and back\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-large-keypad-depository-safe-black/1420565.p?id=1219051763290&skuId=1420565', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420565_sa.jpg\"}', 'upc' => '790272984114', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Biometric Compact Portable Safe - Black\", 'description_short' => \"Fingerprint control with 120-user memory; motorized locking latch; steel construction; compact size; predrilled mounting holes\", 'description_long' => \"Fingerprint control with 120-user memory; motorized locking latch; steel construction; compact size; predrilled mounting holes\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-biometric-compact-portable-safe-black/1420583.p?id=1219051766486&skuId=1420583', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420583_sa.jpg\"}', 'upc' => '790272984312', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Tripod Adapter for Select Binoculars\", 'description_short' => \"Compatible with most binoculars that are equipped with adapter screws; for use with tripod or window mounts; solid, sturdy design\", 'description_long' => \"Compatible with most binoculars that are equipped with adapter screws; for use with tripod or window mounts; solid, sturdy design\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-tripod-adapter-for-select-binoculars/1420592.p?id=1219051764409&skuId=1420592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420592_500x500_sa.jpg\"}', 'upc' => '790272977185', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Blackhawk 10 x 42 Waterproof Binoculars - Mossy Oak Break-Up\", 'description_short' => \"10x magnification; waterproof/fog-proof construction; 42mm objective lenses; BaK-4 roof and Banwu prisms; multicoated optics; diamond-cut grip\", 'description_long' => \"10x magnification; waterproof/fog-proof construction; 42mm objective lenses; BaK-4 roof and Banwu prisms; multicoated optics; diamond-cut grip\", 'price' => 94.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-blackhawk-10-x-42-waterproof-binoculars-mossy-oak-break-up/1420608.p?id=1219051764543&skuId=1420608', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420608_rc.jpg\"}', 'upc' => '790272983742', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Key Safe with Key Lock - Black\", 'description_short' => \"Holds up to 200 keys; key lock; labeled key shelves; hooks; log sheet; steel construction\", 'description_long' => \"Holds up to 200 keys; key lock; labeled key shelves; hooks; log sheet; steel construction\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-key-safe-with-key-lock-black/1420617.p?id=1219051768458&skuId=1420617', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420617_sa.jpg\"}', 'upc' => '790272983575', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Blackhawk 10 x 25 Waterproof Binoculars - Black\", 'description_short' => \"10x magnification; waterproof/fog-proof construction; 25mm objective lenses; BaK-4 roof prisms; fully coated optics; diamond-cut grip\", 'description_long' => \"10x magnification; waterproof/fog-proof construction; 25mm objective lenses; BaK-4 roof prisms; fully coated optics; diamond-cut grip\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-blackhawk-10-x-25-waterproof-binoculars-black/1420626.p?id=1219051765764&skuId=1420626', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420626_rc.jpg\"}', 'upc' => '790272983674', 'provider' => 'bestbuy'],\n ['name' => \"Barska - 6.0MP Trail Camera - Brown\", 'description_short' => \"1.5&quot; color screenAdjustable camera and video resolution and PIR sensitivityWater-resistant casing28 infrared LEDs\", 'description_long' => \"1.5&quot; color screenAdjustable camera and video resolution and PIR sensitivityWater-resistant casing28 infrared LEDs\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-6-0mp-trail-camera-brown/1420644.p?id=1219051767666&skuId=1420644', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420644_sa.jpg\"}', 'upc' => '790272983216', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Blueline 8 x 21 Binoculars - Silver\", 'description_short' => \"8x magnification; 21mm diameter; BK-7 Porro prisms; fully coated optics\", 'description_long' => \"8x magnification; 21mm diameter; BK-7 Porro prisms; fully coated optics\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-blueline-8-x-21-binoculars-silver/1420653.p?id=1219051765068&skuId=1420653', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420653_rc.jpg\"}', 'upc' => '790272982295', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Compact Keypad Depository Safe - Black\", 'description_short' => \"2 solid steel locking bolts; keypad with 2-digit PIN code retention; steel construction; compact size; access slot; predrilled hole on bottom and back\", 'description_long' => \"2 solid steel locking bolts; keypad with 2-digit PIN code retention; steel construction; compact size; access slot; predrilled hole on bottom and back\", 'price' => 89.99, 'sale_price' => 77.99, 'url' => 'http://www.bestbuy.com/site/barska-compact-keypad-depository-safe-black/1420662.p?id=1219051763488&skuId=1420662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420662_sa.jpg\"}', 'upc' => '790272984138', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Fireproof Digital Keypad Safe - Black\", 'description_short' => \"Digital entry; 2-digit PIN code retention; shelf; solid steel construction; fireproof design; powdercoat interior and exterior; tamper-proof hinges\", 'description_long' => \"Digital entry; 2-digit PIN code retention; shelf; solid steel construction; fireproof design; powdercoat interior and exterior; tamper-proof hinges\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-fireproof-digital-keypad-safe-black/1420699.p?id=1219051765829&skuId=1420699', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420699_sa.jpg\"}', 'upc' => '790272983995', 'provider' => 'bestbuy'],\n ['name' => \"Barska - 6-18 x 21 Binoculars - Pink\", 'description_short' => \"6-18x magnification; 21mm diameter; BK-7 Porro prisms; FC lens coating\", 'description_long' => \"6-18x magnification; 21mm diameter; BK-7 Porro prisms; FC lens coating\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-6-18-x-21-binoculars-pink/1420726.p?id=1219051766942&skuId=1420726', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420726_rc.jpg\"}', 'upc' => '790272981892', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Battalion 10-25 x 42 Monocular\", 'description_short' => \"10-25x magnification; 42mm objective lens; BaK-4 prism\", 'description_long' => \"10-25x magnification; 42mm objective lens; BaK-4 prism\", 'price' => 99.99, 'sale_price' => 88.99, 'url' => 'http://www.bestbuy.com/site/barska-battalion-10-25-x-42-monocular/1420735.p?id=1219051761782&skuId=1420735', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420735', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420735_rc.jpg\"}', 'upc' => '790272984688', 'provider' => 'bestbuy'],\n ['name' => \"Barska - 11-44 x 50 Waterproof Tactical Spotting Scope - Black\", 'description_short' => \"11-44x magnification; waterproof/fog-proof construction; 50mm objective lens; fully multicoated BK-7 optics; Porro prism design\", 'description_long' => \"11-44x magnification; waterproof/fog-proof construction; 50mm objective lens; fully multicoated BK-7 optics; Porro prism design\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-11-44-x-50-waterproof-tactical-spotting-scope-black/1420744.p?id=1219051765264&skuId=1420744', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420744_rc.jpg\"}', 'upc' => '790272980178', 'provider' => 'bestbuy'],\n ['name' => \"The Company You Keep (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-company-you-keep-blu-ray-disc-ultraviolet-digital-copy/1420817.p?id=2720878&skuId=1420817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420817_sa.jpg\"}', 'upc' => '043396423305', 'provider' => 'bestbuy'],\n ['name' => \"Olympus Has Fallen (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/olympus-has-fallen-blu-ray-disc-2-disc-ultraviolet-digital-copy/1420826.p?id=2726238&skuId=1420826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420826.jpg\"}', 'upc' => '043396425972', 'provider' => 'bestbuy'],\n ['name' => \"Amour (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amour-blu-ray-disc/1420835.p?id=2720310&skuId=1420835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420835_sa.jpg\"}', 'upc' => '043396417359', 'provider' => 'bestbuy'],\n ['name' => \"The Company You Keep (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-company-you-keep-dvd-ultraviolet-digital-copy/1420844.p?id=2720878&skuId=1420844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420844_sa.jpg\"}', 'upc' => '043396423336', 'provider' => 'bestbuy'],\n ['name' => \"Amour (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amour-dvd/1420853.p?id=2720310&skuId=1420853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420853_sa.jpg\"}', 'upc' => '043396417380', 'provider' => 'bestbuy'],\n ['name' => \"Zambezia (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zambezia-blu-ray-disc-2-disc/1420862.p?id=2713762&skuId=1420862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420862_sa.jpg\"}', 'upc' => '043396416000', 'provider' => 'bestbuy'],\n ['name' => \"Olympus Has Fallen (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/olympus-has-fallen-dvd-ultraviolet-digital-copy/1420871.p?id=2726238&skuId=1420871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420871.jpg\"}', 'upc' => '043396426009', 'provider' => 'bestbuy'],\n ['name' => \"Niles - 12-Channel Power Amplifier - Black\", 'description_short' => \"Multizone capability; 12 fully configurable channels; BusMatrix selector; PCB construction; rack-mountable design\", 'description_long' => \"Multizone capability; 12 fully configurable channels; BusMatrix selector; PCB construction; rack-mountable design\", 'price' => 1524.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/niles-12-channel-power-amplifier-black/1420944.p?id=1219051763229&skuId=1420944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420944_sa.jpg\"}', 'upc' => '760514017047', 'provider' => 'bestbuy'],\n ['name' => \"Niles - 2-Channel Bridgeable Power Amplifier - Black\", 'description_short' => \"2 bridgeable channels; independent level controls; independent power supply; rack-mountable design\", 'description_long' => \"2 bridgeable channels; independent level controls; independent power supply; rack-mountable design\", 'price' => 649.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/niles-2-channel-bridgeable-power-amplifier-black/1420953.p?id=1219051764213&skuId=1420953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420953_sa.jpg\"}', 'upc' => '760514017023', 'provider' => 'bestbuy'],\n ['name' => \"Niles - 2-Channel Bridgeable Power Amplifier - Black\", 'description_short' => \"2 bridgeable channels; independent level controls; independent power supply; rack-mountable design\", 'description_long' => \"2 bridgeable channels; independent level controls; independent power supply; rack-mountable design\", 'price' => 474.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/niles-2-channel-bridgeable-power-amplifier-black/1420962.p?id=1219051766744&skuId=1420962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420962_sa.jpg\"}', 'upc' => '760514017016', 'provider' => 'bestbuy'],\n ['name' => \"Niles - 2-Channel Bridgeable Power Amplifier - Black\", 'description_short' => \"2 bridgeable channels; independent level controls; independent power supply; rack-mountable design\", 'description_long' => \"2 bridgeable channels; independent level controls; independent power supply; rack-mountable design\", 'price' => 824.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/niles-2-channel-bridgeable-power-amplifier-black/1420971.p?id=1219051764278&skuId=1420971&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1420971', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1420\\/1420971_sa.jpg\"}', 'upc' => '760514017030', 'provider' => 'bestbuy'],\n ['name' => \"Dragon Age: Inquisition - PRE-OWNED - Xbox One\", 'description_short' => \"Band together with legendary heroes to do battle in a breathtaking open world\", 'description_long' => \"Band together with legendary heroes to do battle in a breathtaking open world\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragon-age-inquisition-pre-owned-xbox-one/1421003.p?id=1219494263695&skuId=1421003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1421\\/1421003_sa.jpg\"}', 'upc' => '799007841159', 'provider' => 'bestbuy'],\n ['name' => \"  - Gears of War 2: All Fronts Collection (Downloadable Content)\", 'description_short' => \"Battle back roadblocks on an all-new mission\", 'description_long' => \"Battle back roadblocks on an all-new mission\", 'price' => 10, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/-gears-of-war-2-all-fronts-collection-downloadable-content/1421088.p?id=1218257756528&skuId=1421088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1421\\/1421088_sc.jpg\"}', 'upc' => '400014210882', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Deeds (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-deeds-blu-ray-disc/1421103.p?id=62920&skuId=1421103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1421\\/1421103_sa.jpg\"}', 'upc' => '043396362826', 'provider' => 'bestbuy'],\n ['name' => \"Big Daddy (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-daddy-blu-ray-disc/1421121.p?id=49771&skuId=1421121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1421\\/1421121_sa.jpg\"}', 'upc' => '043396258068', 'provider' => 'bestbuy'],\n ['name' => \"Chuggington: Chug Patrol - Ready To Rescue (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chuggington-chug-patrol-ready-to-rescue-dvd/1421246.p?id=2715772&skuId=1421246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1421246.jpg\"}', 'upc' => '013132601533', 'provider' => 'bestbuy'],\n ['name' => \"Duck Dynasty: Season 3 [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duck-dynasty-season-3-2-discs-dvd/1421255.p?id=2711335&skuId=1421255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1421\\/1421255_sa.jpg\"}', 'upc' => '031398173199', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Pawn Stars: Greatest Stories Ever Sold (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-pawn-stars-greatest-stories-ever-sold-dvd/1421264.p?id=2719478&skuId=1421264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1421\\/1421264.jpg\"}', 'upc' => '031398171874', 'provider' => 'bestbuy'],\n ['name' => \"Blue Rhino - UniFlame Grill Boss Charcoal Grill - Black\", 'description_short' => \"177 sq. in. main cooking area; 83 sq. in. warming area; dual vents; porcelain-coated cooking grid\", 'description_long' => \"177 sq. in. main cooking area; 83 sq. in. warming area; dual vents; porcelain-coated cooking grid\", 'price' => 45.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-rhino-uniflame-grill-boss-charcoal-grill-black/1421343.p?id=1219051761778&skuId=1421343', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1421\\/1421343_rc.jpg\"}', 'upc' => '728649730033', 'provider' => 'bestbuy'],\n ['name' => \"Blue Rhino - UniFlame LP Gas Grill - Black\", 'description_short' => \"Push button ignition; 15,000 BTU burner; 294 sq. in. porcelain-coated-steel cooking grid; porcelain-coated locking\", 'description_long' => \"Push button ignition; 15,000 BTU burner; 294 sq. in. porcelain-coated-steel cooking grid; porcelain-coated locking\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-rhino-uniflame-lp-gas-grill-black/1421352.p?id=1219051766026&skuId=1421352', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1421\\/1421352_rc.jpg\"}', 'upc' => '728649749783', 'provider' => 'bestbuy'],\n ['name' => \"Blue Rhino - Charcoal Grill - Black\", 'description_short' => \"480 sq. in. cooking surface; 207 sq. in. warming rack; adjustable grid; porcelain-coated-steel hinged lid and cooking grate; bottom storage shelf; folding side shelf with tool holders; ash receiver; wheels\", 'description_long' => \"480 sq. in. cooking surface; 207 sq. in. warming rack; adjustable grid; porcelain-coated-steel hinged lid and cooking grate; bottom storage shelf; folding side shelf with tool holders; ash receiver; wheels\", 'price' => 149.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-rhino-charcoal-grill-black/1421361.p?id=1219051764737&skuId=1421361', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1421\\/1421361_rc.jpg\"}', 'upc' => '728649740100', 'provider' => 'bestbuy'],\n ['name' => \"Blue Rhino - Gas Grill - Black\", 'description_short' => \"Push button ignition; 10,000 BTU burner; 265 sq. in. porcelain-coated cooking grid; 120 sq. in. warming rack; stainless-steel locking lid; carry handle\", 'description_long' => \"Push button ignition; 10,000 BTU burner; 265 sq. in. porcelain-coated cooking grid; 120 sq. in. warming rack; stainless-steel locking lid; carry handle\", 'price' => 74.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-rhino-gas-grill-black/1421398.p?id=1219051764150&skuId=1421398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1421398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1421\\/1421398_rc.jpg\"}', 'upc' => '728649749776', 'provider' => 'bestbuy'],\n ['name' => \"Grand Theft Auto V - PRE-OWNED - PlayStation 4\", 'description_short' => \"Experience streets of Los Santos like never before on a fast-paced crime spree\", 'description_long' => \"Experience streets of Los Santos like never before on a fast-paced crime spree\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grand-theft-auto-v-pre-owned-playstation-4/1422002.p?id=1219494265734&skuId=1422002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1422002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1422\\/1422002_sa.jpg\"}', 'upc' => '799007841166', 'provider' => 'bestbuy'],\n ['name' => \"IT Crowd: The Complete Fourth Season (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/it-crowd-the-complete-fourth-season-dvd/1422041.p?id=2159885&skuId=1422041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1422041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1422\\/1422041_sa.jpg\"}', 'upc' => '030306794495', 'provider' => 'bestbuy'],\n ['name' => \"Joan Rivers: A Piece of Work (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joan-rivers-a-piece-of-work-dvd/1422078.p?id=2154415&skuId=1422078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1422078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1422\\/1422078_sa.jpg\"}', 'upc' => '030306956091', 'provider' => 'bestbuy'],\n ['name' => \"Vengeance (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vengeance-dvd/1422096.p?id=2147702&skuId=1422096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1422096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1422\\/1422096_sa.jpg\"}', 'upc' => '030306954295', 'provider' => 'bestbuy'],\n ['name' => \"Shiva Rea: Fluid Power - Vinyasa Flow Yoga (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shiva-rea-fluid-power-vinyasa-flow-yoga-dvd-2-disc/1422102.p?id=1610802&skuId=1422102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1422102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1422\\/1422102_sa.jpg\"}', 'upc' => '054961884490', 'provider' => 'bestbuy'],\n ['name' => \"Exhale: Core Fusion Bootcamp (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exhale-core-fusion-bootcamp-dvd/1422148.p?id=2092868&skuId=1422148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1422148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1422\\/1422148_sa.jpg\"}', 'upc' => '054961845293', 'provider' => 'bestbuy'],\n ['name' => \"Lafflink's Platinum Comedy Series, Vol. 4: Jeff Dunham (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lafflinks-platinum-comedy-series-vol-4-jeff-dunham-dvd/1422157.p?id=2109350&skuId=1422157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1422157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1422\\/1422157_sa.jpg\"}', 'upc' => '687797131799', 'provider' => 'bestbuy'],\n ['name' => \"Lafflink's Platinum Comedy Series, Vol. 2: George Lopez (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lafflinks-platinum-comedy-series-vol-2-george-lopez-dvd/1422166.p?id=2109367&skuId=1422166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1422166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1422\\/1422166_sa.jpg\"}', 'upc' => '687797131997', 'provider' => 'bestbuy'],\n ['name' => \"Little Big Planet 3 - PRE-OWNED - PlayStation 4\", 'description_short' => \"Join Sackboy and three brand-new friends on a fun-filled journey across the Imagisphere\", 'description_long' => \"Join Sackboy and three brand-new friends on a fun-filled journey across the Imagisphere\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-big-planet-3-pre-owned-playstation-4/1423001.p?id=1219494268724&skuId=1423001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423001_sa.jpg\"}', 'upc' => '799007841173', 'provider' => 'bestbuy'],\n ['name' => \"Michael Jackson: The Experience - PSP\", 'description_short' => \"Performing like the King of Pop is easy as ABC\", 'description_long' => \"Performing like the King of Pop is easy as ABC\", 'price' => 19.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/michael-jackson-the-experience-psp/1423059.p?id=1218257754366&skuId=1423059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423059_sa.jpg\"}', 'upc' => '008888336297', 'provider' => 'bestbuy'],\n ['name' => \"Lenovo - Slot-In Case for Lenovo Ideapad Yoga 2 11 Laptops - Black\", 'description_short' => \"Compatible with Lenovo Ideapad Yoga 2 11 laptops; interchangeable functionality for all viewing modes; provides easy access to ports; simple, yet elegant design\", 'description_long' => \"Compatible with Lenovo Ideapad Yoga 2 11 laptops; interchangeable functionality for all viewing modes; provides easy access to ports; simple, yet elegant design\", 'price' => 41.49, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/lenovo-slot-in-case-for-lenovo-ideapad-yoga-2-11-laptops-black/1423138.p?id=1219051438407&skuId=1423138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423138_sa.jpg\"}', 'upc' => '888440346977', 'provider' => 'bestbuy'],\n ['name' => \"Borgias: The Final Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/borgias-the-final-season-3-discs-dvd/1423174.p?id=2707576&skuId=1423174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423174.jpg\"}', 'upc' => '097368043541', 'provider' => 'bestbuy'],\n ['name' => \"NCIS: The Tenth Season [6 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ncis-the-tenth-season-6-discs-dvd-boxed-set/1423183.p?id=2713758&skuId=1423183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423183_sa.jpg\"}', 'upc' => '097361440842', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek: Enterprise - Complete Second Season (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-enterprise-complete-second-season-blu-ray-disc/1423192.p?id=2713763&skuId=1423192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423192_sa.jpg\"}', 'upc' => '032429130365', 'provider' => 'bestbuy'],\n ['name' => \"NCIS: Los Angeles: The Fourth Season [6 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ncis-los-angeles-the-fourth-season-6-discs-dvd/1423208.p?id=2713765&skuId=1423208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423208_sa.jpg\"}', 'upc' => '097361440941', 'provider' => 'bestbuy'],\n ['name' => \"Elementary: The First Season [6 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elementary-the-first-season-6-discs-dvd-boxed-set/1423217.p?id=2713764&skuId=1423217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423217.jpg\"}', 'upc' => '097361442648', 'provider' => 'bestbuy'],\n ['name' => \"Borgias: The Final Season [3 Discs] [Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/borgias-the-final-season-3-discs-blu-ray-blu-ray-disc/1423226.p?id=2707404&skuId=1423226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423226.jpg\"}', 'upc' => '032429136329', 'provider' => 'bestbuy'],\n ['name' => \"Good Wife: The Fourth Season [5 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-wife-the-fourth-season-5-discs-dvd-boxed-set/1423235.p?id=2713759&skuId=1423235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423235_sa.jpg\"}', 'upc' => '097361441245', 'provider' => 'bestbuy'],\n ['name' => \"Case Logic - Luminosity Action Camera Bag - Black\", 'description_short' => \"Holds up to 2 action cameras and accessories; nylon material; soft mesh pockets; high-visibility lining; 360&#176; interior storage; nonslip bottom; Easy-Cinch Hypalon tabs; oversize loops; includes a carabiner\", 'description_long' => \"Holds up to 2 action cameras and accessories; nylon material; soft mesh pockets; high-visibility lining; 360&#176; interior storage; nonslip bottom; Easy-Cinch Hypalon tabs; oversize loops; includes a carabiner\", 'price' => 26.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/case-logic-luminosity-action-camera-bag-black/1423262.p?id=1219051879514&skuId=1423262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1423262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1423\\/1423262_rc.jpg\"}', 'upc' => '085854229241', 'provider' => 'bestbuy'],\n ['name' => \"Far Cry 4 - PRE-OWNED - Xbox One\", 'description_short' => \"Load your weapons as you step into the heart of a civil war in a thrilling open world\", 'description_long' => \"Load your weapons as you step into the heart of a civil war in a thrilling open world\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/far-cry-4-pre-owned-xbox-one/1424019.p?id=1219494265665&skuId=1424019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1424019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1424\\/1424019_sa.jpg\"}', 'upc' => '799007841180', 'provider' => 'bestbuy'],\n ['name' => \"Neighbors: Complete First Season (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/neighbors-complete-first-season-3-disc-dvd/1424021.p?id=2740055&skuId=1424021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1424021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1424\\/1424021.jpg\"}', 'upc' => '786936837087', 'provider' => 'bestbuy'],\n ['name' => \"Ghetto Stories: The Movie (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ghetto-stories-the-movie-dvd/1424085.p?id=2159886&skuId=1424085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1424085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1424\\/1424085.jpg\"}', 'upc' => '075993997873', 'provider' => 'bestbuy'],\n ['name' => \"All or Nothing [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-or-nothing-pa-cd/1424261.p?id=2159887&skuId=1424261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1424261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1424\\/1424261_sa.jpg\"}', 'upc' => '093624962434', 'provider' => 'bestbuy'],\n ['name' => \"The Takeova [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-takeova-pa-cd/1424613.p?id=2160682&skuId=1424613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1424613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1424\\/1424613_sa.jpg\"}', 'upc' => '097037362225', 'provider' => 'bestbuy'],\n ['name' => \"Garmin - Refurbished Forerunner 210HRM GPS Watch - Black\", 'description_short' => \"Refurbished\nTracks distance, time and pace; heart rate monitor; 7-activity history; heart rate-based calorie calculation; Auto Pause; Auto Lap; Virtual Pacer; PC connectivity\", 'description_long' => \"Refurbished\nTracks distance, time and pace; heart rate monitor; 7-activity history; heart rate-based calorie calculation; Auto Pause; Auto Lap; Virtual Pacer; PC connectivity\", 'price' => 174.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/garmin-refurbished-forerunner-210hrm-gps-watch-black/1424759.p?id=1219051876732&skuId=1424759', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1424759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1307\\/1307741146\\/1307741146_sa.jpg\"}', 'upc' => '753759992033', 'provider' => 'bestbuy'],\n ['name' => \"Community: The Complete Fourth Season [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/community-the-complete-fourth-season-2-discs-dvd/1424886.p?id=2724392&skuId=1424886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1424886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1424\\/1424886_sa.jpg\"}', 'upc' => '043396423046', 'provider' => 'bestbuy'],\n ['name' => \"Blues Summit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-summit-cd/1424890.p?id=2724819&skuId=1424890&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1424890', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1424\\/1424890_sa.jpg\"}', 'upc' => '008811071028', 'provider' => 'bestbuy'],\n ['name' => \"Microsoft - $10 Xbox Gift Card (3-Pack)\", 'description_short' => \"Dive into a virtually limitless world of entertainment through the Xbox Live Marketplace\", 'description_long' => \"Dive into a virtually limitless world of entertainment through the Xbox Live Marketplace\", 'price' => 30, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/microsoft-10-xbox-gift-card-3-pack/1424968.p?id=1219052241690&skuId=1424968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1424968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1424\\/1424968_sa.jpg\"}', 'upc' => '799366080558', 'provider' => 'bestbuy'],\n ['name' => \"BenQ - DLP Projector - White\", 'description_short' => \"DLP1920 x 1080 resolution2200 ANSI lumens white brightness16:9 aspect ratio\", 'description_long' => \"DLP1920 x 1080 resolution2200 ANSI lumens white brightness16:9 aspect ratio\", 'price' => 899.99, 'sale_price' => 749.99, 'url' => 'http://www.bestbuy.com/site/benq-dlp-projector-white/1425036.p?id=1219493014991&skuId=1425036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1425036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1311\\/1311546270\\/1311546270_sa.jpg\"}', 'upc' => '840046031183', 'provider' => 'bestbuy'],\n ['name' => \"HP - 126A Toner Cartridge - Cyan\", 'description_short' => \"Compatible with select HP Color LaserJet printers; cyan toner; smart printing technology\", 'description_long' => \"Compatible with select HP Color LaserJet printers; cyan toner; smart printing technology\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-126a-toner-cartridge-cyan/1425658.p?id=1218257752742&skuId=1425658&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1425658', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308078043\\/1308078043_sa.jpg\"}', 'upc' => '884962161135', 'provider' => 'bestbuy'],\n ['name' => \"Sharp - Insight 1.1 Cu. Ft. Convection Over-the-Range Microwave with Sensor Cooking - Stainless Steel\", 'description_short' => \"850 watts of power; 7-digit, 2-color display; 25 automatic options; Keep Warm Plus; 12 Smart &amp; Easy sensor settings; automatic convection options; 2-speed exhaust fan\", 'description_long' => \"850 watts of power; 7-digit, 2-color display; 25 automatic options; Keep Warm Plus; 12 Smart &amp; Easy sensor settings; automatic convection options; 2-speed exhaust fan\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sharp-insight-1-1-cu-ft-convection-over-the-range-microwave-with-sensor-cooking-stainless-steel/1425712.p?id=1218258076912&skuId=1425712&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1425712', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1425\\/1425712_sa.jpg\"}', 'upc' => '074000616127', 'provider' => 'bestbuy'],\n ['name' => \"KitchenAid - Artisan Design Tilt-Head Stand Mixer - Candy Apple Red\", 'description_short' => \"325-watt motor; 10 speeds; dough hook; 5-quart glass bowl; dough hook, wire whip, flat beater; multipurpose attachment hub\", 'description_long' => \"325-watt motor; 10 speeds; dough hook; 5-quart glass bowl; dough hook, wire whip, flat beater; multipurpose attachment hub\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kitchenaid-artisan-design-tilt-head-stand-mixer-candy-apple-red/1425767.p?id=1218257751396&skuId=1425767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1425767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1425\\/1425767_rc.jpg\"}', 'upc' => '883049215648', 'provider' => 'bestbuy'],\n ['name' => \"HP - 126A Toner Cartridge - Yellow\", 'description_short' => \"Compatible with select HP Color LaserJet printers; yellow ink; smart printing technology\", 'description_long' => \"Compatible with select HP Color LaserJet printers; yellow ink; smart printing technology\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-126a-toner-cartridge-yellow/1425858.p?id=1218257757474&skuId=1425858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1425858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1425\\/1425858_sa.jpg\"}', 'upc' => '884962161142', 'provider' => 'bestbuy'],\n ['name' => \"HP - 126A Toner Cartridge - Magenta\", 'description_short' => \"Compatible with select HP Color LaserJet printers; magenta toner; smart printing technology\", 'description_long' => \"Compatible with select HP Color LaserJet printers; magenta toner; smart printing technology\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-126a-toner-cartridge-magenta/1425885.p?id=1218257751460&skuId=1425885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1425885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308078067\\/1308078067_sa.jpg\"}', 'upc' => '884962161159', 'provider' => 'bestbuy'],\n ['name' => \"HP - 126A Toner Cartridge - Black\", 'description_short' => \"Compatible with HP Color LaserJet printer; black ink; smart printing technology\", 'description_long' => \"Compatible with HP Color LaserJet printer; black ink; smart printing technology\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-126a-toner-cartridge-black/1425912.p?id=1218257745351&skuId=1425912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1425912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1425\\/1425912_sa.jpg\"}', 'upc' => '884962161128', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - Xventure Racer Handlebar Mount - Black\", 'description_short' => \"BRACKETRON Xventure Racer Handlebar Mount: Compatible with Garmin Edge and Forerunner CPU 200, 500, 510, 800 and 810 models; mounts to your bicycle, ATV or motorcycle handlebars; single-bolt clamp system\", 'description_long' => \"BRACKETRON Xventure Racer Handlebar Mount: Compatible with Garmin Edge and Forerunner CPU 200, 500, 510, 800 and 810 models; mounts to your bicycle, ATV or motorcycle handlebars; single-bolt clamp system\", 'price' => 39.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/bracketron-xventure-racer-handlebar-mount-black/1426008.p?id=1219494263763&skuId=1426008', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426008_rc.jpg\"}', 'upc' => '874688005332', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - SmartLantern - Black\", 'description_short' => \"BRACKETRON SmartLantern: LED lantern and flashlight; high-capacity 7800 mAh rechargeable backup battery; delivers 64 lumens; 2.1-amp USB port; provides up to 48 hours of illumination\", 'description_long' => \"BRACKETRON SmartLantern: LED lantern and flashlight; high-capacity 7800 mAh rechargeable backup battery; delivers 64 lumens; 2.1-amp USB port; provides up to 48 hours of illumination\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bracketron-smartlantern-black/1426026.p?id=1219494265203&skuId=1426026', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426026_sa.jpg\"}', 'upc' => '874688004823', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - Xventure Handlebar Strap Mount for Most Smartphones - Black\", 'description_short' => \"BRACKETRON Xventure Handlebar Strap Mount for Most Smartphones: Compatible with most smartphones, MP3 players and GPS; fits most handlebars; weather-resistant design; adjustable design; hook-and-loop flaps; storage compartment\", 'description_long' => \"BRACKETRON Xventure Handlebar Strap Mount for Most Smartphones: Compatible with most smartphones, MP3 players and GPS; fits most handlebars; weather-resistant design; adjustable design; hook-and-loop flaps; storage compartment\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bracketron-xventure-handlebar-strap-mount-for-most-smartphones-black/1426035.p?id=1219494269376&skuId=1426035', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426035_rc.jpg\"}', 'upc' => '874688005288', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - Xventure Versa Handlebar Strap Mount for Most Action Cameras - Black\", 'description_short' => \"BRACKETRON Xventure Versa Handlebar Strap Mount for Most Action Cameras: Compatible with most action cameras; lets you mount your camera on most handlebars; 360-degree rotation; low-vibration design\", 'description_long' => \"BRACKETRON Xventure Versa Handlebar Strap Mount for Most Action Cameras: Compatible with most action cameras; lets you mount your camera on most handlebars; 360-degree rotation; low-vibration design\", 'price' => 19.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/bracketron-xventure-versa-handlebar-strap-mount-for-most-action-cameras-black/1426044.p?id=1219494267982&skuId=1426044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426044_rc.jpg\"}', 'upc' => '874688005271', 'provider' => 'bestbuy'],\n ['name' => \"eMedia - USB MIDI Keyboard Interface Kit - Multi\", 'description_short' => \"From our expanded online assortment; Starter Keyboard Lessons software CD-ROM; plug-and-play USB MIDI interface\", 'description_long' => \"From our expanded online assortment; Starter Keyboard Lessons software CD-ROM; plug-and-play USB MIDI interface\", 'price' => 49.99, 'sale_price' => 28.99, 'url' => 'http://www.bestbuy.com/site/emedia-usb-midi-keyboard-interface-kit-multi/1426047.p?id=1218257754556&skuId=1426047', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426047_sa.jpg\"}', 'upc' => '746290050973', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - Xventure Unipro Tripod Adapter - Black\", 'description_short' => \"BRACKETRON Xventure Unipro Adapter: Compatible with GoPro HERO, HERO2 and HERO3 sport cameras; converts most tripods and threaded camera studs into a GoPro-ready mount; includes 1.75&quot; bolt and tripod adapter\", 'description_long' => \"BRACKETRON Xventure Unipro Adapter: Compatible with GoPro HERO, HERO2 and HERO3 sport cameras; converts most tripods and threaded camera studs into a GoPro-ready mount; includes 1.75&quot; bolt and tripod adapter\", 'price' => 14.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/bracketron-xventure-unipro-tripod-adapter-black/1426053.p?id=1219494269310&skuId=1426053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426053_rc.jpg\"}', 'upc' => '874688005318', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - USB Vehicle Charger - Black\", 'description_short' => \"BRACKETRON USB Vehicle Charger: Compatible with most USB-powered devices; 2.1 amps output power; red power indicator light\", 'description_long' => \"BRACKETRON USB Vehicle Charger: Compatible with most USB-powered devices; 2.1 amps output power; red power indicator light\", 'price' => 19.99, 'sale_price' => 13.99, 'url' => 'http://www.bestbuy.com/site/bracketron-usb-vehicle-charger-black/1426062.p?id=1219494265994&skuId=1426062', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426062_sa.jpg\"}', 'upc' => '874688002577', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - Power Dock Pro Flex - Black\", 'description_short' => \"BRACKETRON Power Dock Pro Flex: Compatible with most USB-enabled cell phones and other devices; USB port; flexible neck; 360-degree rotation; smart grip feet; PowerGrip arms; includes micro-USB-to-USB cable\", 'description_long' => \"BRACKETRON Power Dock Pro Flex: Compatible with most USB-enabled cell phones and other devices; USB port; flexible neck; 360-degree rotation; smart grip feet; PowerGrip arms; includes micro-USB-to-USB cable\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bracketron-power-dock-pro-flex-black/1426071.p?id=1219494261938&skuId=1426071', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426071_sa.jpg\"}', 'upc' => '874688004236', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - Xventure Handlebar Clamp Mount for Most Smartphones - Black\", 'description_short' => \"BRACKETRON Xventure Handlebar Clamp Mount for Most Smartphones: Compatible with most smartphones, MP3 players and GPS; fits most 15-45mm handlebars; weather-resistant design; adjustable design; hook-and-loop flaps; storage compartment\", 'description_long' => \"BRACKETRON Xventure Handlebar Clamp Mount for Most Smartphones: Compatible with most smartphones, MP3 players and GPS; fits most 15-45mm handlebars; weather-resistant design; adjustable design; hook-and-loop flaps; storage compartment\", 'price' => 39.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/bracketron-xventure-handlebar-clamp-mount-for-most-smartphones-black/1426099.p?id=1219494261940&skuId=1426099', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426099_rc.jpg\"}', 'upc' => '874688005325', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - Dual-USB Vehicle Charger - Black\", 'description_short' => \"BRACKETRON Dual-USB Vehicle Charger: Compatible with most USB-powered devices; 5V, 2.1 amps of DC power; dual USB ports; overload protection\", 'description_long' => \"BRACKETRON Dual-USB Vehicle Charger: Compatible with most USB-powered devices; 5V, 2.1 amps of DC power; dual USB ports; overload protection\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bracketron-dual-usb-vehicle-charger-black/1426104.p?id=1219494261936&skuId=1426104', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426104_sa.jpg\"}', 'upc' => '874688004656', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - Xventure Duro Handlebar Mount for Most GoPro Cameras - Black\", 'description_short' => \"BRACKETRON Xventure Duro Handlebar Mount for Most GoPro Cameras: Compatible with most GoPro cameras; fits most 28.6-31.8mm handlebars; 2-bolt clamp system; adjustable design; low-vibration construction; aluminum material\", 'description_long' => \"BRACKETRON Xventure Duro Handlebar Mount for Most GoPro Cameras: Compatible with most GoPro cameras; fits most 28.6-31.8mm handlebars; 2-bolt clamp system; adjustable design; low-vibration construction; aluminum material\", 'price' => 34.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/bracketron-xventure-duro-handlebar-mount-for-most-gopro-cameras-black/1426113.p?id=1219494267600&skuId=1426113', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426113_rc.jpg\"}', 'upc' => '874688005301', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - Xventure Versa Handlebar Clamp Mount for Most Action Cameras - Black\", 'description_short' => \"BRACKETRON Xventure Versa Handlebar Clamp Mount for Most Action Cameras: Compatible with most action cameras; lets you mount a camera to your bicycle&#039;s handlebars; 360-degree rotation; low-vibration design\", 'description_long' => \"BRACKETRON Xventure Versa Handlebar Clamp Mount for Most Action Cameras: Compatible with most action cameras; lets you mount a camera to your bicycle&#039;s handlebars; 360-degree rotation; low-vibration design\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bracketron-xventure-versa-handlebar-clamp-mount-for-most-action-cameras-black/1426122.p?id=1219494263006&skuId=1426122', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426122_rc.jpg\"}', 'upc' => '874688005264', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - Vehicle Floor Mount for Most Tablets - Black\", 'description_short' => \"BRACKETRON Vehicle Floor Mount for Most Tablets: Compatible with Apple iPad and most tablets; portrait or landscape orientation; full access to buttons and controls; rigid construction; flexible arm; heavy-duty, low-profile design\", 'description_long' => \"BRACKETRON Vehicle Floor Mount for Most Tablets: Compatible with Apple iPad and most tablets; portrait or landscape orientation; full access to buttons and controls; rigid construction; flexible arm; heavy-duty, low-profile design\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bracketron-vehicle-floor-mount-for-most-tablets-black/1426131.p?id=1219494267366&skuId=1426131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426131_rc.jpg\"}', 'upc' => '874688003826', 'provider' => 'bestbuy'],\n ['name' => \"Bracketron - XL Pro-Mount Windshield Mount for Select Portable Devices - Black\", 'description_short' => \"BRACKETRON XL Pro-Mount Windshield Mount for Select Portable Devices: Compatible with most devices with a 7&quot; or larger display; Grip-iT-XL adjustable arms; 360-degree rotation; heavy-duty, low-vibration design; quick-lock-and-release suction cup\", 'description_long' => \"BRACKETRON XL Pro-Mount Windshield Mount for Select Portable Devices: Compatible with most devices with a 7&quot; or larger display; Grip-iT-XL adjustable arms; 360-degree rotation; heavy-duty, low-vibration design; quick-lock-and-release suction cup\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bracketron-xl-pro-mount-windshield-mount-for-select-portable-devices-black/1426159.p?id=1219494263951&skuId=1426159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426159_rc.jpg\"}', 'upc' => '874688005141', 'provider' => 'bestbuy'],\n ['name' => \"Rodney Yee's Complete Yoga for Beginners (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rodney-yees-complete-yoga-for-beginners-dvd/1426168.p?id=3282335&skuId=1426168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426168_sa.jpg\"}', 'upc' => '018713613790', 'provider' => 'bestbuy'],\n ['name' => \"Jillian Michaels: Beginner Shred (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jillian-michaels-beginner-shred-dvd/1426177.p?id=3281393&skuId=1426177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1426177.jpg\"}', 'upc' => '018713613868', 'provider' => 'bestbuy'],\n ['name' => \"Yoga for Belly, Butt & Thighs with Chrissy Carter (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yoga-for-belly-butt-thighs-with-chrissy-carter-dvd/1426186.p?id=3281275&skuId=1426186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426186_sa.jpg\"}', 'upc' => '018713610089', 'provider' => 'bestbuy'],\n ['name' => \"eMedia - Guitar Accessory Kit\", 'description_short' => \"From our expanded online assortment; software compatible with PC and Mac; software features automatic tuner, metronome, digital recorder and chord dictionary; guitar strap, picks, set of strings, string winder, polish and cloth included\", 'description_long' => \"From our expanded online assortment; software compatible with PC and Mac; software features automatic tuner, metronome, digital recorder and chord dictionary; guitar strap, picks, set of strings, string winder, polish and cloth included\", 'price' => 29.99, 'sale_price' => 21.99, 'url' => 'http://www.bestbuy.com/site/emedia-guitar-accessory-kit/1426223.p?id=1218257747295&skuId=1426223', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426223_sa.jpg\"}', 'upc' => '746290070971', 'provider' => 'bestbuy'],\n ['name' => \"Galactic Taz Ball - Nintendo DS\", 'description_short' => \"Spin up adventure in space\", 'description_long' => \"Spin up adventure in space\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/galactic-taz-ball-nintendo-ds/1426287.p?id=1218277811034&skuId=1426287', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426287_sa.jpg\"}', 'upc' => '883929131693', 'provider' => 'bestbuy'],\n ['name' => \"Adventure Time: The Secret of the Nameless Kingdom - PRE-OWNED - PlayStation 3\", 'description_short' => \"Get ready for an all-new Adventure through the Nameless Kingdom\", 'description_long' => \"Get ready for an all-new Adventure through the Nameless Kingdom\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adventure-time-the-secret-of-the-nameless-kingdom-pre-owned-playstation-3/1426341.p?id=1219494268509&skuId=1426341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1426341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1426\\/1426341_sa.jpg\"}', 'upc' => '799007841197', 'provider' => 'bestbuy'],\n ['name' => \"Rabbids Invasion: The Interactive TV Show - PRE-OWNED - Xbox 360\", 'description_short' => \"Get ready Bwaah-some fun with the wacky Rabbids\", 'description_long' => \"Get ready Bwaah-some fun with the wacky Rabbids\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rabbids-invasion-the-interactive-tv-show-pre-owned-xbox-360/1427007.p?id=1219494263008&skuId=1427007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1427\\/1427007_sa.jpg\"}', 'upc' => '799007841203', 'provider' => 'bestbuy'],\n ['name' => \"Key Digital - Champion Series 4-Way HDMI Distribution Amplifier\", 'description_short' => \"KEY DIGITAL Champion Series 4-Way HDMI Distribution Amplifier: Compatible with most HDMI and HDCP technologies; distributes 1 HDMI input to 4 outputs; EDID control; 1 Key technology; 3D-ready; supports up to 1080p/60 resolution\", 'description_long' => \"KEY DIGITAL Champion Series 4-Way HDMI Distribution Amplifier: Compatible with most HDMI and HDCP technologies; distributes 1 HDMI input to 4 outputs; EDID control; 1 Key technology; 3D-ready; supports up to 1080p/60 resolution\", 'price' => 235.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/key-digital-champion-series-4-way-hdmi-distribution-amplifier/1427064.p?id=1219300831211&skuId=1427064', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1427\\/1427064_sa.jpg\"}', 'upc' => '819505008875', 'provider' => 'bestbuy'],\n ['name' => \"Back to the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-the-blues-cd/1427067.p?id=181631&skuId=1427067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1427\\/1427067_sa.jpg\"}', 'upc' => '026245200821', 'provider' => 'bestbuy'],\n ['name' => \"Mindy Project: Season One [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mindy-project-season-one-3-discs-dvd/1427082.p?id=2710192&skuId=1427082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1427\\/1427082_sa.jpg\"}', 'upc' => '025192168765', 'provider' => 'bestbuy'],\n ['name' => \"Barbie: Mariposa & the Fairy Princess (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barbie-mariposa-the-fairy-princess-dvd/1427107.p?id=2717697&skuId=1427107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1427\\/1427107_sa.jpg\"}', 'upc' => '025192171611', 'provider' => 'bestbuy'],\n ['name' => \"Parks & Recreation: Season Five [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parks-recreation-season-five-3-discs-dvd/1427116.p?id=2725078&skuId=1427116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1427\\/1427116.jpg\"}', 'upc' => '025192168550', 'provider' => 'bestbuy'],\n ['name' => \"Parenthood: Season 4 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parenthood-season-4-3-discs-dvd/1427125.p?id=2714840&skuId=1427125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1427125.jpg\"}', 'upc' => '025192168741', 'provider' => 'bestbuy'],\n ['name' => \"Barbie: Mariposa & the Fairy Princess (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barbie-mariposa-the-fairy-princess-blu-ray-disc-2-disc/1427134.p?id=2717697&skuId=1427134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1427\\/1427134_sa.jpg\"}', 'upc' => '025192171505', 'provider' => 'bestbuy'],\n ['name' => \"Una Mujer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/una-mujer-cd/1427143.p?id=2728123&skuId=1427143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1427\\/1427143_sa.jpg\"}', 'upc' => '097037851521', 'provider' => 'bestbuy'],\n ['name' => \"Haunt [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/haunt-single-cd/1427161.p?id=2735979&skuId=1427161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1427\\/1427161_sa.jpg\"}', 'upc' => '602537456352', 'provider' => 'bestbuy'],\n ['name' => \"Two Track Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-track-mind-cd/1427183.p?id=86696&skuId=1427183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1427183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1427\\/1427183_sa.jpg\"}', 'upc' => '049891002427', 'provider' => 'bestbuy'],\n ['name' => \"Rabbids Invasion: The Interactive TV Show - PRE-OWNED - Xbox One|Xbox 360\", 'description_short' => \"Get ready Bwaah-some fun with the wacky Rabbids\", 'description_long' => \"Get ready Bwaah-some fun with the wacky Rabbids\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rabbids-invasion-the-interactive-tv-show-pre-owned-xbox-onexbox-360/1428006.p?id=1219494261942&skuId=1428006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1428006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1428\\/1428006_sa.jpg\"}', 'upc' => '799007841210', 'provider' => 'bestbuy'],\n ['name' => \"Poetic Justice [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/poetic-justice-original-soundtrack-cd-original-soundtrack/1428397.p?id=95097&skuId=1428397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1428397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1428\\/1428397_sa.jpg\"}', 'upc' => '074645713120', 'provider' => 'bestbuy'],\n ['name' => \"The Edge of Forever - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-edge-of-forever-cd/1428556.p?id=100001&skuId=1428556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1428556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1428\\/1428556.jpg\"}', 'upc' => '046286181026', 'provider' => 'bestbuy'],\n ['name' => \"Livin' in a Crime Wave - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/livin-in-a-crime-wave-cd/1428654.p?id=85004&skuId=1428654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1428654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1428\\/1428654.jpg\"}', 'upc' => '063961910627', 'provider' => 'bestbuy'],\n ['name' => \"Pin-Ups - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pin-ups-cd/1428734.p?id=85895&skuId=1428734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1428734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1428\\/1428734.jpg\"}', 'upc' => '021075114225', 'provider' => 'bestbuy'],\n ['name' => \"First Impressions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-impressions-cd/1428887.p?id=90783&skuId=1428887&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1428887', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1428\\/1428887_sa.jpg\"}', 'upc' => '039841401622', 'provider' => 'bestbuy'],\n ['name' => \"Dragon Age: Inquisition - PRE-OWNED - PlayStation 3\", 'description_short' => \"Band together with legendary heroes to do battle in a breathtaking open world\", 'description_long' => \"Band together with legendary heroes to do battle in a breathtaking open world\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragon-age-inquisition-pre-owned-playstation-3/1429005.p?id=1219494264016&skuId=1429005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429005_sa.jpg\"}', 'upc' => '799007841227', 'provider' => 'bestbuy'],\n ['name' => \"Littlest Pet Shop: Spring - PRE-OWNED - Nintendo DS\", 'description_short' => \"Spring into the fun of Littlest Pet Shop\", 'description_long' => \"Spring into the fun of Littlest Pet Shop\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/littlest-pet-shop-spring-pre-owned-nintendo-ds/1429114.p?id=1218258076037&skuId=1429114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429114_sa.jpg\"}', 'upc' => '799007786931', 'provider' => 'bestbuy'],\n ['name' => \"State Of Disconnection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/state-of-disconnection-cd/1429118.p?id=1985216&skuId=1429118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '727701774725', 'provider' => 'bestbuy'],\n ['name' => \"The Bigs 2 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Is your talent big enough for the big leagues?\", 'description_long' => \"Is your talent big enough for the big leagues?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bigs-2-pre-owned-nintendo-wii/1429169.p?id=1218258081244&skuId=1429169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429169_sa.jpg\"}', 'upc' => '799007786979', 'provider' => 'bestbuy'],\n ['name' => \"Picture This - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/picture-this-cd/1429190.p?id=79830&skuId=1429190&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429190', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429190_sa.jpg\"}', 'upc' => '019148500426', 'provider' => 'bestbuy'],\n ['name' => \"MX vs. ATV Reflex - PRE-OWNED - PlayStation 3\", 'description_short' => \"Rule the off-road\", 'description_long' => \"Rule the off-road\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mx-vs-atv-reflex-pre-owned-playstation-3/1429202.p?id=1218258076809&skuId=1429202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429202_sa.jpg\"}', 'upc' => '799007787013', 'provider' => 'bestbuy'],\n ['name' => \"CSI: Deadly Intent - PRE-OWNED - Xbox 360\", 'description_short' => \"Join the CSI team to solve shocking new cases\", 'description_long' => \"Join the CSI team to solve shocking new cases\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/csi-deadly-intent-pre-owned-xbox-360/1429211.p?id=1218258081164&skuId=1429211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429211_sa.jpg\"}', 'upc' => '799007787020', 'provider' => 'bestbuy'],\n ['name' => \"Just Dance - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Let the music carry you away\", 'description_long' => \"Let the music carry you away\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-dance-pre-owned-nintendo-wii/1429239.p?id=1218258083112&skuId=1429239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429239_sa.jpg\"}', 'upc' => '799007787037', 'provider' => 'bestbuy'],\n ['name' => \"All In Good Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-in-good-time-cd/1429243.p?id=94509&skuId=1429243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429243_sa.jpg\"}', 'upc' => '048248112529', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band Track Pack: Classic Rock — PRE-OWNED - Nintendo Wii\", 'description_short' => \"Expand your rocking repertoire into the age of classic rock\", 'description_long' => \"Expand your rocking repertoire into the age of classic rock\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-track-pack-classic-rock-pre-owned-nintendo-wii/1429257.p?id=1218258076487&skuId=1429257&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429257.jpg\"}', 'upc' => '799007787051', 'provider' => 'bestbuy'],\n ['name' => \"Stormrise - PRE-OWNED - PlayStation 3\", 'description_short' => \"Do you have the tactical abilities to bring a bloody conflict to a final resolution?\", 'description_long' => \"Do you have the tactical abilities to bring a bloody conflict to a final resolution?\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stormrise-pre-owned-playstation-3/1429266.p?id=1218258080975&skuId=1429266&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429266_sa.jpg\"}', 'upc' => '799007787068', 'provider' => 'bestbuy'],\n ['name' => \"Up - PRE-OWNED - PlayStation 3\", 'description_short' => \"Experience the high-flying fun of the Disney-Pixar animated film\", 'description_long' => \"Experience the high-flying fun of the Disney-Pixar animated film\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-pre-owned-playstation-3/1429275.p?id=1218258077557&skuId=1429275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429275_sa.jpg\"}', 'upc' => '799007787075', 'provider' => 'bestbuy'],\n ['name' => \"The Bigs 2 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Is your talent big enough for the big leagues?\", 'description_long' => \"Is your talent big enough for the big leagues?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bigs-2-pre-owned-playstation-3/1429284.p?id=1218258080781&skuId=1429284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429284_sa.jpg\"}', 'upc' => '799007787082', 'provider' => 'bestbuy'],\n ['name' => \"Hotel for Dogs - PRE-OWNED - Nintendo DS\", 'description_short' => \"This place has definitely gone to the dogs\", 'description_long' => \"This place has definitely gone to the dogs\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hotel-for-dogs-pre-owned-nintendo-ds/1429293.p?id=1218258078202&skuId=1429293&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429293_sa.jpg\"}', 'upc' => '799007787099', 'provider' => 'bestbuy'],\n ['name' => \"Jurassic: The Hunted - PRE-OWNED - Xbox 360\", 'description_short' => \"Fight tooth and claw for your survival\", 'description_long' => \"Fight tooth and claw for your survival\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jurassic-the-hunted-pre-owned-xbox-360/1429309.p?id=1218258081368&skuId=1429309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429309_sa.jpg\"}', 'upc' => '799007787105', 'provider' => 'bestbuy'],\n ['name' => \"French Music For Trombones - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/french-music-for-trombones-various-cd/1429314.p?id=1784536&skuId=1429314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429314.jpg\"}', 'upc' => '750582816727', 'provider' => 'bestbuy'],\n ['name' => \"Chamber Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chamber-music-cd/1429323.p?id=1784537&skuId=1429323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429323.jpg\"}', 'upc' => '750582816628', 'provider' => 'bestbuy'],\n ['name' => \"Cursed Mountain - PRE-OWNED - Nintendo Wii\", 'description_short' => \"A terrifying shadowy realm lies hidden within the Himalayas\", 'description_long' => \"A terrifying shadowy realm lies hidden within the Himalayas\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cursed-mountain-pre-owned-nintendo-wii/1429327.p?id=1218258080181&skuId=1429327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429327_sa.jpg\"}', 'upc' => '799007787129', 'provider' => 'bestbuy'],\n ['name' => \"Baroque Suites Plays On The Guitar - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/baroque-suites-plays-on-the-guitar-various-cd/1429332.p?id=1693311&skuId=1429332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429332_sa.jpg\"}', 'upc' => '750582816529', 'provider' => 'bestbuy'],\n ['name' => \"All The Lonely People - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-the-lonely-people-various-cd/1429341.p?id=1702869&skuId=1429341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429341.jpg\"}', 'upc' => '750582779824', 'provider' => 'bestbuy'],\n ['name' => \"Spore Hero Arena - PRE-OWNED - Nintendo DS\", 'description_short' => \"Does your creature have the makings of a galactic champion?\", 'description_long' => \"Does your creature have the makings of a galactic champion?\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spore-hero-arena-pre-owned-nintendo-ds/1429372.p?id=1218258073775&skuId=1429372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429372_sa.jpg\"}', 'upc' => '799007787174', 'provider' => 'bestbuy'],\n ['name' => \"20th Century Music For Trumpet & Organ - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20th-century-music-for-trumpet-organ-various-cd/1429378.p?id=1758636&skuId=1429378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429378.jpg\"}', 'upc' => '750582816321', 'provider' => 'bestbuy'],\n ['name' => \"Jurassic: The Hunted - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Fight tooth and claw for your survival\", 'description_long' => \"Fight tooth and claw for your survival\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jurassic-the-hunted-pre-owned-nintendo-wii/1429381.p?id=1218258080458&skuId=1429381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429381_sa.jpg\"}', 'upc' => '799007787181', 'provider' => 'bestbuy'],\n ['name' => \"The Conduit - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Battle an alien invasion and a sinister government cover-up\", 'description_long' => \"Battle an alien invasion and a sinister government cover-up\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-conduit-pre-owned-nintendo-wii/1429405.p?id=1218258079795&skuId=1429405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429405_sa.jpg\"}', 'upc' => '799007787198', 'provider' => 'bestbuy'],\n ['name' => \"Sherlock Holmes: The Mystery of the Mummy - PRE-OWNED - Nintendo DS\", 'description_short' => \"Unravel a sinister mystery in true Holmesian style\", 'description_long' => \"Unravel a sinister mystery in true Holmesian style\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sherlock-holmes-the-mystery-of-the-mummy-pre-owned-nintendo-ds/1429441.p?id=1218258077355&skuId=1429441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429441_sa.jpg\"}', 'upc' => '799007787235', 'provider' => 'bestbuy'],\n ['name' => \"Karaoke Revolution - PRE-OWNED - Xbox 360\", 'description_short' => \"Set a course for singing stardom\", 'description_long' => \"Set a course for singing stardom\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/karaoke-revolution-pre-owned-xbox-360/1429478.p?id=1218258079272&skuId=1429478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429478_sa.jpg\"}', 'upc' => '799007787259', 'provider' => 'bestbuy'],\n ['name' => \"G.I. Joe: The Rise of Cobra - PRE-OWNED - PlayStation 3\", 'description_short' => \"Experience the power of an American hero\", 'description_long' => \"Experience the power of an American hero\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g-i-joe-the-rise-of-cobra-pre-owned-playstation-3/1429496.p?id=1218258076615&skuId=1429496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429496_sa.jpg\"}', 'upc' => '799007787273', 'provider' => 'bestbuy'],\n ['name' => \"Professor Heinz Wolff's Gravity - PRE-OWNED - Nintendo DS\", 'description_short' => \"Play games with the puzzle-happy Professor\", 'description_long' => \"Play games with the puzzle-happy Professor\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/professor-heinz-wolffs-gravity-pre-owned-nintendo-ds/1429502.p?id=1218258082582&skuId=1429502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429502_sa.jpg\"}', 'upc' => '799007787280', 'provider' => 'bestbuy'],\n ['name' => \"Squeeballs Party - PRE-OWNED - Nintendo DS\", 'description_short' => \"See just how resilient these creatures can be\", 'description_long' => \"See just how resilient these creatures can be\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/squeeballs-party-pre-owned-nintendo-ds/1429548.p?id=1218258076735&skuId=1429548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429548_sa.jpg\"}', 'upc' => '799007787310', 'provider' => 'bestbuy'],\n ['name' => \"Little League World Series Baseball 2009 - PRE-OWNED - Nintendo DS\", 'description_short' => \"There&#039;s nothing little about the excitement in store in this competition\", 'description_long' => \"There&#039;s nothing little about the excitement in store in this competition\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-league-world-series-baseball-2009-pre-owned-nintendo-ds/1429557.p?id=1218258079467&skuId=1429557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429557_sa.jpg\"}', 'upc' => '799007787327', 'provider' => 'bestbuy'],\n ['name' => \"MySims Racing - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Zoom past the competition on a series of exotic tracks\", 'description_long' => \"Zoom past the competition on a series of exotic tracks\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mysims-racing-pre-owned-nintendo-wii/1429609.p?id=1218258074586&skuId=1429609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429609_sa.jpg\"}', 'upc' => '799007787372', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band Metal Track Pack - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Enjoy head-banging fun to an incredible metal soundtrack\", 'description_long' => \"Enjoy head-banging fun to an incredible metal soundtrack\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-metal-track-pack-pre-owned-nintendo-wii/1429627.p?id=1218258082509&skuId=1429627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429627_sa.jpg\"}', 'upc' => '799007787396', 'provider' => 'bestbuy'],\n ['name' => \"Smart Boy's Toy Club — PRE-OWNED - Nintendo DS\", 'description_short' => \"Provide your child with an array of skill-building games\", 'description_long' => \"Provide your child with an array of skill-building games\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smart-boys-toy-club-pre-owned-nintendo-ds/1429645.p?id=1218258082837&skuId=1429645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429645.jpg\"}', 'upc' => '799007787419', 'provider' => 'bestbuy'],\n ['name' => \"Fairytale Fights - PRE-OWNED - Xbox 360\", 'description_short' => \"Make your enemies die brutally ever after\", 'description_long' => \"Make your enemies die brutally ever after\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fairytale-fights-pre-owned-xbox-360/1429654.p?id=1218258079466&skuId=1429654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429654_sa.jpg\"}', 'upc' => '799007787426', 'provider' => 'bestbuy'],\n ['name' => \"Major League Baseball 2K9 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Prove you can make it in the big leagues\", 'description_long' => \"Prove you can make it in the big leagues\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/major-league-baseball-2k9-pre-owned-playstation-3/1429672.p?id=1218258073848&skuId=1429672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429672_sa.jpg\"}', 'upc' => '799007787440', 'provider' => 'bestbuy'],\n ['name' => \"African Waltz [Cassette] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/african-waltz-cassette-cd/1429706.p?id=63530&skuId=1429706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429706.jpg\"}', 'upc' => '025218625821', 'provider' => 'bestbuy'],\n ['name' => \"Sonic's Ultimate Genesis Collection Platinum Hits - PRE-OWNED - Xbox 360\", 'description_short' => \"Relive the adventure with more than 40 classic titles\", 'description_long' => \"Relive the adventure with more than 40 classic titles\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonics-ultimate-genesis-collection-platinum-hits-pre-owned-xbox-360/1429709.p?id=1218258081048&skuId=1429709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429709_sa.jpg\"}', 'upc' => '799007787464', 'provider' => 'bestbuy'],\n ['name' => \"Sabroso! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sabroso-cd/1429733.p?id=70636&skuId=1429733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429733_sa.jpg\"}', 'upc' => '025218628129', 'provider' => 'bestbuy'],\n ['name' => \"NHL 2K10 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Work the rink like a pro\", 'description_long' => \"Work the rink like a pro\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nhl-2k10-pre-owned-playstation-3/1429736.p?id=1218258079148&skuId=1429736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429736_sa.jpg\"}', 'upc' => '799007787495', 'provider' => 'bestbuy'],\n ['name' => \"10 to 4 at the Five Spot - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-to-4-at-the-five-spot-cd/1429742.p?id=63528&skuId=1429742&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429742', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429742_sa.jpg\"}', 'upc' => '025218603126', 'provider' => 'bestbuy'],\n ['name' => \"New Trombone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-trombone-cd/1429779.p?id=66455&skuId=1429779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429779_sa.jpg\"}', 'upc' => '025218607728', 'provider' => 'bestbuy'],\n ['name' => \"It Remains to Be Seen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/it-remains-to-be-seen-cd/1429813.p?id=91898&skuId=1429813&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429813', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429813_sa.jpg\"}', 'upc' => '048021601325', 'provider' => 'bestbuy'],\n ['name' => \"Cloudy with a Chance of Meatballs - PRE-OWNED - Nintendo DS\", 'description_short' => \"Save your town from a unique weather pattern\", 'description_long' => \"Save your town from a unique weather pattern\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cloudy-with-a-chance-of-meatballs-pre-owned-nintendo-ds/1429827.p?id=1218258076291&skuId=1429827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429827_sa.jpg\"}', 'upc' => '799007787570', 'provider' => 'bestbuy'],\n ['name' => \"G.I. Joe: The Rise of Cobra - PRE-OWNED - Nintendo DS\", 'description_short' => \"Experience the power of an American hero\", 'description_long' => \"Experience the power of an American hero\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g-i-joe-the-rise-of-cobra-pre-owned-nintendo-ds/1429845.p?id=1218258078203&skuId=1429845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429845_sa.jpg\"}', 'upc' => '799007787594', 'provider' => 'bestbuy'],\n ['name' => \"Major League Baseball 2K9 Fantasy All-Stars - PRE-OWNED - Nintendo DS\", 'description_short' => \"Hone your baseball skills in zany cartoon environments\", 'description_long' => \"Hone your baseball skills in zany cartoon environments\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/major-league-baseball-2k9-fantasy-all-stars-pre-owned-nintendo-ds/1429881.p?id=1218258079076&skuId=1429881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429881_sa.jpg\"}', 'upc' => '799007787631', 'provider' => 'bestbuy'],\n ['name' => \"I Love Beauty: Hollywood Makeover - PRE-OWNED - Nintendo DS\", 'description_short' => \"Show off your Hollywood star style\", 'description_long' => \"Show off your Hollywood star style\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-love-beauty-hollywood-makeover-pre-owned-nintendo-ds/1429918.p?id=1218258081992&skuId=1429918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429918_sa.jpg\"}', 'upc' => '799007787655', 'provider' => 'bestbuy'],\n ['name' => \"Indiana Jones and the Staff of Kings - PRE-OWNED - Nintendo DS\", 'description_short' => \"Crack your whip for a new archaeological adventure\", 'description_long' => \"Crack your whip for a new archaeological adventure\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/indiana-jones-and-the-staff-of-kings-pre-owned-nintendo-ds/1429927.p?id=1218258081896&skuId=1429927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429927_sa.jpg\"}', 'upc' => '799007787662', 'provider' => 'bestbuy'],\n ['name' => \"Microsoft - Lumia 1020 4G LTE Cell Phone - White (AT&T)\", 'description_short' => \"Windows Phone 8 operating system4G LTE speedWi-FiBluetooth 3.0 support4.5&quot; AMOLED PureMotion high-definition super-sensitive touch screen\", 'description_long' => \"Windows Phone 8 operating system4G LTE speedWi-FiBluetooth 3.0 support4.5&quot; AMOLED PureMotion high-definition super-sensitive touch screen\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/microsoft-lumia-1020-4g-lte-cell-phone-white-at-t/1429936.p?id=1219051878144&skuId=1429936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429936_sa.jpg\"}', 'upc' => '6438158559561', 'provider' => 'bestbuy'],\n ['name' => \"Blues at the Top - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-at-the-top-cd/1429939.p?id=74471&skuId=1429939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429939_sa.jpg\"}', 'upc' => '730182603026', 'provider' => 'bestbuy'],\n ['name' => \"Tribute to Orange - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribute-to-orange-cd/1429948.p?id=79875&skuId=1429948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429948_sa.jpg\"}', 'upc' => '730182603125', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Lawrence Welk [MCA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-lawrence-welk-mca-cd/1429984.p?id=103757&skuId=1429984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1429984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1429\\/1429984_sa.jpg\"}', 'upc' => '014921703728', 'provider' => 'bestbuy'],\n ['name' => \"Complete Quartets 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-quartets-4-cd/1430017.p?id=1772756&skuId=1430017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430017.jpg\"}', 'upc' => '750582783821', 'provider' => 'bestbuy'],\n ['name' => \"Deep End - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deep-end-cd/1430106.p?id=102407&skuId=1430106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430106_sa.jpg\"}', 'upc' => '718751841321', 'provider' => 'bestbuy'],\n ['name' => \"DeLonghi - Safeheat 28\\\" Tower Ceramic Heater - Black\", 'description_short' => \"Digital controls; EcoEnergy function; motor-driven oscillation; tip-over safety switch; 3 heat settings; air filtration and removable dust filter\", 'description_long' => \"Digital controls; EcoEnergy function; motor-driven oscillation; tip-over safety switch; 3 heat settings; air filtration and removable dust filter\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/delonghi-safeheat-28-tower-ceramic-heater-black/1430147.p?id=1218258073588&skuId=1430147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430147_sa.jpg\"}', 'upc' => '044387809009', 'provider' => 'bestbuy'],\n ['name' => \"Detroit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/detroit-cd/1430179.p?id=76377&skuId=1430179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430179_sa.jpg\"}', 'upc' => '730182602425', 'provider' => 'bestbuy'],\n ['name' => \"A Holy Ghost Take-Over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-holy-ghost-take-over-cd/1430197.p?id=113601&skuId=1430197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430197_sa.jpg\"}', 'upc' => '048021601424', 'provider' => 'bestbuy'],\n ['name' => \"Temple Sampler - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/temple-sampler-cd-various/1430302.p?id=101373&skuId=1430302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430302_sa.jpg\"}', 'upc' => '096045004929', 'provider' => 'bestbuy'],\n ['name' => \"In The Here & Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-here-now-cd/1430357.p?id=2305250&skuId=1430357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430357.jpg\"}', 'upc' => '011661312326', 'provider' => 'bestbuy'],\n ['name' => \"Beau Jocque Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beau-jocque-boogie-cd/1430366.p?id=2434321&skuId=1430366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430366.jpg\"}', 'upc' => '011661212022', 'provider' => 'bestbuy'],\n ['name' => \"Real L Word: Season One [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/real-l-word-season-one-3-discs-dvd/1430438.p?id=2140936&skuId=1430438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430438_sa.jpg\"}', 'upc' => '097368958548', 'provider' => 'bestbuy'],\n ['name' => \"3M - Under Desk Keyboard Drawer - Black\", 'description_short' => \"Height-adjustable track; ball-bearing hardware; leatherette gel wrist rests; antimicrobial protection\", 'description_long' => \"Height-adjustable track; ball-bearing hardware; leatherette gel wrist rests; antimicrobial protection\", 'price' => 79.99, 'sale_price' => 64.99, 'url' => 'http://www.bestbuy.com/site/3m-under-desk-keyboard-drawer-black/1430465.p?id=1218258078944&skuId=1430465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430465_sa.jpg\"}', 'upc' => '021200530302', 'provider' => 'bestbuy'],\n ['name' => \"Little Love Letters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-love-letters-cd/1430482.p?id=76979&skuId=1430482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430482_sa.jpg\"}', 'upc' => '075992449922', 'provider' => 'bestbuy'],\n ['name' => \"Cyber Acoustics - 2.1 Speaker System (3-Piece) - Black\", 'description_short' => \"16W total system power (8W RMS); 1.5&quot; x 3&quot; satellite speakers; 3&quot; subwoofer with a high-excursion, polycarbon driver; high-powered amplifier technology\", 'description_long' => \"16W total system power (8W RMS); 1.5&quot; x 3&quot; satellite speakers; 3&quot; subwoofer with a high-excursion, polycarbon driver; high-powered amplifier technology\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cyber-acoustics-2-1-speaker-system-3-piece-black/1430483.p?id=1218258080902&skuId=1430483&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430483', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430483_sa.jpg\"}', 'upc' => '646422000817', 'provider' => 'bestbuy'],\n ['name' => \"Case Logic - Neoprene Netbook Sleeve - Black\", 'description_short' => \"Compatible with most laptops with up to a 10.2&quot; display; neoprene material; outer zippered accessory pocket; padded handles; weather-resistant\", 'description_long' => \"Compatible with most laptops with up to a 10.2&quot; display; neoprene material; outer zippered accessory pocket; padded handles; weather-resistant\", 'price' => 19.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/case-logic-neoprene-netbook-sleeve-black/1430492.p?id=1218258083673&skuId=1430492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430492_sa.jpg\"}', 'upc' => '085854170970', 'provider' => 'bestbuy'],\n ['name' => \"3M - Adjustable Keyboard Tray - Black\", 'description_short' => \"Designed for workstations with a mounting depth greater than 17.5&quot;; height and tilt adjustable; knob adjust arm\", 'description_long' => \"Designed for workstations with a mounting depth greater than 17.5&quot;; height and tilt adjustable; knob adjust arm\", 'price' => 129.99, 'sale_price' => 110.99, 'url' => 'http://www.bestbuy.com/site/3m-adjustable-keyboard-tray-black/1430508.p?id=1218258077278&skuId=1430508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430508_sa.jpg\"}', 'upc' => '021200507038', 'provider' => 'bestbuy'],\n ['name' => \"Transmissions from the Satellite Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transmissions-from-the-satellite-heart-cd/1430525.p?id=82376&skuId=1430525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430525_sa.jpg\"}', 'upc' => '093624533429', 'provider' => 'bestbuy'],\n ['name' => \"American Graffiti - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-graffiti-cd-original-soundtrack/1430552.p?id=72895&skuId=1430552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430552.jpg\"}', 'upc' => '076732800126', 'provider' => 'bestbuy'],\n ['name' => \"Covenant [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/covenant-pa-cd/1430650.p?id=92246&skuId=1430650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430650_sa.jpg\"}', 'upc' => '075992450423', 'provider' => 'bestbuy'],\n ['name' => \"Cyber Acoustics - 2.1 Speaker System (3-Piece) - Black\", 'description_short' => \"68W total system power (32W RMS); 2.5&quot; satellite speakers; 6.5&quot; subwoofer with a Power Pro Series driver; magnetically shielded design\", 'description_long' => \"68W total system power (32W RMS); 2.5&quot; satellite speakers; 6.5&quot; subwoofer with a Power Pro Series driver; magnetically shielded design\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cyber-acoustics-2-1-speaker-system-3-piece-black/1430705.p?id=1218258079591&skuId=1430705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430705_rc.jpg\"}', 'upc' => '646422000695', 'provider' => 'bestbuy'],\n ['name' => \"Case Logic - Carrying Case (Sleeve) for 14\\\" Notebook - Black\", 'description_short' => \"Black\", 'description_long' => \"Black\", 'price' => 29.99, 'sale_price' => 22.99, 'url' => 'http://www.bestbuy.com/site/case-logic-carrying-case-sleeve-for-14-notebook-black/1430787.p?id=1218258083601&skuId=1430787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1430\\/1430787_sa.jpg\"}', 'upc' => '085854168397', 'provider' => 'bestbuy'],\n ['name' => \"String Quartets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/string-quartets-cd/1430883.p?id=2041783&skuId=1430883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1430883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582156120', 'provider' => 'bestbuy'],\n ['name' => \"Dragon Age: Inquisition - PRE-OWNED - PlayStation 4\", 'description_short' => \"Band together with legendary heroes to do battle in a breathtaking open world\", 'description_long' => \"Band together with legendary heroes to do battle in a breathtaking open world\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragon-age-inquisition-pre-owned-playstation-4/1431008.p?id=1219494265139&skuId=1431008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1431008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1431\\/1431008_sa.jpg\"}', 'upc' => '799007841234', 'provider' => 'bestbuy'],\n ['name' => \"Spaghetti Western: 44 Movie Collection [11 Discs] (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spaghetti-western-44-movie-collection-11-discs-boxed-set-dvd/1431234.p?id=2147263&skuId=1431234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1431234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1431\\/1431234_sa.jpg\"}', 'upc' => '826831070988', 'provider' => 'bestbuy'],\n ['name' => \"Man Of Steel (Score) - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/man-of-steel-score-cd-original-soundtrack/1431428.p?id=2730399&skuId=1431428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1431428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1431\\/1431428.jpg\"}', 'upc' => '794043170089', 'provider' => 'bestbuy'],\n ['name' => \"The Battle: Cinco de Mayo (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-battle-cinco-de-mayo-dvd/1432002.p?id=2009505&skuId=1432002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1432002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1432\\/1432002_sa.jpg\"}', 'upc' => '735978440724', 'provider' => 'bestbuy'],\n ['name' => \"Dragon Age: Inquisition - PRE-OWNED - Xbox 360\", 'description_short' => \"Band together with legendary heroes to do battle in a breathtaking open world\", 'description_long' => \"Band together with legendary heroes to do battle in a breathtaking open world\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragon-age-inquisition-pre-owned-xbox-360/1432007.p?id=1219494263501&skuId=1432007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1432007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1432\\/1432007_sa.jpg\"}', 'upc' => '799007841241', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1432127.p?id=1218258633524&skuId=1432127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1432127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400014321274', 'provider' => 'bestbuy'],\n ['name' => \"They Call Me Muddy Waters/Live At Mister Kelly's - CD - Live\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/they-call-me-muddy-waters-live-at-mister-kellys-cd-live/1432145.p?id=2138263&skuId=1432145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1432145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1432\\/1432145_sa.jpg\"}', 'upc' => '5017261209498', 'provider' => 'bestbuy'],\n ['name' => \"Añoranzas Remembrances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anoranzas-remembrances-cd/1432154.p?id=2149338&skuId=1432154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1432154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1432\\/1432154_sa.jpg\"}', 'upc' => '763304214725', 'provider' => 'bestbuy'],\n ['name' => \"Broadway's Greatest Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broadways-greatest-hits-cd-various/1432355.p?id=2123760&skuId=1432355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1432355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1432\\/1432355.jpg\"}', 'upc' => '090266154227', 'provider' => 'bestbuy'],\n ['name' => \"Sennheiser - Over-the-Ear Headphones - Black\", 'description_short' => \"Smart remote with microphone; insulates against noise; powerful neodymium magnets\", 'description_long' => \"Smart remote with microphone; insulates against noise; powerful neodymium magnets\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sennheiser-over-the-ear-headphones-black/1432849.p?id=1218258637184&skuId=1432849', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1432849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1432\\/1432849_rc.jpg\"}', 'upc' => '615104186309', 'provider' => 'bestbuy'],\n ['name' => \"English Suite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/english-suite-cd/1433032.p?id=1702241&skuId=1433032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433032.jpg\"}', 'upc' => '710357536625', 'provider' => 'bestbuy'],\n ['name' => \"Meditations For A Quiet Dawn - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meditations-for-a-quiet-dawn-cd-various/1433041.p?id=1697852&skuId=1433041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433041.jpg\"}', 'upc' => '710357700927', 'provider' => 'bestbuy'],\n ['name' => \"Urbanears - Plattan On-Ear Headphones - True White\", 'description_short' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'description_long' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'price' => 49.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urbanears-plattan-on-ear-headphones-true-white/1433042.p?id=1219492693298&skuId=1433042', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433042_sa.jpg\"}', 'upc' => '7340055310086', 'provider' => 'bestbuy'],\n ['name' => \"Urbanears - Plattan On-Ear Headphones - Moss\", 'description_short' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'description_long' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'price' => 49.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urbanears-plattan-on-ear-headphones-moss/1433139.p?id=1219492693565&skuId=1433139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433139_sa.jpg\"}', 'upc' => '7340055308496', 'provider' => 'bestbuy'],\n ['name' => \"Urbanears - Plattan On-Ear Headphones - Dark Gray\", 'description_short' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'description_long' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'price' => 49.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urbanears-plattan-on-ear-headphones-dark-gray/1433175.p?id=1219492684822&skuId=1433175', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433175_sa.jpg\"}', 'upc' => '7340055310109', 'provider' => 'bestbuy'],\n ['name' => \"Urbanears - Plattan On-Ear Headphones - Indigo\", 'description_short' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'description_long' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'price' => 49.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urbanears-plattan-on-ear-headphones-indigo/1433271.p?id=1219492689769&skuId=1433271', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433271_sa.jpg\"}', 'upc' => '7340055310123', 'provider' => 'bestbuy'],\n ['name' => \"Urbanears - Plattan On-Ear Headphones - Mulberry\", 'description_short' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'description_long' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'price' => 49.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urbanears-plattan-on-ear-headphones-mulberry/1433303.p?id=1219492692643&skuId=1433303', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433303_sa.jpg\"}', 'upc' => '7340055308489', 'provider' => 'bestbuy'],\n ['name' => \"Urbanears - Plattan On-Ear Headphones - Black\", 'description_short' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'description_long' => \"URBANEARS Plattan On-Ear Headphones: ZoundPlug technology; sound isolating; built-in microphone and remote; folding design; adjustable headband; 3.9&#039; tangle-resistant cord; 3.5mm connector\", 'price' => 49.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urbanears-plattan-on-ear-headphones-black/1433507.p?id=1219492691634&skuId=1433507', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433507_sa.jpg\"}', 'upc' => '7340055310093', 'provider' => 'bestbuy'],\n ['name' => \"The Hobbit: The Battle of the Five Armies (3D)(Blu-ray/DVD)(UV Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hobbit-the-battle-of-the-five-armies-3dblu-ray-dvduv-digital-copy/1433689.p?id=3347302&skuId=1433689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433689_sa.jpg\"}', 'upc' => '794043164507', 'provider' => 'bestbuy'],\n ['name' => \"Modal - Hard Shell Case for Apple® iPhone® 6 - Gray/Black\", 'description_short' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6: Compatible with Apple iPhone 6; polycarbonate and TPU materials; two-piece design\", 'description_long' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6: Compatible with Apple iPhone 6; polycarbonate and TPU materials; two-piece design\", 'price' => 19.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/modal-hard-shell-case-for-apple-iphone-6-gray-black/1433707.p?id=1219494252751&skuId=1433707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433707_sa.jpg\"}', 'upc' => '600603180965', 'provider' => 'bestbuy'],\n ['name' => \"Modal - Hard Shell Case for Apple® iPhone® 6 Plus - Gray/Black\", 'description_short' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6 Plus: Compatible with the Apple iPhone 6 Plus; polycarbonate and TPU materials; two-piece design\", 'description_long' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6 Plus: Compatible with the Apple iPhone 6 Plus; polycarbonate and TPU materials; two-piece design\", 'price' => 19.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/modal-hard-shell-case-for-apple-iphone-6-plus-gray-black/1433725.p?id=1219494252747&skuId=1433725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433725_sa.jpg\"}', 'upc' => '600603181009', 'provider' => 'bestbuy'],\n ['name' => \"Modal - Hard Shell Case for Apple® iPhone® 6 Plus - Red/Blue\", 'description_short' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6 Plus: Compatible with the Apple iPhone 6 Plus; polycarbonate and TPU materials; two-piece design\", 'description_long' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6 Plus: Compatible with the Apple iPhone 6 Plus; polycarbonate and TPU materials; two-piece design\", 'price' => 19.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/modal-hard-shell-case-for-apple-iphone-6-plus-red-blue/1433734.p?id=1219494252752&skuId=1433734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433734_sa.jpg\"}', 'upc' => '600603181016', 'provider' => 'bestbuy'],\n ['name' => \"Modal - Hard Shell Case for Apple® iPhone® 6 - White/Dark Blue\", 'description_short' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6: Compatible with Apple iPhone 6; polycarbonate and TPU materials; two-piece design\", 'description_long' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6: Compatible with Apple iPhone 6; polycarbonate and TPU materials; two-piece design\", 'price' => 19.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/modal-hard-shell-case-for-apple-iphone-6-white-dark-blue/1433743.p?id=1219494252750&skuId=1433743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433743_sa.jpg\"}', 'upc' => '600603180996', 'provider' => 'bestbuy'],\n ['name' => \"Modal - Hard Shell Case for Apple® iPhone® 6 Plus - White/Dark Blue\", 'description_short' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6 Plus: Compatible with the Apple iPhone 6 Plus; polycarbonate and TPU materials; two-piece design\", 'description_long' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6 Plus: Compatible with the Apple iPhone 6 Plus; polycarbonate and TPU materials; two-piece design\", 'price' => 19.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/modal-hard-shell-case-for-apple-iphone-6-plus-white-dark-blue/1433752.p?id=1219494252753&skuId=1433752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433752_sa.jpg\"}', 'upc' => '600603181030', 'provider' => 'bestbuy'],\n ['name' => \"Modal - Hard Shell Case for Apple® iPhone® 6 - White/Red\", 'description_short' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6: Compatible with Apple iPhone 6; polycarbonate and TPU materials; two-piece design\", 'description_long' => \"Only at Best Buy\nMODAL Hard Shell Case for Apple iPhone 6: Compatible with Apple iPhone 6; polycarbonate and TPU materials; two-piece design\", 'price' => 19.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/modal-hard-shell-case-for-apple-iphone-6-white-red/1433789.p?id=1219494252748&skuId=1433789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433789_sa.jpg\"}', 'upc' => '600603180989', 'provider' => 'bestbuy'],\n ['name' => \"The Anthology 1964-1971 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 67.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-anthology-1964-1971-cd/1433798.p?id=3307547&skuId=1433798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433798_sa.jpg\"}', 'upc' => '881034121943', 'provider' => 'bestbuy'],\n ['name' => \"Last Dragon [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-dragon-pa-cd/1433807.p?id=3326208&skuId=1433807&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433807', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433807_sa.jpg\"}', 'upc' => '040232177545', 'provider' => 'bestbuy'],\n ['name' => \"Fear and Saturday Night [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fear-and-saturday-night-digipak-cd/1433816.p?id=3315969&skuId=1433816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433816_sa.jpg\"}', 'upc' => '748252255532', 'provider' => 'bestbuy'],\n ['name' => \"The Pale Emperor [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-pale-emperor-pa-cd/1433825.p?id=3333737&skuId=1433825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433825_sa.jpg\"}', 'upc' => '888072363809', 'provider' => 'bestbuy'],\n ['name' => \"The Ultimate Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ultimate-collection-cd/1433834.p?id=3321184&skuId=1433834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433834_sa.jpg\"}', 'upc' => '602547074010', 'provider' => 'bestbuy'],\n ['name' => \"The Balcony [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-balcony-pa-cd/1433843.p?id=3314599&skuId=1433843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433843_sa.jpg\"}', 'upc' => '088057993360', 'provider' => 'bestbuy'],\n ['name' => \"Sadist Hitz [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sadist-hitz-pa-cd/1433852.p?id=3310017&skuId=1433852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433852_sa.jpg\"}', 'upc' => '881034152824', 'provider' => 'bestbuy'],\n ['name' => \"Secret of the Tomb [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secret-of-the-tomb-original-soundtrack-cd-original-soundtrack/1433889.p?id=3314637&skuId=1433889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433889_sa.jpg\"}', 'upc' => '030206732085', 'provider' => 'bestbuy'],\n ['name' => \"Dormant Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dormant-heart-cd/1433898.p?id=3321385&skuId=1433898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '727361331122', 'provider' => 'bestbuy'],\n ['name' => \"Top 25 Praise Songs 2015 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/top-25-praise-songs-2015-cd/1433907.p?id=3321155&skuId=1433907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433907_sa.jpg\"}', 'upc' => '738597225925', 'provider' => 'bestbuy'],\n ['name' => \"Pale Emperor [Deluxe Edition] [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pale-emperor-deluxe-edition-pa-digipak-cd/1433916.p?id=3333711&skuId=1433916&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433916', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433916_sa.jpg\"}', 'upc' => '888072368569', 'provider' => 'bestbuy'],\n ['name' => \"Super Critical - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-critical-cd/1433925.p?id=3277492&skuId=1433925&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433925', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '5051083083638', 'provider' => 'bestbuy'],\n ['name' => \"Sand in the Sky [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sand-in-the-sky-digipak-cd/1433934.p?id=3326201&skuId=1433934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433934_sa.jpg\"}', 'upc' => '020286217114', 'provider' => 'bestbuy'],\n ['name' => \"Top 10 Praise Songs: Creation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/top-10-praise-songs-creation-cd/1433943.p?id=3321168&skuId=1433943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433943_sa.jpg\"}', 'upc' => '738597224829', 'provider' => 'bestbuy'],\n ['name' => \"The Hobbit: The Battle of the Five Armies (Blu-ray/DVD)(UV Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hobbit-the-battle-of-the-five-armies-blu-ray-dvduv-digital-copy/1433952.p?id=3347302&skuId=1433952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433952_sa.jpg\"}', 'upc' => '794043165016', 'provider' => 'bestbuy'],\n ['name' => \"Fitbug - Orb Activity Tracker - White\", 'description_short' => \"FITBUG Orb Activity Tracker: Measures steps, aerobic steps, aerobic minutes, calories burned, active hours, average speed, distance and sleep; wristband and belt clip wearing options; Bluetooth Smart 4.0, iOS and Android 4.3 KitKat connectivity\", 'description_long' => \"FITBUG Orb Activity Tracker: Measures steps, aerobic steps, aerobic minutes, calories burned, active hours, average speed, distance and sleep; wristband and belt clip wearing options; Bluetooth Smart 4.0, iOS and Android 4.3 KitKat connectivity\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fitbug-orb-activity-tracker-white/1433998.p?id=1219494263009&skuId=1433998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1433998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1433\\/1433998_sa.jpg\"}', 'upc' => '5060097800193', 'provider' => 'bestbuy'],\n ['name' => \"Fitbug - WoW Scale - White\", 'description_short' => \"FITBUG WoW Scale: Measures weight from 64 to 553 lbs.; Bluetooth Smart V4 connectivity; compatible with select iOS and Android devices; 5-user capability; LCD\", 'description_long' => \"FITBUG WoW Scale: Measures weight from 64 to 553 lbs.; Bluetooth Smart V4 connectivity; compatible with select iOS and Android devices; 5-user capability; LCD\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fitbug-wow-scale-white/1434014.p?id=1219494261934&skuId=1434014', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434014_rc.jpg\"}', 'upc' => '5060097800155', 'provider' => 'bestbuy'],\n ['name' => \"The Hobbit: The Battle of the Five Armies (DVD)(UV Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hobbit-the-battle-of-the-five-armies-dvduv-digital-copy/1434023.p?id=3347302&skuId=1434023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434023.jpg\"}', 'upc' => '794043164477', 'provider' => 'bestbuy'],\n ['name' => \"Exhale: Core Fusion - Barre Basics for Beginners (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exhale-core-fusion-barre-basics-for-beginners-dvd/1434069.p?id=2660513&skuId=1434069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '054961204991', 'provider' => 'bestbuy'],\n ['name' => \"chicBuds - Slim Power Portable Charger - Turquoise\", 'description_short' => \"CHICBUDS Slim Power Portable Charger: Compatible with most USB-enabled cell phones and other devices; 2200 mAh lithium-polymer battery; USB 2.0 interface; battery-life indicator lights; ultracompact design; includes a USB cable\", 'description_long' => \"CHICBUDS Slim Power Portable Charger: Compatible with most USB-enabled cell phones and other devices; 2200 mAh lithium-polymer battery; USB 2.0 interface; battery-life indicator lights; ultracompact design; includes a USB cable\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicbuds-slim-power-portable-charger-turquoise/1434096.p?id=1219494265535&skuId=1434096', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434096_sa.jpg\"}', 'upc' => '813240011770', 'provider' => 'bestbuy'],\n ['name' => \"chicBuds - Slim Power Portable Charger - Black/White\", 'description_short' => \"CHICBUDS Slim Power Portable Charger: Compatible with most USB-enabled cell phones and other devices; 2200 mAh lithium-polymer battery; USB 2.0 interface; battery-life indicator lights; ultracompact design; includes a USB cable\", 'description_long' => \"CHICBUDS Slim Power Portable Charger: Compatible with most USB-enabled cell phones and other devices; 2200 mAh lithium-polymer battery; USB 2.0 interface; battery-life indicator lights; ultracompact design; includes a USB cable\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicbuds-slim-power-portable-charger-black-white/1434147.p?id=1219494263313&skuId=1434147', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434147_sa.jpg\"}', 'upc' => '813240011886', 'provider' => 'bestbuy'],\n ['name' => \"chicBuds - Slim Power Portable Charger - Black\", 'description_short' => \"CHICBUDS Slim Power Portable Charger: Compatible with most USB-enabled cell phones and other devices; 2200 mAh lithium-polymer battery; USB 2.0 interface; battery-life indicator lights; ultracompact design; includes a USB cable\", 'description_long' => \"CHICBUDS Slim Power Portable Charger: Compatible with most USB-enabled cell phones and other devices; 2200 mAh lithium-polymer battery; USB 2.0 interface; battery-life indicator lights; ultracompact design; includes a USB cable\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicbuds-slim-power-portable-charger-black/1434156.p?id=1219494268179&skuId=1434156', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434156_sa.jpg\"}', 'upc' => '813240011862', 'provider' => 'bestbuy'],\n ['name' => \"chicBuds - Slim Power Portable Charger - Pink/White\", 'description_short' => \"CHICBUDS Slim Power Portable Charger: Compatible with most USB-enabled cell phones and other devices; 2200 mAh lithium-polymer battery; USB 2.0 interface; battery-life indicator lights; ultracompact design; includes a USB cable\", 'description_long' => \"CHICBUDS Slim Power Portable Charger: Compatible with most USB-enabled cell phones and other devices; 2200 mAh lithium-polymer battery; USB 2.0 interface; battery-life indicator lights; ultracompact design; includes a USB cable\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicbuds-slim-power-portable-charger-pink-white/1434165.p?id=1219494264485&skuId=1434165', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434165_sa.jpg\"}', 'upc' => '813240011787', 'provider' => 'bestbuy'],\n ['name' => \"Diamonds (Best Of) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diamonds-best-of-cd/1434237.p?id=1443030&skuId=1434237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434237_sa.jpg\"}', 'upc' => '731451220623', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - AF-S DX NIKKOR 18-105mm f/3.5-5.6G ED VR Standard Zoom Lens - Black\", 'description_short' => \"Compatible with select Nikon DSLR cameras; Vibration Reduction image stabilization; SWM (Silent Wave Motor); ED (Extra-low Dispersion) glass; Internal Focus; accommodates 67mm filters\", 'description_long' => \"Compatible with select Nikon DSLR cameras; Vibration Reduction image stabilization; SWM (Silent Wave Motor); ED (Extra-low Dispersion) glass; Internal Focus; accommodates 67mm filters\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-af-s-dx-nikkor-18-105mm-f-3-5-5-6g-ed-vr-standard-zoom-lens-black/1434374.p?id=1218258638444&skuId=1434374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434374_rc.jpg\"}', 'upc' => '018208021796', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - AF-S NIKKOR 14-24mm f/2.8G ED Ultra-Wide Zoom Lens - Black\", 'description_short' => \"Compatible with select Nikon DSLR cameras; SWM (Silent Wave Motor); ED (Extra-low Dispersion) glass; Internal Focus; Nano Crystal Coat antireflective coating; Super Integrated Coating\", 'description_long' => \"Compatible with select Nikon DSLR cameras; SWM (Silent Wave Motor); ED (Extra-low Dispersion) glass; Internal Focus; Nano Crystal Coat antireflective coating; Super Integrated Coating\", 'price' => 1899.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-af-s-nikkor-14-24mm-f-2-8g-ed-ultra-wide-zoom-lens-black/1434383.p?id=1218258640980&skuId=1434383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434383_rc.jpg\"}', 'upc' => '018208021635', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - AF-S NIKKOR 16-35mm f/4G ED VR Ultra-Wide Zoom Lens - Black\", 'description_short' => \"Compatible with Nikon FX SLR cameras; Nikon VR image stabilization; nano crystal coat; Nikon Silent Wave Motor; 16-35mm focal length; 5.8x zoom\", 'description_long' => \"Compatible with Nikon FX SLR cameras; Nikon VR image stabilization; nano crystal coat; Nikon Silent Wave Motor; 16-35mm focal length; 5.8x zoom\", 'price' => 1099.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-af-s-nikkor-16-35mm-f-4g-ed-vr-ultra-wide-zoom-lens-black/1434392.p?id=1218258637647&skuId=1434392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434392_sa.jpg\"}', 'upc' => '018208021826', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - AF-S DX Micro Nikkor 85mm f/3.5G ED VR Telephoto Lens for Nikon DX SLR Cameras - Black\", 'description_short' => \"Compatible with Nikon DX SLR cameras; Nikon VR image stabilization; Nikon Super Integrated Coating; Nikon Silent Wave Motor; 85mm focal length; 5.8x zoom\", 'description_long' => \"Compatible with Nikon DX SLR cameras; Nikon VR image stabilization; Nikon Super Integrated Coating; Nikon Silent Wave Motor; 85mm focal length; 5.8x zoom\", 'price' => 529.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-af-s-dx-micro-nikkor-85mm-f-3-5g-ed-vr-telephoto-lens-for-nikon-dx-slr-cameras-black/1434407.p?id=1218258636363&skuId=1434407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434407_sa.jpg\"}', 'upc' => '018208021901', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 229.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1434416.p?id=1218258640048&skuId=1434416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400014344167', 'provider' => 'bestbuy'],\n ['name' => \"Zooropa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zooropa-cd/1434567.p?id=102705&skuId=1434567&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434567', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434567_sa.jpg\"}', 'upc' => '731451804724', 'provider' => 'bestbuy'],\n ['name' => \"Dance Dance Revolution: Hottest Party - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Have a hot dance party in your home\", 'description_long' => \"Have a hot dance party in your home\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-dance-revolution-hottest-party-pre-owned-nintendo-wii/1434729.p?id=1218258638731&skuId=1434729&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434729', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434729_sa.jpg\"}', 'upc' => '799007786719', 'provider' => 'bestbuy'],\n ['name' => \"Resident Evil 4: Wii Edition - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Blast your way through unimaginable horrors\", 'description_long' => \"Blast your way through unimaginable horrors\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resident-evil-4-wii-edition-pre-owned-nintendo-wii/1434774.p?id=1218258635758&skuId=1434774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434774_sa.jpg\"}', 'upc' => '799007786764', 'provider' => 'bestbuy'],\n ['name' => \"Dream Pinball 3D - PRE-OWNED - Nintendo DS\", 'description_short' => \"Live the pinball experience of your dreams\", 'description_long' => \"Live the pinball experience of your dreams\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dream-pinball-3d-pre-owned-nintendo-ds/1434792.p?id=1218258634893&skuId=1434792&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434792', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434792_sa.jpg\"}', 'upc' => '799007786788', 'provider' => 'bestbuy'],\n ['name' => \"Turning Point: Fall of Liberty - PRE-OWNED - PlayStation 3\", 'description_short' => \"Do your part to rid America of a Nazi occupation\", 'description_long' => \"Do your part to rid America of a Nazi occupation\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turning-point-fall-of-liberty-pre-owned-playstation-3/1434801.p?id=1218258636772&skuId=1434801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434801_sa.jpg\"}', 'upc' => '799007786795', 'provider' => 'bestbuy'],\n ['name' => \"Destroy All Humans: Path of the Furon - PRE-OWNED - Xbox 360\", 'description_short' => \"Give those pesky humans what they&#039;ve got coming to them\", 'description_long' => \"Give those pesky humans what they&#039;ve got coming to them\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/destroy-all-humans-path-of-the-furon-pre-owned-xbox-360/1434865.p?id=1218258634538&skuId=1434865&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434865_sa.jpg\"}', 'upc' => '799007786832', 'provider' => 'bestbuy'],\n ['name' => \"The History Channel: Battle for the Pacific — PRE-OWNED - PlayStation 3\", 'description_short' => \"Overcome the enemy at all costs\", 'description_long' => \"Overcome the enemy at all costs\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-history-channel-battle-for-the-pacific-pre-owned-playstation-3/1434901.p?id=1218258635419&skuId=1434901&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434901', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434901.jpg\"}', 'upc' => '799007786870', 'provider' => 'bestbuy'],\n ['name' => \"Madagascar: Escape 2 Africa - PRE-OWNED - Nintendo DS\", 'description_short' => \"Return to Madagascar for a thrilling new adventure\", 'description_long' => \"Return to Madagascar for a thrilling new adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madagascar-escape-2-africa-pre-owned-nintendo-ds/1434947.p?id=1218258633811&skuId=1434947&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434947_sa.jpg\"}', 'upc' => '799007786900', 'provider' => 'bestbuy'],\n ['name' => \"Denon - Music Maniac Earbud Headphones - Black/Silver\", 'description_short' => \"Noise isolation; single-balanced armature drivers; passive crossover; in-line remote and microphone; zinc die-cast housing; double-layer jacket cable\", 'description_long' => \"Noise isolation; single-balanced armature drivers; passive crossover; in-line remote and microphone; zinc die-cast housing; double-layer jacket cable\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/denon-music-maniac-earbud-headphones-black-silver/1434974.p?id=1219051876731&skuId=1434974', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1434974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1434\\/1434974_sa.jpg\"}', 'upc' => '883795002653', 'provider' => 'bestbuy'],\n ['name' => \"ZTE - Nubia Z5S Mini 4G Cell Phone (Unlocked) - White/Black\", 'description_short' => \"Qualcomm Snapdragon 400 Cortex-A7 1.2GHz quad-core processorAndroid 4.3 Jelly Bean operating system4G LTE speedWi-Fi4.7&quot; IGZO capacitive touch screen\", 'description_long' => \"Qualcomm Snapdragon 400 Cortex-A7 1.2GHz quad-core processorAndroid 4.3 Jelly Bean operating system4G LTE speedWi-Fi4.7&quot; IGZO capacitive touch screen\", 'price' => 179.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zte-nubia-z5s-mini-4g-cell-phone-unlocked-white-black/1435004.p?id=1219494264219&skuId=1435004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1435004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1435\\/1435004_sa.jpg\"}', 'upc' => '700064135457', 'provider' => 'bestbuy'],\n ['name' => \"Yazzie Girl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yazzie-girl-cd/1435272.p?id=76315&skuId=1435272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1435272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1435\\/1435272_sa.jpg\"}', 'upc' => '729337053427', 'provider' => 'bestbuy'],\n ['name' => \"Picture of a Thousand Faces - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/picture-of-a-thousand-faces-cd/1435290.p?id=83195&skuId=1435290&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1435290', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1435\\/1435290_sa.jpg\"}', 'upc' => '075596146623', 'provider' => 'bestbuy'],\n ['name' => \"A Single Woman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-single-woman-cd/1435343.p?id=70948&skuId=1435343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1435343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1435\\/1435343_sa.jpg\"}', 'upc' => '075596150323', 'provider' => 'bestbuy'],\n ['name' => \"In My Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-my-life-cd/1435940.p?id=69003&skuId=1435940&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1435940', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1435\\/1435940.jpg\"}', 'upc' => '013431456124', 'provider' => 'bestbuy'],\n ['name' => \"Nickelodeon Favorites: Rootin Tootin Wild West (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nickelodeon-favorites-rootin-tootin-wild-west-dvd/1436008.p?id=2707345&skuId=1436008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1436008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1436\\/1436008.jpg\"}', 'upc' => '032429135155', 'provider' => 'bestbuy'],\n ['name' => \"The Shot Calla - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-shot-calla-cd/1436164.p?id=248415&skuId=1436164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1436164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1436\\/1436164_sa.jpg\"}', 'upc' => '744687171522', 'provider' => 'bestbuy'],\n ['name' => \"No Absolute Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-absolute-time-cd/1436360.p?id=70100&skuId=1436360&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1436360', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1436\\/1436360_sa.jpg\"}', 'upc' => '075678250026', 'provider' => 'bestbuy'],\n ['name' => \"Our 25th Year - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/our-25th-year-cd/1436529.p?id=68898&skuId=1436529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1436529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1436\\/1436529_sa.jpg\"}', 'upc' => '013431455929', 'provider' => 'bestbuy'],\n ['name' => \"16 Exitos de Oro - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-exitos-de-oro-cd/1436814.p?id=104999&skuId=1436814&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1436814', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1436\\/1436814_sa.jpg\"}', 'upc' => '042281428425', 'provider' => 'bestbuy'],\n ['name' => \"The Bishop's Wife (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bishops-wife-dvd/1437093.p?id=41724&skuId=1437093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437093_sa.jpg\"}', 'upc' => '883929279593', 'provider' => 'bestbuy'],\n ['name' => \"Across the Universe (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/across-the-universe-dvd/1437126.p?id=1783650&skuId=1437126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437126_sa.jpg\"}', 'upc' => '043396330221', 'provider' => 'bestbuy'],\n ['name' => \"Ghost Story aka Circle of Fear: The Complete Series [6 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ghost-story-aka-circle-of-fear-the-complete-series-6-discs-dvd/1437144.p?id=2524153&skuId=1437144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '043396391949', 'provider' => 'bestbuy'],\n ['name' => \"Wolf Children (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wolf-children-dvd-2-disc/1437153.p?id=2751339&skuId=1437153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437153_sa.jpg\"}', 'upc' => '704400092411', 'provider' => 'bestbuy'],\n ['name' => \"Into The Woods (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-the-woods-dvd/1437162.p?id=3351323&skuId=1437162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437162_sa.jpg\"}', 'upc' => '786936845884', 'provider' => 'bestbuy'],\n ['name' => \"Into The Woods (Blu-ray)(Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-the-woods-blu-raydigital-copy/1437171.p?id=3351323&skuId=1437171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437171_sa.jpg\"}', 'upc' => '786936845860', 'provider' => 'bestbuy'],\n ['name' => \"SremmLife [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sremmlife-pa-cd/1437199.p?id=3333692&skuId=1437199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437199_sa.jpg\"}', 'upc' => '602547155504', 'provider' => 'bestbuy'],\n ['name' => \"Neon Nights: 30 Years of Heaven & Hell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/neon-nights-30-years-of-heaven-hell-cd/1437371.p?id=2155220&skuId=1437371&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437371_sa.jpg\"}', 'upc' => '826992504629', 'provider' => 'bestbuy'],\n ['name' => \"Bare Bones [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bare-bones-digipak-cd/1437459.p?id=2159888&skuId=1437459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437459.jpg\"}', 'upc' => '602527535067', 'provider' => 'bestbuy'],\n ['name' => \"Pink Friday [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pink-friday-pa-cd/1437477.p?id=2162003&skuId=1437477&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437477_sa.jpg\"}', 'upc' => '602527541846', 'provider' => 'bestbuy'],\n ['name' => \"The Letter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-letter-cd/1437495.p?id=2167739&skuId=1437495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437495_sa.jpg\"}', 'upc' => '602527503950', 'provider' => 'bestbuy'],\n ['name' => \"Absolute Dissent - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/absolute-dissent-cd/1437501.p?id=2159889&skuId=1437501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437501_sa.jpg\"}', 'upc' => '602527341729', 'provider' => 'bestbuy'],\n ['name' => \"5.0 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-0-pa-cd/1437529.p?id=2159890&skuId=1437529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437529_sa.jpg\"}', 'upc' => '602527535418', 'provider' => 'bestbuy'],\n ['name' => \"Angel Witch: 30th Anniversary Edition [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/angel-witch-30th-anniversary-edition-slipcase-cd/1437547.p?id=2163533&skuId=1437547&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437547_sa.jpg\"}', 'upc' => '602527410494', 'provider' => 'bestbuy'],\n ['name' => \"AB III - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ab-iii-cd/1437592.p?id=2159447&skuId=1437592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437592_sa.jpg\"}', 'upc' => '850597003003', 'provider' => 'bestbuy'],\n ['name' => \"Viva Elvis: The Album [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/viva-elvis-the-album-lp-vinyl/1437708.p?id=2159448&skuId=1437708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437708_sa.jpg\"}', 'upc' => '886977676611', 'provider' => 'bestbuy'],\n ['name' => \"Burlesque - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burlesque-cd-original-soundtrack/1437726.p?id=2157215&skuId=1437726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437726_sa.jpg\"}', 'upc' => '886978020529', 'provider' => 'bestbuy'],\n ['name' => \"Champagne Jam - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/champagne-jam-cd/1437733.p?id=1502940&skuId=1437733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437733_sa.jpg\"}', 'upc' => '042282966223', 'provider' => 'bestbuy'],\n ['name' => \"West Coast Seattle Boy:... [CD & DVD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/west-coast-seattle-boy-cd-dvd-digipak-cd/1437735.p?id=2144097&skuId=1437735&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437735', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437735.jpg\"}', 'upc' => '886977722028', 'provider' => 'bestbuy'],\n ['name' => \"The Wild Trapeze - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wild-trapeze-cd/1437744.p?id=2138295&skuId=1437744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437744_sa.jpg\"}', 'upc' => '886977429422', 'provider' => 'bestbuy'],\n ['name' => \"Kind of Blue [180-Gram Vinyl] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kind-of-blue-180-gram-vinyl-lp-vinyl/1437753.p?id=2156715&skuId=1437753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1883\\/18838779.jpg\"}', 'upc' => '886976805715', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits... So Far!!! [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-so-far-pa-cd/1437771.p?id=2159210&skuId=1437771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437771_sa.jpg\"}', 'upc' => '886978065728', 'provider' => 'bestbuy'],\n ['name' => \"Mystic Voyage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mystic-voyage-cd/1437779.p?id=63858&skuId=1437779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437779_sa.jpg\"}', 'upc' => '731451956720', 'provider' => 'bestbuy'],\n ['name' => \"The Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hits-cd/1437799.p?id=2157200&skuId=1437799&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437799', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437799.jpg\"}', 'upc' => '886978081124', 'provider' => 'bestbuy'],\n ['name' => \"Promise [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/promise-lp-lp-vinyl/1437808.p?id=2147270&skuId=1437808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437808_sa.jpg\"}', 'upc' => '886977617713', 'provider' => 'bestbuy'],\n ['name' => \"West Coast Seattle Boy [CD & DVD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/west-coast-seattle-boy-cd-dvd-cd/1437826.p?id=2144102&skuId=1437826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437826_sa.jpg\"}', 'upc' => '886977692727', 'provider' => 'bestbuy'],\n ['name' => \"Swing That Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swing-that-music-cd/1437840.p?id=98653&skuId=1437840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437840_sa.jpg\"}', 'upc' => '089408331725', 'provider' => 'bestbuy'],\n ['name' => \"Panamax - PFPower Max In-Wall 1-Outlet Surge Protector\", 'description_short' => \"1350 joules of protection; 1 surge-protected outlet; L-N, L-G and N-G protection modes; pass-through insert; keystone 2-port adapter; Decora adapter; 11&quot; flat-plug adapter cord\", 'description_long' => \"1350 joules of protection; 1 surge-protected outlet; L-N, L-G and N-G protection modes; pass-through insert; keystone 2-port adapter; Decora adapter; 11&quot; flat-plug adapter cord\", 'price' => 69.99, 'sale_price' => 49.99, 'url' => 'http://www.bestbuy.com/site/panamax-pfpower-max-in-wall-1-outlet-surge-protector/1437853.p?id=1218884698194&skuId=1437853', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437853_rc.jpg\"}', 'upc' => '050616008471', 'provider' => 'bestbuy'],\n ['name' => \"Jazzmenco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazzmenco-cd/1437859.p?id=68369&skuId=1437859&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437859', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437859.jpg\"}', 'upc' => '089408335327', 'provider' => 'bestbuy'],\n ['name' => \"I Remember Brother Ray [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-remember-brother-ray-lp-vinyl/1437899.p?id=2163542&skuId=1437899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437899_sa.jpg\"}', 'upc' => '632375713515', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of the Rascals [Rhino] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-the-rascals-rhino-cd/1437911.p?id=96065&skuId=1437911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437911.jpg\"}', 'upc' => '081227127725', 'provider' => 'bestbuy'],\n ['name' => \"My Romance [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-romance-lp-vinyl/1437917.p?id=2163541&skuId=1437917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437917_sa.jpg\"}', 'upc' => '632375703318', 'provider' => 'bestbuy'],\n ['name' => \"Art - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-cd/1437926.p?id=2163535&skuId=1437926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437926.jpg\"}', 'upc' => '673794236223', 'provider' => 'bestbuy'],\n ['name' => \"Thomas Schumacher Presents Get Physical 8th... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thomas-schumacher-presents-get-physical-8th-cd/1437935.p?id=2163539&skuId=1437935&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437935', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437935_sa.jpg\"}', 'upc' => '844216000016', 'provider' => 'bestbuy'],\n ['name' => \"Slammin' & Jammin' [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slammin-jammin-lp-vinyl/1437953.p?id=2163544&skuId=1437953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437953_sa.jpg\"}', 'upc' => '633842200811', 'provider' => 'bestbuy'],\n ['name' => \"Boston [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boston-lp-lp-vinyl/1437962.p?id=2163545&skuId=1437962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437962_sa.jpg\"}', 'upc' => '829421341888', 'provider' => 'bestbuy'],\n ['name' => \"Silk Degrees [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/silk-degrees-lp-vinyl/1437971.p?id=2163543&skuId=1437971&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1437971', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1437\\/1437971_sa.jpg\"}', 'upc' => '829421339205', 'provider' => 'bestbuy'],\n ['name' => \"Everybody Loves the Sunshine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everybody-loves-the-sunshine-cd/1438073.p?id=63857&skuId=1438073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1438073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1438\\/1438073_sa.jpg\"}', 'upc' => '042283384422', 'provider' => 'bestbuy'],\n ['name' => \"Bubble & Scrape - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bubble-scrape-cd/1438117.p?id=98209&skuId=1438117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1438117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1438\\/1438117_sa.jpg\"}', 'upc' => '098787019223', 'provider' => 'bestbuy'],\n ['name' => \"Aretha Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aretha-now-cd/1438153.p?id=82839&skuId=1438153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1438153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1438\\/1438153_sa.jpg\"}', 'upc' => '081227127329', 'provider' => 'bestbuy'],\n ['name' => \"Chesky Jazz Sampler and Audiophile Test... - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chesky-jazz-sampler-and-audiophile-test-various-cd/1438224.p?id=3356092&skuId=1438224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1438224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1438\\/1438224.jpg\"}', 'upc' => '090368003720', 'provider' => 'bestbuy'],\n ['name' => \"Good Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-friends-cd/1438233.p?id=108664&skuId=1438233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1438233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1438\\/1438233_sa.jpg\"}', 'upc' => '090368009722', 'provider' => 'bestbuy'],\n ['name' => \"Plays Medtner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-medtner-cd/1438359.p?id=2068245&skuId=1438359&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1438359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1438\\/1438359.jpg\"}', 'upc' => '090368100122', 'provider' => 'bestbuy'],\n ['name' => \"Western Wind Masses - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/western-wind-masses-cd/1438527.p?id=1779003&skuId=1438527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1438527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '028945492728', 'provider' => 'bestbuy'],\n ['name' => \"King Kong: Jean-Luc Ponty Plays the Music of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-kong-jean-luc-ponty-plays-the-music-of-cd/1438956.p?id=70096&skuId=1438956&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1438956', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1438\\/1438956_sa.jpg\"}', 'upc' => '077778953920', 'provider' => 'bestbuy'],\n ['name' => \"Born Free - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-free-cd/1439236.p?id=2156483&skuId=1439236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439236_sa.jpg\"}', 'upc' => '075678957604', 'provider' => 'bestbuy'],\n ['name' => \"Born Free [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-free-lp-vinyl/1439245.p?id=2159891&skuId=1439245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439245_sa.jpg\"}', 'upc' => '075678941412', 'provider' => 'bestbuy'],\n ['name' => \"Phantazia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/phantazia-cd/1439358.p?id=70077&skuId=1439358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439358_sa.jpg\"}', 'upc' => '077778954323', 'provider' => 'bestbuy'],\n ['name' => \"Lost Hotel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-hotel-cd/1439388.p?id=2160687&skuId=1439388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439388.jpg\"}', 'upc' => '662582714128', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Blue Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-blue-light-cd/1439397.p?id=2160688&skuId=1439397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439397.jpg\"}', 'upc' => '662582714029', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1439438.p?id=82663&skuId=1439438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439438_sa.jpg\"}', 'upc' => '715187762527', 'provider' => 'bestbuy'],\n ['name' => \"Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classics-cd/1439474.p?id=88963&skuId=1439474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439474.jpg\"}', 'upc' => '715187762923', 'provider' => 'bestbuy'],\n ['name' => \"Cut the Cake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cut-the-cake-cd/1439688.p?id=73514&skuId=1439688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439688_sa.jpg\"}', 'upc' => '081227127121', 'provider' => 'bestbuy'],\n ['name' => \"Blow Your Face Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blow-your-face-out-cd/1439759.p?id=83444&skuId=1439759&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439759_sa.jpg\"}', 'upc' => '081227127824', 'provider' => 'bestbuy'],\n ['name' => \"The Lady Killer [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lady-killer-pa-cd/1439797.p?id=2156491&skuId=1439797&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439797', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439797_sa.jpg\"}', 'upc' => '075678906015', 'provider' => 'bestbuy'],\n ['name' => \"Revlon - Curls Infusion Spiral Curling Iron - Pink\", 'description_short' => \"Titanium technology; 400&#176; high heat; temperature sensors; instant heat recovery; on/off switch; power indicator light; tangle-resistant swivel cord\", 'description_long' => \"Titanium technology; 400&#176; high heat; temperature sensors; instant heat recovery; on/off switch; power indicator light; tangle-resistant swivel cord\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revlon-curls-infusion-spiral-curling-iron-pink/1439879.p?id=1219051877712&skuId=1439879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439879_500x500_sa.jpg\"}', 'upc' => '761318130185', 'provider' => 'bestbuy'],\n ['name' => \"Sigma - 180mm f/2.8 APO EX DG OS HSM Macro Lens for Select Canon Cameras - Black\", 'description_short' => \"Compatible with select Canon full-frame and APS-C-format DSLR cameras and 35mm SLR film cameras; OS (optical stabilizer); 86mm filter size; 1.5&#039; minimum focus distance\", 'description_long' => \"Compatible with select Canon full-frame and APS-C-format DSLR cameras and 35mm SLR film cameras; OS (optical stabilizer); 86mm filter size; 1.5&#039; minimum focus distance\", 'price' => 1699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sigma-180mm-f-2-8-apo-ex-dg-os-hsm-macro-lens-for-select-canon-cameras-black/1439915.p?id=1219051875641&skuId=1439915', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439915_sa.jpg\"}', 'upc' => '085126107543', 'provider' => 'bestbuy'],\n ['name' => \"TERK - Omnidirectional Flat-Panel HDTV Indoor Antenna - Black\", 'description_short' => \"Designed for use with most flat-panel HDTVs; 3-way mounting bracket; 360&#176; reception pattern; removable amplifier\", 'description_long' => \"Designed for use with most flat-panel HDTVs; 3-way mounting bracket; 360&#176; reception pattern; removable amplifier\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/terk-omnidirectional-flat-panel-hdtv-indoor-antenna-black/1439997.p?id=1219051875628&skuId=1439997&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1439997', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1439\\/1439997_sa.jpg\"}', 'upc' => '044476105135', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Self-Cleaning Slide-In Electric Coil Top Range - White\", 'description_short' => \"Touch-activated electronic oven controls; 4 elements; two 1250W and two 2150W elements; AccuBake temperature management; rapid preheat; Frozen Bake technology\", 'description_long' => \"Touch-activated electronic oven controls; 4 elements; two 1250W and two 2150W elements; AccuBake temperature management; rapid preheat; Frozen Bake technology\", 'price' => 1299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-self-cleaning-slide-in-electric-coil-top-range-white/1440087.p?id=1219494683823&skuId=1440087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440087_sa.jpg\"}', 'upc' => '883049330020', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Self-Cleaning Slide-In Electric Coil Top Range - Stainless Steel\", 'description_short' => \"Touch-activated electronic oven controls; 4 elements; two 1250W and two 2150W elements; AccuBake temperature management; rapid preheat; Frozen Bake technology\", 'description_long' => \"Touch-activated electronic oven controls; 4 elements; two 1250W and two 2150W elements; AccuBake temperature management; rapid preheat; Frozen Bake technology\", 'price' => 1349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-self-cleaning-slide-in-electric-coil-top-range-stainless-steel/1440096.p?id=1219494701017&skuId=1440096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440096_sa.jpg\"}', 'upc' => '883049330044', 'provider' => 'bestbuy'],\n ['name' => \"Schecter - Hard Shell Guitar Case for Schecter Solo 6 Guitars - Black\", 'description_short' => \"Compatible with Schecter Solo 6 series guitars; ATA approved case; form fitted; rugged polyethylene exterior; crushed velvet interior; locking drawbolt latches; 3 accessory compartments\", 'description_long' => \"Compatible with Schecter Solo 6 series guitars; ATA approved case; form fitted; rugged polyethylene exterior; crushed velvet interior; locking drawbolt latches; 3 accessory compartments\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/schecter-hard-shell-guitar-case-for-schecter-solo-6-guitars-black/1440107.p?id=1218258634729&skuId=1440107', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440107_rc.jpg\"}', 'upc' => '839212001822', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Self-Cleaning Slide-In Electric Coil Top Range - Black\", 'description_short' => \"Touch-activated electronic oven controls; 4 elements; two 1250W and two 2150W elements; AccuBake temperature management; rapid preheat; Frozen Bake technology\", 'description_long' => \"Touch-activated electronic oven controls; 4 elements; two 1250W and two 2150W elements; AccuBake temperature management; rapid preheat; Frozen Bake technology\", 'price' => 1299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-self-cleaning-slide-in-electric-coil-top-range-black/1440129.p?id=1219494704291&skuId=1440129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440129_sa.jpg\"}', 'upc' => '883049330037', 'provider' => 'bestbuy'],\n ['name' => \"Schecter - Hard Shell Case for Most Schecter Bass Guitars - Black\", 'description_short' => \"Compatible with Schecter bass guitars; polyethylene plastic exterior, blue crushed velvet plush interior; holds and protects your guitar\", 'description_long' => \"Compatible with Schecter bass guitars; polyethylene plastic exterior, blue crushed velvet plush interior; holds and protects your guitar\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/schecter-hard-shell-case-for-most-schecter-bass-guitars-black/1440134.p?id=1218258635492&skuId=1440134', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440134_rc.jpg\"}', 'upc' => '839212009378', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Self-Cleaning Slide-In Electric Convection Range - Black Ice\", 'description_short' => \"Touch-activated electronic controls; 5 elements; 100W, 700W, 1200W, 2500W and 3200W elements; AccuBake temperature management system; Frozen Bake and TimeSavor Plus technologies; AquaLift self-cleaning system\", 'description_long' => \"Touch-activated electronic controls; 5 elements; 100W, 700W, 1200W, 2500W and 3200W elements; AccuBake temperature management system; Frozen Bake and TimeSavor Plus technologies; AquaLift self-cleaning system\", 'price' => 1799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-self-cleaning-slide-in-electric-convection-range-black-ice/1440138.p?id=1219494691491&skuId=1440138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440138_sa.jpg\"}', 'upc' => '883049330129', 'provider' => 'bestbuy'],\n ['name' => \"The Houses October Built (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-houses-october-built-blu-ray-disc/1440165.p?id=3322679&skuId=1440165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440165_sa.jpg\"}', 'upc' => '014381001853', 'provider' => 'bestbuy'],\n ['name' => \"Duck Commander: Before The Dynasty (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duck-commander-before-the-dynasty-dvd/1440192.p?id=3315664&skuId=1440192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440192.jpg\"}', 'upc' => '031398209713', 'provider' => 'bestbuy'],\n ['name' => \"Care Bears: Care-A-Thon Games (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/care-bears-care-a-thon-games-dvd/1440225.p?id=2858415&skuId=1440225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440225.jpg\"}', 'upc' => '031398186830', 'provider' => 'bestbuy'],\n ['name' => \"Pulling Strings (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pulling-strings-dvd-ultraviolet-digital-copy/1440243.p?id=2860020&skuId=1440243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '031398186427', 'provider' => 'bestbuy'],\n ['name' => \"Curse Of Oak Island (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/curse-of-oak-island-dvd/1440289.p?id=3257544&skuId=1440289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '031398202424', 'provider' => 'bestbuy'],\n ['name' => \"Christmas To Remember - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-to-remember-cd/1440301.p?id=2153954&skuId=1440301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440301.jpg\"}', 'upc' => '625282500422', 'provider' => 'bestbuy'],\n ['name' => \"An Unfinished Life (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-unfinished-life-blu-ray-disc/1440302.p?id=1517052&skuId=1440302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440302_sa.jpg\"}', 'upc' => '031398174349', 'provider' => 'bestbuy'],\n ['name' => \"City Of God / City Of Men (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/city-of-god-city-of-men-blu-ray-disc/1440348.p?id=2728565&skuId=1440348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1440348.jpg\"}', 'upc' => '031398174486', 'provider' => 'bestbuy'],\n ['name' => \"Essential Mixes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essential-mixes-cd/1440365.p?id=2143191&skuId=1440365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440365.jpg\"}', 'upc' => '886977612923', 'provider' => 'bestbuy'],\n ['name' => \"Legend of Kung Fu Rabbit (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legend-of-kung-fu-rabbit-dvd/1440375.p?id=2728250&skuId=1440375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440375_sa.jpg\"}', 'upc' => '031398166184', 'provider' => 'bestbuy'],\n ['name' => \"Colonia [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/colonia-pa-cd/1440383.p?id=2155357&skuId=1440383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440383_sa.jpg\"}', 'upc' => '731467942922', 'provider' => 'bestbuy'],\n ['name' => \"Jessabelle (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jessabelle-dvd/1440384.p?id=3319324&skuId=1440384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440384_sa.jpg\"}', 'upc' => '031398210863', 'provider' => 'bestbuy'],\n ['name' => \"My Left Foot (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-left-foot-blu-ray-disc/1440393.p?id=53465&skuId=1440393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440393_sa.jpg\"}', 'upc' => '031398210597', 'provider' => 'bestbuy'],\n ['name' => \"U.F.O. [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/u-f-o-digipak-cd/1440407.p?id=2154720&skuId=1440407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440407_sa.jpg\"}', 'upc' => '826853005425', 'provider' => 'bestbuy'],\n ['name' => \"Essential Mixes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essential-mixes-cd/1440416.p?id=2143192&skuId=1440416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440416.jpg\"}', 'upc' => '886977678721', 'provider' => 'bestbuy'],\n ['name' => \"Essential Mixes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essential-mixes-cd/1440425.p?id=2143194&skuId=1440425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440425.jpg\"}', 'upc' => '886977697920', 'provider' => 'bestbuy'],\n ['name' => \"The Black Tie Affair - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-black-tie-affair-cd/1440434.p?id=2166481&skuId=1440434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440434_sa.jpg\"}', 'upc' => '133472098722', 'provider' => 'bestbuy'],\n ['name' => \"Manifesto [Manifesto Redux] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/manifesto-manifesto-redux-pa-cd/1440443.p?id=2166482&skuId=1440443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440443_sa.jpg\"}', 'upc' => '166166168128', 'provider' => 'bestbuy'],\n ['name' => \"Timeless (Mochilla Presents/Live... [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timeless-mochilla-presents-live-cd-dvd-cd-dvd/1440461.p?id=2166483&skuId=1440461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440461_sa.jpg\"}', 'upc' => '107671001821', 'provider' => 'bestbuy'],\n ['name' => \"Essential Mixes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essential-mixes-cd/1440489.p?id=2143189&skuId=1440489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440489.jpg\"}', 'upc' => '886977471223', 'provider' => 'bestbuy'],\n ['name' => \"BeFit in 30: Extreme (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/befit-in-30-extreme-dvd/1440499.p?id=3307971&skuId=1440499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440499.jpg\"}', 'upc' => '031398199250', 'provider' => 'bestbuy'],\n ['name' => \"Science & Faith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/science-faith-cd/1440504.p?id=2174513&skuId=1440504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440504.jpg\"}', 'upc' => '886977544927', 'provider' => 'bestbuy'],\n ['name' => \"Middle of Nowhere (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/middle-of-nowhere-dvd/1440506.p?id=3315671&skuId=1440506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440506_sa.jpg\"}', 'upc' => '031398211464', 'provider' => 'bestbuy'],\n ['name' => \"Gnome Alone (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gnome-alone-dvd/1440524.p?id=3319042&skuId=1440524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440524_sa.jpg\"}', 'upc' => '031398211525', 'provider' => 'bestbuy'],\n ['name' => \"MLB: 2014 World Series Champions (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mlb-2014-world-series-champions-blu-ray-disc/1440542.p?id=3297164&skuId=1440542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440542_sa.jpg\"}', 'upc' => '031398207221', 'provider' => 'bestbuy'],\n ['name' => \"Looptworks - Hoptu 13\\\" Travel Sleeve - Blue/Bright Blue\", 'description_short' => \"LOOPTWORKS Hoptu 13&quot; Travel Sleeve: Fits most laptops with a 13&quot; display; water-resistant neoprene material; nylon lining; 2 exterior pockets; handles; zipper closure\", 'description_long' => \"LOOPTWORKS Hoptu 13&quot; Travel Sleeve: Fits most laptops with a 13&quot; display; water-resistant neoprene material; nylon lining; 2 exterior pockets; handles; zipper closure\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/looptworks-hoptu-13-travel-sleeve-blue-bright-blue/1440551.p?id=1219494268861&skuId=1440551', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440551_sa.jpg\"}', 'upc' => '845868100307', 'provider' => 'bestbuy'],\n ['name' => \"Mega Bloks: Diego's Build & Rescue - Nintendo DS\", 'description_short' => \"Embark on a toy-sized adventure with a big purpose\", 'description_long' => \"Embark on a toy-sized adventure with a big purpose\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mega-bloks-diegos-build-rescue-nintendo-ds/1440577.p?id=1218259334593&skuId=1440577', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440577_sa.jpg\"}', 'upc' => '710425358418', 'provider' => 'bestbuy'],\n ['name' => \"Care Bears: Belly Badge Rock (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/care-bears-belly-badge-rock-dvd/1440579.p?id=3184776&skuId=1440579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440579_sa.jpg\"}', 'upc' => '031398197362', 'provider' => 'bestbuy'],\n ['name' => \"Jersey Girl (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jersey-girl-blu-ray-disc/1440597.p?id=3315670&skuId=1440597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440597_sa.jpg\"}', 'upc' => '031398213819', 'provider' => 'bestbuy'],\n ['name' => \"Little House On the Prairie: Season 3 (Blu-ray Disc) (5 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-house-on-the-prairie-season-3-blu-ray-disc-5-disc/1440615.p?id=3257551&skuId=1440615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440615_sa.jpg\"}', 'upc' => '031398202486', 'provider' => 'bestbuy'],\n ['name' => \"Twilight/New Moon/Eclipse (Blu-ray Disc) (Extended Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twilight-new-moon-eclipse-blu-ray-disc-extended-edition/1440633.p?id=3313539&skuId=1440633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440633_sa.jpg\"}', 'upc' => '031398211761', 'provider' => 'bestbuy'],\n ['name' => \"Logitech - MK270 Wireless Keyboard and Mouse - Black\", 'description_short' => \"PC and Chrome compatible; up to a 32.8&#039; wireless range; 9 function keys; multimedia buttons; numeric keypad; mouse scroll wheel; on/off switches\", 'description_long' => \"PC and Chrome compatible; up to a 32.8&#039; wireless range; 9 function keys; multimedia buttons; numeric keypad; mouse scroll wheel; on/off switches\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/logitech-mk270-wireless-keyboard-and-mouse-black/1440638.p?id=1219051879956&skuId=1440638&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440638', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1306\\/1306937809\\/1306937809_sa.jpg\"}', 'upc' => '097855089816', 'provider' => 'bestbuy'],\n ['name' => \"Twilight/New Moon/Eclipse [3 Discs] (DVD) (Extended Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twilight-new-moon-eclipse-3-discs-dvd-extended-edition/1440688.p?id=3313823&skuId=1440688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2596\\/25963465.jpg\"}', 'upc' => '031398211723', 'provider' => 'bestbuy'],\n ['name' => \"Best Of The Universe: Stellar Stories (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-universe-stellar-stories-dvd/1440697.p?id=2766297&skuId=1440697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '031398172277', 'provider' => 'bestbuy'],\n ['name' => \"The Little Penguin: Pororo's Racing Adventure (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-little-penguin-pororos-racing-adventure-dvd/1440724.p?id=3273901&skuId=1440724&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440724', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440724_sa.jpg\"}', 'upc' => '031398185079', 'provider' => 'bestbuy'],\n ['name' => \"Black Sunday [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-sunday-pa-cd/1440729.p?id=79514&skuId=1440729&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440729', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440729_sa.jpg\"}', 'upc' => '074645393124', 'provider' => 'bestbuy'],\n ['name' => \"Lalaloopsy Ponies: The Big Show (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lalaloopsy-ponies-the-big-show-dvd/1440751.p?id=2984502&skuId=1440751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440751_sa.jpg\"}', 'upc' => '031398193586', 'provider' => 'bestbuy'],\n ['name' => \"Jessabelle (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jessabelle-blu-ray-disc/1440788.p?id=3319324&skuId=1440788&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440788', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440788.jpg\"}', 'upc' => '031398211006', 'provider' => 'bestbuy'],\n ['name' => \"Looptworks - Hoptu 15\\\" Laptop Sleeve - Black/Gray\", 'description_short' => \"LOOPTWORKS Hoptu 15&quot; Laptop Sleeve: Compatible with most laptops with a 15&quot; screen; neoprene material with nylon lining; 2 exterior pockets\", 'description_long' => \"LOOPTWORKS Hoptu 15&quot; Laptop Sleeve: Compatible with most laptops with a 15&quot; screen; neoprene material with nylon lining; 2 exterior pockets\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/looptworks-hoptu-15-laptop-sleeve-black-gray/1440797.p?id=1219494268578&skuId=1440797', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440797', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440797_sa.jpg\"}', 'upc' => '022099837770', 'provider' => 'bestbuy'],\n ['name' => \"Disconnect (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disconnect-dvd-ultraviolet-digital-copy/1440851.p?id=2730405&skuId=1440851&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440851', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440851_sa.jpg\"}', 'upc' => '031398175292', 'provider' => 'bestbuy'],\n ['name' => \"Lala-Oopsies: A Sew Magical Tale (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lala-oopsies-a-sew-magical-tale-dvd/1440879.p?id=2730198&skuId=1440879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440879_sa.jpg\"}', 'upc' => '031398163992', 'provider' => 'bestbuy'],\n ['name' => \"Tyler Perry's Madea's Tough Love (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/tyler-perrys-madeas-tough-love-dvd/1440888.p?id=3319044&skuId=1440888&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440888', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440888_sa.jpg\"}', 'upc' => '031398210634', 'provider' => 'bestbuy'],\n ['name' => \"MLB: 2014 World Series Champions (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mlb-2014-world-series-champions-dvd/1440906.p?id=3297164&skuId=1440906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440906.jpg\"}', 'upc' => '031398207214', 'provider' => 'bestbuy'],\n ['name' => \"Little House of the Prairie Season 4 Collection (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-house-of-the-prairie-season-4-collection-blu-ray-disc/1440915.p?id=3319040&skuId=1440915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440915.jpg\"}', 'upc' => '031398210788', 'provider' => 'bestbuy'],\n ['name' => \"Care Bears: A Belly Badge for Wonderheart (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/care-bears-a-belly-badge-for-wonderheart-dvd/1440924.p?id=2711427&skuId=1440924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440924_sa.jpg\"}', 'upc' => '031398172444', 'provider' => 'bestbuy'],\n ['name' => \"Revenge Of The Green Dragons (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revenge-of-the-green-dragons-blu-ray-disc/1440933.p?id=3333167&skuId=1440933&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440933', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440933_sa.jpg\"}', 'upc' => '031398209461', 'provider' => 'bestbuy'],\n ['name' => \"Adventures Of The Wilderness Family Triple Feature (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adventures-of-the-wilderness-family-triple-feature-dvd/1440942.p?id=3273894&skuId=1440942&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440942', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '031398205685', 'provider' => 'bestbuy'],\n ['name' => \"Big Driver (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-driver-dvd/1440951.p?id=3333781&skuId=1440951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440951_sa.jpg\"}', 'upc' => '031398210603', 'provider' => 'bestbuy'],\n ['name' => \"Shaquille O'Neal Presents: All Star Comedy Jam - Live from Atlanta (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shaquille-oneal-presents-all-star-comedy-jam-live-from-atlanta-dvd/1440979.p?id=2740130&skuId=1440979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440979_sa.jpg\"}', 'upc' => '031398177180', 'provider' => 'bestbuy'],\n ['name' => \"Marvin'S Room (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/marvins-room-blu-ray-disc/1440988.p?id=3315674&skuId=1440988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440988_sa.jpg\"}', 'upc' => '031398213765', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Packr Executive Solar Backpack - Gray\", 'description_short' => \"ENERPLEX Packr Executive Solar Backpack: Compatible with most laptops up to 15&quot;; poly canvas material; 5 interior and 2 exterior compartments; padded interior laptop sleeve; padded shoulder straps; integrated 3W solar panel\", 'description_long' => \"ENERPLEX Packr Executive Solar Backpack: Compatible with most laptops up to 15&quot;; poly canvas material; 5 interior and 2 exterior compartments; padded interior laptop sleeve; padded shoulder straps; integrated 3W solar panel\", 'price' => 129.99, 'sale_price' => 99.99, 'url' => 'http://www.bestbuy.com/site/enerplex-packr-executive-solar-backpack-gray/1440997.p?id=1219494263626&skuId=1440997&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1440997', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1440\\/1440997_sa.jpg\"}', 'upc' => '811665020186', 'provider' => 'bestbuy'],\n ['name' => \"LG - 24\\\" LED HD Monitor - Black\", 'description_short' => \"1 ms response time; 350 cd/m&#191; brightness; 1920 x 1080 resolution; 170&#191; horizontal and 160&#191; vertical viewing angles; HDMI input; DVI-D input; VGA input; DisplayPort input\", 'description_long' => \"1 ms response time; 350 cd/m&#191; brightness; 1920 x 1080 resolution; 170&#191; horizontal and 160&#191; vertical viewing angles; HDMI input; DVI-D input; VGA input; DisplayPort input\", 'price' => 349.99, 'sale_price' => 314.99, 'url' => 'http://www.bestbuy.com/site/lg-24-led-hd-monitor-black/1441004.p?id=1219494267850&skuId=1441004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1441004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312271584\\/1312271584_sa.jpg\"}', 'upc' => '719192195004', 'provider' => 'bestbuy'],\n ['name' => \"Equator - 10.0 Cu. Ft. Counter-Depth Bottom-Freezer Refrigerator - White\", 'description_short' => \"Electronic controls; glass and wire shelving; humidity-controlled crisper; dairy center; gallon-size door storage; frost-free design\", 'description_long' => \"Electronic controls; glass and wire shelving; humidity-controlled crisper; dairy center; gallon-size door storage; frost-free design\", 'price' => 759.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/equator-10-0-cu-ft-counter-depth-bottom-freezer-refrigerator-white/1441068.p?id=1219494261935&skuId=1441068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1441068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1441\\/1441068_sa.jpg\"}', 'upc' => '747037166810', 'provider' => 'bestbuy'],\n ['name' => \"West Bend - 6-Quart Electric Pressure Cooker - Stainless-Steel\", 'description_short' => \"Touchpad controls; 6 cooking options; temperature control; nonstick interior; 7 built-in safety features; brushed-stainless-steel finish; includes cooking rack, rice measure and serving spoon\", 'description_long' => \"Touchpad controls; 6 cooking options; temperature control; nonstick interior; 7 built-in safety features; brushed-stainless-steel finish; includes cooking rack, rice measure and serving spoon\", 'price' => 149.99, 'sale_price' => 80.99, 'url' => 'http://www.bestbuy.com/site/west-bend-6-quart-electric-pressure-cooker-stainless-steel/1441072.p?id=1219051879325&skuId=1441072', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1441072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1441\\/1441072_rc.jpg\"}', 'upc' => '072244820119', 'provider' => 'bestbuy'],\n ['name' => \"Just Cause 3 - Xbox One\", 'description_short' => \"Return home to rally the rebels and liberate your homeland\", 'description_long' => \"Return home to rally the rebels and liberate your homeland\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-cause-3-xbox-one/1441119.p?id=1219494702787&skuId=1441119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1441119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1441\\/1441119_sa.jpg\"}', 'upc' => '662248915913', 'provider' => 'bestbuy'],\n ['name' => \"Total Devastation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/total-devastation-cd/1441327.p?id=102046&skuId=1441327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1441327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1441\\/1441327_sa.jpg\"}', 'upc' => '078221873420', 'provider' => 'bestbuy'],\n ['name' => \"Digging In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digging-in-cd/1441611.p?id=88155&skuId=1441611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1441611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1441\\/1441611_sa.jpg\"}', 'upc' => '048248113021', 'provider' => 'bestbuy'],\n ['name' => \"LifeProof - frē Cover for Apple® iPad® Air - Black\", 'description_short' => \"LIFEPROOF fre Cover for Apple iPad Air: Compatible with Apple iPad Air in a LifeProof fre case; doubles as a stand; scratch-resistant; screen protection; play-through design\", 'description_long' => \"LIFEPROOF fre Cover for Apple iPad Air: Compatible with Apple iPad Air in a LifeProof fre case; doubles as a stand; scratch-resistant; screen protection; play-through design\", 'price' => 39.99, 'sale_price' => 36.99, 'url' => 'http://www.bestbuy.com/site/lifeproof-fre-cover-for-apple-ipad-air-black/1442012.p?id=1219494266059&skuId=1442012', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1442012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1442\\/1442012_sa.jpg\"}', 'upc' => '819859013075', 'provider' => 'bestbuy'],\n ['name' => \"Run Come Celebrate: Their Greatest Reggae Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/run-come-celebrate-their-greatest-reggae-hits-cd/1442406.p?id=1402925&skuId=1442406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1442406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1442\\/1442406_sa.jpg\"}', 'upc' => '011661762121', 'provider' => 'bestbuy'],\n ['name' => \"Whiskey Before Breakfast - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whiskey-before-breakfast-cd/1442415.p?id=74970&skuId=1442415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1442415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1442\\/1442415_sa.jpg\"}', 'upc' => '011661006324', 'provider' => 'bestbuy'],\n ['name' => \"Trace of Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trace-of-time-cd/1442433.p?id=2305328&skuId=1442433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1442433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1442\\/1442433.jpg\"}', 'upc' => '011661605329', 'provider' => 'bestbuy'],\n ['name' => \"Verklarte Nacht - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/verklarte-nacht-cd/1442692.p?id=1682489&skuId=1442692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1442692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1442\\/1442692.jpg\"}', 'upc' => '074644846522', 'provider' => 'bestbuy'],\n ['name' => \"Matando Güeros [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matando-gueros-pa-cd/1442834.p?id=76163&skuId=1442834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1442834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1442\\/1442834_sa.jpg\"}', 'upc' => '016861906122', 'provider' => 'bestbuy'],\n ['name' => \"The Full Custom Gospel Sounds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-full-custom-gospel-sounds-cd/1443450.p?id=85139&skuId=1443450&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1443450', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1443\\/1443450_sa.jpg\"}', 'upc' => '098787020229', 'provider' => 'bestbuy'],\n ['name' => \"Free - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/free-cd/1443478.p?id=92964&skuId=1443478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1443478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1443\\/1443478_sa.jpg\"}', 'upc' => '753762000923', 'provider' => 'bestbuy'],\n ['name' => \"Frigidaire - 4.8 Cu. Ft. Freestanding Electric Range - Black\", 'description_short' => \"Ready-Select oven controls; two 1250-watt elements; one 2,500-watt and one 6-9&quot; expandable element; Vari-Broil system; Even Baking technology; storage drawer\", 'description_long' => \"Ready-Select oven controls; two 1250-watt elements; one 2,500-watt and one 6-9&quot; expandable element; Vari-Broil system; Even Baking technology; storage drawer\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frigidaire-4-8-cu-ft-freestanding-electric-range-black/1443547.p?id=1218259297521&skuId=1443547&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1443547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1443\\/1443547_sa.jpg\"}', 'upc' => '012505502286', 'provider' => 'bestbuy'],\n ['name' => \"Frigidaire - 4.8 Cu. Ft. Freestanding Electric Range - White\", 'description_short' => \"Ready-Select oven controls; two 1250-watt elements; one 2,500-watt and one 6-9&quot; expandable element; Vari-Broil system; Even Baking technology; storage drawer\", 'description_long' => \"Ready-Select oven controls; two 1250-watt elements; one 2,500-watt and one 6-9&quot; expandable element; Vari-Broil system; Even Baking technology; storage drawer\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frigidaire-4-8-cu-ft-freestanding-electric-range-white/1443565.p?id=1218259297331&skuId=1443565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1443565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1443\\/1443565_sa.jpg\"}', 'upc' => '012505502279', 'provider' => 'bestbuy'],\n ['name' => \"Bloody Kisses [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/bloody-kisses-pa-cd/1443628.p?id=102671&skuId=1443628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1443628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1443\\/1443628_sa.jpg\"}', 'upc' => '016861910020', 'provider' => 'bestbuy'],\n ['name' => \"Imagine: Resort Owner - Nintendo DS\", 'description_short' => \"Book glamorous travel fun\", 'description_long' => \"Book glamorous travel fun\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-resort-owner-nintendo-ds/1443844.p?id=1218259335862&skuId=1443844', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1443844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1443\\/1443844_sa.jpg\"}', 'upc' => '008888166108', 'provider' => 'bestbuy'],\n ['name' => \"The Best of George Shearing [Capitol/Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-george-shearing-capitol-curb-cd/1443931.p?id=70841&skuId=1443931&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1443931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1443\\/1443931.jpg\"}', 'upc' => '715187763128', 'provider' => 'bestbuy'],\n ['name' => \"Lake Shore Drive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lake-shore-drive-cd/1444431.p?id=899998&skuId=1444431&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1444431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1444\\/1444431.jpg\"}', 'upc' => '015668101921', 'provider' => 'bestbuy'],\n ['name' => \"Let's Talk It Over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-talk-it-over-cd/1444486.p?id=1395825&skuId=1444486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1444486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1444\\/1444486.jpg\"}', 'upc' => '038153066024', 'provider' => 'bestbuy'],\n ['name' => \"Bone Orchard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bone-orchard-cd/1444565.p?id=1395819&skuId=1444565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1444565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1444\\/1444565_sa.jpg\"}', 'upc' => '038153066123', 'provider' => 'bestbuy'],\n ['name' => \"AOC - G-SYNC 24\\\" LED Gaming Monitor - Black/Green\", 'description_short' => \"AOC G-SYNC 24&quot; LED Gaming Monitor: Up to 1 ms response time; 80,000,000:1 dynamic contrast ratio; 350 nits brightness; 1920 x 1080 maximum resolution; 170-degree horizontal and 160-degree vertical viewing angles; DisplayPort input\", 'description_long' => \"AOC G-SYNC 24&quot; LED Gaming Monitor: Up to 1 ms response time; 80,000,000:1 dynamic contrast ratio; 350 nits brightness; 1920 x 1080 maximum resolution; 170-degree horizontal and 160-degree vertical viewing angles; DisplayPort input\", 'price' => 399.99, 'sale_price' => 364.99, 'url' => 'http://www.bestbuy.com/site/aoc-g-sync-24-led-gaming-monitor-black-green/1445028.p?id=1219494267788&skuId=1445028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1445028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1445\\/1445028_sa.jpg\"}', 'upc' => '685417091584', 'provider' => 'bestbuy'],\n ['name' => \"NBA: 2013 NBA Champions - Highlights (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nba-2013-nba-champions-highlights-dvd-2-disc/1445688.p?id=2721163&skuId=1445688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1445688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1445\\/1445688_sa.jpg\"}', 'upc' => '825452510873', 'provider' => 'bestbuy'],\n ['name' => \"Petz Nursery 2 - Nintendo DS\", 'description_short' => \"Raise baby animals &#8212; from newborn infants to clumsy toddlers\", 'description_long' => \"Raise baby animals &#8212; from newborn infants to clumsy toddlers\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-nursery-2-nintendo-ds/1445815.p?id=1218259333987&skuId=1445815&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1445815', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1445\\/1445815_sa.jpg\"}', 'upc' => '008888166139', 'provider' => 'bestbuy'],\n ['name' => \"Lowepro - Flipside 400 Camera Backpack - Black\", 'description_short' => \"For use with most digital DSLR cameras and accessories; polyester/nylon material; back-compartment entry\", 'description_long' => \"For use with most digital DSLR cameras and accessories; polyester/nylon material; back-compartment entry\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lowepro-flipside-400-camera-backpack-black/1446253.p?id=1218259761248&skuId=1446253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1446253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1446\\/1446253_rc.jpg\"}', 'upc' => '056035352713', 'provider' => 'bestbuy'],\n ['name' => \"Lowepro - Magnum 400 AW Camera Bag - Black\", 'description_short' => \"Compatible with select DSLR cameras with standard-zoom attached lens; polyester and nylon materials; shoulder-bag design; internal dividing system; flexible compartment structure\", 'description_long' => \"Compatible with select DSLR cameras with standard-zoom attached lens; polyester and nylon materials; shoulder-bag design; internal dividing system; flexible compartment structure\", 'price' => 259.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lowepro-magnum-400-aw-camera-bag-black/1446341.p?id=1218259763041&skuId=1446341', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1446341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1446\\/1446341_rc.jpg\"}', 'upc' => '056035360541', 'provider' => 'bestbuy'],\n ['name' => \"Lowepro - Flipside 200 Camera Backpack - Black\", 'description_short' => \"For use with most digital DSLR cameras and accessories; polyester/nylon material; back-compartment entry\", 'description_long' => \"For use with most digital DSLR cameras and accessories; polyester/nylon material; back-compartment entry\", 'price' => 84.99, 'sale_price' => 68.99, 'url' => 'http://www.bestbuy.com/site/lowepro-flipside-200-camera-backpack-black/1446369.p?id=1218259759697&skuId=1446369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1446369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1446\\/1446369_rc.jpg\"}', 'upc' => '056035351822', 'provider' => 'bestbuy'],\n ['name' => \"Lowepro - Flipside 300 Camera Backpack - Black\", 'description_short' => \"Compatible with select DSLR cameras with an 80-200mm f/2.8 lens attached; polyester and nylon design; back compartment entry\", 'description_long' => \"Compatible with select DSLR cameras with an 80-200mm f/2.8 lens attached; polyester and nylon design; back compartment entry\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lowepro-flipside-300-camera-backpack-black/1446571.p?id=1218259763730&skuId=1446571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1446571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1446\\/1446571_rc.jpg\"}', 'upc' => '056035351853', 'provider' => 'bestbuy'],\n ['name' => \"Frost Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frost-music-cd/1446769.p?id=83042&skuId=1446769&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1446769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1446\\/1446769.jpg\"}', 'upc' => '015707652025', 'provider' => 'bestbuy'],\n ['name' => \"At Montreux (1974) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-montreux-1974-cd/1446812.p?id=65316&skuId=1446812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1446812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1446\\/1446812.jpg\"}', 'upc' => '015707941020', 'provider' => 'bestbuy'],\n ['name' => \"CHI - Tourmaline Ceramic 3-Piece Travel Set - Black\", 'description_short' => \"Scratch-resistant ceramic surface; ceramic heater; even heat distribution; 2 speed settings; comfort grip\", 'description_long' => \"Scratch-resistant ceramic surface; ceramic heater; even heat distribution; 2 speed settings; comfort grip\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chi-tourmaline-ceramic-3-piece-travel-set-black/1447008.p?id=1219494269183&skuId=1447008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1447008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1447\\/1447008_rc.jpg\"}', 'upc' => '813843031144', 'provider' => 'bestbuy'],\n ['name' => \"Torches & Pitchforks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/torches-pitchforks-cd/1447094.p?id=2728122&skuId=1447094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1447094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1447\\/1447094_sa.jpg\"}', 'upc' => '602537464944', 'provider' => 'bestbuy'],\n ['name' => \"Magna Carta: Holy Grail [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magna-carta-holy-grail-pa-digipak-cd/1447119.p?id=2729970&skuId=1447119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1447119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1447\\/1447119_sa.jpg\"}', 'upc' => '857018004144', 'provider' => 'bestbuy'],\n ['name' => \"Cheek to Cheek - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cheek-to-cheek-cd/1447189.p?id=66414&skuId=1447189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1447189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1447\\/1447189.jpg\"}', 'upc' => '014921100923', 'provider' => 'bestbuy'],\n ['name' => \"Political Animals: The Complete Series (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/political-animals-the-complete-series-2-disc-dvd/1449153.p?id=2708088&skuId=1449153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1449153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1449\\/1449153.jpg\"}', 'upc' => '883929347292', 'provider' => 'bestbuy'],\n ['name' => \"Berserk: The Golden Age Arc 2 - The Battle for Doldrey (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/berserk-the-golden-age-arc-2-the-battle-for-doldrey-dvd/1450016.p?id=2695439&skuId=1450016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450016_sa.jpg\"}', 'upc' => '782009242574', 'provider' => 'bestbuy'],\n ['name' => \"Berserk: The Golden Age Arc 2 - The Battle for Doldrey (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/berserk-the-golden-age-arc-2-the-battle-for-doldrey-blu-ray-disc/1450025.p?id=2695439&skuId=1450025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450025_sa.jpg\"}', 'upc' => '782009242581', 'provider' => 'bestbuy'],\n ['name' => \"Wheel of Fortune - Nintendo Wii\", 'description_short' => \"Will you be able to solve the puzzle?\", 'description_long' => \"Will you be able to solve the puzzle?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wheel-of-fortune-nintendo-wii/1450104.p?id=1218259668251&skuId=1450104', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450104_500x500_sa.jpg\"}', 'upc' => '785138303796', 'provider' => 'bestbuy'],\n ['name' => \"Wheel of Fortune - Nintendo DS\", 'description_short' => \"Will you be able to solve the puzzle?\", 'description_long' => \"Will you be able to solve the puzzle?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wheel-of-fortune-nintendo-ds/1450122.p?id=1218259668378&skuId=1450122', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450122_sa.jpg\"}', 'upc' => '785138364131', 'provider' => 'bestbuy'],\n ['name' => \"Jeopardy - Nintendo DS\", 'description_short' => \"Do you want to make it a true Daily Double?\", 'description_long' => \"Do you want to make it a true Daily Double?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jeopardy-nintendo-ds/1450229.p?id=1218259668571&skuId=1450229', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450229_sa.jpg\"}', 'upc' => '785138364087', 'provider' => 'bestbuy'],\n ['name' => \"Strike Back: Cinemax Season 2 (4 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strike-back-cinemax-season-2-4-disc-dvd-boxed-set/1450247.p?id=2695838&skuId=1450247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450247.jpg\"}', 'upc' => '883929288199', 'provider' => 'bestbuy'],\n ['name' => \"Jeopardy - Nintendo Wii\", 'description_short' => \"Do you want to make it a true Daily Double?\", 'description_long' => \"Do you want to make it a true Daily Double?\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jeopardy-nintendo-wii/1450265.p?id=1218259668379&skuId=1450265', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450265.jpg\"}', 'upc' => '785138303727', 'provider' => 'bestbuy'],\n ['name' => \"Marvel Superhero Squad: The Infinity Gauntlet - Nintendo DS\", 'description_short' => \"Can you find the stones before they fall into the wrong hands?\", 'description_long' => \"Can you find the stones before they fall into the wrong hands?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marvel-superhero-squad-the-infinity-gauntlet-nintendo-ds/1450283.p?id=1218259759422&skuId=1450283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450283_sa.jpg\"}', 'upc' => '785138364124', 'provider' => 'bestbuy'],\n ['name' => \"Marvel Superhero Squad: The Infinity Gauntlet - PlayStation 3\", 'description_short' => \"Can you find the stones before they fall into the wrong hands?\", 'description_long' => \"Can you find the stones before they fall into the wrong hands?\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marvel-superhero-squad-the-infinity-gauntlet-playstation-3/1450292.p?id=1218259763194&skuId=1450292', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450292_sa.jpg\"}', 'upc' => '752919992180', 'provider' => 'bestbuy'],\n ['name' => \"Sex Drive (DVD) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sex-drive-dvd-unrated/1450326.p?id=1939056&skuId=1450326&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450326', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450326_sa.jpg\"}', 'upc' => '025192018053', 'provider' => 'bestbuy'],\n ['name' => \"Marvel Superhero Squad: The Infinity Gauntlet - Nintendo Wii\", 'description_short' => \"Can you find the stones before they fall into the wrong hands?\", 'description_long' => \"Can you find the stones before they fall into the wrong hands?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marvel-superhero-squad-the-infinity-gauntlet-nintendo-wii/1450335.p?id=1218259761812&skuId=1450335', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450335.jpg\"}', 'upc' => '785138303772', 'provider' => 'bestbuy'],\n ['name' => \"Megamind: The Blue Defender - Nintendo DS\", 'description_short' => \"Be bad, blue and brilliant on a mega mission to save the city\", 'description_long' => \"Be bad, blue and brilliant on a mega mission to save the city\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/megamind-the-blue-defender-nintendo-ds/1450371.p?id=1218259668690&skuId=1450371&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450371_sa.jpg\"}', 'upc' => '785138364094', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - AF-S NIKKOR 70-200mm f/2.8G ED VR II Telephoto Zoom Lens - Black\", 'description_short' => \"Compatible with select Nikon DSLR cameras; Vibration Reduction II image stabilization; SWM (Silent Wave Motor); ED (Extra-low Dispersion) glass; Internal Focus\", 'description_long' => \"Compatible with select Nikon DSLR cameras; Vibration Reduction II image stabilization; SWM (Silent Wave Motor); ED (Extra-low Dispersion) glass; Internal Focus\", 'price' => 2099.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-af-s-nikkor-70-200mm-f-2-8g-ed-vr-ii-telephoto-zoom-lens-black/1450459.p?id=1218259762970&skuId=1450459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450459_rc.jpg\"}', 'upc' => '018208021857', 'provider' => 'bestbuy'],\n ['name' => \"Megamind: The Blue Defender - PSP\", 'description_short' => \"Be bad, blue and brilliant on a mega mission to save the city\", 'description_long' => \"Be bad, blue and brilliant on a mega mission to save the city\", 'price' => 14.5, 'sale_price' => 2.99, 'url' => 'http://www.bestbuy.com/site/megamind-the-blue-defender-psp/1450486.p?id=1218259668122&skuId=1450486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450486.jpg\"}', 'upc' => '752919481660', 'provider' => 'bestbuy'],\n ['name' => \"True Frontiers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/true-frontiers-cd/1450496.p?id=156263&skuId=1450496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450496_sa.jpg\"}', 'upc' => '034373280028', 'provider' => 'bestbuy'],\n ['name' => \"Double Rainbow [Japan] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-rainbow-japan-cd/1450557.p?id=68688&skuId=1450557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450557_sa.jpg\"}', 'upc' => '063757709725', 'provider' => 'bestbuy'],\n ['name' => \"Pictionary - Nintendo DS\", 'description_short' => \"Paint a new twist on the classic draw and guess game\", 'description_long' => \"Paint a new twist on the classic draw and guess game\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pictionary-nintendo-ds/1450565.p?id=1218259763329&skuId=1450565', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450565_sa.jpg\"}', 'upc' => '785138364155', 'provider' => 'bestbuy'],\n ['name' => \"Mingus in Europe, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mingus-in-europe-vol-2-cd/1450584.p?id=249494&skuId=1450584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450584.jpg\"}', 'upc' => '063757307723', 'provider' => 'bestbuy'],\n ['name' => \"The Great Gospel Women - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-gospel-women-cd-various/1450762.p?id=83981&skuId=1450762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450762_sa.jpg\"}', 'upc' => '016351600424', 'provider' => 'bestbuy'],\n ['name' => \"Irish to the Core - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/irish-to-the-core-cd/1450833.p?id=104629&skuId=1450833&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450833', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450833_sa.jpg\"}', 'upc' => '016351523327', 'provider' => 'bestbuy'],\n ['name' => \"Scene 20: 20th Anniversary Concert - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scene-20-20th-anniversary-concert-cd-various/1450897.p?id=98315&skuId=1450897&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450897', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450897_sa.jpg\"}', 'upc' => '015891250120', 'provider' => 'bestbuy'],\n ['name' => \"Remember Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remember-me-cd/1450922.p?id=93640&skuId=1450922&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450922', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450922.jpg\"}', 'upc' => '015891380421', 'provider' => 'bestbuy'],\n ['name' => \"Nunsense II: The Second Coming - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nunsense-ii-the-second-coming-cd-various/1450968.p?id=93605&skuId=1450968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1450968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1450\\/1450968_sa.jpg\"}', 'upc' => '021471260823', 'provider' => 'bestbuy'],\n ['name' => \"Lonesome Standard Time - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lonesome-standard-time-cd-various/1451057.p?id=78699&skuId=1451057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1451057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1451\\/1451057.jpg\"}', 'upc' => '015891380223', 'provider' => 'bestbuy'],\n ['name' => \"Waitin' for the Hard Times to Go - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waitin-for-the-hard-times-to-go-cd/1451182.p?id=92855&skuId=1451182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1451182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1451\\/1451182.jpg\"}', 'upc' => '015891380926', 'provider' => 'bestbuy'],\n ['name' => \"Riding the Midnight Train - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/riding-the-midnight-train-cd/1451217.p?id=103629&skuId=1451217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1451217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1451\\/1451217_sa.jpg\"}', 'upc' => '015891375229', 'provider' => 'bestbuy'],\n ['name' => \"Heart You Break - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-you-break-cd/1451967.p?id=3571003&skuId=1451967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1451967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '027726200729', 'provider' => 'bestbuy'],\n ['name' => \"Swann - PRO-961 Indoor/Outdoor Security Camera - White\", 'description_short' => \"SWANN PRO-961 Indoor/Outdoor Security Camera: Compatible with select Swann DVRs and TVs; Swann TruColor CMOS sensor; vandal-resistant, weatherproof aluminum construction\", 'description_long' => \"SWANN PRO-961 Indoor/Outdoor Security Camera: Compatible with select Swann DVRs and TVs; Swann TruColor CMOS sensor; vandal-resistant, weatherproof aluminum construction\", 'price' => 149.99, 'sale_price' => 106.99, 'url' => 'http://www.bestbuy.com/site/swann-pro-961-indoor-outdoor-security-camera-white/1452107.p?id=1219498405793&skuId=1452107', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1452107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1452\\/1452107_sa.jpg\"}', 'upc' => '840236103843', 'provider' => 'bestbuy'],\n ['name' => \"Visuael - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/visuael-cd/1452127.p?id=160005&skuId=1452127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1452127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1452\\/1452127.jpg\"}', 'upc' => '770641003325', 'provider' => 'bestbuy'],\n ['name' => \"Swann - PRO-970 Indoor/Outdoor Security Camera - White\", 'description_short' => \"SWANN PRO-970 Indoor/Outdoor Security Camera: Compatible with select Swann DVRs and TVs; Swann TruColor CMOS sensor; night vision up to 115&#039;; vandal-resistant aluminum construction; IP66 weatherproof rating\", 'description_long' => \"SWANN PRO-970 Indoor/Outdoor Security Camera: Compatible with select Swann DVRs and TVs; Swann TruColor CMOS sensor; night vision up to 115&#039;; vandal-resistant aluminum construction; IP66 weatherproof rating\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swann-pro-970-indoor-outdoor-security-camera-white/1452134.p?id=1219498404226&skuId=1452134', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1452134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1452\\/1452134_sa.jpg\"}', 'upc' => '840236103850', 'provider' => 'bestbuy'],\n ['name' => \"Swann - PRO-971 Indoor/Outdoor Security Camera - White\", 'description_short' => \"SWANN PRO-971 Indoor/Outdoor Security Camera: Compatible with select Swann DVRs and TVs; Swann TruColor CMOS sensor; night vision up to 115&#039;; vandal-resistant aluminum construction; IP66 weatherproof rating\", 'description_long' => \"SWANN PRO-971 Indoor/Outdoor Security Camera: Compatible with select Swann DVRs and TVs; Swann TruColor CMOS sensor; night vision up to 115&#039;; vandal-resistant aluminum construction; IP66 weatherproof rating\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swann-pro-971-indoor-outdoor-security-camera-white/1452143.p?id=1219498404869&skuId=1452143', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1452143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1452\\/1452143_sa.jpg\"}', 'upc' => '840236103867', 'provider' => 'bestbuy'],\n ['name' => \"Swann - PRO-960 Indoor/Outdoor Security Camera - White\", 'description_short' => \"SWANN PRO-960 Indoor/Outdoor Security Camera: Compatible with select DVRs and TVs; Swann TruColor CMOS sensor; night vision up to 98&#039;; vandal-resistant aluminum construction; IP66 weatherproof rating\", 'description_long' => \"SWANN PRO-960 Indoor/Outdoor Security Camera: Compatible with select DVRs and TVs; Swann TruColor CMOS sensor; night vision up to 98&#039;; vandal-resistant aluminum construction; IP66 weatherproof rating\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swann-pro-960-indoor-outdoor-security-camera-white/1452152.p?id=1219498405660&skuId=1452152', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1452152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1452\\/1452152_sa.jpg\"}', 'upc' => '840236103836', 'provider' => 'bestbuy'],\n ['name' => \"Swann - ADS-466 Indoor/Outdoor Wireless Security Camera - White\", 'description_short' => \"SWANN ADS-466 Indoor/Outdoor Wireless Security Camera: CMOS sensor; 720p (1280 x 720) resolution; night vision up to 50&#039;; SwannCloud app (download required); IP66 weatherproof casing; 1-way audio with built-in microphone\", 'description_long' => \"SWANN ADS-466 Indoor/Outdoor Wireless Security Camera: CMOS sensor; 720p (1280 x 720) resolution; night vision up to 50&#039;; SwannCloud app (download required); IP66 weatherproof casing; 1-way audio with built-in microphone\", 'price' => 179.99, 'sale_price' => 148.99, 'url' => 'http://www.bestbuy.com/site/swann-ads-466-indoor-outdoor-wireless-security-camera-white/1452189.p?id=1219498404804&skuId=1452189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1452189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1452\\/1452189_sa.jpg\"}', 'upc' => '840236101566', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/1452207.p?id=101237&skuId=1452207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1452207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1452\\/1452207_sa.jpg\"}', 'upc' => '074644705621', 'provider' => 'bestbuy'],\n ['name' => \"Swann - PRO-981 Indoor/Outdoor Security Camera - White\", 'description_short' => \"SWANN PRO-981 Indoor/Outdoor Security Camera: Compatible with select Swann DVRs and TVs; Swann TruColor CMOS sensor; night vision up to 98&#039;; vandal-resistant aluminum construction; IP67 weatherproof rating\", 'description_long' => \"SWANN PRO-981 Indoor/Outdoor Security Camera: Compatible with select Swann DVRs and TVs; Swann TruColor CMOS sensor; night vision up to 98&#039;; vandal-resistant aluminum construction; IP67 weatherproof rating\", 'price' => 179.99, 'sale_price' => 169.99, 'url' => 'http://www.bestbuy.com/site/swann-pro-981-indoor-outdoor-security-camera-white/1452249.p?id=1219498401017&skuId=1452249', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1452249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1452\\/1452249_sa.jpg\"}', 'upc' => '840236103881', 'provider' => 'bestbuy'],\n ['name' => \"Art Of Nathan Milstein - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-of-nathan-milstein-cd/1452671.p?id=1685554&skuId=1452671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1452671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1452\\/1452671.jpg\"}', 'upc' => '077776483023', 'provider' => 'bestbuy'],\n ['name' => \"A Night with Poncho Sanchez Live: Bailar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-night-with-poncho-sanchez-live-bailar-cd/1452895.p?id=70600&skuId=1452895&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1452895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1452\\/1452895_sa.jpg\"}', 'upc' => '013431455820', 'provider' => 'bestbuy'],\n ['name' => \"The Cosmopolitan Marlene Dietrich - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-cosmopolitan-marlene-dietrich-cd/1453000.p?id=80439&skuId=1453000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453000_sa.jpg\"}', 'upc' => '074645320922', 'provider' => 'bestbuy'],\n ['name' => \"Nightmare [Hastings... [LP] [PA] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nightmare-hastings-lp-pa-vinyl/1453059.p?id=2148886&skuId=1453059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453059.jpg\"}', 'upc' => '790692071913', 'provider' => 'bestbuy'],\n ['name' => \"Carolina Chocolate... [10inch Vinyl Disc] [EP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carolina-chocolate-10inch-vinyl-disc-ep-vinyl/1453068.p?id=2177820&skuId=1453068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453068_sa.jpg\"}', 'upc' => '075597977981', 'provider' => 'bestbuy'],\n ['name' => \"Carolina Chocolate Drops/Luminescent... [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carolina-chocolate-drops-luminescent-ep-cd/1453077.p?id=2177821&skuId=1453077&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453077_sa.jpg\"}', 'upc' => '075597977998', 'provider' => 'bestbuy'],\n ['name' => \"Atlantic - Oskar Media Cabinet - Espresso\", 'description_short' => \"From our expanded online assortment; stores up to 1,080 CDs or 504 DVDs, Blu-ray Discs or games; adjustable shelves; wide base\", 'description_long' => \"From our expanded online assortment; stores up to 1,080 CDs or 504 DVDs, Blu-ray Discs or games; adjustable shelves; wide base\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantic-oskar-media-cabinet-espresso/1453095.p?id=1218261016446&skuId=1453095', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453095_rc.jpg\"}', 'upc' => '031742356179', 'provider' => 'bestbuy'],\n ['name' => \"Atlantic - Maxsteel 5-Tier Multimedia Rack - Black\", 'description_short' => \"From our expanded online assortment; stores up to 275 CDs or 152 DVDs, Blu-ray Discs or games; 5 adjustable shelves; dividers; independently adjustable feet; heavy-gauge steel construction\", 'description_long' => \"From our expanded online assortment; stores up to 275 CDs or 152 DVDs, Blu-ray Discs or games; 5 adjustable shelves; dividers; independently adjustable feet; heavy-gauge steel construction\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantic-maxsteel-5-tier-multimedia-rack-black/1453129.p?id=1218261018257&skuId=1453129', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453129_rc.jpg\"}', 'upc' => '031742030109', 'provider' => 'bestbuy'],\n ['name' => \"Atlantic - Oskar Media Tower - Espresso\", 'description_short' => \"37.2&quot; x 7.1&quot; x 60.4&quot; - MDF - 27 x Shelf(ves) - Espresso\", 'description_long' => \"37.2&quot; x 7.1&quot; x 60.4&quot; - MDF - 27 x Shelf(ves) - Espresso\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantic-oskar-media-tower-espresso/1453147.p?id=1218261019098&skuId=1453147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453147_rc.jpg\"}', 'upc' => '031742357138', 'provider' => 'bestbuy'],\n ['name' => \"Atlantic - Multimedia Shelving - Silver\", 'description_short' => \"Steel\", 'description_long' => \"Steel\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantic-multimedia-shelving-silver/1453156.p?id=1218261019444&skuId=1453156', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453156_rc.jpg\"}', 'upc' => '031742352379', 'provider' => 'bestbuy'],\n ['name' => \"Atlantic - Media Living Movie Bin - Black\", 'description_short' => \"From our expanded online assortment; designed to fit most Media Living cabinets; 36 movie sleeves with double inserts store up to 72 discs; index label window; pull strap; quality stitching\", 'description_long' => \"From our expanded online assortment; designed to fit most Media Living cabinets; 36 movie sleeves with double inserts store up to 72 discs; index label window; pull strap; quality stitching\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantic-media-living-movie-bin-black/1453174.p?id=1218261018080&skuId=1453174', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453174_rc.jpg\"}', 'upc' => '031742355851', 'provider' => 'bestbuy'],\n ['name' => \"Chrome - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chrome-cd/1453377.p?id=77077&skuId=1453377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453377_sa.jpg\"}', 'upc' => '731451803925', 'provider' => 'bestbuy'],\n ['name' => \"Everything - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everything-cd/1453457.p?id=87038&skuId=1453457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453457_sa.jpg\"}', 'upc' => '731451801624', 'provider' => 'bestbuy'],\n ['name' => \"Dancehall Roughneck - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancehall-roughneck-cd-various/1453714.p?id=79679&skuId=1453714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453714.jpg\"}', 'upc' => '011661764828', 'provider' => 'bestbuy'],\n ['name' => \"Ella Swings Gently with Nelson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ella-swings-gently-with-nelson-cd/1453796.p?id=66306&skuId=1453796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453796_sa.jpg\"}', 'upc' => '731451934827', 'provider' => 'bestbuy'],\n ['name' => \"Blackfish - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blackfish-cd/1453849.p?id=74894&skuId=1453849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1453849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1453\\/1453849.jpg\"}', 'upc' => '074645323329', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - Automatic Icemaker Kit for Most Side-by-Side Refrigerators - White\", 'description_short' => \"Compatible with most side-by-side refrigerators; produces more than 3 lbs. of ice per day; polyethylene tubing\", 'description_long' => \"Compatible with most side-by-side refrigerators; produces more than 3 lbs. of ice per day; polyethylene tubing\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-automatic-icemaker-kit-for-most-side-by-side-refrigerators-white/1454105.p?id=1219498404162&skuId=1454105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454105_rc.jpg\"}', 'upc' => '883049353913', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - Icemaker Kit for Most Whirlpool, Amana and Jenn-Air Side-by-Side Refrigerators - White\", 'description_short' => \"Compatible with most Whirlpool, Amana and Jenn-Air side-by-side refrigerators; produces more than 3 lbs. of ice per day; EZ Connect design; crescent-shape cubes\", 'description_long' => \"Compatible with most Whirlpool, Amana and Jenn-Air side-by-side refrigerators; produces more than 3 lbs. of ice per day; EZ Connect design; crescent-shape cubes\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-icemaker-kit-for-most-whirlpool-amana-and-jenn-air-side-by-side-refrigerators-white/1454114.p?id=1219498405205&skuId=1454114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454114_rc.jpg\"}', 'upc' => '883049353906', 'provider' => 'bestbuy'],\n ['name' => \"Just Cause 3 - PlayStation 4\", 'description_short' => \"Return home to rally the rebels and liberate your homeland\", 'description_long' => \"Return home to rally the rebels and liberate your homeland\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-cause-3-playstation-4/1454123.p?id=1219498402414&skuId=1454123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454123_sa.jpg\"}', 'upc' => '662248915920', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 3-Target Copy Blu-ray/DVD/CD Duplicator with 500GB Hard Drive - Black\", 'description_short' => \"SPARTAN 3-Target Copy Blu-ray/DVD/CD Duplicator with 500GB Hard Drive: Creates copies of a source disc; 500GB SATA hard drive; no computer required; up to 12x BD-R SL and BD-R DL write speeds\", 'description_long' => \"SPARTAN 3-Target Copy Blu-ray/DVD/CD Duplicator with 500GB Hard Drive: Creates copies of a source disc; 500GB SATA hard drive; no computer required; up to 12x BD-R SL and BD-R DL write speeds\", 'price' => 989.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spartan-3-target-copy-blu-ray-dvd-cd-duplicator-with-500gb-hard-drive-black/1454132.p?id=1219498401028&skuId=1454132', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454132_sa.jpg\"}', 'upc' => '739410811356', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 15 Target USB Duplicator - Black\", 'description_short' => \"SPARTAN 15 Target USB Duplicator: Copies USB flash drives and other USB devices; Advanced Asynchronous Duplication mode; standalone design; real-time copy-and-compare technology\", 'description_long' => \"SPARTAN 15 Target USB Duplicator: Copies USB flash drives and other USB devices; Advanced Asynchronous Duplication mode; standalone design; real-time copy-and-compare technology\", 'price' => 1749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spartan-15-target-usb-duplicator-black/1454141.p?id=1219498401027&skuId=1454141', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454141_sa.jpg\"}', 'upc' => '739410531438', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 7 Target USB Duplicator - Black\", 'description_short' => \"SPARTAN 7 Target USB Duplicator: Copies USB flash drives and other USB devices; Advanced Asynchronous Duplication mode; standalone design; real-time copy-and-compare technology\", 'description_long' => \"SPARTAN 7 Target USB Duplicator: Copies USB flash drives and other USB devices; Advanced Asynchronous Duplication mode; standalone design; real-time copy-and-compare technology\", 'price' => 879.99, 'sale_price' => 750.99, 'url' => 'http://www.bestbuy.com/site/spartan-7-target-usb-duplicator-black/1454169.p?id=1219498402918&skuId=1454169', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454169_sa.jpg\"}', 'upc' => '739410810038', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 3-Target 24x DVD/CD Duplicator - Black\", 'description_short' => \"SPARTAN 3-Target 24x DVD/CD Duplicator: Creates copies of a source disc; no computer required; up to 24x DVD+/-R, up to 10x DVD+/-R DL and up to 40x CD-R write speeds\", 'description_long' => \"SPARTAN 3-Target 24x DVD/CD Duplicator: Creates copies of a source disc; no computer required; up to 24x DVD+/-R, up to 10x DVD+/-R DL and up to 40x CD-R write speeds\", 'price' => 389.99, 'sale_price' => 276.99, 'url' => 'http://www.bestbuy.com/site/spartan-3-target-24x-dvd-cd-duplicator-black/1454178.p?id=1219498405730&skuId=1454178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454178_sa.jpg\"}', 'upc' => '739410810564', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 11-Target 24x DVD/CD Duplicator - Black\", 'description_short' => \"SPARTAN 11-Target 24x DVD/CD Duplicator: Creates copies of a source disc; no computer required; up to 24x DVD+/-R, up to 10x DVD+/-R DL and up to 40x CD-R write speeds\", 'description_long' => \"SPARTAN 11-Target 24x DVD/CD Duplicator: Creates copies of a source disc; no computer required; up to 24x DVD+/-R, up to 10x DVD+/-R DL and up to 40x CD-R write speeds\", 'price' => 849.99, 'sale_price' => 603.99, 'url' => 'http://www.bestbuy.com/site/spartan-11-target-24x-dvd-cd-duplicator-black/1454187.p?id=1219498403436&skuId=1454187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454187_sa.jpg\"}', 'upc' => '739410810649', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 7-Target CF I/II/Microdrive Memory Card Duplicator - Black\", 'description_short' => \"SPARTAN 7-Target CF I/II/Microdrive Memory Card Duplicator: Creates copies of a source memory card; Advanced Asynchronous Duplication mode; real-time copy-and-compare technology; 2GB/minute copy speed; no computer required\", 'description_long' => \"SPARTAN 7-Target CF I/II/Microdrive Memory Card Duplicator: Creates copies of a source memory card; Advanced Asynchronous Duplication mode; real-time copy-and-compare technology; 2GB/minute copy speed; no computer required\", 'price' => 1119.99, 'sale_price' => 912.99, 'url' => 'http://www.bestbuy.com/site/spartan-7-target-cf-i-ii-microdrive-memory-card-duplicator-black/1454196.p?id=1219498404546&skuId=1454196', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454196_sa.jpg\"}', 'upc' => '739410810212', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 1-Target 24x DVD/CD Duplicator - Black\", 'description_short' => \"SPARTAN 1-Target 24x DVD/CD Duplicator: Creates copies of a source disc; no computer required; up to 24x DVD+/-R, up to 10x DVD+/-R DL and up to 40x CD-R write speeds\", 'description_long' => \"SPARTAN 1-Target 24x DVD/CD Duplicator: Creates copies of a source disc; no computer required; up to 24x DVD+/-R, up to 10x DVD+/-R DL and up to 40x CD-R write speeds\", 'price' => 239.99, 'sale_price' => 181.99, 'url' => 'http://www.bestbuy.com/site/spartan-1-target-24x-dvd-cd-duplicator-black/1454201.p?id=1219498401025&skuId=1454201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454201_sa.jpg\"}', 'upc' => '739410811042', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 5-Target Copy Blu-ray/DVD/CD Duplicator with 500GB Hard Drive - Black\", 'description_short' => \"SPARTAN 5-Target Copy Blu-ray/DVD/CD Duplicator with 500GB Hard Drive: Creates copies of a source disc; 500GB SATA hard drive; no computer required; up to 12x BD-R SL and BD-R DL write speeds\", 'description_long' => \"SPARTAN 5-Target Copy Blu-ray/DVD/CD Duplicator with 500GB Hard Drive: Creates copies of a source disc; 500GB SATA hard drive; no computer required; up to 12x BD-R SL and BD-R DL write speeds\", 'price' => 1439.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spartan-5-target-copy-blu-ray-dvd-cd-duplicator-with-500gb-hard-drive-black/1454229.p?id=1219498405863&skuId=1454229', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454229_sa.jpg\"}', 'upc' => '739410811370', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 7-Target 24x DVD/CD Duplicator - Black\", 'description_short' => \"SPARTAN 7-Target 24x DVD/CD Duplicator: Creates copies of a source disc; no computer required; up to 24x DVD+/-R, up to 10x DVD+/-R DL and up to 40x CD-R write speeds\", 'description_long' => \"SPARTAN 7-Target 24x DVD/CD Duplicator: Creates copies of a source disc; no computer required; up to 24x DVD+/-R, up to 10x DVD+/-R DL and up to 40x CD-R write speeds\", 'price' => 576.99, 'sale_price' => 409.99, 'url' => 'http://www.bestbuy.com/site/spartan-7-target-24x-dvd-cd-duplicator-black/1454238.p?id=1219498403373&skuId=1454238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454238_sa.jpg\"}', 'upc' => '739410810601', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 15-Target CF I/II/Microdrive Memory Card Duplicator - Black\", 'description_short' => \"SPARTAN 15-Target CF I/II/Microdrive Memory Card Duplicator: Creates copies of a source memory card; Advanced Asynchronous Duplication mode; real-time copy-and-compare technology; 2GB/minute copy speed; no computer required\", 'description_long' => \"SPARTAN 15-Target CF I/II/Microdrive Memory Card Duplicator: Creates copies of a source memory card; Advanced Asynchronous Duplication mode; real-time copy-and-compare technology; 2GB/minute copy speed; no computer required\", 'price' => 2159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spartan-15-target-cf-i-ii-microdrive-memory-card-duplicator-black/1454247.p?id=1219498401026&skuId=1454247', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454247_sa.jpg\"}', 'upc' => '739410591180', 'provider' => 'bestbuy'],\n ['name' => \"Spartan - 5-Target 24x DVD/CD Duplicator - Black\", 'description_short' => \"SPARTAN 5-Target 24x DVD/CD Duplicator: Creates copies of a source disc; no computer required; up to 24x DVD+/-R, up to 10x DVD+/-R DL and up to 40x CD-R write speeds\", 'description_long' => \"SPARTAN 5-Target 24x DVD/CD Duplicator: Creates copies of a source disc; no computer required; up to 24x DVD+/-R, up to 10x DVD+/-R DL and up to 40x CD-R write speeds\", 'price' => 509.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spartan-5-target-24x-dvd-cd-duplicator-black/1454256.p?id=1219498404092&skuId=1454256', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454256_sa.jpg\"}', 'upc' => '739410810588', 'provider' => 'bestbuy'],\n ['name' => \"Grand Theft Auto V - PRE-OWNED - Xbox One\", 'description_short' => \"Experience the streets of Los Santos like never before on a fast-paced crime spree\", 'description_long' => \"Experience the streets of Los Santos like never before on a fast-paced crime spree\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grand-theft-auto-v-pre-owned-xbox-one/1454265.p?id=1219498403706&skuId=1454265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454265_sa.jpg\"}', 'upc' => '799007841258', 'provider' => 'bestbuy'],\n ['name' => \"The Wolf Among Us - PRE-OWNED - Xbox One\", 'description_short' => \"Face the monster within in a world where fantasy is the only reality\", 'description_long' => \"Face the monster within in a world where fantasy is the only reality\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wolf-among-us-pre-owned-xbox-one/1454283.p?id=1219498405136&skuId=1454283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454283_sa.jpg\"}', 'upc' => '799007841272', 'provider' => 'bestbuy'],\n ['name' => \"Far Cry 4 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Load your weapons as you step into the heart of a civil war in a thrilling open world\", 'description_long' => \"Load your weapons as you step into the heart of a civil war in a thrilling open world\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/far-cry-4-pre-owned-playstation-3/1454292.p?id=1219498404410&skuId=1454292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454292_sa.jpg\"}', 'upc' => '799007841326', 'provider' => 'bestbuy'],\n ['name' => \"Far Cry 4 - PRE-OWNED - PlayStation 4\", 'description_short' => \"Load your weapons as you step into the heart of a civil war in a thrilling open world\", 'description_long' => \"Load your weapons as you step into the heart of a civil war in a thrilling open world\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/far-cry-4-pre-owned-playstation-4/1454306.p?id=1219498402540&skuId=1454306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454306_sa.jpg\"}', 'upc' => '799007841333', 'provider' => 'bestbuy'],\n ['name' => \"Far Cry 4 - PRE-OWNED - Xbox 360\", 'description_short' => \"Load your weapons as you step into the heart of a civil war in a thrilling open world\", 'description_long' => \"Load your weapons as you step into the heart of a civil war in a thrilling open world\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/far-cry-4-pre-owned-xbox-360/1454315.p?id=1219498401029&skuId=1454315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454315_sa.jpg\"}', 'upc' => '799007841340', 'provider' => 'bestbuy'],\n ['name' => \"Adventure Time: The Secret of the Nameless Kingdom - PRE-OWNED - Xbox 360\", 'description_short' => \"Get ready for an all-new Adventure through the Nameless Kingdom\", 'description_long' => \"Get ready for an all-new Adventure through the Nameless Kingdom\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adventure-time-the-secret-of-the-nameless-kingdom-pre-owned-xbox-360/1454333.p?id=1219498403638&skuId=1454333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454333_sa.jpg\"}', 'upc' => '799007841364', 'provider' => 'bestbuy'],\n ['name' => \"Candlebox - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/candlebox-cd/1454410.p?id=76720&skuId=1454410&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454410', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454410_sa.jpg\"}', 'upc' => '093624531326', 'provider' => 'bestbuy'],\n ['name' => \"LILI Kraus Plays Mozart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lili-kraus-plays-mozart-cd/1454553.p?id=1974344&skuId=1454553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '047163551024', 'provider' => 'bestbuy'],\n ['name' => \"Catchin' Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/catchin-up-cd/1454713.p?id=88725&skuId=1454713&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454713.jpg\"}', 'upc' => '048021746828', 'provider' => 'bestbuy'],\n ['name' => \"Blues 'N Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-n-soul-cd/1454722.p?id=89369&skuId=1454722&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1454722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1454\\/1454722_sa.jpg\"}', 'upc' => '025218851824', 'provider' => 'bestbuy'],\n ['name' => \"Geek Squad - Remote Start Installation with T-Harness\", 'description_short' => \"Have your remote start with T-harness installed the easy way: neatly, reliably and professionally by a Geek Squad Autotech.\", 'description_long' => \"Have your remote start with T-harness installed the easy way: neatly, reliably and professionally by a Geek Squad Autotech.\", 'price' => 74.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/geek-squad-remote-start-installation-with-t-harness/1455002.p?id=1219052008998&skuId=1455002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1455002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1455\\/1455002_sa.jpg\"}', 'upc' => '400014550025', 'provider' => 'bestbuy'],\n ['name' => \"WWE 2K15 - PRE-OWNED - Xbox One\", 'description_short' => \"Step into the ring and fight your way to the gold\", 'description_long' => \"Step into the ring and fight your way to the gold\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-2k15-pre-owned-xbox-one/1455104.p?id=1219498402724&skuId=1455104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1455104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1455\\/1455104_sa.jpg\"}', 'upc' => '799007841371', 'provider' => 'bestbuy'],\n ['name' => \"Goin' Back to Texas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goin-back-to-texas-cd/1455384.p?id=81333&skuId=1455384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1455384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1455\\/1455384_sa.jpg\"}', 'upc' => '093624532323', 'provider' => 'bestbuy'],\n ['name' => \"Newport '63 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/newport-63-cd/1455623.p?id=65160&skuId=1455623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1455623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1455\\/1455623_sa.jpg\"}', 'upc' => '011105012829', 'provider' => 'bestbuy'],\n ['name' => \"Contrasts [Decca] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/contrasts-decca-cd/1455883.p?id=2304908&skuId=1455883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1455883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1455\\/1455883_sa.jpg\"}', 'upc' => '011105062626', 'provider' => 'bestbuy'],\n ['name' => \"Coleman Hawkins in the 50's: Body & Soul... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coleman-hawkins-in-the-50s-body-soul-cd/1455892.p?id=67267&skuId=1455892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1455892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1455\\/1455892_sa.jpg\"}', 'upc' => '011105062725', 'provider' => 'bestbuy'],\n ['name' => \"When Summer Comes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-summer-comes-cd/1455909.p?id=67630&skuId=1455909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1455909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1455\\/1455909.jpg\"}', 'upc' => '011105972420', 'provider' => 'bestbuy'],\n ['name' => \"Red in Bluesville - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-in-bluesville-cd/1455945.p?id=66518&skuId=1455945&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1455945', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1455\\/1455945_sa.jpg\"}', 'upc' => '025218629522', 'provider' => 'bestbuy'],\n ['name' => \"The Tower of Power - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tower-of-power-cd/1455954.p?id=66845&skuId=1455954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1455954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1455\\/1455954_sa.jpg\"}', 'upc' => '025218629928', 'provider' => 'bestbuy'],\n ['name' => \"I Have Dreamed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-have-dreamed-cd/1456025.p?id=125244&skuId=1456025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456025.jpg\"}', 'upc' => '028568803529', 'provider' => 'bestbuy'],\n ['name' => \"MXGP: The Official Motocross Videogame - PRE-OWNED - PlayStation 4\", 'description_short' => \"Get a little dirty for a chance at glory\", 'description_long' => \"Get a little dirty for a chance at glory\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mxgp-the-official-motocross-videogame-pre-owned-playstation-4/1456112.p?id=1219498401030&skuId=1456112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456112_sa.jpg\"}', 'upc' => '799007841388', 'provider' => 'bestbuy'],\n ['name' => \"The Legend of Frosty the Snowman (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-legend-of-frosty-the-snowman-dvd/1456153.p?id=1473937&skuId=1456153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456153_sa.jpg\"}', 'upc' => '828768567593', 'provider' => 'bestbuy'],\n ['name' => \"Legacy (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legacy-dvd/1456171.p?id=2155189&skuId=1456171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456171_sa.jpg\"}', 'upc' => '883476030098', 'provider' => 'bestbuy'],\n ['name' => \"Disciples of the 36th Chamber (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disciples-of-the-36th-chamber-dvd/1456199.p?id=2154844&skuId=1456199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456199_sa.jpg\"}', 'upc' => '883476030111', 'provider' => 'bestbuy'],\n ['name' => \"Harsh Times (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harsh-times-blu-ray-disc/1456205.p?id=1627978&skuId=1456205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456205_sa.jpg\"}', 'upc' => '883476030104', 'provider' => 'bestbuy'],\n ['name' => \"Piano Concerto In A - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-concerto-in-a-cd/1456221.p?id=1756464&skuId=1456221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456221_sa.jpg\"}', 'upc' => '750582829529', 'provider' => 'bestbuy'],\n ['name' => \"World Premiere Recording - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-premiere-recording-cd/1456230.p?id=1784711&skuId=1456230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456230.jpg\"}', 'upc' => '750582829628', 'provider' => 'bestbuy'],\n ['name' => \"WWE: The Top 50 Superstars of All Time (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-the-top-50-superstars-of-all-time-dvd-3-disc/1456278.p?id=2155144&skuId=1456278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456278_sa.jpg\"}', 'upc' => '651191948796', 'provider' => 'bestbuy'],\n ['name' => \"Cricket on the Hearth (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cricket-on-the-hearth-dvd/1456296.p?id=60441&skuId=1456296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456296_sa.jpg\"}', 'upc' => '796019803014', 'provider' => 'bestbuy'],\n ['name' => \"The Twilight Saga: Eclipse (DVD) (2 Disc) (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-twilight-saga-eclipse-dvd-2-disc-special-edition/1456311.p?id=2160186&skuId=1456311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456311_sa.jpg\"}', 'upc' => '025192083280', 'provider' => 'bestbuy'],\n ['name' => \"String Quartet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/string-quartet-cd/1456329.p?id=1784295&skuId=1456329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456329.jpg\"}', 'upc' => '750582829321', 'provider' => 'bestbuy'],\n ['name' => \"Virtuoso Flute Concerti Of The Baroque - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virtuoso-flute-concerti-of-the-baroque-various-cd/1456338.p?id=1784294&skuId=1456338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456338.jpg\"}', 'upc' => '750582828829', 'provider' => 'bestbuy'],\n ['name' => \"The Twilight Saga: Eclipse (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-twilight-saga-eclipse-blu-ray-disc/1456348.p?id=2160186&skuId=1456348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456348_sa.jpg\"}', 'upc' => '025192083273', 'provider' => 'bestbuy'],\n ['name' => \"The Twilight Saga: Eclipse (Blu-ray Disc) (2 Disc) (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-twilight-saga-eclipse-blu-ray-disc-2-disc-special-edition/1456357.p?id=2160186&skuId=1456357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456357_sa.jpg\"}', 'upc' => '025192083259', 'provider' => 'bestbuy'],\n ['name' => \"The Twilight Saga: Eclipse (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-twilight-saga-eclipse-dvd/1456375.p?id=2160186&skuId=1456375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456375_sa.jpg\"}', 'upc' => '025192083266', 'provider' => 'bestbuy'],\n ['name' => \"The Matrix (Blu-ray Disc) (Anniversary Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-matrix-blu-ray-disc-anniversary-edition/1456408.p?id=29857&skuId=1456408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456408_sa.jpg\"}', 'upc' => '883929085163', 'provider' => 'bestbuy'],\n ['name' => \"Try a Little Tenderness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/try-a-little-tenderness-cd/1456490.p?id=70037&skuId=1456490&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456490', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456490.jpg\"}', 'upc' => '091454032129', 'provider' => 'bestbuy'],\n ['name' => \"Some Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/some-blues-cd/1456524.p?id=69027&skuId=1456524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456524.jpg\"}', 'upc' => '091454032020', 'provider' => 'bestbuy'],\n ['name' => \"1938 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1938-cd/1456891.p?id=1586738&skuId=1456891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456891_sa.jpg\"}', 'upc' => '750582835421', 'provider' => 'bestbuy'],\n ['name' => \"1940-1941 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1940-1941-cd/1456926.p?id=1583031&skuId=1456926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1456926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1456\\/1456926_sa.jpg\"}', 'upc' => '750582835520', 'provider' => 'bestbuy'],\n ['name' => \"Attitude [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/attitude-import-cd/1457051.p?id=1488057&skuId=1457051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1457051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '774505010429', 'provider' => 'bestbuy'],\n ['name' => \"Monopoly Family Fun Pack - PRE-OWNED - PlayStation 4\", 'description_short' => \"Become a tycoon with property-snagging, fast-dealing fun\", 'description_long' => \"Become a tycoon with property-snagging, fast-dealing fun\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monopoly-family-fun-pack-pre-owned-playstation-4/1457102.p?id=1219498403108&skuId=1457102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1457102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1457\\/1457102_sa.jpg\"}', 'upc' => '799007841395', 'provider' => 'bestbuy'],\n ['name' => \"Animal Instinct - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/animal-instinct-cd/1457186.p?id=85467&skuId=1457186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1457186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1457\\/1457186_sa.jpg\"}', 'upc' => '093624535027', 'provider' => 'bestbuy'],\n ['name' => \"Metallica/Slayer/Megadeth/Anthrax: The Big 4 - Live from Sofia, Bulgaria (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metallica-slayer-megadeth-anthrax-the-big-4-live-from-sofia-bulgaria-dvd-2-disc/1457452.p?id=2160694&skuId=1457452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1457452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1457\\/1457452.jpg\"}', 'upc' => '075993997699', 'provider' => 'bestbuy'],\n ['name' => \"Metallica/Slayer/Megadeth/Anthrax: The Big 4 - Live from Sofia, Bulgaria - Blu-ray Disc - (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metallica-slayer-megadeth-anthrax-the-big-4-live-from-sofia-bulgaria-blu-ray-disc-2-disc/1457461.p?id=2160694&skuId=1457461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1457461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1457\\/1457461_sa.jpg\"}', 'upc' => '075993997675', 'provider' => 'bestbuy'],\n ['name' => \"Harold & Kumar Go to White Castle/Harold & Kumar Escape from Guantanamo Bay/A Very Harold & Kuma (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harold-kumar-go-to-white-castle-harold-kumar-escape-from-guantanamo-bay-a-very-harold-kuma-dvd-3-disc/1458005.p?id=3268753&skuId=1458005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1458\\/1458005_sa.jpg\"}', 'upc' => '883929351305', 'provider' => 'bestbuy'],\n ['name' => \"Merry Christmas...Love, Elvis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/merry-christmas-love-elvis-cd/1458018.p?id=2722764&skuId=1458018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1458\\/1458018_sa.jpg\"}', 'upc' => '888837369626', 'provider' => 'bestbuy'],\n ['name' => \"The Hangover Part III (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hangover-part-iii-dvd-2-disc/1458069.p?id=2743891&skuId=1458069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1458\\/1458069_sa.jpg\"}', 'upc' => '883929428212', 'provider' => 'bestbuy'],\n ['name' => \"The Wizard of Oz (DVD) (Anniversary Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wizard-of-oz-dvd-anniversary-edition/1458078.p?id=25526&skuId=1458078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1458078.jpg\"}', 'upc' => '883929405350', 'provider' => 'bestbuy'],\n ['name' => \"Road Trip Unrated Trilogy (DVD) (3 Disc) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/road-trip-unrated-trilogy-dvd-3-disc-unrated/1458101.p?id=2637936&skuId=1458101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1458\\/1458101_sa.jpg\"}', 'upc' => '883929321988', 'provider' => 'bestbuy'],\n ['name' => \"Clash of the Titans/Wrath of the Titans (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clash-of-the-titans-wrath-of-the-titans-blu-ray-disc/1458129.p?id=3268724&skuId=1458129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1458\\/1458129_sa.jpg\"}', 'upc' => '883929388820', 'provider' => 'bestbuy'],\n ['name' => \"Dark Shadows/Sleepy Hollow [2 discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dark-shadows-sleepy-hollow-2-discs-blu-ray-disc/1458138.p?id=2727905&skuId=1458138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2164\\/21645302.jpg\"}', 'upc' => '883929343461', 'provider' => 'bestbuy'],\n ['name' => \"Jack Black Collection [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jack-black-collection-3-discs-dvd/1458147.p?id=2636813&skuId=1458147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1458\\/1458147_sa.jpg\"}', 'upc' => '883929320677', 'provider' => 'bestbuy'],\n ['name' => \"Unforgiven/Outlaw Josey Wales [2 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unforgiven-outlaw-josey-wales-2-discs-blu-ray-disc/1458156.p?id=3274718&skuId=1458156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2558\\/25580129.jpg\"}', 'upc' => '883929388554', 'provider' => 'bestbuy'],\n ['name' => \"We're the Millers (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/were-the-millers-dvd/1458165.p?id=2767061&skuId=1458165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1458\\/1458165_sa.jpg\"}', 'upc' => '883929428182', 'provider' => 'bestbuy'],\n ['name' => \"Hangover/Hangover Part II [2 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hangover-hangover-part-ii-2-discs-blu-ray-disc/1458174.p?id=3274751&skuId=1458174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2558\\/25580289.jpg\"}', 'upc' => '883929391967', 'provider' => 'bestbuy'],\n ['name' => \"Pacific Rim (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pacific-rim-dvd/1458183.p?id=2756420&skuId=1458183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1458183.jpg\"}', 'upc' => '883929428199', 'provider' => 'bestbuy'],\n ['name' => \"The Red Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-red-road-cd/1458327.p?id=91748&skuId=1458327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1458\\/1458327.jpg\"}', 'upc' => '093624532422', 'provider' => 'bestbuy'],\n ['name' => \"Born to This Land - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-to-this-land-cd/1458737.p?id=100222&skuId=1458737&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458737', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1458\\/1458737.jpg\"}', 'upc' => '093624532729', 'provider' => 'bestbuy'],\n ['name' => \"Clay Walker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clay-walker-cd/1458791.p?id=103385&skuId=1458791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1458791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1458\\/1458791_sa.jpg\"}', 'upc' => '075992451123', 'provider' => 'bestbuy'],\n ['name' => \"Christmas with Bing [Sony] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-with-bing-sony-cd/1459008.p?id=2723481&skuId=1459008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1459008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1459\\/1459008_sa.jpg\"}', 'upc' => '888837492225', 'provider' => 'bestbuy'],\n ['name' => \"Legendary Voices - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legendary-voices-cd-various/1459022.p?id=1683735&skuId=1459022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1459022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1459\\/1459022.jpg\"}', 'upc' => '710357785122', 'provider' => 'bestbuy'],\n ['name' => \"Drop Dead Diva: The Complete First Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drop-dead-diva-the-complete-first-season-3-discs-dvd/1459044.p?id=2098768&skuId=1459044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1459044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1459\\/1459044_sa.jpg\"}', 'upc' => '043396346093', 'provider' => 'bestbuy'],\n ['name' => \"Too Cool for School Collection: Ferris Bueller's Day Off/Pretty in Pink/Some Kind of Wonderful (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/too-cool-for-school-collection-ferris-buellers-day-off-pretty-in-pink-some-kind-of-wonderful-3-disc-dvd/1459119.p?id=2637755&skuId=1459119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1459119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1459\\/1459119_sa.jpg\"}', 'upc' => '883929321780', 'provider' => 'bestbuy'],\n ['name' => \"Hori - Racing Wheel for Xbox One - Black\", 'description_short' => \"Show off your slick driving skills with this racing wheel\", 'description_long' => \"Show off your slick driving skills with this racing wheel\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hori-racing-wheel-for-xbox-one-black/1460003.p?id=1219498403573&skuId=1460003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460003_sa.jpg\"}', 'upc' => '873124004854', 'provider' => 'bestbuy'],\n ['name' => \"Hori - Racing Wheel for PlayStation 4 and PlayStation 3 - Black\", 'description_short' => \"Show off your slick driving skills with this racing wheel\", 'description_long' => \"Show off your slick driving skills with this racing wheel\", 'price' => 79.99, 'sale_price' => 72.99, 'url' => 'http://www.bestbuy.com/site/hori-racing-wheel-for-playstation-4-and-playstation-3-black/1460012.p?id=1219498405069&skuId=1460012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460012_sa.jpg\"}', 'upc' => '873124005080', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1460101.p?id=2722151&skuId=1460101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460101_sa.jpg\"}', 'upc' => '888837115124', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1460129.p?id=2722129&skuId=1460129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460129_sa.jpg\"}', 'upc' => '888837165822', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1460147.p?id=2722102&skuId=1460147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460147_sa.jpg\"}', 'upc' => '888837165228', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1460183.p?id=2722133&skuId=1460183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460183_sa.jpg\"}', 'upc' => '888837114820', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1460192.p?id=2722106&skuId=1460192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460192_sa.jpg\"}', 'upc' => '888837114325', 'provider' => 'bestbuy'],\n ['name' => \"The Absolute Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-absolute-collection-cd/1460208.p?id=2716081&skuId=1460208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460208_sa.jpg\"}', 'upc' => '887654922625', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1460217.p?id=2722064&skuId=1460217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460217_sa.jpg\"}', 'upc' => '888837114127', 'provider' => 'bestbuy'],\n ['name' => \"The Absolute Collection [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-absolute-collection-import-cd/1460226.p?id=2715859&skuId=1460226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460226_sa.jpg\"}', 'upc' => '887654922526', 'provider' => 'bestbuy'],\n ['name' => \"Cómo Te Voy a Olvidar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/como-te-voy-a-olvidar-cd/1460235.p?id=2714105&skuId=1460235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460235_sa.jpg\"}', 'upc' => '888837421522', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1460244.p?id=2722058&skuId=1460244&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1460244', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1460\\/1460244_sa.jpg\"}', 'upc' => '888837114721', 'provider' => 'bestbuy'],\n ['name' => \"Fire in the Sky - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fire-in-the-sky-cd/1461000.p?id=84635&skuId=1461000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461000_sa.jpg\"}', 'upc' => '054895211324', 'provider' => 'bestbuy'],\n ['name' => \"MakerBot - 1.75mm PLA Filament 2 lbs. - Translucent Orange\", 'description_short' => \"MAKERBOT 1.75mm PLA Filament 2 lbs.: Compatible with MakerBot Replicator 5th-generation, Replicator Z18 and Replicator 2 3D printers; PLA material made from nontoxic resin; adheres well to acrylic and MakerBot Build Plate Tape; quality-tested; 2-lb. spool\", 'description_long' => \"MAKERBOT 1.75mm PLA Filament 2 lbs.: Compatible with MakerBot Replicator 5th-generation, Replicator Z18 and Replicator 2 3D printers; PLA material made from nontoxic resin; adheres well to acrylic and MakerBot Build Plate Tape; quality-tested; 2-lb. spool\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/makerbot-1-75mm-pla-filament-2-lbs-translucent-orange/1461011.p?id=1219494666820&skuId=1461011', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461011_sa.jpg\"}', 'upc' => '817913011029', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - Great Kite Flying Machine - Brown\", 'description_short' => \"Inspired by Leonardo da Vinci&#039;s design; plastic material; canvas wing cover, articulations, pulleys and tail; snap-together assembly\", 'description_long' => \"Inspired by Leonardo da Vinci&#039;s design; plastic material; canvas wing cover, articulations, pulleys and tail; snap-together assembly\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elenco-great-kite-flying-machine-brown/1461058.p?id=1219052008997&skuId=1461058', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461058_sa.jpg\"}', 'upc' => '769188610219', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - The Magic School Bus Blasting Off with Erupting Volcanoes Kit - Multi\", 'description_short' => \"Lets children engage in volcano-related activities and experiments; helps develop problem-solving skills; for ages 5 and up\", 'description_long' => \"Lets children engage in volcano-related activities and experiments; helps develop problem-solving skills; for ages 5 and up\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-the-magic-school-bus-blasting-off-with-erupting-volcanoes-kit-multi/1461085.p?id=1219052015859&skuId=1461085', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461085_sa.jpg\"}', 'upc' => '892511000415', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - Wildlife Globe - Multi\", 'description_short' => \"More than 250 illustrated images of animals and sights with explanatory text; illuminated design; dual-image effect; child-friendly construction; for ages 6 and up\", 'description_long' => \"More than 250 illustrated images of animals and sights with explanatory text; illuminated design; dual-image effect; child-friendly construction; for ages 6 and up\", 'price' => 54.99, 'sale_price' => 38.99, 'url' => 'http://www.bestbuy.com/site/elenco-wildlife-globe-multi/1461119.p?id=1219052019338&skuId=1461119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461119_sa.jpg\"}', 'upc' => '769188371493', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - Science Tech Talking Galaxy Planetarium with Night-Light - Gray\", 'description_short' => \"Projects constellations on your child&#039;s wall or ceiling; talking design; adjustable volume; night-light function; child-friendly construction; ages 8 and up\", 'description_long' => \"Projects constellations on your child&#039;s wall or ceiling; talking design; adjustable volume; night-light function; child-friendly construction; ages 8 and up\", 'price' => 44.99, 'sale_price' => 35.99, 'url' => 'http://www.bestbuy.com/site/elenco-science-tech-talking-galaxy-planetarium-with-night-light-gray/1461155.p?id=1219052019711&skuId=1461155', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461155_sa.jpg\"}', 'upc' => '769188373640', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - Set 9 - Magnetism, Static Electricity and Tornadoes, Clouds and Water Cycle Kits - Multi\", 'description_short' => \"Lets your child engage in imaginative experiments; includes 3 kits\", 'description_long' => \"Lets your child engage in imaginative experiments; includes 3 kits\", 'price' => 29.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-set-9-magnetism-static-electricity-and-tornadoes-clouds-and-water-cycle-kits-multi/1461164.p?id=1219052020599&skuId=1461164', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461164_sa.jpg\"}', 'upc' => '892511000095', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - Set 11 - Stars, Planets and Forces Kits - Multi\", 'description_short' => \"Introduces your child to astronomy; includes 3 kits\", 'description_long' => \"Introduces your child to astronomy; includes 3 kits\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-set-11-stars-planets-and-forces-kits-multi/1461173.p?id=1219052010591&skuId=1461173', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461173_sa.jpg\"}', 'upc' => '892511000118', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - 30mm Mobile Telescope - White/Silver/Black\", 'description_short' => \"20x/30x/40x eyepiece; 30mm objective lens; diagonal mirror; ABS body; portable design; 10&quot; tripod included; ages 8 and up\", 'description_long' => \"20x/30x/40x eyepiece; 30mm objective lens; diagonal mirror; ABS body; portable design; 10&quot; tripod included; ages 8 and up\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elenco-30mm-mobile-telescope-white-silver-black/1461182.p?id=1219052014994&skuId=1461182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461182_rc.jpg\"}', 'upc' => '769188410055', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - The Magic School Bus Chemistry Lab Kit - Multi\", 'description_short' => \"Lets young scientists explore the field of chemistry; helps develop problem-solving skills; for ages 5 and up\", 'description_long' => \"Lets young scientists explore the field of chemistry; helps develop problem-solving skills; for ages 5 and up\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-the-magic-school-bus-chemistry-lab-kit-multi/1461234.p?id=1219052021187&skuId=1461234', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461234_sa.jpg\"}', 'upc' => '892511000439', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - 11\\\" Color My World Globe - Multi\", 'description_short' => \"11&quot; coloring globe with land mass and ocean outlines; helps children recognize continents, countries and bodies of water; 6 erasable markers; 12 static stickers; ages 8 and up\", 'description_long' => \"11&quot; coloring globe with land mass and ocean outlines; helps children recognize continents, countries and bodies of water; 6 erasable markers; 12 static stickers; ages 8 and up\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elenco-11-color-my-world-globe-multi/1461261.p?id=1219052013832&skuId=1461261', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461261_sa.jpg\"}', 'upc' => '769188375293', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - The Magic School Bus Slime and Polymer Lab Kit - Multi\", 'description_short' => \"Lets young scientists explore slimes and polymers; helps develop problem-solving skills; for ages 5 and up\", 'description_long' => \"Lets young scientists explore slimes and polymers; helps develop problem-solving skills; for ages 5 and up\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-the-magic-school-bus-slime-and-polymer-lab-kit-multi/1461289.p?id=1219052012649&skuId=1461289', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461289_sa.jpg\"}', 'upc' => '892511000453', 'provider' => 'bestbuy'],\n ['name' => \"Innovention Toys - The Laser Game: Khet 2.0 - Multi\", 'description_short' => \"Uses Egyptian mirrors and eye-safe lasers to illuminate opponents; 2 players; ages 9 to adult\", 'description_long' => \"Uses Egyptian mirrors and eye-safe lasers to illuminate opponents; 2 players; ages 9 to adult\", 'price' => 39.99, 'sale_price' => 29.99, 'url' => 'http://www.bestbuy.com/site/innovention-toys-the-laser-game-khet-2-0-multi/1461298.p?id=1219052020662&skuId=1461298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461298_sa.jpg\"}', 'upc' => '094922066367', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - Science on a Tracking Expedition Kit - Multi\", 'description_short' => \"Teaches your child about animal tracking through hands-on science experiments and activities; helps develop problem-solving skills; ages 5 and up\", 'description_long' => \"Teaches your child about animal tracking through hands-on science experiments and activities; helps develop problem-solving skills; ages 5 and up\", 'price' => 29.99, 'sale_price' => 27.99, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-science-on-a-tracking-expedition-kit-multi/1461428.p?id=1219052010261&skuId=1461428', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461428_sa.jpg\"}', 'upc' => '892511000361', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - Microscope Set - Black\", 'description_short' => \"100-750x zoom power; 8x, 25x and 42x objective lenses; 12-18x Huygens eyepiece; light; projector; specimen viewing slots\", 'description_long' => \"100-750x zoom power; 8x, 25x and 42x objective lenses; 12-18x Huygens eyepiece; light; projector; specimen viewing slots\", 'price' => 36.99, 'sale_price' => 25.99, 'url' => 'http://www.bestbuy.com/site/elenco-microscope-set-black/1461437.p?id=1219052017087&skuId=1461437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461437_rc.jpg\"}', 'upc' => '769188410017', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - The Magic School Bus Solar Energy to the Rescue Kit - Multi\", 'description_short' => \"Lets young scientists engage in activities based on solar power; helps develop problem-solving skills; for ages 5 and up\", 'description_long' => \"Lets young scientists engage in activities based on solar power; helps develop problem-solving skills; for ages 5 and up\", 'price' => 22.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-the-magic-school-bus-solar-energy-to-the-rescue-kit-multi/1461446.p?id=1219052011912&skuId=1461446', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461446_sa.jpg\"}', 'upc' => '892511000385', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - The Magic School Bus Back in Time with the Dinosaurs Kit - Multi\", 'description_short' => \"Lets your child engage in scientific activities that teach about dinosaurs; helps develop problem-solving skills; for ages 5 and up\", 'description_long' => \"Lets your child engage in scientific activities that teach about dinosaurs; helps develop problem-solving skills; for ages 5 and up\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-the-magic-school-bus-back-in-time-with-the-dinosaurs-kit-multi/1461455.p?id=1219052018107&skuId=1461455', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461455_sa.jpg\"}', 'upc' => '892511000378', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - The Magic School Bus Soaring into Flight Science Kit - Multi\", 'description_short' => \"Teaches your child about science; includes supplies for a dozen dynamic experiments; ages 5 and up\", 'description_long' => \"Teaches your child about science; includes supplies for a dozen dynamic experiments; ages 5 and up\", 'price' => 22.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-the-magic-school-bus-soaring-into-flight-science-kit-multi/1461464.p?id=1219052010919&skuId=1461464', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461464_sa.jpg\"}', 'upc' => '892511000262', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - 300-in-1 Electronic Project Lab - Multi\", 'description_short' => \"Electronics trainer with 300 experiments; uses spring-wire and breadboard connection methods; includes transistors, transformers, diodes, resistors, capacitors, phototransistors and integrated circuits\", 'description_long' => \"Electronics trainer with 300 experiments; uses spring-wire and breadboard connection methods; includes transistors, transformers, diodes, resistors, capacitors, phototransistors and integrated circuits\", 'price' => 153.99, 'sale_price' => 103.99, 'url' => 'http://www.bestbuy.com/site/elenco-300-in-1-electronic-project-lab-multi/1461482.p?id=1219052010920&skuId=1461482', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461482_sa.jpg\"}', 'upc' => '756619001807', 'provider' => 'bestbuy'],\n ['name' => \"Outskirts of Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/outskirts-of-town-cd/1461484.p?id=97978&skuId=1461484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461484.jpg\"}', 'upc' => '715187762626', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - Set 3 - Minerals, Crystals and Fossils Kits - Multi\", 'description_short' => \"Lets your child engage in fun earth science experiments; includes 3 kits\", 'description_long' => \"Lets your child engage in fun earth science experiments; includes 3 kits\", 'price' => 29.99, 'sale_price' => 20.99, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-set-3-minerals-crystals-and-fossils-kits-multi/1461525.p?id=1219052013581&skuId=1461525', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461525_sa.jpg\"}', 'upc' => '892511000033', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - The Magic School Bus Attracted to Magnificent Magnets Kit - Multi\", 'description_short' => \"Lets young scientists engage in magnet-based activities; helps develop problem-solving skills; for ages 5 and up\", 'description_long' => \"Lets young scientists engage in magnet-based activities; helps develop problem-solving skills; for ages 5 and up\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-the-magic-school-bus-attracted-to-magnificent-magnets-kit-multi/1461534.p?id=1219052008995&skuId=1461534', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461534_sa.jpg\"}', 'upc' => '892511000446', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - Line-Tracking Mouse Kit - Multi\", 'description_short' => \"Introduces your child to the wonders of electronics and robotics; smart robot mouse with photo interrupter eyes; quality construction; ages 14 and up\", 'description_long' => \"Introduces your child to the wonders of electronics and robotics; smart robot mouse with photo interrupter eyes; quality construction; ages 14 and up\", 'price' => 37.99, 'sale_price' => 25.99, 'url' => 'http://www.bestbuy.com/site/elenco-line-tracking-mouse-kit-multi/1461552.p?id=1219052020473&skuId=1461552', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461552_sa.jpg\"}', 'upc' => '756619002286', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - The Magic School Bus Jumping into Electricity Kit - Multi\", 'description_short' => \"Lets young scientists learn about static electricity with hands-on activities; helps develop problem-solving skills; for ages 5 and up\", 'description_long' => \"Lets young scientists learn about static electricity with hands-on activities; helps develop problem-solving skills; for ages 5 and up\", 'price' => 22.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-the-magic-school-bus-jumping-into-electricity-kit-multi/1461561.p?id=1219052011089&skuId=1461561', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461561_sa.jpg\"}', 'upc' => '892511000408', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - Set 1 - Recycling, Scientific Measurements and Magnets Kits - Multi\", 'description_short' => \"Lets your child engage in fun science experiments; includes 3 kits\", 'description_long' => \"Lets your child engage in fun science experiments; includes 3 kits\", 'price' => 29.99, 'sale_price' => 20.99, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-set-1-recycling-scientific-measurements-and-magnets-kits-multi/1461604.p?id=1219052020532&skuId=1461604', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461604_sa.jpg\"}', 'upc' => '892511000019', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - Escape Robot Kit - Silver\", 'description_short' => \"3 infrared-emitting diodes and 1 infrared-receiving module; built-in microprocessor; moves on 6 legs\", 'description_long' => \"3 infrared-emitting diodes and 1 infrared-receiving module; built-in microprocessor; moves on 6 legs\", 'price' => 39.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/elenco-escape-robot-kit-silver/1461622.p?id=1219052013704&skuId=1461622', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461622_sa.jpg\"}', 'upc' => '756619007304', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - Catapult Kit - Multi\", 'description_short' => \"Inspired by Leonardo da Vinci&#039;s design; plastic material; double-leaf spring; hand crank; snap-together assembly; ages 8 and up\", 'description_long' => \"Inspired by Leonardo da Vinci&#039;s design; plastic material; double-leaf spring; hand crank; snap-together assembly; ages 8 and up\", 'price' => 19.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/elenco-catapult-kit-multi/1461668.p?id=1219052015121&skuId=1461668', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461668_sa.jpg\"}', 'upc' => '769188610097', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - 500-in-1 Electronic Project Lab - Multi\", 'description_short' => \"Electronics trainer with 500 experiments; uses spring-wire and breadboard connection methods; ages 10 and up\", 'description_long' => \"Electronics trainer with 500 experiments; uses spring-wire and breadboard connection methods; ages 10 and up\", 'price' => 399.99, 'sale_price' => 324.99, 'url' => 'http://www.bestbuy.com/site/elenco-500-in-1-electronic-project-lab-multi/1461686.p?id=1219052012107&skuId=1461686', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461686_sa.jpg\"}', 'upc' => '756619001999', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - 200-in-1 Electronic Project Lab - Multi\", 'description_short' => \"Electronics trainer with 200 experiments; uses spring-wire and breadboard connection methods; includes transistors, transformers, diodes, resistors, capacitors, phototransistors and integrated circuits\", 'description_long' => \"Electronics trainer with 200 experiments; uses spring-wire and breadboard connection methods; includes transistors, transformers, diodes, resistors, capacitors, phototransistors and integrated circuits\", 'price' => 92.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elenco-200-in-1-electronic-project-lab-multi/1461695.p?id=1219052013061&skuId=1461695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461695_sa.jpg\"}', 'upc' => '756619001791', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - Set 10 - Eggs, Owls and Seeds, Fruits and Other Plant Parts Kits - Multi\", 'description_short' => \"Lets your child enjoy learning about botany, the cycle of life and more; includes 3 kits\", 'description_long' => \"Lets your child enjoy learning about botany, the cycle of life and more; includes 3 kits\", 'price' => 29.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-set-10-eggs-owls-and-seeds-fruits-and-other-plant-parts-kits-multi/1461713.p?id=1219052009808&skuId=1461713', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461713_sa.jpg\"}', 'upc' => '892511000101', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - Snap Circuits Snaptricity Kit - Multi\", 'description_short' => \"Lets your child build more than 75 projects related to electricity and magnetism and their everyday home uses; snap-together construction; for ages 8 and up\", 'description_long' => \"Lets your child build more than 75 projects related to electricity and magnetism and their everyday home uses; snap-together construction; for ages 8 and up\", 'price' => 39.99, 'sale_price' => 32.99, 'url' => 'http://www.bestbuy.com/site/elenco-snap-circuits-snaptricity-kit-multi/1461722.p?id=1219052010094&skuId=1461722', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461722_sa.jpg\"}', 'upc' => '756619006253', 'provider' => 'bestbuy'],\n ['name' => \"Engino - 8-in-1 Simple Machines Set - Multi\", 'description_short' => \"Lets your child build 60 working machine models; ages 6 and up\", 'description_long' => \"Lets your child build 60 working machine models; ages 6 and up\", 'price' => 84.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/engino-8-in-1-simple-machines-set-multi/1461777.p?id=1219052013387&skuId=1461777', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461777_sa.jpg\"}', 'upc' => '756619008264', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - 36\\\" Edu-Toy Tyrannosaurus Rex Skeleton Model - Multi\", 'description_short' => \"Allows your child to construct a 36&quot; replica of a Tyrannosaurus Rex skeleton; 51 realistic, true-to-scale pieces; includes display stand; ages 8 and up\", 'description_long' => \"Allows your child to construct a 36&quot; replica of a Tyrannosaurus Rex skeleton; 51 realistic, true-to-scale pieces; includes display stand; ages 8 and up\", 'price' => 67.99, 'sale_price' => 51.99, 'url' => 'http://www.bestbuy.com/site/elenco-36-edu-toy-tyrannosaurus-rex-skeleton-model-multi/1461786.p?id=1219052020864&skuId=1461786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461786_sa.jpg\"}', 'upc' => '769188373299', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - Set 6 - Flight, Digestive System and Heart and Lungs Kits - Multi\", 'description_short' => \"Lets your child take a journey through the human body; includes 3 kits\", 'description_long' => \"Lets your child take a journey through the human body; includes 3 kits\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-set-6-flight-digestive-system-and-heart-and-lungs-kits-multi/1461822.p?id=1219052020146&skuId=1461822', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461822_sa.jpg\"}', 'upc' => '892511000064', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - 8-Piece Small Human Torso Anatomy Set - Multi\", 'description_short' => \"Teaches your child about human anatomy; 8 dissectible parts; sturdy construction; ABS base; hand-painted design; compact size; ages 8 and up\", 'description_long' => \"Teaches your child about human anatomy; 8 dissectible parts; sturdy construction; ABS base; hand-painted design; compact size; ages 8 and up\", 'price' => 33.99, 'sale_price' => 29.99, 'url' => 'http://www.bestbuy.com/site/elenco-8-piece-small-human-torso-anatomy-set-multi/1461831.p?id=1219052013257&skuId=1461831', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461831', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461831_sa.jpg\"}', 'upc' => '769188410062', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - The Magic School Bus Microscope Lab Kit\", 'description_short' => \"Lets young scientists engage in microscope-based activities; helps develop problem-solving skills; for ages 5 and up\", 'description_long' => \"Lets young scientists engage in microscope-based activities; helps develop problem-solving skills; for ages 5 and up\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-the-magic-school-bus-microscope-lab-kit/1461886.p?id=1219052019519&skuId=1461886', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461886_sa.jpg\"}', 'upc' => '892511000422', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - 50-in-1 Electronic Playground - Multi\", 'description_short' => \"Lets your child build more than 50 electronic projects; teaches about voltage, current, resistors, capacitors and more; uses spring hook-up method; ages 10 and up\", 'description_long' => \"Lets your child build more than 50 electronic projects; teaches about voltage, current, resistors, capacitors and more; uses spring hook-up method; ages 10 and up\", 'price' => 24.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/elenco-50-in-1-electronic-playground-multi/1461895.p?id=1219052011140&skuId=1461895', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461895_sa.jpg\"}', 'upc' => '756619000930', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - The Magic School Bus Going Green Kit - Multi\", 'description_short' => \"Lets young scientists recycle paper, make a compost tube and shrinky dinks and more; helps develop problem-solving skills; for ages 5 and up\", 'description_long' => \"Lets young scientists recycle paper, make a compost tube and shrinky dinks and more; helps develop problem-solving skills; for ages 5 and up\", 'price' => 22.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-the-magic-school-bus-going-green-kit-multi/1461904.p?id=1219052009001&skuId=1461904', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461904_sa.jpg\"}', 'upc' => '892511000309', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Lee Greenwood [Liberty] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-lee-greenwood-liberty-cd/1461910.p?id=84220&skuId=1461910&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461910', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461910.jpg\"}', 'upc' => '077778965022', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - Bug Collector Set - Green\", 'description_short' => \"Allows your child to collect and observe live insects and plants; 3 speeds; ventilated, magnifying viewers; includes a creature net and 2 bug containers; for ages 5 and up\", 'description_long' => \"Allows your child to collect and observe live insects and plants; 3 speeds; ventilated, magnifying viewers; includes a creature net and 2 bug containers; for ages 5 and up\", 'price' => 29.99, 'sale_price' => 21.99, 'url' => 'http://www.bestbuy.com/site/elenco-bug-collector-set-green/1461913.p?id=1219052015401&skuId=1461913', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461913_sa.jpg\"}', 'upc' => '769188373107', 'provider' => 'bestbuy'],\n ['name' => \"Elenco - Snap Circuits Micro I Standard Microcontroller Kit - Multi\", 'description_short' => \"Helps your child learn to program microcontrollers for more than 25 different projects; compatible with most PCs with a Windows operating system; for ages 12 and up\", 'description_long' => \"Helps your child learn to program microcontrollers for more than 25 different projects; compatible with most PCs with a Windows operating system; for ages 12 and up\", 'price' => 119.99, 'sale_price' => 86.99, 'url' => 'http://www.bestbuy.com/site/elenco-snap-circuits-micro-i-standard-microcontroller-kit-multi/1461931.p?id=1219052018822&skuId=1461931', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461931_sa.jpg\"}', 'upc' => '756619006901', 'provider' => 'bestbuy'],\n ['name' => \"The Young Scientists Club - Set 7 - The Senses, Light and Bones and Muscles Kits - Multi\", 'description_short' => \"Introduces your child to the world of physics; includes 3 kits\", 'description_long' => \"Introduces your child to the world of physics; includes 3 kits\", 'price' => 29.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/the-young-scientists-club-set-7-the-senses-light-and-bones-and-muscles-kits-multi/1461968.p?id=1219052012805&skuId=1461968', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461968_sa.jpg\"}', 'upc' => '892511000071', 'provider' => 'bestbuy'],\n ['name' => \"Great Singers: Operatic Arias (1910-1935) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-singers-operatic-arias-1910-1935-cd/1461992.p?id=1821539&skuId=1461992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1461992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1461\\/1461992.jpg\"}', 'upc' => '710357784927', 'provider' => 'bestbuy'],\n ['name' => \"Microsoft - Lumia 920 Cell Phone (Unlocked) - Red\", 'description_short' => \"Windows Phone 8 operating system3G speedWi-FiSocial network integrationBluetooth enabledIPS LCD capacitive touch screenOnly compatible with GSM carriers, including AT&amp;T and T-Mobile\", 'description_long' => \"Windows Phone 8 operating system3G speedWi-FiSocial network integrationBluetooth enabledIPS LCD capacitive touch screenOnly compatible with GSM carriers, including AT&amp;T and T-Mobile\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/microsoft-lumia-920-cell-phone-unlocked-red/1463144.p?id=1219052009002&skuId=1463144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1463144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1463\\/1463144_sa.jpg\"}', 'upc' => '899794011251', 'provider' => 'bestbuy'],\n ['name' => \"MEElectronics - Air-Fi Venture Stereo Bluetooth Wireless Headphones - Black\", 'description_short' => \"Sound-isolating design; 40mm drivers; neodymium magnets; deep, enhanced bass; full-range sound; built-in microphone; controls for media and phone calls; foam ear cushions\", 'description_long' => \"Sound-isolating design; 40mm drivers; neodymium magnets; deep, enhanced bass; full-range sound; built-in microphone; controls for media and phone calls; foam ear cushions\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meelectronics-air-fi-venture-stereo-bluetooth-wireless-headphones-black/1463199.p?id=1219052013194&skuId=1463199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1463199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1463\\/1463199_sa.jpg\"}', 'upc' => '736211199263', 'provider' => 'bestbuy'],\n ['name' => \"Microsoft - Lumia 920 Cell Phone (Unlocked) - White\", 'description_short' => \"Windows Phone 8 operating system3G speedWi-FiSocial network integrationBluetooth enabledIPS LCD capacitive touch screenOnly compatible with GSM carriers, including AT&amp;T and T-Mobile\", 'description_long' => \"Windows Phone 8 operating system3G speedWi-FiSocial network integrationBluetooth enabledIPS LCD capacitive touch screenOnly compatible with GSM carriers, including AT&amp;T and T-Mobile\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/microsoft-lumia-920-cell-phone-unlocked-white/1463241.p?id=1219052010713&skuId=1463241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1463241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1463\\/1463241_sa.jpg\"}', 'upc' => '899794011237', 'provider' => 'bestbuy'],\n ['name' => \"Manfrotto - 293 62.1\\\" Tripod and 3-Way Photo Head - Black\", 'description_short' => \"Compatible with most cameras up to 8.8 lbs.; 62.1&quot; maximum extension height; 17.9&quot; minimum extension height; 3-section locking legs; folding head handles\", 'description_long' => \"Compatible with most cameras up to 8.8 lbs.; 62.1&quot; maximum extension height; 17.9&quot; minimum extension height; 3-section locking legs; folding head handles\", 'price' => 179.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/manfrotto-293-62-1-tripod-and-3-way-photo-head-black/1463596.p?id=1219052014536&skuId=1463596', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1463596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1463\\/1463596_rc.jpg\"}', 'upc' => '719821346180', 'provider' => 'bestbuy'],\n ['name' => \"Manfrotto - PIXI Tripod - Black\", 'description_short' => \"Compatible with most compact-system and compact cameras and select entry-level DSLR cameras; universal 1/4&quot; screw head; push button adjustment; stainless-steel and Adapto materials; rubber feet\", 'description_long' => \"Compatible with most compact-system and compact cameras and select entry-level DSLR cameras; universal 1/4&quot; screw head; push button adjustment; stainless-steel and Adapto materials; rubber feet\", 'price' => 26.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/manfrotto-pixi-tripod-black/1463675.p?id=1219052017652&skuId=1463675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1463675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1463\\/1463675_rc.jpg\"}', 'upc' => '719821362203', 'provider' => 'bestbuy'],\n ['name' => \"Manfrotto - Befree 56.7\\\" Tripod - Black\", 'description_short' => \"Compatible with most cameras up to 8.8 lbs.; 56.7&quot; maximum extension height; 13.4&quot; minimum extension height; leg-angle selectors\", 'description_long' => \"Compatible with most cameras up to 8.8 lbs.; 56.7&quot; maximum extension height; 13.4&quot; minimum extension height; leg-angle selectors\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/manfrotto-befree-56-7-tripod-black/1463739.p?id=1219052009000&skuId=1463739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1463739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1463\\/1463739_rc.jpg\"}', 'upc' => '719821362364', 'provider' => 'bestbuy'],\n ['name' => \"MXGP: The Official Motocross Videogame - PRE-OWNED - PlayStation 3\", 'description_short' => \"Get a little dirty for a chance at glory\", 'description_long' => \"Get a little dirty for a chance at glory\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mxgp-the-official-motocross-videogame-pre-owned-playstation-3/1464009.p?id=1219499664244&skuId=1464009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1464009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1464\\/1464009_sa.jpg\"}', 'upc' => '799007841401', 'provider' => 'bestbuy'],\n ['name' => \"DeLonghi - Safeheat Ceramic Heater - Gray\", 'description_short' => \"Electronic controls; Eco Energy setting; adjustable electronic thermostat; anti-freeze function; overheat protection; tip-over safety switch\", 'description_long' => \"Electronic controls; Eco Energy setting; adjustable electronic thermostat; anti-freeze function; overheat protection; tip-over safety switch\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/delonghi-safeheat-ceramic-heater-gray/1464134.p?id=1218261400403&skuId=1464134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1464134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1464\\/1464134_sa.jpg\"}', 'upc' => '044387350907', 'provider' => 'bestbuy'],\n ['name' => \"Case Logic - Neoprene Laptop Sleeve - Black\", 'description_short' => \"Compatible with most laptops with up to a 13.3&quot; display; neoprene material; accessory compartment with USB pocket; Zippered Power Pocket; slimline design with asymmetrical zipper\", 'description_long' => \"Compatible with most laptops with up to a 13.3&quot; display; neoprene material; accessory compartment with USB pocket; Zippered Power Pocket; slimline design with asymmetrical zipper\", 'price' => 29.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/case-logic-neoprene-laptop-sleeve-black/1464143.p?id=1218261401323&skuId=1464143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1464143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1464\\/1464143_sa.jpg\"}', 'upc' => '085854163590', 'provider' => 'bestbuy'],\n ['name' => \"Music from The Twilight Saga Soundtracks: Videos and Performances, Vol. 1 (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-from-the-twilight-saga-soundtracks-videos-and-performances-vol-1-blu-ray-disc/1465382.p?id=2155358&skuId=1465382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1465382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1465\\/1465382.jpg\"}', 'upc' => '025192090554', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Dreams (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-dreams-dvd/1465406.p?id=2155944&skuId=1465406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1465406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1465\\/1465406.jpg\"}', 'upc' => '025192064111', 'provider' => 'bestbuy'],\n ['name' => \"Parks and Recreation: Season Two [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parks-and-recreation-season-two-4-discs-dvd/1465415.p?id=2155266&skuId=1465415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1465415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1465\\/1465415_sa.jpg\"}', 'upc' => '025192044373', 'provider' => 'bestbuy'],\n ['name' => \"Music from The Twilight Saga Soundtracks: Videos and Performances, Vol. 1 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-from-the-twilight-saga-soundtracks-videos-and-performances-vol-1-dvd/1465424.p?id=2155358&skuId=1465424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1465424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1465\\/1465424_sa.jpg\"}', 'upc' => '025192090547', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - 11-Piece Cookware Set - Black\", 'description_short' => \"ArmorGuard technology; hard-anodized exterior; Eterna nonstick interior; stainless-steel stick handles; side grips; tempered-glass covers; dishwasher safe\", 'description_long' => \"ArmorGuard technology; hard-anodized exterior; Eterna nonstick interior; stainless-steel stick handles; side grips; tempered-glass covers; dishwasher safe\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-11-piece-cookware-set-black/1465512.p?id=1218817735536&skuId=1465512', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1465512', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1465\\/1465512_rc.jpg\"}', 'upc' => '086279032584', 'provider' => 'bestbuy'],\n ['name' => \"Trinere's in the House! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trineres-in-the-house-cd/1465569.p?id=181372&skuId=1465569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1465569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1465\\/1465569_sa.jpg\"}', 'upc' => '054291882029', 'provider' => 'bestbuy'],\n ['name' => \"Once Upon A Time: Complete Second Season (DVD) (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/once-upon-a-time-complete-second-season-dvd-only--best-buy/1465719.p?id=2747199&skuId=1465719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1465719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1465719.jpg\"}', 'upc' => '786936836868', 'provider' => 'bestbuy'],\n ['name' => \"SanDisk - iXpand 64GB USB 2.0/Lightning Flash Drive - Silver/Black\", 'description_short' => \"Compatible with Apple&#174; iPhone&#174; and iPad&#174; and PC and Mac; includes USB 2.0 and Lightning connectors\", 'description_long' => \"Compatible with Apple&#174; iPhone&#174; and iPad&#174; and PC and Mac; includes USB 2.0 and Lightning connectors\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sandisk-ixpand-64gb-usb-2-0-lightning-flash-drive-silver-black/1466007.p?id=1219498404480&skuId=1466007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1313\\/1313522838\\/1313522838_sa.jpg\"}', 'upc' => '619659124083', 'provider' => 'bestbuy'],\n ['name' => \"Escape (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/escape-blu-ray-disc/1466008.p?id=2666362&skuId=1466008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466008_sa.jpg\"}', 'upc' => '741952746690', 'provider' => 'bestbuy'],\n ['name' => \"Saddle Up Double Feature (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saddle-up-double-feature-dvd/1466114.p?id=2897204&skuId=1466114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466114.jpg\"}', 'upc' => '095163884901', 'provider' => 'bestbuy'],\n ['name' => \"Where the Red Fern Grows: Double Feature (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-the-red-fern-grows-double-feature-dvd/1466141.p?id=2647490&skuId=1466141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466141_sa.jpg\"}', 'upc' => '095163885311', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Castle Rock 10' Speaker Cables (Pair) - Black/Brown\", 'description_short' => \"Compatible with most single-biwire speakers with 4 binding posts; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'description_long' => \"Compatible with most single-biwire speakers with 4 binding posts; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'price' => 1699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-castle-rock-10-speaker-cables-pair-black-brown/1466178.p?id=1219052014608&skuId=1466178', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466178_rc.jpg\"}', 'upc' => '092592080300', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Castle Rock 8' Speaker Cable - Black/Brown\", 'description_short' => \"Compatible with most full-range speakers with 2 binding posts; full-range optimized design; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'description_long' => \"Compatible with most full-range speakers with 2 binding posts; full-range optimized design; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-castle-rock-8-speaker-cable-black-brown/1466187.p?id=1219052017653&skuId=1466187', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466187_sa.jpg\"}', 'upc' => '092592080331', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Castle Rock 12' Speaker Cables (Pair) - Black/Brown\", 'description_short' => \"Compatible with most single-biwire speakers with 2 binding posts; full-range optimized design; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'description_long' => \"Compatible with most single-biwire speakers with 2 binding posts; full-range optimized design; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'price' => 1899.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-castle-rock-12-speaker-cables-pair-black-brown/1466196.p?id=1219052014346&skuId=1466196', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466196_rc.jpg\"}', 'upc' => '092592080270', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Castle Rock 10' Speaker Cable - Black/Brown\", 'description_short' => \"Compatible with most single-biwire speakers with 4 binding posts; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'description_long' => \"Compatible with most single-biwire speakers with 4 binding posts; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'price' => 849.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-castle-rock-10-speaker-cable-black-brown/1466202.p?id=1219052012933&skuId=1466202', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466202_rc.jpg\"}', 'upc' => '092592080317', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Castle Rock 10' Speaker Cable - Black/Brown\", 'description_short' => \"Compatible with most full-range speakers with 2 binding posts; full-range optimized design; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'description_long' => \"Compatible with most full-range speakers with 2 binding posts; full-range optimized design; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'price' => 849.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-castle-rock-10-speaker-cable-black-brown/1466211.p?id=1219052011527&skuId=1466211', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466211_rc.jpg\"}', 'upc' => '092592080294', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Castle Rock 10' Speaker Cables (Pair) - Black/Brown\", 'description_short' => \"Compatible with most full-range speakers with 2 binding posts; full-range optimized design; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'description_long' => \"Compatible with most full-range speakers with 2 binding posts; full-range optimized design; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'price' => 1699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-castle-rock-10-speaker-cables-pair-black-brown/1466239.p?id=1219052010778&skuId=1466239', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466239_rc.jpg\"}', 'upc' => '092592080263', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Castle Rock 10' Speaker Cables (Pair) - Black/Brown\", 'description_short' => \"Compatible with most bi-amped speakers with 4 binding posts; single bi-amp optimized design; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'description_long' => \"Compatible with most bi-amped speakers with 4 binding posts; single bi-amp optimized design; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'price' => 1899.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-castle-rock-10-speaker-cables-pair-black-brown/1466248.p?id=1219052015668&skuId=1466248', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466248_rc.jpg\"}', 'upc' => '092592080287', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Castle Rock 12' Speaker Cables (Pair) - Black/Brown\", 'description_short' => \"Compatible with most single-biwire speakers with 4 binding posts; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'description_long' => \"Compatible with most single-biwire speakers with 4 binding posts; Solid Perfect-Surface Copper+ conductors; Double Star-Quad geometry; foam PE insulation\", 'price' => 1899.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-castle-rock-12-speaker-cables-pair-black-brown/1466257.p?id=1219052008991&skuId=1466257', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466257_rc.jpg\"}', 'upc' => '092592080324', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Castle Rock 8' Speaker Cable - Black/Brown\", 'description_short' => \"Compatible with most single-biwire speakers with 4 binding posts; Solid Perfect-Surface Copper+ conductor; Double Star-Quad geometry; foam PE insulation\", 'description_long' => \"Compatible with most single-biwire speakers with 4 binding posts; Solid Perfect-Surface Copper+ conductor; Double Star-Quad geometry; foam PE insulation\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-castle-rock-8-speaker-cable-black-brown/1466266.p?id=1219052020409&skuId=1466266', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466266_rc.jpg\"}', 'upc' => '092592080348', 'provider' => 'bestbuy'],\n ['name' => \"The Hours Between Night & Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hours-between-night-day-cd/1466675.p?id=89216&skuId=1466675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1466675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1466\\/1466675_sa.jpg\"}', 'upc' => '074645380421', 'provider' => 'bestbuy'],\n ['name' => \"Strange Times - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strange-times-cd/1467111.p?id=77164&skuId=1467111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1467111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1467\\/1467111.jpg\"}', 'upc' => '720642460924', 'provider' => 'bestbuy'],\n ['name' => \"Audiovox - Refurbished 7\\\" - Built-In GPS - CD - In-Dash Deck for 2009-2012 Hyundai Santa Fe Vehicles\", 'description_short' => \"Refurbished\nBuilt-in Bluetooth; Apple&#174; iPod&#174;-, iPhone&#174;- and SiriusXM Satellite Radio-ready; auxiliary input; compatible with CD, CD-R, MP3 and WMA formats\", 'description_long' => \"Refurbished\nBuilt-in Bluetooth; Apple&#174; iPod&#174;-, iPhone&#174;- and SiriusXM Satellite Radio-ready; auxiliary input; compatible with CD, CD-R, MP3 and WMA formats\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audiovox-refurbished-7-built-in-gps-cd-in-dash-deck-for-2009-2012-hyundai-santa-fe-vehicles/1467159.p?id=1219052240633&skuId=1467159', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1467159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1467\\/1467159_sc.jpg\"}', 'upc' => '044476116056', 'provider' => 'bestbuy'],\n ['name' => \"Audiovox - Refurbished 7\\\" - Built-In GPS - CD - In-Dash Deck for Select Volkswagen Vehicles\", 'description_short' => \"Refurbished\nBuilt-in Bluetooth; Apple&#174; iPod&#174;-, iPhone&#174;- and SiriusXM Satellite Radio-ready; auxiliary input; compatible with CD, CD-R, MP3 and WMA formats\", 'description_long' => \"Refurbished\nBuilt-in Bluetooth; Apple&#174; iPod&#174;-, iPhone&#174;- and SiriusXM Satellite Radio-ready; auxiliary input; compatible with CD, CD-R, MP3 and WMA formats\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audiovox-refurbished-7-built-in-gps-cd-in-dash-deck-for-select-volkswagen-vehicles/1467177.p?id=1219052238108&skuId=1467177', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1467177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1467\\/1467177_sc.jpg\"}', 'upc' => '044476116155', 'provider' => 'bestbuy'],\n ['name' => \"Audiovox - Refurbished 6.2\\\" - Built-In GPS - CD - Built-In Bluetooth - In-Dash Deck\", 'description_short' => \"Refurbished\nApple&#174; iPod&#174;-, iPhone&#174;- and SiriusXM Satellite Radio-ready; auxiliary and front and rear USB inputs; Secure Digital card slot; compatible with CD, CD-R, MP3 and WMA formats\", 'description_long' => \"Refurbished\nApple&#174; iPod&#174;-, iPhone&#174;- and SiriusXM Satellite Radio-ready; auxiliary and front and rear USB inputs; Secure Digital card slot; compatible with CD, CD-R, MP3 and WMA formats\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audiovox-refurbished-6-2-built-in-gps-cd-built-in-bluetooth-in-dash-deck/1467186.p?id=1219052239640&skuId=1467186', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1467186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1467\\/1467186_sa.jpg\"}', 'upc' => '044476116001', 'provider' => 'bestbuy'],\n ['name' => \"Audiovox - Refurbished 7\\\" - Built-In GPS - CD - In-Dash Deck for 2007-2011 Honda CR-V Vehicles\", 'description_short' => \"Refurbished\nBuilt-in Bluetooth; Apple&#174; iPod&#174;-, iPhone&#174;- and SiriusXM Satellite Radio-ready; auxiliary input; compatible with CD, CD-R, MP3 and WMA formats\", 'description_long' => \"Refurbished\nBuilt-in Bluetooth; Apple&#174; iPod&#174;-, iPhone&#174;- and SiriusXM Satellite Radio-ready; auxiliary input; compatible with CD, CD-R, MP3 and WMA formats\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audiovox-refurbished-7-built-in-gps-cd-in-dash-deck-for-2007-2011-honda-cr-v-vehicles/1467256.p?id=1219052237908&skuId=1467256', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1467256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1467\\/1467256_sa.jpg\"}', 'upc' => '044476116032', 'provider' => 'bestbuy'],\n ['name' => \"Audiovox - Refurbished 7\\\" - Built-In GPS - CD - In-Dash Deck for 2010-2013 Toyota Prius Vehicles\", 'description_short' => \"Refurbished\nBuilt-in Bluetooth; Apple&#174; iPod&#174;-, iPhone&#174;- and SiriusXM Satellite Radio-ready; auxiliary input; compatible with CD, CD-R, MP3 and WMA formats\", 'description_long' => \"Refurbished\nBuilt-in Bluetooth; Apple&#174; iPod&#174;-, iPhone&#174;- and SiriusXM Satellite Radio-ready; auxiliary input; compatible with CD, CD-R, MP3 and WMA formats\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audiovox-refurbished-7-built-in-gps-cd-in-dash-deck-for-2010-2013-toyota-prius-vehicles/1467265.p?id=1219052238434&skuId=1467265', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1467265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1467\\/1467265_sc.jpg\"}', 'upc' => '044476116117', 'provider' => 'bestbuy'],\n ['name' => \"Vintage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vintage-cd/1467941.p?id=100422&skuId=1467941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1467941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1467\\/1467941_sa.jpg\"}', 'upc' => '731451809729', 'provider' => 'bestbuy'],\n ['name' => \"Tuesday Night Music Club - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tuesday-night-music-club-cd/1467969.p?id=79314&skuId=1467969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1467969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1467\\/1467969_sa.jpg\"}', 'upc' => '731454012621', 'provider' => 'bestbuy'],\n ['name' => \"Samsung - ProXpress M3820DW Wireless Black-and-White Laser Printer\", 'description_short' => \"Built-in Duplex PrintingBuilt-in Wi-Fi Prints up to 40 ISO ppm(Print speeds vary with use. See mfg.* for info on print speeds.)250-sheet input tray2-line LCD ScreenGoogle Cloud Print Ready\", 'description_long' => \"Built-in Duplex PrintingBuilt-in Wi-Fi Prints up to 40 ISO ppm(Print speeds vary with use. See mfg.* for info on print speeds.)250-sheet input tray2-line LCD ScreenGoogle Cloud Print Ready\", 'price' => 249.99, 'sale_price' => 226.99, 'url' => 'http://www.bestbuy.com/site/samsung-proxpress-m3820dw-wireless-black-and-white-laser-printer/1468079.p?id=1219052090701&skuId=1468079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1468079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1468\\/1468079_sa.jpg\"}', 'upc' => '887276024677', 'provider' => 'bestbuy'],\n ['name' => \"Polaroid - Z2300B 5.0MP Digital Instant Print Camera - Black\", 'description_short' => \"6x digital zoom3&quot; LCD display720p HD videoInstant printing with ZINK (Zero Ink) technology\", 'description_long' => \"6x digital zoom3&quot; LCD display720p HD videoInstant printing with ZINK (Zero Ink) technology\", 'price' => 179.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polaroid-z2300b-5-0mp-digital-instant-print-camera-black/1468112.p?id=1219052237018&skuId=1468112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1468112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1468\\/1468112_rc.jpg\"}', 'upc' => '815361016313', 'provider' => 'bestbuy'],\n ['name' => \"Polaroid - Z2300W 10.0MP Digital Instant Print Camera - White\", 'description_short' => \"6x digital zoom3&quot; LCD display720p HD videoInstant printing with ZINK (Zero Ink) technology\", 'description_long' => \"6x digital zoom3&quot; LCD display720p HD videoInstant printing with ZINK (Zero Ink) technology\", 'price' => 179.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polaroid-z2300w-10-0mp-digital-instant-print-camera-white/1468149.p?id=1219052241227&skuId=1468149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1468149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1468\\/1468149_rc.jpg\"}', 'upc' => '815361016542', 'provider' => 'bestbuy'],\n ['name' => \"Love Alive II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-alive-ii-cd/1468469.p?id=85042&skuId=1468469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1468469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1468\\/1468469.jpg\"}', 'upc' => '751416101125', 'provider' => 'bestbuy'],\n ['name' => \"Love Alive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-alive-cd/1468487.p?id=1406963&skuId=1468487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1468487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1468\\/1468487.jpg\"}', 'upc' => '751416101224', 'provider' => 'bestbuy'],\n ['name' => \"Cobra - Radar/Laser Detector - Multi\", 'description_short' => \"Compatible with most vehicles; detects radar and laser signals; Xtreme Range Superheterodyne and LaserEye technologies; IntelliMute, Voice Alert, Safety Alert and Spectre Alert functions; Digiview data display\", 'description_long' => \"Compatible with most vehicles; detects radar and laser signals; Xtreme Range Superheterodyne and LaserEye technologies; IntelliMute, Voice Alert, Safety Alert and Spectre Alert functions; Digiview data display\", 'price' => 139.99, 'sale_price' => 114.99, 'url' => 'http://www.bestbuy.com/site/cobra-radar-laser-detector-multi/1470013.p?id=1219052237017&skuId=1470013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470013_sa.jpg\"}', 'upc' => '028377106279', 'provider' => 'bestbuy'],\n ['name' => \"CHI - Air Turbo 1\\\" Ceramic Hairstyling Iron - Black/Red Velvet\", 'description_short' => \"Turbo Quick Heating; CHI 44 ceramic technology; ergonomic design; 9&#039; swivel cord; Fahrenheit and Celsius digital display; auto shutoff; temperature control; thermal mat included\", 'description_long' => \"Turbo Quick Heating; CHI 44 ceramic technology; ergonomic design; 9&#039; swivel cord; Fahrenheit and Celsius digital display; auto shutoff; temperature control; thermal mat included\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chi-air-turbo-1-ceramic-hairstyling-iron-black-red-velvet/1470021.p?id=1219498710289&skuId=1470021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470021_rc.jpg\"}', 'upc' => '813843019234', 'provider' => 'bestbuy'],\n ['name' => \"Cobra - Radar/Laser Detector - Multi\", 'description_short' => \"Compatible with most vehicles; detects radar and laser signals; Xtreme Range Superheterodyne and LaserEye technologies; IntelliMute, Safety Alert and Spectre Alert functions; UltraBright Data Display\", 'description_long' => \"Compatible with most vehicles; detects radar and laser signals; Xtreme Range Superheterodyne and LaserEye technologies; IntelliMute, Safety Alert and Spectre Alert functions; UltraBright Data Display\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cobra-radar-laser-detector-multi/1470022.p?id=1219052238508&skuId=1470022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470022_sa.jpg\"}', 'upc' => '028377106255', 'provider' => 'bestbuy'],\n ['name' => \"Sonic Free Riders - Xbox 360\", 'description_short' => \"Feel the motion of a fast and free race\", 'description_long' => \"Feel the motion of a fast and free race\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonic-free-riders-xbox-360/1470147.p?id=1218261837168&skuId=1470147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470147_500x500_sa.jpg\"}', 'upc' => '010086680492', 'provider' => 'bestbuy'],\n ['name' => \"Sonic Colors - Nintendo Wii\", 'description_short' => \"Let your true heroic colors shine\", 'description_long' => \"Let your true heroic colors shine\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonic-colors-nintendo-wii/1470174.p?id=1218261844356&skuId=1470174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470174_sa.jpg\"}', 'upc' => '010086650426', 'provider' => 'bestbuy'],\n ['name' => \"Sonic Colors - Nintendo DS\", 'description_short' => \"Let your true heroic colors shine\", 'description_long' => \"Let your true heroic colors shine\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonic-colors-nintendo-ds/1470217.p?id=1218261845071&skuId=1470217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470217_sa.jpg\"}', 'upc' => '010086670370', 'provider' => 'bestbuy'],\n ['name' => \"Disney Jazz, Vol. 1: Everybody Wants to Be a Cat - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-jazz-vol-1-everybody-wants-to-be-a-cat-cd-various/1470271.p?id=2159102&skuId=1470271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470271_sa.jpg\"}', 'upc' => '050087134044', 'provider' => 'bestbuy'],\n ['name' => \"Get Low - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-low-cd-original-soundtrack/1470332.p?id=2167751&skuId=1470332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470332_sa.jpg\"}', 'upc' => '030206705126', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1470605.p?id=2174173&skuId=1470605&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470605', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470605_sa.jpg\"}', 'upc' => '602527550725', 'provider' => 'bestbuy'],\n ['name' => \"Pistear, Pistear - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pistear-pistear-cd/1470641.p?id=2162863&skuId=1470641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470641_sa.jpg\"}', 'upc' => '602527538419', 'provider' => 'bestbuy'],\n ['name' => \"Naked Soul of Sweet Jones [Swisha House... [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naked-soul-of-sweet-jones-swisha-house-pa-cd/1470696.p?id=2162865&skuId=1470696&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470696_sa.jpg\"}', 'upc' => '044003126930', 'provider' => 'bestbuy'],\n ['name' => \"Dirty Linen: Live at the Marlowe Theatre - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dirty-linen-live-at-the-marlowe-theatre-cd/1470732.p?id=2167744&skuId=1470732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470732_sa.jpg\"}', 'upc' => '030206186222', 'provider' => 'bestbuy'],\n ['name' => \"Joe Live from Japan [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joe-live-from-japan-cd-dvd-cd-dvd-deluxe-edition/1470796.p?id=2180643&skuId=1470796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470796.jpg\"}', 'upc' => '891113002193', 'provider' => 'bestbuy'],\n ['name' => \"Strictly the Best, Vol. 42 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strictly-the-best-vol-42-cd-various/1470814.p?id=2164187&skuId=1470814&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470814', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470814.jpg\"}', 'upc' => '054645191920', 'provider' => 'bestbuy'],\n ['name' => \"Viva El Príncipe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/viva-el-principe-cd/1470832.p?id=2164494&skuId=1470832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470832_sa.jpg\"}', 'upc' => '602527537269', 'provider' => 'bestbuy'],\n ['name' => \"Puros Toques... En Vivo [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/puros-toques-en-vivo-cd-dvd-cd-dvd-deluxe-edition/1470969.p?id=2162872&skuId=1470969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470969_sa.jpg\"}', 'upc' => '895357005705', 'provider' => 'bestbuy'],\n ['name' => \"Strictly the Best, Vol. 43 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strictly-the-best-vol-43-cd-various/1470978.p?id=2246597&skuId=1470978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470978.jpg\"}', 'upc' => '054645192026', 'provider' => 'bestbuy'],\n ['name' => \"Por Una Mujer Bonita - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/por-una-mujer-bonita-cd/1470987.p?id=2162873&skuId=1470987&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1470987', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1470\\/1470987_sa.jpg\"}', 'upc' => '808835457828', 'provider' => 'bestbuy'],\n ['name' => \"Sólo Contigo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solo-contigo-cd/1471067.p?id=2162874&skuId=1471067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471067_sa.jpg\"}', 'upc' => '602527519999', 'provider' => 'bestbuy'],\n ['name' => \"Let Freedom Reign - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-freedom-reign-cd/1471076.p?id=2167743&skuId=1471076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471076_sa.jpg\"}', 'upc' => '602527530727', 'provider' => 'bestbuy'],\n ['name' => \"Ni Una Lagrima Más - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ni-una-lagrima-mas-cd/1471137.p?id=2162875&skuId=1471137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471137_sa.jpg\"}', 'upc' => '859799002012', 'provider' => 'bestbuy'],\n ['name' => \"Michael Jackson's Vision (DVD) (3 Disc) (Deluxe Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/michael-jacksons-vision-dvd-3-disc-deluxe-edition/1471207.p?id=2165136&skuId=1471207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471207_sa.jpg\"}', 'upc' => '886977605192', 'provider' => 'bestbuy'],\n ['name' => \"Glee: The Music, The Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glee-the-music-the-christmas-album-cd/1471225.p?id=2163562&skuId=1471225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471225_sa.jpg\"}', 'upc' => '886977856723', 'provider' => 'bestbuy'],\n ['name' => \"34 Number Ones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/34-number-ones-cd/1471234.p?id=2157229&skuId=1471234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471234_sa.jpg\"}', 'upc' => '886977868122', 'provider' => 'bestbuy'],\n ['name' => \"Little Italy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-italy-cd/1471261.p?id=2164189&skuId=1471261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471261.jpg\"}', 'upc' => '5099994628425', 'provider' => 'bestbuy'],\n ['name' => \"Bell'aria: Live from Las Vegas - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bellaria-live-from-las-vegas-dvd/1471298.p?id=2164496&skuId=1471298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471298_sa.jpg\"}', 'upc' => '5099994665598', 'provider' => 'bestbuy'],\n ['name' => \"Gish [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gish-lp-lp-vinyl/1471304.p?id=2301440&skuId=1471304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471304.jpg\"}', 'upc' => '5099990959615', 'provider' => 'bestbuy'],\n ['name' => \"10.17.09 [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-17-09-cd-dvd-cd-dvd/1471313.p?id=2164190&skuId=1471313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471313.jpg\"}', 'upc' => '811772024022', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Traditional Jazz Legends, Vol. 2 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-traditional-jazz-legends-vol-2-various-cd/1471339.p?id=67669&skuId=1471339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471339_sa.jpg\"}', 'upc' => '096094900227', 'provider' => 'bestbuy'],\n ['name' => \"Selena: Performances (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/selena-performances-dvd/1471368.p?id=2164495&skuId=1471368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471368_sa.jpg\"}', 'upc' => '5099991880895', 'provider' => 'bestbuy'],\n ['name' => \"Birds and Microscopes and Bottles... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/birds-and-microscopes-and-bottles-digipak-cd/1471395.p?id=2164196&skuId=1471395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471395.jpg\"}', 'upc' => '5099960708021', 'provider' => 'bestbuy'],\n ['name' => \"Magic & Mayhem: Tales From the Early - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magic-mayhem-tales-from-the-early-cd/1471516.p?id=2164197&skuId=1471516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471516_sa.jpg\"}', 'upc' => '727361257828', 'provider' => 'bestbuy'],\n ['name' => \"H.F.M., Vol. 2 (The Hunger for More, Vol. 2) [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/h-f-m--vol-2-the-hunger-for-more-vol-2-pa-cd/1471543.p?id=2164498&skuId=1471543&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471543_sa.jpg\"}', 'upc' => '5099991804129', 'provider' => 'bestbuy'],\n ['name' => \"Deep Sea 3D (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deep-sea-3d-blu-ray-3d-3-d/1471677.p?id=1622354&skuId=1471677&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471677', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471677_sa.jpg\"}', 'upc' => '883929160464', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: The Complete Fifth Series [6 Discs/Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-the-complete-fifth-series-6-discs-blu-ray-blu-ray-disc/1471695.p?id=2138066&skuId=1471695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1874\\/18746641.jpg\"}', 'upc' => '883929099276', 'provider' => 'bestbuy'],\n ['name' => \"Flipped (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flipped-dvd/1471722.p?id=2160812&skuId=1471722&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471722_sa.jpg\"}', 'upc' => '883929106103', 'provider' => 'bestbuy'],\n ['name' => \"Under the Sea 3D (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/under-the-sea-3d-blu-ray-3d-3-d/1471731.p?id=2091083&skuId=1471731&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471731', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471731_sa.jpg\"}', 'upc' => '883929154258', 'provider' => 'bestbuy'],\n ['name' => \"Cats & Dogs: The Revenge of Kitty Galore (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cats-dogs-the-revenge-of-kitty-galore-blu-ray-3d-3-d/1471777.p?id=2155238&skuId=1471777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471777_sa.jpg\"}', 'upc' => '883929166817', 'provider' => 'bestbuy'],\n ['name' => \"Clash of the Titans (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clash-of-the-titans-blu-ray-3d-3-d/1471786.p?id=2119493&skuId=1471786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471786_sa.jpg\"}', 'upc' => '883929174249', 'provider' => 'bestbuy'],\n ['name' => \"Mack the Knife: The Complete Ella in Berlin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mack-the-knife-the-complete-ella-in-berlin-cd/1471936.p?id=66337&skuId=1471936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1471936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1471\\/1471936_sa.jpg\"}', 'upc' => '731451956423', 'provider' => 'bestbuy'],\n ['name' => \"MakerBot - 1.75mm PLA Filament - Warm Gray\", 'description_short' => \"MAKERBOT 1.75mm PLA Filament: Compatible with MakerBot Replicator Z18 3D printers and filament cases; PLA material made from nontoxic resin; adheres well to acrylic and MakerBot Build Plate Tape; quality tested; 10-lb. spool\", 'description_long' => \"MAKERBOT 1.75mm PLA Filament: Compatible with MakerBot Replicator Z18 3D printers and filament cases; PLA material made from nontoxic resin; adheres well to acrylic and MakerBot Build Plate Tape; quality tested; 10-lb. spool\", 'price' => 207.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/makerbot-1-75mm-pla-filament-warm-gray/1472001.p?id=1219494666815&skuId=1472001', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472001_sa.jpg\"}', 'upc' => '817913011784', 'provider' => 'bestbuy'],\n ['name' => \"Space Station 3D (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/space-station-3d-blu-ray-3d-3-d/1472057.p?id=1425506&skuId=1472057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472057_sa.jpg\"}', 'upc' => '883929160471', 'provider' => 'bestbuy'],\n ['name' => \"Wizards of Waverly Place: Spellbound - Nintendo DS\", 'description_short' => \"Find the dress before the big fashion show\", 'description_long' => \"Find the dress before the big fashion show\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wizards-of-waverly-place-spellbound-nintendo-ds/1472084.p?id=1218261842484&skuId=1472084', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472084_sa.jpg\"}', 'upc' => '712725019662', 'provider' => 'bestbuy'],\n ['name' => \"Broken Dreams Club [LP] [EP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broken-dreams-club-lp-ep-vinyl/1472145.p?id=2165131&skuId=1472145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472145_sa.jpg\"}', 'upc' => '744861604013', 'provider' => 'bestbuy'],\n ['name' => \"Break in the Clouds [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/break-in-the-clouds-digipak-cd/1472154.p?id=2165390&skuId=1472154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472154_sa.jpg\"}', 'upc' => '067003091121', 'provider' => 'bestbuy'],\n ['name' => \"Amartebien - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amartebien-cd/1472163.p?id=2162881&skuId=1472163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472163_sa.jpg\"}', 'upc' => '825646769353', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Larry the Cable Guy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-larry-the-cable-guy-cd/1472172.p?id=2162496&skuId=1472172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472172_sa.jpg\"}', 'upc' => '093624962281', 'provider' => 'bestbuy'],\n ['name' => \"I Did My Best: Greatest Hits [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-did-my-best-greatest-hits-pa-digipak-cd/1472181.p?id=2165398&skuId=1472181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472181_sa.jpg\"}', 'upc' => '824363011929', 'provider' => 'bestbuy'],\n ['name' => \"Rich Rocks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rich-rocks-cd/1472206.p?id=2208922&skuId=1472206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472206_sa.jpg\"}', 'upc' => '093624966678', 'provider' => 'bestbuy'],\n ['name' => \"Danger Days: The True Lives of the... [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/danger-days-the-true-lives-of-the-pa-cd/1472215.p?id=2157416&skuId=1472215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472215_sa.jpg\"}', 'upc' => '093624971894', 'provider' => 'bestbuy'],\n ['name' => \"Broken Dreams Club [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broken-dreams-club-ep-cd/1472224.p?id=2165134&skuId=1472224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472224_sa.jpg\"}', 'upc' => '744861604020', 'provider' => 'bestbuy'],\n ['name' => \"LennoNYC (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lennonyc-dvd/1472297.p?id=2150907&skuId=1472297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472297_sa.jpg\"}', 'upc' => '733961234954', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Sacred Steel - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-sacred-steel-cd-various/1472303.p?id=2165399&skuId=1472303&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472303_sa.jpg\"}', 'upc' => '096297053928', 'provider' => 'bestbuy'],\n ['name' => \"Love Ranch (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-ranch-dvd/1472312.p?id=2147649&skuId=1472312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472312_sa.jpg\"}', 'upc' => '652405002792', 'provider' => 'bestbuy'],\n ['name' => \"Shleep [Limited] [LP/CD] [LP] - VINYL - CD Limited Edition Reissue\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shleep-limited-lp-cd-lp-vinyl-cd-limited-edition-reissue/1472321.p?id=2165395&skuId=1472321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472321.jpg\"}', 'upc' => '801390020711', 'provider' => 'bestbuy'],\n ['name' => \"Cuckooland [Limited] [LP/CD] [LP] - VINYL - CD Limited Edition Reissue\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuckooland-limited-lp-cd-lp-vinyl-cd-limited-edition-reissue/1472349.p?id=2165396&skuId=1472349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472349_sa.jpg\"}', 'upc' => '801390020810', 'provider' => 'bestbuy'],\n ['name' => \"Cross the Line [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cross-the-line-digipak-cd/1472367.p?id=2165133&skuId=1472367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472367_sa.jpg\"}', 'upc' => '091012210228', 'provider' => 'bestbuy'],\n ['name' => \"EPs [Limited] [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eps-limited-box-cd/1472385.p?id=2165130&skuId=1472385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472385_sa.jpg\"}', 'upc' => '801390020520', 'provider' => 'bestbuy'],\n ['name' => \"Theatre Royal Drury Lane [Limited... [LP] - VINYL - CD Limited Edition Reissue\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/theatre-royal-drury-lane-limited-lp-vinyl-cd-limited-edition-reissue/1472394.p?id=2165397&skuId=1472394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472394.jpg\"}', 'upc' => '801390020612', 'provider' => 'bestbuy'],\n ['name' => \"World At War (9pc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-at-war-9pc-blu-ray-disc/1472667.p?id=2138103&skuId=1472667&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472667', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472667.jpg\"}', 'upc' => '733961231595', 'provider' => 'bestbuy'],\n ['name' => \"Gangland: Complete Season 6 (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gangland-complete-season-6-3-disc-dvd/1472676.p?id=2138096&skuId=1472676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472676.jpg\"}', 'upc' => '733961230710', 'provider' => 'bestbuy'],\n ['name' => \"Bitter Feast (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bitter-feast-dvd/1472685.p?id=2169950&skuId=1472685&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472685', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472685_sa.jpg\"}', 'upc' => '030306818696', 'provider' => 'bestbuy'],\n ['name' => \"Mother and Child (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mother-and-child-dvd/1472694.p?id=2162497&skuId=1472694&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472694', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1472\\/1472694_sa.jpg\"}', 'upc' => '043396350229', 'provider' => 'bestbuy'],\n ['name' => \"Undead: Vampire Collection (4 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/undead-vampire-collection-4-disc-dvd-boxed-set/1472903.p?id=2091709&skuId=1472903&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1472903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1846\\/18460274.jpg\"}', 'upc' => '683904508188', 'provider' => 'bestbuy'],\n ['name' => \"Listen Here! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/listen-here-cd/1473532.p?id=67220&skuId=1473532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473532.jpg\"}', 'upc' => '063757707929', 'provider' => 'bestbuy'],\n ['name' => \"Storybook Workshop - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Bring fairy tales to life\", 'description_long' => \"Bring fairy tales to life\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/storybook-workshop-pre-owned-nintendo-wii/1473639.p?id=1218261844947&skuId=1473639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473639_sa.jpg\"}', 'upc' => '799007784340', 'provider' => 'bestbuy'],\n ['name' => \"Backbreaker - PRE-OWNED - Xbox 360\", 'description_short' => \"Feel the thrill of the game spiraling at you\", 'description_long' => \"Feel the thrill of the game spiraling at you\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbreaker-pre-owned-xbox-360/1473666.p?id=1218261843456&skuId=1473666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473666_sa.jpg\"}', 'upc' => '799007784364', 'provider' => 'bestbuy'],\n ['name' => \"Vacation Isle Beach Party — PRE-OWNED - Nintendo Wii\", 'description_short' => \"Step into the sun and go on a vacation anytime\", 'description_long' => \"Step into the sun and go on a vacation anytime\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vacation-isle-beach-party-pre-owned-nintendo-wii/1473675.p?id=1218261838819&skuId=1473675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473675.jpg\"}', 'upc' => '799007784371', 'provider' => 'bestbuy'],\n ['name' => \"Madagascar Kartz - PRE-OWNED - Nintendo DS\", 'description_short' => \"Go wild behind the wheel\", 'description_long' => \"Go wild behind the wheel\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madagascar-kartz-pre-owned-nintendo-ds/1473684.p?id=1218261841975&skuId=1473684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473684_sa.jpg\"}', 'upc' => '799007784388', 'provider' => 'bestbuy'],\n ['name' => \"Littlest Pet Shop: Garden - PRE-OWNED - Nintendo DS\", 'description_short' => \"Fill a pretty garden with adorable pets\", 'description_long' => \"Fill a pretty garden with adorable pets\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/littlest-pet-shop-garden-pre-owned-nintendo-ds/1473693.p?id=1218261841388&skuId=1473693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473693_sa.jpg\"}', 'upc' => '799007784395', 'provider' => 'bestbuy'],\n ['name' => \"Naughty Bear - PRE-OWNED - PlayStation 3\", 'description_short' => \"Get your murderous revenge on teddy bears\", 'description_long' => \"Get your murderous revenge on teddy bears\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naughty-bear-pre-owned-playstation-3/1473702.p?id=1218261844488&skuId=1473702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473702_sa.jpg\"}', 'upc' => '799007784401', 'provider' => 'bestbuy'],\n ['name' => \"Human Rites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/human-rites-cd/1473710.p?id=99904&skuId=1473710&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473710', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473710_sa.jpg\"}', 'upc' => '746022110227', 'provider' => 'bestbuy'],\n ['name' => \"50 Cent: Blood on the Sand - PRE-OWNED - Xbox 360\", 'description_short' => \"Experience the action and excitement of life as 50 Cent\", 'description_long' => \"Experience the action and excitement of life as 50 Cent\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/50-cent-blood-on-the-sand-pre-owned-xbox-360/1473739.p?id=1218261842099&skuId=1473739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473739_sa.jpg\"}', 'upc' => '799007784425', 'provider' => 'bestbuy'],\n ['name' => \"Awake Me in the New World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/awake-me-in-the-new-world-cd/1473747.p?id=97422&skuId=1473747&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473747.jpg\"}', 'upc' => '015891380728', 'provider' => 'bestbuy'],\n ['name' => \"Overlord II - PRE-OWNED - PlayStation 3\", 'description_short' => \"In this warped world, you totally rule\", 'description_long' => \"In this warped world, you totally rule\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/overlord-ii-pre-owned-playstation-3/1473757.p?id=1218261842350&skuId=1473757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473757_sa.jpg\"}', 'upc' => '799007784449', 'provider' => 'bestbuy'],\n ['name' => \"Flip City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flip-city-cd/1473765.p?id=95933&skuId=1473765&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473765.jpg\"}', 'upc' => '015891381329', 'provider' => 'bestbuy'],\n ['name' => \"Transformers: Revenge of the Fallen - Decepticons - PRE-OWNED - Nintendo DS\", 'description_short' => \"Become a dangerous Decepticon\", 'description_long' => \"Become a dangerous Decepticon\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-revenge-of-the-fallen-decepticons-pre-owned-nintendo-ds/1473857.p?id=1218261837816&skuId=1473857&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473857', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473857_sa.jpg\"}', 'upc' => '799007784524', 'provider' => 'bestbuy'],\n ['name' => \"Top Spin 3 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Experience tennis action so real you&#039;ll swear you&#039;re on the court\", 'description_long' => \"Experience tennis action so real you&#039;ll swear you&#039;re on the court\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/top-spin-3-pre-owned-nintendo-wii/1473866.p?id=1218261835976&skuId=1473866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473866_sa.jpg\"}', 'upc' => '799007784531', 'provider' => 'bestbuy'],\n ['name' => \"M. Night Shyamalan: The Last Airbender - PRE-OWNED - Nintendo DS\", 'description_short' => \"Harness the power of Air and Fire as you join a quest for honor and power\", 'description_long' => \"Harness the power of Air and Fire as you join a quest for honor and power\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/m-night-shyamalan-the-last-airbender-pre-owned-nintendo-ds/1473902.p?id=1218261844161&skuId=1473902&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473902_sa.jpg\"}', 'upc' => '799007784579', 'provider' => 'bestbuy'],\n ['name' => \"Jurassic: The Hunted - PRE-OWNED - PlayStation 3\", 'description_short' => \"Fight tooth and claw for your survival\", 'description_long' => \"Fight tooth and claw for your survival\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jurassic-the-hunted-pre-owned-playstation-3/1473948.p?id=1218261844489&skuId=1473948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473948_sa.jpg\"}', 'upc' => '799007784609', 'provider' => 'bestbuy'],\n ['name' => \"Harry Potter and the Half-Blood Prince - PRE-OWNED - Nintendo DS\", 'description_short' => \"As an emerging evil tightens its grip on Hogwarts, can Harry save the day once more?\", 'description_long' => \"As an emerging evil tightens its grip on Hogwarts, can Harry save the day once more?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harry-potter-and-the-half-blood-prince-pre-owned-nintendo-ds/1473966.p?id=1218261837440&skuId=1473966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473966_sa.jpg\"}', 'upc' => '799007784623', 'provider' => 'bestbuy'],\n ['name' => \"Personal Trainer: Cooking - PRE-OWNED - Nintendo DS\", 'description_short' => \"Learn the art of gourmet cooking at your own pace\", 'description_long' => \"Learn the art of gourmet cooking at your own pace\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/personal-trainer-cooking-pre-owned-nintendo-ds/1473975.p?id=1218261843581&skuId=1473975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473975_sa.jpg\"}', 'upc' => '799007784630', 'provider' => 'bestbuy'],\n ['name' => \"Academy of Champions: Soccer - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Who has the fastest feet on the field?\", 'description_long' => \"Who has the fastest feet on the field?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/academy-of-champions-soccer-pre-owned-nintendo-wii/1473984.p?id=1218261840728&skuId=1473984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1473984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1473\\/1473984_sa.jpg\"}', 'upc' => '799007784647', 'provider' => 'bestbuy'],\n ['name' => \"Saw - PRE-OWNED - Xbox 360\", 'description_short' => \"Battle a gruesome serial killer in a brutal game of wits and weapons\", 'description_long' => \"Battle a gruesome serial killer in a brutal game of wits and weapons\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saw-pre-owned-xbox-360/1474019.p?id=1218261844281&skuId=1474019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474019_sa.jpg\"}', 'upc' => '799007762140', 'provider' => 'bestbuy'],\n ['name' => \"WorksWith - In-Wall On/Off Switch - White\", 'description_short' => \"Compatible with PEQ and OpenHome platforms; works with standard in-home neutral wiring; event-triggered emergency lighting; welcome and goodbye scenes\", 'description_long' => \"Compatible with PEQ and OpenHome platforms; works with standard in-home neutral wiring; event-triggered emergency lighting; welcome and goodbye scenes\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/workswith-in-wall-on-off-switch-white/1474027.p?id=1219498402980&skuId=1474027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474027_sa.jpg\"}', 'upc' => '812489022080', 'provider' => 'bestbuy'],\n ['name' => \"Dynasty Warriors: Gundam 2 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Battle against gigantic enemies and devastating mobile suits\", 'description_long' => \"Battle against gigantic enemies and devastating mobile suits\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynasty-warriors-gundam-2-pre-owned-playstation-3/1474028.p?id=1218261839330&skuId=1474028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474028_sa.jpg\"}', 'upc' => '799007762157', 'provider' => 'bestbuy'],\n ['name' => \"WorksWith - In-Wall Dimmer Switch - White\", 'description_short' => \"Compatible with PEQ and OpenHome platforms; works with standard in-home neutral wiring; event-triggered emergency lighting; welcome and goodbye scenes\", 'description_long' => \"Compatible with PEQ and OpenHome platforms; works with standard in-home neutral wiring; event-triggered emergency lighting; welcome and goodbye scenes\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/workswith-in-wall-dimmer-switch-white/1474036.p?id=1219498404350&skuId=1474036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474036_sa.jpg\"}', 'upc' => '812489022066', 'provider' => 'bestbuy'],\n ['name' => \"Transformers: Cybertron Adventures - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Fight in the epic civil war for Cybertron\", 'description_long' => \"Fight in the epic civil war for Cybertron\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-cybertron-adventures-pre-owned-nintendo-wii/1474055.p?id=1218261839534&skuId=1474055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474055_sa.jpg\"}', 'upc' => '799007762188', 'provider' => 'bestbuy'],\n ['name' => \"The Daring Game for Girls - PRE-OWNED - Nintendo DS\", 'description_short' => \"Complete activities and challenges to become a true Daring Girl\", 'description_long' => \"Complete activities and challenges to become a true Daring Girl\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-daring-game-for-girls-pre-owned-nintendo-ds/1474073.p?id=1218261838625&skuId=1474073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474073_sa.jpg\"}', 'upc' => '799007762201', 'provider' => 'bestbuy'],\n ['name' => \"Alvin and the Chipmunks - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Rock out with Alvin, Simon and Theodore\", 'description_long' => \"Rock out with Alvin, Simon and Theodore\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alvin-and-the-chipmunks-pre-owned-nintendo-wii/1474082.p?id=1218261843676&skuId=1474082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474082_sa.jpg\"}', 'upc' => '799007762218', 'provider' => 'bestbuy'],\n ['name' => \"Armored Core: For Answer - PRE-OWNED - PlayStation 3\", 'description_short' => \"Battle against giant mechanical enemies in a war for control of the planet\", 'description_long' => \"Battle against giant mechanical enemies in a war for control of the planet\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/armored-core-for-answer-pre-owned-playstation-3/1474091.p?id=1218261839731&skuId=1474091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474091_sa.jpg\"}', 'upc' => '799007762225', 'provider' => 'bestbuy'],\n ['name' => \"Mini Ninjas - PRE-OWNED - Xbox 360\", 'description_short' => \"Unleash your pint-size power\", 'description_long' => \"Unleash your pint-size power\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mini-ninjas-pre-owned-xbox-360/1474107.p?id=1218261837564&skuId=1474107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474107_sa.jpg\"}', 'upc' => '799007762232', 'provider' => 'bestbuy'],\n ['name' => \"New Play Control: Donkey Kong Jungle Beat - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Roam the jungle like a true daredevil\", 'description_long' => \"Roam the jungle like a true daredevil\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-play-control-donkey-kong-jungle-beat-pre-owned-nintendo-wii/1474116.p?id=1218261843457&skuId=1474116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474116_sa.jpg\"}', 'upc' => '799007762249', 'provider' => 'bestbuy'],\n ['name' => \"Jumper: Griffin's Story - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Journey beyond time and space\", 'description_long' => \"Journey beyond time and space\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jumper-griffins-story-pre-owned-nintendo-wii/1474134.p?id=1218261842914&skuId=1474134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474134_sa.jpg\"}', 'upc' => '799007762263', 'provider' => 'bestbuy'],\n ['name' => \"MySims Racing - PRE-OWNED - Nintendo DS\", 'description_short' => \"Zoom past the competition on a series of exotic tracks\", 'description_long' => \"Zoom past the competition on a series of exotic tracks\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mysims-racing-pre-owned-nintendo-ds/1474143.p?id=1218261844821&skuId=1474143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474143_sa.jpg\"}', 'upc' => '799007762270', 'provider' => 'bestbuy'],\n ['name' => \"Scribblenauts - PRE-OWNED - Nintendo DS\", 'description_short' => \"If you can think of it, you can use it to win\", 'description_long' => \"If you can think of it, you can use it to win\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scribblenauts-pre-owned-nintendo-ds/1474152.p?id=1218261840252&skuId=1474152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474152_sa.jpg\"}', 'upc' => '799007762287', 'provider' => 'bestbuy'],\n ['name' => \"MiniCopter: Adventure Flight - PRE-OWNED - Nintendo Wii\", 'description_short' => \"No flying experience necessary\", 'description_long' => \"No flying experience necessary\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/minicopter-adventure-flight-pre-owned-nintendo-wii/1474161.p?id=1218261839063&skuId=1474161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474161_sa.jpg\"}', 'upc' => '799007762294', 'provider' => 'bestbuy'],\n ['name' => \"Dragon Age: Origins Awakening Greatest Hits - PRE-OWNED - PlayStation 3\", 'description_short' => \"Bring the ancient order of the Grey Wardens to action against the forces of the Darkspawn\", 'description_long' => \"Bring the ancient order of the Grey Wardens to action against the forces of the Darkspawn\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragon-age-origins-awakening-greatest-hits-pre-owned-playstation-3/1474222.p?id=1218261838882&skuId=1474222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474222_sa.jpg\"}', 'upc' => '799007762348', 'provider' => 'bestbuy'],\n ['name' => \"LEGO Batman: The Videogame - PRE-OWNED - Nintendo Wii\", 'description_short' => \"All the excitement of Batman, combined with the quirky fun of LEGO\", 'description_long' => \"All the excitement of Batman, combined with the quirky fun of LEGO\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lego-batman-the-videogame-pre-owned-nintendo-wii/1474231.p?id=1218261838970&skuId=1474231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474231_sa.jpg\"}', 'upc' => '799007762355', 'provider' => 'bestbuy'],\n ['name' => \"Saints Row 2 - PRE-OWNED - Xbox 360\", 'description_short' => \"Rain vengeance down on all those who wronged you\", 'description_long' => \"Rain vengeance down on all those who wronged you\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saints-row-2-pre-owned-xbox-360/1474259.p?id=1218261838025&skuId=1474259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474259_sa.jpg\"}', 'upc' => '799007762362', 'provider' => 'bestbuy'],\n ['name' => \"Ice Age: Dawn of the Dinosaurs - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Keep your cool in a world swarming with dangerous dinosaurs\", 'description_long' => \"Keep your cool in a world swarming with dangerous dinosaurs\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ice-age-dawn-of-the-dinosaurs-pre-owned-nintendo-wii/1474301.p?id=1218261843011&skuId=1474301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474301_sa.jpg\"}', 'upc' => '799007762409', 'provider' => 'bestbuy'],\n ['name' => \"Dora the Explorer: Dora Saves the Mermaids - PRE-OWNED - Nintendo DS\", 'description_short' => \"Dora&#039;s here to help save the day\", 'description_long' => \"Dora&#039;s here to help save the day\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dora-the-explorer-dora-saves-the-mermaids-pre-owned-nintendo-ds/1474329.p?id=1218261843157&skuId=1474329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474329_sa.jpg\"}', 'upc' => '799007762416', 'provider' => 'bestbuy'],\n ['name' => \"Ratatouille - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Remy the rat whips up a tasty adventure\", 'description_long' => \"Remy the rat whips up a tasty adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ratatouille-pre-owned-nintendo-wii/1474347.p?id=1218261842223&skuId=1474347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474347_sa.jpg\"}', 'upc' => '799007762430', 'provider' => 'bestbuy'],\n ['name' => \"Wipeout: The Game - PRE-OWNED - Nintendo DS\", 'description_short' => \"It&#039;s your turn to run, jump and climb through wildest obstacle course on Earth\", 'description_long' => \"It&#039;s your turn to run, jump and climb through wildest obstacle course on Earth\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wipeout-the-game-pre-owned-nintendo-ds/1474356.p?id=1218261840125&skuId=1474356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474356_sa.jpg\"}', 'upc' => '799007762447', 'provider' => 'bestbuy'],\n ['name' => \"Bakugan - PRE-OWNED - Xbox 360\", 'description_short' => \"Discover the excitement of Bakugan in a new way\", 'description_long' => \"Discover the excitement of Bakugan in a new way\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bakugan-pre-owned-xbox-360/1474365.p?id=1218261842822&skuId=1474365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474365_sa.jpg\"}', 'upc' => '799007762454', 'provider' => 'bestbuy'],\n ['name' => \"One More Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-more-time-cd/1474728.p?id=104892&skuId=1474728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474728_sa.jpg\"}', 'upc' => '052824221727', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek: Deep Space Nine - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-deep-space-nine-cd-original-soundtrack/1474737.p?id=2279820&skuId=1474737&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1474737', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1474\\/1474737.jpg\"}', 'upc' => '052824803428', 'provider' => 'bestbuy'],\n ['name' => \"ZeroChroma - Folio-Slide Case for Apple® iPad® Air and iPad Air 2 - Black\", 'description_short' => \"Compatible with Apple iPad Air and iPad Air 2; shock-protective TPU body; removable, water-resistant slide-lid cover; 360-degree rotation, infinite-angle flux-stand; sleep/wake magnet; unlimited handle modes\", 'description_long' => \"Compatible with Apple iPad Air and iPad Air 2; shock-protective TPU body; removable, water-resistant slide-lid cover; 360-degree rotation, infinite-angle flux-stand; sleep/wake magnet; unlimited handle modes\", 'price' => 69.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/zerochroma-folio-slide-case-for-apple-ipad-air-and-ipad-air-2-black/1475008.p?id=1219498401023&skuId=1475008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475008_sa.jpg\"}', 'upc' => '815000011150', 'provider' => 'bestbuy'],\n ['name' => \"WorksWith - In-Wall Dimmer Switch - Light Almond\", 'description_short' => \"Compatible with PEQ and OpenHome platforms; works with standard in-home neutral wiring; event-triggered emergency lighting; welcome and goodbye scenes\", 'description_long' => \"Compatible with PEQ and OpenHome platforms; works with standard in-home neutral wiring; event-triggered emergency lighting; welcome and goodbye scenes\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/workswith-in-wall-dimmer-switch-light-almond/1475017.p?id=1219498401016&skuId=1475017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475017_sa.jpg\"}', 'upc' => '812489022073', 'provider' => 'bestbuy'],\n ['name' => \"ZeroChroma - Folio-Slide Case for Apple® iPad® Air and iPad Air 2 - Gray\", 'description_short' => \"Compatible with Apple iPad Air and iPad Air 2; shock-protective TPU body; removable, water-resistant slide-lid cover; 360-degree rotation, infinite-angle flux-stand; sleep/wake magnet; unlimited handle modes\", 'description_long' => \"Compatible with Apple iPad Air and iPad Air 2; shock-protective TPU body; removable, water-resistant slide-lid cover; 360-degree rotation, infinite-angle flux-stand; sleep/wake magnet; unlimited handle modes\", 'price' => 69.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/zerochroma-folio-slide-case-for-apple-ipad-air-and-ipad-air-2-gray/1475026.p?id=1219498405529&skuId=1475026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475026_sa.jpg\"}', 'upc' => '815000011167', 'provider' => 'bestbuy'],\n ['name' => \"ZeroChroma - Folio-Slide Case for Apple® iPad® Air and iPad Air 2 - Teal\", 'description_short' => \"Compatible with Apple iPad Air and iPad Air 2; shock-protective TPU body; removable, water-resistant slide-lid cover; 360-degree rotation, infinite-angle flux-stand; sleep/wake magnet; unlimited handle modes\", 'description_long' => \"Compatible with Apple iPad Air and iPad Air 2; shock-protective TPU body; removable, water-resistant slide-lid cover; 360-degree rotation, infinite-angle flux-stand; sleep/wake magnet; unlimited handle modes\", 'price' => 69.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/zerochroma-folio-slide-case-for-apple-ipad-air-and-ipad-air-2-teal/1475035.p?id=1219498403178&skuId=1475035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475035_sa.jpg\"}', 'upc' => '815000011181', 'provider' => 'bestbuy'],\n ['name' => \"Dead Space 2 - Xbox 360\", 'description_short' => \"Continue the nightmare aboard the Sprawl\", 'description_long' => \"Continue the nightmare aboard the Sprawl\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-space-2-xbox-360/1475036.p?id=1218261842224&skuId=1475036', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475036_500x500_sa.jpg\"}', 'upc' => '014633731507', 'provider' => 'bestbuy'],\n ['name' => \"WorksWith - In-Wall On/Off Switch - Light Almond\", 'description_short' => \"Compatible with PEQ and OpenHome platforms; works with standard in-home neutral wiring; event-triggered emergency lighting; welcome and goodbye scenes; over-the-air firmware updates; status LED\", 'description_long' => \"Compatible with PEQ and OpenHome platforms; works with standard in-home neutral wiring; event-triggered emergency lighting; welcome and goodbye scenes; over-the-air firmware updates; status LED\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/workswith-in-wall-on-off-switch-light-almond/1475053.p?id=1219498403242&skuId=1475053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475053_sa.jpg\"}', 'upc' => '812489022097', 'provider' => 'bestbuy'],\n ['name' => \"ZeroChroma - Folio-Slide Case for Apple® iPad® Air and iPad Air 2 - Purple\", 'description_short' => \"Compatible with Apple iPad Air and iPad Air 2; 360&#176; rotation infinite-angle stand; water-resistant slide-lid cover; sleep/wake magnet; slide-mount compatible; shock-protective TPU body\", 'description_long' => \"Compatible with Apple iPad Air and iPad Air 2; 360&#176; rotation infinite-angle stand; water-resistant slide-lid cover; sleep/wake magnet; slide-mount compatible; shock-protective TPU body\", 'price' => 69.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/zerochroma-folio-slide-case-for-apple-ipad-air-and-ipad-air-2-purple/1475104.p?id=1219498405270&skuId=1475104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475104_sa.jpg\"}', 'upc' => '815000011198', 'provider' => 'bestbuy'],\n ['name' => \"F.E.A.R. 2: Project Origin - PRE-OWNED - PlayStation 3\", 'description_short' => \"Get ready to face your F.E.A.R.s once more\", 'description_long' => \"Get ready to face your F.E.A.R.s once more\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/f-e-a-r-2-project-origin-pre-owned-playstation-3/1475115.p?id=1218262491524&skuId=1475115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475115_sa.jpg\"}', 'upc' => '799007782230', 'provider' => 'bestbuy'],\n ['name' => \"Charm Girls Club: My Fashion Mall - PRE-OWNED - Nintendo DS\", 'description_short' => \"Create the coolest hangout spot in town\", 'description_long' => \"Create the coolest hangout spot in town\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charm-girls-club-my-fashion-mall-pre-owned-nintendo-ds/1475124.p?id=1218262491027&skuId=1475124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475124_sa.jpg\"}', 'upc' => '799007782247', 'provider' => 'bestbuy'],\n ['name' => \"World of Zoo - PRE-OWNED - Nintendo DS\", 'description_short' => \"Become the best animal caretaker around\", 'description_long' => \"Become the best animal caretaker around\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-of-zoo-pre-owned-nintendo-ds/1475179.p?id=1218262481460&skuId=1475179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475179_sa.jpg\"}', 'upc' => '799007782285', 'provider' => 'bestbuy'],\n ['name' => \"AMF Bowling: World Lanes - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Bowl up a storm across the globe\", 'description_long' => \"Bowl up a storm across the globe\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amf-bowling-world-lanes-pre-owned-nintendo-wii/1475188.p?id=1218262490089&skuId=1475188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475188_sa.jpg\"}', 'upc' => '799007782292', 'provider' => 'bestbuy'],\n ['name' => \"Aliens vs. Predator - PRE-OWNED - PlayStation 3\", 'description_short' => \"The bloody battle is about to begin\", 'description_long' => \"The bloody battle is about to begin\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aliens-vs-predator-pre-owned-playstation-3/1475197.p?id=1218262475897&skuId=1475197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475197_sa.jpg\"}', 'upc' => '799007782308', 'provider' => 'bestbuy'],\n ['name' => \"Iron Man 2 - PRE-OWNED - Xbox 360\", 'description_short' => \"Save the world as the one-and-only Iron Man\", 'description_long' => \"Save the world as the one-and-only Iron Man\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iron-man-2-pre-owned-xbox-360/1475203.p?id=1218262493836&skuId=1475203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475203_sa.jpg\"}', 'upc' => '799007782315', 'provider' => 'bestbuy'],\n ['name' => \"X-Men Origins: Wolverine - PRE-OWNED - Nintendo DS\", 'description_short' => \"Uncage the power and fury of Wolverine\", 'description_long' => \"Uncage the power and fury of Wolverine\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/x-men-origins-wolverine-pre-owned-nintendo-ds/1475212.p?id=1218262486455&skuId=1475212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475212_sa.jpg\"}', 'upc' => '799007782322', 'provider' => 'bestbuy'],\n ['name' => \"Shrek Forever After: The Final Chapter - PRE-OWNED - Xbox 360\", 'description_short' => \"Save Far, Far Away from the devious Rumpelstiltskin\", 'description_long' => \"Save Far, Far Away from the devious Rumpelstiltskin\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shrek-forever-after-the-final-chapter-pre-owned-xbox-360/1475221.p?id=1218262467175&skuId=1475221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475221_sa.jpg\"}', 'upc' => '799007782339', 'provider' => 'bestbuy'],\n ['name' => \"Resonance of Fate - PRE-OWNED - Xbox 360\", 'description_short' => \"Take down opponents in epic gun battles as you explore a dystopian machine city\", 'description_long' => \"Take down opponents in epic gun battles as you explore a dystopian machine city\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resonance-of-fate-pre-owned-xbox-360/1475249.p?id=1218262466227&skuId=1475249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475249_sa.jpg\"}', 'upc' => '799007782346', 'provider' => 'bestbuy'],\n ['name' => \"How to Train Your Dragon - PRE-OWNED - PlayStation 3\", 'description_short' => \"Train your dragon and prepare for battle to become a Viking hero\", 'description_long' => \"Train your dragon and prepare for battle to become a Viking hero\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-to-train-your-dragon-pre-owned-playstation-3/1475285.p?id=1218262473692&skuId=1475285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475285_sa.jpg\"}', 'upc' => '799007782384', 'provider' => 'bestbuy'],\n ['name' => \"Sonic Classic Collection - PRE-OWNED - Nintendo DS\", 'description_short' => \"Join Sonic the Hedgehog in this compilation of four classic games\", 'description_long' => \"Join Sonic the Hedgehog in this compilation of four classic games\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonic-classic-collection-pre-owned-nintendo-ds/1475355.p?id=1218262476020&skuId=1475355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475355_sa.jpg\"}', 'upc' => '799007782445', 'provider' => 'bestbuy'],\n ['name' => \"Need for Speed: Nitro - PRE-OWNED - Nintendo DS\", 'description_short' => \"Rocket to insane speeds in street races around the globe\", 'description_long' => \"Rocket to insane speeds in street races around the globe\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/need-for-speed-nitro-pre-owned-nintendo-ds/1475382.p?id=1218262488220&skuId=1475382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475382_sa.jpg\"}', 'upc' => '799007782476', 'provider' => 'bestbuy'],\n ['name' => \"Dead to Rights: Retribution - PRE-OWNED - PlayStation 3\", 'description_short' => \"Take on the Grant City underworld\", 'description_long' => \"Take on the Grant City underworld\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-to-rights-retribution-pre-owned-playstation-3/1475391.p?id=1218262477326&skuId=1475391&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475391_sa.jpg\"}', 'upc' => '799007782483', 'provider' => 'bestbuy'],\n ['name' => \"Trinity Universe - PRE-OWNED - PlayStation 3\", 'description_short' => \"Take your fighting power out of this universe\", 'description_long' => \"Take your fighting power out of this universe\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trinity-universe-pre-owned-playstation-3/1475415.p?id=1218262480518&skuId=1475415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475415_sa.jpg\"}', 'upc' => '799007782490', 'provider' => 'bestbuy'],\n ['name' => \"Hidden Mysteries: Buckingham Palace Secrets of Kings and Queens - PRE-OWNED - Nintendo DS\", 'description_short' => \"Discover the location of the missing crown jewels and return them to the royal family\", 'description_long' => \"Discover the location of the missing crown jewels and return them to the royal family\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hidden-mysteries-buckingham-palace-secrets-of-kings-and-queens-pre-owned-nintendo-ds/1475646.p?id=1218262469037&skuId=1475646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475646_sa.jpg\"}', 'upc' => '799007782537', 'provider' => 'bestbuy'],\n ['name' => \"Tetris Party Deluxe - PRE-OWNED - Nintendo DS\", 'description_short' => \"Don&#039;t let your blocks reach the top\", 'description_long' => \"Don&#039;t let your blocks reach the top\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tetris-party-deluxe-pre-owned-nintendo-ds/1475673.p?id=1218262467425&skuId=1475673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475673_sa.jpg\"}', 'upc' => '799007782568', 'provider' => 'bestbuy'],\n ['name' => \"Divinity II: Ego Draconis - PRE-OWNED - Xbox 360\", 'description_short' => \"Vaporize all that stands in your way\", 'description_long' => \"Vaporize all that stands in your way\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/divinity-ii-ego-draconis-pre-owned-xbox-360/1475728.p?id=1218262486958&skuId=1475728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475728_sa.jpg\"}', 'upc' => '799007782605', 'provider' => 'bestbuy'],\n ['name' => \"Animal Paradise - PRE-OWNED - Nintendo DS\", 'description_short' => \"Care for a variety of adorable animals\", 'description_long' => \"Care for a variety of adorable animals\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/animal-paradise-pre-owned-nintendo-ds/1475746.p?id=1218262466226&skuId=1475746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475746_sa.jpg\"}', 'upc' => '799007782629', 'provider' => 'bestbuy'],\n ['name' => \"Dragon Ball: Raging Blast - PRE-OWNED - Xbox 360\", 'description_short' => \"Battle your way through an anime-inspired HD game world\", 'description_long' => \"Battle your way through an anime-inspired HD game world\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragon-ball-raging-blast-pre-owned-xbox-360/1475755.p?id=1218262479421&skuId=1475755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475755_sa.jpg\"}', 'upc' => '799007782636', 'provider' => 'bestbuy'],\n ['name' => \"My Healthy Cooking Coach - PRE-OWNED - Nintendo DS\", 'description_short' => \"Make every meal nutritious and delicious\", 'description_long' => \"Make every meal nutritious and delicious\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-healthy-cooking-coach-pre-owned-nintendo-ds/1475764.p?id=1218262461808&skuId=1475764&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475764', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475764_sa.jpg\"}', 'upc' => '799007782643', 'provider' => 'bestbuy'],\n ['name' => \"Hooked: Real Motion Fishing - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Rise to the top like these legends of rock\", 'description_long' => \"Rise to the top like these legends of rock\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hooked-real-motion-fishing-pre-owned-nintendo-wii/1475773.p?id=1218262487206&skuId=1475773&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475773', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475773_sa.jpg\"}', 'upc' => '799007782650', 'provider' => 'bestbuy'],\n ['name' => \"Don King Boxing - PRE-OWNED - Nintendo DS\", 'description_short' => \"Prove you&#039;re the king of the ring\", 'description_long' => \"Prove you&#039;re the king of the ring\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/don-king-boxing-pre-owned-nintendo-ds/1475782.p?id=1218262488282&skuId=1475782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475782_sa.jpg\"}', 'upc' => '799007782667', 'provider' => 'bestbuy'],\n ['name' => \"Final Fantasy XII: Revenant Wings - PRE-OWNED - Nintendo DS\", 'description_short' => \"Take to the skies of Ivalice\", 'description_long' => \"Take to the skies of Ivalice\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/final-fantasy-xii-revenant-wings-pre-owned-nintendo-ds/1475828.p?id=1218262478257&skuId=1475828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475828_sa.jpg\"}', 'upc' => '799007787983', 'provider' => 'bestbuy'],\n ['name' => \"Scene It? Twilight - PRE-OWNED - Nintendo DS\", 'description_short' => \"Test your knowledge of all things Twilight\", 'description_long' => \"Test your knowledge of all things Twilight\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scene-it-twilight-pre-owned-nintendo-ds/1475837.p?id=1218262479019&skuId=1475837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475837_sa.jpg\"}', 'upc' => '799007787990', 'provider' => 'bestbuy'],\n ['name' => \"Zhu Zhu Pets - PRE-OWNED - Nintendo DS\", 'description_short' => \"Care for nine amazing Zhu Zhu pets in their Hamster Habitat\", 'description_long' => \"Care for nine amazing Zhu Zhu pets in their Hamster Habitat\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zhu-zhu-pets-pre-owned-nintendo-ds/1475864.p?id=1218262472702&skuId=1475864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475864_sa.jpg\"}', 'upc' => '799007788010', 'provider' => 'bestbuy'],\n ['name' => \"Cross Edge - PRE-OWNED - PlayStation 3\", 'description_short' => \"Battle for control when five game worlds collide\", 'description_long' => \"Battle for control when five game worlds collide\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cross-edge-pre-owned-playstation-3/1475882.p?id=1218262483024&skuId=1475882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475882_sa.jpg\"}', 'upc' => '799007788034', 'provider' => 'bestbuy'],\n ['name' => \"Contra 4 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Take a last stand for the planet&#039;s survival\", 'description_long' => \"Take a last stand for the planet&#039;s survival\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/contra-4-pre-owned-nintendo-ds/1475891.p?id=1218262470442&skuId=1475891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475891_sa.jpg\"}', 'upc' => '799007788041', 'provider' => 'bestbuy'],\n ['name' => \"Sonic & SEGA All-Stars Racing - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Race on 24 tracks against 20 challengers from the Sonic and SEGA universe\", 'description_long' => \"Race on 24 tracks against 20 challengers from the Sonic and SEGA universe\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonic-sega-all-stars-racing-pre-owned-nintendo-wii/1475928.p?id=1218262480270&skuId=1475928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475928_sa.jpg\"}', 'upc' => '799007788065', 'provider' => 'bestbuy'],\n ['name' => \"Backbreaker - PRE-OWNED - PlayStation 3\", 'description_short' => \"Feel the thrill of the game spiraling at you\", 'description_long' => \"Feel the thrill of the game spiraling at you\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbreaker-pre-owned-playstation-3/1475937.p?id=1218262490408&skuId=1475937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475937_sa.jpg\"}', 'upc' => '799007788072', 'provider' => 'bestbuy'],\n ['name' => \"Paws & Claws Regal Resort — PRE-OWNED - Nintendo DS\", 'description_short' => \"Make posh pets purr with happiness at a fancy five-star resort\", 'description_long' => \"Make posh pets purr with happiness at a fancy five-star resort\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paws-claws-regal-resort-pre-owned-nintendo-ds/1475955.p?id=1218262474385&skuId=1475955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475955.jpg\"}', 'upc' => '799007788096', 'provider' => 'bestbuy'],\n ['name' => \"Resonance of Fate - PRE-OWNED - PlayStation 3\", 'description_short' => \"Take down opponents in epic gun battles as you explore a dystopian machine city\", 'description_long' => \"Take down opponents in epic gun battles as you explore a dystopian machine city\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resonance-of-fate-pre-owned-playstation-3/1475964.p?id=1218262483520&skuId=1475964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475964_sa.jpg\"}', 'upc' => '799007788102', 'provider' => 'bestbuy'],\n ['name' => \"Let's Pilates — PRE-OWNED - Nintendo DS\", 'description_short' => \"Get in shape anywhere, at your own pace\", 'description_long' => \"Get in shape anywhere, at your own pace\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-pilates-pre-owned-nintendo-ds/1475982.p?id=1218262492773&skuId=1475982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1475982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1475\\/1475982.jpg\"}', 'upc' => '799007788126', 'provider' => 'bestbuy'],\n ['name' => \"Tropico 3 - PRE-OWNED - Xbox 360\", 'description_short' => \"Travel to an island where you totally rule\", 'description_long' => \"Travel to an island where you totally rule\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tropico-3-pre-owned-xbox-360/1476026.p?id=1218262490283&skuId=1476026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476026_sa.jpg\"}', 'upc' => '799007788164', 'provider' => 'bestbuy'],\n ['name' => \"Generations - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/generations-cd/1476101.p?id=111937&skuId=1476101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476101_sa.jpg\"}', 'upc' => '736817001120', 'provider' => 'bestbuy'],\n ['name' => \"Club Penguin: Elite Penguin Force - PRE-OWNED - Nintendo DS\", 'description_short' => \"Are you frosty enough to be a secret penguin agent?\", 'description_long' => \"Are you frosty enough to be a secret penguin agent?\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/club-penguin-elite-penguin-force-pre-owned-nintendo-ds/1476123.p?id=1218262487639&skuId=1476123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476123_sa.jpg\"}', 'upc' => '799007788256', 'provider' => 'bestbuy'],\n ['name' => \"Mario Party DS - PRE-OWNED - Nintendo DS\", 'description_short' => \"Throw a party of petite proportions\", 'description_long' => \"Throw a party of petite proportions\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mario-party-ds-pre-owned-nintendo-ds/1476196.p?id=1218262477450&skuId=1476196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476196_sa.jpg\"}', 'upc' => '799007788317', 'provider' => 'bestbuy'],\n ['name' => \"Dance on Broadway - PRE-OWNED - Nintendo Wii\", 'description_short' => \"When the curtain goes up, will you have what it takes to Dance on Broadway?\", 'description_long' => \"When the curtain goes up, will you have what it takes to Dance on Broadway?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-on-broadway-pre-owned-nintendo-wii/1476239.p?id=1218262488972&skuId=1476239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476239_sa.jpg\"}', 'upc' => '799007788348', 'provider' => 'bestbuy'],\n ['name' => \"Dragon Quest IX: Sentinels of the Starry Skies - PRE-OWNED - Nintendo DS\", 'description_short' => \"Prove your worth on an epic adventure\", 'description_long' => \"Prove your worth on an epic adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragon-quest-ix-sentinels-of-the-starry-skies-pre-owned-nintendo-ds/1476248.p?id=1218262472383&skuId=1476248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476248_sa.jpg\"}', 'upc' => '799007788355', 'provider' => 'bestbuy'],\n ['name' => \"Tatsunoko Vs. Capcom: Ultimate All-Stars - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Pummel as part of a pair\", 'description_long' => \"Pummel as part of a pair\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tatsunoko-vs-capcom-ultimate-all-stars-pre-owned-nintendo-wii/1476257.p?id=1218262477699&skuId=1476257&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476257_sa.jpg\"}', 'upc' => '799007788362', 'provider' => 'bestbuy'],\n ['name' => \"Third Stone From the Sun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/third-stone-from-the-sun-cd/1476281.p?id=1477569&skuId=1476281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476281.jpg\"}', 'upc' => '093228043522', 'provider' => 'bestbuy'],\n ['name' => \"Transformers: War for Cybertron Decepticons - PRE-OWNED - Nintendo DS\", 'description_short' => \"Fight in the epic civil war for Cybertron\", 'description_long' => \"Fight in the epic civil war for Cybertron\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-war-for-cybertron-decepticons-pre-owned-nintendo-ds/1476293.p?id=1218262472258&skuId=1476293&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476293_sa.jpg\"}', 'upc' => '799007788409', 'provider' => 'bestbuy'],\n ['name' => \"How to Train Your Dragon - PRE-OWNED - Xbox 360\", 'description_short' => \"Train your dragon and prepare for battle to become a Viking hero\", 'description_long' => \"Train your dragon and prepare for battle to become a Viking hero\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-to-train-your-dragon-pre-owned-xbox-360/1476336.p?id=1218262478513&skuId=1476336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476336_sa.jpg\"}', 'upc' => '799007788447', 'provider' => 'bestbuy'],\n ['name' => \"Alarms & Excursions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alarms-excursions-cd/1476343.p?id=1575839&skuId=1476343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476343.jpg\"}', 'upc' => '093228043720', 'provider' => 'bestbuy'],\n ['name' => \"Build-A-Bear Workshop: Welcome to Hugsville - PRE-OWNED - Nintendo DS\", 'description_short' => \"Visit all your furry friends in Hugsville for fun adventures\", 'description_long' => \"Visit all your furry friends in Hugsville for fun adventures\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/build-a-bear-workshop-welcome-to-hugsville-pre-owned-nintendo-ds/1476345.p?id=1218262476998&skuId=1476345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476345_sa.jpg\"}', 'upc' => '799007788454', 'provider' => 'bestbuy'],\n ['name' => \"Transformers: War for Cybertron Autobots - PRE-OWNED - Nintendo DS\", 'description_short' => \"With the fate of the world at stake, can you lead the Autobots to victory?\", 'description_long' => \"With the fate of the world at stake, can you lead the Autobots to victory?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-war-for-cybertron-autobots-pre-owned-nintendo-ds/1476372.p?id=1218262469355&skuId=1476372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476372_sa.jpg\"}', 'upc' => '799007762522', 'provider' => 'bestbuy'],\n ['name' => \"Prince of Persia: The Forgotten Sands - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Prepare for a new adventure\", 'description_long' => \"Prepare for a new adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prince-of-persia-the-forgotten-sands-pre-owned-nintendo-wii/1476609.p?id=1218262481707&skuId=1476609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476609_sa.jpg\"}', 'upc' => '799007762546', 'provider' => 'bestbuy'],\n ['name' => \"Sid Meier's Civilization Revolution - PRE-OWNED - Xbox 360\", 'description_short' => \"Build epic empires and worlds and test your strategy skills\", 'description_long' => \"Build epic empires and worlds and test your strategy skills\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sid-meiers-civilization-revolution-pre-owned-xbox-360/1476645.p?id=1218262486331&skuId=1476645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476645_sa.jpg\"}', 'upc' => '799007762584', 'provider' => 'bestbuy'],\n ['name' => \"Kerosene Hat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kerosene-hat-cd/1476646.p?id=79055&skuId=1476646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476646.jpg\"}', 'upc' => '724383901227', 'provider' => 'bestbuy'],\n ['name' => \"Charm Girls Club: My Fashion Show - PRE-OWNED - Nintendo DS\", 'description_short' => \"Design trendy looks for people and pooches\", 'description_long' => \"Design trendy looks for people and pooches\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charm-girls-club-my-fashion-show-pre-owned-nintendo-ds/1476654.p?id=1218262468417&skuId=1476654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476654_sa.jpg\"}', 'upc' => '799007762591', 'provider' => 'bestbuy'],\n ['name' => \"My Baby: First Steps - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Teach a baby to walk, talk and play\", 'description_long' => \"Teach a baby to walk, talk and play\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-baby-first-steps-pre-owned-nintendo-wii/1476663.p?id=1218262465757&skuId=1476663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476663_sa.jpg\"}', 'upc' => '799007762607', 'provider' => 'bestbuy'],\n ['name' => \"LEGO Star Wars: The Complete Saga - PRE-OWNED - Nintendo DS\", 'description_short' => \"Adventure, build and race in a galaxy far, far away\", 'description_long' => \"Adventure, build and race in a galaxy far, far away\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lego-star-wars-the-complete-saga-pre-owned-nintendo-ds/1476672.p?id=1218262483964&skuId=1476672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476672_sa.jpg\"}', 'upc' => '799007762614', 'provider' => 'bestbuy'],\n ['name' => \"Disney Stitch Jam - PRE-OWNED - Nintendo DS\", 'description_short' => \"Feel the rhythm and help Stitch save his kidnapped girlfriend, Angel\", 'description_long' => \"Feel the rhythm and help Stitch save his kidnapped girlfriend, Angel\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-stitch-jam-pre-owned-nintendo-ds/1476681.p?id=1218262462492&skuId=1476681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476681_sa.jpg\"}', 'upc' => '799007762621', 'provider' => 'bestbuy'],\n ['name' => \"Trauma Team - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Experience the thrill and intensity of a medical drama\", 'description_long' => \"Experience the thrill and intensity of a medical drama\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trauma-team-pre-owned-nintendo-wii/1476709.p?id=1218262491151&skuId=1476709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476709_sa.jpg\"}', 'upc' => '799007762638', 'provider' => 'bestbuy'],\n ['name' => \"Prince of Persia: The Forgotten Sands - PRE-OWNED - PlayStation 3\", 'description_short' => \"Prepare for a new adventure\", 'description_long' => \"Prepare for a new adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prince-of-persia-the-forgotten-sands-pre-owned-playstation-3/1476736.p?id=1218262486956&skuId=1476736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476736_sa.jpg\"}', 'upc' => '799007762669', 'provider' => 'bestbuy'],\n ['name' => \"Hello Kitty Party - PRE-OWNED - Nintendo DS\", 'description_short' => \"Laugh and play at a fun party\", 'description_long' => \"Laugh and play at a fun party\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hello-kitty-party-pre-owned-nintendo-ds/1476754.p?id=1218262489441&skuId=1476754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476754_sa.jpg\"}', 'upc' => '799007762683', 'provider' => 'bestbuy'],\n ['name' => \"Project Runway - PRE-OWNED - Nintendo Wii\", 'description_short' => \"You have a theme, materials and a time limit &#8212; make it work\", 'description_long' => \"You have a theme, materials and a time limit &#8212; make it work\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/project-runway-pre-owned-nintendo-wii/1476781.p?id=1218262462961&skuId=1476781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476781_sa.jpg\"}', 'upc' => '799007762713', 'provider' => 'bestbuy'],\n ['name' => \"Guit with It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guit-with-it-cd/1476879.p?id=76116&skuId=1476879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476879_sa.jpg\"}', 'upc' => '715187762220', 'provider' => 'bestbuy'],\n ['name' => \"12 Shades of Brown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/12-shades-of-brown-cd/1476904.p?id=76115&skuId=1476904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1476904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1476\\/1476904_sa.jpg\"}', 'upc' => '715187763524', 'provider' => 'bestbuy'],\n ['name' => \"The Iceman (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-iceman-blu-ray-disc-2-disc/1477025.p?id=2717900&skuId=1477025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477025_sa.jpg\"}', 'upc' => '687797140142', 'provider' => 'bestbuy'],\n ['name' => \"Rayman Raving Rabbids TV Party - PRE-OWNED - Nintendo DS\", 'description_short' => \"No TV has ever had ears quite like this\", 'description_long' => \"No TV has ever had ears quite like this\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rayman-raving-rabbids-tv-party-pre-owned-nintendo-ds/1477104.p?id=1218262465908&skuId=1477104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477104_sa.jpg\"}', 'upc' => '799007762775', 'provider' => 'bestbuy'],\n ['name' => \"Kung Fu Panda: Legendary Warriors - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Unleash your inner kung fu master to save the Furious Five\", 'description_long' => \"Unleash your inner kung fu master to save the Furious Five\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kung-fu-panda-legendary-warriors-pre-owned-nintendo-wii/1477113.p?id=1218262479483&skuId=1477113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477113_sa.jpg\"}', 'upc' => '799007762782', 'provider' => 'bestbuy'],\n ['name' => \"Backyard Baseball '10 - PRE-OWNED - Nintendo DS\", 'description_short' => \"The big leagues get little\", 'description_long' => \"The big leagues get little\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backyard-baseball-10-pre-owned-nintendo-ds/1477122.p?id=1218262493835&skuId=1477122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477122_sa.jpg\"}', 'upc' => '799007762799', 'provider' => 'bestbuy'],\n ['name' => \"Shrek Forever After: The Final Chapter - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Save Far, Far Away from the devious Rumpelstiltskin\", 'description_long' => \"Save Far, Far Away from the devious Rumpelstiltskin\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shrek-forever-after-the-final-chapter-pre-owned-nintendo-wii/1477131.p?id=1218262468540&skuId=1477131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477131_sa.jpg\"}', 'upc' => '799007762805', 'provider' => 'bestbuy'],\n ['name' => \"Where's Waldo?: The Fantastic Journey - PRE-OWNED - Nintendo DS\", 'description_short' => \"Search for an iconic character in a new way\", 'description_long' => \"Search for an iconic character in a new way\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wheres-waldo-the-fantastic-journey-pre-owned-nintendo-ds/1477201.p?id=1218262477823&skuId=1477201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477201_sa.jpg\"}', 'upc' => '799007762867', 'provider' => 'bestbuy'],\n ['name' => \"Disney Sing It: High School Musical 3: Senior Year - PRE-OWNED - PlayStation 3\", 'description_short' => \"Senior year never sounded like so much fun\", 'description_long' => \"Senior year never sounded like so much fun\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-sing-it-high-school-musical-3-senior-year-pre-owned-playstation-3/1477229.p?id=1218262466555&skuId=1477229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477229_sa.jpg\"}', 'upc' => '799007762874', 'provider' => 'bestbuy'],\n ['name' => \"Barbie Fashion Show: An Eye for Style - PRE-OWNED - Nintendo DS\", 'description_short' => \"Dazzle the fashion world as you help Barbie put on a fabulous show\", 'description_long' => \"Dazzle the fashion world as you help Barbie put on a fabulous show\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barbie-fashion-show-an-eye-for-style-pre-owned-nintendo-ds/1477247.p?id=1218262467053&skuId=1477247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477247_sa.jpg\"}', 'upc' => '799007762898', 'provider' => 'bestbuy'],\n ['name' => \"Garfield's Fun Fest - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help Garfield retrieve his sense of humor\", 'description_long' => \"Help Garfield retrieve his sense of humor\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/garfields-fun-fest-pre-owned-nintendo-ds/1477283.p?id=1218262474759&skuId=1477283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477283_sa.jpg\"}', 'upc' => '799007762935', 'provider' => 'bestbuy'],\n ['name' => \"Uncharted 2: Among Thieves - PRE-OWNED - PlayStation 3\", 'description_short' => \"Seek your fortune before your luck runs out\", 'description_long' => \"Seek your fortune before your luck runs out\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncharted-2-among-thieves-pre-owned-playstation-3/1477292.p?id=1218262468787&skuId=1477292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477292_sa.jpg\"}', 'upc' => '799007762942', 'provider' => 'bestbuy'],\n ['name' => \"So Full of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-full-of-love-cd/1477299.p?id=93698&skuId=1477299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477299_sa.jpg\"}', 'upc' => '724382712022', 'provider' => 'bestbuy'],\n ['name' => \"Disney Fairies: TinkerBell - PRE-OWNED - Nintendo DS\", 'description_short' => \"Enjoy fun-filled fairy gameplay\", 'description_long' => \"Enjoy fun-filled fairy gameplay\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-fairies-tinkerbell-pre-owned-nintendo-ds/1477308.p?id=1218262491648&skuId=1477308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477308_sa.jpg\"}', 'upc' => '799007762959', 'provider' => 'bestbuy'],\n ['name' => \"Kung Fu Panda: Legendary Warriors - PRE-OWNED - Nintendo DS\", 'description_short' => \"Perform your best kung fu moves to save the Furious Five\", 'description_long' => \"Perform your best kung fu moves to save the Furious Five\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kung-fu-panda-legendary-warriors-pre-owned-nintendo-ds/1477317.p?id=1218262493959&skuId=1477317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477317_sa.jpg\"}', 'upc' => '799007762966', 'provider' => 'bestbuy'],\n ['name' => \"Prince of Persia: The Forgotten Sands - PRE-OWNED - Xbox 360\", 'description_short' => \"Prepare for a new adventure\", 'description_long' => \"Prepare for a new adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prince-of-persia-the-forgotten-sands-pre-owned-xbox-360/1477399.p?id=1218262475082&skuId=1477399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477399_sa.jpg\"}', 'upc' => '799007763031', 'provider' => 'bestbuy'],\n ['name' => \"Top Country Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/top-country-hits-cd-various/1477404.p?id=79001&skuId=1477404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477404.jpg\"}', 'upc' => '715187763326', 'provider' => 'bestbuy'],\n ['name' => \"Late Piano Sonatas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/late-piano-sonatas-cd/1477413.p?id=1678111&skuId=1477413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477413.jpg\"}', 'upc' => '028943837422', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/1477486.p?id=75990&skuId=1477486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477486.jpg\"}', 'upc' => '715187763029', 'provider' => 'bestbuy'],\n ['name' => \"Civil War: Secret Missions - PRE-OWNED - PlayStation 3\", 'description_short' => \"Go behind enemy lines in a conflict that tore a nation apart\", 'description_long' => \"Go behind enemy lines in a conflict that tore a nation apart\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/civil-war-secret-missions-pre-owned-playstation-3/1477635.p?id=1218262493339&skuId=1477635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477635_sa.jpg\"}', 'upc' => '799007788492', 'provider' => 'bestbuy'],\n ['name' => \"Purr Pals - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Bring home a beautiful virtual kitten\", 'description_long' => \"Bring home a beautiful virtual kitten\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/purr-pals-pre-owned-nintendo-wii/1477644.p?id=1218262490532&skuId=1477644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477644_sa.jpg\"}', 'upc' => '799007788508', 'provider' => 'bestbuy'],\n ['name' => \"Penny Racers Party: Turbo-Q Speedway - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Drive your miniature car to a big finish\", 'description_long' => \"Drive your miniature car to a big finish\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/penny-racers-party-turbo-q-speedway-pre-owned-nintendo-wii/1477653.p?id=1218262484531&skuId=1477653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477653_sa.jpg\"}', 'upc' => '799007788515', 'provider' => 'bestbuy'],\n ['name' => \"We Cheer — PRE-OWNED - Nintendo Wii\", 'description_short' => \"Wave your pom-poms and show your team spirit\", 'description_long' => \"Wave your pom-poms and show your team spirit\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-cheer-pre-owned-nintendo-wii/1477662.p?id=1218262484408&skuId=1477662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477662.jpg\"}', 'upc' => '799007788522', 'provider' => 'bestbuy'],\n ['name' => \"Petz Rescue: Ocean Patrol — PRE-OWNED - Nintendo DS\", 'description_short' => \"Help rescue and protect endangered marine animals\", 'description_long' => \"Help rescue and protect endangered marine animals\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-rescue-ocean-patrol-pre-owned-nintendo-ds/1477671.p?id=1218262472321&skuId=1477671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477671.jpg\"}', 'upc' => '799007788539', 'provider' => 'bestbuy'],\n ['name' => \"Kirby Super Star Ultra - PRE-OWNED - Nintendo DS\", 'description_short' => \"Kirby&#039;s back for a thrilling, fast-paced adventure\", 'description_long' => \"Kirby&#039;s back for a thrilling, fast-paced adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kirby-super-star-ultra-pre-owned-nintendo-ds/1477699.p?id=1218262476919&skuId=1477699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477699_sa.jpg\"}', 'upc' => '799007788546', 'provider' => 'bestbuy'],\n ['name' => \"Rabbids Go Home - PRE-OWNED - Nintendo DS\", 'description_short' => \"Evade the pesky humans and seize their precious stuff\", 'description_long' => \"Evade the pesky humans and seize their precious stuff\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rabbids-go-home-pre-owned-nintendo-ds/1477708.p?id=1218262493712&skuId=1477708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477708_sa.jpg\"}', 'upc' => '799007788553', 'provider' => 'bestbuy'],\n ['name' => \"Secret Service - PRE-OWNED - Xbox 360\", 'description_short' => \"Put your life on the line to serve your country\", 'description_long' => \"Put your life on the line to serve your country\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secret-service-pre-owned-xbox-360/1477717.p?id=1218262484087&skuId=1477717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477717_sa.jpg\"}', 'upc' => '799007788560', 'provider' => 'bestbuy'],\n ['name' => \"Ben 10: Alien Force - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Join the battle against sinister alien forces\", 'description_long' => \"Join the battle against sinister alien forces\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ben-10-alien-force-pre-owned-nintendo-wii/1477726.p?id=1218262494208&skuId=1477726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477726_sa.jpg\"}', 'upc' => '799007788577', 'provider' => 'bestbuy'],\n ['name' => \"Afro Samurai - PRE-OWNED - PlayStation 3\", 'description_short' => \"Track down a killer to the tune of a funky hip-hop beat\", 'description_long' => \"Track down a killer to the tune of a funky hip-hop beat\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afro-samurai-pre-owned-playstation-3/1477735.p?id=1218262477327&skuId=1477735&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477735', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477735_sa.jpg\"}', 'upc' => '799007788584', 'provider' => 'bestbuy'],\n ['name' => \"Cars Race-O-Rama - PRE-OWNED - Nintendo DS\", 'description_short' => \"Speed to the finish line and take home the trophy\", 'description_long' => \"Speed to the finish line and take home the trophy\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cars-race-o-rama-pre-owned-nintendo-ds/1477753.p?id=1218262469673&skuId=1477753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477753_sa.jpg\"}', 'upc' => '799007788607', 'provider' => 'bestbuy'],\n ['name' => \"Petz Monkeyz House — PRE-OWNED - Nintendo DS\", 'description_short' => \"Raise an entire adorable monkey family\", 'description_long' => \"Raise an entire adorable monkey family\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-monkeyz-house-pre-owned-nintendo-ds/1477771.p?id=1218262488725&skuId=1477771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477771.jpg\"}', 'upc' => '799007788621', 'provider' => 'bestbuy'],\n ['name' => \"Zenses: Ocean - PRE-OWNED - Nintendo DS\", 'description_short' => \"Challenge your mind while soothing your senses\", 'description_long' => \"Challenge your mind while soothing your senses\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zenses-ocean-pre-owned-nintendo-ds/1477799.p?id=1218262490186&skuId=1477799&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477799', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477799_sa.jpg\"}', 'upc' => '799007788638', 'provider' => 'bestbuy'],\n ['name' => \"NPPL Championship Paintball 2009 — PRE-OWNED - Xbox 360\", 'description_short' => \"Prepare for intense paintball action\", 'description_long' => \"Prepare for intense paintball action\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nppl-championship-paintball-2009-pre-owned-xbox-360/1477808.p?id=1218262474063&skuId=1477808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477808.jpg\"}', 'upc' => '799007788645', 'provider' => 'bestbuy'],\n ['name' => \"Charm Girls Club: My Perfect Prom - PRE-OWNED - Nintendo DS\", 'description_short' => \"Make your prom a night to remember\", 'description_long' => \"Make your prom a night to remember\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charm-girls-club-my-perfect-prom-pre-owned-nintendo-ds/1477817.p?id=1218262473384&skuId=1477817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477817_sa.jpg\"}', 'upc' => '799007788652', 'provider' => 'bestbuy'],\n ['name' => \"Tinker Bell and the Lost Treasure - PRE-OWNED - Nintendo DS\", 'description_short' => \"Set off on a magical adventure with Tinker Bell\", 'description_long' => \"Set off on a magical adventure with Tinker Bell\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tinker-bell-and-the-lost-treasure-pre-owned-nintendo-ds/1477835.p?id=1218262464730&skuId=1477835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477835_sa.jpg\"}', 'upc' => '799007788676', 'provider' => 'bestbuy'],\n ['name' => \"Spider-Man: Web of Shadows - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Which path will you choose as you repel an alien invasion?\", 'description_long' => \"Which path will you choose as you repel an alien invasion?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spider-man-web-of-shadows-pre-owned-nintendo-wii/1477853.p?id=1218262479642&skuId=1477853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477853_sa.jpg\"}', 'upc' => '799007788690', 'provider' => 'bestbuy'],\n ['name' => \"Wanted: Weapons of Fate - PRE-OWNED - PlayStation 3\", 'description_short' => \"Become a deadly assassin\", 'description_long' => \"Become a deadly assassin\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wanted-weapons-of-fate-pre-owned-playstation-3/1477862.p?id=1218262472135&skuId=1477862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477862_sa.jpg\"}', 'upc' => '799007788706', 'provider' => 'bestbuy'],\n ['name' => \"MLB 10: The Show - PRE-OWNED - PlayStation 3\", 'description_short' => \"Live the heart-pounding action and authenticity of Major League Baseball\", 'description_long' => \"Live the heart-pounding action and authenticity of Major League Baseball\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mlb-10-the-show-pre-owned-playstation-3/1477871.p?id=1218262468789&skuId=1477871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477871_sa.jpg\"}', 'upc' => '799007788713', 'provider' => 'bestbuy'],\n ['name' => \"UP - PRE-OWNED - Nintendo DS\", 'description_short' => \"Join an unlikely team of explorers in the adventure of a lifetime\", 'description_long' => \"Join an unlikely team of explorers in the adventure of a lifetime\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-pre-owned-nintendo-ds/1477899.p?id=1218262479774&skuId=1477899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477899_sa.jpg\"}', 'upc' => '799007788720', 'provider' => 'bestbuy'],\n ['name' => \"MySims Agents - PRE-OWNED - Nintendo DS\", 'description_short' => \"Track down a mysterious treasure thief\", 'description_long' => \"Track down a mysterious treasure thief\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mysims-agents-pre-owned-nintendo-ds/1477908.p?id=1218262472701&skuId=1477908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477908_sa.jpg\"}', 'upc' => '799007788737', 'provider' => 'bestbuy'],\n ['name' => \"My Weight Loss Coach - PRE-OWNED - Nintendo DS\", 'description_short' => \"Take steps toward lasting weight loss\", 'description_long' => \"Take steps toward lasting weight loss\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-weight-loss-coach-pre-owned-nintendo-ds/1477917.p?id=1218262468167&skuId=1477917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477917_sa.jpg\"}', 'upc' => '799007788744', 'provider' => 'bestbuy'],\n ['name' => \"Pirates vs. Ninjas Dodgeball - PRE-OWNED - Nintendo Wii\", 'description_short' => \"The storied conflict comes to a head in the ultimate contest\", 'description_long' => \"The storied conflict comes to a head in the ultimate contest\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pirates-vs-ninjas-dodgeball-pre-owned-nintendo-wii/1477926.p?id=1218262483963&skuId=1477926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477926_sa.jpg\"}', 'upc' => '799007788751', 'provider' => 'bestbuy'],\n ['name' => \"SpongeBob SquarePants featuring Nicktoons: Globs of Doom - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help save the Nickelodeon universe from Globulous and the Morphoids\", 'description_long' => \"Help save the Nickelodeon universe from Globulous and the Morphoids\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spongebob-squarepants-featuring-nicktoons-globs-of-doom-pre-owned-nintendo-ds/1477935.p?id=1218262463060&skuId=1477935&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477935', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477935_sa.jpg\"}', 'upc' => '799007788768', 'provider' => 'bestbuy'],\n ['name' => \"NERF N-Strike Elite - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Blast a path to mission success\", 'description_long' => \"Blast a path to mission success\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nerf-n-strike-elite-pre-owned-nintendo-wii/1477944.p?id=1218262478434&skuId=1477944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477944_sa.jpg\"}', 'upc' => '799007788775', 'provider' => 'bestbuy'],\n ['name' => \"Cabela's Outdoor Adventures - PRE-OWNED - PlayStation 3\", 'description_short' => \"Hunt and fish across amazing North American landscapes\", 'description_long' => \"Hunt and fish across amazing North American landscapes\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cabelas-outdoor-adventures-pre-owned-playstation-3/1477962.p?id=1218262463293&skuId=1477962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1477962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1477\\/1477962_sa.jpg\"}', 'upc' => '799007788799', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Movie Star - PRE-OWNED - Nintendo DS\", 'description_short' => \"Play the role of an A-list movie star\", 'description_long' => \"Play the role of an A-list movie star\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-movie-star-pre-owned-nintendo-ds/1478024.p?id=1218262480395&skuId=1478024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478024_sa.jpg\"}', 'upc' => '799007788843', 'provider' => 'bestbuy'],\n ['name' => \"BlazBlue: Calamity Trigger - PRE-OWNED - Xbox 360\", 'description_short' => \"Experience the intensity of high-res fighting\", 'description_long' => \"Experience the intensity of high-res fighting\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blazblue-calamity-trigger-pre-owned-xbox-360/1478033.p?id=1218262488095&skuId=1478033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478033_sa.jpg\"}', 'upc' => '799007788850', 'provider' => 'bestbuy'],\n ['name' => \"Henry Hatsworth in the Puzzling Adventure - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help Henry Hatsworth navigate through two different and challenging gaming styles\", 'description_long' => \"Help Henry Hatsworth navigate through two different and challenging gaming styles\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/henry-hatsworth-in-the-puzzling-adventure-pre-owned-nintendo-ds/1478042.p?id=1218262489221&skuId=1478042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478042_sa.jpg\"}', 'upc' => '799007788867', 'provider' => 'bestbuy'],\n ['name' => \"Prison Break: The Conspiracy - PRE-OWNED - Xbox 360\", 'description_short' => \"What conspiracies will you uncover in Fox River Penitentiary?\", 'description_long' => \"What conspiracies will you uncover in Fox River Penitentiary?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prison-break-the-conspiracy-pre-owned-xbox-360/1478121.p?id=1218262464978&skuId=1478121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478121_sa.jpg\"}', 'upc' => '799007788928', 'provider' => 'bestbuy'],\n ['name' => \"Dream Day Wedding Destinations - PRE-OWNED - Nintendo DS\", 'description_short' => \"Find the objects that will make each bride&#039;s wedding the one of her dreams\", 'description_long' => \"Find the objects that will make each bride&#039;s wedding the one of her dreams\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dream-day-wedding-destinations-pre-owned-nintendo-ds/1478158.p?id=1218262462872&skuId=1478158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478158_sa.jpg\"}', 'upc' => '799007788942', 'provider' => 'bestbuy'],\n ['name' => \"Gardening Mama - PRE-OWNED - Nintendo DS\", 'description_short' => \"Plant it, grow it and make your garden a success\", 'description_long' => \"Plant it, grow it and make your garden a success\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gardening-mama-pre-owned-nintendo-ds/1478185.p?id=1218262490779&skuId=1478185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478185_sa.jpg\"}', 'upc' => '799007788973', 'provider' => 'bestbuy'],\n ['name' => \"Active Life Outdoor Challenge - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Get your body moving as you experience incredible outdoor thrills\", 'description_long' => \"Get your body moving as you experience incredible outdoor thrills\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/active-life-outdoor-challenge-pre-owned-nintendo-wii/1478219.p?id=1218262469231&skuId=1478219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478219_sa.jpg\"}', 'upc' => '799007788997', 'provider' => 'bestbuy'],\n ['name' => \"Sam & Max: Season One — PRE-OWNED - Nintendo Wii\", 'description_short' => \"Make sure you have a sense of humor\", 'description_long' => \"Make sure you have a sense of humor\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sam-max-season-one-pre-owned-nintendo-wii/1478228.p?id=1218262480393&skuId=1478228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478228.jpg\"}', 'upc' => '799007789000', 'provider' => 'bestbuy'],\n ['name' => \"Darkest of Days - PRE-OWNED - Xbox 360\", 'description_short' => \"Experience warfare throughout the ages\", 'description_long' => \"Experience warfare throughout the ages\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/darkest-of-days-pre-owned-xbox-360/1478246.p?id=1218262461934&skuId=1478246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478246_sa.jpg\"}', 'upc' => '799007789024', 'provider' => 'bestbuy'],\n ['name' => \"50 Cent: Blood on the Sand - PRE-OWNED - PlayStation 3\", 'description_short' => \"Experience the action and excitement of life as 50 Cent\", 'description_long' => \"Experience the action and excitement of life as 50 Cent\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/50-cent-blood-on-the-sand-pre-owned-playstation-3/1478264.p?id=1218262476704&skuId=1478264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478264_sa.jpg\"}', 'upc' => '799007789048', 'provider' => 'bestbuy'],\n ['name' => \"Karaoke Revolution Presents: American Idol Encore 2 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Are you ready to become the next American Idol?\", 'description_long' => \"Are you ready to become the next American Idol?\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/karaoke-revolution-presents-american-idol-encore-2-pre-owned-nintendo-wii/1478273.p?id=1218262487207&skuId=1478273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478273_sa.jpg\"}', 'upc' => '799007789055', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band Track Pack Volume 2 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Extend the rocking fun\", 'description_long' => \"Extend the rocking fun\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-track-pack-volume-2-pre-owned-nintendo-wii/1478307.p?id=1218262468664&skuId=1478307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478307_sa.jpg\"}', 'upc' => '799007789086', 'provider' => 'bestbuy'],\n ['name' => \"The Princess and the Frog - PRE-OWNED - Nintendo DS\", 'description_short' => \"Relive the magic of the animated film\", 'description_long' => \"Relive the magic of the animated film\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-princess-and-the-frog-pre-owned-nintendo-ds/1478316.p?id=1218262480146&skuId=1478316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478316_sa.jpg\"}', 'upc' => '799007789093', 'provider' => 'bestbuy'],\n ['name' => \"Rhythm Heaven - PRE-OWNED - Nintendo DS\", 'description_short' => \"Prove that you&#039;ve got the beat\", 'description_long' => \"Prove that you&#039;ve got the beat\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rhythm-heaven-pre-owned-nintendo-ds/1478334.p?id=1218262483863&skuId=1478334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478334_sa.jpg\"}', 'upc' => '799007789116', 'provider' => 'bestbuy'],\n ['name' => \"Petz Catz Clan - PRE-OWNED - Nintendo DS\", 'description_short' => \"Raise generations of kitties to love\", 'description_long' => \"Raise generations of kitties to love\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-catz-clan-pre-owned-nintendo-ds/1478343.p?id=1218262467301&skuId=1478343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478343_sa.jpg\"}', 'upc' => '799007789123', 'provider' => 'bestbuy'],\n ['name' => \"Phineas and Ferb - PRE-OWNED - Nintendo DS\", 'description_short' => \"Prepare for a summer of crazy inventions and totally wild rides\", 'description_long' => \"Prepare for a summer of crazy inventions and totally wild rides\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/phineas-and-ferb-pre-owned-nintendo-ds/1478352.p?id=1218262474262&skuId=1478352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478352_sa.jpg\"}', 'upc' => '799007789130', 'provider' => 'bestbuy'],\n ['name' => \"Bolt — PRE-OWNED - Nintendo DS\", 'description_short' => \"Walk in the paws of a powerful canine superhero\", 'description_long' => \"Walk in the paws of a powerful canine superhero\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bolt-pre-owned-nintendo-ds/1478361.p?id=1218262495518&skuId=1478361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478361.jpg\"}', 'upc' => '799007789147', 'provider' => 'bestbuy'],\n ['name' => \"Dragonball: Evolution - PRE-OWNED - PSP\", 'description_short' => \"Fight your way through the world of the feature film\", 'description_long' => \"Fight your way through the world of the feature film\", 'price' => 0.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragonball-evolution-pre-owned-psp/1478398.p?id=1218262461686&skuId=1478398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478398_sa.jpg\"}', 'upc' => '799007789161', 'provider' => 'bestbuy'],\n ['name' => \"Monster Mayhem: Build and Battle - PRE-OWNED - Nintendo DS\", 'description_short' => \"Design a monster to protect your hometown\", 'description_long' => \"Design a monster to protect your hometown\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monster-mayhem-build-and-battle-pre-owned-nintendo-ds/1478625.p?id=1218262487330&skuId=1478625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478625_sa.jpg\"}', 'upc' => '799007789208', 'provider' => 'bestbuy'],\n ['name' => \"Left Brain Right Brain 2 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Work your brain&#039;s left and right hemispheres\", 'description_long' => \"Work your brain&#039;s left and right hemispheres\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/left-brain-right-brain-2-pre-owned-nintendo-ds/1478634.p?id=1218262461933&skuId=1478634&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478634', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478634_sa.jpg\"}', 'upc' => '799007789215', 'provider' => 'bestbuy'],\n ['name' => \"Demon's Souls - PRE-OWNED - PlayStation 3\", 'description_short' => \"In this world, death is hardly the final act\", 'description_long' => \"In this world, death is hardly the final act\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/demons-souls-pre-owned-playstation-3/1478643.p?id=1218262468541&skuId=1478643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478643_sa.jpg\"}', 'upc' => '799007763048', 'provider' => 'bestbuy'],\n ['name' => \"NBA 09 The Inside - PRE-OWNED - PlayStation 3\", 'description_short' => \"Control your own path to NBA greatness\", 'description_long' => \"Control your own path to NBA greatness\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nba-09-the-inside-pre-owned-playstation-3/1478689.p?id=1218262480023&skuId=1478689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478689_sa.jpg\"}', 'upc' => '799007763079', 'provider' => 'bestbuy'],\n ['name' => \"Ford Racing Off Road - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Leave the road &#8212; and your competitors &#8212; in the dust\", 'description_long' => \"Leave the road &#8212; and your competitors &#8212; in the dust\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ford-racing-off-road-pre-owned-nintendo-wii/1478698.p?id=1218262477451&skuId=1478698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478698_sa.jpg\"}', 'upc' => '799007763086', 'provider' => 'bestbuy'],\n ['name' => \"Rockin' Pretty — PRE-OWNED - Nintendo DS\", 'description_short' => \"Rock out and look good doing it\", 'description_long' => \"Rock out and look good doing it\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-pretty-pre-owned-nintendo-ds/1478707.p?id=1218262489692&skuId=1478707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478707.jpg\"}', 'upc' => '799007763093', 'provider' => 'bestbuy'],\n ['name' => \"Bass Pro Shops: The Strike - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Cast your line for intensely realistic fishing fun\", 'description_long' => \"Cast your line for intensely realistic fishing fun\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bass-pro-shops-the-strike-pre-owned-nintendo-wii/1478716.p?id=1218262489839&skuId=1478716&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478716', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478716_sa.jpg\"}', 'upc' => '799007763109', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Ballet Star - PRE-OWNED - Nintendo DS\", 'description_short' => \"Become the ballerina you&#039;ve dreamed of being\", 'description_long' => \"Become the ballerina you&#039;ve dreamed of being\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-ballet-star-pre-owned-nintendo-ds/1478725.p?id=1218262473694&skuId=1478725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478725_sa.jpg\"}', 'upc' => '799007763116', 'provider' => 'bestbuy'],\n ['name' => \"Cabela's Big Game Hunter 2010 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Travel the world in pursuit of amazing big game trophy animals\", 'description_long' => \"Travel the world in pursuit of amazing big game trophy animals\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cabelas-big-game-hunter-2010-pre-owned-playstation-3/1478752.p?id=1218262495022&skuId=1478752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478752_sa.jpg\"}', 'upc' => '799007763147', 'provider' => 'bestbuy'],\n ['name' => \"Desktop Tower Defense - PRE-OWNED - Nintendo DS\", 'description_short' => \"Prepare to get the creeps\", 'description_long' => \"Prepare to get the creeps\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/desktop-tower-defense-pre-owned-nintendo-ds/1478798.p?id=1218262475811&skuId=1478798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478798_sa.jpg\"}', 'upc' => '799007763178', 'provider' => 'bestbuy'],\n ['name' => \"Last Splash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-splash-cd/1478813.p?id=75806&skuId=1478813&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478813', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478813_sa.jpg\"}', 'upc' => '075596150828', 'provider' => 'bestbuy'],\n ['name' => \"MotorStorm Pacific Rift - PRE-OWNED - PlayStation 3\", 'description_short' => \"Everything&#039;s an obstacle on this course\", 'description_long' => \"Everything&#039;s an obstacle on this course\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/motorstorm-pacific-rift-pre-owned-playstation-3/1478816.p?id=1218262489719&skuId=1478816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478816_sa.jpg\"}', 'upc' => '799007763192', 'provider' => 'bestbuy'],\n ['name' => \"Wizards of Waverly Place - PRE-OWNED - Nintendo DS\", 'description_short' => \"Set off on a magical adventure\", 'description_long' => \"Set off on a magical adventure\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wizards-of-waverly-place-pre-owned-nintendo-ds/1478898.p?id=1218262473197&skuId=1478898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478898_sa.jpg\"}', 'upc' => '799007763260', 'provider' => 'bestbuy'],\n ['name' => \"God of War III - PRE-OWNED - PlayStation 3\", 'description_short' => \"Exact your revenge on the Gods of Olympus\", 'description_long' => \"Exact your revenge on the Gods of Olympus\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/god-of-war-iii-pre-owned-playstation-3/1478916.p?id=1218262465253&skuId=1478916&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478916', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478916_sa.jpg\"}', 'upc' => '799007763284', 'provider' => 'bestbuy'],\n ['name' => \"Spider-Man: Web of Shadows - PRE-OWNED - PlayStation 3\", 'description_short' => \"Which path will you choose as you repel an alien invasion?\", 'description_long' => \"Which path will you choose as you repel an alien invasion?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spider-man-web-of-shadows-pre-owned-playstation-3/1478943.p?id=1218262471568&skuId=1478943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478943_sa.jpg\"}', 'upc' => '799007763314', 'provider' => 'bestbuy'],\n ['name' => \"The Mummy: Tomb of the Dragon Emperor - PRE-OWNED - Nintendo DS\", 'description_short' => \"Defeat a powerful shape-shifting mummy bent on world domination\", 'description_long' => \"Defeat a powerful shape-shifting mummy bent on world domination\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mummy-tomb-of-the-dragon-emperor-pre-owned-nintendo-ds/1478989.p?id=1218262482078&skuId=1478989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478989_sa.jpg\"}', 'upc' => '799007763345', 'provider' => 'bestbuy'],\n ['name' => \"My Boyfriend - PRE-OWNED - Nintendo DS\", 'description_short' => \"There are plenty of fish in the sea\", 'description_long' => \"There are plenty of fish in the sea\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-boyfriend-pre-owned-nintendo-ds/1478998.p?id=1218262477202&skuId=1478998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1478998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1478\\/1478998_sa.jpg\"}', 'upc' => '799007763352', 'provider' => 'bestbuy'],\n ['name' => \"Heroes Over Europe - PRE-OWNED - Xbox 360\", 'description_short' => \"Turn the tide of war in the skies over Europe\", 'description_long' => \"Turn the tide of war in the skies over Europe\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heroes-over-europe-pre-owned-xbox-360/1479005.p?id=1218262494774&skuId=1479005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479005_sa.jpg\"}', 'upc' => '799007763369', 'provider' => 'bestbuy'],\n ['name' => \"Mortal Kombat vs. DC Universe - PRE-OWNED - PlayStation 3\", 'description_short' => \"Who will triumph in an epic showdown between two powerful universes?\", 'description_long' => \"Who will triumph in an epic showdown between two powerful universes?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mortal-kombat-vs-dc-universe-pre-owned-playstation-3/1479014.p?id=1218262485966&skuId=1479014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479014_sa.jpg\"}', 'upc' => '799007763376', 'provider' => 'bestbuy'],\n ['name' => \"Rogue Warrior - PRE-OWNED - PlayStation 3\", 'description_short' => \"Become the legendary Dick Marcinko and thwart a Communist plot\", 'description_long' => \"Become the legendary Dick Marcinko and thwart a Communist plot\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rogue-warrior-pre-owned-playstation-3/1479023.p?id=1218262495146&skuId=1479023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479023_sa.jpg\"}', 'upc' => '799007763383', 'provider' => 'bestbuy'],\n ['name' => \"Need for Speed: Undercover - PRE-OWNED - Xbox 360\", 'description_short' => \"Go after the truth, no matter who you have to evade in the process\", 'description_long' => \"Go after the truth, no matter who you have to evade in the process\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/need-for-speed-undercover-pre-owned-xbox-360/1479041.p?id=1218262489097&skuId=1479041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479041_sa.jpg\"}', 'upc' => '799007763406', 'provider' => 'bestbuy'],\n ['name' => \"Dynasty Warriors: Gundam 2 - PRE-OWNED - Xbox 360\", 'description_short' => \"Battle against gigantic enemies and devastating mobile suits\", 'description_long' => \"Battle against gigantic enemies and devastating mobile suits\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynasty-warriors-gundam-2-pre-owned-xbox-360/1479078.p?id=1218262464606&skuId=1479078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479078_sa.jpg\"}', 'upc' => '799007763420', 'provider' => 'bestbuy'],\n ['name' => \"Debut Rarities, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/debut-rarities-vol-3-cd/1479091.p?id=69158&skuId=1479091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479091_sa.jpg\"}', 'upc' => '025218182126', 'provider' => 'bestbuy'],\n ['name' => \"Bring Back The Beatles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bring-back-the-beatles-cd/1479126.p?id=1416319&skuId=1479126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479126.jpg\"}', 'upc' => '095451600121', 'provider' => 'bestbuy'],\n ['name' => \"Velvet Assassin - PRE-OWNED - Xbox 360\", 'description_short' => \"Enter the mind of a cunning WWII operative\", 'description_long' => \"Enter the mind of a cunning WWII operative\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/velvet-assassin-pre-owned-xbox-360/1479157.p?id=1218262481375&skuId=1479157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479157_sa.jpg\"}', 'upc' => '799007763499', 'provider' => 'bestbuy'],\n ['name' => \"Wordfish — PRE-OWNED - Nintendo DS\", 'description_short' => \"Explore a deeper vocabulary\", 'description_long' => \"Explore a deeper vocabulary\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wordfish-pre-owned-nintendo-ds/1479175.p?id=1218262485968&skuId=1479175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479175_500x500_sa.jpg\"}', 'upc' => '799007763512', 'provider' => 'bestbuy'],\n ['name' => \"Brave: A Warrior's Tale - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Experience the world of a courageous Native American warrior\", 'description_long' => \"Experience the world of a courageous Native American warrior\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brave-a-warriors-tale-pre-owned-nintendo-wii/1479184.p?id=1218262489343&skuId=1479184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479184_sa.jpg\"}', 'upc' => '799007763529', 'provider' => 'bestbuy'],\n ['name' => \"Are You Smarter Than a 5th Grader?: Make the Grade - PRE-OWNED - Nintendo Wii\", 'description_short' => \"You knew the answers when you were a kid, but how well do you know them now?\", 'description_long' => \"You knew the answers when you were a kid, but how well do you know them now?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/are-you-smarter-than-a-5th-grader-make-the-grade-pre-owned-nintendo-wii/1479209.p?id=1218262484088&skuId=1479209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479209_sa.jpg\"}', 'upc' => '799007763543', 'provider' => 'bestbuy'],\n ['name' => \"Dark Void - PRE-OWNED - PlayStation 3\", 'description_short' => \"The fate of the entire planet is on the line\", 'description_long' => \"The fate of the entire planet is on the line\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dark-void-pre-owned-playstation-3/1479245.p?id=1218262483273&skuId=1479245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479245_sa.jpg\"}', 'upc' => '799007763581', 'provider' => 'bestbuy'],\n ['name' => \"Amazing Adventures: The Forgotten Ruins - PRE-OWNED - Nintendo DS\", 'description_short' => \"Strike out in search of a lost Mayan treasure\", 'description_long' => \"Strike out in search of a lost Mayan treasure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amazing-adventures-the-forgotten-ruins-pre-owned-nintendo-ds/1479281.p?id=1218262464143&skuId=1479281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479281_sa.jpg\"}', 'upc' => '799007763628', 'provider' => 'bestbuy'],\n ['name' => \"Homicidal Dolls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/homicidal-dolls-cd/1479313.p?id=73228&skuId=1479313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479313_sa.jpg\"}', 'upc' => '093624537120', 'provider' => 'bestbuy'],\n ['name' => \"Cate West: The Vanishing Files - PRE-OWNED - Nintendo DS\", 'description_short' => \"Confront seemingly unsolvable crimes\", 'description_long' => \"Confront seemingly unsolvable crimes\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cate-west-the-vanishing-files-pre-owned-nintendo-ds/1479324.p?id=1218262476705&skuId=1479324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479324_sa.jpg\"}', 'upc' => '799007763659', 'provider' => 'bestbuy'],\n ['name' => \"Drake & Josh: Talent Showdown - PRE-OWNED - Nintendo DS\", 'description_short' => \"Stop a band of bullies from sabotaging the talent competition\", 'description_long' => \"Stop a band of bullies from sabotaging the talent competition\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drake-josh-talent-showdown-pre-owned-nintendo-ds/1479333.p?id=1218262464854&skuId=1479333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479333_sa.jpg\"}', 'upc' => '799007763666', 'provider' => 'bestbuy'],\n ['name' => \"Bejeweled Twist - PRE-OWNED - Nintendo DS\", 'description_short' => \"Prepare to be dazzled\", 'description_long' => \"Prepare to be dazzled\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bejeweled-twist-pre-owned-nintendo-ds/1479351.p?id=1218262486834&skuId=1479351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479351_sa.jpg\"}', 'upc' => '799007763680', 'provider' => 'bestbuy'],\n ['name' => \"Wii Sports Resort - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Engage in a sports showdown on a tropical island\", 'description_long' => \"Engage in a sports showdown on a tropical island\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wii-sports-resort-pre-owned-nintendo-wii/1479379.p?id=1218262473880&skuId=1479379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479379_sa.jpg\"}', 'upc' => '799007763697', 'provider' => 'bestbuy'],\n ['name' => \"G.I. Joe: The Rise of Cobra - PRE-OWNED - Xbox 360\", 'description_short' => \"Experience the power of an American hero\", 'description_long' => \"Experience the power of an American hero\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g-i-joe-the-rise-of-cobra-pre-owned-xbox-360/1479388.p?id=1218262463980&skuId=1479388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479388_sa.jpg\"}', 'upc' => '799007763703', 'provider' => 'bestbuy'],\n ['name' => \"Tribute to Wes Montgomery - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribute-to-wes-montgomery-cd/1479402.p?id=70160&skuId=1479402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479402_sa.jpg\"}', 'upc' => '730182204926', 'provider' => 'bestbuy'],\n ['name' => \"Between the Sheets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/between-the-sheets-cd/1479411.p?id=66422&skuId=1479411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479411_sa.jpg\"}', 'upc' => '093624534020', 'provider' => 'bestbuy'],\n ['name' => \"Project G-7: A Tribute to Wes Montgomery, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/project-g-7-a-tribute-to-wes-montgomery-vol-2-cd/1479420.p?id=70161&skuId=1479420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479420_sa.jpg\"}', 'upc' => '730182205121', 'provider' => 'bestbuy'],\n ['name' => \"Good Fellas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-fellas-cd/1479439.p?id=66752&skuId=1479439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479439_sa.jpg\"}', 'upc' => '730182205022', 'provider' => 'bestbuy'],\n ['name' => \"I Get a Kick Out of You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-get-a-kick-out-of-you-cd/1479457.p?id=69665&skuId=1479457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479457_sa.jpg\"}', 'upc' => '730182205428', 'provider' => 'bestbuy'],\n ['name' => \"Wind in the Wire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wind-in-the-wire-cd/1479475.p?id=1982982&skuId=1479475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479475.jpg\"}', 'upc' => '093624531920', 'provider' => 'bestbuy'],\n ['name' => \"Uhh!! Ohh!! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uhh-ohh-cd/1479536.p?id=99884&skuId=1479536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479536_sa.jpg\"}', 'upc' => '054291883323', 'provider' => 'bestbuy'],\n ['name' => \"20 Golden Pieces of Dizzy Gillespie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-golden-pieces-of-dizzy-gillespie-cd/1479590.p?id=440784&skuId=1479590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479590.jpg\"}', 'upc' => '015668200624', 'provider' => 'bestbuy'],\n ['name' => \"Naruto Ultimate Ninja Storm - PRE-OWNED - PlayStation 3\", 'description_short' => \"Experience awesome ninja power with stunning visuals\", 'description_long' => \"Experience awesome ninja power with stunning visuals\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naruto-ultimate-ninja-storm-pre-owned-playstation-3/1479606.p?id=1218262485276&skuId=1479606&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479606', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479606_sa.jpg\"}', 'upc' => '799007786184', 'provider' => 'bestbuy'],\n ['name' => \"IL-2 Sturmovik: Birds of Prey - PRE-OWNED - PlayStation 3\", 'description_short' => \"Take to the skies for World War II aerial combat\", 'description_long' => \"Take to the skies for World War II aerial combat\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/il-2-sturmovik-birds-of-prey-pre-owned-playstation-3/1479633.p?id=1218262495147&skuId=1479633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479633_sa.jpg\"}', 'upc' => '799007786207', 'provider' => 'bestbuy'],\n ['name' => \"Six Flags Fun Park - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Show off your carnival-style skills\", 'description_long' => \"Show off your carnival-style skills\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/six-flags-fun-park-pre-owned-nintendo-wii/1479642.p?id=1218262494775&skuId=1479642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479642_sa.jpg\"}', 'upc' => '799007786214', 'provider' => 'bestbuy'],\n ['name' => \"The Last Remnant - PRE-OWNED - Xbox 360\", 'description_short' => \"Orchestrate large battles in your struggle to survive\", 'description_long' => \"Orchestrate large battles in your struggle to survive\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-remnant-pre-owned-xbox-360/1479697.p?id=1218262464852&skuId=1479697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479697_sa.jpg\"}', 'upc' => '799007786252', 'provider' => 'bestbuy'],\n ['name' => \"Red Steel 2 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Take on enemies as a mysterious loner armed with only a sword and a gun\", 'description_long' => \"Take on enemies as a mysterious loner armed with only a sword and a gun\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-steel-2-pre-owned-nintendo-wii/1479715.p?id=1218262490531&skuId=1479715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479715_sa.jpg\"}', 'upc' => '799007786276', 'provider' => 'bestbuy'],\n ['name' => \"LEGO Batman: The Videogame - PRE-OWNED - PlayStation 3\", 'description_short' => \"All the excitement of Batman, combined with the quirky fun of LEGO\", 'description_long' => \"All the excitement of Batman, combined with the quirky fun of LEGO\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lego-batman-the-videogame-pre-owned-playstation-3/1479788.p?id=1218262483644&skuId=1479788&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479788', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479788_sa.jpg\"}', 'upc' => '799007786337', 'provider' => 'bestbuy'],\n ['name' => \"My Secret World by Imagine - PRE-OWNED - Nintendo DS\", 'description_short' => \"Open up a whole new world of personalized, interactive fun\", 'description_long' => \"Open up a whole new world of personalized, interactive fun\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-secret-world-by-imagine-pre-owned-nintendo-ds/1479806.p?id=1218262492967&skuId=1479806&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479806_sa.jpg\"}', 'upc' => '799007786351', 'provider' => 'bestbuy'],\n ['name' => \"BattleStations: Pacific - PRE-OWNED - Xbox 360\", 'description_short' => \"Experience the Pacific campaign from two sides\", 'description_long' => \"Experience the Pacific campaign from two sides\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battlestations-pacific-pre-owned-xbox-360/1479833.p?id=1218262477698&skuId=1479833&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479833', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479833_sa.jpg\"}', 'upc' => '799007786382', 'provider' => 'bestbuy'],\n ['name' => \"The Hardy Boys: Treasure on the Tracks — PRE-OWNED - Nintendo DS\", 'description_short' => \"Ride a royal train and solve a timeless mystery\", 'description_long' => \"Ride a royal train and solve a timeless mystery\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hardy-boys-treasure-on-the-tracks-pre-owned-nintendo-ds/1479842.p?id=1218262490656&skuId=1479842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479842.jpg\"}', 'upc' => '799007786399', 'provider' => 'bestbuy'],\n ['name' => \"Bratz: 4 Real - PRE-OWNED - Nintendo DS\", 'description_short' => \"High school never looked so good\", 'description_long' => \"High school never looked so good\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bratz-4-real-pre-owned-nintendo-ds/1479897.p?id=1218262462587&skuId=1479897&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479897', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479897_sa.jpg\"}', 'upc' => '799007786429', 'provider' => 'bestbuy'],\n ['name' => \"Speed Racer: The Video Game - PRE-OWNED - Nintendo Wii\", 'description_short' => \"The star of the movie is racing your way\", 'description_long' => \"The star of the movie is racing your way\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speed-racer-the-video-game-pre-owned-nintendo-wii/1479915.p?id=1218262461685&skuId=1479915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479915_sa.jpg\"}', 'upc' => '799007786443', 'provider' => 'bestbuy'],\n ['name' => \"Alien Syndrome - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Only you can stop the alien hordes\", 'description_long' => \"Only you can stop the alien hordes\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alien-syndrome-pre-owned-nintendo-wii/1479924.p?id=1218262478947&skuId=1479924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479924_sa.jpg\"}', 'upc' => '799007786450', 'provider' => 'bestbuy'],\n ['name' => \"MySims - PRE-OWNED - Nintendo Wii\", 'description_short' => \"This world is yours for the creating\", 'description_long' => \"This world is yours for the creating\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mysims-pre-owned-nintendo-wii/1479951.p?id=1218262469542&skuId=1479951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479951_sa.jpg\"}', 'upc' => '799007786481', 'provider' => 'bestbuy'],\n ['name' => \"Burnout Paradise - PRE-OWNED - Xbox 360\", 'description_short' => \"Show your stuff down every street in Paradise City\", 'description_long' => \"Show your stuff down every street in Paradise City\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burnout-paradise-pre-owned-xbox-360/1479979.p?id=1218262471444&skuId=1479979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479979_sa.jpg\"}', 'upc' => '799007786498', 'provider' => 'bestbuy'],\n ['name' => \"Call of Duty 4: Modern Warfare - PRE-OWNED - Nintendo DS\", 'description_short' => \"Heed your country&#039;s call\", 'description_long' => \"Heed your country&#039;s call\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/call-of-duty-4-modern-warfare-pre-owned-nintendo-ds/1479997.p?id=1218262471688&skuId=1479997&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1479997', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1479\\/1479997_sa.jpg\"}', 'upc' => '799007786511', 'provider' => 'bestbuy'],\n ['name' => \"Swann - Driveway Alert Alarm - White\", 'description_short' => \"PIR sensor; sound alarm; wireless; door, gate or driveway mountable; battery powered\", 'description_long' => \"PIR sensor; sound alarm; wireless; door, gate or driveway mountable; battery powered\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swann-driveway-alert-alarm-white/1480003.p?id=1219498403505&skuId=1480003', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480003_sa.jpg\"}', 'upc' => '815849011007', 'provider' => 'bestbuy'],\n ['name' => \"Cabela's Trophy Bucks - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Experience thrilling hunting action in environments across North America\", 'description_long' => \"Experience thrilling hunting action in environments across North America\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cabelas-trophy-bucks-pre-owned-nintendo-wii/1480013.p?id=1218262480766&skuId=1480013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480013_sa.jpg\"}', 'upc' => '799007786535', 'provider' => 'bestbuy'],\n ['name' => \"High School Musical: Makin' the Cut - PRE-OWNED - Nintendo DS\", 'description_short' => \"Create your own dance videos to songs from Disney&#039;s High School Musical\", 'description_long' => \"Create your own dance videos to songs from Disney&#039;s High School Musical\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-school-musical-makin-the-cut-pre-owned-nintendo-ds/1480022.p?id=1218262466681&skuId=1480022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480022_sa.jpg\"}', 'upc' => '799007786542', 'provider' => 'bestbuy'],\n ['name' => \"DQM Dragon Quest Monsters: Joker - PRE-OWNED - Nintendo DS\", 'description_short' => \"Brace yourself for another outstanding Dragon Quest adventure\", 'description_long' => \"Brace yourself for another outstanding Dragon Quest adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dqm-dragon-quest-monsters-joker-pre-owned-nintendo-ds/1480068.p?id=1218262475454&skuId=1480068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480068_sa.jpg\"}', 'upc' => '799007786573', 'provider' => 'bestbuy'],\n ['name' => \"Guitar Hero III: Legends of Rock - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Beat the best and become a legend yourself\", 'description_long' => \"Beat the best and become a legend yourself\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-hero-iii-legends-of-rock-pre-owned-nintendo-wii/1480095.p?id=1218262474137&skuId=1480095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480095_sa.jpg\"}', 'upc' => '799007786603', 'provider' => 'bestbuy'],\n ['name' => \"Hannah Montana: Music Jam - PRE-OWNED - Nintendo DS\", 'description_short' => \"Live your dream of pop stardom\", 'description_long' => \"Live your dream of pop stardom\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hannah-montana-music-jam-pre-owned-nintendo-ds/1480165.p?id=1218262477574&skuId=1480165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480165_sa.jpg\"}', 'upc' => '799007786665', 'provider' => 'bestbuy'],\n ['name' => \"Overlord - PRE-OWNED - Xbox 360\", 'description_short' => \"How bad can you really be?\", 'description_long' => \"How bad can you really be?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/overlord-pre-owned-xbox-360/1480299.p?id=1218262482202&skuId=1480299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480299_sa.jpg\"}', 'upc' => '799007781448', 'provider' => 'bestbuy'],\n ['name' => \"Karaoke Revolution Presents: American Idol Encore - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Get ready to give the performance of a lifetime\", 'description_long' => \"Get ready to give the performance of a lifetime\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/karaoke-revolution-presents-american-idol-encore-pre-owned-nintendo-wii/1480314.p?id=1218262491152&skuId=1480314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480314_sa.jpg\"}', 'upc' => '799007781462', 'provider' => 'bestbuy'],\n ['name' => \"The Simpsons Game - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Save the day in Springfield and beyond\", 'description_long' => \"Save the day in Springfield and beyond\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-simpsons-game-pre-owned-nintendo-wii/1480323.p?id=1218262478637&skuId=1480323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480323_sa.jpg\"}', 'upc' => '799007781479', 'provider' => 'bestbuy'],\n ['name' => \"The Simpsons Game - PRE-OWNED - Nintendo DS\", 'description_short' => \"Visit the funniest family in Springfield\", 'description_long' => \"Visit the funniest family in Springfield\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-simpsons-game-pre-owned-nintendo-ds/1480369.p?id=1218262479775&skuId=1480369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480369_sa.jpg\"}', 'upc' => '799007781509', 'provider' => 'bestbuy'],\n ['name' => \"Drawn to Life - PRE-OWNED - Nintendo DS\", 'description_short' => \"Draw your own game and play it\", 'description_long' => \"Draw your own game and play it\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drawn-to-life-pre-owned-nintendo-ds/1480378.p?id=1218262477575&skuId=1480378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480378_sa.jpg\"}', 'upc' => '799007781516', 'provider' => 'bestbuy'],\n ['name' => \"Iron Man - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Put on the armor of the one-and-only Iron Man\", 'description_long' => \"Put on the armor of the one-and-only Iron Man\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iron-man-pre-owned-nintendo-wii/1480387.p?id=1218262481954&skuId=1480387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480387_sa.jpg\"}', 'upc' => '799007781523', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Are you ready to rock?\", 'description_long' => \"Are you ready to rock?\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-pre-owned-nintendo-wii/1480396.p?id=1218262488600&skuId=1480396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480396_sa.jpg\"}', 'upc' => '799007781530', 'provider' => 'bestbuy'],\n ['name' => \"Juiced 2: Hot Import Nights - PRE-OWNED - PlayStation 3\", 'description_short' => \"Drift your way to victory lane\", 'description_long' => \"Drift your way to victory lane\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/juiced-2-hot-import-nights-pre-owned-playstation-3/1480401.p?id=1218262479899&skuId=1480401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480401_sa.jpg\"}', 'upc' => '799007781547', 'provider' => 'bestbuy'],\n ['name' => \"Imagine: Animal Doctor — PRE-OWNED - Nintendo DS\", 'description_short' => \"Be a vet in your own hospital and help sick animals\", 'description_long' => \"Be a vet in your own hospital and help sick animals\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-animal-doctor-pre-owned-nintendo-ds/1480429.p?id=1218262468293&skuId=1480429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480429.jpg\"}', 'upc' => '799007781554', 'provider' => 'bestbuy'],\n ['name' => \"Eternal Sonata - PRE-OWNED - Xbox 360\", 'description_short' => \"Let the music live on forever\", 'description_long' => \"Let the music live on forever\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eternal-sonata-pre-owned-xbox-360/1480438.p?id=1218262493216&skuId=1480438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480438_sa.jpg\"}', 'upc' => '799007781561', 'provider' => 'bestbuy'],\n ['name' => \"Lost: The Video Game: Via Domus - PRE-OWNED - Xbox 360\", 'description_short' => \"You&#039;ve seen the show on TV, now it&#039;s your turn to be Lost\", 'description_long' => \"You&#039;ve seen the show on TV, now it&#039;s your turn to be Lost\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-the-video-game-via-domus-pre-owned-xbox-360/1480447.p?id=1218262488476&skuId=1480447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480447_sa.jpg\"}', 'upc' => '799007781578', 'provider' => 'bestbuy'],\n ['name' => \"CSI: Crime Scene Investigation: Dark Motives - PRE-OWNED - Nintendo DS\", 'description_short' => \"The Las Vegas crew is on the case\", 'description_long' => \"The Las Vegas crew is on the case\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/csi-crime-scene-investigation-dark-motives-pre-owned-nintendo-ds/1480474.p?id=1218262473316&skuId=1480474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480474_sa.jpg\"}', 'upc' => '799007781608', 'provider' => 'bestbuy'],\n ['name' => \"Ben 10: Protector of Earth - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Wield the power of an extraterrestrial weapon\", 'description_long' => \"Wield the power of an extraterrestrial weapon\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ben-10-protector-of-earth-pre-owned-nintendo-wii/1480483.p?id=1218262492400&skuId=1480483&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480483', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480483_sa.jpg\"}', 'upc' => '799007781615', 'provider' => 'bestbuy'],\n ['name' => \"Are You Smarter Than a 5th Grader? - PRE-OWNED - Nintendo DS\", 'description_short' => \"Show off your intellectual prowess by conquering grade-school facts\", 'description_long' => \"Show off your intellectual prowess by conquering grade-school facts\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/are-you-smarter-than-a-5th-grader-pre-owned-nintendo-ds/1480508.p?id=1218262475330&skuId=1480508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480508_sa.jpg\"}', 'upc' => '799007781639', 'provider' => 'bestbuy'],\n ['name' => \"I SPY: Fun House - PRE-OWNED - Nintendo DS\", 'description_short' => \"Once you enter, there&#039;s no turning back\", 'description_long' => \"Once you enter, there&#039;s no turning back\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-spy-fun-house-pre-owned-nintendo-ds/1480517.p?id=1218262494651&skuId=1480517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480517_sa.jpg\"}', 'upc' => '799007781646', 'provider' => 'bestbuy'],\n ['name' => \"The Sims 2: Castaway - PRE-OWNED - Nintendo DS\", 'description_short' => \"No one&#039;s coming to the rescue &#8212; except you\", 'description_long' => \"No one&#039;s coming to the rescue &#8212; except you\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sims-2-castaway-pre-owned-nintendo-ds/1480526.p?id=1218262484904&skuId=1480526&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480526', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480526_sa.jpg\"}', 'upc' => '799007781653', 'provider' => 'bestbuy'],\n ['name' => \"Sid Meier's Civilization Revolution - PRE-OWNED - PlayStation 3\", 'description_short' => \"Build epic empires and worlds and test your strategy skills\", 'description_long' => \"Build epic empires and worlds and test your strategy skills\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sid-meiers-civilization-revolution-pre-owned-playstation-3/1480553.p?id=1218262495394&skuId=1480553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480553_sa.jpg\"}', 'upc' => '799007781684', 'provider' => 'bestbuy'],\n ['name' => \"Mario Kart Wii - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Race your way through a course full of obstacles\", 'description_long' => \"Race your way through a course full of obstacles\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mario-kart-wii-pre-owned-nintendo-wii/1480599.p?id=1218262494518&skuId=1480599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480599_sa.jpg\"}', 'upc' => '799007781714', 'provider' => 'bestbuy'],\n ['name' => \"CSI: Crime Scene Investigation: Hard Evidence - PRE-OWNED - Xbox 360\", 'description_short' => \"Seek justice for the victims of Las Vegas\", 'description_long' => \"Seek justice for the victims of Las Vegas\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/csi-crime-scene-investigation-hard-evidence-pre-owned-xbox-360/1480605.p?id=1218262465344&skuId=1480605&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480605', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480605_sa.jpg\"}', 'upc' => '799007781721', 'provider' => 'bestbuy'],\n ['name' => \"Karaoke Revolution Presents: American Idol Encore — PRE-OWNED - PlayStation 3\", 'description_short' => \"Get ready to give the performance of a lifetime\", 'description_long' => \"Get ready to give the performance of a lifetime\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/karaoke-revolution-presents-american-idol-encore-pre-owned-playstation-3/1480614.p?id=1218262489965&skuId=1480614&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480614', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480614_500x500_sa.jpg\"}', 'upc' => '799007781738', 'provider' => 'bestbuy'],\n ['name' => \"Assassin's Creed: Altair's Chronicles - PRE-OWNED - Nintendo DS\", 'description_short' => \"Put an end to the Crusades as the world&#039;s most feared warrior\", 'description_long' => \"Put an end to the Crusades as the world&#039;s most feared warrior\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/assassins-creed-altairs-chronicles-pre-owned-nintendo-ds/1480641.p?id=1218262464977&skuId=1480641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480641_sa.jpg\"}', 'upc' => '799007781769', 'provider' => 'bestbuy'],\n ['name' => \"Pokémon Pearl - PRE-OWNED - Nintendo DS\", 'description_short' => \"A pair of Pok&#233;mon need your help\", 'description_long' => \"A pair of Pok&#233;mon need your help\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pokemon-pearl-pre-owned-nintendo-ds/1480678.p?id=1218262466803&skuId=1480678&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480678', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480678_sc.jpg\"}', 'upc' => '799007781783', 'provider' => 'bestbuy'],\n ['name' => \"Rebel Raiders: Operation Nighthawk - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Take to the skies for incredible futuristic air combat\", 'description_long' => \"Take to the skies for incredible futuristic air combat\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rebel-raiders-operation-nighthawk-pre-owned-nintendo-wii/1480696.p?id=1218262473074&skuId=1480696&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480696_sa.jpg\"}', 'upc' => '799007781806', 'provider' => 'bestbuy'],\n ['name' => \"Devil May Cry 4 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Raise some serious trouble\", 'description_long' => \"Raise some serious trouble\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/devil-may-cry-4-pre-owned-playstation-3/1480714.p?id=1218262479144&skuId=1480714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480714_sa.jpg\"}', 'upc' => '799007781820', 'provider' => 'bestbuy'],\n ['name' => \"Pokémon Diamond - PRE-OWNED - Nintendo DS\", 'description_short' => \"Diamonds are a girl&#039;s (or boy&#039;s) best friend\", 'description_long' => \"Diamonds are a girl&#039;s (or boy&#039;s) best friend\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pokemon-diamond-pre-owned-nintendo-ds/1480741.p?id=1218262490780&skuId=1480741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480741_sc.jpg\"}', 'upc' => '799007781851', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Board Game Collection - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Game night just got more exciting\", 'description_long' => \"Game night just got more exciting\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-board-game-collection-pre-owned-nintendo-wii/1480787.p?id=1218262468045&skuId=1480787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480787.jpg\"}', 'upc' => '799007781882', 'provider' => 'bestbuy'],\n ['name' => \"Nicktoons: Attack of the Toybots - PRE-OWNED - Nintendo DS\", 'description_short' => \"Save the universe from terrifying toys\", 'description_long' => \"Save the universe from terrifying toys\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nicktoons-attack-of-the-toybots-pre-owned-nintendo-ds/1480805.p?id=1218262492029&skuId=1480805&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480805', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480805_sa.jpg\"}', 'upc' => '799007781905', 'provider' => 'bestbuy'],\n ['name' => \"Disney Friends - PRE-OWNED - Nintendo DS\", 'description_short' => \"Play with your favorite animated pals\", 'description_long' => \"Play with your favorite animated pals\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-friends-pre-owned-nintendo-ds/1480814.p?id=1218262481201&skuId=1480814&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480814', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480814_sa.jpg\"}', 'upc' => '799007781912', 'provider' => 'bestbuy'],\n ['name' => \"Spider-Man: Friend or Foe - PRE-OWNED - Nintendo DS\", 'description_short' => \"Get the bad guys on your good side\", 'description_long' => \"Get the bad guys on your good side\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spider-man-friend-or-foe-pre-owned-nintendo-ds/1480823.p?id=1218262467921&skuId=1480823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480823_sa.jpg\"}', 'upc' => '799007781929', 'provider' => 'bestbuy'],\n ['name' => \"Transformers: The Game - PRE-OWNED - Xbox 360\", 'description_short' => \"Will you fight to save the Earth or fight to destroy it?\", 'description_long' => \"Will you fight to save the Earth or fight to destroy it?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-the-game-pre-owned-xbox-360/1480832.p?id=1218262476580&skuId=1480832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480832_sa.jpg\"}', 'upc' => '799007763727', 'provider' => 'bestbuy'],\n ['name' => \"The Legend of Zelda: Phantom Hourglass - PRE-OWNED - Nintendo DS\", 'description_short' => \"For Link, time is growing short\", 'description_long' => \"For Link, time is growing short\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-legend-of-zelda-phantom-hourglass-pre-owned-nintendo-ds/1480878.p?id=1218262468169&skuId=1480878&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480878', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480878_sa.jpg\"}', 'upc' => '799007763758', 'provider' => 'bestbuy'],\n ['name' => \"Deadliest Catch: Alaskan Storm - PRE-OWNED - Xbox 360\", 'description_short' => \"Experience crab fishing in the Bering Sea\", 'description_long' => \"Experience crab fishing in the Bering Sea\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deadliest-catch-alaskan-storm-pre-owned-xbox-360/1480905.p?id=1218262463618&skuId=1480905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480905_sa.jpg\"}', 'upc' => '799007763789', 'provider' => 'bestbuy'],\n ['name' => \"Top Spin 3 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Experience tennis action so real you&#039;ll swear you&#039;re on the court\", 'description_long' => \"Experience tennis action so real you&#039;ll swear you&#039;re on the court\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/top-spin-3-pre-owned-playstation-3/1480914.p?id=1218262470689&skuId=1480914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480914_sa.jpg\"}', 'upc' => '799007763796', 'provider' => 'bestbuy'],\n ['name' => \"The Incredible Hulk - PRE-OWNED - Xbox 360\", 'description_short' => \"Smash your way through New York City with the power and rage of the Hulk\", 'description_long' => \"Smash your way through New York City with the power and rage of the Hulk\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-incredible-hulk-pre-owned-xbox-360/1480978.p?id=1218262481583&skuId=1480978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480978_sa.jpg\"}', 'upc' => '799007763840', 'provider' => 'bestbuy'],\n ['name' => \"Go, Diego, Go: Safari Rescue - PRE-OWNED - Nintendo DS\", 'description_short' => \"When the animals get mixed up, it&#039;s Diego to the rescue\", 'description_long' => \"When the animals get mixed up, it&#039;s Diego to the rescue\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-diego-go-safari-rescue-pre-owned-nintendo-ds/1480987.p?id=1218262495580&skuId=1480987&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480987', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480987_sa.jpg\"}', 'upc' => '799007763857', 'provider' => 'bestbuy'],\n ['name' => \"Spider-Man: Friend or Foe - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Get the bad guys on your good side\", 'description_long' => \"Get the bad guys on your good side\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spider-man-friend-or-foe-pre-owned-nintendo-wii/1480996.p?id=1218262475898&skuId=1480996&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1480996', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1480\\/1480996_sa.jpg\"}', 'upc' => '799007763864', 'provider' => 'bestbuy'],\n ['name' => \"Monster Trux Arenas: Special Edition - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Playing nice will put you in a losing position\", 'description_long' => \"Playing nice will put you in a losing position\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monster-trux-arenas-special-edition-pre-owned-nintendo-wii/1481021.p?id=1218262472499&skuId=1481021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481021_sa.jpg\"}', 'upc' => '799007763895', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band Track Pack Volume 1 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Rock out to an all-new collection of classic hits\", 'description_long' => \"Rock out to an all-new collection of classic hits\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-track-pack-volume-1-pre-owned-nintendo-wii/1481049.p?id=1218262483148&skuId=1481049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481049_sa.jpg\"}', 'upc' => '799007763901', 'provider' => 'bestbuy'],\n ['name' => \"BLADESTORM: The Hundred Years' War - PRE-OWNED - Xbox 360\", 'description_short' => \"Become a part of European history\", 'description_long' => \"Become a part of European history\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bladestorm-the-hundred-years-war-pre-owned-xbox-360/1481067.p?id=1218262483272&skuId=1481067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481067_sa.jpg\"}', 'upc' => '799007763925', 'provider' => 'bestbuy'],\n ['name' => \"Juiced 2: Hot Import Nights - PRE-OWNED - Xbox 360\", 'description_short' => \"Drift your way to victory lane\", 'description_long' => \"Drift your way to victory lane\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/juiced-2-hot-import-nights-pre-owned-xbox-360/1481076.p?id=1218262464094&skuId=1481076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481076_sa.jpg\"}', 'upc' => '799007763932', 'provider' => 'bestbuy'],\n ['name' => \"Ratatouille - PRE-OWNED - Xbox 360\", 'description_short' => \"Remy the rat whips up a tasty adventure\", 'description_long' => \"Remy the rat whips up a tasty adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ratatouille-pre-owned-xbox-360/1481094.p?id=1218262487093&skuId=1481094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481094_sa.jpg\"}', 'upc' => '799007763956', 'provider' => 'bestbuy'],\n ['name' => \"Naruto: Rise of a Ninja - PRE-OWNED - Xbox 360\", 'description_short' => \"See where the ninja adventure began\", 'description_long' => \"See where the ninja adventure began\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naruto-rise-of-a-ninja-pre-owned-xbox-360/1481146.p?id=1218262485718&skuId=1481146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481146_sa.jpg\"}', 'upc' => '799007763994', 'provider' => 'bestbuy'],\n ['name' => \"MX vs. ATV Untamed - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Welcome to the world of the unpaved\", 'description_long' => \"Welcome to the world of the unpaved\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mx-vs-atv-untamed-pre-owned-nintendo-wii/1481155.p?id=1218262483645&skuId=1481155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481155_sa.jpg\"}', 'upc' => '799007764007', 'provider' => 'bestbuy'],\n ['name' => \"Sim City DS - PRE-OWNED - Nintendo DS\", 'description_short' => \"Break ground on your own city today\", 'description_long' => \"Break ground on your own city today\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sim-city-ds-pre-owned-nintendo-ds/1481182.p?id=1218262476581&skuId=1481182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481182_sa.jpg\"}', 'upc' => '799007764038', 'provider' => 'bestbuy'],\n ['name' => \"Build-A-Bear Workshop - PRE-OWNED - Nintendo DS\", 'description_short' => \"Create, customize and share a new fuzzy, cuddly friend\", 'description_long' => \"Create, customize and share a new fuzzy, cuddly friend\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/build-a-bear-workshop-pre-owned-nintendo-ds/1481191.p?id=1218262489469&skuId=1481191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481191_sa.jpg\"}', 'upc' => '799007764045', 'provider' => 'bestbuy'],\n ['name' => \"High School Musical 2: Work This Out - PRE-OWNED - Nintendo DS\", 'description_short' => \"Find out who&#039;s the most talented teen\", 'description_long' => \"Find out who&#039;s the most talented teen\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-school-musical-2-work-this-out-pre-owned-nintendo-ds/1481207.p?id=1218262467797&skuId=1481207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481207_sa.jpg\"}', 'upc' => '799007764052', 'provider' => 'bestbuy'],\n ['name' => \"Medal of Honor: Airborne - PRE-OWNED - PlayStation 3\", 'description_short' => \"Become a private in the Airborne Division and engage in battles throughout Europe\", 'description_long' => \"Become a private in the Airborne Division and engage in battles throughout Europe\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/medal-of-honor-airborne-pre-owned-playstation-3/1481216.p?id=1218262485027&skuId=1481216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481216_sa.jpg\"}', 'upc' => '799007764069', 'provider' => 'bestbuy'],\n ['name' => \"Barbie as the Island Princess ? PRE-OWNED - Nintendo DS\", 'description_short' => \"Join Barbie for a one-of-a-kind island adventure\", 'description_long' => \"Join Barbie for a one-of-a-kind island adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barbie-as-the-island-princess--pre-owned-nintendo-ds/1481243.p?id=1218262486154&skuId=1481243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481243_sa.jpg\"}', 'upc' => '799007764090', 'provider' => 'bestbuy'],\n ['name' => \"Bleach: Shattered Blade - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Launch into the action of the hit television show\", 'description_long' => \"Launch into the action of the hit television show\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bleach-shattered-blade-pre-owned-nintendo-wii/1481252.p?id=1218262485595&skuId=1481252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481252_sa.jpg\"}', 'upc' => '799007764106', 'provider' => 'bestbuy'],\n ['name' => \"GRID - PRE-OWNED - Xbox 360\", 'description_short' => \"Speed across the world in global racing excitement\", 'description_long' => \"Speed across the world in global racing excitement\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grid-pre-owned-xbox-360/1481261.p?id=1218262494207&skuId=1481261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481261_sa.jpg\"}', 'upc' => '799007764113', 'provider' => 'bestbuy'],\n ['name' => \"Tony Hawk's Proving Ground — PRE-OWNED - Nintendo Wii\", 'description_short' => \"When it comes to your reputation, talk is cheap\", 'description_long' => \"When it comes to your reputation, talk is cheap\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tony-hawks-proving-ground-pre-owned-nintendo-wii/1481322.p?id=1218262465129&skuId=1481322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481322.jpg\"}', 'upc' => '799007764168', 'provider' => 'bestbuy'],\n ['name' => \"Dynasty Warriors 6 - PRE-OWNED - Xbox 360\", 'description_short' => \"The battle for control rages on\", 'description_long' => \"The battle for control rages on\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynasty-warriors-6-pre-owned-xbox-360/1481368.p?id=1218262462098&skuId=1481368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481368_sa.jpg\"}', 'upc' => '799007764199', 'provider' => 'bestbuy'],\n ['name' => \"Sonic Rush Adventure - PRE-OWNED - Nintendo DS\", 'description_short' => \"Engage in an oceanic adventure as Sonic battles nefarious pirates\", 'description_long' => \"Engage in an oceanic adventure as Sonic battles nefarious pirates\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonic-rush-adventure-pre-owned-nintendo-ds/1481395.p?id=1218262472950&skuId=1481395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481395_sa.jpg\"}', 'upc' => '799007764229', 'provider' => 'bestbuy'],\n ['name' => \"BLADESTORM: The Hundred Years' War - PRE-OWNED - PlayStation 3\", 'description_short' => \"Become a part of European history\", 'description_long' => \"Become a part of European history\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bladestorm-the-hundred-years-war-pre-owned-playstation-3/1481437.p?id=1218262492524&skuId=1481437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481437_sa.jpg\"}', 'upc' => '799007764250', 'provider' => 'bestbuy'],\n ['name' => \"El Tigre: The Adventures of Manny Rivera - PRE-OWNED - Nintendo DS\", 'description_short' => \"There&#039;s mucho trouble in Miracle City\", 'description_long' => \"There&#039;s mucho trouble in Miracle City\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-tigre-the-adventures-of-manny-rivera-pre-owned-nintendo-ds/1481464.p?id=1218262470443&skuId=1481464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481464_sa.jpg\"}', 'upc' => '799007764281', 'provider' => 'bestbuy'],\n ['name' => \"The Inessential Uncle Bonsai - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-inessential-uncle-bonsai-cd/1481471.p?id=106816&skuId=1481471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481471.jpg\"}', 'upc' => '753701000229', 'provider' => 'bestbuy'],\n ['name' => \"BlackSite: Area 51 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Dispose of a deadly alien infestation\", 'description_long' => \"Dispose of a deadly alien infestation\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blacksite-area-51-pre-owned-playstation-3/1481482.p?id=1218262492153&skuId=1481482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481482_sa.jpg\"}', 'upc' => '799007764304', 'provider' => 'bestbuy'],\n ['name' => \"Kung Fu Panda: The Game - PRE-OWNED - Nintendo Wii\", 'description_short' => \"This is one panda who knows how to fight\", 'description_long' => \"This is one panda who knows how to fight\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kung-fu-panda-the-game-pre-owned-nintendo-wii/1481491.p?id=1218262484780&skuId=1481491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481491_sa.jpg\"}', 'upc' => '799007764311', 'provider' => 'bestbuy'],\n ['name' => \"Supreme Commander - PRE-OWNED - Xbox 360\", 'description_short' => \"End the thousand-year war or face annihilation\", 'description_long' => \"End the thousand-year war or face annihilation\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/supreme-commander-pre-owned-xbox-360/1481507.p?id=1218262464203&skuId=1481507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481507_sa.jpg\"}', 'upc' => '799007764328', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band - PRE-OWNED - PlayStation 3\", 'description_short' => \"Get your musical groove going and be a part of the band\", 'description_long' => \"Get your musical groove going and be a part of the band\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-pre-owned-playstation-3/1481525.p?id=1218262491399&skuId=1481525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481525_sa.jpg\"}', 'upc' => '799007764342', 'provider' => 'bestbuy'],\n ['name' => \"Sid Meier's Civilization Revolution - PRE-OWNED - Nintendo DS\", 'description_short' => \"Build epic empires and worlds and test your strategy skills\", 'description_long' => \"Build epic empires and worlds and test your strategy skills\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sid-meiers-civilization-revolution-pre-owned-nintendo-ds/1481534.p?id=1218262480147&skuId=1481534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481534_sa.jpg\"}', 'upc' => '799007764359', 'provider' => 'bestbuy'],\n ['name' => \"Represent - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/represent-cd/1481541.p?id=82002&skuId=1481541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481541_sa.jpg\"}', 'upc' => '088561117528', 'provider' => 'bestbuy'],\n ['name' => \"Hooked: Real Motion Fishing - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Experience reel fishing excitement\", 'description_long' => \"Experience reel fishing excitement\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hooked-real-motion-fishing-pre-owned-nintendo-wii/1481598.p?id=1218262494084&skuId=1481598&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481598', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481598_sa.jpg\"}', 'upc' => '799007764403', 'provider' => 'bestbuy'],\n ['name' => \"Petz Bunnyz - PRE-OWNED - Nintendo DS\", 'description_short' => \"They&#039;ll hop into your heart\", 'description_long' => \"They&#039;ll hop into your heart\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-bunnyz-pre-owned-nintendo-ds/1481613.p?id=1218262486092&skuId=1481613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481613_sa.jpg\"}', 'upc' => '799007764427', 'provider' => 'bestbuy'],\n ['name' => \"Devil May Cry 4 - PRE-OWNED - Xbox 360\", 'description_short' => \"Raise some serious trouble\", 'description_long' => \"Raise some serious trouble\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/devil-may-cry-4-pre-owned-xbox-360/1481622.p?id=1218262467920&skuId=1481622&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481622_sa.jpg\"}', 'upc' => '799007764434', 'provider' => 'bestbuy'],\n ['name' => \"Top Spin 3 - PRE-OWNED - Xbox 360\", 'description_short' => \"Experience tennis action so real you&#039;ll swear you&#039;re on the court\", 'description_long' => \"Experience tennis action so real you&#039;ll swear you&#039;re on the court\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/top-spin-3-pre-owned-xbox-360/1481659.p?id=1218262493464&skuId=1481659&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481659', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481659_sa.jpg\"}', 'upc' => '799007764458', 'provider' => 'bestbuy'],\n ['name' => \"Okami - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Experience an artistic adventure\", 'description_long' => \"Experience an artistic adventure\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/okami-pre-owned-nintendo-wii/1481668.p?id=1218262463184&skuId=1481668&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481668_sa.jpg\"}', 'upc' => '799007764465', 'provider' => 'bestbuy'],\n ['name' => \"Destroy All Humans: Big Willy Unleashed - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Try some terror with a side of destruction to go\", 'description_long' => \"Try some terror with a side of destruction to go\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/destroy-all-humans-big-willy-unleashed-pre-owned-nintendo-wii/1481677.p?id=1218262493960&skuId=1481677&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481677', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481677_sa.jpg\"}', 'upc' => '799007764472', 'provider' => 'bestbuy'],\n ['name' => \"I Wants to Be a Actor Lady - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-wants-to-be-a-actor-lady-various-cd/1481685.p?id=2065335&skuId=1481685&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481685', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481685_sa.jpg\"}', 'upc' => '093228022121', 'provider' => 'bestbuy'],\n ['name' => \"Fire Emblem: Radiant Dawn — PRE-OWNED - Nintendo Wii\", 'description_short' => \"Extinguish the flames of injustice\", 'description_long' => \"Extinguish the flames of injustice\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fire-emblem-radiant-dawn-pre-owned-nintendo-wii/1481704.p?id=1218262489963&skuId=1481704&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481704', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481704_500x500_sa.jpg\"}', 'upc' => '799007764502', 'provider' => 'bestbuy'],\n ['name' => \"The Elder Scrolls IV: Oblivion - PRE-OWNED - PlayStation 3\", 'description_short' => \"Save the empire from utter destruction\", 'description_long' => \"Save the empire from utter destruction\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-elder-scrolls-iv-oblivion-pre-owned-playstation-3/1481713.p?id=1218262462035&skuId=1481713&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481713_sa.jpg\"}', 'upc' => '799007764519', 'provider' => 'bestbuy'],\n ['name' => \"Dynasty Warriors 6 - PRE-OWNED - PlayStation 3\", 'description_short' => \"The battle for control rages on\", 'description_long' => \"The battle for control rages on\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynasty-warriors-6-pre-owned-playstation-3/1481759.p?id=1218262485843&skuId=1481759&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481759_sa.jpg\"}', 'upc' => '799007764540', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Fashion Designer - PRE-OWNED - Nintendo DS\", 'description_short' => \"Create a high-end fashion line to be featured in a photo shoot and catwalk show\", 'description_long' => \"Create a high-end fashion line to be featured in a photo shoot and catwalk show\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-fashion-designer-pre-owned-nintendo-ds/1481768.p?id=1218262468665&skuId=1481768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481768_sa.jpg\"}', 'upc' => '799007764557', 'provider' => 'bestbuy'],\n ['name' => \"Indianapolis 500 Legends - PRE-OWNED - Nintendo DS\", 'description_short' => \"Barrel toward the finish line at terrifying speeds\", 'description_long' => \"Barrel toward the finish line at terrifying speeds\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/indianapolis-500-legends-pre-owned-nintendo-ds/1481777.p?id=1218262476828&skuId=1481777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481777_sa.jpg\"}', 'upc' => '799007764564', 'provider' => 'bestbuy'],\n ['name' => \"There Is No-one What Will Take Care Of You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/there-is-no-one-what-will-take-care-of-you-cd/1481818.p?id=94303&skuId=1481818&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481818', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481818_sa.jpg\"}', 'upc' => '036172903429', 'provider' => 'bestbuy'],\n ['name' => \"Battleship / Connect Four / Sorry / Trouble - PRE-OWNED - Nintendo DS\", 'description_short' => \"Play a quartet of games perfect for long car rides or rainy days\", 'description_long' => \"Play a quartet of games perfect for long car rides or rainy days\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battleship-connect-four-sorry-trouble-pre-owned-nintendo-ds/1481822.p?id=1218262473198&skuId=1481822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481822_sa.jpg\"}', 'upc' => '799007764618', 'provider' => 'bestbuy'],\n ['name' => \"Fresh [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fresh-pa-cd/1481868.p?id=2161993&skuId=1481868&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481868', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481868_sa.jpg\"}', 'upc' => '895561002453', 'provider' => 'bestbuy'],\n ['name' => \"Karaoke: Marc Anthony - Exitos, Vol. 2 [CD+G] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/karaoke-marc-anthony-exitos-vol-2-cd-g-cd/1481877.p?id=2159590&skuId=1481877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481877_sa.jpg\"}', 'upc' => '617091003867', 'provider' => 'bestbuy'],\n ['name' => \"Bluegrass Tribute to Michael W. Smith - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluegrass-tribute-to-michael-w-smith-cd-various/1481904.p?id=2161988&skuId=1481904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481904_sa.jpg\"}', 'upc' => '707541935890', 'provider' => 'bestbuy'],\n ['name' => \"Karaoke: El Potro de Sinaloa y Los... [CD+G] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/karaoke-el-potro-de-sinaloa-y-los-cd-g-cd/1481913.p?id=2159591&skuId=1481913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481913_sa.jpg\"}', 'upc' => '617091128669', 'provider' => 'bestbuy'],\n ['name' => \"Vive La Cumbia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vive-la-cumbia-cd/1481968.p?id=2159595&skuId=1481968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481968_sa.jpg\"}', 'upc' => '617091153036', 'provider' => 'bestbuy'],\n ['name' => \"Rap Game, Trap Game [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rap-game-trap-game-pa-cd/1481977.p?id=2161995&skuId=1481977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481977_sa.jpg\"}', 'upc' => '786984087724', 'provider' => 'bestbuy'],\n ['name' => \"The Master Plan [CD & DVD] [Digipak] - CD - DVD Limited Edition Special\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-master-plan-cd-dvd-digipak-cd-dvd-limited-edition-special/1481986.p?id=2163297&skuId=1481986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481986_sa.jpg\"}', 'upc' => '829569817627', 'provider' => 'bestbuy'],\n ['name' => \"Third Coast Born [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/third-coast-born-pa-cd/1481995.p?id=2161998&skuId=1481995&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1481995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1481\\/1481995_sa.jpg\"}', 'upc' => '786984087922', 'provider' => 'bestbuy'],\n ['name' => \"ZAGG - InvisibleShield Screen Protector for DigiLand 10\\\" Tablets - Clear\", 'description_short' => \"Compatible with DigiLand 10&quot; tablets; protects your device against scratches\", 'description_long' => \"Compatible with DigiLand 10&quot; tablets; protects your device against scratches\", 'price' => 24.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/zagg-invisibleshield-screen-protector-for-digiland-10-tablets-clear/1482001.p?id=1219498405993&skuId=1482001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482001_sa.jpg\"}', 'upc' => '848467031393', 'provider' => 'bestbuy'],\n ['name' => \"ZAGG - InvisibleShield Screen Protector for DigiLand 7\\\" Tablets - Clear\", 'description_short' => \"Compatible with DigiLand 7&quot; tablets; protects your device against scratches\", 'description_long' => \"Compatible with DigiLand 7&quot; tablets; protects your device against scratches\", 'price' => 19.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/zagg-invisibleshield-screen-protector-for-digiland-7-tablets-clear/1482038.p?id=1219498402541&skuId=1482038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482038_sa.jpg\"}', 'upc' => '848467031409', 'provider' => 'bestbuy'],\n ['name' => \"David Bowie: Rare and Unseen (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/david-bowie-rare-and-unseen-dvd/1482039.p?id=2160827&skuId=1482039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482039.jpg\"}', 'upc' => '760137508694', 'provider' => 'bestbuy'],\n ['name' => \"In Dreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-dreams-cd/1482057.p?id=2161999&skuId=1482057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482057_sa.jpg\"}', 'upc' => '894587001389', 'provider' => 'bestbuy'],\n ['name' => \"Super Exitos de Cajon, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-exitos-de-cajon-vol-2-cd/1482066.p?id=2159592&skuId=1482066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482066_sa.jpg\"}', 'upc' => '617091152435', 'provider' => 'bestbuy'],\n ['name' => \"Super Villain: Issue #2 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-villain-issue-2-pa-cd/1482109.p?id=2161992&skuId=1482109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482109_sa.jpg\"}', 'upc' => '895561002446', 'provider' => 'bestbuy'],\n ['name' => \"Gospel Jazz Tribute to Cece Winans - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gospel-jazz-tribute-to-cece-winans-cd-various/1482127.p?id=2161991&skuId=1482127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482127_sa.jpg\"}', 'upc' => '707541935999', 'provider' => 'bestbuy'],\n ['name' => \"Raices de Mi Tierra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raices-de-mi-tierra-cd/1482136.p?id=3236594&skuId=1482136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482136.jpg\"}', 'upc' => '793573720900', 'provider' => 'bestbuy'],\n ['name' => \"Pa' Colombia Con Amor: Salsa Rosa y Mucho Mas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pa-colombia-con-amor-salsa-rosa-y-mucho-mas-cd/1482154.p?id=2159593&skuId=1482154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482154_sa.jpg\"}', 'upc' => '617091152862', 'provider' => 'bestbuy'],\n ['name' => \"The Cramps: Live (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-cramps-live-dvd/1482163.p?id=2139152&skuId=1482163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482163_sa.jpg\"}', 'upc' => '5060230860657', 'provider' => 'bestbuy'],\n ['name' => \"Bicentenario - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bicentenario-cd/1482181.p?id=2160761&skuId=1482181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482181.jpg\"}', 'upc' => '097037691721', 'provider' => 'bestbuy'],\n ['name' => \"Common Knowledgy of the Entertainment Industry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/common-knowledgy-of-the-entertainment-industry-cd/1482206.p?id=2179684&skuId=1482206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482206_sa.jpg\"}', 'upc' => '693461221024', 'provider' => 'bestbuy'],\n ['name' => \"This Little Light of Mine [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-little-light-of-mine-pa-cd/1482224.p?id=2161996&skuId=1482224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482224_sa.jpg\"}', 'upc' => '895561002460', 'provider' => 'bestbuy'],\n ['name' => \"Soulive: Bowlive (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soulive-bowlive-dvd/1482233.p?id=2160825&skuId=1482233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482233_sa.jpg\"}', 'upc' => '760137507093', 'provider' => 'bestbuy'],\n ['name' => \"Gang Stories [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gang-stories-pa-cd/1482251.p?id=2162004&skuId=1482251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482251_sa.jpg\"}', 'upc' => '809367216426', 'provider' => 'bestbuy'],\n ['name' => \"Tha Thug Show [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tha-thug-show-pa-cd/1482279.p?id=2161994&skuId=1482279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482279.jpg\"}', 'upc' => '099923515920', 'provider' => 'bestbuy'],\n ['name' => \"Music Re-Mastered/Sacred Organ-Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-re-mastered-sacred-organ-music-cd/1482297.p?id=2159658&skuId=1482297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482297_sa.jpg\"}', 'upc' => '829569817221', 'provider' => 'bestbuy'],\n ['name' => \"Concert Anthology 1987-1991 [CD & DVD] (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/concert-anthology-1987-1991-cd-dvd-dvd-2-disc/1482303.p?id=2160806&skuId=1482303&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482303_sa.jpg\"}', 'upc' => '760137507499', 'provider' => 'bestbuy'],\n ['name' => \"Da \\\"T\\\" Mixtape Vol. 1 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/da-t-mixtape-vol-1-pa-cd/1482321.p?id=2157280&skuId=1482321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482321_sa.jpg\"}', 'upc' => '618763580822', 'provider' => 'bestbuy'],\n ['name' => \"Songs From La Mission - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-from-la-mission-cd/1482349.p?id=2157424&skuId=1482349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482349_sa.jpg\"}', 'upc' => '654367469170', 'provider' => 'bestbuy'],\n ['name' => \"Thizz or Die Radio, Vol. 1 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thizz-or-die-radio-vol-1-pa-cd/1482358.p?id=2157283&skuId=1482358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482358_sa.jpg\"}', 'upc' => '618763430325', 'provider' => 'bestbuy'],\n ['name' => \"Mixes and Renditions, Vol. 2 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mixes-and-renditions-vol-2-pa-cd/1482367.p?id=2158356&skuId=1482367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482367_sa.jpg\"}', 'upc' => '618763604023', 'provider' => 'bestbuy'],\n ['name' => \"Mixes and Renditions, Vol. 3 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mixes-and-renditions-vol-3-pa-cd/1482376.p?id=2158357&skuId=1482376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482376_sa.jpg\"}', 'upc' => '618763604122', 'provider' => 'bestbuy'],\n ['name' => \"Thizz Nation, Vol. 27: Town Thizzness [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thizz-nation-vol-27-town-thizzness-pa-cd/1482385.p?id=2156801&skuId=1482385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482385_sa.jpg\"}', 'upc' => '618763708325', 'provider' => 'bestbuy'],\n ['name' => \"The Shooting Range, Vol. 2 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-shooting-range-vol-2-pa-cd/1482394.p?id=2156794&skuId=1482394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482394_sa.jpg\"}', 'upc' => '851690002092', 'provider' => 'bestbuy'],\n ['name' => \"Controversy [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/controversy-pa-cd/1482409.p?id=2158266&skuId=1482409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482409_sa.jpg\"}', 'upc' => '859884002019', 'provider' => 'bestbuy'],\n ['name' => \"Killers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/killers-cd/1482416.p?id=1443007&skuId=1482416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1204\\/12049758.jpg\"}', 'upc' => '731451275821', 'provider' => 'bestbuy'],\n ['name' => \"Bay Area Bosses Mixtape, Vol. 2 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bay-area-bosses-mixtape-vol-2-pa-cd/1482418.p?id=2157281&skuId=1482418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482418_sa.jpg\"}', 'upc' => '618763603828', 'provider' => 'bestbuy'],\n ['name' => \"Traffic 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traffic-2-cd/1482436.p?id=2176358&skuId=1482436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482436_sa.jpg\"}', 'upc' => '815597010857', 'provider' => 'bestbuy'],\n ['name' => \"Danzig 5: Blackacidevil Limited Edition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/danzig-5-blackacidevil-limited-edition-cd/1482445.p?id=2162006&skuId=1482445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482445.jpg\"}', 'upc' => '654436018124', 'provider' => 'bestbuy'],\n ['name' => \"Thizz or Die Radio, Vol. 2 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thizz-or-die-radio-vol-2-pa-cd/1482454.p?id=2158355&skuId=1482454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482454_sa.jpg\"}', 'upc' => '618763220223', 'provider' => 'bestbuy'],\n ['name' => \"Stimulus Package [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stimulus-package-pa-cd/1482463.p?id=2157425&skuId=1482463&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482463_sa.jpg\"}', 'upc' => '881034518866', 'provider' => 'bestbuy'],\n ['name' => \"Slap House, Vol. 2 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slap-house-vol-2-pa-cd/1482481.p?id=2161290&skuId=1482481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482481_sa.jpg\"}', 'upc' => '618763103427', 'provider' => 'bestbuy'],\n ['name' => \"The Heartbeat of Mac Dre [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-heartbeat-of-mac-dre-pa-cd/1482506.p?id=2157279&skuId=1482506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482506_sa.jpg\"}', 'upc' => '618763103328', 'provider' => 'bestbuy'],\n ['name' => \"Breathless [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breathless-digipak-cd/1482515.p?id=2162007&skuId=1482515&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482515', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482515_sa.jpg\"}', 'upc' => '689289010926', 'provider' => 'bestbuy'],\n ['name' => \"Northern Aggression [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/northern-aggression-digipak-cd/1482524.p?id=2165970&skuId=1482524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482524_sa.jpg\"}', 'upc' => '634457223523', 'provider' => 'bestbuy'],\n ['name' => \"Dos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dos-cd/1482533.p?id=2158287&skuId=1482533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482533_sa.jpg\"}', 'upc' => '850021001568', 'provider' => 'bestbuy'],\n ['name' => \"Alison Brown Quartet with Joe Craven: Live at Blair (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alison-brown-quartet-with-joe-craven-live-at-blair-dvd/1482542.p?id=2159438&skuId=1482542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482542_sa.jpg\"}', 'upc' => '766397451992', 'provider' => 'bestbuy'],\n ['name' => \"Grove Lane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grove-lane-cd/1482551.p?id=2159439&skuId=1482551&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482551_sa.jpg\"}', 'upc' => '766397454429', 'provider' => 'bestbuy'],\n ['name' => \"A Star Iz Born [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-star-iz-born-pa-cd/1482579.p?id=2157282&skuId=1482579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1884\\/18841363.jpg\"}', 'upc' => '618763603927', 'provider' => 'bestbuy'],\n ['name' => \"All N Da Doe Mixtape [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-n-da-doe-mixtape-pa-digipak-cd/1482588.p?id=2157284&skuId=1482588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482588_sa.jpg\"}', 'upc' => '618763430424', 'provider' => 'bestbuy'],\n ['name' => \"The Knowing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-knowing-cd/1482603.p?id=2162008&skuId=1482603&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482603', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482603_sa.jpg\"}', 'upc' => '654436016823', 'provider' => 'bestbuy'],\n ['name' => \"High School Sucks: The Musical - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-school-sucks-the-musical-original-soundtrack-cd/1482612.p?id=2157430&skuId=1482612&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482612_sa.jpg\"}', 'upc' => '780163417029', 'provider' => 'bestbuy'],\n ['name' => \"Army of Invisible Men [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/army-of-invisible-men-digipak-cd/1482621.p?id=2162009&skuId=1482621&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482621', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482621_sa.jpg\"}', 'upc' => '689289010025', 'provider' => 'bestbuy'],\n ['name' => \"Harder, Fatter + Louder! - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harder-fatter-louder-cd-various/1482649.p?id=2162010&skuId=1482649&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482649', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482649_sa.jpg\"}', 'upc' => '751097076224', 'provider' => 'bestbuy'],\n ['name' => \"Two Worlds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-worlds-cd/1482658.p?id=2162011&skuId=1482658&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482658', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482658_sa.jpg\"}', 'upc' => '020286155188', 'provider' => 'bestbuy'],\n ['name' => \"The Socalled Movie (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-socalled-movie-dvd/1482667.p?id=2164198&skuId=1482667&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482667', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482667_sa.jpg\"}', 'upc' => '705105265612', 'provider' => 'bestbuy'],\n ['name' => \"Long Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-live-cd/1482676.p?id=2162012&skuId=1482676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482676_sa.jpg\"}', 'upc' => '856449002132', 'provider' => 'bestbuy'],\n ['name' => \"The Filth [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-filth-digipak-cd/1482685.p?id=2162013&skuId=1482685&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482685', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482685.jpg\"}', 'upc' => '616892115564', 'provider' => 'bestbuy'],\n ['name' => \"The Long Way Home [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-long-way-home-digipak-cd/1482703.p?id=2162015&skuId=1482703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482703_sa.jpg\"}', 'upc' => '689289010322', 'provider' => 'bestbuy'],\n ['name' => \"Atonement - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atonement-cd/1482721.p?id=2162016&skuId=1482721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482721_sa.jpg\"}', 'upc' => '803847109826', 'provider' => 'bestbuy'],\n ['name' => \"Sister Sparrow & The Dirty Birds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sister-sparrow-the-dirty-birds-cd/1482749.p?id=2162017&skuId=1482749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482749_sa.jpg\"}', 'upc' => '020286155171', 'provider' => 'bestbuy'],\n ['name' => \"Bounty Hunter 1853 [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bounty-hunter-1853-digipak-cd/1482758.p?id=2162018&skuId=1482758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482758_sa.jpg\"}', 'upc' => '781676711321', 'provider' => 'bestbuy'],\n ['name' => \"Unrelenting - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unrelenting-cd/1482767.p?id=2162019&skuId=1482767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482767_sa.jpg\"}', 'upc' => '781676707027', 'provider' => 'bestbuy'],\n ['name' => \"Zen Food - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zen-food-cd/1482785.p?id=2162020&skuId=1482785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482785_sa.jpg\"}', 'upc' => '673203105423', 'provider' => 'bestbuy'],\n ['name' => \"SYNCHRONISEDSWIMMERS [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/synchronisedswimmers-digipak-cd/1482794.p?id=2162021&skuId=1482794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482794_sa.jpg\"}', 'upc' => '689289010728', 'provider' => 'bestbuy'],\n ['name' => \"Under the Sign of the Iron Cross - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/under-the-sign-of-the-iron-cross-cd/1482803.p?id=2162022&skuId=1482803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482803_sa.jpg\"}', 'upc' => '039841494020', 'provider' => 'bestbuy'],\n ['name' => \"Where Stories End - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-stories-end-cd/1482812.p?id=2166478&skuId=1482812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482812_sa.jpg\"}', 'upc' => '798576487324', 'provider' => 'bestbuy'],\n ['name' => \"Live From Austin, TX '84 [CD & DVD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-austin-tx-84-cd-dvd-digipak-cd/1482821.p?id=2162068&skuId=1482821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482821_sa.jpg\"}', 'upc' => '607396619627', 'provider' => 'bestbuy'],\n ['name' => \"Anthropophagi [ECD] [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anthropophagi-ecd-ep-cd/1482849.p?id=2162069&skuId=1482849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482849.jpg\"}', 'upc' => '656191201827', 'provider' => 'bestbuy'],\n ['name' => \"100percent Cotton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/100percent-cotton-cd/1482862.p?id=3165548&skuId=1482862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482862_sa.jpg\"}', 'upc' => '760392937321', 'provider' => 'bestbuy'],\n ['name' => \"House Addiction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-addiction-cd/1482876.p?id=2169302&skuId=1482876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482876.jpg\"}', 'upc' => '026656202728', 'provider' => 'bestbuy'],\n ['name' => \"Cockneys Vs. Zombies (2 Disc) (W/Dvd) (Blu-ray Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cockneys-vs-zombies-2-disc-w-dvd-blu-ray-disc-digital-copy/1482894.p?id=2628560&skuId=1482894&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482894_sa.jpg\"}', 'upc' => '826663140651', 'provider' => 'bestbuy'],\n ['name' => \"Texas-Czech, Bohemian-Moravian Bands:... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-czech-bohemian-moravian-bands-cd-various/1482915.p?id=101514&skuId=1482915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482915.jpg\"}', 'upc' => '096297702628', 'provider' => 'bestbuy'],\n ['name' => \"King of the Ukrainian Fiddlers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-of-the-ukrainian-fiddlers-cd/1482924.p?id=85918&skuId=1482924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482924.jpg\"}', 'upc' => '096297702529', 'provider' => 'bestbuy'],\n ['name' => \"Mama's Family: The Complete Second Season [4 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mamas-family-the-complete-second-season-4-discs-dvd/1482958.p?id=2725142&skuId=1482958&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1482958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1482\\/1482958.jpg\"}', 'upc' => '610583460490', 'provider' => 'bestbuy'],\n ['name' => \"Massive Blur - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/massive-blur-cd/1483004.p?id=82122&skuId=1483004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483004.jpg\"}', 'upc' => '075678250224', 'provider' => 'bestbuy'],\n ['name' => \"Logitech - Harmony Home Hub - Black\", 'description_short' => \"Compatible with a wide range of home automation devices; controls up to 8 devices; lets you control connected devices via a compatible Bluetooth-enabled Apple iOS or Android smartphone\", 'description_long' => \"Compatible with a wide range of home automation devices; controls up to 8 devices; lets you control connected devices via a compatible Bluetooth-enabled Apple iOS or Android smartphone\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/logitech-harmony-home-hub-black/1483019.p?id=1219498710300&skuId=1483019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483019_sa.jpg\"}', 'upc' => '097855107022', 'provider' => 'bestbuy'],\n ['name' => \"GE - 22.5 Cu. Ft. Side-by-Side Refrigerator with Thru-the-Door Ice and Water - Slate\", 'description_short' => \"Upfront electronic controls; spill-safe shelves; dairy center; humidity-controlled crisper; 2 fixed and 2 adjustable freezer shelves; Frost Guard technology; Arctica icemaker\", 'description_long' => \"Upfront electronic controls; spill-safe shelves; dairy center; humidity-controlled crisper; 2 fixed and 2 adjustable freezer shelves; Frost Guard technology; Arctica icemaker\", 'price' => 1649.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-22-5-cu-ft-side-by-side-refrigerator-with-thru-the-door-ice-and-water-slate/1483028.p?id=1219498403050&skuId=1483028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483028_sa.jpg\"}', 'upc' => '084691807896', 'provider' => 'bestbuy'],\n ['name' => \"The Iceman (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-iceman-dvd/1483029.p?id=2717900&skuId=1483029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483029_sa.jpg\"}', 'upc' => '687797140197', 'provider' => 'bestbuy'],\n ['name' => \"Mystery Science Theater 3000: The Movie (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mystery-science-theater-3000-the-movie-blu-ray-disc/1483038.p?id=54600&skuId=1483038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483038_sa.jpg\"}', 'upc' => '826663142723', 'provider' => 'bestbuy'],\n ['name' => \"Transnational Speedway League: Anthems,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transnational-speedway-league-anthems-cd/1483040.p?id=78131&skuId=1483040&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483040', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483040_sa.jpg\"}', 'upc' => '075679228123', 'provider' => 'bestbuy'],\n ['name' => \"Sharknado (Blu-ray Disc) (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sharknado-blu-ray-disc-only--best-buy/1483056.p?id=2748657&skuId=1483056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483056_sa.jpg\"}', 'upc' => '686340302679', 'provider' => 'bestbuy'],\n ['name' => \"One Piece: Season 5 Voyage 2 (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-piece-season-5-voyage-2-2-disc-dvd/1483065.p?id=2723909&skuId=1483065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1483065.jpg\"}', 'upc' => '704400091810', 'provider' => 'bestbuy'],\n ['name' => \"The Last Year - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-year-cd/1483117.p?id=2739904&skuId=1483117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483117_sa.jpg\"}', 'upc' => '016351581228', 'provider' => 'bestbuy'],\n ['name' => \"Dig Thy Savage Soul [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dig-thy-savage-soul-digipak-cd/1483126.p?id=2739899&skuId=1483126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483126_sa.jpg\"}', 'upc' => '744302020822', 'provider' => 'bestbuy'],\n ['name' => \"The Almighty: The 2nd Coming [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-almighty-the-2nd-coming-pa-cd/1483135.p?id=2732898&skuId=1483135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483135_sa.jpg\"}', 'upc' => '855091004457', 'provider' => 'bestbuy'],\n ['name' => \"BMI Trailblazers of Gospel Music Live 2013 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bmi-trailblazers-of-gospel-music-live-2013-cd-various/1483144.p?id=2888869&skuId=1483144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483144_sa.jpg\"}', 'upc' => '099923931829', 'provider' => 'bestbuy'],\n ['name' => \"Testify - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/testify-cd/1483153.p?id=2703148&skuId=1483153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483153_sa.jpg\"}', 'upc' => '099923930921', 'provider' => 'bestbuy'],\n ['name' => \"Pissed & Driven - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pissed-driven-cd/1483162.p?id=3205753&skuId=1483162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483162_sa.jpg\"}', 'upc' => '727361688509', 'provider' => 'bestbuy'],\n ['name' => \"Silhouette [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/silhouette-single-cd/1483171.p?id=2739903&skuId=1483171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483171_sa.jpg\"}', 'upc' => '016351540928', 'provider' => 'bestbuy'],\n ['name' => \"One Three Seven - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-three-seven-cd/1483199.p?id=2739902&skuId=1483199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483199_sa.jpg\"}', 'upc' => '802644824628', 'provider' => 'bestbuy'],\n ['name' => \"3chordfold [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3chordfold-digipak-cd/1483205.p?id=2739901&skuId=1483205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483205_sa.jpg\"}', 'upc' => '848928054893', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1483214.p?id=2722060&skuId=1483214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483214_sa.jpg\"}', 'upc' => '888837165426', 'provider' => 'bestbuy'],\n ['name' => \"Country Negro Jam Sessions - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-negro-jam-sessions-cd-various/1483219.p?id=78926&skuId=1483219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483219.jpg\"}', 'upc' => '096297037225', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1483223.p?id=2722090&skuId=1483223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483223_sa.jpg\"}', 'upc' => '888837113625', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1483232.p?id=2722111&skuId=1483232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483232_sa.jpg\"}', 'upc' => '888837113427', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1483241.p?id=2722063&skuId=1483241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483241_sa.jpg\"}', 'upc' => '888837114523', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1483278.p?id=2722157&skuId=1483278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483278_sa.jpg\"}', 'upc' => '888837113724', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1483287.p?id=2722146&skuId=1483287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483287_sa.jpg\"}', 'upc' => '888837165327', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1483296.p?id=2722089&skuId=1483296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483296_sa.jpg\"}', 'upc' => '888837115025', 'provider' => 'bestbuy'],\n ['name' => \"All People - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-people-cd/1483311.p?id=2720934&skuId=1483311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483311_sa.jpg\"}', 'upc' => '602537415397', 'provider' => 'bestbuy'],\n ['name' => \"Changes Two - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/changes-two-cd/1483335.p?id=69155&skuId=1483335&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483335_sa.jpg\"}', 'upc' => '081227140427', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1483348.p?id=2721127&skuId=1483348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483348_sa.jpg\"}', 'upc' => '602537433766', 'provider' => 'bestbuy'],\n ['name' => \"Crash My Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crash-my-party-cd/1483357.p?id=2725378&skuId=1483357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483357_sa.jpg\"}', 'upc' => '602537445264', 'provider' => 'bestbuy'],\n ['name' => \"French Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/french-blues-cd/1483362.p?id=72344&skuId=1483362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483362.jpg\"}', 'upc' => '096297037324', 'provider' => 'bestbuy'],\n ['name' => \"Blurred Lines [Bonus Track] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blurred-lines-bonus-track-pa-cd/1483366.p?id=2720897&skuId=1483366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483366_sa.jpg\"}', 'upc' => '602537424788', 'provider' => 'bestbuy'],\n ['name' => \"Something Else [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-else-pa-cd/1483375.p?id=2721143&skuId=1483375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483375_sa.jpg\"}', 'upc' => '853435003241', 'provider' => 'bestbuy'],\n ['name' => \"Blurred Lines [Deluxe Edition] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blurred-lines-deluxe-edition-pa-cd/1483384.p?id=2721407&skuId=1483384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483384_sa.jpg\"}', 'upc' => '602537435739', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1483393.p?id=2721289&skuId=1483393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483393_sa.jpg\"}', 'upc' => '602537436293', 'provider' => 'bestbuy'],\n ['name' => \"All People - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-people-cd/1483408.p?id=2721442&skuId=1483408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483408_sa.jpg\"}', 'upc' => '602537370313', 'provider' => 'bestbuy'],\n ['name' => \"Hand Picked [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hand-picked-digipak-cd/1483417.p?id=2652147&skuId=1483417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483417_sa.jpg\"}', 'upc' => '888072332010', 'provider' => 'bestbuy'],\n ['name' => \"40th Anniversary - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/40th-anniversary-cd/1483426.p?id=2721042&skuId=1483426&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483426', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483426_sa.jpg\"}', 'upc' => '617884885922', 'provider' => 'bestbuy'],\n ['name' => \"World Without Gravity: The Best of the Jim... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-without-gravity-the-best-of-the-jim-cd/1483433.p?id=76962&skuId=1483433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483433_sa.jpg\"}', 'upc' => '081227129026', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1483435.p?id=2721114&skuId=1483435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483435_sa.jpg\"}', 'upc' => '602537424979', 'provider' => 'bestbuy'],\n ['name' => \"Bakersfield - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bakersfield-cd/1483444.p?id=2721443&skuId=1483444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483444_sa.jpg\"}', 'upc' => '602537432165', 'provider' => 'bestbuy'],\n ['name' => \"Best of George Jones: Icon 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-george-jones-icon-2-cd/1483453.p?id=2721064&skuId=1483453&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483453', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483453_sa.jpg\"}', 'upc' => '602537424962', 'provider' => 'bestbuy'],\n ['name' => \"Walking Song [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-song-digipak-cd/1483462.p?id=2701855&skuId=1483462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483462_sa.jpg\"}', 'upc' => '011661916722', 'provider' => 'bestbuy'],\n ['name' => \"Mystic Power [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mystic-power-digipak-cd/1483471.p?id=2720960&skuId=1483471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483471_sa.jpg\"}', 'upc' => '054645198424', 'provider' => 'bestbuy'],\n ['name' => \"Bee Gees: One Night Only - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bee-gees-one-night-only-blu-ray-disc/1483499.p?id=29776&skuId=1483499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483499_sa.jpg\"}', 'upc' => '801213099993', 'provider' => 'bestbuy'],\n ['name' => \"Icon [7/30] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-7-30-cd/1483505.p?id=2721354&skuId=1483505&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483505', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483505_sa.jpg\"}', 'upc' => '600753432723', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1483514.p?id=2721197&skuId=1483514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483514_sa.jpg\"}', 'upc' => '602537443291', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1483523.p?id=2721062&skuId=1483523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483523_sa.jpg\"}', 'upc' => '602537424993', 'provider' => 'bestbuy'],\n ['name' => \"7 Cities - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/7-cities-cd/1483541.p?id=2701825&skuId=1483541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2142\\/21424384.jpg\"}', 'upc' => '888072343290', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1483569.p?id=2721499&skuId=1483569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483569_sa.jpg\"}', 'upc' => '602537430727', 'provider' => 'bestbuy'],\n ['name' => \"Icon, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-vol-1-cd/1483578.p?id=2721493&skuId=1483578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483578_sa.jpg\"}', 'upc' => '602537424955', 'provider' => 'bestbuy'],\n ['name' => \"Scorpions: Moment of Glory - Live - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scorpions-moment-of-glory-live-blu-ray-disc/1483587.p?id=36686&skuId=1483587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483587_sa.jpg\"}', 'upc' => '801213099696', 'provider' => 'bestbuy'],\n ['name' => \"Move It on Over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/move-it-on-over-cd/1483596.p?id=2721117&skuId=1483596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483596_sa.jpg\"}', 'upc' => '011661917729', 'provider' => 'bestbuy'],\n ['name' => \"George Thorogood & the Destroyers [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/george-thorogood-the-destroyers-import-cd/1483602.p?id=2721259&skuId=1483602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483602_sa.jpg\"}', 'upc' => '011661917620', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1483611.p?id=2721449&skuId=1483611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483611_sa.jpg\"}', 'upc' => '602537424986', 'provider' => 'bestbuy'],\n ['name' => \"Something Else [CD/DVD] [CD & DVD] [PA] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-else-cd-dvd-cd-dvd-pa-cd-dvd/1483639.p?id=2721484&skuId=1483639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483639_sa.jpg\"}', 'upc' => '853435003258', 'provider' => 'bestbuy'],\n ['name' => \"Adventures of Bailey: A Night in Cowtown (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adventures-of-bailey-a-night-in-cowtown-dvd/1483657.p?id=2666381&skuId=1483657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483657_sa.jpg\"}', 'upc' => '741952738299', 'provider' => 'bestbuy'],\n ['name' => \"Cagney & Lacey: The Return (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cagney-lacey-the-return-dvd/1483666.p?id=2010119&skuId=1483666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483666_sa.jpg\"}', 'upc' => '089353708320', 'provider' => 'bestbuy'],\n ['name' => \"Western TV Goldmine [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/western-tv-goldmine-5-discs-dvd/1483675.p?id=2259320&skuId=1483675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483675_sa.jpg\"}', 'upc' => '096009738594', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Family TV (6pc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-family-tv-6pc-dvd-boxed-set/1483684.p?id=2673646&skuId=1483684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483684.jpg\"}', 'upc' => '096009149840', 'provider' => 'bestbuy'],\n ['name' => \"Trooper and the Legend of the Golden Key (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trooper-and-the-legend-of-the-golden-key-dvd/1483693.p?id=2558840&skuId=1483693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483693_sa.jpg\"}', 'upc' => '741952732198', 'provider' => 'bestbuy'],\n ['name' => \"Highway Heaven: Season 1 [5 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/highway-heaven-season-1-5-discs-dvd/1483702.p?id=2682761&skuId=1483702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483702_sa.jpg\"}', 'upc' => '683904530028', 'provider' => 'bestbuy'],\n ['name' => \"George Carlin Double Feature (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/george-carlin-double-feature-dvd/1483711.p?id=2670022&skuId=1483711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483711_sa.jpg\"}', 'upc' => '030306795898', 'provider' => 'bestbuy'],\n ['name' => \"Babar: The Movie (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/babar-the-movie-dvd/1483739.p?id=1342505&skuId=1483739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483739_sa.jpg\"}', 'upc' => '741952711292', 'provider' => 'bestbuy'],\n ['name' => \"Barska - Colorado 10 x 25 Binoculars - Pink\", 'description_short' => \"10x magnification; 25mm diameter; fully coated objective lenses; BK-7 Porro prisms\", 'description_long' => \"10x magnification; 25mm diameter; fully coated objective lenses; BK-7 Porro prisms\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-colorado-10-x-25-binoculars-pink/1483757.p?id=1219052240382&skuId=1483757', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483757_rc.jpg\"}', 'upc' => '790272981342', 'provider' => 'bestbuy'],\n ['name' => \"Irremplazable - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/irremplazable-cd/1483784.p?id=2728999&skuId=1483784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483784_sa.jpg\"}', 'upc' => '602537464722', 'provider' => 'bestbuy'],\n ['name' => \"Gracias por Creer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gracias-por-creer-cd/1483793.p?id=2729760&skuId=1483793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1483793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1483\\/1483793_sa.jpg\"}', 'upc' => '602537417247', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Slide-In Electric Convection Range - Slate\", 'description_short' => \"Electronic touchpad controls with digital temperature display; 5 elements; 1200-3600W of power; True European Convection technology with Precise Air; storage drawer\", 'description_long' => \"Electronic touchpad controls with digital temperature display; 5 elements; 1200-3600W of power; True European Convection technology with Precise Air; storage drawer\", 'price' => 1799.99, 'sale_price' => 1259.99, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-slide-in-electric-convection-range-slate/1484009.p?id=1219498404744&skuId=1484009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484009_sa.jpg\"}', 'upc' => '084691263197', 'provider' => 'bestbuy'],\n ['name' => \"Roku - Streaming Stick Roku Ready MHL Version - Purple\", 'description_short' => \"Allows you to access more than 1,500 entertainment channels; compatible with most Roku-ready TVs; built-in dual-band wireless connectivity; supports up to 1080p content; Dolby Digital Plus support\", 'description_long' => \"Allows you to access more than 1,500 entertainment channels; compatible with most Roku-ready TVs; built-in dual-band wireless connectivity; supports up to 1080p content; Dolby Digital Plus support\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roku-streaming-stick-roku-ready-mhl-version-purple/1484019.p?id=1219052241897&skuId=1484019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484019_sa.jpg\"}', 'upc' => '829610880419', 'provider' => 'bestbuy'],\n ['name' => \"Nintendo - Nintendo eShop Prepaid Card ($10)\", 'description_short' => \"Get more enjoyment out of your Nintendo systems\", 'description_long' => \"Get more enjoyment out of your Nintendo systems\", 'price' => 10, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nintendo-nintendo-eshop-prepaid-card-10/1484036.p?id=1219499659727&skuId=1484036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484036_sa.jpg\"}', 'upc' => '799366222934', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 36\\\" Convertible Range Hood - Stainless Steel\", 'description_short' => \"UNBRANDED 36&quot; Convertible Range Hood: Push button control; 400 cfm exhaust capacity; 3 fan speeds; dishwasher-safe stainless-steel-mesh grease filters; 2 incandescent lights\", 'description_long' => \"UNBRANDED 36&quot; Convertible Range Hood: Push button control; 400 cfm exhaust capacity; 3 fan speeds; dishwasher-safe stainless-steel-mesh grease filters; 2 incandescent lights\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-36-convertible-range-hood-stainless-steel/1484045.p?id=1219499661779&skuId=1484045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484045_sa.jpg\"}', 'upc' => '883049283388', 'provider' => 'bestbuy'],\n ['name' => \"Nintendo - Nintendo eShop Prepaid Card ($10)\", 'description_short' => \"Get more enjoyment out of your Nintendo systems\", 'description_long' => \"Get more enjoyment out of your Nintendo systems\", 'price' => 10, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nintendo-nintendo-eshop-prepaid-card-10/1484054.p?id=1219499663527&skuId=1484054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484054_sa.jpg\"}', 'upc' => '799366223450', 'provider' => 'bestbuy'],\n ['name' => \"Nintendo - Nintendo eShop Prepaid Card ($10)\", 'description_short' => \"Get more enjoyment out of your Nintendo systems\", 'description_long' => \"Get more enjoyment out of your Nintendo systems\", 'price' => 10, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nintendo-nintendo-eshop-prepaid-card-10/1484114.p?id=1219499659728&skuId=1484114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484114_sa.jpg\"}', 'upc' => '799366223375', 'provider' => 'bestbuy'],\n ['name' => \"Nesco - 6L 4-in-1 Pressure Cooker - White\", 'description_short' => \"Soft-touch buttons; pressure cooker, steamer, slow cooker and rice cooker options; warm and browning settings; 8-hour delay-start; built-in safety features\", 'description_long' => \"Soft-touch buttons; pressure cooker, steamer, slow cooker and rice cooker options; warm and browning settings; 8-hour delay-start; built-in safety features\", 'price' => 118.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nesco-6l-4-in-1-pressure-cooker-white/1484204.p?id=1219052240381&skuId=1484204', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484204_rc.jpg\"}', 'upc' => '078262008898', 'provider' => 'bestbuy'],\n ['name' => \"Nesco - 21-3/8-Cup Coffee Urn - Stainless-Steel\", 'description_short' => \"Up to a 21-3/8-cup capacity; double-wall insulation; water gauge; stay-cool handles; locking lid; indicator light\", 'description_long' => \"Up to a 21-3/8-cup capacity; double-wall insulation; water gauge; stay-cool handles; locking lid; indicator light\", 'price' => 74.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nesco-21-3-8-cup-coffee-urn-stainless-steel/1484277.p?id=1219052242370&skuId=1484277', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484277_rc.jpg\"}', 'upc' => '078262008874', 'provider' => 'bestbuy'],\n ['name' => \"Nesco - Coffee Grinder - Black\", 'description_short' => \"One-touch operation; removable grind cup; dishwasher-safe cup and lid; compact design; cord storage\", 'description_long' => \"One-touch operation; removable grind cup; dishwasher-safe cup and lid; compact design; cord storage\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nesco-coffee-grinder-black/1484295.p?id=1219052237019&skuId=1484295', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484295_rc.jpg\"}', 'upc' => '078262008829', 'provider' => 'bestbuy'],\n ['name' => \"Nesco - Portable Induction Cooktop - Black\", 'description_short' => \"5 front touch controls; instant temperature adjustments; induction technology; energy-efficient design; smooth ceramic glass cooktop; includes a ferrous-metal test magnet\", 'description_long' => \"5 front touch controls; instant temperature adjustments; induction technology; energy-efficient design; smooth ceramic glass cooktop; includes a ferrous-metal test magnet\", 'price' => 89.99, 'sale_price' => 70.99, 'url' => 'http://www.bestbuy.com/site/nesco-portable-induction-cooktop-black/1484383.p?id=1219052242105&skuId=1484383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484383_500x500_sa.jpg\"}', 'upc' => '078262008850', 'provider' => 'bestbuy'],\n ['name' => \"Nesco - 18-Quart Roaster Oven - Stainless-Steel\", 'description_short' => \"Automatic temperature control; temperature settings from 200&#176; to 450&#176;; CIRCLE OF HEAT construction; includes removable stainless-steel cookwell, steel rack and recipe guide\", 'description_long' => \"Automatic temperature control; temperature settings from 200&#176; to 450&#176;; CIRCLE OF HEAT construction; includes removable stainless-steel cookwell, steel rack and recipe guide\", 'price' => 154.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nesco-18-quart-roaster-oven-stainless-steel/1484392.p?id=1219052237020&skuId=1484392', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484392_rc.jpg\"}', 'upc' => '078262008768', 'provider' => 'bestbuy'],\n ['name' => \"Nothing to Lose - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-to-lose-cd/1484638.p?id=2721791&skuId=1484638&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484638', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484638_sa.jpg\"}', 'upc' => '888837335829', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Legends of Mid-South Wrestling (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-legends-of-mid-south-wrestling-blu-ray-disc-2-disc/1484665.p?id=2721861&skuId=1484665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484665_sa.jpg\"}', 'upc' => '651191951659', 'provider' => 'bestbuy'],\n ['name' => \"Hammer of the Gods (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hammer-of-the-gods-dvd/1484674.p?id=2727909&skuId=1484674&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484674', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484674_sa.jpg\"}', 'upc' => '876964005913', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Legends of Mid-South Wrestling (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-legends-of-mid-south-wrestling-dvd-3-disc/1484683.p?id=2721861&skuId=1484683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484683_sa.jpg\"}', 'upc' => '651191951642', 'provider' => 'bestbuy'],\n ['name' => \"Frankenstein's Army (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frankensteins-army-dvd/1484692.p?id=2739644&skuId=1484692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484692_sa.jpg\"}', 'upc' => '030306820491', 'provider' => 'bestbuy'],\n ['name' => \"Frankenstein's Army (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frankensteins-army-blu-ray-disc/1484738.p?id=2739644&skuId=1484738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484738_sa.jpg\"}', 'upc' => '030306185798', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Summerslam 2013 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-summerslam-2013-dvd/1484856.p?id=2721868&skuId=1484856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484856_sa.jpg\"}', 'upc' => '651191951666', 'provider' => 'bestbuy'],\n ['name' => \"Still Screaming/This Side Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-screaming-this-side-up-cd/1484860.p?id=98129&skuId=1484860&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484860', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484860.jpg\"}', 'upc' => '718751798120', 'provider' => 'bestbuy'],\n ['name' => \"The Last Tycoon (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-tycoon-blu-ray-disc/1484874.p?id=2719387&skuId=1484874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484874_sa.jpg\"}', 'upc' => '812491014325', 'provider' => 'bestbuy'],\n ['name' => \"Java Heat (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/java-heat-dvd/1484892.p?id=2734239&skuId=1484892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484892_sa.jpg\"}', 'upc' => '030306987699', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Summerslam 2013 (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-summerslam-2013-blu-ray-disc/1484901.p?id=2721868&skuId=1484901&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484901', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484901_sa.jpg\"}', 'upc' => '651191951673', 'provider' => 'bestbuy'],\n ['name' => \"The Last Tycoon (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-tycoon-dvd/1484929.p?id=2719387&skuId=1484929&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1484929', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1484\\/1484929_sa.jpg\"}', 'upc' => '812491014301', 'provider' => 'bestbuy'],\n ['name' => \"Boston Acoustics - Voyager 40 4-1/2\\\" 2-Way Outdoor Speakers (Pair) - White\", 'description_short' => \"Handles up to 125W peak power; 4-1/2&quot; copolymer DCD woofer cone; 1&quot; Kortec soft-dome tweeter; butyl rubber surround; powdercoat aluminum grille; 2 binding posts\", 'description_long' => \"Handles up to 125W peak power; 4-1/2&quot; copolymer DCD woofer cone; 1&quot; Kortec soft-dome tweeter; butyl rubber surround; powdercoat aluminum grille; 2 binding posts\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boston-acoustics-voyager-40-4-1-2-2-way-outdoor-speakers-pair-white/1485018.p?id=1219052516628&skuId=1485018', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1485018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1485\\/1485018_sa.jpg\"}', 'upc' => '690283479640', 'provider' => 'bestbuy'],\n ['name' => \"Boston Acoustics - Voyager 40 4-1/2\\\" 2-Way Outdoor Speakers (Pair) - Black\", 'description_short' => \"Handles up to 125W peak power; 4-1/2&quot; copolymer DCD woofer cone; 1&quot; Kortec soft-dome tweeter; butyl rubber surround; powdercoat aluminum grille; 2 binding posts\", 'description_long' => \"Handles up to 125W peak power; 4-1/2&quot; copolymer DCD woofer cone; 1&quot; Kortec soft-dome tweeter; butyl rubber surround; powdercoat aluminum grille; 2 binding posts\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boston-acoustics-voyager-40-4-1-2-2-way-outdoor-speakers-pair-black/1485027.p?id=1219052514727&skuId=1485027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1485027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1485\\/1485027_sa.jpg\"}', 'upc' => '690283479633', 'provider' => 'bestbuy'],\n ['name' => \"Cajun Party! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajun-party-cd/1486056.p?id=76537&skuId=1486056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1486056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1486\\/1486056_sa.jpg\"}', 'upc' => '096094101426', 'provider' => 'bestbuy'],\n ['name' => \"Reminiscin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reminiscin-cd/1486207.p?id=256686&skuId=1486207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1486207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1486\\/1486207.jpg\"}', 'upc' => '054987402920', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Interpretations - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-interpretations-cd/1486494.p?id=75690&skuId=1486494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1486494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1486\\/1486494_sa.jpg\"}', 'upc' => '737463636520', 'provider' => 'bestbuy'],\n ['name' => \"Barely Real [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barely-real-ep-cd/1486500.p?id=78209&skuId=1486500&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1486500', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1486\\/1486500.jpg\"}', 'upc' => '098787020724', 'provider' => 'bestbuy'],\n ['name' => \"Miracle of Sound in Motion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miracle-of-sound-in-motion-cd/1486715.p?id=1471451&skuId=1486715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1486715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1486\\/1486715_sa.jpg\"}', 'upc' => '038161003929', 'provider' => 'bestbuy'],\n ['name' => \"Xerox - DocuMate 4700 Flatbed Scanner - White\", 'description_short' => \"USB 2.0 interface; up to 600 dpi optical resolution; 200-sheet ADF capacity; CIS (Contact Image Sensor); instant-on LED technology\", 'description_long' => \"USB 2.0 interface; up to 600 dpi optical resolution; 200-sheet ADF capacity; CIS (Contact Image Sensor); instant-on LED technology\", 'price' => 795.99, 'sale_price' => 626.99, 'url' => 'http://www.bestbuy.com/site/xerox-documate-4700-flatbed-scanner-white/1486772.p?id=1219052517844&skuId=1486772', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1486772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1486\\/1486772_sa.jpg\"}', 'upc' => '785414114146', 'provider' => 'bestbuy'],\n ['name' => \"The History of an Artist, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-history-of-an-artist-vol-1-cd/1486840.p?id=69978&skuId=1486840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1486840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1486\\/1486840_sa.jpg\"}', 'upc' => '025218570220', 'provider' => 'bestbuy'],\n ['name' => \"Aaron Neville's Soulful Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aaron-nevilles-soulful-christmas-cd/1487135.p?id=93081&skuId=1487135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1487135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1487\\/1487135_sa.jpg\"}', 'upc' => '731454012720', 'provider' => 'bestbuy'],\n ['name' => \"Aleratec - 1:1 HDD Cruiser Hard Drive Duplicator - Black\", 'description_short' => \"USB 2.0 and 2 Serial ATA interfaces; allows duplication of a hard drive&#039;s contents on another hard drive; compact and portable\", 'description_long' => \"USB 2.0 and 2 Serial ATA interfaces; allows duplication of a hard drive&#039;s contents on another hard drive; compact and portable\", 'price' => 195.99, 'sale_price' => 180.99, 'url' => 'http://www.bestbuy.com/site/aleratec-11-hdd-cruiser-hard-drive-duplicator-black/1487238.p?id=1218262971254&skuId=1487238', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1487238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1487\\/1487238_sa.jpg\"}', 'upc' => '808068004455', 'provider' => 'bestbuy'],\n ['name' => \"Aleratec - DVD/CD Shredder - Black\", 'description_short' => \"Shreds CDs, DVDs Blu-ray discs, credit cards or paper; 1 Blu-ray, 1 DVD, 1 CD, 1 credit card or 18 sheets of paper per pass shreddable; shred feed opening up to 220mm\", 'description_long' => \"Shreds CDs, DVDs Blu-ray discs, credit cards or paper; 1 Blu-ray, 1 DVD, 1 CD, 1 credit card or 18 sheets of paper per pass shreddable; shred feed opening up to 220mm\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aleratec-dvd-cd-shredder-black/1487256.p?id=1218262983493&skuId=1487256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1487256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1487\\/1487256_sa.jpg\"}', 'upc' => '808068004523', 'provider' => 'bestbuy'],\n ['name' => \"Slip It In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slip-it-in-cd/1487607.p?id=74812&skuId=1487607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1487607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1487\\/1487607_sa.jpg\"}', 'upc' => '018861002927', 'provider' => 'bestbuy'],\n ['name' => \"Cheetah's Bassest Hit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cheetahs-bassest-hit-cd/1487616.p?id=177736&skuId=1487616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1487616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '021257941922', 'provider' => 'bestbuy'],\n ['name' => \"Bass Quake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bass-quake-cd/1487652.p?id=1539944&skuId=1487652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1487652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1487\\/1487652_sa.jpg\"}', 'upc' => '754863201226', 'provider' => 'bestbuy'],\n ['name' => \"93 'Til Infinity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/93-til-infinity-cd/1487723.p?id=99596&skuId=1487723&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1487723', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1487\\/1487723_sa.jpg\"}', 'upc' => '012414151421', 'provider' => 'bestbuy'],\n ['name' => \"60 Christmas Carols For Kids [Digipak] - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/60-christmas-carols-for-kids-digipak-various-cd/1487762.p?id=2633476&skuId=1487762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1487762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1487\\/1487762_sa.jpg\"}', 'upc' => '803151015622', 'provider' => 'bestbuy'],\n ['name' => \"Angels Running - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/angels-running-cd/1487894.p?id=88676&skuId=1487894&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1487894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1487\\/1487894_sa.jpg\"}', 'upc' => '729021031823', 'provider' => 'bestbuy'],\n ['name' => \"Good - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-cd/1488027.p?id=92285&skuId=1488027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1488027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1488\\/1488027_sa.jpg\"}', 'upc' => '014431026324', 'provider' => 'bestbuy'],\n ['name' => \"Walking On Water-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-on-water-cd/1488054.p?id=81064&skuId=1488054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1488054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1488\\/1488054.jpg\"}', 'upc' => '090062303324', 'provider' => 'bestbuy'],\n ['name' => \"Compass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/compass-cd/1488081.p?id=286691&skuId=1488081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1488081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1488\\/1488081_sa.jpg\"}', 'upc' => '739341000928', 'provider' => 'bestbuy'],\n ['name' => \"True Romance [Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/true-romance-motion-picture-soundtrack-cd-original-soundtrack/1488438.p?id=102378&skuId=1488438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1488438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1488\\/1488438_sa.jpg\"}', 'upc' => '729592001720', 'provider' => 'bestbuy'],\n ['name' => \"Perfectly Good Guitar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/perfectly-good-guitar-cd/1488633.p?id=85325&skuId=1488633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1488633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1488\\/1488633_sa.jpg\"}', 'upc' => '731454013529', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1488652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055186389', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1488661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055186013', 'provider' => 'bestbuy'],\n ['name' => \"Don't Smoke in Bed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-smoke-in-bed-cd/1488848.p?id=65072&skuId=1488848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1488848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1488\\/1488848_sa.jpg\"}', 'upc' => '077778119821', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1488998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055185955', 'provider' => 'bestbuy'],\n ['name' => \"MXGP: The Official Motocross Videogame - PRE-OWNED - Xbox 360\", 'description_short' => \"Get a little dirty for a chance at glory\", 'description_long' => \"Get a little dirty for a chance at glory\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mxgp-the-official-motocross-videogame-pre-owned-xbox-360/1489004.p?id=1219499659731&skuId=1489004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489004_sa.jpg\"}', 'upc' => '799007841418', 'provider' => 'bestbuy'],\n ['name' => \"Secret Garden [Original Motion Picture... - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secret-garden-original-motion-picture-original-soundtrack-cd/1489197.p?id=98228&skuId=1489197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489197_sa.jpg\"}', 'upc' => '030206544329', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055186266', 'provider' => 'bestbuy'],\n ['name' => \"Yes I Am - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yes-i-am-cd/1489320.p?id=81710&skuId=1489320&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489320', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489320_sa.jpg\"}', 'upc' => '042284866026', 'provider' => 'bestbuy'],\n ['name' => \"Good News - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-news-cd/1489375.p?id=90833&skuId=1489375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489375_sa.jpg\"}', 'upc' => '731451805929', 'provider' => 'bestbuy'],\n ['name' => \"C. W. McCall's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/c-w-mccalls-greatest-hits-cd/1489393.p?id=91012&skuId=1489393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489393_sa.jpg\"}', 'upc' => '042282579324', 'provider' => 'bestbuy'],\n ['name' => \"Liberation: The Island Anthology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/liberation-the-island-anthology-cd/1489482.p?id=74849&skuId=1489482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489482_sa.jpg\"}', 'upc' => '731451828225', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Songbooks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-songbooks-cd/1489589.p?id=66347&skuId=1489589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489589_sa.jpg\"}', 'upc' => '731451980428', 'provider' => 'bestbuy'],\n ['name' => \"Message in a Box: The Complete Recordings [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/message-in-a-box-the-complete-recordings-box-cd/1489605.p?id=95153&skuId=1489605&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489605', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489605_sa.jpg\"}', 'upc' => '731454015028', 'provider' => 'bestbuy'],\n ['name' => \"Magellan - SmartGPS 5390 5\\\" GPS with Built-In Bluetooth and Lifetime Map and Traffic Updates - Black\", 'description_short' => \"Preloaded base maps of the U.S., Canada and Puerto Rico; 5&quot; touch screen; text-to-speech voice guidance\", 'description_long' => \"Preloaded base maps of the U.S., Canada and Puerto Rico; 5&quot; touch screen; text-to-speech voice guidance\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magellan-smartgps-5390-5-gps-with-built-in-bluetooth-and-lifetime-map-and-traffic-updates-black/1489688.p?id=1219052519176&skuId=1489688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489688_sa.jpg\"}', 'upc' => '763357130355', 'provider' => 'bestbuy'],\n ['name' => \"Sirius - Stratus 7 Satellite Radio with PowerConnect Vehicle Kit - Black\", 'description_short' => \"Receives SIRIUS Satellite Radio; One-Touch Jump with traffic and weather reports; push button navigation; 10 channel presets\", 'description_long' => \"Receives SIRIUS Satellite Radio; One-Touch Jump with traffic and weather reports; push button navigation; 10 channel presets\", 'price' => 79.99, 'sale_price' => 38.99, 'url' => 'http://www.bestbuy.com/site/sirius-stratus-7-satellite-radio-with-powerconnect-vehicle-kit-black/1489733.p?id=1219052516567&skuId=1489733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489733_sa.jpg\"}', 'upc' => '884720013119', 'provider' => 'bestbuy'],\n ['name' => \"SiriusXM - Onyx Plus Satellite Radio Receiver with Home Kit - Black\", 'description_short' => \"Receives SiriusXM Satellite Radio, plus more than 20 SiriusXM Xtra channels; pause, rewind and replay live content; TuneStart, TuneMix and TuneScan functions; 20 channel presets\", 'description_long' => \"Receives SiriusXM Satellite Radio, plus more than 20 SiriusXM Xtra channels; pause, rewind and replay live content; TuneStart, TuneMix and TuneScan functions; 20 channel presets\", 'price' => 99.99, 'sale_price' => 69.99, 'url' => 'http://www.bestbuy.com/site/siriusxm-onyx-plus-satellite-radio-receiver-with-home-kit-black/1489751.p?id=1219052518923&skuId=1489751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489751_sa.jpg\"}', 'upc' => '884720013157', 'provider' => 'bestbuy'],\n ['name' => \"SiriusXM - Onyx Plus Satellite Radio Receiver with PowerConnect Vehicle Kit - Black\", 'description_short' => \"Receives SiriusXM Satellite Radio, plus more than 20 SiriusXM Xtra channels; pause, rewind and replay live content; TuneStart, TuneMix and TuneScan functions; 20 channel presets\", 'description_long' => \"Receives SiriusXM Satellite Radio, plus more than 20 SiriusXM Xtra channels; pause, rewind and replay live content; TuneStart, TuneMix and TuneScan functions; 20 channel presets\", 'price' => 99.99, 'sale_price' => 75.99, 'url' => 'http://www.bestbuy.com/site/siriusxm-onyx-plus-satellite-radio-receiver-with-powerconnect-vehicle-kit-black/1489779.p?id=1219052517777&skuId=1489779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489779_sa.jpg\"}', 'upc' => '884720013140', 'provider' => 'bestbuy'],\n ['name' => \"XM - Onyx EZ Satellite Radio Receiver with Home Kit - Black\", 'description_short' => \"Receives SiriusXM Satellite Radio; One-Touch Jump with traffic and weather reports; 10 channel presets\", 'description_long' => \"Receives SiriusXM Satellite Radio; One-Touch Jump with traffic and weather reports; 10 channel presets\", 'price' => 69.99, 'sale_price' => 47.99, 'url' => 'http://www.bestbuy.com/site/xm-onyx-ez-satellite-radio-receiver-with-home-kit-black/1489788.p?id=1219052517081&skuId=1489788&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489788', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489788_sa.jpg\"}', 'upc' => '884720013133', 'provider' => 'bestbuy'],\n ['name' => \"This Time by Basie: Hits of the 50's - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-time-by-basie-hits-of-the-50s-cd/1489794.p?id=64049&skuId=1489794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489794_sa.jpg\"}', 'upc' => '093624516224', 'provider' => 'bestbuy'],\n ['name' => \"XM - Onyx EZ Satellite Radio Receiver with PowerConnect Vehicle Kit - Black\", 'description_short' => \"Receives SiriusXM Satellite Radio; One-Touch Jump with traffic and weather reports; 10 channel presets\", 'description_long' => \"Receives SiriusXM Satellite Radio; One-Touch Jump with traffic and weather reports; 10 channel presets\", 'price' => 69.99, 'sale_price' => 36.99, 'url' => 'http://www.bestbuy.com/site/xm-onyx-ez-satellite-radio-receiver-with-powerconnect-vehicle-kit-black/1489797.p?id=1219052517016&skuId=1489797&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489797', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1313\\/1313161129\\/1313161129_sa.jpg\"}', 'upc' => '884720013126', 'provider' => 'bestbuy'],\n ['name' => \"Long Player - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-player-cd/1489909.p?id=81868&skuId=1489909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489909_sa.jpg\"}', 'upc' => '075992619127', 'provider' => 'bestbuy'],\n ['name' => \"Nod Is As Good As A Wink - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nod-is-as-good-as-a-wink-cd/1489972.p?id=2276597&skuId=1489972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489972_sa.jpg\"}', 'upc' => '075992592925', 'provider' => 'bestbuy'],\n ['name' => \"Ooh La La - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ooh-la-la-cd/1489981.p?id=81869&skuId=1489981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1489981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1489\\/1489981_sa.jpg\"}', 'upc' => '075992636827', 'provider' => 'bestbuy'],\n ['name' => \"Amoroso/Brasil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amoroso-brasil-cd/1490014.p?id=66657&skuId=1490014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1490014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1490\\/1490014_sa.jpg\"}', 'upc' => '093624516521', 'provider' => 'bestbuy'],\n ['name' => \"Hey, Ludwig! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hey-ludwig-cd/1490201.p?id=319320&skuId=1490201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1490201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1490\\/1490201_sa.jpg\"}', 'upc' => '093624253723', 'provider' => 'bestbuy'],\n ['name' => \"Beneath the Rhythm and Sound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beneath-the-rhythm-and-sound-cd/1490381.p?id=93780&skuId=1490381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1490381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1490\\/1490381.jpg\"}', 'upc' => '093624536925', 'provider' => 'bestbuy'],\n ['name' => \"Urban Renewal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urban-renewal-cd/1490700.p?id=102096&skuId=1490700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1490700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1490\\/1490700_sa.jpg\"}', 'upc' => '075992634922', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Tony Joe White - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-tony-joe-white-cd/1490755.p?id=103919&skuId=1490755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1490755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1490\\/1490755_sa.jpg\"}', 'upc' => '093624530527', 'provider' => 'bestbuy'],\n ['name' => \"All Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-out-cd/1490791.p?id=104428&skuId=1490791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1490791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1490\\/1490791_sa.jpg\"}', 'upc' => '093624521327', 'provider' => 'bestbuy'],\n ['name' => \"Express Yourself: The Best of Charles Wright... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/express-yourself-the-best-of-charles-wright-cd/1490826.p?id=104765&skuId=1490826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1490826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1490\\/1490826_sa.jpg\"}', 'upc' => '093624530626', 'provider' => 'bestbuy'],\n ['name' => \"Monopoly Family Fun Pack - PRE-OWNED - Xbox One\", 'description_short' => \"Become a tycoon with property-snagging, fast-dealing fun\", 'description_long' => \"Become a tycoon with property-snagging, fast-dealing fun\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monopoly-family-fun-pack-pre-owned-xbox-one/1491002.p?id=1219499661137&skuId=1491002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491002_sa.jpg\"}', 'upc' => '799007841425', 'provider' => 'bestbuy'],\n ['name' => \"Nothing to Lose [Deluxe Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-to-lose-deluxe-edition-digipak-cd/1491012.p?id=2721781&skuId=1491012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491012_sa.jpg\"}', 'upc' => '888837525527', 'provider' => 'bestbuy'],\n ['name' => \"Rhythm & Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rhythm-blues-cd/1491021.p?id=2753160&skuId=1491021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491021_sa.jpg\"}', 'upc' => '888837175920', 'provider' => 'bestbuy'],\n ['name' => \"Blood of Redemption (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blood-of-redemption-dvd/1491058.p?id=2728567&skuId=1491058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491058_sa.jpg\"}', 'upc' => '741952755197', 'provider' => 'bestbuy'],\n ['name' => \"Blood of Redemption (Blu-ray Disc) (2 Disc) (Bonus DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blood-of-redemption-blu-ray-disc-2-disc-bonus-dvd/1491146.p?id=2728567&skuId=1491146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491146_sa.jpg\"}', 'upc' => '741952755296', 'provider' => 'bestbuy'],\n ['name' => \"Java Heat (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/java-heat-blu-ray-disc/1491155.p?id=2734239&skuId=1491155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491155_sa.jpg\"}', 'upc' => '030306191195', 'provider' => 'bestbuy'],\n ['name' => \"The Last Drag - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-drag-cd/1491362.p?id=97816&skuId=1491362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491362_sa.jpg\"}', 'upc' => '744626000524', 'provider' => 'bestbuy'],\n ['name' => \"The Samples - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-samples-cd/1491371.p?id=97815&skuId=1491371&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491371_sa.jpg\"}', 'upc' => '744626000326', 'provider' => 'bestbuy'],\n ['name' => \"Scenic Route (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scenic-route-dvd/1491437.p?id=2719690&skuId=1491437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491437_sa.jpg\"}', 'upc' => '037117076833', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Triple H - Thy Kingdom Come (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-triple-h-thy-kingdom-come-blu-ray-disc-2-disc/1491455.p?id=2721827&skuId=1491455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491455_sa.jpg\"}', 'upc' => '651191951697', 'provider' => 'bestbuy'],\n ['name' => \"China Beach: Season 1 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/china-beach-season-1-3-discs-dvd/1491464.p?id=2743683&skuId=1491464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491464_sa.jpg\"}', 'upc' => '610583451290', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Triple H - Thy Kingdom Come (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-triple-h-thy-kingdom-come-dvd-3-disc/1491473.p?id=2721827&skuId=1491473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491473_sa.jpg\"}', 'upc' => '651191951680', 'provider' => 'bestbuy'],\n ['name' => \"V/H/S/2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-h-s-2-dvd/1491482.p?id=2727915&skuId=1491482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491482_sa.jpg\"}', 'upc' => '876964005937', 'provider' => 'bestbuy'],\n ['name' => \"Targus - USB 3.0 Docking Station - Black\", 'description_short' => \"Compatible with select operating systems; 3 USB 3.0 ports; Gigabit Ethernet port; audio in/out port; DVI-I-to-VGA adapter; DVI-I video port\", 'description_long' => \"Compatible with select operating systems; 3 USB 3.0 ports; Gigabit Ethernet port; audio in/out port; DVI-I-to-VGA adapter; DVI-I video port\", 'price' => 79.99, 'sale_price' => 43.99, 'url' => 'http://www.bestbuy.com/site/targus-usb-3-0-docking-station-black/1491491.p?id=1219052304517&skuId=1491491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491491_sa.jpg\"}', 'upc' => '092636288280', 'provider' => 'bestbuy'],\n ['name' => \"Frigidaire Professional - 10-Cup Coffeemaker - Stainless-Steel\", 'description_short' => \"Pro-Select LCD display; strength selector; PowerPlus brewing system; carbon water filter; gold-tone filter; 24-hour timer; thermal, stainless-steel carafe\", 'description_long' => \"Pro-Select LCD display; strength selector; PowerPlus brewing system; carbon water filter; gold-tone filter; 24-hour timer; thermal, stainless-steel carafe\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frigidaire-professional-10-cup-coffeemaker-stainless-steel/1491598.p?id=1219052304516&skuId=1491598&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491598', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491598_sa.jpg\"}', 'upc' => '023169135925', 'provider' => 'bestbuy'],\n ['name' => \"Crash City Mayhem - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Leave a path of mayhem wherever your tires take you\", 'description_long' => \"Leave a path of mayhem wherever your tires take you\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crash-city-mayhem-pre-owned-nintendo-3ds/1491631.p?id=1219052964086&skuId=1491631&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491631', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491631_sa.jpg\"}', 'upc' => '799007834922', 'provider' => 'bestbuy'],\n ['name' => \"In Control - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-control-cd/1491781.p?id=78593&skuId=1491781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491781_sa.jpg\"}', 'upc' => '090431543726', 'provider' => 'bestbuy'],\n ['name' => \"Cajun Dance Favorites - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajun-dance-favorites-cd-various/1491852.p?id=76559&skuId=1491852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491852.jpg\"}', 'upc' => '046346610428', 'provider' => 'bestbuy'],\n ['name' => \"Masterpiece: Downton Abbey - Seasons 1, 2 & 3 [9 Discs] [Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/masterpiece-downton-abbey-seasons-1-2-3-9-discs-blu-ray-blu-ray-disc/1491859.p?id=2752760&skuId=1491859&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491859', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491859.jpg\"}', 'upc' => '841887019422', 'provider' => 'bestbuy'],\n ['name' => \"Lift Off - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lift-off-cd/1491861.p?id=66934&skuId=1491861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491861.jpg\"}', 'upc' => '091454031924', 'provider' => 'bestbuy'],\n ['name' => \"Mama's Family: The Complere First Season [3 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mamas-family-the-complere-first-season-3-discs-dvd/1491913.p?id=2725065&skuId=1491913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491913.jpg\"}', 'upc' => '610583460391', 'provider' => 'bestbuy'],\n ['name' => \"Char-Broil - CB940X Charcoal Grill - Black\", 'description_short' => \"540 sq. in. cooking area; preseasoned cast-iron cooking grates; adjustable-height fire grate; front-access door; 2 adjustable dampers; 3&quot; temperature gauge; removable wooden side shelves; bottom shelf; wheels; casters\", 'description_long' => \"540 sq. in. cooking area; preseasoned cast-iron cooking grates; adjustable-height fire grate; front-access door; 2 adjustable dampers; 3&quot; temperature gauge; removable wooden side shelves; bottom shelf; wheels; casters\", 'price' => 529.99, 'sale_price' => 476.99, 'url' => 'http://www.bestbuy.com/site/char-broil-cb940x-charcoal-grill-black/1491922.p?id=1219052514721&skuId=1491922', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491922', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491922_rc.jpg\"}', 'upc' => '099143013909', 'provider' => 'bestbuy'],\n ['name' => \"Char-Broil - Classic C-220 Gas Grill - Black\", 'description_short' => \"30,000 BTUs of heat; 300 sq. in. primary and 120 sq. in. secondary cooking areas; electronic ignition system; porcelain-coated cast-iron grates; porcelain-coated-steel lid and firebox; side shelves; 4 casters\", 'description_long' => \"30,000 BTUs of heat; 300 sq. in. primary and 120 sq. in. secondary cooking areas; electronic ignition system; porcelain-coated cast-iron grates; porcelain-coated-steel lid and firebox; side shelves; 4 casters\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/char-broil-classic-c-220-gas-grill-black/1491931.p?id=1219052517390&skuId=1491931', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491931_rc.jpg\"}', 'upc' => '047362362254', 'provider' => 'bestbuy'],\n ['name' => \"Char-Broil - Classic C-453 Gas Grill - Black\", 'description_short' => \"40,000 BTUs of heat; lidded side burner; electronic ignition system; porcelain-coated cast-iron grates; painted-metal side shelves; temperature gauge; wheels\", 'description_long' => \"40,000 BTUs of heat; lidded side burner; electronic ignition system; porcelain-coated cast-iron grates; painted-metal side shelves; temperature gauge; wheels\", 'price' => 249.99, 'sale_price' => 224.99, 'url' => 'http://www.bestbuy.com/site/char-broil-classic-c-453-gas-grill-black/1491959.p?id=1219052517266&skuId=1491959&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491959', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491959_rc.jpg\"}', 'upc' => '047362343628', 'provider' => 'bestbuy'],\n ['name' => \"Char-Broil - Classic C-343 Gas Grill - Black\", 'description_short' => \"39,000 BTUs of heat; 420 sq. in. primary and 120 sq. in. secondary cooking areas; electronic ignition system; porcelain-coated stamped-steel grates; porcelain-coated-steel lid and firebox; temperature gauge; wheels\", 'description_long' => \"39,000 BTUs of heat; 420 sq. in. primary and 120 sq. in. secondary cooking areas; electronic ignition system; porcelain-coated stamped-steel grates; porcelain-coated-steel lid and firebox; temperature gauge; wheels\", 'price' => 249.99, 'sale_price' => 224.99, 'url' => 'http://www.bestbuy.com/site/char-broil-classic-c-343-gas-grill-black/1491977.p?id=1219052516442&skuId=1491977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491977_rc.jpg\"}', 'upc' => '047362333469', 'provider' => 'bestbuy'],\n ['name' => \"Char-Broil - C-211 Gas Grill - Black\", 'description_short' => \"26,500 BTUs of heat; Piezo ignition system; porcelain-coated wire grates; porcelain-coated-steel lid and firebox; plastic side shelves; tool hooks; 6&quot; wheels\", 'description_long' => \"26,500 BTUs of heat; Piezo ignition system; porcelain-coated wire grates; porcelain-coated-steel lid and firebox; plastic side shelves; tool hooks; 6&quot; wheels\", 'price' => 129.99, 'sale_price' => 116.99, 'url' => 'http://www.bestbuy.com/site/char-broil-c-211-gas-grill-black/1491986.p?id=1219052516320&skuId=1491986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491986_rc.jpg\"}', 'upc' => '047362366610', 'provider' => 'bestbuy'],\n ['name' => \"Char-Broil - Patio Bistro 180 Electric Grill - Black\", 'description_short' => \"TRU-Infrared cooking system; 1500W of power; 245 sq. in. total cooking area; 2 porcelain-coated cooking grates\", 'description_long' => \"TRU-Infrared cooking system; 1500W of power; 245 sq. in. total cooking area; 2 porcelain-coated cooking grates\", 'price' => 179.99, 'sale_price' => 161.99, 'url' => 'http://www.bestbuy.com/site/char-broil-patio-bistro-180-electric-grill-black/1491995.p?id=1219052515812&skuId=1491995', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1491995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1491\\/1491995_rc.jpg\"}', 'upc' => '099143017112', 'provider' => 'bestbuy'],\n ['name' => \"Watch Dogs - PRE-OWNED - Nintendo Wii U\", 'description_short' => \"Use the city of Chicago as your ultimate weapon and exact your own style of revenge\", 'description_long' => \"Use the city of Chicago as your ultimate weapon and exact your own style of revenge\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/watch-dogs-pre-owned-nintendo-wii-u/1492001.p?id=1219499662555&skuId=1492001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1492001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1492\\/1492001_sa.jpg\"}', 'upc' => '799007841432', 'provider' => 'bestbuy'],\n ['name' => \"Runaround Sue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/runaround-sue-cd/1492236.p?id=80512&skuId=1492236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1492236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1492\\/1492236.jpg\"}', 'upc' => '724382730422', 'provider' => 'bestbuy'],\n ['name' => \"Office: Digital Shorts Collection (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/office-digital-shorts-collection-dvd/1492436.p?id=2148875&skuId=1492436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1492436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1492\\/1492436.jpg\"}', 'upc' => '025192075483', 'provider' => 'bestbuy'],\n ['name' => \"First Step - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-step-cd/1492502.p?id=99202&skuId=1492502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1492502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1492\\/1492502_sa.jpg\"}', 'upc' => '075992637626', 'provider' => 'bestbuy'],\n ['name' => \"Vs. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vs-cd/1492520.p?id=94587&skuId=1492520&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1492520', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1492\\/1492520_sa.jpg\"}', 'upc' => '074645313627', 'provider' => 'bestbuy'],\n ['name' => \"Duracell - AAA Batteries (8-Pack) - Black\", 'description_short' => \"Compatible with select electronic devices; AAA size; DURALOCK Power Preserve technology; 8-pack\", 'description_long' => \"Compatible with select electronic devices; AAA size; DURALOCK Power Preserve technology; 8-pack\", 'price' => 7.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duracell-aaa-batteries-8-pack-black/1492717.p?id=1051384046152&skuId=1492717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1492717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1492\\/1492717_sa.jpg\"}', 'upc' => '041333844015', 'provider' => 'bestbuy'],\n ['name' => \"Russound - SaphIR Tabletop IR Receiver Kit\", 'description_short' => \"From our expanded online assortment; IR receiver; connecting block; 4 IR emitters\", 'description_long' => \"From our expanded online assortment; IR receiver; connecting block; 4 IR emitters\", 'price' => 114.99, 'sale_price' => 79.99, 'url' => 'http://www.bestbuy.com/site/russound-saphir-tabletop-ir-receiver-kit/1492967.p?id=1218262971134&skuId=1492967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1492967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1492\\/1492967_sa.jpg\"}', 'upc' => '612934521508', 'provider' => 'bestbuy'],\n ['name' => \"Escape Dead Island - PRE-OWNED - PlayStation 3\", 'description_short' => \"Solve the mystery of the strange zombie outbreak on Dead Island\", 'description_long' => \"Solve the mystery of the strange zombie outbreak on Dead Island\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/escape-dead-island-pre-owned-playstation-3/1493019.p?id=1219499664956&skuId=1493019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493019_sa.jpg\"}', 'upc' => '799007841449', 'provider' => 'bestbuy'],\n ['name' => \"Oral-B - Professional Care 1000 Electric Toothbrush - White/Blue\", 'description_short' => \"Rechargeable; pulsating round brush head; 1 cleaning mode\", 'description_long' => \"Rechargeable; pulsating round brush head; 1 cleaning mode\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oral-b-professional-care-1000-electric-toothbrush-white-blue/1493375.p?id=1218262971135&skuId=1493375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493375_rc.jpg\"}', 'upc' => '069055859636', 'provider' => 'bestbuy'],\n ['name' => \"CAD - Microphone - Gold\", 'description_short' => \"Mono - 30 Hz to 12 kHz - Wired - Dynamic - Desktop\", 'description_long' => \"Mono - 30 Hz to 12 kHz - Wired - Dynamic - Desktop\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cad-microphone-gold/1493523.p?id=1218263929111&skuId=1493523', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493523_sa.jpg\"}', 'upc' => '631922100921', 'provider' => 'bestbuy'],\n ['name' => \"CAD Audio - Microphone - Black\", 'description_short' => \"20 Hz to 20 kHz - Wired - XLR - Nickel Plated\", 'description_long' => \"20 Hz to 20 kHz - Wired - XLR - Nickel Plated\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cad-audio-microphone-black/1493532.p?id=1218263931322&skuId=1493532', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493532_sa.jpg\"}', 'upc' => '631922101102', 'provider' => 'bestbuy'],\n ['name' => \"CAD - Microphone - Black\", 'description_short' => \"Desktop - Cable\", 'description_long' => \"Desktop - Cable\", 'price' => 69.99, 'sale_price' => 55.99, 'url' => 'http://www.bestbuy.com/site/cad-microphone-black/1493541.p?id=1218263930672&skuId=1493541', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493541_sa.jpg\"}', 'upc' => '631922103731', 'provider' => 'bestbuy'],\n ['name' => \"CAD - USB Stereo Headset - Black\", 'description_short' => \"Wired Connectivity - Stereo - Over-the-head\", 'description_long' => \"Wired Connectivity - Stereo - Over-the-head\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cad-usb-stereo-headset-black/1493569.p?id=1218263932115&skuId=1493569', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493569_rc.jpg\"}', 'upc' => '631922103656', 'provider' => 'bestbuy'],\n ['name' => \"CAD - Microphone - Black\", 'description_short' => \"Dynamic - Handheld - Cable\", 'description_long' => \"Dynamic - Handheld - Cable\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cad-microphone-black/1493587.p?id=1218263932044&skuId=1493587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493587_sa.jpg\"}', 'upc' => '631922103649', 'provider' => 'bestbuy'],\n ['name' => \"MXL - Studio 24 USB Microphone - Silver\", 'description_short' => \"Compatible with PC and Mac; 24-bit audio quality; 22mm condenser capsule; USB connectivity; home recording kit\", 'description_long' => \"Compatible with PC and Mac; 24-bit audio quality; 22mm condenser capsule; USB connectivity; home recording kit\", 'price' => 169.99, 'sale_price' => 150.99, 'url' => 'http://www.bestbuy.com/site/mxl-studio-24-usb-microphone-silver/1493596.p?id=1218263933112&skuId=1493596', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493596_sa.jpg\"}', 'upc' => '801813142341', 'provider' => 'bestbuy'],\n ['name' => \"CAD - Microphone - Black\", 'description_short' => \"Detachable - 20Hz to 20kHz - Cable\", 'description_long' => \"Detachable - 20Hz to 20kHz - Cable\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cad-microphone-black/1493602.p?id=1218263934101&skuId=1493602', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493602_sa.jpg\"}', 'upc' => '631922103526', 'provider' => 'bestbuy'],\n ['name' => \"La Divina - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-divina-cd/1493609.p?id=1678091&skuId=1493609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493609.jpg\"}', 'upc' => '077775470222', 'provider' => 'bestbuy'],\n ['name' => \"CAD - Multipattern Side-Address Studio Microphone - Black\", 'description_short' => \"From our expanded online assortment; multipattern design; large diaphragm; hi-pass filter and attenuator\", 'description_long' => \"From our expanded online assortment; multipattern design; large diaphragm; hi-pass filter and attenuator\", 'price' => 119.99, 'sale_price' => 100.99, 'url' => 'http://www.bestbuy.com/site/cad-multipattern-side-address-studio-microphone-black/1493611.p?id=1218263931973&skuId=1493611', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493611_sa.jpg\"}', 'upc' => '631922102925', 'provider' => 'bestbuy'],\n ['name' => \"ChargeIt - Power Flask Portable Charger - Black with Red Stitching\", 'description_short' => \"CHARGEIT Power Flask Portable Charger: Compatible with most USB-enabled devices; charges up to 3 devices simultaneously; bi-cast leather casing; 13,000 mAh capacity; LED indicator lights; LED flashlight\", 'description_long' => \"CHARGEIT Power Flask Portable Charger: Compatible with most USB-enabled devices; charges up to 3 devices simultaneously; bi-cast leather casing; 13,000 mAh capacity; LED indicator lights; LED flashlight\", 'price' => 49.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chargeit-power-flask-portable-charger-black-with-red-stitching/1493757.p?id=1219052695778&skuId=1493757', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493757_sa.jpg\"}', 'upc' => '671196086507', 'provider' => 'bestbuy'],\n ['name' => \"A Ti, Colombia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-ti-colombia-cd/1493798.p?id=79420&skuId=1493798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493798.jpg\"}', 'upc' => '096297038826', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - Props Extended Battery Power Case for Select Apple® iPad® Models - Black\", 'description_short' => \"Compatible with Apple iPad 2, iPad 3rd generation and iPad with Retina; PU-leather material; built-in rechargeable battery; folding front cover\", 'description_long' => \"Compatible with Apple iPad 2, iPad 3rd generation and iPad with Retina; PU-leather material; built-in rechargeable battery; folding front cover\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-treasures-props-extended-battery-power-case-for-select-apple-ipad-models-black/1493839.p?id=1219052701567&skuId=1493839', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493839', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493839_sa.jpg\"}', 'upc' => '671196202464', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - PocketPro Padfolio Case for 13\\\" Apple® MacBook® Pro and MacBook Air® - Black/Red\", 'description_short' => \"Compatible with 13&quot; Apple MacBook Pro and MacBook Air and select 14&quot; Ultrabook laptops; PU-leather material; multiple pockets; strap closure\", 'description_long' => \"Compatible with 13&quot; Apple MacBook Pro and MacBook Air and select 14&quot; Ultrabook laptops; PU-leather material; multiple pockets; strap closure\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-treasures-pocketpro-padfolio-case-for-13-apple-macbook-pro-and-macbook-air-black-red/1493857.p?id=1219052700714&skuId=1493857', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493857', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493857_sa.jpg\"}', 'upc' => '671196088501', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - Slipit! Pro Case for Most 10\\\" Tablets - Black/Red\", 'description_short' => \"Compatible with most 10&quot; tablets; microsuede material; zippered front pocket; zippered back document pocket; heavy-gauge, wraparound handle strap\", 'description_long' => \"Compatible with most 10&quot; tablets; microsuede material; zippered front pocket; zippered back document pocket; heavy-gauge, wraparound handle strap\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-treasures-slipit-pro-case-for-most-10-tablets-black-red/1493884.p?id=1219052696359&skuId=1493884', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493884_sa.jpg\"}', 'upc' => '671196084909', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - ChargeIt! Portable Power Pack - Blue\", 'description_short' => \"Compatible with select portable devices, including select Apple&#174; iPhone&#174; and iPod&#174; models, digital cameras and more; charges your device on the go; uses 4 AA batteries (included); household battery charger\", 'description_long' => \"Compatible with select portable devices, including select Apple&#174; iPhone&#174; and iPod&#174; models, digital cameras and more; charges your device on the go; uses 4 AA batteries (included); household battery charger\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-treasures-chargeit-portable-power-pack-blue/1493939.p?id=1219052696870&skuId=1493939', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493939_sa.jpg\"}', 'upc' => '671196088570', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - ChargeIt! Portable Power Pack - Black\", 'description_short' => \"Compatible with select portable devices, including select Apple&#174; iPhone&#174; and iPod&#174; models, digital cameras and more; charges your device on the go; uses 4 AA batteries (included); household battery charger\", 'description_long' => \"Compatible with select portable devices, including select Apple&#174; iPhone&#174; and iPod&#174; models, digital cameras and more; charges your device on the go; uses 4 AA batteries (included); household battery charger\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-treasures-chargeit-portable-power-pack-black/1493975.p?id=1219052693258&skuId=1493975', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493975_sa.jpg\"}', 'upc' => '671196088587', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - PocketPro Hard Shell Case for Most 7\\\" Tablets - Black/Red\", 'description_short' => \"Compatible with most 7&quot; tablets, including Kindle Fire, Dell Streak and Samsung Galaxy Tab models; EVA outer shell; velvet interior; mesh pocket; deep interior pocket; dual zippers\", 'description_long' => \"Compatible with most 7&quot; tablets, including Kindle Fire, Dell Streak and Samsung Galaxy Tab models; EVA outer shell; velvet interior; mesh pocket; deep interior pocket; dual zippers\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-treasures-pocketpro-hard-shell-case-for-most-7-tablets-black-red/1493984.p?id=1219052699664&skuId=1493984', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493984_sa.jpg\"}', 'upc' => '671196084893', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - ScreenPristine Miracle Roller Cleaner for Most Touch-Screen Tablets and Mobile Phones - Blue\", 'description_short' => \"Compatible with most touch-screen tablets and mobile phones; removes fingerprints, smudges and smears; ABS plastic\", 'description_long' => \"Compatible with most touch-screen tablets and mobile phones; removes fingerprints, smudges and smears; ABS plastic\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-treasures-screenpristine-miracle-roller-cleaner-for-most-touch-screen-tablets-and-mobile-phones-blue/1493993.p?id=1219052693257&skuId=1493993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1493993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1493\\/1493993_sa.jpg\"}', 'upc' => '671196085395', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Mobile LED Light Strip Kit - Red/Green/Blue\", 'description_short' => \"METRA Mobile LED Light Strip Kit: 150 multicolor LED lights; motion and pattern control; 24-key IR remote and RGB controller; single-contact base\", 'description_long' => \"METRA Mobile LED Light Strip Kit: 150 multicolor LED lights; motion and pattern control; 24-key IR remote and RGB controller; single-contact base\", 'price' => 74.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-mobile-led-light-strip-kit-red-green-blue/1494009.p?id=1219499660681&skuId=1494009', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494009_sa.jpg\"}', 'upc' => '086429277506', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 3.3' LED Light Strip - Red\", 'description_short' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-3-3-led-light-strip-red/1494018.p?id=1219499661837&skuId=1494018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494018_sa.jpg\"}', 'upc' => '086429265725', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 16.4' LED Light Strip - Red\", 'description_short' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-16-4-led-light-strip-red/1494027.p?id=1219499662161&skuId=1494027', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494027_sa.jpg\"}', 'upc' => '086429265862', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - PocketPro Hard Shell XL Case for Most 7\\\" Tablets - Black/Red\", 'description_short' => \"Compatible with most 7&quot; tablets, including Apple&#174; iPad&#174; mini and Kindle Fire HD; EVA outer shell; velvet interior; soft-mesh pocket; deep interior pocket; wrist strap; dual zippers\", 'description_long' => \"Compatible with most 7&quot; tablets, including Apple&#174; iPad&#174; mini and Kindle Fire HD; EVA outer shell; velvet interior; soft-mesh pocket; deep interior pocket; wrist strap; dual zippers\", 'price' => 19.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/digital-treasures-pocketpro-hard-shell-xl-case-for-most-7-tablets-black-red/1494028.p?id=1219052696730&skuId=1494028', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494028_sa.jpg\"}', 'upc' => '671196087498', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 3.3' LED Light Strip - White\", 'description_short' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-3-3-led-light-strip-white/1494036.p?id=1219499663274&skuId=1494036', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494036_sa.jpg\"}', 'upc' => '086429265701', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 16.4' LED Light Strip - Amber\", 'description_short' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-16-4-led-light-strip-amber/1494045.p?id=1219499659737&skuId=1494045', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494045_sa.jpg\"}', 'upc' => '086429265879', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 16.4' LED Light Strip - Green\", 'description_short' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-16-4-led-light-strip-green/1494054.p?id=1219499659738&skuId=1494054', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494054_sa.jpg\"}', 'upc' => '086429265886', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 3.3' LED Light Strip - Purple\", 'description_short' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-3-3-led-light-strip-purple/1494063.p?id=1219499659736&skuId=1494063', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494063_sa.jpg\"}', 'upc' => '086429265756', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - PocketPro Padfolio Case for 13\\\" Apple® MacBook® Pro and MacBook Air® - Black/Red\", 'description_short' => \"Compatible with 13&quot; Apple MacBook Pro and MacBook Air and select 13.3&quot; Ultrabook laptops; PU-leather material; multiple pockets; strap closure\", 'description_long' => \"Compatible with 13&quot; Apple MacBook Pro and MacBook Air and select 13.3&quot; Ultrabook laptops; PU-leather material; multiple pockets; strap closure\", 'price' => 49.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/digital-treasures-pocketpro-padfolio-case-for-13-apple-macbook-pro-and-macbook-air-black-red/1494064.p?id=1219052696190&skuId=1494064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494064_sa.jpg\"}', 'upc' => '671196085982', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 16.4' LED Light Strip - Purple\", 'description_short' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-16-4-led-light-strip-purple/1494072.p?id=1219499660743&skuId=1494072', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494072_sa.jpg\"}', 'upc' => '086429265893', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 16.4' LED Light Strip - White\", 'description_short' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-16-4-led-light-strip-white/1494081.p?id=1219499659735&skuId=1494081', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494081_sa.jpg\"}', 'upc' => '086429265848', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - ChargeIt! Portable Power Pack - Red\", 'description_short' => \"Compatible with select portable devices, including select Apple&#174; iPhone&#174; and iPod&#174; models, digital cameras and more; charges your device on the go; uses 4 AA batteries (included); household battery charger\", 'description_long' => \"Compatible with select portable devices, including select Apple&#174; iPhone&#174; and iPod&#174; models, digital cameras and more; charges your device on the go; uses 4 AA batteries (included); household battery charger\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-treasures-chargeit-portable-power-pack-red/1494082.p?id=1219052693256&skuId=1494082', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494082_sa.jpg\"}', 'upc' => '671196088563', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 16.4' LED Light Strip - Blue\", 'description_short' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-16-4-led-light-strip-blue/1494105.p?id=1219499664829&skuId=1494105', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494105_sa.jpg\"}', 'upc' => '086429265855', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 3.3' LED Light Strip - Blue\", 'description_short' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-3-3-led-light-strip-blue/1494114.p?id=1219499662944&skuId=1494114', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494114_sa.jpg\"}', 'upc' => '086429265718', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - Props Extended Battery Power Case for Apple® iPad® mini - Black\", 'description_short' => \"Compatible with Apple iPad mini; PU-leather material; built-in rechargeable battery; folding front cover; ergonomic folio-style design\", 'description_long' => \"Compatible with Apple iPad mini; PU-leather material; built-in rechargeable battery; folding front cover; ergonomic folio-style design\", 'price' => 79.99, 'sale_price' => 54.99, 'url' => 'http://www.bestbuy.com/site/digital-treasures-props-extended-battery-power-case-for-apple-ipad-mini-black/1494116.p?id=1219052699252&skuId=1494116', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494116_sa.jpg\"}', 'upc' => '671196202457', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 9.8' LED Light Strip - Pink\", 'description_short' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-9-8-led-light-strip-pink/1494123.p?id=1219499663857&skuId=1494123', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494123_sa.jpg\"}', 'upc' => '086429265831', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 9.8' LED Light Strip - Amber\", 'description_short' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-9-8-led-light-strip-amber/1494132.p?id=1219499663989&skuId=1494132', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494132_sa.jpg\"}', 'upc' => '086429265800', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 9.8' LED Light Strip - Purple\", 'description_short' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-9-8-led-light-strip-purple/1494141.p?id=1219499663208&skuId=1494141', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494141_sa.jpg\"}', 'upc' => '086429265824', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - Props Keyboard Case for Apple® iPad® mini - Black\", 'description_short' => \"Compatible with Apple iPad mini; PU-leather material; Bluetooth keyboard; 59-key pad; 13 dedicated iPad mini keys\", 'description_long' => \"Compatible with Apple iPad mini; PU-leather material; Bluetooth keyboard; 59-key pad; 13 dedicated iPad mini keys\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-treasures-props-keyboard-case-for-apple-ipad-mini-black/1494152.p?id=1219052695649&skuId=1494152', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494152_sa.jpg\"}', 'upc' => '671196202471', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Sideview 2' LED Light Strips (2-Pack) - White\", 'description_short' => \"METRA Sideview 2&#039; LED Light Strips (2-Pack): 60 LEDs per light strip; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA Sideview 2&#039; LED Light Strips (2-Pack): 60 LEDs per light strip; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-sideview-2-led-light-strips-2-pack-white/1494169.p?id=1219499663010&skuId=1494169', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494169_sa.jpg\"}', 'upc' => '086429265916', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 9.8' LED Light Strip - Red\", 'description_short' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-9-8-led-light-strip-red/1494178.p?id=1219499661965&skuId=1494178', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494178_sa.jpg\"}', 'upc' => '086429265794', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 16.4' LED Light Strip - Pink\", 'description_short' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 16.4&#039; LED Light Strip: 300 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-16-4-led-light-strip-pink/1494187.p?id=1219499664116&skuId=1494187', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494187_sa.jpg\"}', 'upc' => '086429265909', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 3.3' LED Light Strip - Green\", 'description_short' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-3-3-led-light-strip-green/1494201.p?id=1219499663141&skuId=1494201', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494201_sa.jpg\"}', 'upc' => '086429265749', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 3.3' LED Light Strip - Amber\", 'description_short' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-3-3-led-light-strip-amber/1494229.p?id=1219499661005&skuId=1494229', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494229_sa.jpg\"}', 'upc' => '086429265732', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 3.3' LED Light Strip - Pink\", 'description_short' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 3.3&#039; LED Light Strip: 60 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-3-3-led-light-strip-pink/1494238.p?id=1219499660874&skuId=1494238', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494238_sa.jpg\"}', 'upc' => '086429265763', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 9.8' LED Light Strip - White\", 'description_short' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-9-8-led-light-strip-white/1494247.p?id=1219499661707&skuId=1494247', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494247_sa.jpg\"}', 'upc' => '086429265770', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 9.8' LED Light Strip - Green\", 'description_short' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'description_long' => \"METRA 9.8&#039; LED Light Strip: 180 LEDs; 120-degree viewing angle; water- and weather-resistant design; can be cut every 3rd LED; includes 3M double-sided tape\", 'price' => 35.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-9-8-led-light-strip-green/1494256.p?id=1219499664891&skuId=1494256', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494256_sa.jpg\"}', 'upc' => '086429265817', 'provider' => 'bestbuy'],\n ['name' => \"Escape Dead Island - PRE-OWNED - Xbox 360\", 'description_short' => \"Solve the mystery of the strange zombie outbreak on Dead Island\", 'description_long' => \"Solve the mystery of the strange zombie outbreak on Dead Island\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/escape-dead-island-pre-owned-xbox-360/1494274.p?id=1219499665770&skuId=1494274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494274_sa.jpg\"}', 'upc' => '799007841456', 'provider' => 'bestbuy'],\n ['name' => \"Hello Kitty - Polycarbonate Cover for Apple® iPhone® 5 - Black/Pink\", 'description_short' => \"Compatible with Apple iPhone 5; polycarbonate material; close-fitting, slip-on design; Hello Kitty design\", 'description_long' => \"Compatible with Apple iPhone 5; polycarbonate material; close-fitting, slip-on design; Hello Kitty design\", 'price' => 19.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/hello-kitty-polycarbonate-cover-for-apple-iphone-5-black-pink/1494407.p?id=1219052700247&skuId=1494407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494407_sa.jpg\"}', 'upc' => '077283058967', 'provider' => 'bestbuy'],\n ['name' => \"Quietly There: Zoot Sims Plays Johnny Mandel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quietly-there-zoot-sims-plays-johnny-mandel-cd/1494430.p?id=70978&skuId=1494430&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494430', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494430.jpg\"}', 'upc' => '025218678728', 'provider' => 'bestbuy'],\n ['name' => \"In Washington, D.C., Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-washington-d-c--vol-1-cd/1494449.p?id=72249&skuId=1494449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494449.jpg\"}', 'upc' => '025218678223', 'provider' => 'bestbuy'],\n ['name' => \"Chops - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chops-cd/1494467.p?id=69829&skuId=1494467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494467_sa.jpg\"}', 'upc' => '025218678629', 'provider' => 'bestbuy'],\n ['name' => \"The Timekeepers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-timekeepers-cd/1494476.p?id=64072&skuId=1494476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494476_sa.jpg\"}', 'upc' => '025218679022', 'provider' => 'bestbuy'],\n ['name' => \"Ain't But a Few of Us Left - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aint-but-a-few-of-us-left-cd/1494485.p?id=67770&skuId=1494485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494485.jpg\"}', 'upc' => '025218678520', 'provider' => 'bestbuy'],\n ['name' => \"The World Is Yours [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-world-is-yours-pa-cd/1494644.p?id=98012&skuId=1494644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1494644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1494\\/1494644_sa.jpg\"}', 'upc' => '724384036126', 'provider' => 'bestbuy'],\n ['name' => \"LittleBigPlanet 3 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Join Sackboy and three brand-new friends on a fun-filled journey across the Imagisphere\", 'description_long' => \"Join Sackboy and three brand-new friends on a fun-filled journey across the Imagisphere\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/littlebigplanet-3-pre-owned-playstation-3/1495008.p?id=1219499659730&skuId=1495008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1495008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1495\\/1495008_sa.jpg\"}', 'upc' => '799007841463', 'provider' => 'bestbuy'],\n ['name' => \"Music For Brass Ensemble - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-brass-ensemble-various-cd/1495108.p?id=1492751&skuId=1495108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1495108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1495\\/1495108.jpg\"}', 'upc' => '750582843426', 'provider' => 'bestbuy'],\n ['name' => \"Serenissima 2 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serenissima-2-various-cd/1495126.p?id=1586612&skuId=1495126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1495126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1495\\/1495126.jpg\"}', 'upc' => '750582843020', 'provider' => 'bestbuy'],\n ['name' => \"Music For Piano & Orchestra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-piano-orchestra-cd/1495135.p?id=1766495&skuId=1495135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1495135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1495\\/1495135.jpg\"}', 'upc' => '750582843228', 'provider' => 'bestbuy'],\n ['name' => \"Four Ballades - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/four-ballades-cd/1495144.p?id=1784713&skuId=1495144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1495144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582843327', 'provider' => 'bestbuy'],\n ['name' => \"Music For Organ & Piano - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-organ-piano-various-cd/1495162.p?id=1586613&skuId=1495162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1495162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1495\\/1495162.jpg\"}', 'upc' => '750582842627', 'provider' => 'bestbuy'],\n ['name' => \"Baltic Organ Music - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/baltic-organ-music-various-cd/1495171.p?id=1784714&skuId=1495171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1495171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1495\\/1495171.jpg\"}', 'upc' => '750582842726', 'provider' => 'bestbuy'],\n ['name' => \"The Age of Innocence - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-age-of-innocence-cd-original-soundtrack/1495340.p?id=72588&skuId=1495340&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1495340', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1495\\/1495340_sa.jpg\"}', 'upc' => '074645745121', 'provider' => 'bestbuy'],\n ['name' => \"Mighty Wurlitzer: Music for Movie-Palace... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mighty-wurlitzer-music-for-movie-palace-cd/1495395.p?id=1462432&skuId=1495395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1495395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1495\\/1495395.jpg\"}', 'upc' => '093228022725', 'provider' => 'bestbuy'],\n ['name' => \"Zoop Zoop Zoop: Traditional Music & Folklore... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zoop-zoop-zoop-traditional-music-folklore-cd-various/1495448.p?id=1577545&skuId=1495448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1495448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1495\\/1495448.jpg\"}', 'upc' => '093228042723', 'provider' => 'bestbuy'],\n ['name' => \"Minecraft: Xbox One Edition - PRE-OWNED - Xbox One\", 'description_short' => \"Dream up, construct and explore brilliant worlds\", 'description_long' => \"Dream up, construct and explore brilliant worlds\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/minecraft-xbox-one-edition-pre-owned-xbox-one/1496007.p?id=1219499661071&skuId=1496007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1496007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1496\\/1496007_sa.jpg\"}', 'upc' => '799007841470', 'provider' => 'bestbuy'],\n ['name' => \"Honeywell - QuietSet 16\\\" Stand Fan - Black\", 'description_short' => \"5 speed settings; oscillation; remote; auto shut-off timer; adjustable height\", 'description_long' => \"5 speed settings; oscillation; remote; auto shut-off timer; adjustable height\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honeywell-quietset-16-stand-fan-black/1496044.p?id=1218263933963&skuId=1496044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1496044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1496\\/1496044_sa.jpg\"}', 'upc' => '092926116552', 'provider' => 'bestbuy'],\n ['name' => \"Life of a Real One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/life-of-a-real-one-cd/1496330.p?id=107832&skuId=1496330&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1496330', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1496\\/1496330.jpg\"}', 'upc' => '019011416021', 'provider' => 'bestbuy'],\n ['name' => \"WWE 2K15 - PRE-OWNED - PlayStation 4\", 'description_short' => \"Step into the ring and fight your way to the gold\", 'description_long' => \"Step into the ring and fight your way to the gold\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-2k15-pre-owned-playstation-4/1497006.p?id=1219499662292&skuId=1497006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1497006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1497\\/1497006_sa.jpg\"}', 'upc' => '799007841487', 'provider' => 'bestbuy'],\n ['name' => \"Home [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-pa-cd/1497007.p?id=2677682&skuId=1497007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1497007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1497\\/1497007_sa.jpg\"}', 'upc' => '825646544752', 'provider' => 'bestbuy'],\n ['name' => \"Oro: Grandes Exitos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oro-grandes-exitos-cd/1497142.p?id=264168&skuId=1497142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1497142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1497\\/1497142_sa.jpg\"}', 'upc' => '731451995521', 'provider' => 'bestbuy'],\n ['name' => \"The Wolf Among Us - PRE-OWNED - PlayStation 3\", 'description_short' => \"Face the monster within in a world where fantasy is the only reality\", 'description_long' => \"Face the monster within in a world where fantasy is the only reality\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wolf-among-us-pre-owned-playstation-3/1498005.p?id=1219499659725&skuId=1498005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498005_sa.jpg\"}', 'upc' => '799007841494', 'provider' => 'bestbuy'],\n ['name' => \"Girls: The Complete Second Season [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/girls-the-complete-second-season-2-discs-dvd/1498121.p?id=2708849&skuId=1498121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498121_sa.jpg\"}', 'upc' => '883929319305', 'provider' => 'bestbuy'],\n ['name' => \"Without You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/without-you-cd/1498176.p?id=2731080&skuId=1498176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498176_sa.jpg\"}', 'upc' => '850700004026', 'provider' => 'bestbuy'],\n ['name' => \"I Melt with You [EP] [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-melt-with-you-ep-single-cd/1498187.p?id=1576921&skuId=1498187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498187_sa.jpg\"}', 'upc' => '016581281226', 'provider' => 'bestbuy'],\n ['name' => \"Maytag - Digital Iron - Gray\", 'description_short' => \"Smartfill removable water tank; variable steam control; precision digital thermostat; soft-touch grip; 360&#176; tangle-free cord; antiwrinkle spray; 3-second steam burst regeneration\", 'description_long' => \"Smartfill removable water tank; variable steam control; precision digital thermostat; soft-touch grip; 360&#176; tangle-free cord; antiwrinkle spray; 3-second steam burst regeneration\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maytag-digital-iron-gray/1498194.p?id=1219055398106&skuId=1498194', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498194_rc.jpg\"}', 'upc' => '852079003365', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 12,000 BTU Portable Air Conditioner - White\", 'description_short' => \"550 sq. ft. cooling capacity; 11.5 amps; RapidCool mode; sleep mode; dry mode; 253 cfm airflow rate; backlit LCD\", 'description_long' => \"550 sq. ft. cooling capacity; 11.5 amps; RapidCool mode; sleep mode; dry mode; 253 cfm airflow rate; backlit LCD\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-12000-btu-portable-air-conditioner-white/1498228.p?id=1219052967114&skuId=1498228', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498228_sa.jpg\"}', 'upc' => '885152822225', 'provider' => 'bestbuy'],\n ['name' => \"Maytag - Analog Iron - Gray\", 'description_short' => \"1500W of power; vertical steam; stainless-steel soleplate; removable Smartfill 8.1-oz. water tank; Perfect Balance with soft-touch comfort grip; antiwrinkle spray\", 'description_long' => \"1500W of power; vertical steam; stainless-steel soleplate; removable Smartfill 8.1-oz. water tank; Perfect Balance with soft-touch comfort grip; antiwrinkle spray\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maytag-analog-iron-gray/1498246.p?id=1219056251686&skuId=1498246', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498246_rc.jpg\"}', 'upc' => '852079003358', 'provider' => 'bestbuy'],\n ['name' => \"See You There [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/see-you-there-digipak-cd/1498264.p?id=2720550&skuId=1498264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498264_sa.jpg\"}', 'upc' => '822685180125', 'provider' => 'bestbuy'],\n ['name' => \"Velocity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/velocity-cd/1498273.p?id=2739905&skuId=1498273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498273_sa.jpg\"}', 'upc' => '677516138321', 'provider' => 'bestbuy'],\n ['name' => \"New Demons [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-demons-digipak-cd/1498282.p?id=2739900&skuId=1498282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498282_sa.jpg\"}', 'upc' => '817424012805', 'provider' => 'bestbuy'],\n ['name' => \"Paracosm [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paracosm-digipak-cd/1498291.p?id=2732899&skuId=1498291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498291_sa.jpg\"}', 'upc' => '098787105520', 'provider' => 'bestbuy'],\n ['name' => \"Euro-Pro - Ninja Chopper - Red\", 'description_short' => \"One-touch pulse; Ninja Blade technology; ergonomically designed power head; dishwasher-safe design; BPA-free material; includes cup, blade, lid and pulse handle\", 'description_long' => \"One-touch pulse; Ninja Blade technology; ergonomically designed power head; dishwasher-safe design; BPA-free material; includes cup, blade, lid and pulse handle\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/euro-pro-ninja-chopper-red/1498458.p?id=1219052693262&skuId=1498458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498458_500x500_sa.jpg\"}', 'upc' => '622356530866', 'provider' => 'bestbuy'],\n ['name' => \"Ninja - BL771 Mega Kitchen System - Black\", 'description_short' => \"Dishwasher-safe parts; plastic and metal materials; 72-oz. pitcher; 8-cup bowl; 3-cup prep bowl; 2 single-serve cups and lids; dough accessory\", 'description_long' => \"Dishwasher-safe parts; plastic and metal materials; 72-oz. pitcher; 8-cup bowl; 3-cup prep bowl; 2 single-serve cups and lids; dough accessory\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ninja-bl771-mega-kitchen-system-black/1498476.p?id=1219052700447&skuId=1498476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498476_rc.jpg\"}', 'upc' => '622356532907', 'provider' => 'bestbuy'],\n ['name' => \"Shark - Cordless Floor and Carpet Sweeper - Purple\", 'description_short' => \"13&quot; XL motorized brush; 2 speeds; no-touch dust cap; BACKSAVER handle; swivel steering; edge-cleaning squeegee; low-profile, lightweight design\", 'description_long' => \"13&quot; XL motorized brush; 2 speeds; no-touch dust cap; BACKSAVER handle; swivel steering; edge-cleaning squeegee; low-profile, lightweight design\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shark-cordless-floor-and-carpet-sweeper-purple/1498546.p?id=1219053146475&skuId=1498546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498546_rc.jpg\"}', 'upc' => '622356534000', 'provider' => 'bestbuy'],\n ['name' => \"Hemispheres [SACD] [SACD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hemispheres-sacd-sacd-cd/1498555.p?id=3520442&skuId=1498555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498555.jpg\"}', 'upc' => '780014216221', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1498564.p?id=2722155&skuId=1498564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498564_sa.jpg\"}', 'upc' => '888837113922', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1498573.p?id=2722044&skuId=1498573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498573_sa.jpg\"}', 'upc' => '888837113021', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1498582.p?id=2722087&skuId=1498582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498582_sa.jpg\"}', 'upc' => '888837113526', 'provider' => 'bestbuy'],\n ['name' => \"Pickin' Up the Pieces [Super Audio] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pickin-up-the-pieces-super-audio-cd/1498607.p?id=2726552&skuId=1498607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498607_sa.jpg\"}', 'upc' => '780014215828', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1498634.p?id=2724686&skuId=1498634&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498634', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498634_sa.jpg\"}', 'upc' => '602537458141', 'provider' => 'bestbuy'],\n ['name' => \"Girls: The Complete Second Season [3 Discs] [Blu-ray/DVD] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/girls-the-complete-second-season-3-discs-blu-ray-dvd-blu-ray-disc/1498698.p?id=2708683&skuId=1498698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498698_sa.jpg\"}', 'upc' => '883929319299', 'provider' => 'bestbuy'],\n ['name' => \"Elvis at Stax - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elvis-at-stax-cd/1498707.p?id=2722757&skuId=1498707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498707_sa.jpg\"}', 'upc' => '888837241922', 'provider' => 'bestbuy'],\n ['name' => \"PNY - Turbo Plus 32GB USB 3.0 Flash Drive - Silver/Black\", 'description_short' => \"Read speeds up to 70MB/sec., write speeds up to 20MB/sec.; sliding collar; capless design\", 'description_long' => \"Read speeds up to 70MB/sec., write speeds up to 20MB/sec.; sliding collar; capless design\", 'price' => 34.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/pny-turbo-plus-32gb-usb-3-0-flash-drive-silver-black/1498843.p?id=1219052697727&skuId=1498843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498843_sa.jpg\"}', 'upc' => '751492581613', 'provider' => 'bestbuy'],\n ['name' => \"Grimm: Season Two [5 discs] (Blu-ray Disc) (Boxed Set) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => 22.99, 'url' => 'http://www.bestbuy.com/site/grimm-season-two-5-discs-blu-ray-disc-boxed-set-ultraviolet-digital-copy/1498898.p?id=2725425&skuId=1498898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1498898.jpg\"}', 'upc' => '025192168734', 'provider' => 'bestbuy'],\n ['name' => \"Stranded (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/stranded-blu-ray-disc/1498916.p?id=2716297&skuId=1498916&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498916', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498916_sa.jpg\"}', 'upc' => '014381948257', 'provider' => 'bestbuy'],\n ['name' => \"Grimm: Season Two [5 Discs] (DVD) (Boxed Set) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/grimm-season-two-5-discs-dvd-boxed-set-ultraviolet-digital-copy/1498925.p?id=2725430&skuId=1498925&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498925', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1498925.jpg\"}', 'upc' => '025192168710', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1498961.p?id=2722101&skuId=1498961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498961_sa.jpg\"}', 'upc' => '888837165525', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1498998.p?id=2722074&skuId=1498998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1498998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1498\\/1498998_sa.jpg\"}', 'upc' => '888837165624', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1499005.p?id=2722092&skuId=1499005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499005_sa.jpg\"}', 'upc' => '888837164627', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1499014.p?id=2722059&skuId=1499014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499014_sa.jpg\"}', 'upc' => '888837164726', 'provider' => 'bestbuy'],\n ['name' => \"Tawk Tomahawk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tawk-tomahawk-cd/1499023.p?id=2729000&skuId=1499023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499023_sa.jpg\"}', 'upc' => '888837526227', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1499069.p?id=2722120&skuId=1499069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499069_sa.jpg\"}', 'upc' => '888837166126', 'provider' => 'bestbuy'],\n ['name' => \"Enlightened: The Complete Second Season [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enlightened-the-complete-second-season-2-discs-dvd/1499102.p?id=2708664&skuId=1499102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499102_sa.jpg\"}', 'upc' => '883929331673', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Spearhead from Space (Special Edition) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-spearhead-from-space-special-edition-blu-ray-disc/1499111.p?id=2718220&skuId=1499111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499111_sa.jpg\"}', 'upc' => '883929334902', 'provider' => 'bestbuy'],\n ['name' => \"Southland: The Complete Fifth & Final Season [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/southland-the-complete-fifth-final-season-2-discs-dvd/1499139.p?id=2709975&skuId=1499139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499139_sa.jpg\"}', 'upc' => '883929342792', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: The Green Death [2 Discs] (Special Edition) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-the-green-death-2-discs-special-edition-dvd/1499148.p?id=2718157&skuId=1499148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499148_sa.jpg\"}', 'upc' => '883929336432', 'provider' => 'bestbuy'],\n ['name' => \"Smurfs: Smurf To The Rescue (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smurfs-smurf-to-the-rescue-dvd/1499157.p?id=2687844&skuId=1499157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499157.jpg\"}', 'upc' => '883929298136', 'provider' => 'bestbuy'],\n ['name' => \"Mariachi Coculense \\\"Rodriguez\\\" De 1926-1936 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mariachi-coculense-rodriguez-de-1926-1936-cd/1499202.p?id=90538&skuId=1499202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499202_sa.jpg\"}', 'upc' => '096297701126', 'provider' => 'bestbuy'],\n ['name' => \"Hawaiian Steel Guitar Classics: 1927-1938 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hawaiian-steel-guitar-classics-1927-1938-cd-various/1499211.p?id=85013&skuId=1499211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499211_sa.jpg\"}', 'upc' => '096297702727', 'provider' => 'bestbuy'],\n ['name' => \"Get Your Wings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-your-wings-cd/1499480.p?id=72524&skuId=1499480&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499480', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499480_sa.jpg\"}', 'upc' => '074645736129', 'provider' => 'bestbuy'],\n ['name' => \"Toys in the Attic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/toys-in-the-attic-cd/1499523.p?id=72525&skuId=1499523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499523_sa.jpg\"}', 'upc' => '074645736228', 'provider' => 'bestbuy'],\n ['name' => \"Rocks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rocks-cd/1499550.p?id=72527&skuId=1499550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499550_sa.jpg\"}', 'upc' => '074645736327', 'provider' => 'bestbuy'],\n ['name' => \"Better Off with the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-off-with-the-blues-cd/1499863.p?id=103773&skuId=1499863&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499863_sa.jpg\"}', 'upc' => '089408335426', 'provider' => 'bestbuy'],\n ['name' => \"My Song - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-song-cd/1499890.p?id=69815&skuId=1499890&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1499890', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1499\\/1499890_sa.jpg\"}', 'upc' => '089408332623', 'provider' => 'bestbuy'],\n ['name' => \"Canon - CanoScan LiDE120 Flatbed Image Scanner - Black\", 'description_short' => \"Up to 2400 x 4800 dpi optical resolutionScans a page in about 16 secondsUSB 2.0 interfaceEZ buttonsZ-lid\", 'description_long' => \"Up to 2400 x 4800 dpi optical resolutionScans a page in about 16 secondsUSB 2.0 interfaceEZ buttonsZ-lid\", 'price' => 69.99, 'sale_price' => 59.99, 'url' => 'http://www.bestbuy.com/site/canon-canoscan-lide120-flatbed-image-scanner-black/1500001.p?id=1219687246439&skuId=1500001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1500001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1311\\/1311684569\\/1311684569_sa.jpg\"}', 'upc' => '013803242201', 'provider' => 'bestbuy'],\n ['name' => \"Traffic from Paradise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traffic-from-paradise-cd/1500192.p?id=2833637&skuId=1500192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1500192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1500\\/1500192_sa.jpg\"}', 'upc' => '720642460221', 'provider' => 'bestbuy'],\n ['name' => \"August and Everything After - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/august-and-everything-after-cd/1500227.p?id=78810&skuId=1500227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1500227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1500\\/1500227.jpg\"}', 'upc' => '720642452820', 'provider' => 'bestbuy'],\n ['name' => \"Bat Out of Hell II: Back into Hell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bat-out-of-hell-ii-back-into-hell-cd/1500370.p?id=91279&skuId=1500370&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1500370', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1500\\/1500370_sa.jpg\"}', 'upc' => '008811069926', 'provider' => 'bestbuy'],\n ['name' => \"Recipe for Hate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/recipe-for-hate-cd/1500619.p?id=73675&skuId=1500619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1500619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1500\\/1500619_sa.jpg\"}', 'upc' => '075678254628', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/1500780.p?id=104142&skuId=1500780&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1500780', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1500\\/1500780.jpg\"}', 'upc' => '715187763821', 'provider' => 'bestbuy'],\n ['name' => \"The Ring (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ring-blu-ray-disc/1501029.p?id=46570&skuId=1501029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501029_sa.jpg\"}', 'upc' => '883929300778', 'provider' => 'bestbuy'],\n ['name' => \"Micmacs (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/micmacs-dvd/1501038.p?id=2159897&skuId=1501038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501038_sa.jpg\"}', 'upc' => '043396353077', 'provider' => 'bestbuy'],\n ['name' => \"The Other Guys (DVD) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-other-guys-dvd-unrated/1501047.p?id=2162438&skuId=1501047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501047_sa.jpg\"}', 'upc' => '043396350021', 'provider' => 'bestbuy'],\n ['name' => \"The Other Guys (Blu-ray Disc) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-other-guys-blu-ray-disc-unrated/1501056.p?id=2162438&skuId=1501056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501056_sa.jpg\"}', 'upc' => '043396365346', 'provider' => 'bestbuy'],\n ['name' => \"The Other Guys (Blu-ray Disc) (2 Disc) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-other-guys-blu-ray-disc-2-disc-unrated/1501065.p?id=2162438&skuId=1501065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501065_sa.jpg\"}', 'upc' => '043396350052', 'provider' => 'bestbuy'],\n ['name' => \"Open Season (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/open-season-blu-ray-3d-3-d/1501083.p?id=1612934&skuId=1501083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501083_sa.jpg\"}', 'upc' => '043396364400', 'provider' => 'bestbuy'],\n ['name' => \"Micmacs (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/micmacs-blu-ray-disc/1501092.p?id=2159897&skuId=1501092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501092_sa.jpg\"}', 'upc' => '043396359215', 'provider' => 'bestbuy'],\n ['name' => \"Legrand - In-Wall Power Kit for Flat-Panel TVs\", 'description_short' => \"Compatible with most flat-panel TVs and TV power plugs; provides recessed power; in-wall design; prewired design\", 'description_long' => \"Compatible with most flat-panel TVs and TV power plugs; provides recessed power; in-wall design; prewired design\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legrand-in-wall-power-kit-for-flat-panel-tvs/1501144.p?id=1219052965296&skuId=1501144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501144_sa.jpg\"}', 'upc' => '804428065975', 'provider' => 'bestbuy'],\n ['name' => \"Big Bang Theory: The Complete Sixth Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-bang-theory-the-complete-sixth-season-3-discs-dvd/1501153.p?id=2725137&skuId=1501153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1501153.jpg\"}', 'upc' => '883929278459', 'provider' => 'bestbuy'],\n ['name' => \"Big Bang Theory: The Complete Sixth Season [Blu-ray/DVD] (5 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-bang-theory-the-complete-sixth-season-blu-ray-dvd-5-disc-blu-ray-disc/1501162.p?id=2725155&skuId=1501162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/21622693.jpg\"}', 'upc' => '883929279975', 'provider' => 'bestbuy'],\n ['name' => \"Tom Clancy's The Division - Xbox One\", 'description_short' => \"Join the team of agents who may be the last hope for restoring society\", 'description_long' => \"Join the team of agents who may be the last hope for restoring society\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tom-clancys-the-division-xbox-one/1501171.p?id=1219053146481&skuId=1501171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501171_sa.jpg\"}', 'upc' => '887256014513', 'provider' => 'bestbuy'],\n ['name' => \"The Fat Elvis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fat-elvis-cd/1501217.p?id=74595&skuId=1501217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501217.jpg\"}', 'upc' => '036172079926', 'provider' => 'bestbuy'],\n ['name' => \"Aroma - SmartFry XL 4-Quart Digital Deep Fryer - Stainless-Steel\", 'description_short' => \"Digital controls; 10 preprogrammed functions; Intelli-Temp technology; 1800W immersed heating element\", 'description_long' => \"Digital controls; 10 preprogrammed functions; Intelli-Temp technology; 1800W immersed heating element\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aroma-smartfry-xl-4-quart-digital-deep-fryer-stainless-steel/1501223.p?id=1219052965090&skuId=1501223', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501223_rc.jpg\"}', 'upc' => '021241112321', 'provider' => 'bestbuy'],\n ['name' => \"The Skinny Elvis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-skinny-elvis-cd/1501226.p?id=74596&skuId=1501226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501226.jpg\"}', 'upc' => '036172079827', 'provider' => 'bestbuy'],\n ['name' => \"Aroma - Gourmet Electric Skillet - Stainless-Steel\", 'description_short' => \"Temperature control; impact-bonded base; stainless-steel construction; tempered-glass lid\", 'description_long' => \"Temperature control; impact-bonded base; stainless-steel construction; tempered-glass lid\", 'price' => 64.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aroma-gourmet-electric-skillet-stainless-steel/1501232.p?id=1219052966789&skuId=1501232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501232_rc.jpg\"}', 'upc' => '021241116008', 'provider' => 'bestbuy'],\n ['name' => \"Aroma - Hot H20 X-Press 7-Cup Electric Kettle - Stainless-Steel\", 'description_short' => \"Trigger-release button; lifts off base when boiling is complete; cord-free pouring; blue LED indicator; polished stainless-steel finish\", 'description_long' => \"Trigger-release button; lifts off base when boiling is complete; cord-free pouring; blue LED indicator; polished stainless-steel finish\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aroma-hot-h20-x-press-7-cup-electric-kettle-stainless-steel/1501302.p?id=1219052966660&skuId=1501302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501302_500x500_sa.jpg\"}', 'upc' => '021241101257', 'provider' => 'bestbuy'],\n ['name' => \"Opera Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/opera-arias-cd/1501798.p?id=1909974&skuId=1501798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501798.jpg\"}', 'upc' => '710357785023', 'provider' => 'bestbuy'],\n ['name' => \"Chinese Music for the Pipa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chinese-music-for-the-pipa-cd/1501805.p?id=1534853&skuId=1501805&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501805', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501805.jpg\"}', 'upc' => '710357536823', 'provider' => 'bestbuy'],\n ['name' => \"The Rodgers & Hammerstein Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-rodgers-hammerstein-collection-cd/1501814.p?id=97085&skuId=1501814&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1501814', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1501\\/1501814_sa.jpg\"}', 'upc' => '008811077525', 'provider' => 'bestbuy'],\n ['name' => \"Luminous - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/luminous-cd/1502029.p?id=67420&skuId=1502029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1502\\/1502029_sa.jpg\"}', 'upc' => '730182203325', 'provider' => 'bestbuy'],\n ['name' => \"Arrow: The Complete First Season [Blu-ray] (Boxed Set) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arrow-the-complete-first-season-blu-ray-boxed-set-blu-ray-disc/1502277.p?id=2725072&skuId=1502277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1502277.jpg\"}', 'upc' => '883929293483', 'provider' => 'bestbuy'],\n ['name' => \"Arrow: The Complete First Season [5 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arrow-the-complete-first-season-5-discs-dvd-boxed-set/1502301.p?id=2725144&skuId=1502301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1502301.jpg\"}', 'upc' => '883929294169', 'provider' => 'bestbuy'],\n ['name' => \"Chef Buddy - Waffle Cone Maker - White\", 'description_short' => \"Temperature dial; 750W of power; nonstick cooking surface; red power indicator light; green ready indicator light; locking latch; includes plastic waffle cone form\", 'description_long' => \"Temperature dial; 750W of power; nonstick cooking surface; red power indicator light; green ready indicator light; locking latch; includes plastic waffle cone form\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chef-buddy-waffle-cone-maker-white/1502374.p?id=1219052963169&skuId=1502374', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1502\\/1502374_rc.jpg\"}', 'upc' => '886511181977', 'provider' => 'bestbuy'],\n ['name' => \"Pan All Night: Steel Band Music - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pan-all-night-steel-band-music-cd-various/1502396.p?id=136484&skuId=1502396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1502\\/1502396_sa.jpg\"}', 'upc' => '013491402222', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - LUMIX G5 16.1-Megapixel Digital Mirrorless Camera (Body Only) - Black\", 'description_short' => \"16.1-megapixel Live MOS sensorISO 160-12,800Shooting speeds up to 20 fpsContrast autofocus system\", 'description_long' => \"16.1-megapixel Live MOS sensorISO 160-12,800Shooting speeds up to 20 fpsContrast autofocus system\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/panasonic-lumix-g5-16-1-megapixel-digital-mirrorless-camera-body-only-black/1502434.p?id=1219052963479&skuId=1502434', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1502\\/1502434_rc.jpg\"}', 'upc' => '885170098794', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - LUMIX G X VARIO 35-100mm f/2.8 Telephoto Zoom Lens for Select Panasonic Cameras - Black\", 'description_short' => \"Compatible with Panasonic cameras with a Micro Four Thirds lens mount; NSC (Nano Surface Coating); Power O.I.S. (optical image stabilization); UED (Ultra ED) glass\", 'description_long' => \"Compatible with Panasonic cameras with a Micro Four Thirds lens mount; NSC (Nano Surface Coating); Power O.I.S. (optical image stabilization); UED (Ultra ED) glass\", 'price' => 1299.99, 'sale_price' => 899.99, 'url' => 'http://www.bestbuy.com/site/panasonic-lumix-g-x-vario-35-100mm-f-2-8-telephoto-zoom-lens-for-select-panasonic-cameras-black/1502504.p?id=1219052962663&skuId=1502504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1306\\/1306440507\\/1306440507_sa.jpg\"}', 'upc' => '885170087200', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - LUMIX G X VARIO 12-35mm f/2.8 Zoom Lens for Select Panasonic Cameras - Black\", 'description_short' => \"Compatible with Panasonic cameras with a Micro Four Thirds lens mount; NSC (Nano Surface Coating); Power O.I.S. (optical image stabilization); UED (Ultra ED) glass\", 'description_long' => \"Compatible with Panasonic cameras with a Micro Four Thirds lens mount; NSC (Nano Surface Coating); Power O.I.S. (optical image stabilization); UED (Ultra ED) glass\", 'price' => 999.99, 'sale_price' => 699.99, 'url' => 'http://www.bestbuy.com/site/panasonic-lumix-g-x-vario-12-35mm-f-2-8-zoom-lens-for-select-panasonic-cameras-black/1502577.p?id=1219052960581&skuId=1502577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1502\\/1502577_sa.jpg\"}', 'upc' => '885170087217', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - Charger Kit with Lightning-to-USB Cable - Multi\", 'description_short' => \"Compatible with most Lightning- and 30-pin Apple&#174; devices and other micro USB-enabled devices; green indicator-light rings; removable cable; reversible Lightning connector\", 'description_long' => \"Compatible with most Lightning- and 30-pin Apple&#174; devices and other micro USB-enabled devices; green indicator-light rings; removable cable; reversible Lightning connector\", 'price' => 49.99, 'sale_price' => 35.99, 'url' => 'http://www.bestbuy.com/site/belkin-charger-kit-with-lightning-to-usb-cable-multi/1502747.p?id=1219052963414&skuId=1502747&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1502\\/1502747_sa.jpg\"}', 'upc' => '722868936566', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek: Original Series: Season One (Bby) (DVD) (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-original-series-season-one-bby-dvd-only--best-buy/1502774.p?id=2736111&skuId=1502774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1502774.jpg\"}', 'upc' => '032429140104', 'provider' => 'bestbuy'],\n ['name' => \"VTech - DS6751-3 DECT 6.0 Expandable Cordless Phone System with Connect to Cell Digital Answering System - Champagne/Black\", 'description_short' => \"3 handsets includedBluetooth enabledSpecial Features: Make and receive landline and cellular calls; uses your home&#039;s cellular signal; expandable up to 5 handsets\", 'description_long' => \"3 handsets includedBluetooth enabledSpecial Features: Make and receive landline and cellular calls; uses your home&#039;s cellular signal; expandable up to 5 handsets\", 'price' => 99.99, 'sale_price' => 79.99, 'url' => 'http://www.bestbuy.com/site/vtech-ds6751-3-dect-6-0-expandable-cordless-phone-system-with-connect-to-cell-digital-answering-system-champagne-black/1502974.p?id=1219053144299&skuId=1502974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1502\\/1502974_rc.jpg\"}', 'upc' => '735078030726', 'provider' => 'bestbuy'],\n ['name' => \"VTech - Wireless Bluetooth and DECT Speaker - Black\", 'description_short' => \"Compatible with select AT&amp;T and VTech DECT 6.0 expandable cordless phones; also compatible with most Bluetooth-enabled tablets, mobile phones, laptops and other devices; one-touch answer button; USB port\", 'description_long' => \"Compatible with select AT&amp;T and VTech DECT 6.0 expandable cordless phones; also compatible with most Bluetooth-enabled tablets, mobile phones, laptops and other devices; one-touch answer button; USB port\", 'price' => 59.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/vtech-wireless-bluetooth-and-dect-speaker-black/1502992.p?id=1219052964839&skuId=1502992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1502992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1502\\/1502992_sa.jpg\"}', 'upc' => '735078030375', 'provider' => 'bestbuy'],\n ['name' => \"VTech - Wireless Bluetooth and DECT Speaker - White\", 'description_short' => \"Compatible with select AT&amp;T and VTech DECT 6.0 expandable cordless phones; also compatible with most Bluetooth-enabled tablets, mobile phones, laptops and other devices; one-touch answer button; USB port\", 'description_long' => \"Compatible with select AT&amp;T and VTech DECT 6.0 expandable cordless phones; also compatible with most Bluetooth-enabled tablets, mobile phones, laptops and other devices; one-touch answer button; USB port\", 'price' => 59.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/vtech-wireless-bluetooth-and-dect-speaker-white/1503018.p?id=1219052962544&skuId=1503018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503018_sa.jpg\"}', 'upc' => '735078030740', 'provider' => 'bestbuy'],\n ['name' => \"Scrooge (DVD) (Black & White) (Colorized) (Remastered)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scrooge-dvd-black-white-colorized-remastered/1503212.p?id=42677&skuId=1503212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503212_sa.jpg\"}', 'upc' => '844503000668', 'provider' => 'bestbuy'],\n ['name' => \"Surviving the Holidays With Lewis Black (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/surviving-the-holidays-with-lewis-black-dvd/1503249.p?id=2137680&skuId=1503249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503249_sa.jpg\"}', 'upc' => '733961229165', 'provider' => 'bestbuy'],\n ['name' => \"TRUE STORY OF THE THREE LITTLE PIGS (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/true-story-of-the-three-little-pigs-dvd/1503285.p?id=2138141&skuId=1503285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503285.jpg\"}', 'upc' => '767685231609', 'provider' => 'bestbuy'],\n ['name' => \"S.F. Blues Guitar Summit, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/s-f-blues-guitar-summit-vol-1-cd/1503420.p?id=122374&skuId=1503420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503420.jpg\"}', 'upc' => '026245200524', 'provider' => 'bestbuy'],\n ['name' => \"The Reggae Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-reggae-collection-cd/1503475.p?id=92850&skuId=1503475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503475_sa.jpg\"}', 'upc' => '074645277028', 'provider' => 'bestbuy'],\n ['name' => \"Nintendo - Wii Remote Plus - Black\", 'description_short' => \"Control your own way to gaming success\", 'description_long' => \"Control your own way to gaming success\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nintendo-wii-remote-plus-black/1503576.p?id=1218266963123&skuId=1503576&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503576', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503576_sa.jpg\"}', 'upc' => '045496891558', 'provider' => 'bestbuy'],\n ['name' => \"Nintendo - Wii Remote Plus - Blue\", 'description_short' => \"Control your own way to gaming success\", 'description_long' => \"Control your own way to gaming success\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nintendo-wii-remote-plus-blue/1503594.p?id=1218266961637&skuId=1503594&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503594', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503594_sa.jpg\"}', 'upc' => '045496891541', 'provider' => 'bestbuy'],\n ['name' => \"Samsung - 105L Toner Cartridge - Black\", 'description_short' => \"Yields up to 2,500 pagesCompatible with select Samsung printers\", 'description_long' => \"Yields up to 2,500 pagesCompatible with select Samsung printers\", 'price' => 65.99, 'sale_price' => 64.99, 'url' => 'http://www.bestbuy.com/site/samsung-105l-toner-cartridge-black/1503619.p?id=1218264254413&skuId=1503619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503619_sa.jpg\"}', 'upc' => '635753620450', 'provider' => 'bestbuy'],\n ['name' => \"Canciones de Mi Barrio: The Roots of Tejano Rock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canciones-de-mi-barrio-the-roots-of-tejano-rock-cd/1503689.p?id=82087&skuId=1503689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503689.jpg\"}', 'upc' => '096297036624', 'provider' => 'bestbuy'],\n ['name' => \"Jolie Blonde - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jolie-blonde-cd/1503723.p?id=84532&skuId=1503723&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503723', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503723.jpg\"}', 'upc' => '096297039922', 'provider' => 'bestbuy'],\n ['name' => \"Nintendo - Nintendo eShop Prepaid Card ($35)\", 'description_short' => \"Get more enjoyment out of your Nintendo systems\", 'description_long' => \"Get more enjoyment out of your Nintendo systems\", 'price' => 35, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nintendo-nintendo-eshop-prepaid-card-35/1503882.p?id=1219087681439&skuId=1503882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1503\\/1503882_sa.jpg\"}', 'upc' => '799366104674', 'provider' => 'bestbuy'],\n ['name' => \"Spartacus: War Of The Damned (Best Buy Exclusive) (Blu-ray Disc) (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spartacus-war-of-the-damned-best-buy-exclusive-blu-ray-disc-only--best-buy/1503919.p?id=2736025&skuId=1503919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1503919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1503919.jpg\"}', 'upc' => '013132612102', 'provider' => 'bestbuy'],\n ['name' => \"TiVo - Roamio Pro DVR - Black\", 'description_short' => \"Compatible with Verizon FiOS and digital cable; allows you to record up to 6 shows at once; 3TB storage capacity; built-in 802.11a/b/g/n wireless networking\", 'description_long' => \"Compatible with Verizon FiOS and digital cable; allows you to record up to 6 shows at once; 3TB storage capacity; built-in 802.11a/b/g/n wireless networking\", 'price' => 599.98, 'sale_price' => 476.99, 'url' => 'http://www.bestbuy.com/site/tivo-roamio-pro-dvr-black/1504026.p?id=1219052966264&skuId=1504026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1504\\/1504026_sa.jpg\"}', 'upc' => '851342000193', 'provider' => 'bestbuy'],\n ['name' => \"Ricoh - WG-M1 HD Waterproof Action Camera - Black\", 'description_short' => \"RICOH WG-M1 HD Waterproof Action Camera: 14.0MP digital still mode; 1080p video mode; electronic motion blur reduction; waterproof up to 32&#039;; 1.5&quot; color LCD; 160-degree ultrawide-angle lens; built-in Wi-Fi; cold- and shock-resistant design\", 'description_long' => \"RICOH WG-M1 HD Waterproof Action Camera: 14.0MP digital still mode; 1080p video mode; electronic motion blur reduction; waterproof up to 32&#039;; 1.5&quot; color LCD; 160-degree ultrawide-angle lens; built-in Wi-Fi; cold- and shock-resistant design\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ricoh-wg-m1-hd-waterproof-action-camera-black/1504313.p?id=1219528527927&skuId=1504313', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1311\\/1311982450\\/1311982450_sa.jpg\"}', 'upc' => '027075279902', 'provider' => 'bestbuy'],\n ['name' => \"Revolution: The Complete First Season [9 Discs] [Blu-ray/DVD] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revolution-the-complete-first-season-9-discs-blu-ray-dvd-blu-ray-disc/1504336.p?id=2718553&skuId=1504336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1504336.jpg\"}', 'upc' => '883929325177', 'provider' => 'bestbuy'],\n ['name' => \"Sony - PlayStation Plus 3-Month Membership\", 'description_short' => \"Get the most out of your PlayStation 3, PlayStation 4 or PS Vita\", 'description_long' => \"Get the most out of your PlayStation 3, PlayStation 4 or PS Vita\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-playstation-plus-3-month-membership/1504345.p?id=1219084787958&skuId=1504345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1504\\/1504345_sa.jpg\"}', 'upc' => '799366084358', 'provider' => 'bestbuy'],\n ['name' => \"Revolution: The Complete First Season [5 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revolution-the-complete-first-season-5-discs-dvd-boxed-set/1504363.p?id=2719110&skuId=1504363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1504363.jpg\"}', 'upc' => '883929322145', 'provider' => 'bestbuy'],\n ['name' => \"Boardwalk Empire: Complete Third Season [5 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boardwalk-empire-complete-third-season-5-discs-dvd/1504372.p?id=2708669&skuId=1504372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1504\\/1504372_sa.jpg\"}', 'upc' => '883929286195', 'provider' => 'bestbuy'],\n ['name' => \"Here Today - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/here-today-cd-various/1504401.p?id=84299&skuId=1504401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1504\\/1504401_sa.jpg\"}', 'upc' => '011661016927', 'provider' => 'bestbuy'],\n ['name' => \"Follow Me Chicken - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/follow-me-chicken-cd/1504410.p?id=92867&skuId=1504410&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504410', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1504\\/1504410.jpg\"}', 'upc' => '011661212220', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Warner Bros 25 Cartoon Coll: Dc Comics (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-warner-bros-25-cartoon-coll-dc-comics-dvd/1504414.p?id=2718050&skuId=1504414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1504414.jpg\"}', 'upc' => '883929292929', 'provider' => 'bestbuy'],\n ['name' => \"Beats by Dr. Dre - Beats Studio Over-the-Ear Headphones - Glossy Black\", 'description_short' => \"Adaptive noise canceling; Beats Acoustic Engine; sound isolating; fuel gauge; rechargeable battery; auto on/off; folding design; carrying case\", 'description_long' => \"Adaptive noise canceling; Beats Acoustic Engine; sound isolating; fuel gauge; rechargeable battery; auto on/off; folding design; carrying case\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beats-by-dr-dre-beats-studio-over-the-ear-headphones-glossy-black/1504478.p?id=1219052963540&skuId=1504478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1504\\/1504478_rc.jpg\"}', 'upc' => '848447001149', 'provider' => 'bestbuy'],\n ['name' => \"Beats by Dr. Dre - Beats Studio Over-the-Ear Headphones - White\", 'description_short' => \"Adaptive noise canceling; Beats Acoustic Engine; sound isolating; fuel gauge; rechargeable battery; auto on/off; folding design; carrying case\", 'description_long' => \"Adaptive noise canceling; Beats Acoustic Engine; sound isolating; fuel gauge; rechargeable battery; auto on/off; folding design; carrying case\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beats-by-dr-dre-beats-studio-over-the-ear-headphones-white/1504487.p?id=1219052966071&skuId=1504487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1504\\/1504487_rc.jpg\"}', 'upc' => '848447001156', 'provider' => 'bestbuy'],\n ['name' => \"Beats by Dr. Dre - Beats Studio Over-the-Ear Headphones - Red\", 'description_short' => \"Adaptive noise canceling; Beats Acoustic Engine; sound isolating; fuel gauge; rechargeable battery; auto on/off; folding design; carrying case\", 'description_long' => \"Adaptive noise canceling; Beats Acoustic Engine; sound isolating; fuel gauge; rechargeable battery; auto on/off; folding design; carrying case\", 'price' => 299.99, 'sale_price' => 149.99, 'url' => 'http://www.bestbuy.com/site/beats-by-dr-dre-beats-studio-over-the-ear-headphones-red/1504496.p?id=1219052961886&skuId=1504496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1504\\/1504496_rc.jpg\"}', 'upc' => '848447001163', 'provider' => 'bestbuy'],\n ['name' => \"Trauffaut & Delerve on the Screen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trauffaut-delerve-on-the-screen-cd/1504633.p?id=80145&skuId=1504633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1504\\/1504633.jpg\"}', 'upc' => '021471290226', 'provider' => 'bestbuy'],\n ['name' => \"Queen of the Pack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/queen-of-the-pack-cd/1504973.p?id=94507&skuId=1504973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1504973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1504\\/1504973.jpg\"}', 'upc' => '074645376325', 'provider' => 'bestbuy'],\n ['name' => \"Speck - iGuy Case for Apple® iPad® Air 2 - Chili Pepper\", 'description_short' => \"SPECK iGuy Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; flexible, lightweight EVA foam construction; freestanding design\", 'description_long' => \"SPECK iGuy Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; flexible, lightweight EVA foam construction; freestanding design\", 'price' => 39.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speck-iguy-case-for-apple-ipad-air-2-chili-pepper/1505006.p?id=1219499663339&skuId=1505006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505006_sa.jpg\"}', 'upc' => '848709015204', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® Air 2 - Moss Green/Deep Sea Blue\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'price' => 39.99, 'sale_price' => 28.99, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-air-2-moss-green-deep-sea-blue/1505015.p?id=1219499663076&skuId=1505015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505015_sa.jpg\"}', 'upc' => '848709014948', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® Air 2 - Black/Slate Gray\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'price' => 39.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-air-2-black-slate-gray/1505024.p?id=1219499662814&skuId=1505024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505024_sa.jpg\"}', 'upc' => '848709014924', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® mini, iPad mini 2 and iPad mini 3 - Dark Poppy Red/Slate Gray\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'price' => 34.95, 'sale_price' => 24.99, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-mini-ipad-mini-2-and-ipad-mini-3-dark-poppy-red-slate-gray/1505033.p?id=1219499664179&skuId=1505033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505033_sa.jpg\"}', 'upc' => '848709015549', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® Air 2 - Deep Sea Blue/Nickel Gray\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'price' => 39.95, 'sale_price' => 21.99, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-air-2-deep-sea-blue-nickel-gray/1505051.p?id=1219499659733&skuId=1505051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505051_sa.jpg\"}', 'upc' => '848709014931', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® Air 2 - Dark Poppy Red/Slate Gray\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; 4 viewing angles; locking clasp; vegan leather finish; microfiber inner lining\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; 4 viewing angles; locking clasp; vegan leather finish; microfiber inner lining\", 'price' => 39.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-air-2-dark-poppy-red-slate-gray/1505079.p?id=1219499663663&skuId=1505079', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505079_sa.jpg\"}', 'upc' => '848709015433', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® Air 2 - Rattleskin Gray/Antifreeze Yellow\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; 4 viewing angles; locking clasp; vegan leather finish; microfiber inner lining\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; 4 viewing angles; locking clasp; vegan leather finish; microfiber inner lining\", 'price' => 39.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-air-2-rattleskin-gray-antifreeze-yellow/1505088.p?id=1219499663727&skuId=1505088', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505088_sa.jpg\"}', 'upc' => '848709015662', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® mini, iPad mini 2 and iPad mini 3 - Deep Sea Blue/Nickel Gray\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'price' => 34.95, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-mini-ipad-mini-2-and-ipad-mini-3-deep-sea-blue-nickel-gray/1505097.p?id=1219499662625&skuId=1505097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505097_sa.jpg\"}', 'upc' => '848709015082', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® Air 2 - Fresh Floral Pink/Nickel Gray\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'price' => 39.95, 'sale_price' => 35.99, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-air-2-fresh-floral-pink-nickel-gray/1505102.p?id=1219499662096&skuId=1505102', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505102_sa.jpg\"}', 'upc' => '848709014979', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® mini, iPad mini 2 and iPad mini 3 - Rattleskin Dark Gray/Tahoe Blue\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'price' => 34.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-mini-ipad-mini-2-and-ipad-mini-3-rattleskin-dark-gray-tahoe-blue/1505111.p?id=1219499665083&skuId=1505111', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505111_sa.jpg\"}', 'upc' => '848709015112', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® mini, iPad mini 2 and iPad mini 3 - Rattleskin Gray/Antifreeze Yellow\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'price' => 34.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-mini-ipad-mini-2-and-ipad-mini-3-rattleskin-gray-antifreeze-yellow/1505148.p?id=1219499662032&skuId=1505148', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505148_sa.jpg\"}', 'upc' => '848709015679', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® Air 2 - Rattleskin Dark Gray/Tahoe Blue\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'price' => 39.95, 'sale_price' => 21.99, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-air-2-rattleskin-dark-gray-tahoe-blue/1505157.p?id=1219499660940&skuId=1505157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505157_sa.jpg\"}', 'upc' => '848709014962', 'provider' => 'bestbuy'],\n ['name' => \"Speck - iGuy Case for Apple® iPad® Air 2 - Grape\", 'description_short' => \"SPECK iGuy Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; flexible, lightweight EVA foam construction; freestanding design\", 'description_long' => \"SPECK iGuy Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; flexible, lightweight EVA foam construction; freestanding design\", 'price' => 39.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speck-iguy-case-for-apple-ipad-air-2-grape/1505166.p?id=1219499665709&skuId=1505166', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505166_sa.jpg\"}', 'upc' => '848709015198', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® Air 2 - Beaming Orchid Purple/Deep Sea Blue\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'price' => 39.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-air-2-beaming-orchid-purple-deep-sea-blue/1505184.p?id=1219499662879&skuId=1505184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505184_sa.jpg\"}', 'upc' => '848709014955', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® mini, iPad mini 2 and iPad mini 3 - Black/Slate Gray\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'price' => 34.95, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-mini-ipad-mini-2-and-ipad-mini-3-black-slate-gray/1505193.p?id=1219499662227&skuId=1505193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505193_sa.jpg\"}', 'upc' => '848709015075', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® mini, iPad mini 2 and iPad mini 3 - Moss Green/Deep Sea Blue\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad mini, iPad mini 2 and iPad mini 3: Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; adjustable stand; locking clasp\", 'price' => 34.95, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-mini-ipad-mini-2-and-ipad-mini-3-moss-green-deep-sea-blue/1505217.p?id=1219499662624&skuId=1505217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505217_sa.jpg\"}', 'upc' => '848709015099', 'provider' => 'bestbuy'],\n ['name' => \"Speck - StyleFolio Case for Apple® iPad® Air 2 - Fuchsia Pink/Nickel Gray\", 'description_short' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'description_long' => \"SPECK StyleFolio Case for Apple iPad Air 2: Compatible with Apple iPad Air 2; full-perimeter outer shell with microfiber inner lining; vegan-leather cover; 4 viewing angles; locking clasp\", 'price' => 39.95, 'sale_price' => 25.99, 'url' => 'http://www.bestbuy.com/site/speck-stylefolio-case-for-apple-ipad-air-2-fuchsia-pink-nickel-gray/1505226.p?id=1219499663597&skuId=1505226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505226_sa.jpg\"}', 'upc' => '848709015440', 'provider' => 'bestbuy'],\n ['name' => \"Bayou Classic - Hose Regulator - Stainless-Steel/Red/Green\", 'description_short' => \"BAYOU CLASSIC Hose Regulator: Compatible with select Bayou Classic turkey fryers; stainless-steel braided LPG hose; 1/4&quot; male connector\", 'description_long' => \"BAYOU CLASSIC Hose Regulator: Compatible with select Bayou Classic turkey fryers; stainless-steel braided LPG hose; 1/4&quot; male connector\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bayou-classic-hose-regulator-stainless-steel-red-green/1505299.p?id=1219499660609&skuId=1505299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505299_sa.jpg\"}', 'upc' => '050904031655', 'provider' => 'bestbuy'],\n ['name' => \"Dirt Devil - Vibe Bagless 3-in-1 Handheld/Stick Vacuum - Red\", 'description_short' => \"240W of power; bagless easy-empty dirt cup; standard filter; 10&quot; cleaning path width; includes a floor nozzle and crevice tool\", 'description_long' => \"240W of power; bagless easy-empty dirt cup; standard filter; 10&quot; cleaning path width; includes a floor nozzle and crevice tool\", 'price' => 39.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/dirt-devil-vibe-bagless-3-in-1-handheld-stick-vacuum-red/1505312.p?id=1219499664055&skuId=1505312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505312_sa.jpg\"}', 'upc' => '046034899999', 'provider' => 'bestbuy'],\n ['name' => \"Adonit - Jot Touch Pixelpoint Stylus - White\", 'description_short' => \"ADONIT Jot Touch Pixelpoint Stylus: Compatible with select Apple iPad models; Pixelpoint technology; fine tip; pressure sensitivity; shortcut buttons; palm rejection; Creative Cloud connected\", 'description_long' => \"ADONIT Jot Touch Pixelpoint Stylus: Compatible with select Apple iPad models; Pixelpoint technology; fine tip; pressure sensitivity; shortcut buttons; palm rejection; Creative Cloud connected\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adonit-jot-touch-pixelpoint-stylus-white/1505321.p?id=1219499663792&skuId=1505321', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505321_sa.jpg\"}', 'upc' => '847663021733', 'provider' => 'bestbuy'],\n ['name' => \"Adonit - Jot Touch Pixelpoint Stylus - Black\", 'description_short' => \"ADONIT Jot Touch Pixelpoint Stylus: Compatible with select Apple iPad models; Pixelpoint technology; fine tip; pressure sensitivity; shortcut buttons; palm rejection; Creative Cloud connected\", 'description_long' => \"ADONIT Jot Touch Pixelpoint Stylus: Compatible with select Apple iPad models; Pixelpoint technology; fine tip; pressure sensitivity; shortcut buttons; palm rejection; Creative Cloud connected\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adonit-jot-touch-pixelpoint-stylus-black/1505349.p?id=1219499662492&skuId=1505349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505349_sa.jpg\"}', 'upc' => '847663021726', 'provider' => 'bestbuy'],\n ['name' => \"iLive - Portable USB Charger - Blue\", 'description_short' => \"ILIVE Portable USB Charger: Compatible with most USB-enabled cell phones; built-in rechargeable lithium-ion battery; 4000 mAh DC power; USB and micro USB ports; LED flashlight; LED power indicator; built-in short-circuit and overcurrent protection\", 'description_long' => \"ILIVE Portable USB Charger: Compatible with most USB-enabled cell phones; built-in rechargeable lithium-ion battery; 4000 mAh DC power; USB and micro USB ports; LED flashlight; LED power indicator; built-in short-circuit and overcurrent protection\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ilive-portable-usb-charger-blue/1505436.p?id=1219499977900&skuId=1505436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505436_sa.jpg\"}', 'upc' => '047323104053', 'provider' => 'bestbuy'],\n ['name' => \"iLive - Portable USB Charger - Red\", 'description_short' => \"ILIVE Portable USB Charger: Compatible with most USB-enabled cell phones; built-in rechargeable lithium-ion battery; 4000 mAh DC power; USB and micro USB ports; LED flashlight; LED power indicator; built-in short-circuit and overcurrent protection\", 'description_long' => \"ILIVE Portable USB Charger: Compatible with most USB-enabled cell phones; built-in rechargeable lithium-ion battery; 4000 mAh DC power; USB and micro USB ports; LED flashlight; LED power indicator; built-in short-circuit and overcurrent protection\", 'price' => 22.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/ilive-portable-usb-charger-red/1505445.p?id=1219499977901&skuId=1505445', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1505445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1505\\/1505445_sa.jpg\"}', 'upc' => '047323204050', 'provider' => 'bestbuy'],\n ['name' => \"Flipped (Blu-ray Disc) (2 Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flipped-blu-ray-disc-2-disc-digital-copy/1506042.p?id=2160812&skuId=1506042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506042_sa.jpg\"}', 'upc' => '883929106639', 'provider' => 'bestbuy'],\n ['name' => \"Naruto Uncut Season 4 V.2 Box Set (6pc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naruto-uncut-season-4-v-2-box-set-6pc-dvd/1506051.p?id=2142561&skuId=1506051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1877\\/18774064.jpg\"}', 'upc' => '782009241317', 'provider' => 'bestbuy'],\n ['name' => \"A Dog Year (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-dog-year-dvd/1506079.p?id=2149880&skuId=1506079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506079_sa.jpg\"}', 'upc' => '883929163489', 'provider' => 'bestbuy'],\n ['name' => \"Hot Wheels Battle Force 5: Season 1, Part 2 [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-wheels-battle-force-5-season-1-part-2-2-discs-dvd/1506088.p?id=2149879&skuId=1506088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506088_sa.jpg\"}', 'upc' => '883929156160', 'provider' => 'bestbuy'],\n ['name' => \"Bleach Uncut Box Set, Vol. 7: Episodes 122-133 [3 Discs] (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bleach-uncut-box-set-vol-7-episodes-122-133-3-discs-boxed-set-dvd/1506097.p?id=2149878&skuId=1506097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506097_sa.jpg\"}', 'upc' => '782009241515', 'provider' => 'bestbuy'],\n ['name' => \"UFC 120: Bisping vs. Akiyama (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ufc-120-bisping-vs-akiyama-dvd-2-disc/1506103.p?id=2156524&skuId=1506103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506103_sa.jpg\"}', 'upc' => '013132215792', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Fighting Championship: Ultimate Heavyweights (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-fighting-championship-ultimate-heavyweights-blu-ray-disc/1506112.p?id=2138227&skuId=1506112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506112_sa.jpg\"}', 'upc' => '013132215396', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Fighting Championship: Ultimate Heavyweights (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-fighting-championship-ultimate-heavyweights-dvd/1506149.p?id=2138227&skuId=1506149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506149_sa.jpg\"}', 'upc' => '013132215297', 'provider' => 'bestbuy'],\n ['name' => \"UFC 119: Mir vs. Cro Cop (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ufc-119-mir-vs-cro-cop-dvd-2-disc/1506158.p?id=2156519&skuId=1506158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506158_sa.jpg\"}', 'upc' => '013132215693', 'provider' => 'bestbuy'],\n ['name' => \"Wow Wow Wubbzy: Fly Us To The Moon (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wow-wow-wubbzy-fly-us-to-the-moon-dvd/1506167.p?id=2154398&skuId=1506167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506167.jpg\"}', 'upc' => '013132143897', 'provider' => 'bestbuy'],\n ['name' => \"Ghost Machine (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ghost-machine-blu-ray-disc/1506176.p?id=2052826&skuId=1506176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506176_sa.jpg\"}', 'upc' => '013132231990', 'provider' => 'bestbuy'],\n ['name' => \"Staunton Hill (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/staunton-hill-blu-ray-disc/1506185.p?id=2017321&skuId=1506185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506185_sa.jpg\"}', 'upc' => '013132232294', 'provider' => 'bestbuy'],\n ['name' => \"Hunt to Kill (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/hunt-to-kill-blu-ray-disc/1506194.p?id=2154261&skuId=1506194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506194_sa.jpg\"}', 'upc' => '013132186696', 'provider' => 'bestbuy'],\n ['name' => \"All the Little Lights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-the-little-lights-cd/1506237.p?id=2554776&skuId=1506237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506237_sa.jpg\"}', 'upc' => '067003096522', 'provider' => 'bestbuy'],\n ['name' => \"Elvis at Stax [Deluxe Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elvis-at-stax-deluxe-edition-cd/1506255.p?id=2725504&skuId=1506255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506255_sa.jpg\"}', 'upc' => '888837241823', 'provider' => 'bestbuy'],\n ['name' => \"Wrongdoers [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wrongdoers-digipak-cd/1506264.p?id=2725412&skuId=1506264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506264_sa.jpg\"}', 'upc' => '793018333726', 'provider' => 'bestbuy'],\n ['name' => \"Warp & Weft [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warp-weft-digipak-cd/1506282.p?id=2728589&skuId=1506282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506282_sa.jpg\"}', 'upc' => '616892135449', 'provider' => 'bestbuy'],\n ['name' => \"So You Are... So You'll Be [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-you-are-so-youll-be-digipak-cd/1506291.p?id=2728471&skuId=1506291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506291_sa.jpg\"}', 'upc' => '790377034226', 'provider' => 'bestbuy'],\n ['name' => \"Snapshot: The Charlie Daniels Band [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snapshot-the-charlie-daniels-band-digipak-cd/1506334.p?id=2713607&skuId=1506334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506334_sa.jpg\"}', 'upc' => '659877971427', 'provider' => 'bestbuy'],\n ['name' => \"Snapshot [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snapshot-digipak-cd/1506352.p?id=2713115&skuId=1506352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506352_sa.jpg\"}', 'upc' => '766930012628', 'provider' => 'bestbuy'],\n ['name' => \"Saloon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saloon-cd/1506361.p?id=2735982&skuId=1506361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506361_sa.jpg\"}', 'upc' => '810488020571', 'provider' => 'bestbuy'],\n ['name' => \"Snapshot [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snapshot-digipak-cd/1506389.p?id=2720317&skuId=1506389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506389_sa.jpg\"}', 'upc' => '849320008125', 'provider' => 'bestbuy'],\n ['name' => \"Snapshot: Mannheim SteamrollerCD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snapshot-mannheim-steamrollercd/1506398.p?id=2736220&skuId=1506398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506398_sa.jpg\"}', 'upc' => '012805301428', 'provider' => 'bestbuy'],\n ['name' => \"The Death Card - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-death-card-cd/1506403.p?id=2735981&skuId=1506403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506403_sa.jpg\"}', 'upc' => '793018346825', 'provider' => 'bestbuy'],\n ['name' => \"Whole - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whole-cd/1506412.p?id=2720270&skuId=1506412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506412_sa.jpg\"}', 'upc' => '769623601024', 'provider' => 'bestbuy'],\n ['name' => \"Sway [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sway-digipak-cd/1506421.p?id=2720598&skuId=1506421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506421_sa.jpg\"}', 'upc' => '759707130328', 'provider' => 'bestbuy'],\n ['name' => \"Joy of Nothing [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joy-of-nothing-digipak-cd/1506449.p?id=2720233&skuId=1506449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506449_sa.jpg\"}', 'upc' => '810599020347', 'provider' => 'bestbuy'],\n ['name' => \"Lines We Trace [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lines-we-trace-digipak-cd/1506467.p?id=2647484&skuId=1506467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506467_sa.jpg\"}', 'upc' => '794504790337', 'provider' => 'bestbuy'],\n ['name' => \"The Wild Hunt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wild-hunt-cd/1506476.p?id=2720236&skuId=1506476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506476_sa.jpg\"}', 'upc' => '727701900629', 'provider' => 'bestbuy'],\n ['name' => \"Snapshot [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snapshot-digipak-cd/1506485.p?id=2712908&skuId=1506485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506485_sa.jpg\"}', 'upc' => '746105069725', 'provider' => 'bestbuy'],\n ['name' => \"Snapshot [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snapshot-digipak-cd/1506494.p?id=2720327&skuId=1506494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506494_sa.jpg\"}', 'upc' => '815988010190', 'provider' => 'bestbuy'],\n ['name' => \"That's Just Me [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thats-just-me-digipak-cd/1506519.p?id=2733420&skuId=1506519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506519_sa.jpg\"}', 'upc' => '794504956054', 'provider' => 'bestbuy'],\n ['name' => \"Labyrinth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/labyrinth-cd/1506528.p?id=2735984&skuId=1506528&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506528', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506528.jpg\"}', 'upc' => '727361311322', 'provider' => 'bestbuy'],\n ['name' => \"Snapshot [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snapshot-digipak-cd/1506537.p?id=2712956&skuId=1506537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506537_sa.jpg\"}', 'upc' => '766930013007', 'provider' => 'bestbuy'],\n ['name' => \"Genuine & Counterfeit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/genuine-counterfeit-cd/1506546.p?id=2735980&skuId=1506546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506546_sa.jpg\"}', 'upc' => '794558025126', 'provider' => 'bestbuy'],\n ['name' => \"Kerry Douglas Presents Gospel Mix, Vol. 6 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kerry-douglas-presents-gospel-mix-vol-6-cd-various/1506555.p?id=2719696&skuId=1506555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506555_sa.jpg\"}', 'upc' => '747656501023', 'provider' => 'bestbuy'],\n ['name' => \"Hollow Bodies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hollow-bodies-cd/1506564.p?id=2735983&skuId=1506564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506564_sa.jpg\"}', 'upc' => '714753017825', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/1506573.p?id=2890689&skuId=1506573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506573_sa.jpg\"}', 'upc' => '602527611754', 'provider' => 'bestbuy'],\n ['name' => \"Silver Fox - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/silver-fox-cd/1506677.p?id=185967&skuId=1506677&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506677', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506677_sa.jpg\"}', 'upc' => '041924204020', 'provider' => 'bestbuy'],\n ['name' => \"King of the Clarinet: Live Performances 1938-1939 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-of-the-clarinet-live-performances-1938-1939-cd/1506686.p?id=204179&skuId=1506686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506686_sa.jpg\"}', 'upc' => '014921050228', 'provider' => 'bestbuy'],\n ['name' => \"Beating Harps - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beating-harps-cd/1506695.p?id=98720&skuId=1506695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506695_sa.jpg\"}', 'upc' => '048248108928', 'provider' => 'bestbuy'],\n ['name' => \"Buhloone Mindstate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buhloone-mindstate-cd/1506855.p?id=79941&skuId=1506855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1506855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1506\\/1506855.jpg\"}', 'upc' => '016998106327', 'provider' => 'bestbuy'],\n ['name' => \"Asus - 27\\\" Widescreen Flat-Panel LED-LCD HD Monitor - Black\", 'description_short' => \"ENERGY STAR Certified\n2 ms response time; 1000:1 contrast ratio; 300 cd/m&#178; brightness; 1920 x 1080 resolution; 170&#176; horizontal and 160&#176; vertical viewing angles\", 'description_long' => \"ENERGY STAR Certified\n2 ms response time; 1000:1 contrast ratio; 300 cd/m&#178; brightness; 1920 x 1080 resolution; 170&#176; horizontal and 160&#176; vertical viewing angles\", 'price' => 209.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/asus-27-widescreen-flat-panel-led-lcd-hd-monitor-black/1507078.p?id=1218264281476&skuId=1507078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1507078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1507\\/1507078_sa.jpg\"}', 'upc' => '610839326983', 'provider' => 'bestbuy'],\n ['name' => \"Born to Royalty (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-to-royalty-dvd/1507254.p?id=2724772&skuId=1507254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1507254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1507\\/1507254_sa.jpg\"}', 'upc' => '883929344970', 'provider' => 'bestbuy'],\n ['name' => \"The Hits 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hits-1-cd/1507934.p?id=95489&skuId=1507934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1507934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1507\\/1507934.jpg\"}', 'upc' => '093624543121', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-2-cd/1507961.p?id=95490&skuId=1507961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1507961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1507\\/1507961_sa.jpg\"}', 'upc' => '093624543527', 'provider' => 'bestbuy'],\n ['name' => \"The Hits/The B-Sides [Box] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 35.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hits-the-b-sides-box-pa-cd/1507998.p?id=95488&skuId=1507998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1507998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1507\\/1507998_sa.jpg\"}', 'upc' => '093624544029', 'provider' => 'bestbuy'],\n ['name' => \"Avanti - 1.4 Cu. Ft. Compact Refrigerator - Platinum/Black\", 'description_short' => \"Full-range temperature control; wire shelf; rounded, reversible door; flush back; recessed handle; freestanding design\", 'description_long' => \"Full-range temperature control; wire shelf; rounded, reversible door; flush back; recessed handle; freestanding design\", 'price' => 169.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/avanti-1-4-cu-ft-compact-refrigerator-platinum-black/1508004.p?id=1219053212749&skuId=1508004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508004_sa.jpg\"}', 'upc' => '079841500147', 'provider' => 'bestbuy'],\n ['name' => \"Avanti - 0.7 Cu. Ft. Compact Microwave - Stainless Steel\", 'description_short' => \"Electronic control panel; one-touch cooking programs; speed defrost; cook/defrost by weight; 9 power levels; turntable with glass tray\", 'description_long' => \"Electronic control panel; one-touch cooking programs; speed defrost; cook/defrost by weight; 9 power levels; turntable with glass tray\", 'price' => 92.99, 'sale_price' => 88.34, 'url' => 'http://www.bestbuy.com/site/avanti-0-7-cu-ft-compact-microwave-stainless-steel/1508022.p?id=1219053722704&skuId=1508022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508022_sa.jpg\"}', 'upc' => '079841471034', 'provider' => 'bestbuy'],\n ['name' => \"Jenni Rivera: La Gran Señora y Sus Exitos en Vivo (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jenni-rivera-la-gran-senora-y-sus-exitos-en-vivo-dvd/1508138.p?id=2162964&skuId=1508138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508138_sa.jpg\"}', 'upc' => '808835460095', 'provider' => 'bestbuy'],\n ['name' => \"Dos Mundos Revolución: En Vivo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dos-mundos-revolucion-en-vivo-cd/1508156.p?id=2162958&skuId=1508156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508156_sa.jpg\"}', 'upc' => '602527559360', 'provider' => 'bestbuy'],\n ['name' => \"P.A.R.C.E. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/p-a-r-c-e-cd/1508208.p?id=2164500&skuId=1508208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508208_sa.jpg\"}', 'upc' => '602527546766', 'provider' => 'bestbuy'],\n ['name' => \"Los Amigos Desde El Rancho: Live At Allende... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/los-amigos-desde-el-rancho-live-at-allende-cd-various/1508217.p?id=2162913&skuId=1508217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508217_sa.jpg\"}', 'upc' => '801472162629', 'provider' => 'bestbuy'],\n ['name' => \"Bicentenario 1810/1910/2010 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bicentenario-1810-1910-2010-cd/1508226.p?id=2162903&skuId=1508226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508226_sa.jpg\"}', 'upc' => '827865411327', 'provider' => 'bestbuy'],\n ['name' => \"King'S Speech - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kings-speech-cd-original-soundtrack/1508253.p?id=2163569&skuId=1508253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508253_sa.jpg\"}', 'upc' => '602527552866', 'provider' => 'bestbuy'],\n ['name' => \"Senior - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/senior-cd/1508271.p?id=2164201&skuId=1508271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508271.jpg\"}', 'upc' => '850358003013', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Nelly Furtado - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-nelly-furtado-cd/1508299.p?id=2163570&skuId=1508299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508299_sa.jpg\"}', 'upc' => '602527549132', 'provider' => 'bestbuy'],\n ['name' => \"Add It Up (1981-1993) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/add-it-up-1981-1993-cd/1508309.p?id=103180&skuId=1508309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508309_sa.jpg\"}', 'upc' => '093624540328', 'provider' => 'bestbuy'],\n ['name' => \"You Make It Easy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-make-it-easy-cd/1508336.p?id=2479128&skuId=1508336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508336_sa.jpg\"}', 'upc' => '093624533627', 'provider' => 'bestbuy'],\n ['name' => \"Second Chance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/second-chance-cd/1508341.p?id=2179685&skuId=1508341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508341_sa.jpg\"}', 'upc' => '602527501086', 'provider' => 'bestbuy'],\n ['name' => \"Endlessly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/endlessly-cd/1508369.p?id=2165972&skuId=1508369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508369_sa.jpg\"}', 'upc' => '602527531465', 'provider' => 'bestbuy'],\n ['name' => \"Impressions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/impressions-cd/1508461.p?id=79839&skuId=1508461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508461_sa.jpg\"}', 'upc' => '012805099325', 'provider' => 'bestbuy'],\n ['name' => \"Breaking Things - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breaking-things-cd/1508522.p?id=72716&skuId=1508522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508522.jpg\"}', 'upc' => '031895003128', 'provider' => 'bestbuy'],\n ['name' => \"Kung Zhu Bundle with Limited Edition Tull Hamster - Nintendo DS\", 'description_short' => \"Martial arts action just got a lot hairier\", 'description_long' => \"Martial arts action just got a lot hairier\", 'price' => 19.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/kung-zhu-bundle-with-limited-edition-tull-hamster-nintendo-ds/1508571.p?id=1218265329676&skuId=1508571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508571.jpg\"}', 'upc' => '047875764828', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - Cook Central 6-Quart 3-in-1 Multicooker - Gray\", 'description_short' => \"3 programmable cooking functions; time and temperature controls; slow cook, brown/saut&#233; and steam settings; dishwasher-safe removable parts; nonstick aluminum pot; glass lid; includes steaming rack\", 'description_long' => \"3 programmable cooking functions; time and temperature controls; slow cook, brown/saut&#233; and steam settings; dishwasher-safe removable parts; nonstick aluminum pot; glass lid; includes steaming rack\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-cook-central-6-quart-3-in-1-multicooker-gray/1508769.p?id=1219053213695&skuId=1508769', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508769_rc.jpg\"}', 'upc' => '086279046543', 'provider' => 'bestbuy'],\n ['name' => \"Red Dead Redemption: Undead Nightmare - Xbox 360\", 'description_short' => \"Set off on a dangerous journey in the last days of the Old West\", 'description_long' => \"Set off on a dangerous journey in the last days of the Old West\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-dead-redemption-undead-nightmare-xbox-360/1508787.p?id=1218265330020&skuId=1508787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508787_sa.jpg\"}', 'upc' => '710425399329', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - Smart Stick 2-Speed Hand Blender - Brushed Stainless\", 'description_short' => \"Push button control; 2 speeds; continuous and pulse settings; 200W motor; brushed-stainless-steel housing\", 'description_long' => \"Push button control; 2 speeds; continuous and pulse settings; 200W motor; brushed-stainless-steel housing\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-smart-stick-2-speed-hand-blender-brushed-stainless/1508869.p?id=1219053212750&skuId=1508869', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508869_rc.jpg\"}', 'upc' => '086279044419', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 33 12' Pair Speaker Cable - Black/Gray/Red\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'price' => 363.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-33-12-pair-speaker-cable-black-gray-red/1508905.p?id=1218265774171&skuId=1508905', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508905_sa.jpg\"}', 'upc' => '092592090200', 'provider' => 'bestbuy'],\n ['name' => \"Brother - TN315BK XL High-Yield Toner Cartridge - Black\", 'description_short' => \"Compatible with select Brother printers, including HL-4150CDN, HL-4570CDW, HL-4570CDWT and MFC-9460CDN models; black toner; yields approximately 6,000 pages\", 'description_long' => \"Compatible with select Brother printers, including HL-4150CDN, HL-4570CDW, HL-4570CDWT and MFC-9460CDN models; black toner; yields approximately 6,000 pages\", 'price' => 82.99, 'sale_price' => 81.99, 'url' => 'http://www.bestbuy.com/site/brother-tn315bk-xl-high-yield-toner-cartridge-black/1508914.p?id=1218265778774&skuId=1508914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508914_sa.jpg\"}', 'upc' => '012502625414', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 33 10' Speaker Cable (Pair) - Black/Red/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 329.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-33-10-speaker-cable-pair-black-red-gray/1508923.p?id=1218265777997&skuId=1508923&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508923', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508923_sa.jpg\"}', 'upc' => '092592090194', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 88 15' Speaker Cable (Pair) - Black/Green/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'price' => 959.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-88-15-speaker-cable-pair-black-green-gray/1508941.p?id=1218265775879&skuId=1508941', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508941_sa.jpg\"}', 'upc' => '092592090385', 'provider' => 'bestbuy'],\n ['name' => \"Brother - TN310C High-Yield Toner Cartridge - Cyan\", 'description_short' => \"Compatible with select Brother printers, including HL-4150CDN, HL-4570CDW, HL-4570CDWT and MFC-9460CDN models; cyan toner; yields approximately 1,500 pages\", 'description_long' => \"Compatible with select Brother printers, including HL-4150CDN, HL-4570CDW, HL-4570CDWT and MFC-9460CDN models; cyan toner; yields approximately 1,500 pages\", 'price' => 50.99, 'sale_price' => 49.99, 'url' => 'http://www.bestbuy.com/site/brother-tn310c-high-yield-toner-cartridge-cyan/1508969.p?id=1218265767743&skuId=1508969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508969_sa.jpg\"}', 'upc' => '012502625384', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 88 12' Speaker Cables (Pair) - Black/Green/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'price' => 999.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-88-12-speaker-cables-pair-black-green-gray/1508996.p?id=1218265771766&skuId=1508996', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1508996', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1508\\/1508996_sa.jpg\"}', 'upc' => '092592090361', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Go-4 10' Pair Speaker Cable - Brown/Black\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid PSC+ and 2-sized SST HyperLitz conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid PSC+ and 2-sized SST HyperLitz conductors; silver-plated BFA banana connectors\", 'price' => 649.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-go-4-10-pair-speaker-cable-brown-black/1509012.p?id=1218265781086&skuId=1509012', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509012_sa.jpg\"}', 'upc' => '092592090132', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - Manual Disc Repair System - Multi\", 'description_short' => \"Works with DVDs, CDs and Wii, Xbox and data discs; smoothes scratched surfaces\", 'description_long' => \"Works with DVDs, CDs and Wii, Xbox and data discs; smoothes scratched surfaces\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/insignia-manual-disc-repair-system-multi/1509048.p?id=1219499664635&skuId=1509048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509048_sa.jpg\"}', 'upc' => '600603179006', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 44 12' Speaker Cable (Pair) - Silver/Black/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 559.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-44-12-speaker-cable-pair-silver-black-gray/1509049.p?id=1218265769517&skuId=1509049', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509049_sa.jpg\"}', 'upc' => '092592090293', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 44 15' Speaker Cable (Pair) - Silver/Black/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'price' => 649.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-44-15-speaker-cable-pair-silver-black-gray/1509058.p?id=1218265769868&skuId=1509058', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509058_sa.jpg\"}', 'upc' => '092592090309', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 33 8' Speaker Cable - Black/Red/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 147.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-33-8-speaker-cable-black-red-gray/1509137.p?id=1218265767460&skuId=1509137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509137_sa.jpg\"}', 'upc' => '092592090170', 'provider' => 'bestbuy'],\n ['name' => \"Brother - TN315Y XL High-Yield Toner Cartridge - Yellow\", 'description_short' => \"Compatible with select Brother printers, including HL-4150CDN, HL-4570CDW, HL-4570CDWT and MFC-9460CDN models; yellow toner; yields approximately 3,500 pages\", 'description_long' => \"Compatible with select Brother printers, including HL-4150CDN, HL-4570CDW, HL-4570CDWT and MFC-9460CDN models; yellow toner; yields approximately 3,500 pages\", 'price' => 87.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brother-tn315y-xl-high-yield-toner-cartridge-yellow/1509146.p?id=1218265781231&skuId=1509146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509146_sa.jpg\"}', 'upc' => '012502625445', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Go-4 15' Pair Speaker Cable - Brown/Black\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid PSC+ and 2-sized SST HyperLitz conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid PSC+ and 2-sized SST HyperLitz conductors; silver-plated BFA banana connectors\", 'price' => 799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-go-4-15-pair-speaker-cable-brown-black/1509182.p?id=1218265775609&skuId=1509182', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509182_sa.jpg\"}', 'upc' => '092592090156', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 44 15' Speaker Cable (Pair) - Silver/Black/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 649.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-44-15-speaker-cable-pair-silver-black-gray/1509261.p?id=1218265773888&skuId=1509261', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509261_sa.jpg\"}', 'upc' => '092592090316', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 88 10' Speaker Cable (Pair) - Black/Gray/Green\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 899.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-88-10-speaker-cable-pair-black-gray-green/1509322.p?id=1218265779325&skuId=1509322', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509322_sa.jpg\"}', 'upc' => '092592090354', 'provider' => 'bestbuy'],\n ['name' => \"The Social Network [Original Score] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-social-network-original-score-digipak-cd/1509331.p?id=2155363&skuId=1509331&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509331', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509331_sa.jpg\"}', 'upc' => '043396348059', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 88 10' Speaker Cable (Pair) - Black/Green/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'price' => 899.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-88-10-speaker-cable-pair-black-green-gray/1509386.p?id=1218265779961&skuId=1509386', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509386_sa.jpg\"}', 'upc' => '092592090347', 'provider' => 'bestbuy'],\n ['name' => \"Brother - TN310M High-Yield Toner Cartridge - Magenta\", 'description_short' => \"Compatible with select Brother printers, including HL-4150CDN, HL-4570CDW, HL-4570CDWT and MFC-9460CDN models; magenta toner; yields approximately 1,500 pages\", 'description_long' => \"Compatible with select Brother printers, including HL-4150CDN, HL-4570CDW, HL-4570CDWT and MFC-9460CDN models; magenta toner; yields approximately 1,500 pages\", 'price' => 50.99, 'sale_price' => 49.99, 'url' => 'http://www.bestbuy.com/site/brother-tn310m-high-yield-toner-cartridge-magenta/1509395.p?id=1218265771202&skuId=1509395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509395_sa.jpg\"}', 'upc' => '012502625391', 'provider' => 'bestbuy'],\n ['name' => \"N-Fusion, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/n-fusion-vol-1-cd-various/1509451.p?id=247667&skuId=1509451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509451_sa.jpg\"}', 'upc' => '725543200129', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 88 8' Speaker Cable - Black/Gray/Green\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-88-8-speaker-cable-black-gray-green/1509464.p?id=1218265770708&skuId=1509464', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509464_sa.jpg\"}', 'upc' => '092592090330', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 33 8' Speaker Cable - Black/Red/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'price' => 147.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-33-8-speaker-cable-black-red-gray/1509491.p?id=1218265778564&skuId=1509491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509491_sa.jpg\"}', 'upc' => '092592090163', 'provider' => 'bestbuy'],\n ['name' => \"Up Close [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-close-digipak-cd/1509516.p?id=2160373&skuId=1509516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509516.jpg\"}', 'upc' => '828527777324', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 44 8' Speaker Cable - Silver/Black/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-44-8-speaker-cable-silver-black-gray/1509525.p?id=1218265766064&skuId=1509525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509525_sa.jpg\"}', 'upc' => '092592090255', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 44 8' Single Speaker Cable - Silver/Black/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-44-8-single-speaker-cable-silver-black-gray/1509668.p?id=1218265769657&skuId=1509668', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509668_sa.jpg\"}', 'upc' => '092592090248', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 88 15' Speaker Cable (Pair) - Black/Gray/Green\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 959.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-88-15-speaker-cable-pair-black-gray-green/1509795.p?id=1218265779537&skuId=1509795', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509795', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509795_sa.jpg\"}', 'upc' => '092592090392', 'provider' => 'bestbuy'],\n ['name' => \"Sacred Site - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sacred-site-cd/1509834.p?id=100230&skuId=1509834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509834_sa.jpg\"}', 'upc' => '025041103824', 'provider' => 'bestbuy'],\n ['name' => \"Scubason - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scubason-cd/1509843.p?id=105297&skuId=1509843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509843_sa.jpg\"}', 'upc' => '025041103923', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 33 12' Speaker Cable (Pair) - Black/Red/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'price' => 559.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-33-12-speaker-cable-pair-black-red-gray/1509868.p?id=1218265775396&skuId=1509868', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509868', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509868_sa.jpg\"}', 'upc' => '092592090217', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 44 12' Speaker Cable (Pair) - Silver/Black/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'price' => 559.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-44-12-speaker-cable-pair-silver-black-gray/1509895.p?id=1218265768242&skuId=1509895', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509895_sa.jpg\"}', 'upc' => '092592090286', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 33 15' Speaker Cable (Pair) - Black/Gray/Red Braid\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 414.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-33-15-speaker-cable-pair-black-gray-red-braid/1509913.p?id=1218265776874&skuId=1509913', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509913_sa.jpg\"}', 'upc' => '092592090231', 'provider' => 'bestbuy'],\n ['name' => \"The World Sings Goodnight - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-world-sings-goodnight-cd-various/1509914.p?id=104728&skuId=1509914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509914_sa.jpg\"}', 'upc' => '021585080324', 'provider' => 'bestbuy'],\n ['name' => \"Group Sounds: WCBS New York, Vol. 2 [Cassette] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/group-sounds-wcbs-new-york-vol-2-cassette-cd-various/1509932.p?id=82204&skuId=1509932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509932.jpg\"}', 'upc' => '090431260128', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 88 12' Speaker Cable (Pair) - Black/Gray/Green\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 999.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-88-12-speaker-cable-pair-black-gray-green/1509959.p?id=1218265766476&skuId=1509959', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1509959', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1509\\/1509959_sa.jpg\"}', 'upc' => '092592090378', 'provider' => 'bestbuy'],\n ['name' => \"Olympus - MC-14 1.4x Teleconverter Lens for Olympus 40-150mm f/2.8 PRO Lenses - Black\", 'description_short' => \"Compatible with Olympus 40-150mm f/2.8 PRO lenses; dust- and splash-proof design; includes a lens cap, rear lens cap and lens case\", 'description_long' => \"Compatible with Olympus 40-150mm f/2.8 PRO lenses; dust- and splash-proof design; includes a lens cap, rear lens cap and lens case\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/olympus-mc-14-1-4x-teleconverter-lens-for-olympus-40-150mm-f-2-8-pro-lenses-black/1510016.p?id=1219499664704&skuId=1510016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510016_sa.jpg\"}', 'upc' => '050332188792', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 33 15' Pair Speaker Cable - Black/Red/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'price' => 414.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-33-15-pair-speaker-cable-black-red-gray/1510018.p?id=1218265777489&skuId=1510018', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510018_sa.jpg\"}', 'upc' => '092592090224', 'provider' => 'bestbuy'],\n ['name' => \"Brother - Toner Cartridge TN310BK/C/M/Y Toner Cartridge, 1500 Page Yield - Yellow\", 'description_short' => \"Yellow - Laser - 1500 Page - 1 Each\", 'description_long' => \"Yellow - Laser - 1500 Page - 1 Each\", 'price' => 50.99, 'sale_price' => 49.99, 'url' => 'http://www.bestbuy.com/site/brother-toner-cartridge-tn310bk-c-m-y-toner-cartridge-1500-page-yield-yellow/1510036.p?id=1218265774313&skuId=1510036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510036_sa.jpg\"}', 'upc' => '012502625407', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 88 8' Speaker Cable - Black/Gray/Green\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-88-8-speaker-cable-black-gray-green/1510063.p?id=1218265774972&skuId=1510063', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510063_sa.jpg\"}', 'upc' => '092592090323', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 44 10' Speaker Cable (Pair) - Silver/Black/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-44-10-speaker-cable-pair-silver-black-gray/1510106.p?id=1218265771414&skuId=1510106', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510106_sa.jpg\"}', 'upc' => '092592090262', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 44 10' Speaker Cable (Pair) - Silver/Black/Gray\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG PSC+ and PSC conductors; silver-plated BFA banana connectors; single biwire design\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-44-10-speaker-cable-pair-silver-black-gray/1510133.p?id=1218265770221&skuId=1510133', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510133_sa.jpg\"}', 'upc' => '092592090279', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Go-4 12' Pair Speaker Cable - Brown/Black\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid PSC+ and 2-sized SST HyperLitz conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid PSC+ and 2-sized SST HyperLitz conductors; silver-plated BFA banana connectors\", 'price' => 709.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-go-4-12-pair-speaker-cable-brown-black/1510188.p?id=1218265779121&skuId=1510188', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510188_sa.jpg\"}', 'upc' => '092592090149', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Rocket 33 10' Pair Speaker Cable - Black/Gray/Red\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid 13 AWG LGC and PSC conductors; silver-plated BFA banana connectors\", 'price' => 329.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-rocket-33-10-pair-speaker-cable-black-gray-red/1510212.p?id=1218265773818&skuId=1510212', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510212_sa.jpg\"}', 'upc' => '092592090187', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Go-4 8' Speaker Cable - Brown/Black\", 'description_short' => \"From our expanded online assortment; compatible with most speakers; solid PSC+ conductors; silver-plated BFA banana connectors\", 'description_long' => \"From our expanded online assortment; compatible with most speakers; solid PSC+ conductors; silver-plated BFA banana connectors\", 'price' => 294.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-go-4-8-speaker-cable-brown-black/1510258.p?id=1218265777359&skuId=1510258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510258_sa.jpg\"}', 'upc' => '092592090125', 'provider' => 'bestbuy'],\n ['name' => \"Brother - TN315C XL High-Yield Toner Cartridge - Cyan\", 'description_short' => \"Compatible with select Brother printers, including HL-4150CDN, HL-4570CDW, HL-4570CDWT and MFC-9460CDN models; cyan toner; yields approximately 3,500 pages\", 'description_long' => \"Compatible with select Brother printers, including HL-4150CDN, HL-4570CDW, HL-4570CDWT and MFC-9460CDN models; cyan toner; yields approximately 3,500 pages\", 'price' => 87.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brother-tn315c-xl-high-yield-toner-cartridge-cyan/1510285.p?id=1218265774665&skuId=1510285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510285_sa.jpg\"}', 'upc' => '012502625421', 'provider' => 'bestbuy'],\n ['name' => \"L.A. Blues Authority: Fit for a King - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/l-a-blues-authority-fit-for-a-king-cd-various/1510289.p?id=157372&skuId=1510289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510289_sa.jpg\"}', 'upc' => '026245201026', 'provider' => 'bestbuy'],\n ['name' => \"Just a Touch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-a-touch-cd/1510305.p?id=102177&skuId=1510305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510305_sa.jpg\"}', 'upc' => '026245201422', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/1510314.p?id=161185&skuId=1510314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510314_sa.jpg\"}', 'upc' => '026245201323', 'provider' => 'bestbuy'],\n ['name' => \"Bowels Of Repugnance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bowels-of-repugnance-cd/1510412.p?id=76018&skuId=1510412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510412_sa.jpg\"}', 'upc' => '039841401820', 'provider' => 'bestbuy'],\n ['name' => \"Blindside Blues Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blindside-blues-band-cd/1510476.p?id=122968&skuId=1510476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510476.jpg\"}', 'upc' => '026245201125', 'provider' => 'bestbuy'],\n ['name' => \"Focus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/focus-cd/1510485.p?id=79509&skuId=1510485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510485.jpg\"}', 'upc' => '016861916923', 'provider' => 'bestbuy'],\n ['name' => \"Introspection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/introspection-cd/1510528.p?id=111202&skuId=1510528&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510528', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510528_sa.jpg\"}', 'upc' => '026245106420', 'provider' => 'bestbuy'],\n ['name' => \"No Longer Human - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-longer-human-cd/1510582.p?id=179150&skuId=1510582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510582_sa.jpg\"}', 'upc' => '032357209423', 'provider' => 'bestbuy'],\n ['name' => \"Brother - Toner Cartridge TN310BK/C/M/Y Toner Cartridge, 2500 Page Yield - Black\", 'description_short' => \"Black - Laser - 2500 Page - 1 Each\", 'description_long' => \"Black - Laser - 2500 Page - 1 Each\", 'price' => 45.99, 'sale_price' => 44.99, 'url' => 'http://www.bestbuy.com/site/brother-toner-cartridge-tn310bk-c-m-y-toner-cartridge-2500-page-yield-black/1510828.p?id=1218265769165&skuId=1510828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510828_sa.jpg\"}', 'upc' => '012502625377', 'provider' => 'bestbuy'],\n ['name' => \"Brother - Toner Cartridge - Magenta TN315BK/C/M/Y Toner Cartridge, High Yield, 3500 Page Yield - Magenta\", 'description_short' => \"Magenta - Laser - 3500 Page - 1 Each\", 'description_long' => \"Magenta - Laser - 3500 Page - 1 Each\", 'price' => 87.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brother-toner-cartridge-magenta-tn315bk-c-m-y-toner-cartridge-high-yield-3500-page-yield-magenta/1510855.p?id=1218265775465&skuId=1510855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510855_sa.jpg\"}', 'upc' => '012502625438', 'provider' => 'bestbuy'],\n ['name' => \"Close As Pages In A Book - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/close-as-pages-in-a-book-cd/1510886.p?id=2166667&skuId=1510886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510886_sa.jpg\"}', 'upc' => '021471141221', 'provider' => 'bestbuy'],\n ['name' => \"Bosnia: Echoes from an Endangered World - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bosnia-echoes-from-an-endangered-world-cd-various/1510966.p?id=75593&skuId=1510966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510966_sa.jpg\"}', 'upc' => '093074040720', 'provider' => 'bestbuy'],\n ['name' => \"Musical Traditions of St. Lucia, West Indies:... - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/musical-traditions-of-st-lucia-west-indies-various-cd/1510975.p?id=99976&skuId=1510975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1510975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1510\\/1510975_sa.jpg\"}', 'upc' => '093074041628', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Andrae - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-andrae-cd/1511028.p?id=1543544&skuId=1511028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511028.jpg\"}', 'upc' => '015095487421', 'provider' => 'bestbuy'],\n ['name' => \"Cooler Master - Hyper TX3 92mm CPU Cooling Fan with Heat Sink - Black\", 'description_short' => \"Compatible with select AMD and Intel&#174; processors; 92mm cooling fan; 54.8 cfm airflow volume; sleeve bearing design; 2800 rpm fan speed\", 'description_long' => \"Compatible with select AMD and Intel&#174; processors; 92mm cooling fan; 54.8 cfm airflow volume; sleeve bearing design; 2800 rpm fan speed\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cooler-master-hyper-tx3-92mm-cpu-cooling-fan-with-heat-sink-black/1511053.p?id=1218265779122&skuId=1511053', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511053_sa.jpg\"}', 'upc' => '884102005053', 'provider' => 'bestbuy'],\n ['name' => \"The Leprechaun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-leprechaun-cd/1511162.p?id=65273&skuId=1511162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511162_sa.jpg\"}', 'upc' => '731451979828', 'provider' => 'bestbuy'],\n ['name' => \"Live in New York City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-new-york-city-cd/1511478.p?id=2159381&skuId=1511478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511478_sa.jpg\"}', 'upc' => '886977971228', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits... [CD & DVD] [PA] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd-dvd-pa-cd-dvd-deluxe-edition/1511487.p?id=2159899&skuId=1511487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511487_sa.jpg\"}', 'upc' => '886978065926', 'provider' => 'bestbuy'],\n ['name' => \"Labyrinth Tour: Live At The O2 - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/labyrinth-tour-live-at-the-o2-blu-ray-disc/1511496.p?id=2166675&skuId=1511496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511496.jpg\"}', 'upc' => '886977948794', 'provider' => 'bestbuy'],\n ['name' => \"Labyrinth Tour: Live at... [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/labyrinth-tour-live-at-cd-dvd-cd-dvd/1511511.p?id=2164203&skuId=1511511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511511_sa.jpg\"}', 'upc' => '886977555626', 'provider' => 'bestbuy'],\n ['name' => \"Daria Todo Por Ti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/daria-todo-por-ti-cd/1511539.p?id=2162891&skuId=1511539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511539.jpg\"}', 'upc' => '850375003003', 'provider' => 'bestbuy'],\n ['name' => \"Live It Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-it-up-cd/1511548.p?id=2160756&skuId=1511548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511548_sa.jpg\"}', 'upc' => '886977460920', 'provider' => 'bestbuy'],\n ['name' => \"Evolved... From Boys To Men - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evolved-from-boys-to-men-cd/1511557.p?id=2162550&skuId=1511557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511557_sa.jpg\"}', 'upc' => '886976272425', 'provider' => 'bestbuy'],\n ['name' => \"Digital Treasures - Props Power Case for Select Apple® iPad® Models - Black\", 'description_short' => \"Compatible with Apple iPad 2, iPad 3rd generation and iPad with Retina; PU-leather material; built-in rechargeable battery; folding front cover; auto on function\", 'description_long' => \"Compatible with Apple iPad 2, iPad 3rd generation and iPad with Retina; PU-leather material; built-in rechargeable battery; folding front cover; auto on function\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-treasures-props-power-case-for-select-apple-ipad-models-black/1511763.p?id=1219053213779&skuId=1511763', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511763', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511763_sa.jpg\"}', 'upc' => '671196086194', 'provider' => 'bestbuy'],\n ['name' => \"Resurrection of the Bayou Maharajah: Live at... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resurrection-of-the-bayou-maharajah-live-at-cd/1511929.p?id=75545&skuId=1511929&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1511929', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1511\\/1511929_sa.jpg\"}', 'upc' => '011661211827', 'provider' => 'bestbuy'],\n ['name' => \"Da Bottom, Vol. 19 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/da-bottom-vol-19-cd/1512043.p?id=3169709&skuId=1512043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512043.jpg\"}', 'upc' => '786984086925', 'provider' => 'bestbuy'],\n ['name' => \"Ebonie Lane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ebonie-lane-cd/1512052.p?id=3169708&skuId=1512052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512052_sa.jpg\"}', 'upc' => '884501349543', 'provider' => 'bestbuy'],\n ['name' => \"Da Bottom, Vol. 23 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/da-bottom-vol-23-cd/1512089.p?id=3245406&skuId=1512089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512089.jpg\"}', 'upc' => '786984088721', 'provider' => 'bestbuy'],\n ['name' => \"Salsa: Un Homenaje A El Gran Combo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/salsa-un-homenaje-a-el-gran-combo-cd/1512104.p?id=2165138&skuId=1512104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512104_sa.jpg\"}', 'upc' => '097037103521', 'provider' => 'bestbuy'],\n ['name' => \"Flights of Improvisation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flights-of-improvisation-cd/1512107.p?id=86170&skuId=1512107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512107_sa.jpg\"}', 'upc' => '744457741627', 'provider' => 'bestbuy'],\n ['name' => \"Da Bottom, Vol. 21 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/da-bottom-vol-21-cd/1512113.p?id=3236606&skuId=1512113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512113.jpg\"}', 'upc' => '786984088523', 'provider' => 'bestbuy'],\n ['name' => \"Bedrock, Vol. 12: Compiled by John Digweed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bedrock-vol-12-compiled-by-john-digweed-cd/1512122.p?id=3459266&skuId=1512122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '5060156650547', 'provider' => 'bestbuy'],\n ['name' => \"Peace, Love, Ukulele [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peace-love-ukulele-digipak-cd/1512131.p?id=2163678&skuId=1512131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512131_sa.jpg\"}', 'upc' => '698268111202', 'provider' => 'bestbuy'],\n ['name' => \"Somewhere Else - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somewhere-else-cd/1512170.p?id=71214&skuId=1512170&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512170', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512170_sa.jpg\"}', 'upc' => '011661303621', 'provider' => 'bestbuy'],\n ['name' => \"Powerless Rise [Deluxe] [CD & DVD] - Deluxe Edition w/Book - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 96.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/powerless-rise-deluxe-cd-dvd-deluxe-edition-w-book-cd/1512177.p?id=2156837&skuId=1512177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512177.jpg\"}', 'upc' => '039841500028', 'provider' => 'bestbuy'],\n ['name' => \"Houdini - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/houdini-cd/1512189.p?id=91387&skuId=1512189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512189_sa.jpg\"}', 'upc' => '075678253225', 'provider' => 'bestbuy'],\n ['name' => \"Good Morning Heartache - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-morning-heartache-cd/1512198.p?id=72472&skuId=1512198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512198_sa.jpg\"}', 'upc' => '011661212527', 'provider' => 'bestbuy'],\n ['name' => \"The Gospel Truth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gospel-truth-cd/1512214.p?id=77979&skuId=1512214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512214.jpg\"}', 'upc' => '019148500525', 'provider' => 'bestbuy'],\n ['name' => \"Martin Lawrence Live: Talkin' Shit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/martin-lawrence-live-talkin-shit-cd/1512287.p?id=88820&skuId=1512287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512287.jpg\"}', 'upc' => '075679228925', 'provider' => 'bestbuy'],\n ['name' => \"Runaway Love [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/runaway-love-ep-cd/1512303.p?id=81557&skuId=1512303&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512303_sa.jpg\"}', 'upc' => '075679229625', 'provider' => 'bestbuy'],\n ['name' => \"Street Angel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/street-angel-cd/1512349.p?id=93302&skuId=1512349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512349_sa.jpg\"}', 'upc' => '075679224620', 'provider' => 'bestbuy'],\n ['name' => \"So Tonight That I Might See - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-tonight-that-i-might-see-cd/1512768.p?id=90951&skuId=1512768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1512768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1512\\/1512768_sa.jpg\"}', 'upc' => '077779825325', 'provider' => 'bestbuy'],\n ['name' => \"Speck - SmartShell Case for 11\\\" Apple® MacBook® Air - Gray\", 'description_short' => \"Compatible with 11&quot; Apple MacBook Air; polycarbonate material; 2-piece hard shell design; snap-on attachment; heat vents; antitilt rubberized feet\", 'description_long' => \"Compatible with 11&quot; Apple MacBook Air; polycarbonate material; 2-piece hard shell design; snap-on attachment; heat vents; antitilt rubberized feet\", 'price' => 49.99, 'sale_price' => 47.99, 'url' => 'http://www.bestbuy.com/site/speck-smartshell-case-for-11-apple-macbook-air-gray/1513013.p?id=1219498710291&skuId=1513013', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1513013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1513\\/1513013_rc.jpg\"}', 'upc' => '848709006837', 'provider' => 'bestbuy'],\n ['name' => \"Excess & Overdrive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/excess-overdrive-cd/1513286.p?id=102216&skuId=1513286&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1513286', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1513\\/1513286.jpg\"}', 'upc' => '016861907624', 'provider' => 'bestbuy'],\n ['name' => \"Country Dances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-dances-cd/1513311.p?id=91131&skuId=1513311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1513311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1513\\/1513311_sa.jpg\"}', 'upc' => '715187762824', 'provider' => 'bestbuy'],\n ['name' => \"The United Artists Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-united-artists-collection-cd/1513393.p?id=89257&skuId=1513393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1513393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1513\\/1513393_sa.jpg\"}', 'upc' => '724382701521', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Crystal Gayle [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-crystal-gayle-curb-cd/1513455.p?id=83415&skuId=1513455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1513455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1513\\/1513455_sa.jpg\"}', 'upc' => '715187764422', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Nitty Gritty Dirt Band [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-nitty-gritty-dirt-band-curb-cd/1513482.p?id=93423&skuId=1513482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1513482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1513\\/1513482_sa.jpg\"}', 'upc' => '715187764521', 'provider' => 'bestbuy'],\n ['name' => \"Rhythm Is My Business - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rhythm-is-my-business-cd/1513767.p?id=69547&skuId=1513767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1513767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1513\\/1513767_sa.jpg\"}', 'upc' => '730182204124', 'provider' => 'bestbuy'],\n ['name' => \"[LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lp-vinyl/1514102.p?id=2164503&skuId=1514102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514102_sa.jpg\"}', 'upc' => '093624960300', 'provider' => 'bestbuy'],\n ['name' => \"Soviet Kitsch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/soviet-kitsch-cd/1514111.p?id=1813874&skuId=1514111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514111_sa.jpg\"}', 'upc' => '093624935223', 'provider' => 'bestbuy'],\n ['name' => \"Alejandro Sanz: Canciones para un Paraiso - En Vivo (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alejandro-sanz-canciones-para-un-paraiso-en-vivo-dvd/1514148.p?id=2162500&skuId=1514148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514148_sa.jpg\"}', 'upc' => '825646771882', 'provider' => 'bestbuy'],\n ['name' => \"Number One Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/number-one-hits-cd/1514166.p?id=2157198&skuId=1514166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514166_sa.jpg\"}', 'upc' => '715187920521', 'provider' => 'bestbuy'],\n ['name' => \"Craig Campbell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/craig-campbell-cd/1514175.p?id=2164180&skuId=1514175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514175_sa.jpg\"}', 'upc' => '093624962922', 'provider' => 'bestbuy'],\n ['name' => \"Only One Flo, Pt. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/only-one-flo-pt-1-cd/1514184.p?id=2162893&skuId=1514184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514184_sa.jpg\"}', 'upc' => '075678892561', 'provider' => 'bestbuy'],\n ['name' => \"Live In London - Blu-ray Disc - (2 Disc) (Bonus CD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-london-blu-ray-disc-2-disc-bonus-cd/1514193.p?id=2164875&skuId=1514193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514193_sa.jpg\"}', 'upc' => '093624963080', 'provider' => 'bestbuy'],\n ['name' => \"Occasion to Rise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/occasion-to-rise-cd/1514196.p?id=70483&skuId=1514196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514196.jpg\"}', 'upc' => '730182204223', 'provider' => 'bestbuy'],\n ['name' => \"Live in London [CD & DVD] [PA] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-london-cd-dvd-pa-digipak-cd-dvd/1514209.p?id=2173318&skuId=1514209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514209_sa.jpg\"}', 'upc' => '093624963097', 'provider' => 'bestbuy'],\n ['name' => \"[11/9] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/11-9-cd/1514236.p?id=2164504&skuId=1514236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514236_sa.jpg\"}', 'upc' => '093624960317', 'provider' => 'bestbuy'],\n ['name' => \"Sonic Text - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonic-text-cd/1514294.p?id=66211&skuId=1514294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514294.jpg\"}', 'upc' => '025218677721', 'provider' => 'bestbuy'],\n ['name' => \"Songs for Tomorrow Morning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-for-tomorrow-morning-cd/1514436.p?id=75372&skuId=1514436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514436_sa.jpg\"}', 'upc' => '081227146627', 'provider' => 'bestbuy'],\n ['name' => \"Traveler - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traveler-cd/1514472.p?id=1422767&skuId=1514472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514472_sa.jpg\"}', 'upc' => '038153046224', 'provider' => 'bestbuy'],\n ['name' => \"Don't Hurt No More - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-hurt-no-more-cd/1514481.p?id=185963&skuId=1514481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514481.jpg\"}', 'upc' => '041924201821', 'provider' => 'bestbuy'],\n ['name' => \"And Stood There Amazed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/and-stood-there-amazed-cd/1514551.p?id=102676&skuId=1514551&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514551.jpg\"}', 'upc' => '015707947121', 'provider' => 'bestbuy'],\n ['name' => \"Gentlemen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gentlemen-cd/1514739.p?id=72544&skuId=1514739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514739_sa.jpg\"}', 'upc' => '075596150125', 'provider' => 'bestbuy'],\n ['name' => \"A Little More Magic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-little-more-magic-cd/1514793.p?id=94619&skuId=1514793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1514793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1514\\/1514793_sa.jpg\"}', 'upc' => '075596149723', 'provider' => 'bestbuy'],\n ['name' => \"Curious Case of Benjamin Button/Forrest Gump [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/curious-case-of-benjamin-button-forrest-gump-2-discs-dvd/1515002.p?id=2835707&skuId=1515002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1515\\/1515002_sa.jpg\"}', 'upc' => '883929398829', 'provider' => 'bestbuy'],\n ['name' => \"Project X/Beerfest [2 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/project-x-beerfest-2-discs-dvd/1515011.p?id=3231643&skuId=1515011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1515\\/1515011_sa.jpg\"}', 'upc' => '883929389780', 'provider' => 'bestbuy'],\n ['name' => \"Time to Kill/Pelican Brief/Client [3 Disc] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-to-kill-pelican-brief-client-3-disc-blu-ray-disc/1515039.p?id=3273286&skuId=1515039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1515\\/1515039_sa.jpg\"}', 'upc' => '883929406296', 'provider' => 'bestbuy'],\n ['name' => \"Valentine's Day/New Year's Eve [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/valentines-day-new-years-eve-2-discs-dvd/1515048.p?id=3294673&skuId=1515048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1515\\/1515048_sa.jpg\"}', 'upc' => '794043173615', 'provider' => 'bestbuy'],\n ['name' => \"Seven / Devil'S Advocate / Insomnia (Blu-ray Disc) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seven-devils-advocate-insomnia-blu-ray-disc-3-disc/1515057.p?id=3273252&skuId=1515057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2555\\/25557314.jpg\"}', 'upc' => '883929406869', 'provider' => 'bestbuy'],\n ['name' => \"Terminator 3: Rise of the Machines/Terminator Salvation [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/terminator-3-rise-of-the-machines-terminator-salvation-2-discs-dvd/1515066.p?id=2243280&skuId=1515066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1515\\/1515066_sa.jpg\"}', 'upc' => '883929210190', 'provider' => 'bestbuy'],\n ['name' => \"Matrix/Matrix Reloaded/Matrix Revolutions (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matrix-matrix-reloaded-matrix-revolutions-blu-ray-disc/1515075.p?id=3260241&skuId=1515075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1515\\/1515075_sa.jpg\"}', 'upc' => '883929351923', 'provider' => 'bestbuy'],\n ['name' => \"Terminator 3/Eraser/Collateral Damage [3 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/terminator-3-eraser-collateral-damage-3-discs-blu-ray-disc/1515084.p?id=3273227&skuId=1515084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1515\\/1515084_sa.jpg\"}', 'upc' => '883929406302', 'provider' => 'bestbuy'],\n ['name' => \"Feadoga Stain, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feadoga-stain-vol-1-cd/1515177.p?id=74480&skuId=1515177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1515\\/1515177_sa.jpg\"}', 'upc' => '016351790620', 'provider' => 'bestbuy'],\n ['name' => \"God Shuffled His Feet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/god-shuffled-his-feet-cd/1515676.p?id=79098&skuId=1515676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1515\\/1515676_sa.jpg\"}', 'upc' => '743211653121', 'provider' => 'bestbuy'],\n ['name' => \"O Holy Night [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/o-holy-night-cd-dvd-digipak-cd-dvd/1515869.p?id=2163596&skuId=1515869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1515869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1515\\/1515869_sa.jpg\"}', 'upc' => '886978115126', 'provider' => 'bestbuy'],\n ['name' => \"Formulations in Black - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/formulations-in-black-cd/1516513.p?id=98808&skuId=1516513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516513.jpg\"}', 'upc' => '033821993220', 'provider' => 'bestbuy'],\n ['name' => \"Carried Away-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carried-away-cd/1516531.p?id=81063&skuId=1516531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '090062303423', 'provider' => 'bestbuy'],\n ['name' => \"MartinLogan - Motion FX 5-1/4\\\" 2-Way Bookshelf Speaker (Each) - White\", 'description_short' => \"From our expanded online assortment; 160 watts peak power (80W maximum); 5-1/4&quot; paper cone woofer; dual Folded Motion tweeters; precision Vojtko crossover; push-style binding posts\", 'description_long' => \"From our expanded online assortment; 160 watts peak power (80W maximum); 5-1/4&quot; paper cone woofer; dual Folded Motion tweeters; precision Vojtko crossover; push-style binding posts\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/martinlogan-motion-fx-5-1-4-2-way-bookshelf-speaker-each-white/1516552.p?id=1218360690655&skuId=1516552', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516552_rc.jpg\"}', 'upc' => '877929005771', 'provider' => 'bestbuy'],\n ['name' => \"Russound - Acclaim 5 Series 6-1/2\\\" 2-Way Indoor/Outdoor Speakers (Pair) - White\", 'description_short' => \"From our expanded online assortment; 150W peak power handling; 6-1/2&quot; injection-molded polypropylene and KEVLAR&#174; woofers; 1&quot; Teteron tweeters; 12-gauge spring terminal connection\", 'description_long' => \"From our expanded online assortment; 150W peak power handling; 6-1/2&quot; injection-molded polypropylene and KEVLAR&#174; woofers; 1&quot; Teteron tweeters; 12-gauge spring terminal connection\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russound-acclaim-5-series-6-1-2-2-way-indoor-outdoor-speakers-pair-white/1516622.p?id=1218265775537&skuId=1516622', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516622_sa.jpg\"}', 'upc' => '612934532856', 'provider' => 'bestbuy'],\n ['name' => \"Russound - Acclaim 5 Series 5-1/4\\\" 2-Way Indoor/Outdoor Speakers (Pair) - White\", 'description_short' => \"From our expanded online assortment; 125W peak power handling; 5-1/4&quot; injection-molded polypropylene and KEVLAR&#174; woofer; 1&quot; Teteron tweeter; 12-gauge spring terminal connection\", 'description_long' => \"From our expanded online assortment; 125W peak power handling; 5-1/4&quot; injection-molded polypropylene and KEVLAR&#174; woofer; 1&quot; Teteron tweeter; 12-gauge spring terminal connection\", 'price' => 259.99, 'sale_price' => 130.99, 'url' => 'http://www.bestbuy.com/site/russound-acclaim-5-series-5-1-4-2-way-indoor-outdoor-speakers-pair-white/1516631.p?id=1218265774900&skuId=1516631', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516631', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516631_sa.jpg\"}', 'upc' => '612934532849', 'provider' => 'bestbuy'],\n ['name' => \"Dick - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dick-cd/1516657.p?id=83658&skuId=1516657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516657.jpg\"}', 'upc' => '031895003227', 'provider' => 'bestbuy'],\n ['name' => \"Russound - Acclaim 5 Series 100W 2-Way Indoor/Outdoor Speakers (Pair) - Black\", 'description_short' => \"From our expanded online assortment; 100W peak power handling; 4&quot; injection-molded polypropylene and KEVLAR&#174; woofer; 1&quot; Teteron tweeter\", 'description_long' => \"From our expanded online assortment; 100W peak power handling; 4&quot; injection-molded polypropylene and KEVLAR&#174; woofer; 1&quot; Teteron tweeter\", 'price' => 199.99, 'sale_price' => 99.99, 'url' => 'http://www.bestbuy.com/site/russound-acclaim-5-series-100w-2-way-indoor-outdoor-speakers-pair-black/1516668.p?id=1218265773748&skuId=1516668', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516668_sa.jpg\"}', 'upc' => '612934532870', 'provider' => 'bestbuy'],\n ['name' => \"Russound - 150W Indoor/Outdoor Speaker (Each) - Black\", 'description_short' => \"From our expanded online assortment; 150W peak power handling; 6-1/2&quot; injection-molded polypropylene and KEVLAR&#174; woofer; 1&quot; Teteron tweeter\", 'description_long' => \"From our expanded online assortment; 150W peak power handling; 6-1/2&quot; injection-molded polypropylene and KEVLAR&#174; woofer; 1&quot; Teteron tweeter\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russound-150w-indoor-outdoor-speaker-each-black/1516686.p?id=1218265771061&skuId=1516686', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516686_sa.jpg\"}', 'upc' => '612934532900', 'provider' => 'bestbuy'],\n ['name' => \"Russound - 150W 2-Way Indoor/Outdoor Speakers (Pair)\", 'description_short' => \"From our expanded online assortment; 150W peak power handling; 6-1/2&quot; injection-molded polypropylene and KEVLAR woofer; 1&quot; Teteron tweeter\", 'description_long' => \"From our expanded online assortment; 150W peak power handling; 6-1/2&quot; injection-molded polypropylene and KEVLAR woofer; 1&quot; Teteron tweeter\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russound-150w-2-way-indoor-outdoor-speakers-pair/1516722.p?id=1218265778211&skuId=1516722', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516722_sa.jpg\"}', 'upc' => '612934532894', 'provider' => 'bestbuy'],\n ['name' => \"Russound - Acclaim 5 Series 4\\\" 2-Way Indoor/Outdoor Speakers (Pair) - White\", 'description_short' => \"From our expanded online assortment; 100W peak power handling; 4&quot; injection-molded polypropylene and KEVLAR&#174; woofer; 1&quot; Teteron tweeter; 12-gauge spring terminal connection\", 'description_long' => \"From our expanded online assortment; 100W peak power handling; 4&quot; injection-molded polypropylene and KEVLAR&#174; woofer; 1&quot; Teteron tweeter; 12-gauge spring terminal connection\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russound-acclaim-5-series-4-2-way-indoor-outdoor-speakers-pair-white/1516759.p?id=1218265775948&skuId=1516759', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516759_sa.jpg\"}', 'upc' => '612934532832', 'provider' => 'bestbuy'],\n ['name' => \"Russound - Acclaim 5 Series 125W 2-Way Indoor/Outdoor Speakers (Pair)\", 'description_short' => \"From our expanded online assortment; 125W peak power handling; 5-1/4&quot; injection-molded polypropylene and KEVLAR woofer; 1&quot; Teteron tweeter\", 'description_long' => \"From our expanded online assortment; 125W peak power handling; 5-1/4&quot; injection-molded polypropylene and KEVLAR woofer; 1&quot; Teteron tweeter\", 'price' => 259.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russound-acclaim-5-series-125w-2-way-indoor-outdoor-speakers-pair/1516777.p?id=1218265775749&skuId=1516777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516777_sa.jpg\"}', 'upc' => '612934532887', 'provider' => 'bestbuy'],\n ['name' => \"Reggae Gold 1993 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reggae-gold-1993-cd-various/1516826.p?id=113664&skuId=1516826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516826_sa.jpg\"}', 'upc' => '054645130929', 'provider' => 'bestbuy'],\n ['name' => \"Texas Conjunto Pioneer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-conjunto-pioneer-cd/1516853.p?id=89591&skuId=1516853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516853_sa.jpg\"}', 'upc' => '096297035825', 'provider' => 'bestbuy'],\n ['name' => \"Texas Songster, Vol. 2: You Got to Reap What... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-songster-vol-2-you-got-to-reap-what-cd/1516906.p?id=89328&skuId=1516906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1516906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1516\\/1516906_sa.jpg\"}', 'upc' => '096297039823', 'provider' => 'bestbuy'],\n ['name' => \"Modal - Apple MFi Certified 3' Lighted USB-to-Lightning Cable - Blue\", 'description_short' => \"Only at Best Buy\nDesigned for most Lightning-enabled devices; USB 2.0 Type A interface; polyurethane jacket; 3-stage light indicator; 3&#039; cable length\", 'description_long' => \"Only at Best Buy\nDesigned for most Lightning-enabled devices; USB 2.0 Type A interface; polyurethane jacket; 3-stage light indicator; 3&#039; cable length\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/modal-apple-mfi-certified-3-lighted-usb-to-lightning-cable-blue/1517019.p?id=1219502527563&skuId=1517019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517019_sa.jpg\"}', 'upc' => '600603189265', 'provider' => 'bestbuy'],\n ['name' => \"Sony - Quarterback Helmet Mount for Sony Action Cam - Black\", 'description_short' => \"SONY Quarterback Helmet Mount for Sony Action Cam: Compatible with select Sony Action Cam digital camcorders; 19&quot; strap; hook attachment; multi-angle design\", 'description_long' => \"SONY Quarterback Helmet Mount for Sony Action Cam: Compatible with select Sony Action Cam digital camcorders; 19&quot; strap; hook attachment; multi-angle design\", 'price' => 100.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-quarterback-helmet-mount-for-sony-action-cam-black/1517028.p?id=1219697397553&skuId=1517028', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517028_rc.jpg\"}', 'upc' => '027242885684', 'provider' => 'bestbuy'],\n ['name' => \"Soul Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-street-cd/1517059.p?id=85541&skuId=1517059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517059_sa.jpg\"}', 'upc' => '011661212428', 'provider' => 'bestbuy'],\n ['name' => \"Adventures Of Sonic The Hedgehog: Vol 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adventures-of-sonic-the-hedgehog-vol-2-dvd/1517064.p?id=2538893&skuId=1517064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517064.jpg\"}', 'upc' => '843501001660', 'provider' => 'bestbuy'],\n ['name' => \"ABCs of Death 2 (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/abcs-of-death-2-blu-ray-disc/1517073.p?id=3323941&skuId=1517073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517073_sa.jpg\"}', 'upc' => '876964008044', 'provider' => 'bestbuy'],\n ['name' => \"Wings: The Complete Series [16 Discs] (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wings-the-complete-series-16-discs-boxed-set-dvd/1517082.p?id=3278130&skuId=1517082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1517082.jpg\"}', 'upc' => '683904111647', 'provider' => 'bestbuy'],\n ['name' => \"Wonder Years: Season 2 [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wonder-years-season-2-4-discs-dvd/1517091.p?id=3331068&skuId=1517091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517091.jpg\"}', 'upc' => '610583485196', 'provider' => 'bestbuy'],\n ['name' => \"Mama's Family: The Complete Sixth Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mamas-family-the-complete-sixth-season-3-discs-dvd/1517106.p?id=3343644&skuId=1517106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517106.jpg\"}', 'upc' => '610583464795', 'provider' => 'bestbuy'],\n ['name' => \"Peppa Pig: Bubbles (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peppa-pig-bubbles-dvd/1517115.p?id=3312058&skuId=1517115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517115.jpg\"}', 'upc' => '741952756996', 'provider' => 'bestbuy'],\n ['name' => \"V/H/S: Viral (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-h-s-viral-blu-ray-disc/1517124.p?id=3328562&skuId=1517124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517124_sa.jpg\"}', 'upc' => '876964008105', 'provider' => 'bestbuy'],\n ['name' => \"Ragamuffin (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ragamuffin-dvd/1517133.p?id=3220144&skuId=1517133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '687797156099', 'provider' => 'bestbuy'],\n ['name' => \"Richard Pryor: Omit the Logic (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/richard-pryor-omit-the-logic-blu-ray-disc/1517142.p?id=3323939&skuId=1517142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517142_sa.jpg\"}', 'upc' => '876964008068', 'provider' => 'bestbuy'],\n ['name' => \"Sixties (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sixties-dvd-3-disc/1517151.p?id=3320457&skuId=1517151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517151.jpg\"}', 'upc' => '841887023344', 'provider' => 'bestbuy'],\n ['name' => \"Savannah Smiles (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/savannah-smiles-dvd/1517179.p?id=24306&skuId=1517179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517179_sa.jpg\"}', 'upc' => '827421000729', 'provider' => 'bestbuy'],\n ['name' => \"Miss Meadows (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miss-meadows-dvd/1517188.p?id=3314117&skuId=1517188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517188.jpg\"}', 'upc' => '625828638268', 'provider' => 'bestbuy'],\n ['name' => \"V/H/S: Viral (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-h-s-viral-dvd/1517197.p?id=3328562&skuId=1517197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517197_sa.jpg\"}', 'upc' => '876964008099', 'provider' => 'bestbuy'],\n ['name' => \"ABCs of Death 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/abcs-of-death-2-dvd/1517202.p?id=3323941&skuId=1517202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517202_sa.jpg\"}', 'upc' => '876964008037', 'provider' => 'bestbuy'],\n ['name' => \"Ragamuffin (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ragamuffin-blu-ray-disc/1517211.p?id=3220144&skuId=1517211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517211_sa.jpg\"}', 'upc' => '687797156068', 'provider' => 'bestbuy'],\n ['name' => \"Home Run (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-run-dvd/1517239.p?id=2729118&skuId=1517239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517239_sa.jpg\"}', 'upc' => '687797140999', 'provider' => 'bestbuy'],\n ['name' => \"Brotherhood of Blades (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brotherhood-of-blades-blu-ray-disc/1517248.p?id=3330671&skuId=1517248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517248_sa.jpg\"}', 'upc' => '812491016176', 'provider' => 'bestbuy'],\n ['name' => \"Cat In The Hat: Oh The Skin We Are In (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cat-in-the-hat-oh-the-skin-we-are-in-dvd/1517257.p?id=3280579&skuId=1517257&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517257.jpg\"}', 'upc' => '843501009536', 'provider' => 'bestbuy'],\n ['name' => \"The Beautiful Beast (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-beautiful-beast-dvd/1517266.p?id=2966476&skuId=1517266&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '609261014131', 'provider' => 'bestbuy'],\n ['name' => \"Space Dandy: Season 1 (Blu-ray Disc) (4 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 47.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/space-dandy-season-1-blu-ray-disc-4-disc/1517275.p?id=3323303&skuId=1517275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517275.jpg\"}', 'upc' => '704400092725', 'provider' => 'bestbuy'],\n ['name' => \"Cowboy Bebop: Complete Series (DVD) (5 Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cowboy-bebop-complete-series-dvd-5-disc-boxed-set/1517293.p?id=3301292&skuId=1517293&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517293.jpg\"}', 'upc' => '704400090547', 'provider' => 'bestbuy'],\n ['name' => \"Dino Dan: Trekules (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dino-dan-trekules-dvd/1517307.p?id=3280548&skuId=1517307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517307.jpg\"}', 'upc' => '843501004777', 'provider' => 'bestbuy'],\n ['name' => \"Joan Rivers: A Piece of Work (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joan-rivers-a-piece-of-work-blu-ray-disc/1517316.p?id=2154415&skuId=1517316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '030306186795', 'provider' => 'bestbuy'],\n ['name' => \"No Tears for the Dead (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-tears-for-the-dead-blu-ray-disc/1517325.p?id=3345697&skuId=1517325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517325_sa.jpg\"}', 'upc' => '687797953162', 'provider' => 'bestbuy'],\n ['name' => \"God'S Pocket (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gods-pocket-dvd/1517334.p?id=3260334&skuId=1517334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '030306938592', 'provider' => 'bestbuy'],\n ['name' => \"Dave Grusin Presents GRP All-Star Big Band Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dave-grusin-presents-grp-all-star-big-band-live-cd/1517335.p?id=67011&skuId=1517335&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517335_sa.jpg\"}', 'upc' => '011105974028', 'provider' => 'bestbuy'],\n ['name' => \"Equalizer: Season Three (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/equalizer-season-three-boxed-set-dvd/1517343.p?id=3304147&skuId=1517343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '773848665334', 'provider' => 'bestbuy'],\n ['name' => \"BD-ON ANY SUNDAY:NEXT CHAPTER (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bd-on-any-sundaynext-chapter-blu-ray-disc/1517352.p?id=3323306&skuId=1517352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '761450627628', 'provider' => 'bestbuy'],\n ['name' => \"RPG (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rpg-dvd/1517361.p?id=3333128&skuId=1517361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517361_sa.jpg\"}', 'upc' => '796019829007', 'provider' => 'bestbuy'],\n ['name' => \"Sky Islands - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sky-islands-cd/1517380.p?id=68565&skuId=1517380&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517380', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517380.jpg\"}', 'upc' => '011105974226', 'provider' => 'bestbuy'],\n ['name' => \"8 Film Family: Family Pack (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/8-film-family-family-pack-dvd-2-disc/1517389.p?id=3281852&skuId=1517389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '687797517593', 'provider' => 'bestbuy'],\n ['name' => \"Toaru Majutsu no Index: Endymion no Kiseki (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/toaru-majutsu-no-index-endymion-no-kiseki-blu-ray-disc-2-disc/1517398.p?id=3328560&skuId=1517398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517398_sa.jpg\"}', 'upc' => '704400067655', 'provider' => 'bestbuy'],\n ['name' => \"Equalizer: Season Two (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/equalizer-season-two-dvd/1517403.p?id=3220085&skuId=1517403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '773848665235', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Collection: A Family Affair (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/best-of-collection-a-family-affair-dvd/1517412.p?id=2749302&skuId=1517412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517412_sa.jpg\"}', 'upc' => '030306709291', 'provider' => 'bestbuy'],\n ['name' => \"VANish (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vanish-blu-ray-disc/1517421.p?id=3324064&skuId=1517421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517421_sa.jpg\"}', 'upc' => '030306193694', 'provider' => 'bestbuy'],\n ['name' => \"Sony - Camera Case - Black\", 'description_short' => \"Compatible with select Sony Cyber-shot T- and W-series cameras; nylon material; internal pocket; semihard front; padded back; belt loop; zipper closure\", 'description_long' => \"Compatible with select Sony Cyber-shot T- and W-series cameras; nylon material; internal pocket; semihard front; padded back; belt loop; zipper closure\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-camera-case-black/1517436.p?id=1219053722706&skuId=1517436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '027242853409', 'provider' => 'bestbuy'],\n ['name' => \"After The Fall (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-the-fall-dvd/1517449.p?id=3322236&skuId=1517449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517449_sa.jpg\"}', 'upc' => '625828639012', 'provider' => 'bestbuy'],\n ['name' => \"The Truth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-truth-cd/1517451.p?id=84640&skuId=1517451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517451.jpg\"}', 'upc' => '008811081027', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - SonicFuel In-Ear Headphones - Blue\", 'description_short' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; integrated microphone and controls; includes 4 earpiece sizes\", 'description_long' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; integrated microphone and controls; includes 4 earpiece sizes\", 'price' => 39.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-sonicfuel-in-ear-headphones-blue/1517458.p?id=1219500999017&skuId=1517458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517458_sa.jpg\"}', 'upc' => '042005179954', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Solid Bass Over-the-Ear Headphones - Black\", 'description_short' => \"AUDIO-TECHNICA Solid Bass Over-the-Ear Headphones: Sound isolation; 40mm drivers; neodymium magnets; acoustically sealed, oval ear pads; adjustable headband slider; foldable design\", 'description_long' => \"AUDIO-TECHNICA Solid Bass Over-the-Ear Headphones: Sound isolation; 40mm drivers; neodymium magnets; acoustically sealed, oval ear pads; adjustable headband slider; foldable design\", 'price' => 99.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-solid-bass-over-the-ear-headphones-black/1517467.p?id=1219500997132&skuId=1517467', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517467_sa.jpg\"}', 'upc' => '400015174671', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - SonicFuel In-Ear Headphones - Red\", 'description_short' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; C-tip configuration; 360-degree rotating ear tips; in-line control with microphone; 3.9&#039; flat cable\", 'description_long' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; C-tip configuration; 360-degree rotating ear tips; in-line control with microphone; 3.9&#039; flat cable\", 'price' => 79.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-sonicfuel-in-ear-headphones-red/1517476.p?id=1219500998558&skuId=1517476', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517476_sa.jpg\"}', 'upc' => '042005183067', 'provider' => 'bestbuy'],\n ['name' => \"The Buddy Holly Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-buddy-holly-collection-cd/1517479.p?id=85515&skuId=1517479&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517479', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517479_sa.jpg\"}', 'upc' => '008811088323', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - SonicFuel In-Ear Headphones - Black\", 'description_short' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; large 13.5mm drivers; neodymium magnets; C-tip configuration; in-line controls with microphone; 3.9&#039; flat cable; included hard, zippered carrying case\", 'description_long' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; large 13.5mm drivers; neodymium magnets; C-tip configuration; in-line controls with microphone; 3.9&#039; flat cable; included hard, zippered carrying case\", 'price' => 99.95, 'sale_price' => 72.99, 'url' => 'http://www.bestbuy.com/site/audio-technica-sonicfuel-in-ear-headphones-black/1517485.p?id=1219500991623&skuId=1517485', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517485_sa.jpg\"}', 'upc' => '042005183128', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [MCA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-mca-cd/1517497.p?id=97112&skuId=1517497&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517497_sa.jpg\"}', 'upc' => '008811088422', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Core Bass In-Ear Headphones - Red\", 'description_short' => \"AUDIO-TECHNICA Core Bass In-Ear Headphones: Sound isolating; 8.5mm drivers; neodymium magnets; snap-on, snap-off oval ear hooks; included travel-friendly cord wrap\", 'description_long' => \"AUDIO-TECHNICA Core Bass In-Ear Headphones: Sound isolating; 8.5mm drivers; neodymium magnets; snap-on, snap-off oval ear hooks; included travel-friendly cord wrap\", 'price' => 19.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-core-bass-in-ear-headphones-red/1517501.p?id=1219500998559&skuId=1517501', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517501_sa.jpg\"}', 'upc' => '042005179183', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Clear In-Ear Headphones - White\", 'description_short' => \"AUDIO-TECHNICA Clear In-Ear Headphones: Sound isolation; 8.5mm drivers; neodymium magnets; ear-fit design; included travel-friendly, collapsible cord wrap\", 'description_long' => \"AUDIO-TECHNICA Clear In-Ear Headphones: Sound isolation; 8.5mm drivers; neodymium magnets; ear-fit design; included travel-friendly, collapsible cord wrap\", 'price' => 14.95, 'sale_price' => 13.99, 'url' => 'http://www.bestbuy.com/site/audio-technica-clear-in-ear-headphones-white/1517529.p?id=1219500989590&skuId=1517529', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517529_sa.jpg\"}', 'upc' => '042005179114', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-hits-cd/1517530.p?id=82737&skuId=1517530&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517530', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517530_sa.jpg\"}', 'upc' => '008811088620', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - SonicFuel In-Ear Headphones - Purple\", 'description_short' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; C-tip configuration; 360-degree rotating ear tips; in-line control with microphone; 3.9&#039; flat cable\", 'description_long' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; C-tip configuration; 360-degree rotating ear tips; in-line control with microphone; 3.9&#039; flat cable\", 'price' => 79.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-sonicfuel-in-ear-headphones-purple/1517538.p?id=1219500993156&skuId=1517538', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517538_sa.jpg\"}', 'upc' => '042005183050', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - SonicFuel In-Ear Headphones - White\", 'description_short' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; C-tip configuration; 360-degree rotating ear tips; in-line control with microphone; 3.9&#039; flat cable\", 'description_long' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; C-tip configuration; 360-degree rotating ear tips; in-line control with microphone; 3.9&#039; flat cable\", 'price' => 79.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-sonicfuel-in-ear-headphones-white/1517547.p?id=1219500991233&skuId=1517547', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517547_sa.jpg\"}', 'upc' => '042005183074', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - QuietPoint Active-Noise-Canceling Over-the-Ear Headphones - Black\", 'description_short' => \"AUDIO-TECHNICA QuietPoint Active-Noise-Canceling Over-the-Ear Headphones: Active noise cancellation; 40mm drivers; neodymium magnets; 3.9&#039; detachable cord with in-line volume control; folding design; AAA battery\", 'description_long' => \"AUDIO-TECHNICA QuietPoint Active-Noise-Canceling Over-the-Ear Headphones: Active noise cancellation; 40mm drivers; neodymium magnets; 3.9&#039; detachable cord with in-line volume control; folding design; AAA battery\", 'price' => 189.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-quietpoint-active-noise-canceling-over-the-ear-headphones-black/1517565.p?id=1219500991624&skuId=1517565', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517565_sa.jpg\"}', 'upc' => '042005181322', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Clear In-Ear Headphones - Red\", 'description_short' => \"AUDIO-TECHNICA Clear In-Ear Headphones: Sound isolation; 8.5mm drivers; neodymium magnets; ear-fit design; included travel-friendly, collapsible cord wrap\", 'description_long' => \"AUDIO-TECHNICA Clear In-Ear Headphones: Sound isolation; 8.5mm drivers; neodymium magnets; ear-fit design; included travel-friendly, collapsible cord wrap\", 'price' => 14.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-clear-in-ear-headphones-red/1517574.p?id=1219500994576&skuId=1517574', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517574_sa.jpg\"}', 'upc' => '042005179107', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Solid Bass Over-the-Ear Headphones - Black\", 'description_short' => \"AUDIO-TECHNICA Solid Bass Over-the-Ear Headphones: Sound isolation; 40mm drivers; neodymium magnets; in-line 3-button remote; built-in microphone; acoustically sealed, oval ear pads; adjustable headband slider; foldable design\", 'description_long' => \"AUDIO-TECHNICA Solid Bass Over-the-Ear Headphones: Sound isolation; 40mm drivers; neodymium magnets; in-line 3-button remote; built-in microphone; acoustically sealed, oval ear pads; adjustable headband slider; foldable design\", 'price' => 119.95, 'sale_price' => 108.99, 'url' => 'http://www.bestbuy.com/site/audio-technica-solid-bass-over-the-ear-headphones-black/1517583.p?id=1219500991869&skuId=1517583', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517583_sa.jpg\"}', 'upc' => '042005179435', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Core Bass In-Ear Headphones - Orange\", 'description_short' => \"AUDIO-TECHNICA Core Bass In-Ear Headphones: Sound isolating; 8.5mm drivers; neodymium magnets; snap-on, snap-off oval ear hooks; included travel-friendly cord wrap\", 'description_long' => \"AUDIO-TECHNICA Core Bass In-Ear Headphones: Sound isolating; 8.5mm drivers; neodymium magnets; snap-on, snap-off oval ear hooks; included travel-friendly cord wrap\", 'price' => 19.95, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/audio-technica-core-bass-in-ear-headphones-orange/1517592.p?id=1219500995493&skuId=1517592', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517592_sa.jpg\"}', 'upc' => '042005179152', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-2-cd/1517709.p?id=91145&skuId=1517709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517709_sa.jpg\"}', 'upc' => '008811090623', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Core Bass In-Ear Headphones - Lime Green\", 'description_short' => \"AUDIO-TECHNICA Core Bass In-Ear Headphones: Sound isolating; 8.5mm drivers; neodymium magnets; snap-on, snap-off oval ear hooks; included travel-friendly cord wrap\", 'description_long' => \"AUDIO-TECHNICA Core Bass In-Ear Headphones: Sound isolating; 8.5mm drivers; neodymium magnets; snap-on, snap-off oval ear hooks; included travel-friendly cord wrap\", 'price' => 19.95, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/audio-technica-core-bass-in-ear-headphones-lime-green/1517729.p?id=1219500989586&skuId=1517729', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517729', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517729_sa.jpg\"}', 'upc' => '042005179145', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Clear In-Ear Headphones - Black\", 'description_short' => \"AUDIO-TECHNICA Clear In-Ear Headphones: Sound isolation; 8.5mm drivers; neodymium magnets; ear-fit design; included travel-friendly, collapsible cord wrap\", 'description_long' => \"AUDIO-TECHNICA Clear In-Ear Headphones: Sound isolation; 8.5mm drivers; neodymium magnets; ear-fit design; included travel-friendly, collapsible cord wrap\", 'price' => 14.95, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/audio-technica-clear-in-ear-headphones-black/1517738.p?id=1219500996858&skuId=1517738', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517738_sa.jpg\"}', 'upc' => '042005179046', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - SonicFuel In-Ear Headphones - Blue\", 'description_short' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; C-tip configuration; 360-degree rotating ear tips; in-line control with microphone; 3.9&#039; flat cable\", 'description_long' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; C-tip configuration; 360-degree rotating ear tips; in-line control with microphone; 3.9&#039; flat cable\", 'price' => 79.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-sonicfuel-in-ear-headphones-blue/1517747.p?id=1219500998685&skuId=1517747', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517747_sa.jpg\"}', 'upc' => '042005183043', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Clear In-Ear Headphones - Blue\", 'description_short' => \"AUDIO-TECHNICA Clear In-Ear Headphones: Sound isolation; 8.5mm drivers; neodymium magnets; ear-fit design; included travel-friendly, collapsible cord wrap\", 'description_long' => \"AUDIO-TECHNICA Clear In-Ear Headphones: Sound isolation; 8.5mm drivers; neodymium magnets; ear-fit design; included travel-friendly, collapsible cord wrap\", 'price' => 14.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-clear-in-ear-headphones-blue/1517756.p?id=1219500998359&skuId=1517756', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517756_sa.jpg\"}', 'upc' => '042005179053', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - SonicFuel In-Ear Headphones - Silver\", 'description_short' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; large 13.5mm drivers; neodymium magnets; C-tip configuration; in-line controls with microphone; 3.9&#039; flat cable; included hard, zippered carrying case\", 'description_long' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; large 13.5mm drivers; neodymium magnets; C-tip configuration; in-line controls with microphone; 3.9&#039; flat cable; included hard, zippered carrying case\", 'price' => 99.95, 'sale_price' => 81.99, 'url' => 'http://www.bestbuy.com/site/audio-technica-sonicfuel-in-ear-headphones-silver/1517765.p?id=1219500998949&skuId=1517765', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517765_sa.jpg\"}', 'upc' => '042005183135', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - SonicFuel In-Ear Headphones - White\", 'description_short' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; integrated microphone and controls; includes 4 earpiece sizes\", 'description_long' => \"AUDIO-TECHNICA SonicFuel In-Ear Headphones: Sound isolating; 8mm drivers; neodymium magnets; integrated microphone and controls; includes 4 earpiece sizes\", 'price' => 39.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-sonicfuel-in-ear-headphones-white/1517774.p?id=1219500998292&skuId=1517774', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517774_sa.jpg\"}', 'upc' => '042005179985', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Clear In-Ear Headphones - Purple\", 'description_short' => \"AUDIO-TECHNICA Clear In-Ear Headphones: Sound isolation; 8.5mm drivers; neodymium magnets; ear-fit design; included travel-friendly, collapsible cord wrap\", 'description_long' => \"AUDIO-TECHNICA Clear In-Ear Headphones: Sound isolation; 8.5mm drivers; neodymium magnets; ear-fit design; included travel-friendly, collapsible cord wrap\", 'price' => 14.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-clear-in-ear-headphones-purple/1517783.p?id=1219500996064&skuId=1517783', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517783_sa.jpg\"}', 'upc' => '042005179091', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Core Bass In-Ear Headphones - Blue\", 'description_short' => \"AUDIO-TECHNICA Core Bass In-Ear Headphones: Sound isolating; 8.5mm drivers; neodymium magnets; snap-on, snap-off oval ear hooks; included travel-friendly cord wrap\", 'description_long' => \"AUDIO-TECHNICA Core Bass In-Ear Headphones: Sound isolating; 8.5mm drivers; neodymium magnets; snap-on, snap-off oval ear hooks; included travel-friendly cord wrap\", 'price' => 19.95, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/audio-technica-core-bass-in-ear-headphones-blue/1517792.p?id=1219500999215&skuId=1517792', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517792', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517792_sa.jpg\"}', 'upc' => '042005179138', 'provider' => 'bestbuy'],\n ['name' => \"Samsung - 128GB microSD Class 10 Memory Card - Multi\", 'description_short' => \"Compatible with select tablets, cell phones, desktops and netbooks; 128GB capacity; includes an SD adapter\", 'description_long' => \"Compatible with select tablets, cell phones, desktops and netbooks; 128GB capacity; includes an SD adapter\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/samsung-128gb-microsd-class-10-memory-card-multi/1517829.p?id=1219500989594&skuId=1517829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517829_sa.jpg\"}', 'upc' => '887276085593', 'provider' => 'bestbuy'],\n ['name' => \"Rudy [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rudy-original-motion-picture-soundtrack-cd-original-soundtrack/1517978.p?id=97498&skuId=1517978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1517978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1517\\/1517978_sa.jpg\"}', 'upc' => '030206544626', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Rose Royce from \\\"Carwash\\\" - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-rose-royce-from-carwash-cd/1518539.p?id=97326&skuId=1518539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1518539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1518\\/1518539_sa.jpg\"}', 'upc' => '076732209226', 'provider' => 'bestbuy'],\n ['name' => \"Cutie Pie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cutie-pie-cd/1518557.p?id=93996&skuId=1518557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1518557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1518\\/1518557_sa.jpg\"}', 'upc' => '076742056223', 'provider' => 'bestbuy'],\n ['name' => \"Float On - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/float-on-cd/1518575.p?id=82471&skuId=1518575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1518575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1518\\/1518575_sa.jpg\"}', 'upc' => '076742054328', 'provider' => 'bestbuy'],\n ['name' => \"Cheesy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cheesy-cd/1518664.p?id=179725&skuId=1518664&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1518664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1518\\/1518664_sa.jpg\"}', 'upc' => '016581371026', 'provider' => 'bestbuy'],\n ['name' => \"Psykosonik - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/psykosonik-cd/1518673.p?id=179558&skuId=1518673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1518673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1518\\/1518673_sa.jpg\"}', 'upc' => '016581719828', 'provider' => 'bestbuy'],\n ['name' => \"Gentle Death - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gentle-death-cd/1518726.p?id=179726&skuId=1518726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1518726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1518\\/1518726_sa.jpg\"}', 'upc' => '016581720121', 'provider' => 'bestbuy'],\n ['name' => \"Wolverine [Original Motion Picture... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wolverine-original-motion-picture-cd-original-soundtrack/1519019.p?id=2708644&skuId=1519019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519019_sa.jpg\"}', 'upc' => '888837298025', 'provider' => 'bestbuy'],\n ['name' => \"Hobo Rocket [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hobo-rocket-digipak-cd/1519028.p?id=2728284&skuId=1519028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519028_sa.jpg\"}', 'upc' => '602537359196', 'provider' => 'bestbuy'],\n ['name' => \"Save Yourself, Start Again [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/save-yourself-start-again-digipak-cd/1519064.p?id=2729040&skuId=1519064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519064_sa.jpg\"}', 'upc' => '603111808628', 'provider' => 'bestbuy'],\n ['name' => \"Golden Record [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-record-digipak-cd/1519073.p?id=2727980&skuId=1519073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519073_sa.jpg\"}', 'upc' => '790692077328', 'provider' => 'bestbuy'],\n ['name' => \"Cyrus (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cyrus-blu-ray-disc/1519213.p?id=2164268&skuId=1519213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519213_sa.jpg\"}', 'upc' => '024543689614', 'provider' => 'bestbuy'],\n ['name' => \"The Expendables (Blu-ray Disc) (3 Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-expendables-blu-ray-disc-3-disc-digital-copy/1519222.p?id=2159895&skuId=1519222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519222_sa.jpg\"}', 'upc' => '031398128458', 'provider' => 'bestbuy'],\n ['name' => \"Knight and Day (Blu-ray Disc) (3 Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/knight-and-day-blu-ray-disc-3-disc-digital-copy/1519231.p?id=2160024&skuId=1519231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519231_sa.jpg\"}', 'upc' => '024543718864', 'provider' => 'bestbuy'],\n ['name' => \"The Expendables (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-expendables-dvd/1519259.p?id=2159895&skuId=1519259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519259_sa.jpg\"}', 'upc' => '031398128427', 'provider' => 'bestbuy'],\n ['name' => \"Futurama, Vol. 5 [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/futurama-vol-5-2-discs-dvd/1519268.p?id=2161250&skuId=1519268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519268_sa.jpg\"}', 'upc' => '024543713937', 'provider' => 'bestbuy'],\n ['name' => \"Family Guy: Laugh It Up, Fuzzball [3 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/family-guy-laugh-it-up-fuzzball-3-discs-blu-ray-disc/1519277.p?id=2157417&skuId=1519277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519277.jpg\"}', 'upc' => '024543714347', 'provider' => 'bestbuy'],\n ['name' => \"24: The Complete Eighth Season [6 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/24-the-complete-eighth-season-6-discs-dvd/1519286.p?id=2157421&skuId=1519286&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519286', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519286_sa.jpg\"}', 'upc' => '024543690955', 'provider' => 'bestbuy'],\n ['name' => \"Cyrus (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cyrus-dvd/1519301.p?id=2164268&skuId=1519301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519301_sa.jpg\"}', 'upc' => '024543689539', 'provider' => 'bestbuy'],\n ['name' => \"Futurama, Vol. 5 [2 Discs/Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/futurama-vol-5-2-discs-blu-ray-blu-ray-disc/1519329.p?id=2161252&skuId=1519329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519329_sa.jpg\"}', 'upc' => '024543713944', 'provider' => 'bestbuy'],\n ['name' => \"24: The Complete Series [55 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 229.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/24-the-complete-series-55-discs-dvd/1519338.p?id=2157426&skuId=1519338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1884\\/18843898.jpg\"}', 'upc' => '024543718048', 'provider' => 'bestbuy'],\n ['name' => \"Family Guy Star Wars Trilogy [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/family-guy-star-wars-trilogy-3-discs-dvd/1519347.p?id=2157415&skuId=1519347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519347.jpg\"}', 'upc' => '024543707103', 'provider' => 'bestbuy'],\n ['name' => \"Locked Down (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/locked-down-blu-ray-disc/1519356.p?id=2144824&skuId=1519356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519356_sa.jpg\"}', 'upc' => '031398127420', 'provider' => 'bestbuy'],\n ['name' => \"The A-Team (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-a-team-dvd/1519365.p?id=2166484&skuId=1519365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519365_sa.jpg\"}', 'upc' => '024543701460', 'provider' => 'bestbuy'],\n ['name' => \"The A-Team (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-a-team-blu-ray-disc/1519374.p?id=2166484&skuId=1519374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519374_sa.jpg\"}', 'upc' => '024543701538', 'provider' => 'bestbuy'],\n ['name' => \"24: Season 8 [4 Discs/Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/24-season-8-4-discs-blu-ray-blu-ray-disc/1519392.p?id=2157422&skuId=1519392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519392_sa.jpg\"}', 'upc' => '024543690948', 'provider' => 'bestbuy'],\n ['name' => \"Russound - 2-Pair Speaker Selector\", 'description_short' => \"From our expanded online assortment; 100W RMS power handling per channel; snap speaker connectors; zone labels\", 'description_long' => \"From our expanded online assortment; 100W RMS power handling per channel; snap speaker connectors; zone labels\", 'price' => 219.99, 'sale_price' => 159.99, 'url' => 'http://www.bestbuy.com/site/russound-2-pair-speaker-selector/1519568.p?id=1218266245105&skuId=1519568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519568_rc.jpg\"}', 'upc' => '612934604010', 'provider' => 'bestbuy'],\n ['name' => \"Russound - Acclaim 5 Series 6-1/2\\\" Indoor/Outdoor Speaker (Each) - White\", 'description_short' => \"From our expanded online assortment; 150W peak power handling; 6-1/2&quot; injection-molded polypropylene and KEVLAR&#174; woofer; dual 1&quot; Teteron tweeters; 12-gauge spring terminal connection\", 'description_long' => \"From our expanded online assortment; 150W peak power handling; 6-1/2&quot; injection-molded polypropylene and KEVLAR&#174; woofer; dual 1&quot; Teteron tweeters; 12-gauge spring terminal connection\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russound-acclaim-5-series-6-1-2-indoor-outdoor-speaker-each-white/1519647.p?id=1218266243856&skuId=1519647', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519647', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519647_sa.jpg\"}', 'upc' => '612934532863', 'provider' => 'bestbuy'],\n ['name' => \"Double Standards - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-standards-cd/1519752.p?id=318990&skuId=1519752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519752.jpg\"}', 'upc' => '761705110127', 'provider' => 'bestbuy'],\n ['name' => \"Russound - ComPoint 6-Zone Intercom System\", 'description_short' => \"From our expanded online assortment; works independently or with existing whole-house audio systems; point-to-point intercom; includes antique brass door station\", 'description_long' => \"From our expanded online assortment; works independently or with existing whole-house audio systems; point-to-point intercom; includes antique brass door station\", 'price' => 2399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russound-compoint-6-zone-intercom-system/1519756.p?id=1218266242584&skuId=1519756', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519756_sa.jpg\"}', 'upc' => '612934526398', 'provider' => 'bestbuy'],\n ['name' => \"Russound - SaphIR Eye Flush Mount IR Receiver Kit\", 'description_short' => \"From our expanded online assortment; IR receiver; connecting block; 4 IR emitters\", 'description_long' => \"From our expanded online assortment; IR receiver; connecting block; 4 IR emitters\", 'price' => 174.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russound-saphir-eye-flush-mount-ir-receiver-kit/1519765.p?id=1218266244212&skuId=1519765', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519765_sa.jpg\"}', 'upc' => '612934521515', 'provider' => 'bestbuy'],\n ['name' => \"Now That's What I Call Music! 47 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-thats-what-i-call-music-47-cd-various/1519883.p?id=2729112&skuId=1519883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519883_sa.jpg\"}', 'upc' => '602537455614', 'provider' => 'bestbuy'],\n ['name' => \"Elysium [Original Motion Picture Soundtrack] - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elysium-original-motion-picture-soundtrack-original-soundtrack-cd/1519929.p?id=2728296&skuId=1519929&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1519929', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1519\\/1519929_sa.jpg\"}', 'upc' => '030206721287', 'provider' => 'bestbuy'],\n ['name' => \"All I Want for Christmas Is You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-i-want-for-christmas-is-you-cd/1520116.p?id=212067&skuId=1520116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520116_sa.jpg\"}', 'upc' => '034373928920', 'provider' => 'bestbuy'],\n ['name' => \"Greater Than - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greater-than-cd/1520255.p?id=2728472&skuId=1520255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520255_sa.jpg\"}', 'upc' => '5099972195727', 'provider' => 'bestbuy'],\n ['name' => \"Great American Songbook: Live at Michael's... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-american-songbook-live-at-michaels-cd/1520312.p?id=71496&skuId=1520312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520312_sa.jpg\"}', 'upc' => '089408332821', 'provider' => 'bestbuy'],\n ['name' => \"Invisible Empire/Crescent Moon [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/invisible-empire-crescent-moon-digipak-cd/1520421.p?id=2718798&skuId=1520421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520421.jpg\"}', 'upc' => '5099992844728', 'provider' => 'bestbuy'],\n ['name' => \"Carry Me Back to Virginia [EP] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carry-me-back-to-virginia-ep-digipak-cd/1520449.p?id=2729046&skuId=1520449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520449_sa.jpg\"}', 'upc' => '880882188726', 'provider' => 'bestbuy'],\n ['name' => \"II [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ii-digipak-cd/1520458.p?id=2728374&skuId=1520458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520458_sa.jpg\"}', 'upc' => '724596957127', 'provider' => 'bestbuy'],\n ['name' => \"Dos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dos-cd/1520465.p?id=72845&skuId=1520465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520465.jpg\"}', 'upc' => '093624540625', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1520467.p?id=2728453&skuId=1520467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520467_sa.jpg\"}', 'upc' => '602537473014', 'provider' => 'bestbuy'],\n ['name' => \"Clarity [Deluxe Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clarity-deluxe-edition-cd/1520476.p?id=2750559&skuId=1520476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520476_sa.jpg\"}', 'upc' => '602537458301', 'provider' => 'bestbuy'],\n ['name' => \"Nothing Like I Planned: Greatest Hits, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-like-i-planned-greatest-hits-vol-3-cd/1520485.p?id=2727975&skuId=1520485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520485_sa.jpg\"}', 'upc' => '602537462308', 'provider' => 'bestbuy'],\n ['name' => \"Asymmetry [CD/DVD] [8/6] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/asymmetry-cd-dvd-8-6-cd-dvd/1520494.p?id=2733087&skuId=1520494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520494.jpg\"}', 'upc' => '601091411623', 'provider' => 'bestbuy'],\n ['name' => \"Storyteller [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/storyteller-bonus-track-cd/1520519.p?id=2701853&skuId=1520519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520519_sa.jpg\"}', 'upc' => '602537400997', 'provider' => 'bestbuy'],\n ['name' => \"Invisible Empire // Crescent Moon [Deluxe... - CD - Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/invisible-empire-crescent-moon-deluxe-cd-deluxe-edition/1520528.p?id=2728666&skuId=1520528&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520528', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520528_sa.jpg\"}', 'upc' => '602537433155', 'provider' => 'bestbuy'],\n ['name' => \"Live Today - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-today-cd/1520546.p?id=2727806&skuId=1520546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520546_sa.jpg\"}', 'upc' => '5099968289225', 'provider' => 'bestbuy'],\n ['name' => \"The Vigil [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-vigil-digipak-cd/1520555.p?id=2721261&skuId=1520555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520555_sa.jpg\"}', 'upc' => '888072345782', 'provider' => 'bestbuy'],\n ['name' => \"Dazed and Confused - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dazed-and-confused-cd-original-soundtrack/1520562.p?id=79907&skuId=1520562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1520562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1520\\/1520562_sa.jpg\"}', 'upc' => '075992453325', 'provider' => 'bestbuy'],\n ['name' => \"Planes [Original Score] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/planes-original-score-cd-original-soundtrack/1521005.p?id=2720584&skuId=1521005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521005_sa.jpg\"}', 'upc' => '050087244927', 'provider' => 'bestbuy'],\n ['name' => \"As Time Goes By: The Best of Jimmy Durante - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/as-time-goes-by-the-best-of-jimmy-durante-cd/1521106.p?id=81076&skuId=1521106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521106_sa.jpg\"}', 'upc' => '093624545620', 'provider' => 'bestbuy'],\n ['name' => \"It's Always Sunny in Philadelphia: A Very Sunny Christmas (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-always-sunny-in-philadelphia-a-very-sunny-christmas-blu-ray-disc/1521111.p?id=2015734&skuId=1521111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9505\\/9505038.jpg\"}', 'upc' => '024543725848', 'provider' => 'bestbuy'],\n ['name' => \"What Women Want (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-women-want-dvd/1521157.p?id=36917&skuId=1521157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521157_sa.jpg\"}', 'upc' => '883929304578', 'provider' => 'bestbuy'],\n ['name' => \"Linger Ficken' Good... [Cassette] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/linger-ficken-good-cassette-cd/1521204.p?id=96542&skuId=1521204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521204_sa.jpg\"}', 'upc' => '093624540724', 'provider' => 'bestbuy'],\n ['name' => \"Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-cd/1521222.p?id=78157&skuId=1521222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521222.jpg\"}', 'upc' => '074645302621', 'provider' => 'bestbuy'],\n ['name' => \"Hitchcock (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hitchcock-dvd/1521324.p?id=2668578&skuId=1521324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521324_sa.jpg\"}', 'upc' => '024543864462', 'provider' => 'bestbuy'],\n ['name' => \"Monster High: Ghouls Rule (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monster-high-ghouls-rule-dvd/1521333.p?id=2540574&skuId=1521333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521333_sa.jpg\"}', 'upc' => '025192157073', 'provider' => 'bestbuy'],\n ['name' => \"ROK - Espresso Maker - Silver\", 'description_short' => \"Engine-grade aluminum chassis; manually powered design; 2 brewing levers; detachable double-shot spout; stainless-steel manual milk frother; metal storage tin\", 'description_long' => \"Engine-grade aluminum chassis; manually powered design; 2 brewing levers; detachable double-shot spout; stainless-steel manual milk frother; metal storage tin\", 'price' => 199.99, 'sale_price' => 182.99, 'url' => 'http://www.bestbuy.com/site/rok-espresso-maker-silver/1521342.p?id=1219054760734&skuId=1521342', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521342_rc.jpg\"}', 'upc' => '5060309230022', 'provider' => 'bestbuy'],\n ['name' => \"Psychotic Reunion Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/psychotic-reunion-live-cd/1521758.p?id=78809&skuId=1521758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521758.jpg\"}', 'upc' => '095451039624', 'provider' => 'bestbuy'],\n ['name' => \"05:22:09:12 Off - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/05220912-off-cd/1521794.p?id=83024&skuId=1521794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521794.jpg\"}', 'upc' => '074645390222', 'provider' => 'bestbuy'],\n ['name' => \"I Can Get It For You Wholesale [Original... - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-can-get-it-for-you-wholesale-original-cd-original-broadway-cast/1521856.p?id=86015&skuId=1521856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1521856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1521\\/1521856_sa.jpg\"}', 'upc' => '074645302027', 'provider' => 'bestbuy'],\n ['name' => \"iLive - Wireless Over-the-Ear Headphones - Black\", 'description_short' => \"ILIVE Wireless Over-the-Ear Headphones: Bluetooth 3.0 technology; up to 33&#039; wireless range; 40mm drivers; built-in microphone; on-ear controls; adjustable headband; built-in lithium-ion battery; 3.5mm auxiliary input; micro USB port\", 'description_long' => \"ILIVE Wireless Over-the-Ear Headphones: Bluetooth 3.0 technology; up to 33&#039; wireless range; 40mm drivers; built-in microphone; on-ear controls; adjustable headband; built-in lithium-ion battery; 3.5mm auxiliary input; micro USB port\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ilive-wireless-over-the-ear-headphones-black/1522001.p?id=1219500991172&skuId=1522001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1522001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1522\\/1522001_sa.jpg\"}', 'upc' => '047323700484', 'provider' => 'bestbuy'],\n ['name' => \"iLive - Wireless Over-the-Ear Headphones - Red\", 'description_short' => \"ILIVE Wireless Over-the-Ear Headphones: Bluetooth 4.0 technology; up to 33&#039; wireless range; 40mm drivers; built-in microphone; on-ear controls; adjustable headband; built-in lithium-ion battery; 3.5mm auxiliary input; micro USB port\", 'description_long' => \"ILIVE Wireless Over-the-Ear Headphones: Bluetooth 4.0 technology; up to 33&#039; wireless range; 40mm drivers; built-in microphone; on-ear controls; adjustable headband; built-in lithium-ion battery; 3.5mm auxiliary input; micro USB port\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ilive-wireless-over-the-ear-headphones-red/1522029.p?id=1219500998493&skuId=1522029', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1522029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1522\\/1522029_sa.jpg\"}', 'upc' => '047323700682', 'provider' => 'bestbuy'],\n ['name' => \"iLive - Wireless Earbud Headphones - Black\", 'description_short' => \"ILIVE Wireless Earbud Headphones: Bluetooth 4.0 technology; up to 33&#039; wireless range; 10mm drivers; built-in microphone; built-in lithium-ion battery; USB port\", 'description_long' => \"ILIVE Wireless Earbud Headphones: Bluetooth 4.0 technology; up to 33&#039; wireless range; 10mm drivers; built-in microphone; built-in lithium-ion battery; USB port\", 'price' => 39.99, 'sale_price' => 24.99, 'url' => 'http://www.bestbuy.com/site/ilive-wireless-earbud-headphones-black/1522038.p?id=1219500994457&skuId=1522038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1522038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1522\\/1522038_sa.jpg\"}', 'upc' => '047323700491', 'provider' => 'bestbuy'],\n ['name' => \"iLive - Wireless Earbud Headphones - Red\", 'description_short' => \"ILIVE Wireless Earbud Headphones: Bluetooth 4.0 technology; up to 33&#039; wireless range; 10mm drivers; built-in microphone; built-in lithium-ion battery; micro USB port\", 'description_long' => \"ILIVE Wireless Earbud Headphones: Bluetooth 4.0 technology; up to 33&#039; wireless range; 10mm drivers; built-in microphone; built-in lithium-ion battery; micro USB port\", 'price' => 39.99, 'sale_price' => 21.99, 'url' => 'http://www.bestbuy.com/site/ilive-wireless-earbud-headphones-red/1522047.p?id=1219500991563&skuId=1522047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1522047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1522\\/1522047_sa.jpg\"}', 'upc' => '047323700675', 'provider' => 'bestbuy'],\n ['name' => \"They're All Gonna Laugh at You! [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/theyre-all-gonna-laugh-at-you-pa-cd/1522230.p?id=97851&skuId=1522230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1522230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1522\\/1522230_sa.jpg\"}', 'upc' => '093624539322', 'provider' => 'bestbuy'],\n ['name' => \"iLive - Wireless Bluetooth Speaker - Black\", 'description_short' => \"ILIVE Wireless Bluetooth Speaker: Compatible with most Bluetooth 2.0-enabled devices; color-changing glow ring; rechargeable lithium-ion battery; micro USB port; 3.5mm auxiliary input; compact design\", 'description_long' => \"ILIVE Wireless Bluetooth Speaker: Compatible with most Bluetooth 2.0-enabled devices; color-changing glow ring; rechargeable lithium-ion battery; micro USB port; 3.5mm auxiliary input; compact design\", 'price' => 19.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/ilive-wireless-bluetooth-speaker-black/1523019.p?id=1219500992135&skuId=1523019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523019_sa.jpg\"}', 'upc' => '047323014000', 'provider' => 'bestbuy'],\n ['name' => \"Carols & Capers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carols-capers-cd/1523033.p?id=119961&skuId=1523033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523033_sa.jpg\"}', 'upc' => '769934000929', 'provider' => 'bestbuy'],\n ['name' => \"Behind the Candelabra (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/behind-the-candelabra-dvd/1523094.p?id=2719406&skuId=1523094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523094_sa.jpg\"}', 'upc' => '883929348657', 'provider' => 'bestbuy'],\n ['name' => \"Vegas Vacation (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vegas-vacation-blu-ray-disc/1523119.p?id=28517&skuId=1523119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523119_sa.jpg\"}', 'upc' => '883929299027', 'provider' => 'bestbuy'],\n ['name' => \"Behind the Candelabra (Blu-ray Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/behind-the-candelabra-blu-ray-disc-digital-copy/1523128.p?id=2719406&skuId=1523128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523128_sa.jpg\"}', 'upc' => '883929348695', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - Stainless Steel\", 'description_short' => \"Electronic touchpad controls; two 1200W burners, one 3000W burner and one 3000W PowerBoil burner; 80W warming zone; 2850W bake and 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'description_long' => \"Electronic touchpad controls; two 1200W burners, one 3000W burner and one 3000W PowerBoil burner; 80W warming zone; 2850W bake and 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'price' => 799.99, 'sale_price' => 719.99, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-stainless-steel/1523164.p?id=1219054289802&skuId=1523164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523164_sa.jpg\"}', 'upc' => '084691257462', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - Stainless Steel\", 'description_short' => \"Electronic touchpad controls; two 1200W burners, one 2000W burner and one 3000W PowerBoil burner; 6-pass, 3410W bake and 6-pass, 3800W broil elements; Sabbath mode; removable, full-width storage\", 'description_long' => \"Electronic touchpad controls; two 1200W burners, one 2000W burner and one 3000W PowerBoil burner; 6-pass, 3410W bake and 6-pass, 3800W broil elements; Sabbath mode; removable, full-width storage\", 'price' => 649.99, 'sale_price' => 584.99, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-stainless-steel/1523182.p?id=1219054288938&skuId=1523182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523182_sa.jpg\"}', 'upc' => '084691257592', 'provider' => 'bestbuy'],\n ['name' => \"Double Easy: The U.S. Singles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-easy-the-u-s-singles-cd/1523211.p?id=84776&skuId=1523211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523211_sa.jpg\"}', 'upc' => '075596154321', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - Black\", 'description_short' => \"Electronic touchpad controls; two 1200W burners, one 2000W burner and one 3000W PowerBoil burner; 6-pass, 3410W bake and 6-pass, 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'description_long' => \"Electronic touchpad controls; two 1200W burners, one 2000W burner and one 3000W PowerBoil burner; 6-pass, 3410W bake and 6-pass, 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'price' => 549.99, 'sale_price' => 494.99, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-black/1523234.p?id=1219054290460&skuId=1523234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523234_sa.jpg\"}', 'upc' => '084691253679', 'provider' => 'bestbuy'],\n ['name' => \"Vena Cava - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vena-cava-cd/1523239.p?id=83190&skuId=1523239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523239.jpg\"}', 'upc' => '724596145920', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - Stainless-Steel\", 'description_short' => \"Electronic touchpad controls; two 1200W burners, one 2000W burner and one 3000W PowerBoil burner; 3410W bake and 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'description_long' => \"Electronic touchpad controls; two 1200W burners, one 2000W burner and one 3000W PowerBoil burner; 3410W bake and 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'price' => 699.99, 'sale_price' => 629.99, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-stainless-steel/1523243.p?id=1219054291465&skuId=1523243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523243_sa.jpg\"}', 'upc' => '084691257615', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - Slate\", 'description_short' => \"Electronic touchpad controls; two 1200W burners, one 3000W burner and one 3000W PowerBoil burner; 80W warming zone; 2850W bake and 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'description_long' => \"Electronic touchpad controls; two 1200W burners, one 3000W burner and one 3000W PowerBoil burner; 80W warming zone; 2850W bake and 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'price' => 799.99, 'sale_price' => 719.99, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-slate/1523252.p?id=1219054288672&skuId=1523252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523252_sa.jpg\"}', 'upc' => '084691257806', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - Black\", 'description_short' => \"Electronic touchpad controls; two 1500W burners and two 2600W burners; 6-pass, 3410W bake and 6-pass, 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'description_long' => \"Electronic touchpad controls; two 1500W burners and two 2600W burners; 6-pass, 3410W bake and 6-pass, 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-black/1523304.p?id=1219054289944&skuId=1523304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523304_sa.jpg\"}', 'upc' => '084691140139', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - White-on-White\", 'description_short' => \"Electronic touchpad controls; two 1200W burners, one 2000W burner and one 3000W PowerBoil burner; 6-pass, 3410W bake and 6-pass, 3800W broil elements; Sabbath mode; removable, full-width storage\", 'description_long' => \"Electronic touchpad controls; two 1200W burners, one 2000W burner and one 3000W PowerBoil burner; 6-pass, 3410W bake and 6-pass, 3800W broil elements; Sabbath mode; removable, full-width storage\", 'price' => 549.99, 'sale_price' => 494.99, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-white-on-white/1523313.p?id=1219054290066&skuId=1523313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523313_sa.jpg\"}', 'upc' => '084691253662', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - Black\", 'description_short' => \"Electronic touchpad controls; two 1200W burners, one 3000W burner and one 3000W PowerBoil burner; 80W warming zone; 2850W bake and 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'description_long' => \"Electronic touchpad controls; two 1200W burners, one 3000W burner and one 3000W PowerBoil burner; 80W warming zone; 2850W bake and 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'price' => 699.99, 'sale_price' => 629.99, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-black/1523359.p?id=1219054288934&skuId=1523359&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523359_sa.jpg\"}', 'upc' => '084691257486', 'provider' => 'bestbuy'],\n ['name' => \"Eat at Godot's - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eat-at-godots-cd/1523382.p?id=152884&skuId=1523382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523382.jpg\"}', 'upc' => '035651930321', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - White-on-White\", 'description_short' => \"Electronic touchpad controls; two 1200W burners, one 2000W burner and one 3000W PowerBoil burner; 3410W bake and 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'description_long' => \"Electronic touchpad controls; two 1200W burners, one 2000W burner and one 3000W PowerBoil burner; 3410W bake and 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'price' => 599.99, 'sale_price' => 539.99, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-white-on-white/1523386.p?id=1219054289458&skuId=1523386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523386_sa.jpg\"}', 'upc' => '084691253730', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - White-on-White\", 'description_short' => \"Electronic touchpad controls; two 1500W burners and two 2600W burners; 6-pass, 3410W bake and 6-pass, 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'description_long' => \"Electronic touchpad controls; two 1500W burners and two 2600W burners; 6-pass, 3410W bake and 6-pass, 3800W broil elements; Sabbath mode; removable, full-width storage drawer\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-white-on-white/1523419.p?id=1219054291025&skuId=1523419&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523419', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523419_sa.jpg\"}', 'upc' => '084691140122', 'provider' => 'bestbuy'],\n ['name' => \"14 Women 15 Days - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/14-women-15-days-cd/1523569.p?id=1985237&skuId=1523569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1523569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1523\\/1523569.jpg\"}', 'upc' => '739344403924', 'provider' => 'bestbuy'],\n ['name' => \"UFC 161: Evans vs. Henderson (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ufc-161-evans-vs-henderson-dvd-2-disc/1524002.p?id=2725212&skuId=1524002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524002_sa.jpg\"}', 'upc' => '013132602837', 'provider' => 'bestbuy'],\n ['name' => \"The Croods (Blu-ray 3D) (3 Disc) (3-D) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-croods-blu-ray-3d-3-disc-3-d-digital-copy/1524011.p?id=2744778&skuId=1524011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524011_sa.jpg\"}', 'upc' => '024543861485', 'provider' => 'bestbuy'],\n ['name' => \"The East (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-east-dvd/1524233.p?id=2731078&skuId=1524233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524233_sa.jpg\"}', 'upc' => '024543831730', 'provider' => 'bestbuy'],\n ['name' => \"The East (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-east-blu-ray-disc-ultraviolet-digital-copy/1524251.p?id=2731078&skuId=1524251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524251_sa.jpg\"}', 'upc' => '024543831808', 'provider' => 'bestbuy'],\n ['name' => \"Peeples (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peeples-blu-ray-disc-ultraviolet-digital-copy/1524279.p?id=2730618&skuId=1524279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524279_sa.jpg\"}', 'upc' => '031398175674', 'provider' => 'bestbuy'],\n ['name' => \"Peeples (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peeples-dvd-ultraviolet-digital-copy/1524288.p?id=2730618&skuId=1524288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524288_sa.jpg\"}', 'upc' => '031398175643', 'provider' => 'bestbuy'],\n ['name' => \"Redemption (Blu-ray Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/redemption-blu-ray-disc-digital-copy/1524297.p?id=2730619&skuId=1524297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524297_sa.jpg\"}', 'upc' => '031398169772', 'provider' => 'bestbuy'],\n ['name' => \"The Croods (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-croods-dvd/1524312.p?id=2744778&skuId=1524312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524312_sa.jpg\"}', 'upc' => '024543861362', 'provider' => 'bestbuy'],\n ['name' => \"Iron Man 3 (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iron-man-3-blu-ray-disc-2-disc/1524321.p?id=2727792&skuId=1524321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524321_sa.jpg\"}', 'upc' => '786936836431', 'provider' => 'bestbuy'],\n ['name' => \"Iron Man 3 (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/iron-man-3-blu-ray-disc-2-disc/1524349.p?id=2727792&skuId=1524349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524349.jpg\"}', 'upc' => '786936836943', 'provider' => 'bestbuy'],\n ['name' => \"Iron Man 3 (DVD) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/iron-man-3-dvd-digital-copy/1524358.p?id=2727792&skuId=1524358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524358.jpg\"}', 'upc' => '786936836745', 'provider' => 'bestbuy'],\n ['name' => \"The Little Mermaid (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-little-mermaid-blu-ray-disc-2-disc/1524367.p?id=22952&skuId=1524367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1524367.jpg\"}', 'upc' => '786936834321', 'provider' => 'bestbuy'],\n ['name' => \"The Little Mermaid (Blu-ray 3D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-little-mermaid-blu-ray-3d/1524376.p?id=22952&skuId=1524376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524376_sa.jpg\"}', 'upc' => '786936835502', 'provider' => 'bestbuy'],\n ['name' => \"Iron Man 3 (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/iron-man-3-blu-ray-3d-3-d/1524385.p?id=2727792&skuId=1524385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524385_sa.jpg\"}', 'upc' => '786936836721', 'provider' => 'bestbuy'],\n ['name' => \"The Little Mermaid (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-little-mermaid-dvd-2-disc/1524394.p?id=22952&skuId=1524394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524394_sa.jpg\"}', 'upc' => '786936834345', 'provider' => 'bestbuy'],\n ['name' => \"The Little Mermaid (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-little-mermaid-blu-ray-disc-2-disc/1524409.p?id=22952&skuId=1524409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524409_sa.jpg\"}', 'upc' => '786936835526', 'provider' => 'bestbuy'],\n ['name' => \"Mexican Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mexican-moon-cd/1524568.p?id=78499&skuId=1524568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524568_sa.jpg\"}', 'upc' => '077778112921', 'provider' => 'bestbuy'],\n ['name' => \"The First Decade: 1983-1993 [Reunion] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-first-decade-1983-1993-reunion-cd/1524719.p?id=99232&skuId=1524719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1524719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1524\\/1524719_sa.jpg\"}', 'upc' => '012414923127', 'provider' => 'bestbuy'],\n ['name' => \"Pokémon Alpha Sapphire - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Help save the Hoenn region from a shadowy group and uncover the secrets of Mega Evolution\", 'description_long' => \"Help save the Hoenn region from a shadowy group and uncover the secrets of Mega Evolution\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pokemon-alpha-sapphire-pre-owned-nintendo-3ds/1525008.p?id=1219500995629&skuId=1525008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525008_sa.jpg\"}', 'upc' => '799007841500', 'provider' => 'bestbuy'],\n ['name' => \"UFC Presents: Championship Stories (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ufc-presents-championship-stories-dvd-2-disc/1525099.p?id=3328565&skuId=1525099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525099_sa.jpg\"}', 'upc' => '013132628820', 'provider' => 'bestbuy'],\n ['name' => \"Laggies (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/laggies-dvd/1525104.p?id=3330866&skuId=1525104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525104_sa.jpg\"}', 'upc' => '031398209317', 'provider' => 'bestbuy'],\n ['name' => \"Moulin Rouge/Africa [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moulin-rouge-africa-2-discs-dvd/1525113.p?id=2883048&skuId=1525113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525113_sa.jpg\"}', 'upc' => '024543927556', 'provider' => 'bestbuy'],\n ['name' => \"Kingdom of Heaven (Blu-ray Disc) (2 Disc) (Anniversary Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kingdom-of-heaven-blu-ray-disc-2-disc-anniversary-edition/1525122.p?id=1474332&skuId=1525122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525122_sa.jpg\"}', 'upc' => '024543971825', 'provider' => 'bestbuy'],\n ['name' => \"Americans: Season 2 [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/americans-season-2-4-discs-dvd/1525131.p?id=3310035&skuId=1525131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525131.jpg\"}', 'upc' => '024543931904', 'provider' => 'bestbuy'],\n ['name' => \"The Longest Week (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-longest-week-dvd/1525159.p?id=3322303&skuId=1525159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525159_sa.jpg\"}', 'upc' => '024543980698', 'provider' => 'bestbuy'],\n ['name' => \"WWII in 3D (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwii-in-3d-blu-ray-disc/1525168.p?id=2263171&skuId=1525168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525168_sa.jpg\"}', 'upc' => '733961253917', 'provider' => 'bestbuy'],\n ['name' => \"John Wick (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/john-wick-blu-ray-disc-2-disc/1525177.p?id=3333130&skuId=1525177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525177_sa.jpg\"}', 'upc' => '031398211044', 'provider' => 'bestbuy'],\n ['name' => \"Fear Clinic (Blu-ray)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fear-clinic-blu-ray/1525186.p?id=3326607&skuId=1525186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525186_sa.jpg\"}', 'upc' => '013132620756', 'provider' => 'bestbuy'],\n ['name' => \"The Disappearance of Eleanor Rigby (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-disappearance-of-eleanor-rigby-dvd/1525195.p?id=3328567&skuId=1525195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525195_sa.jpg\"}', 'upc' => '013132624242', 'provider' => 'bestbuy'],\n ['name' => \"America's Greatest Westerns, Vol. 1 [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/americas-greatest-westerns-vol-1-5-discs-dvd/1525232.p?id=2152187&skuId=1525232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525232_sa.jpg\"}', 'upc' => '096009068196', 'provider' => 'bestbuy'],\n ['name' => \"John Wick (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-wick-dvd/1525305.p?id=3333130&skuId=1525305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525305_sa.jpg\"}', 'upc' => '031398211037', 'provider' => 'bestbuy'],\n ['name' => \"In Name Of The King Collection (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-name-of-the-king-collection-blu-ray-disc/1525314.p?id=3289379&skuId=1525314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '024543988274', 'provider' => 'bestbuy'],\n ['name' => \"Night at the Museum 1 & 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-at-the-museum-1-2-dvd/1525323.p?id=3288692&skuId=1525323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525323_sa.jpg\"}', 'upc' => '024543982890', 'provider' => 'bestbuy'],\n ['name' => \"Glee Season 5 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/glee-season-5-dvd/1525332.p?id=3340024&skuId=1525332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525332_sa.jpg\"}', 'upc' => '024543922049', 'provider' => 'bestbuy'],\n ['name' => \"The Disappearance of Eleanor Rigby (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-disappearance-of-eleanor-rigby-blu-ray-disc-2-disc/1525341.p?id=3328567&skuId=1525341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525341_sa.jpg\"}', 'upc' => '013132624259', 'provider' => 'bestbuy'],\n ['name' => \"The Atticus Institute (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-atticus-institute-dvd/1525369.p?id=3325940&skuId=1525369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525369_sa.jpg\"}', 'upc' => '013132628110', 'provider' => 'bestbuy'],\n ['name' => \"Hector & The Search For Happiness (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hector-the-search-for-happiness-dvd/1525387.p?id=3330667&skuId=1525387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525387_sa.jpg\"}', 'upc' => '024543993568', 'provider' => 'bestbuy'],\n ['name' => \"The Best Government Money Can Buy? (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-government-money-can-buy-dvd/1525393.p?id=2144113&skuId=1525393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525393_sa.jpg\"}', 'upc' => '881394110526', 'provider' => 'bestbuy'],\n ['name' => \"The Atticus Institute (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-atticus-institute-blu-ray-disc/1525396.p?id=3325940&skuId=1525396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525396_sa.jpg\"}', 'upc' => '013132628127', 'provider' => 'bestbuy'],\n ['name' => \"Three'S Company: Complete Series (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 98.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/threes-company-complete-series-dvd-boxed-set/1525401.p?id=3311085&skuId=1525401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525401_sa.jpg\"}', 'upc' => '013132623283', 'provider' => 'bestbuy'],\n ['name' => \"In the Heat of the Night (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-heat-of-the-night-blu-ray-disc/1525429.p?id=47694&skuId=1525429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525429_sa.jpg\"}', 'upc' => '883904301615', 'provider' => 'bestbuy'],\n ['name' => \"CB-SHARE YOUR CARE (DVD) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cb-share-your-care-dvd-dvd/1525438.p?id=3324428&skuId=1525438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525438.jpg\"}', 'upc' => '031398210696', 'provider' => 'bestbuy'],\n ['name' => \"Black Nativity (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-nativity-dvd/1525465.p?id=3171538&skuId=1525465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525465_sa.jpg\"}', 'upc' => '024543991731', 'provider' => 'bestbuy'],\n ['name' => \"UFC 179+180 (DVD) (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ufc-179-180-dvd-dvd-3-disc/1525474.p?id=3324353&skuId=1525474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525474.jpg\"}', 'upc' => '013132628813', 'provider' => 'bestbuy'],\n ['name' => \"The Longest Week (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-longest-week-blu-ray-disc/1525483.p?id=3322303&skuId=1525483&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525483', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525483_sa.jpg\"}', 'upc' => '024543980728', 'provider' => 'bestbuy'],\n ['name' => \"Tyrant: Season 1 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tyrant-season-1-3-discs-dvd/1525492.p?id=3357504&skuId=1525492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525492_sa.jpg\"}', 'upc' => '024543990574', 'provider' => 'bestbuy'],\n ['name' => \"Zombie Killers (Blu-ray))\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zombie-killers-blu-ray/1525509.p?id=3328569&skuId=1525509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525509_sa.jpg\"}', 'upc' => '013132625966', 'provider' => 'bestbuy'],\n ['name' => \"Zombie Killers: Elephant's Graveyard (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zombie-killers-elephants-graveyard-dvd/1525527.p?id=3328569&skuId=1525527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525527_sa.jpg\"}', 'upc' => '013132625959', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Portable Power Bank for Select USB-Enabled Devices - White\", 'description_short' => \"LENMAR Portable Power Bank for Select USB-Enabled Devices: Compatible with select USB-enabled devices; 2500 mAh capacity; lithium-polymer chemistry; auto shutoff; slim, lightweight design; includes micro USB charging cable\", 'description_long' => \"LENMAR Portable Power Bank for Select USB-Enabled Devices: Compatible with select USB-enabled devices; 2500 mAh capacity; lithium-polymer chemistry; auto shutoff; slim, lightweight design; includes micro USB charging cable\", 'price' => 44.95, 'sale_price' => 33.99, 'url' => 'http://www.bestbuy.com/site/lenmar-portable-power-bank-for-select-usb-enabled-devices-white/1525536.p?id=1219500991433&skuId=1525536', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525536_sa.jpg\"}', 'upc' => '029521853407', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Helix Portable Power Pack - Gold\", 'description_short' => \"LENMAR Helix Portable Power Pack: Compatible with most USB-powered devices; 11,000 mAh capacity; lithium-ion chemistry; auto shutoff; 3 USB ports; portable design\", 'description_long' => \"LENMAR Helix Portable Power Pack: Compatible with most USB-powered devices; 11,000 mAh capacity; lithium-ion chemistry; auto shutoff; 3 USB ports; portable design\", 'price' => 129.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-helix-portable-power-pack-gold/1525545.p?id=1219500991626&skuId=1525545', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525545_sa.jpg\"}', 'upc' => '029521855036', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - 16,500 mAh External Lithium-Polymer Battery Pack - Black\", 'description_short' => \"LENMAR 16,500 mAh External Lithium-Polymer Battery Pack: Compatible with select cell phones and laptops; 1-amp USB port; blue LED indicator\", 'description_long' => \"LENMAR 16,500 mAh External Lithium-Polymer Battery Pack: Compatible with select cell phones and laptops; 1-amp USB port; blue LED indicator\", 'price' => 149.99, 'sale_price' => 114.99, 'url' => 'http://www.bestbuy.com/site/lenmar-16500-mah-external-lithium-polymer-battery-pack-black/1525572.p?id=1219500994168&skuId=1525572', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525572_sa.jpg\"}', 'upc' => '029521854985', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Mutant Portable Power Pack - Black\", 'description_short' => \"LENMAR Mutant Portable Power Pack: Compatible with most USB-powered cell phones and tablets; 20,800 mAh capacity; lithium-ion chemistry; auto shutoff; overload protection; two 2.4-amp USB ports and two 1-amp USB ports\", 'description_long' => \"LENMAR Mutant Portable Power Pack: Compatible with most USB-powered cell phones and tablets; 20,800 mAh capacity; lithium-ion chemistry; auto shutoff; overload protection; two 2.4-amp USB ports and two 1-amp USB ports\", 'price' => 249.95, 'sale_price' => 99.99, 'url' => 'http://www.bestbuy.com/site/lenmar-mutant-portable-power-pack-black/1525581.p?id=1219500989591&skuId=1525581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525581_sa.jpg\"}', 'upc' => '029521853377', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 - Purple/White\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU with IML technology; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU with IML technology; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-purple-white/1525609.p?id=1219500997443&skuId=1525609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525609_sa.jpg\"}', 'upc' => '600603181115', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 Plus - Purple/Yellow/Green/Orange/Red/Black\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU material with IML technology; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU material with IML technology; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-plus-purple-yellow-green-orange-red-black/1525636.p?id=1219500992836&skuId=1525636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525636_sa.jpg\"}', 'upc' => '600603181214', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Samsung Galaxy S 5 Cell Phones - Green/White\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-samsung-galaxy-s-5-cell-phones-green-white/1525663.p?id=1219500993613&skuId=1525663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525663_sa.jpg\"}', 'upc' => '600603181382', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 5 and 5s - Green/White\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 5 and 5s; TPU material; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 5 and 5s; TPU material; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-5-and-5s-green-white/1525681.p?id=1219500989583&skuId=1525681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525681_sa.jpg\"}', 'upc' => '600603181306', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 - Green/White\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-green-white/1525809.p?id=1219500991300&skuId=1525809&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525809_sa.jpg\"}', 'upc' => '600603181146', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 5 and 5s - Purple/Yellow/Green/Orange/Red/Black\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 5 and 5s; TPU with IML technology; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 5 and 5s; TPU with IML technology; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-5-and-5s-purple-yellow-green-orange-red-black/1525827.p?id=1219500994460&skuId=1525827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525827_sa.jpg\"}', 'upc' => '600603181290', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Samsung Galaxy S 5 Cell Phones - Gold/White\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-samsung-galaxy-s-5-cell-phones-gold-white/1525836.p?id=1219500992639&skuId=1525836&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525836_sa.jpg\"}', 'upc' => '600603181320', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Samsung Galaxy S 5 Cell Phones - White/Teal\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material with water print technology; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material with water print technology; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-samsung-galaxy-s-5-cell-phones-white-teal/1525863.p?id=1219500998884&skuId=1525863&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525863_sa.jpg\"}', 'upc' => '600603181337', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 - Green/White\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-green-white/1525881.p?id=1219500993548&skuId=1525881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525881_sa.jpg\"}', 'upc' => '600603181122', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Samsung Galaxy S 5 Cell Phones - Purple/White\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material with IML technology; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material with IML technology; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-samsung-galaxy-s-5-cell-phones-purple-white/1525909.p?id=1219500991102&skuId=1525909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525909_sa.jpg\"}', 'upc' => '600603181351', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Samsung Galaxy S 5 Cell Phones - Green/White\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-samsung-galaxy-s-5-cell-phones-green-white/1525918.p?id=1219500992005&skuId=1525918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525918_sa.jpg\"}', 'upc' => '600603181368', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 Plus - White/Teal\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU material with water print technology; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU material with water print technology; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-plus-white-teal/1525936.p?id=1219501348472&skuId=1525936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525936_sa.jpg\"}', 'upc' => '600603181177', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Samsung Galaxy S 5 Cell Phones - Brown/Blue/Green/White/Gray\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-samsung-galaxy-s-5-cell-phones-brown-blue-green-white-gray/1525954.p?id=1219500995880&skuId=1525954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525954_sa.jpg\"}', 'upc' => '600603181344', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Samsung Galaxy S 5 Cell Phones - Red/Purple/Yellow/Green/Orange/Black\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material with IML technology; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material with IML technology; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-samsung-galaxy-s-5-cell-phones-red-purple-yellow-green-orange-black/1525963.p?id=1219500989584&skuId=1525963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525963_sa.jpg\"}', 'upc' => '600603181375', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 - Teal/White\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU with water print technology; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU with water print technology; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-teal-white/1525972.p?id=1219500993483&skuId=1525972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1525972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1525\\/1525972_sa.jpg\"}', 'upc' => '600603181092', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 Plus - White/Green\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU material; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU material; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-plus-white-green/1526016.p?id=1219500995748&skuId=1526016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526016_sa.jpg\"}', 'upc' => '600603181207', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 - Black/Red/White/Purple/Yellow/Green/Orange\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU with IML technology; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU with IML technology; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-black-red-white-purple-yellow-green-orange/1526025.p?id=1219500992137&skuId=1526025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526025_sa.jpg\"}', 'upc' => '600603181139', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Samsung Galaxy S 5 Cell Phones - Clear\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-samsung-galaxy-s-5-cell-phones-clear/1526034.p?id=1219500992315&skuId=1526034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526034_sa.jpg\"}', 'upc' => '600603181399', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 Plus - Green/White\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU material; camera cut-out\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU material; camera cut-out\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-plus-green-white/1526043.p?id=1219500999151&skuId=1526043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526043_sa.jpg\"}', 'upc' => '600603181221', 'provider' => 'bestbuy'],\n ['name' => \"Optoma - 1080p DLP Projector - White\", 'description_short' => \"DLPWUXGA (1920 x 1200) resolution3200 lumens white brightness16:9 aspect ratio\", 'description_long' => \"DLPWUXGA (1920 x 1200) resolution3200 lumens white brightness16:9 aspect ratio\", 'price' => 1299.99, 'sale_price' => 624.99, 'url' => 'http://www.bestbuy.com/site/optoma-1080p-dlp-projector-white/1526098.p?id=1219500998817&skuId=1526098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1311\\/1311546218\\/1311546218_sa.jpg\"}', 'upc' => '796435812102', 'provider' => 'bestbuy'],\n ['name' => \"The Congress (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-congress-dvd/1526158.p?id=3272019&skuId=1526158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526158_sa.jpg\"}', 'upc' => '025192238833', 'provider' => 'bestbuy'],\n ['name' => \"Z Nation: Season 1 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/z-nation-season-1-3-discs-dvd/1526167.p?id=3393423&skuId=1526167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526167.jpg\"}', 'upc' => '025192277351', 'provider' => 'bestbuy'],\n ['name' => \"Sneakers (Blu-ray)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sneakers-blu-ray/1526176.p?id=3324329&skuId=1526176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526176_sa.jpg\"}', 'upc' => '025192276354', 'provider' => 'bestbuy'],\n ['name' => \"BD-TURTLE TALES: SAMMY'S 1&2 (DVD) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bd-turtle-tales-sammys-1-2-dvd-blu-ray-disc/1526185.p?id=3324330&skuId=1526185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '883476142760', 'provider' => 'bestbuy'],\n ['name' => \"Ouija (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ouija-blu-ray-disc-2-disc-ultraviolet-digital-copy/1526194.p?id=3333168&skuId=1526194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526194_sa.jpg\"}', 'upc' => '025192123641', 'provider' => 'bestbuy'],\n ['name' => \"Dragonheart 3: The Sorcerer's Curse (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragonheart-3-the-sorcerers-curse-blu-ray-disc-2-disc/1526304.p?id=3316748&skuId=1526304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526304_sa.jpg\"}', 'upc' => '025192199240', 'provider' => 'bestbuy'],\n ['name' => \"My Little Pony: Friendship Is Magic - Season 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-little-pony-friendship-is-magic-season-2-dvd/1526313.p?id=2771843&skuId=1526313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526313.jpg\"}', 'upc' => '826663140200', 'provider' => 'bestbuy'],\n ['name' => \"Mystery Science Theater 3000: Turkey Day Coll (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mystery-science-theater-3000-turkey-day-coll-dvd/1526322.p?id=3285119&skuId=1526322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526322.jpg\"}', 'upc' => '826663154245', 'provider' => 'bestbuy'],\n ['name' => \"My Little Pony Friendship Is Magic: Season One (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-little-pony-friendship-is-magic-season-one-dvd/1526359.p?id=2834433&skuId=1526359&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526359.jpg\"}', 'upc' => '826663136968', 'provider' => 'bestbuy'],\n ['name' => \"Ouija (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ouija-dvd/1526368.p?id=3333168&skuId=1526368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526368_sa.jpg\"}', 'upc' => '025192123658', 'provider' => 'bestbuy'],\n ['name' => \"The Andromeda Strain (Blu-ray)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-andromeda-strain-blu-ray/1526377.p?id=3324362&skuId=1526377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526377_sa.jpg\"}', 'upc' => '025192276361', 'provider' => 'bestbuy'],\n ['name' => \"Rosewater (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rosewater-dvd/1526395.p?id=3333777&skuId=1526395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526395_sa.jpg\"}', 'upc' => '025192269813', 'provider' => 'bestbuy'],\n ['name' => \"Dracula Untold (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/dracula-untold-blu-ray-disc-2-disc-ultraviolet-digital-copy/1526419.p?id=3330672&skuId=1526419&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526419', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526419.jpg\"}', 'upc' => '025192212413', 'provider' => 'bestbuy'],\n ['name' => \"Lea Salonga - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lea-salonga-cd/1526423.p?id=97769&skuId=1526423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526423_sa.jpg\"}', 'upc' => '075678253423', 'provider' => 'bestbuy'],\n ['name' => \"Rosewater (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rosewater-blu-ray-disc-2-disc-ultraviolet-digital-copy/1526428.p?id=3333777&skuId=1526428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526428_sa.jpg\"}', 'upc' => '025192269806', 'provider' => 'bestbuy'],\n ['name' => \"Kill the Messenger (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kill-the-messenger-blu-ray-disc-2-disc-ultraviolet-digital-copy/1526437.p?id=3330673&skuId=1526437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526437_sa.jpg\"}', 'upc' => '025192218514', 'provider' => 'bestbuy'],\n ['name' => \"The Theory of Everything (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/the-theory-of-everything-blu-ray-disc-2-disc-ultraviolet-digital-copy/1526446.p?id=3339009&skuId=1526446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526446_sa.jpg\"}', 'upc' => '025192249808', 'provider' => 'bestbuy'],\n ['name' => \"Kill the Messenger (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kill-the-messenger-dvd/1526455.p?id=3330673&skuId=1526455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526455_sa.jpg\"}', 'upc' => '025192218538', 'provider' => 'bestbuy'],\n ['name' => \"Dragonheart 3: The Sorcerer's Curse (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragonheart-3-the-sorcerers-curse-dvd/1526473.p?id=3316748&skuId=1526473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526473_sa.jpg\"}', 'upc' => '025192199233', 'provider' => 'bestbuy'],\n ['name' => \"Dracula Untold (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dracula-untold-dvd/1526482.p?id=3330672&skuId=1526482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526482_sa.jpg\"}', 'upc' => '025192212437', 'provider' => 'bestbuy'],\n ['name' => \"Kull the Conqueror (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kull-the-conqueror-blu-ray-disc/1526491.p?id=28653&skuId=1526491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526491_sa.jpg\"}', 'upc' => '025192231414', 'provider' => 'bestbuy'],\n ['name' => \"Pete Fountain's New Orleans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pete-fountains-new-orleans-cd/1526496.p?id=66418&skuId=1526496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526496_sa.jpg\"}', 'upc' => '076732050521', 'provider' => 'bestbuy'],\n ['name' => \"The Theory of Everything (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/the-theory-of-everything-dvd/1526508.p?id=3339009&skuId=1526508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526508_sa.jpg\"}', 'upc' => '025192249785', 'provider' => 'bestbuy'],\n ['name' => \"Heavenly Sword (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heavenly-sword-dvd/1526517.p?id=3260472&skuId=1526517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526517_sa.jpg\"}', 'upc' => '025192245473', 'provider' => 'bestbuy'],\n ['name' => \"Marvel Knights The Wolverine Collection (DVD) (5 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marvel-knights-the-wolverine-collection-dvd-5-disc/1526526.p?id=3271912&skuId=1526526&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526526', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/pdpimages\\/1526526.jpg\"}', 'upc' => '826663152920', 'provider' => 'bestbuy'],\n ['name' => \"Come on Feel the Lemonheads - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-on-feel-the-lemonheads-cd/1526539.p?id=89022&skuId=1526539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526539_sa.jpg\"}', 'upc' => '075678253720', 'provider' => 'bestbuy'],\n ['name' => \"In London [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-london-bonus-track-cd/1526584.p?id=87909&skuId=1526584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526584_sa.jpg\"}', 'upc' => '008811084325', 'provider' => 'bestbuy'],\n ['name' => \"Repo Man - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/repo-man-cd-original-soundtrack/1526717.p?id=96487&skuId=1526717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526717_sa.jpg\"}', 'upc' => '076741901920', 'provider' => 'bestbuy'],\n ['name' => \"Painful - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/painful-cd/1526824.p?id=256939&skuId=1526824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526824_sa.jpg\"}', 'upc' => '744861006923', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Reggae Rock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-reggae-rock-cd/1526940.p?id=2466632&skuId=1526940&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1526940', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1526\\/1526940_sa.jpg\"}', 'upc' => '054645105026', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - EcoAdvanced AA Batteries (12-Pack) - Multi\", 'description_short' => \"Alkaline chemistry; 1.5V of power; made with 4% recycled batteries; up to 12-year shelf life\", 'description_long' => \"Alkaline chemistry; 1.5V of power; made with 4% recycled batteries; up to 12-year shelf life\", 'price' => 11.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/energizer-ecoadvanced-aa-batteries-12-pack-multi/1527006.p?id=1219501350338&skuId=1527006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1527006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1527\\/1527006_sa.jpg\"}', 'upc' => '039800123947', 'provider' => 'bestbuy'],\n ['name' => \"Song of the South: Duane Allman and the Rise of the Allman Brothers Band (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/song-of-the-south-duane-allman-and-the-rise-of-the-allman-brothers-band-dvd/1527009.p?id=2730432&skuId=1527009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1527009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1527\\/1527009_sa.jpg\"}', 'upc' => '823564532998', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - EcoAdvanced AA Batteries (6-Pack) - Multi\", 'description_short' => \"Alkaline chemistry; 1.5V; made from 4% recycled batteries; up to a 12-year shelf life\", 'description_long' => \"Alkaline chemistry; 1.5V; made from 4% recycled batteries; up to a 12-year shelf life\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-ecoadvanced-aa-batteries-6-pack-multi/1527033.p?id=1219686685887&skuId=1527033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1527033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1527\\/1527033_sa.jpg\"}', 'upc' => '039800123909', 'provider' => 'bestbuy'],\n ['name' => \"RODE - Microphone Stereo-Array Spacing Bar - Black\", 'description_short' => \"RODE Microphone Stereo-Array Spacing Bar: Mounts 2 microphones in a stereo array; ABS construction; marked spacing up to 7.9&quot;; angle and measurement indicators for ORTF and XY positioning; 0.675&quot; mounting threads with spring clips\", 'description_long' => \"RODE Microphone Stereo-Array Spacing Bar: Mounts 2 microphones in a stereo array; ABS construction; marked spacing up to 7.9&quot;; angle and measurement indicators for ORTF and XY positioning; 0.675&quot; mounting threads with spring clips\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-microphone-stereo-array-spacing-bar-black/1528005.p?id=1219500995946&skuId=1528005', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1528005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1528\\/1528005_sa.jpg\"}', 'upc' => '698813003471', 'provider' => 'bestbuy'],\n ['name' => \"RODE - NT1 Cardioid Condenser Microphone - Black\", 'description_short' => \"RODE NT1 Cardioid Condenser Microphone: Large 1&quot; capsule with gold-plated membrane; cardioid polar pattern; hard, scratch-resistant finish; gold-plated XLR output; Rycote Lyre system; removable all-metal pop filter; includes SMR shock mount\", 'description_long' => \"RODE NT1 Cardioid Condenser Microphone: Large 1&quot; capsule with gold-plated membrane; cardioid polar pattern; hard, scratch-resistant finish; gold-plated XLR output; Rycote Lyre system; removable all-metal pop filter; includes SMR shock mount\", 'price' => 269.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-nt1-cardioid-condenser-microphone-black/1528023.p?id=1219500993418&skuId=1528023', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1528023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1528\\/1528023_sa.jpg\"}', 'upc' => '698813003044', 'provider' => 'bestbuy'],\n ['name' => \"RODE - M5 Cardioid Condenser Microphones (2-Pack) - Black\", 'description_short' => \"RODE M5 Cardioid Condenser Microphones (2-Pack): For studio recording and live on-stage sessions; 0.5&quot; capsule with gold-plated membrane; cardioid polar pattern; all-metal body with ceramic coating; XLR output; includes wind shields and stand mounts\", 'description_long' => \"RODE M5 Cardioid Condenser Microphones (2-Pack): For studio recording and live on-stage sessions; 0.5&quot; capsule with gold-plated membrane; cardioid polar pattern; all-metal body with ceramic coating; XLR output; includes wind shields and stand mounts\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-m5-cardioid-condenser-microphones-2-pack-black/1528041.p?id=1219500989597&skuId=1528041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1528041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1528\\/1528041_sa.jpg\"}', 'upc' => '698813003143', 'provider' => 'bestbuy'],\n ['name' => \"Gunnar Eyewear - Gunnar Eyewear Carrying Case - Black\", 'description_short' => \"Protect your Gunnar eyewear with this case\", 'description_long' => \"Protect your Gunnar eyewear with this case\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gunnar-eyewear-gunnar-eyewear-carrying-case-black/1528053.p?id=1218267799452&skuId=1528053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1528053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1528\\/1528053_rc.jpg\"}', 'upc' => '811127012001', 'provider' => 'bestbuy'],\n ['name' => \"It's On (Dr. Dre) 187um Killa [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-on-dr-dre-187um-killa-ep-cd/1528396.p?id=81287&skuId=1528396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1528396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1528\\/1528396_sa.jpg\"}', 'upc' => '074646944523', 'provider' => 'bestbuy'],\n ['name' => \"Our Turn to Dance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/our-turn-to-dance-cd/1528671.p?id=101285&skuId=1528671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1528671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1528\\/1528671_sa.jpg\"}', 'upc' => '015707946926', 'provider' => 'bestbuy'],\n ['name' => \"String Wizards II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/string-wizards-ii-cd/1528680.p?id=91164&skuId=1528680&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1528680', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1528\\/1528680.jpg\"}', 'upc' => '015707946827', 'provider' => 'bestbuy'],\n ['name' => \"Sony - a77 II DSLR Camera (Body Only) - Black\", 'description_short' => \"24.3-megapixel Exmor CMOS sensorISO 100-25,600Shooting speeds up to 12 fps79 focus pointsBuilt-in Wi-Fi and NFC (near-field communication) technology\", 'description_long' => \"24.3-megapixel Exmor CMOS sensorISO 100-25,600Shooting speeds up to 12 fps79 focus pointsBuilt-in Wi-Fi and NFC (near-field communication) technology\", 'price' => 1499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-a77-ii-dslr-camera-body-only-black/1529004.p?id=1219500995319&skuId=1529004', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1529004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1529\\/1529004_rc.jpg\"}', 'upc' => '027242284067', 'provider' => 'bestbuy'],\n ['name' => \"Sony - Alpha a77 II DSLR Camera with 16-50mm Lens and Vertical Grip - Black\", 'description_short' => \"24.3-megapixel Exmor CMOS sensorISO 100-25,600Shooting speeds up to 12 fps79 focus pointsBuilt-in Wi-Fi and NFC (near-field communication) technology\", 'description_long' => \"24.3-megapixel Exmor CMOS sensorISO 100-25,600Shooting speeds up to 12 fps79 focus pointsBuilt-in Wi-Fi and NFC (near-field communication) technology\", 'price' => 2099.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-alpha-a77-ii-dslr-camera-with-16-50mm-lens-and-vertical-grip-black/1529013.p?id=1219500992966&skuId=1529013', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1529013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1529\\/1529013_rc.jpg\"}', 'upc' => '027242284050', 'provider' => 'bestbuy'],\n ['name' => \"Chaos A.D. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/chaos-a-d-cd/1529545.p?id=2387391&skuId=1529545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1529545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1529\\/1529545_sa.jpg\"}', 'upc' => '016861885922', 'provider' => 'bestbuy'],\n ['name' => \"Bset Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bset-of-cd/1529714.p?id=1689316&skuId=1529714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1529714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1529\\/1529714.jpg\"}', 'upc' => '028943838023', 'provider' => 'bestbuy'],\n ['name' => \"Retro Active - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/retro-active-cd/1529992.p?id=80098&skuId=1529992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1529992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1529\\/1529992.jpg\"}', 'upc' => '731451830525', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - 16GB SDHC Class 10 UHS-1 Memory Card - Black/Gold\", 'description_short' => \"PANASONIC 16GB SDHC Class 10 UHS-1 Memory Card: Compatible with most devices with an SDHC card slot; 16GB capacity; waterproof and magnet-, shock-, static-, extreme temperature- and X-ray-proof design; error correction; built-in write-protect switch\", 'description_long' => \"PANASONIC 16GB SDHC Class 10 UHS-1 Memory Card: Compatible with most devices with an SDHC card slot; 16GB capacity; waterproof and magnet-, shock-, static-, extreme temperature- and X-ray-proof design; error correction; built-in write-protect switch\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/panasonic-16gb-sdhc-class-10-uhs-1-memory-card-black-gold/1530008.p?id=1219500996739&skuId=1530008', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530008_sa.jpg\"}', 'upc' => '885170184022', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - DMW-MS2 Stereo Shotgun Microphone - Black\", 'description_short' => \"Compatible with LUMIX G-Series digital cameras; 80Hz - 20 kHz frequency response; plug-in power type; vibration absorption mechanism; suppresses the camera&#039;s motor noise; 3.5 mm stereo 4-pole plug\", 'description_long' => \"Compatible with LUMIX G-Series digital cameras; 80Hz - 20 kHz frequency response; plug-in power type; vibration absorption mechanism; suppresses the camera&#039;s motor noise; 3.5 mm stereo 4-pole plug\", 'price' => 349.99, 'sale_price' => 249.99, 'url' => 'http://www.bestbuy.com/site/panasonic-dmw-ms2-stereo-shotgun-microphone-black/1530017.p?id=1219500993223&skuId=1530017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530017_rc.jpg\"}', 'upc' => '885170104624', 'provider' => 'bestbuy'],\n ['name' => \"GermGuardian - 3-in-1 Tabletop UV-C Air Purifier - White/Black\", 'description_short' => \"Designed for rooms up to 200 sq. ft.; 0.55 amps; UV-C light kills germs; captures up to 99% of allergens; reduces pet and household odors; 3 fan speeds; HEPA Fresh filter; active carbon filter layer\", 'description_long' => \"Designed for rooms up to 200 sq. ft.; 0.55 amps; UV-C light kills germs; captures up to 99% of allergens; reduces pet and household odors; 3 fan speeds; HEPA Fresh filter; active carbon filter layer\", 'price' => 69.99, 'sale_price' => 59.99, 'url' => 'http://www.bestbuy.com/site/germguardian-3-in-1-tabletop-uv-c-air-purifier-white-black/1530067.p?id=1219054454409&skuId=1530067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530067_sa.jpg\"}', 'upc' => '817624010274', 'provider' => 'bestbuy'],\n ['name' => \"Confidencias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/confidencias-cd/1530137.p?id=2736218&skuId=1530137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530137_sa.jpg\"}', 'upc' => '602537444342', 'provider' => 'bestbuy'],\n ['name' => \"Nifty - Under-the-Brewer K-Cup Drawer - Black\", 'description_short' => \"Holds up to 36 K-Cups; powdercoat steel material; easy-to-clean design\", 'description_long' => \"Holds up to 36 K-Cups; powdercoat steel material; easy-to-clean design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nifty-under-the-brewer-k-cup-drawer-black/1530146.p?id=1219054448080&skuId=1530146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530146_rc.jpg\"}', 'upc' => '729708064106', 'provider' => 'bestbuy'],\n ['name' => \"Nifty - SodaStream Soda Pump - White\", 'description_short' => \"Compatible with SodaStream home beverage units; helps eliminate the need for measuring additives; for up to 1L of liquid\", 'description_long' => \"Compatible with SodaStream home beverage units; helps eliminate the need for measuring additives; for up to 1L of liquid\", 'price' => 3.99, 'sale_price' => 1.99, 'url' => 'http://www.bestbuy.com/site/nifty-sodastream-soda-pump-white/1530155.p?id=1219054449450&skuId=1530155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530155_rc.jpg\"}', 'upc' => '729708008810', 'provider' => 'bestbuy'],\n ['name' => \"World War Z (Blu-ray Disc) (2 Disc) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-war-z-blu-ray-disc-2-disc-unrated/1530386.p?id=2743620&skuId=1530386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530386_sa.jpg\"}', 'upc' => '032429138163', 'provider' => 'bestbuy'],\n ['name' => \"World War Z (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-war-z-dvd/1530395.p?id=2743620&skuId=1530395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530395_sa.jpg\"}', 'upc' => '097363504047', 'provider' => 'bestbuy'],\n ['name' => \"World War Z (Blu-ray 3D) (3 Disc) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-war-z-blu-ray-3d-3-disc-unrated/1530428.p?id=2743620&skuId=1530428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530428_sa.jpg\"}', 'upc' => '032429138149', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Case for Apple® iPhone® SE, 5s and 5 - Optical White\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium frame; brushed-aluminum finish; ultrathin shell; radio-transparent design\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium frame; brushed-aluminum finish; ultrathin shell; radio-transparent design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-case-for-apple-iphone-se-5s-and-5-optical-white/1530446.p?id=1219054449976&skuId=1530446', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308476436\\/1308476436_sa.jpg\"}', 'upc' => '814523028720', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Snap-On Case for HTC One Cell Phones - Black\", 'description_short' => \"Compatible with HTC One cell phones; rigid Plextonium frame; soft-touch finish; snap-on construction; ultrathin, lightweight design\", 'description_long' => \"Compatible with HTC One cell phones; rigid Plextonium frame; soft-touch finish; snap-on construction; ultrathin, lightweight design\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-snap-on-case-for-htc-one-cell-phones-black/1530473.p?id=1219054455905&skuId=1530473', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530473_sa.jpg\"}', 'upc' => '814523273465', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro SHINE Case for Apple® iPhone® SE, 5s and 5 - Optical White/Hot Pink\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; Plextonium shell with silicone core; radio-transparent design; screen protector; brushed-aluminum finish\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; Plextonium shell with silicone core; radio-transparent design; screen protector; brushed-aluminum finish\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-shine-case-for-apple-iphone-se-5s-and-5-optical-white-hot-pink/1530491.p?id=1219054451808&skuId=1530491', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308476672\\/1308476672_sa.jpg\"}', 'upc' => '814523028782', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Snap-On Case for HTC One Cell Phones - Iridescent Gray\", 'description_short' => \"Compatible with HTC One cell phones; rigid Plextonium frame; soft-touch finish; snap-on construction; ultrathin, lightweight design\", 'description_long' => \"Compatible with HTC One cell phones; rigid Plextonium frame; soft-touch finish; snap-on construction; ultrathin, lightweight design\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-snap-on-case-for-htc-one-cell-phones-iridescent-gray/1530507.p?id=1219054450311&skuId=1530507', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530507_sa.jpg\"}', 'upc' => '814523273496', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro SHINE Case for Apple® iPhone® SE, 5s and 5 - Light Silver/Optical White\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; Plextonium shell with silicone core; radio-transparent design; screen protector; brushed-aluminum finish\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; Plextonium shell with silicone core; radio-transparent design; screen protector; brushed-aluminum finish\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-shine-case-for-apple-iphone-se-5s-and-5-light-silver-optical-white/1530516.p?id=1219054456373&skuId=1530516', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530516_sa.jpg\"}', 'upc' => '814523028775', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for BlackBerry Z10 Cell Phones - Black/Neon Pink\", 'description_short' => \"Compatible with BlackBerry Z10 cell phones; dual-layer design; silicone core; soft-touch finish; clear screen protector\", 'description_long' => \"Compatible with BlackBerry Z10 cell phones; dual-layer design; silicone core; soft-touch finish; clear screen protector\", 'price' => 29.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-blackberry-z10-cell-phones-black-neon-pink/1530543.p?id=1219054454340&skuId=1530543', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530543_sa.jpg\"}', 'upc' => '814523760149', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - offGRID Backup Battery Case for Apple® iPhone® SE, 5s and 5 - Black\", 'description_short' => \"INCIPIO offGRID Backup Battery Case for Apple iPhone SE, 5s and 5: Compatible with Apple iPhone SE, 5s and 5; 2600 mAh capacity; auto sensing USB charging; LED indicator lights; camera ring\", 'description_long' => \"INCIPIO offGRID Backup Battery Case for Apple iPhone SE, 5s and 5: Compatible with Apple iPhone SE, 5s and 5; 2600 mAh capacity; auto sensing USB charging; LED indicator lights; camera ring\", 'price' => 79.99, 'sale_price' => 62.99, 'url' => 'http://www.bestbuy.com/site/incipio-offgrid-backup-battery-case-for-apple-iphone-se-5s-and-5-black/1530552.p?id=1219054447358&skuId=1530552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '814523028911', 'provider' => 'bestbuy'],\n ['name' => \"When My Heart Finds Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-my-heart-finds-christmas-cd/1530640.p?id=1644089&skuId=1530640&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530640', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530640_sa.jpg\"}', 'upc' => '886971110722', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Snap-On Case for Samsung Galaxy S 4 Cell Phones - Clear\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; high-density Plextonium shell; soft-touch finish; ultralightweight, ultrathin design; includes a screen protector and video stand\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; high-density Plextonium shell; soft-touch finish; ultralightweight, ultrathin design; includes a screen protector and video stand\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-snap-on-case-for-samsung-galaxy-s-4-cell-phones-clear/1530704.p?id=1219054456485&skuId=1530704', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530704', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530704_sa.jpg\"}', 'upc' => '814523243840', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Snap-On Case for BlackBerry Q10 Cell Phones - Charcoal Gray\", 'description_short' => \"Compatible with BlackBerry Q10 cell phones; high-density Plextonium frame; soft-touch finish; ultralightweight, ultrathin design; includes a screen protector\", 'description_long' => \"Compatible with BlackBerry Q10 cell phones; high-density Plextonium frame; soft-touch finish; ultralightweight, ultrathin design; includes a screen protector\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-snap-on-case-for-blackberry-q10-cell-phones-charcoal-gray/1530722.p?id=1219054448928&skuId=1530722', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530722_sa.jpg\"}', 'upc' => '814523760255', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Hard Shell Case for Apple® iPhone® 4 and 4S - Chrome\", 'description_short' => \"Compatible with Apple iPhone 4 and 4S; rigid Plextonium polycarbonate frame; soft-touch finish; ultralightweight, low-profile construction; play-through design; includes 2 screen protectors\", 'description_long' => \"Compatible with Apple iPhone 4 and 4S; rigid Plextonium polycarbonate frame; soft-touch finish; ultralightweight, low-profile construction; play-through design; includes 2 screen protectors\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-hard-shell-case-for-apple-iphone-4-and-4s-chrome/1530731.p?id=1219054451350&skuId=1530731&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530731', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530731_sa.jpg\"}', 'upc' => '814523026016', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for BlackBerry Q10 Cell Phones - Black\", 'description_short' => \"Compatible with BlackBerry Q10 cell phones; hard shell Plextonium frame; silicone core; soft-touch finish; clear screen protector\", 'description_long' => \"Compatible with BlackBerry Q10 cell phones; hard shell Plextonium frame; silicone core; soft-touch finish; clear screen protector\", 'price' => 29.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-blackberry-q10-cell-phones-black/1530759.p?id=1219054453233&skuId=1530759', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530759_sa.jpg\"}', 'upc' => '814523760286', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather CF Case for Apple® iPhone® SE, 5s and 5 - Black\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; high-density Plextonium frame; radio-transparent material; carbon-fiber finish; ultralightweight, ultrathin design; includes a screen protector and video stand\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; high-density Plextonium frame; radio-transparent material; carbon-fiber finish; ultralightweight, ultrathin design; includes a screen protector and video stand\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-cf-case-for-apple-iphone-se-5s-and-5-black/1530777.p?id=1219054452196&skuId=1530777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530777_sa.jpg\"}', 'upc' => '814523029116', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Snap-On Case for BlackBerry Z10 Cell Phones - Black\", 'description_short' => \"Compatible with BlackBerry Z10 cell phones; Plextonium frame; soft-touch finish; snap-on construction; ultrathin design; includes a screen protector\", 'description_long' => \"Compatible with BlackBerry Z10 cell phones; Plextonium frame; soft-touch finish; snap-on construction; ultrathin design; includes a screen protector\", 'price' => 24.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/incipio-feather-snap-on-case-for-blackberry-z10-cell-phones-black/1530804.p?id=1219054454279&skuId=1530804', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530804', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530804_sa.jpg\"}', 'upc' => '814523760002', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for BlackBerry Q10 Cell Phones - White/Gray\", 'description_short' => \"Compatible with BlackBerry Q10 cell phones; hard shell Plextonium frame; silicone core; soft-touch finish; clear screen protector\", 'description_long' => \"Compatible with BlackBerry Q10 cell phones; hard shell Plextonium frame; silicone core; soft-touch finish; clear screen protector\", 'price' => 29.99, 'sale_price' => 24.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-blackberry-q10-cell-phones-white-gray/1530813.p?id=1219054446642&skuId=1530813', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530813', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530813_sa.jpg\"}', 'upc' => '814523760316', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Snap-On Case for HTC One Cell Phones - Neon Blue\", 'description_short' => \"Compatible with HTC One cell phones; rigid Plextonium frame; soft-touch finish; snap-on construction; ultrathin, lightweight design\", 'description_long' => \"Compatible with HTC One cell phones; rigid Plextonium frame; soft-touch finish; snap-on construction; ultrathin, lightweight design\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-snap-on-case-for-htc-one-cell-phones-neon-blue/1530831.p?id=1219054453698&skuId=1530831', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530831', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530831_sa.jpg\"}', 'upc' => '814523273489', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for Samsung Galaxy S 4 Cell Phones - Black\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; rigid Plextonium shell; silicone core; clear screen protector\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; rigid Plextonium shell; silicone core; clear screen protector\", 'price' => 34.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-samsung-galaxy-s-4-cell-phones-black/1530886.p?id=1219054452911&skuId=1530886', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530886_sa.jpg\"}', 'upc' => '814523243758', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for HTC One Cell Phones (AT&T, Sprint and T-Cell) - Black/Neon Pink\", 'description_short' => \"Compatible with HTC One cell phones; dual-layer design; soft-touch finish\", 'description_long' => \"Compatible with HTC One cell phones; dual-layer design; soft-touch finish\", 'price' => 29.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-htc-one-cell-phones-at-t-sprint-and-t-cell-black-neon-pink/1530913.p?id=1219054450235&skuId=1530913', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530913_sa.jpg\"}', 'upc' => '814523273519', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Case for HTC One Cell Phones - Black\", 'description_short' => \"Compatible with HTC One cell phones; radio-transparent material; transparent sides; snap-on design\", 'description_long' => \"Compatible with HTC One cell phones; radio-transparent material; transparent sides; snap-on design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-case-for-htc-one-cell-phones-black/1530931.p?id=1219054451086&skuId=1530931', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530931_sa.jpg\"}', 'upc' => '814523273571', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Snap-On Case for Samsung Galaxy S 4 Cell Phones - Cyan Blue\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; high-density Plextonium shell; soft-touch finish; ultralightweight, ultrathin design; includes a screen protector and video stand\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; high-density Plextonium shell; soft-touch finish; ultralightweight, ultrathin design; includes a screen protector and video stand\", 'price' => 24.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/incipio-feather-snap-on-case-for-samsung-galaxy-s-4-cell-phones-cyan-blue/1530959.p?id=1219054455840&skuId=1530959', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530959', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530959_sa.jpg\"}', 'upc' => '814523243727', 'provider' => 'bestbuy'],\n ['name' => \"A John Prine Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-john-prine-christmas-cd/1530962.p?id=95508&skuId=1530962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530962_sa.jpg\"}', 'upc' => '094012001124', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Hard Shell Case for Samsung Galaxy S III Cell Phones - Neon Blue\", 'description_short' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; soft-touch finish; ultralightweight, low-profile construction; includes a screen protector\", 'description_long' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; soft-touch finish; ultralightweight, low-profile construction; includes a screen protector\", 'price' => 24.99, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/incipio-feather-hard-shell-case-for-samsung-galaxy-s-iii-cell-phones-neon-blue/1530995.p?id=1219054455190&skuId=1530995', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1530995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1530\\/1530995_sa.jpg\"}', 'upc' => '814523242980', 'provider' => 'bestbuy'],\n ['name' => \"Sci-Fi Classics Double Feature (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/sci-fi-classics-double-feature-blu-ray-disc-2-disc/1531007.p?id=3235945&skuId=1531007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1531007.jpg\"}', 'upc' => '014381001181', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for Samsung Galaxy S III Cell Phones - Neon Pink/Black\", 'description_short' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; silicone core; soft-touch finish; clear screen protector\", 'description_long' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; silicone core; soft-touch finish; clear screen protector\", 'price' => 29.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-samsung-galaxy-s-iii-cell-phones-neon-pink-black/1531011.p?id=1219054455132&skuId=1531011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531011_sa.jpg\"}', 'upc' => '814523243031', 'provider' => 'bestbuy'],\n ['name' => \"100 Cartoon Classics (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/100-cartoon-classics-dvd-3-disc/1531016.p?id=2952029&skuId=1531016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531016.jpg\"}', 'upc' => '628261119097', 'provider' => 'bestbuy'],\n ['name' => \"Laugh Out Loud [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/laugh-out-loud-3-discs-dvd/1531025.p?id=3516582&skuId=1531025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531025_sa.jpg\"}', 'upc' => '043396409064', 'provider' => 'bestbuy'],\n ['name' => \"Essential Three Stooges Collection (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essential-three-stooges-collection-dvd/1531034.p?id=3315029&skuId=1531034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531034.jpg\"}', 'upc' => '628261138098', 'provider' => 'bestbuy'],\n ['name' => \"Al Pacino Double Feature [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/al-pacino-double-feature-2-discs-dvd/1531043.p?id=3176188&skuId=1531043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531043_sa.jpg\"}', 'upc' => '014381000801', 'provider' => 'bestbuy'],\n ['name' => \"Jeff Dunham Double Feature: Arguing with Myself/Spark of Insanity [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jeff-dunham-double-feature-arguing-with-myself-spark-of-insanity-2-discs-dvd/1531052.p?id=2752909&skuId=1531052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531052_sa.jpg\"}', 'upc' => '014381866926', 'provider' => 'bestbuy'],\n ['name' => \"From the Mint Factory - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-the-mint-factory-cd/1531060.p?id=91849&skuId=1531060&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531060', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531060_sa.jpg\"}', 'upc' => '731454900522', 'provider' => 'bestbuy'],\n ['name' => \"H-Town Chronic, Vol. 4.5 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/h-town-chronic-vol-4-5-pa-cd/1531075.p?id=2160060&skuId=1531075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531075_sa.jpg\"}', 'upc' => '786984087823', 'provider' => 'bestbuy'],\n ['name' => \"Epic [CD & DVD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/epic-cd-dvd-cd/1531084.p?id=2163575&skuId=1531084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531084.jpg\"}', 'upc' => '669311300423', 'provider' => 'bestbuy'],\n ['name' => \"Awakenings/The Fisher King [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/awakenings-the-fisher-king-2-discs-dvd/1531098.p?id=2160376&skuId=1531098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531098_sa.jpg\"}', 'upc' => '014381692822', 'provider' => 'bestbuy'],\n ['name' => \"Laugh Out Loud (6-Movie Collection) (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/laugh-out-loud-6-movie-collection-dvd-3-disc/1531103.p?id=3324408&skuId=1531103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1531103.jpg\"}', 'upc' => '043396421653', 'provider' => 'bestbuy'],\n ['name' => \"Doubleheader: 2 Family Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doubleheader-2-family-favorites-2-discs-dvd/1531112.p?id=2860107&skuId=1531112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531112_sa.jpg\"}', 'upc' => '014381866827', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Smith Goes to Washington (Blu-ray Disc) (Black & White) (Ultraviolet Digital Copy) (Mastered in 4K)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-smith-goes-to-washington-blu-ray-disc-black-white-ultraviolet-digital-copy-mastered-in-4k/1531121.p?id=23382&skuId=1531121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531121_sa.jpg\"}', 'upc' => '043396446557', 'provider' => 'bestbuy'],\n ['name' => \"Soneros De Verdad Presenta: Pío Leiva - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soneros-de-verdad-presenta-pio-leiva-cd/1531163.p?id=2165392&skuId=1531163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531163_sa.jpg\"}', 'upc' => '4020659158804', 'provider' => 'bestbuy'],\n ['name' => \"Joe Strummer Tribute Concert: Cast a Long Shadow (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joe-strummer-tribute-concert-cast-a-long-shadow-dvd/1531181.p?id=2168217&skuId=1531181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531181_sa.jpg\"}', 'upc' => '760137509394', 'provider' => 'bestbuy'],\n ['name' => \"Da Bottom, Vol. 24 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/da-bottom-vol-24-cd/1531215.p?id=3245412&skuId=1531215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531215.jpg\"}', 'upc' => '786984088820', 'provider' => 'bestbuy'],\n ['name' => \"Misa Negra [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/misa-negra-digipak-cd/1531224.p?id=2165394&skuId=1531224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531224_sa.jpg\"}', 'upc' => '821895979222', 'provider' => 'bestbuy'],\n ['name' => \"La Voz del Son - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-voz-del-son-cd/1531233.p?id=308345&skuId=1531233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531233_sa.jpg\"}', 'upc' => '718751587229', 'provider' => 'bestbuy'],\n ['name' => \"Fable III [Game Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fable-iii-game-soundtrack-cd-original-soundtrack/1531242.p?id=2163574&skuId=1531242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531242.jpg\"}', 'upc' => '669311209122', 'provider' => 'bestbuy'],\n ['name' => \"Timeless [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timeless-pa-digipak-cd/1531349.p?id=2166692&skuId=1531349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531349_sa.jpg\"}', 'upc' => '016581636026', 'provider' => 'bestbuy'],\n ['name' => \"Easy 2 Hate [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/easy-2-hate-pa-cd/1531358.p?id=2165141&skuId=1531358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531358_sa.jpg\"}', 'upc' => '097037794125', 'provider' => 'bestbuy'],\n ['name' => \"BACKTOTHEBASEMENT [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backtothebasement-digipak-cd/1531376.p?id=2164945&skuId=1531376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531376_sa.jpg\"}', 'upc' => '612851021020', 'provider' => 'bestbuy'],\n ['name' => \"Other Directions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/other-directions-cd/1531385.p?id=3323944&skuId=1531385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '8018344013862', 'provider' => 'bestbuy'],\n ['name' => \"Nikki: The Early Recordings [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikki-the-early-recordings-digipak-cd/1531409.p?id=2165143&skuId=1531409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531409_sa.jpg\"}', 'upc' => '700261312293', 'provider' => 'bestbuy'],\n ['name' => \"The Methadones [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-methadones-digipak-cd/1531418.p?id=2164943&skuId=1531418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531418_sa.jpg\"}', 'upc' => '612851020924', 'provider' => 'bestbuy'],\n ['name' => \"War Machine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/war-machine-cd/1531436.p?id=2157589&skuId=1531436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1884\\/18844888.jpg\"}', 'upc' => '5907785036390', 'provider' => 'bestbuy'],\n ['name' => \"The Playful Heart [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-playful-heart-digipak-cd/1531445.p?id=2165967&skuId=1531445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531445_sa.jpg\"}', 'upc' => '788575011309', 'provider' => 'bestbuy'],\n ['name' => \"Solitudes: Rocky Mountain Suite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solitudes-rocky-mountain-suite-cd/1531453.p?id=1611316&skuId=1531453&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531453', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531453.jpg\"}', 'upc' => '096741411120', 'provider' => 'bestbuy'],\n ['name' => \"Speed Racer: The Soundtrack - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speed-racer-the-soundtrack-cd-original-soundtrack/1531454.p?id=2163577&skuId=1531454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531454.jpg\"}', 'upc' => '669311300522', 'provider' => 'bestbuy'],\n ['name' => \"Complete Stax-Volt Soul Singles, Vol.... [Box] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-stax-volt-soul-singles-vol-box-cd-various/1531462.p?id=100209&skuId=1531462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531462.jpg\"}', 'upc' => '025218441124', 'provider' => 'bestbuy'],\n ['name' => \"Live a Little...Hawaiian Style [Slipcase] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-a-little-hawaiian-style-slipcase-cd-various/1531472.p?id=2163630&skuId=1531472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531472_sa.jpg\"}', 'upc' => '761268215222', 'provider' => 'bestbuy'],\n ['name' => \"Mezcal Head - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mezcal-head-cd/1531505.p?id=101012&skuId=1531505&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531505', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531505_sa.jpg\"}', 'upc' => '731454012928', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Hard Shell Case for Samsung Galaxy S III Cell Phones - Glossy White\", 'description_short' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; soft-touch finish; ultralightweight, low-profile construction; includes a screen protector\", 'description_long' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; soft-touch finish; ultralightweight, low-profile construction; includes a screen protector\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-hard-shell-case-for-samsung-galaxy-s-iii-cell-phones-glossy-white/1531542.p?id=1219054455775&skuId=1531542', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531542_sa.jpg\"}', 'upc' => '814523243338', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Shell Case for Samsung Galaxy S 4 Cell Phones - Obsidian Black\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; Plextonium material; radio-transparent design; brushed-aluminum finish; includes screen protector and video stand\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; Plextonium material; radio-transparent design; brushed-aluminum finish; includes screen protector and video stand\", 'price' => 29.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-shell-case-for-samsung-galaxy-s-4-cell-phones-obsidian-black/1531551.p?id=1219054452785&skuId=1531551', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531551_sa.jpg\"}', 'upc' => '814523243833', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Shell Case for BlackBerry Q10 Cell Phones - Black\", 'description_short' => \"Compatible with BlackBerry Q10 cell phones; Plextonium material; radio-transparent design; low-profile frame; brushed-aluminum finish; includes screen protector\", 'description_long' => \"Compatible with BlackBerry Q10 cell phones; Plextonium material; radio-transparent design; low-profile frame; brushed-aluminum finish; includes screen protector\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-shell-case-for-blackberry-q10-cell-phones-black/1531588.p?id=1219054452395&skuId=1531588', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531588_sa.jpg\"}', 'upc' => '814523760279', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Snap-On Case for HTC One Cell Phones - Neon Pink\", 'description_short' => \"Compatible with HTC One cell phones; rigid Plextonium frame; soft-touch finish; snap-on construction; ultrathin, lightweight design\", 'description_long' => \"Compatible with HTC One cell phones; rigid Plextonium frame; soft-touch finish; snap-on construction; ultrathin, lightweight design\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-snap-on-case-for-htc-one-cell-phones-neon-pink/1531597.p?id=1219054451476&skuId=1531597', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531597_sa.jpg\"}', 'upc' => '814523273472', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for BlackBerry Q10 Cell Phones - Cherry Blossom Pink/Charcoal Gray\", 'description_short' => \"Compatible with BlackBerry Q10 cell phones; hard shell Plextonium frame; silicone core; soft-touch finish; clear screen protector\", 'description_long' => \"Compatible with BlackBerry Q10 cell phones; hard shell Plextonium frame; silicone core; soft-touch finish; clear screen protector\", 'price' => 29.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-blackberry-q10-cell-phones-cherry-blossom-pink-charcoal-gray/1531712.p?id=1219054453560&skuId=1531712', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531712', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531712_sa.jpg\"}', 'upc' => '814523760293', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for BlackBerry Z10 Cell Phones - Gray\", 'description_short' => \"Compatible with BlackBerry Z10 cell phones; dual-layer design; silicone core; soft-touch finish; clear screen protector\", 'description_long' => \"Compatible with BlackBerry Z10 cell phones; dual-layer design; silicone core; soft-touch finish; clear screen protector\", 'price' => 29.99, 'sale_price' => 25.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-blackberry-z10-cell-phones-gray/1531721.p?id=1219054455970&skuId=1531721', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531721_sa.jpg\"}', 'upc' => '814523760163', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - NGP Soft-Shell Case for Apple® iPhone® SE, 5s and 5 - Translucent Orchid Pink\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; soft-shell construction; wrap-around design; matte finish; includes screen protector, microfiber cloth and applicator card\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; soft-shell construction; wrap-around design; matte finish; includes screen protector, microfiber cloth and applicator card\", 'price' => 19.99, 'sale_price' => 13.99, 'url' => 'http://www.bestbuy.com/site/incipio-ngp-soft-shell-case-for-apple-iphone-se-5s-and-5-translucent-orchid-pink/1531758.p?id=1219054453168&skuId=1531758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308476184\\/1308476184_sa.jpg\"}', 'upc' => '814523028973', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Case for Apple® iPhone® 5 and 5s - Titanium Silver\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; rigid Plextonium frame; brushed-aluminum finish; ultrathin shell; radio-transparent design\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; rigid Plextonium frame; brushed-aluminum finish; ultrathin shell; radio-transparent design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-case-for-apple-iphone-5-and-5s-titanium-silver/1531767.p?id=1219054453103&skuId=1531767', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531767_sa.jpg\"}', 'upc' => '814523028706', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Snap-On Case for Samsung Galaxy S 4 Cell Phones - Obsidian Black\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; high-density Plextonium shell; soft-touch finish; ultralightweight, ultrathin design; includes a screen protector and video stand\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; high-density Plextonium shell; soft-touch finish; ultralightweight, ultrathin design; includes a screen protector and video stand\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-snap-on-case-for-samsung-galaxy-s-4-cell-phones-obsidian-black/1531803.p?id=1219054453294&skuId=1531803', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531803_sa.jpg\"}', 'upc' => '814523243703', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for HTC One Cell Phones (AT&T, Sprint and T-Cell) - Black\", 'description_short' => \"Compatible with HTC One cell phones; dual-layer design; soft-touch finish\", 'description_long' => \"Compatible with HTC One cell phones; dual-layer design; soft-touch finish\", 'price' => 29.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-htc-one-cell-phones-at-t-sprint-and-t-cell-black/1531849.p?id=1219054449587&skuId=1531849', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531849_sa.jpg\"}', 'upc' => '814523273502', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - Watson Wallet Folio Case for Samsung Galaxy S 4 Cell Phones - Black\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; vegan-leather cover; detachable Plextonium shell; microsuede lining; 3 card slots; elastic band; flash-diffusing camera cutouts\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; vegan-leather cover; detachable Plextonium shell; microsuede lining; 3 card slots; elastic band; flash-diffusing camera cutouts\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-watson-wallet-folio-case-for-samsung-galaxy-s-4-cell-phones-black/1531867.p?id=1219054448535&skuId=1531867', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531867_sa.jpg\"}', 'upc' => '814523243949', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - NGP Soft-Shell Case for Apple® iPhone® SE, 5s and 5 - Translucent Indigo Violet\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; soft-shell construction; wrap-around design; matte finish; includes screen protector, microfiber cloth and applicator card\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; soft-shell construction; wrap-around design; matte finish; includes screen protector, microfiber cloth and applicator card\", 'price' => 19.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/incipio-ngp-soft-shell-case-for-apple-iphone-se-5s-and-5-translucent-indigo-violet/1531876.p?id=1219054452261&skuId=1531876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308476191\\/1308476191_sa.jpg\"}', 'upc' => '814523028980', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro SHINE Case for HTC One Cell Phones (AT&T, Sprint and T-Cell) - Silver/Black\", 'description_short' => \"Compatible with HTC One cell phones (AT&amp;T, Sprint and T-cell); silicone core; aluminum finish; transparent sides\", 'description_long' => \"Compatible with HTC One cell phones (AT&amp;T, Sprint and T-cell); silicone core; aluminum finish; transparent sides\", 'price' => 34.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-shine-case-for-htc-one-cell-phones-at-t-sprint-and-t-cell-silver-black/1531894.p?id=1219054450441&skuId=1531894', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531894_sa.jpg\"}', 'upc' => '814523273540', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro SHINE Case for Samsung Galaxy S III Cell Phones - Gray/Silver\", 'description_short' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; silicone core; brushed-aluminum finish; radio-transparent design\", 'description_long' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; silicone core; brushed-aluminum finish; radio-transparent design\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-shine-case-for-samsung-galaxy-s-iii-cell-phones-gray-silver/1531921.p?id=1219054454149&skuId=1531921', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531921_sa.jpg\"}', 'upc' => '814523243116', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Snap-On Case for BlackBerry Q10 Cell Phones - Obsidian Black\", 'description_short' => \"Compatible with BlackBerry Q10 cell phones; high-density Plextonium frame; soft-touch finish; ultralightweight, ultrathin design; includes a screen protector\", 'description_long' => \"Compatible with BlackBerry Q10 cell phones; high-density Plextonium frame; soft-touch finish; ultralightweight, ultrathin design; includes a screen protector\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-snap-on-case-for-blackberry-q10-cell-phones-obsidian-black/1531949.p?id=1219054455641&skuId=1531949', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531949', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531949_sa.jpg\"}', 'upc' => '814523760224', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Case for Apple® iPhone® SE, 5s and 5 - Obsidian Black\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium frame; brushed-aluminum finish; ultrathin shell; radio-transparent design\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium frame; brushed-aluminum finish; ultrathin shell; radio-transparent design\", 'price' => 29.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-case-for-apple-iphone-se-5s-and-5-obsidian-black/1531958.p?id=1219054446633&skuId=1531958', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531958_sa.jpg\"}', 'upc' => '814523028713', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Shell Case for Apple® iPhone® SE, 5s and 5 - Chrome\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; Plextonium material; radio-transparent design; brushed-aluminum finish; includes screen protector\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; Plextonium material; radio-transparent design; brushed-aluminum finish; includes screen protector\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-shell-case-for-apple-iphone-se-5s-and-5-chrome/1531967.p?id=1219054454210&skuId=1531967', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531967_sa.jpg\"}', 'upc' => '814523029178', 'provider' => 'bestbuy'],\n ['name' => \"The Ozark Mountain Daredevils - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ozark-mountain-daredevils-cd/1531970.p?id=94235&skuId=1531970&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531970', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531970_sa.jpg\"}', 'upc' => '075021311022', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for HTC One Cell Phones (AT&T, Sprint and T-Cell) - Gray\", 'description_short' => \"Compatible with HTC One cell phones; dual-layer design; soft-touch finish\", 'description_long' => \"Compatible with HTC One cell phones; dual-layer design; soft-touch finish\", 'price' => 29.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-htc-one-cell-phones-at-t-sprint-and-t-cell-gray/1531976.p?id=1219054452326&skuId=1531976', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531976', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531976_sa.jpg\"}', 'upc' => '814523273533', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Shell Case for Samsung Galaxy S III Cell Phones - Silver\", 'description_short' => \"Compatible with Samsung Galaxy S III cell phones; Plextonium material; radio-transparent design; brushed-aluminum finish; includes screen protector\", 'description_long' => \"Compatible with Samsung Galaxy S III cell phones; Plextonium material; radio-transparent design; brushed-aluminum finish; includes screen protector\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-shell-case-for-samsung-galaxy-s-iii-cell-phones-silver/1531985.p?id=1219054456360&skuId=1531985', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1531985', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1531\\/1531985_sa.jpg\"}', 'upc' => '814523243123', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Shell Case for BlackBerry Q10 Cell Phones - Silver\", 'description_short' => \"Compatible with BlackBerry Q10 cell phones; Plextonium material; radio-transparent design; low-profile frame; brushed-aluminum finish; includes screen protector\", 'description_long' => \"Compatible with BlackBerry Q10 cell phones; Plextonium material; radio-transparent design; low-profile frame; brushed-aluminum finish; includes screen protector\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-shell-case-for-blackberry-q10-cell-phones-silver/1532001.p?id=1219054448210&skuId=1532001', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532001_sa.jpg\"}', 'upc' => '814523760262', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - Lumix External Flash - Black\", 'description_short' => \"Compatible with select Panasonic Lumix DSLR cameras; fast charging; wireless control; LED lights for videos\", 'description_long' => \"Compatible with select Panasonic Lumix DSLR cameras; fast charging; wireless control; LED lights for videos\", 'price' => 299.99, 'sale_price' => 257.99, 'url' => 'http://www.bestbuy.com/site/panasonic-lumix-external-flash-black/1532006.p?id=1219500989596&skuId=1532006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532006_rc.jpg\"}', 'upc' => '885170110731', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Digital Power Battery Grip - Black\", 'description_short' => \"Compatible with select Nikon DSLR cameras; holds 2 EN-EL14 or 4 AA batteries (not included); vertical shutter release; mode wheel; well-balanced construction\", 'description_long' => \"Compatible with select Nikon DSLR cameras; holds 2 EN-EL14 or 4 AA batteries (not included); vertical shutter release; mode wheel; well-balanced construction\", 'price' => 89.99, 'sale_price' => 69.99, 'url' => 'http://www.bestbuy.com/site/energizer-digital-power-battery-grip-black/1532162.p?id=1219054456126&skuId=1532162', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532162_sa.jpg\"}', 'upc' => '636980950518', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Gray\", 'description_short' => \"Compatible with Canon PowerShot SD4000, D10, IXUS 85 IS and similar digital camera models; 7.4V of power; 750 mAh capacity; memory-free design\", 'description_long' => \"Compatible with Canon PowerShot SD4000, D10, IXUS 85 IS and similar digital camera models; 7.4V of power; 750 mAh capacity; memory-free design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-gray/1532171.p?id=1219054456114&skuId=1532171', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532171_sa.jpg\"}', 'upc' => '636980950037', 'provider' => 'bestbuy'],\n ['name' => \"From Every Stage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-every-stage-cd/1532176.p?id=73700&skuId=1532176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532176_sa.jpg\"}', 'upc' => '075021650626', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Gray\", 'description_short' => \"Compatible with select Nikon DSLR cameras; 7.4V of power; 1400 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Nikon DSLR cameras; 7.4V of power; 1400 mAh capacity; memory-free design\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-gray/1532205.p?id=1219054455320&skuId=1532205', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532205_sa.jpg\"}', 'upc' => '636980950198', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Nikon digital cameras; 3.7V of power; 700 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Nikon digital cameras; 3.7V of power; 700 mAh capacity; memory-free design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532214.p?id=1219054454497&skuId=1532214', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532214_sa.jpg\"}', 'upc' => '636980950242', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Canon PowerShot digital cameras; 3.7V of power; 600 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Canon PowerShot digital cameras; 3.7V of power; 600 mAh capacity; memory-free design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532223.p?id=1219054452720&skuId=1532223', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532223_sa.jpg\"}', 'upc' => '636980950112', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Olympus digital cameras; 3.7V of power; 770 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Olympus digital cameras; 3.7V of power; 770 mAh capacity; memory-free design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532232.p?id=1219054449845&skuId=1532232', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532232_sa.jpg\"}', 'upc' => '636980950136', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Canon PowerShot digital cameras; 7.4V of power; 650 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Canon PowerShot digital cameras; 7.4V of power; 650 mAh capacity; memory-free design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532241.p?id=1219054446644&skuId=1532241', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532241_sa.jpg\"}', 'upc' => '636980950006', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Digital Power Battery Grip - Black\", 'description_short' => \"Compatible with Canon EOS 60D DSLR cameras; holds 2 LP-E6 or 4 AA batteries (not included); extends your camera&#039;s battery life; vertical shutter release and mode wheel; well-balanced construction\", 'description_long' => \"Compatible with Canon EOS 60D DSLR cameras; holds 2 LP-E6 or 4 AA batteries (not included); extends your camera&#039;s battery life; vertical shutter release and mode wheel; well-balanced construction\", 'price' => 109.99, 'sale_price' => 80.99, 'url' => 'http://www.bestbuy.com/site/energizer-digital-power-battery-grip-black/1532269.p?id=1219054450964&skuId=1532269', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532269_sa.jpg\"}', 'upc' => '636980950488', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Olympus digital cameras; 3.7V of power; 700 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Olympus digital cameras; 3.7V of power; 700 mAh capacity; memory-free design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532278.p?id=1219054453820&skuId=1532278', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532278_sa.jpg\"}', 'upc' => '636980950129', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Digital Pro 42-Bulb LED Light\", 'description_short' => \"Compatible with most DSLR cameras with a standard hot shoe mount and video capability; 300 lux, 3W light; 60&#176; illumination beam angle; adjustable dimmer; built-in diffuser; 1/4&quot; tripod screw mount\", 'description_long' => \"Compatible with most DSLR cameras with a standard hot shoe mount and video capability; 300 lux, 3W light; 60&#176; illumination beam angle; adjustable dimmer; built-in diffuser; 1/4&quot; tripod screw mount\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-digital-pro-42-bulb-led-light/1532287.p?id=1219054447755&skuId=1532287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532287_500x500_sa.jpg\"}', 'upc' => '636980950600', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - LCD Remote Shutter Trigger\", 'description_short' => \"Compatible with most DSLR cameras; interval, long-exposure and self-timer capabilities; captures up to 399 continuous shots\", 'description_long' => \"Compatible with most DSLR cameras; interval, long-exposure and self-timer capabilities; captures up to 399 continuous shots\", 'price' => 59.99, 'sale_price' => 46.99, 'url' => 'http://www.bestbuy.com/site/energizer-lcd-remote-shutter-trigger/1532296.p?id=1219054449188&skuId=1532296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532296_500x500_sa.jpg\"}', 'upc' => '636980950624', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Sony digital cameras; 7.2V of power; 1640 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Sony digital cameras; 7.2V of power; 1640 mAh capacity; memory-free design\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532302.p?id=1219054451743&skuId=1532302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532302_sa.jpg\"}', 'upc' => '636980950433', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - USB 3.0/2.0 Memory Card Reader - Black\", 'description_short' => \"Supports SD, SDHC, SDXC, miniSD, microSD, microSDHC, MMC, MS and other memory cards; plug-and-play installation; PC and Mac compatible\", 'description_long' => \"Supports SD, SDHC, SDXC, miniSD, microSD, microSDHC, MMC, MS and other memory cards; plug-and-play installation; PC and Mac compatible\", 'price' => 24.99, 'sale_price' => 20.99, 'url' => 'http://www.bestbuy.com/site/energizer-usb-3-0-2-0-memory-card-reader-black/1532311.p?id=1219054451411&skuId=1532311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532311_sa.jpg\"}', 'upc' => '636980550039', 'provider' => 'bestbuy'],\n ['name' => \"Bower - Electret Condenser Microphone - Black\", 'description_short' => \"Compatible with most camcorders and DSLR and mirrorless cameras with a microphone jack; wide 45&#176; recording spectrum; integrated shock mount; compact, lightweight design; includes windscreen\", 'description_long' => \"Compatible with most camcorders and DSLR and mirrorless cameras with a microphone jack; wide 45&#176; recording spectrum; integrated shock mount; compact, lightweight design; includes windscreen\", 'price' => 49.99, 'sale_price' => 30.99, 'url' => 'http://www.bestbuy.com/site/bower-electret-condenser-microphone-black/1532339.p?id=1219054452521&skuId=1532339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532339_sa.jpg\"}', 'upc' => '636980704982', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Sony digital cameras; 3.6V of power; 770 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Sony digital cameras; 3.6V of power; 770 mAh capacity; memory-free design\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532348.p?id=1219054447885&skuId=1532348', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532348_sa.jpg\"}', 'upc' => '636980950303', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Gray\", 'description_short' => \"Compatible with select Nikon digital cameras; 3.7V of power; 1150 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Nikon digital cameras; 3.7V of power; 1150 mAh capacity; memory-free design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-gray/1532357.p?id=1219054446646&skuId=1532357', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532357_sa.jpg\"}', 'upc' => '636980950204', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Multifit Wireless Remote Shutter Trigger\", 'description_short' => \"Compatible with most DSLR cameras with an infrared sensor; activates your camera&#039;s shutter from up to 350&#039; away; wireless infrared technology; 6 multifit cable connectors\", 'description_long' => \"Compatible with most DSLR cameras with an infrared sensor; activates your camera&#039;s shutter from up to 350&#039; away; wireless infrared technology; 6 multifit cable connectors\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-multifit-wireless-remote-shutter-trigger/1532375.p?id=1219054450506&skuId=1532375', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532375_500x500_sa.jpg\"}', 'upc' => '636980950631', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Sony digital cameras; 3.6V of power; 1100 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Sony digital cameras; 3.6V of power; 1100 mAh capacity; memory-free design\", 'price' => 39.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532384.p?id=1219054452070&skuId=1532384', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532384_sa.jpg\"}', 'upc' => '636980950297', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - TTL Flash Cord - Black\", 'description_short' => \"Compatible with select DSLR cameras; allows remote use of TTL flash functions; coil design\", 'description_long' => \"Compatible with select DSLR cameras; allows remote use of TTL flash functions; coil design\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-ttl-flash-cord-black/1532393.p?id=1219054447682&skuId=1532393', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532393_rc.jpg\"}', 'upc' => '636980950532', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Canon digital cameras; 7.4V of power; 750 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Canon digital cameras; 7.4V of power; 750 mAh capacity; memory-free design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532408.p?id=1219054456115&skuId=1532408', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532408_sa.jpg\"}', 'upc' => '636980950013', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Fujifilm FinePix digital cameras; 3.7V of power; 700 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Fujifilm FinePix digital cameras; 3.7V of power; 700 mAh capacity; memory-free design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532417.p?id=1219054449652&skuId=1532417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532417_sa.jpg\"}', 'upc' => '636980950273', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - 64-in-1 USB 2.0 Memory Card Reader/Writer - Black\", 'description_short' => \"Supports most SD, xD-Picture Card, CF and MS formats; compatible with PC and Mac; plug-and-play operation\", 'description_long' => \"Supports most SD, xD-Picture Card, CF and MS formats; compatible with PC and Mac; plug-and-play operation\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-64-in-1-usb-2-0-memory-card-reader-writer-black/1532462.p?id=1219054455262&skuId=1532462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532462_sa.jpg\"}', 'upc' => '636980550015', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - USB 3.0 Memory Card Reader/Writer - Black\", 'description_short' => \"4 card slots supporting most SD, xD-Picture Card, CF and MS formats; compatible with PC and Mac; plug-and-play operation\", 'description_long' => \"4 card slots supporting most SD, xD-Picture Card, CF and MS formats; compatible with PC and Mac; plug-and-play operation\", 'price' => 39.99, 'sale_price' => 24.99, 'url' => 'http://www.bestbuy.com/site/energizer-usb-3-0-memory-card-reader-writer-black/1532471.p?id=1219054453430&skuId=1532471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532471_sa.jpg\"}', 'upc' => '636980550022', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Digital Pro 72-Bulb LED Video Light\", 'description_short' => \"Compatible with most DSLR cameras with a standard hot shoe mount and video capability; 4W, 500 lux light; 60&#176; illumination-beam angle; adjustable intensity dimmer; diffuser; warming plates; barn doors\", 'description_long' => \"Compatible with most DSLR cameras with a standard hot shoe mount and video capability; 4W, 500 lux light; 60&#176; illumination-beam angle; adjustable intensity dimmer; diffuser; warming plates; barn doors\", 'price' => 79.99, 'sale_price' => 54.99, 'url' => 'http://www.bestbuy.com/site/energizer-digital-pro-72-bulb-led-video-light/1532499.p?id=1219054446643&skuId=1532499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532499_500x500_sa.jpg\"}', 'upc' => '636980950617', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Canon digital cameras; 3.7V of power; 820 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Canon digital cameras; 3.7V of power; 820 mAh capacity; memory-free design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532523.p?id=1219054452001&skuId=1532523', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532523_sa.jpg\"}', 'upc' => '636980950020', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Sony digital cameras; 3.6V of power; 650 mAh capacity; memory-free design\", 'description_long' => \"Compatible with select Sony digital cameras; 3.6V of power; 650 mAh capacity; memory-free design\", 'price' => 39.99, 'sale_price' => 21.99, 'url' => 'http://www.bestbuy.com/site/energizer-rechargeable-lithium-ion-battery-black/1532532.p?id=1219054450043&skuId=1532532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532532_sa.jpg\"}', 'upc' => '636980950280', 'provider' => 'bestbuy'],\n ['name' => \"RCA - RCA-2101-2BKGA DECT 6.0 Expandable Cordless Phone System - Black\", 'description_short' => \"ENERGY STAR Certified\nBase plus 2 handsets; DECT 6.0 digital technology; caller ID; call-conference capability; call timer/intercom functionality; tone/pulse dialing; page/find feature\", 'description_long' => \"ENERGY STAR Certified\nBase plus 2 handsets; DECT 6.0 digital technology; caller ID; call-conference capability; call timer/intercom functionality; tone/pulse dialing; page/find feature\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rca-rca-2101-2bkga-dect-6-0-expandable-cordless-phone-system-black/1532578.p?id=1219054452912&skuId=1532578', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532578_rc.jpg\"}', 'upc' => '857635002233', 'provider' => 'bestbuy'],\n ['name' => \"RCA - RCA-2101-1BKGA DECT 6.0 Expandable Cordless Phone - Black\", 'description_short' => \"Base plus 1 handset; DECT 6.0 digital technology; caller ID; call-conference capability; call timer/intercom functionality; tone/pulse dialing; page/find feature\", 'description_long' => \"Base plus 1 handset; DECT 6.0 digital technology; caller ID; call-conference capability; call timer/intercom functionality; tone/pulse dialing; page/find feature\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rca-rca-2101-1bkga-dect-6-0-expandable-cordless-phone-black/1532587.p?id=1219054447820&skuId=1532587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532587_rc.jpg\"}', 'upc' => '857635002042', 'provider' => 'bestbuy'],\n ['name' => \"RCA - RCA-2130-0BKGA DECT 6.0 Cordless Expansion Handset - Black\", 'description_short' => \"Cordless expansion handset with charger; DECT 6.0 digital technology; call-waiting caller ID; volume control; selectable ringtones; speakerphone; mute; call transfer\", 'description_long' => \"Cordless expansion handset with charger; DECT 6.0 digital technology; call-waiting caller ID; volume control; selectable ringtones; speakerphone; mute; call transfer\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rca-rca-2130-0bkga-dect-6-0-cordless-expansion-handset-black/1532596.p?id=1219054448342&skuId=1532596', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532596_rc.jpg\"}', 'upc' => '857635002172', 'provider' => 'bestbuy'],\n ['name' => \"RCA - RCA-2102-3BKGA DECT 6.0 Expandable Cordless Phone System with Digital Answering System - Black\", 'description_short' => \"ENERGY STAR Certified\nBase station plus 3 cordless handsets and 2 chargers; DECT 6.0 technology; full caller ID; conference-call capability; call timer; intercom; page/find feature; 10 ringer tones\", 'description_long' => \"ENERGY STAR Certified\nBase station plus 3 cordless handsets and 2 chargers; DECT 6.0 technology; full caller ID; conference-call capability; call timer; intercom; page/find feature; 10 ringer tones\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rca-rca-2102-3bkga-dect-6-0-expandable-cordless-phone-system-with-digital-answering-system-black/1532675.p?id=1219054924826&skuId=1532675', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532675_rc.jpg\"}', 'upc' => '857635002257', 'provider' => 'bestbuy'],\n ['name' => \"A Truly Western Experience [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-truly-western-experience-import-cd/1532700.p?id=306813&skuId=1532700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532700_sa.jpg\"}', 'upc' => '075992555029', 'provider' => 'bestbuy'],\n ['name' => \"RCA - RCA-2111-2BSGA DECT 6.0 Expandable Cordless Phone System - Black\", 'description_short' => \"Base plus 2 handsets; DECT 6.0 digital technology; caller ID; handset speakerphone capability; VIP ringtones; visual ring indicator; room monitoring; alarm clock; do-not-disturb feature\", 'description_long' => \"Base plus 2 handsets; DECT 6.0 digital technology; caller ID; handset speakerphone capability; VIP ringtones; visual ring indicator; room monitoring; alarm clock; do-not-disturb feature\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rca-rca-2111-2bsga-dect-6-0-expandable-cordless-phone-system-black/1532711.p?id=1219054451873&skuId=1532711', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532711_rc.jpg\"}', 'upc' => '857635002240', 'provider' => 'bestbuy'],\n ['name' => \"RCA - RCA-2110-0BSGA DECT 6.0 Cordless Expansion Handset - Black\", 'description_short' => \"Cordless expansion handset with charging cradle; DECT 6.0 digital technology; call-waiting caller ID; speakerphone; volume control; mute; VIP ringtones\", 'description_long' => \"Cordless expansion handset with charging cradle; DECT 6.0 digital technology; call-waiting caller ID; speakerphone; volume control; mute; VIP ringtones\", 'price' => 24.99, 'sale_price' => 21.99, 'url' => 'http://www.bestbuy.com/site/rca-rca-2110-0bsga-dect-6-0-cordless-expansion-handset-black/1532739.p?id=1219054447561&skuId=1532739', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532739_rc.jpg\"}', 'upc' => '857635002165', 'provider' => 'bestbuy'],\n ['name' => \"RCA - RCA-2100-0BKGA DECT 6.0 Cordless Expansion Handset - Black\", 'description_short' => \"Cordless expansion handset with charger; DECT 6.0 digital technology; caller ID; call-conference capability; call timer/intercom functionality; tone/pulse dialing\", 'description_long' => \"Cordless expansion handset with charger; DECT 6.0 digital technology; caller ID; call-conference capability; call timer/intercom functionality; tone/pulse dialing\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rca-rca-2100-0bkga-dect-6-0-cordless-expansion-handset-black/1532748.p?id=1219054455446&skuId=1532748', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532748_rc.jpg\"}', 'upc' => '857635002158', 'provider' => 'bestbuy'],\n ['name' => \"RCA - RCA-2111-1BSGA DECT 6.0 Expandable Cordless Phone - Black/Silver\", 'description_short' => \"Base plus 1 handset; DECT 6.0 digital technology; caller ID; handset speakerphone capability; VIP ringtones; visual ring indicator; room monitoring; alarm clock; do-not-disturb feature\", 'description_long' => \"Base plus 1 handset; DECT 6.0 digital technology; caller ID; handset speakerphone capability; VIP ringtones; visual ring indicator; room monitoring; alarm clock; do-not-disturb feature\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rca-rca-2111-1bsga-dect-6-0-expandable-cordless-phone-black-silver/1532757.p?id=1219054454944&skuId=1532757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532757_rc.jpg\"}', 'upc' => '857635002004', 'provider' => 'bestbuy'],\n ['name' => \"From Death to Destiny [Clean] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-death-to-destiny-clean-cd/1532875.p?id=2739907&skuId=1532875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532875_sa.jpg\"}', 'upc' => '817424012850', 'provider' => 'bestbuy'],\n ['name' => \"Winter Kills [Best Buy Exclusive] [CD & DVD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winter-kills-best-buy-exclusive-cd-dvd-cd/1532884.p?id=2739728&skuId=1532884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532884_sa.jpg\"}', 'upc' => '819224016670', 'provider' => 'bestbuy'],\n ['name' => \"Three Kings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/three-kings-cd/1532911.p?id=2725122&skuId=1532911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532911.jpg\"}', 'upc' => '075678683916', 'provider' => 'bestbuy'],\n ['name' => \"Rubberband - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rubberband-cd/1532957.p?id=2724416&skuId=1532957&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532957_sa.jpg\"}', 'upc' => '093624943976', 'provider' => 'bestbuy'],\n ['name' => \"Then Play On [Deluxe Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/then-play-on-deluxe-edition-cd/1532984.p?id=2728507&skuId=1532984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1532984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1532\\/1532984_sa.jpg\"}', 'upc' => '081227964436', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - 55\\\" Class (54.6\\\" Diag.) - LED - 1080p - Smart - HDTV Roku TV - Black\", 'description_short' => \"1080p resolution60Hz refresh rateSmart TV\", 'description_long' => \"1080p resolution60Hz refresh rateSmart TV\", 'price' => 579.99, 'sale_price' => 479.99, 'url' => 'http://www.bestbuy.com/site/insignia-55-class-54-6-diag--led-1080p-smart-hdtv-roku-tv-black/1533005.p?id=1219509180296&skuId=1533005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533005_sa.jpg\"}', 'upc' => '600603185847', 'provider' => 'bestbuy'],\n ['name' => \"Forest Rain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forest-rain-cd/1533013.p?id=1397938&skuId=1533013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533013_sa.jpg\"}', 'upc' => '096507715028', 'provider' => 'bestbuy'],\n ['name' => \"Lumineers [Deluxe... [CD & DVD] [Digipak] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lumineers-deluxe-cd-dvd-digipak-cd-dvd-deluxe-edition/1533019.p?id=2727333&skuId=1533019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2163\\/21635466.jpg\"}', 'upc' => '803020164321', 'provider' => 'bestbuy'],\n ['name' => \"Persona Q: Shadow of the Labyrinth - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Dive into the Persona franchise on the Nintendo 3DS for the first time ever\", 'description_long' => \"Dive into the Persona franchise on the Nintendo 3DS for the first time ever\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/persona-q-shadow-of-the-labyrinth-pre-owned-nintendo-3ds/1533023.p?id=1219500995560&skuId=1533023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533023_sa.jpg\"}', 'upc' => '799007841517', 'provider' => 'bestbuy'],\n ['name' => \"Nanny McPhee Returns (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nanny-mcphee-returns-blu-ray-disc/1533055.p?id=2163700&skuId=1533055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533055_sa.jpg\"}', 'upc' => '025192088070', 'provider' => 'bestbuy'],\n ['name' => \"Nanny McPhee Returns (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nanny-mcphee-returns-dvd/1533064.p?id=2163700&skuId=1533064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533064_sa.jpg\"}', 'upc' => '025192064296', 'provider' => 'bestbuy'],\n ['name' => \"I Hate Music [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-hate-music-digipak-cd/1533073.p?id=2727262&skuId=1533073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533073_sa.jpg\"}', 'upc' => '673855048024', 'provider' => 'bestbuy'],\n ['name' => \"White Lighter [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/white-lighter-digipak-cd/1533125.p?id=2725201&skuId=1533125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533125_sa.jpg\"}', 'upc' => '858824002386', 'provider' => 'bestbuy'],\n ['name' => \"Below the Noise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/below-the-noise-cd/1533134.p?id=2638715&skuId=1533134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533134_sa.jpg\"}', 'upc' => '817424011549', 'provider' => 'bestbuy'],\n ['name' => \"iLive - Wireless Speaker for Most Bluetooth-Enabled Devices - Silver\", 'description_short' => \"Bluetooth 2.0 technology; 33&#039; wireless range; LED pairing indicator; pairing button; built-in rechargeable lithium-ion battery; micro USB port; 3.5mm audio input\", 'description_long' => \"Bluetooth 2.0 technology; 33&#039; wireless range; LED pairing indicator; pairing button; built-in rechargeable lithium-ion battery; micro USB port; 3.5mm audio input\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ilive-wireless-speaker-for-most-bluetooth-enabled-devices-silver/1533161.p?id=1219054446637&skuId=1533161', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533161_sa.jpg\"}', 'upc' => '047323033810', 'provider' => 'bestbuy'],\n ['name' => \"Illegal Business? [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/illegal-business-pa-cd/1533497.p?id=1849028&skuId=1533497&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533497_sa.jpg\"}', 'upc' => '765597202229', 'provider' => 'bestbuy'],\n ['name' => \"A Liturgy, A Legacy & A Ragamuffin Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-liturgy-a-legacy-a-ragamuffin-band-cd/1533558.p?id=92591&skuId=1533558&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533558_sa.jpg\"}', 'upc' => '012414923325', 'provider' => 'bestbuy'],\n ['name' => \"Kalama's Quartet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kalamas-quartet-cd/1533861.p?id=87571&skuId=1533861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533861_sa.jpg\"}', 'upc' => '096297702826', 'provider' => 'bestbuy'],\n ['name' => \"Not for Kids Only - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/not-for-kids-only-cd/1533941.p?id=83265&skuId=1533941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533941.jpg\"}', 'upc' => '715949100925', 'provider' => 'bestbuy'],\n ['name' => \"Cure for Pain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cure-for-pain-cd/1533969.p?id=92284&skuId=1533969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1533969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1533\\/1533969_sa.jpg\"}', 'upc' => '014431026225', 'provider' => 'bestbuy'],\n ['name' => \"Penguins of Madagascar - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"It&#039;s time for an all-new adventure with your favorite Penguins\", 'description_long' => \"It&#039;s time for an all-new adventure with your favorite Penguins\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/penguins-of-madagascar-pre-owned-nintendo-3ds/1534013.p?id=1219502530818&skuId=1534013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1534013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1534\\/1534013_sa.jpg\"}', 'upc' => '799007841524', 'provider' => 'bestbuy'],\n ['name' => \"Go Slow Down - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-slow-down-cd/1534076.p?id=75377&skuId=1534076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1534076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1534\\/1534076_sa.jpg\"}', 'upc' => '093624545521', 'provider' => 'bestbuy'],\n ['name' => \"Take Me as I Am - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-me-as-i-am-cd/1534227.p?id=85378&skuId=1534227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1534227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1534\\/1534227_sa.jpg\"}', 'upc' => '093624538929', 'provider' => 'bestbuy'],\n ['name' => \"Destination Forks: The Real World of Twilight (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/destination-forks-the-real-world-of-twilight-dvd/1534337.p?id=2160190&skuId=1534337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1534337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1534\\/1534337_sa.jpg\"}', 'upc' => '025192088001', 'provider' => 'bestbuy'],\n ['name' => \"Changing With the Times - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/changing-with-the-times-cd/1534361.p?id=1513207&skuId=1534361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1534361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1534\\/1534361_sa.jpg\"}', 'upc' => '093228043423', 'provider' => 'bestbuy'],\n ['name' => \"Evidence Blues Sampler: Too - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evidence-blues-sampler-too-various-cd/1534487.p?id=75283&skuId=1534487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1534487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1534\\/1534487_sa.jpg\"}', 'upc' => '730182604023', 'provider' => 'bestbuy'],\n ['name' => \"Sloppy Drunk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sloppy-drunk-cd/1534511.p?id=97119&skuId=1534511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1534511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1534\\/1534511_sa.jpg\"}', 'upc' => '730182603620', 'provider' => 'bestbuy'],\n ['name' => \"Years of Tears - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/years-of-tears-cd/1534593.p?id=75006&skuId=1534593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1534593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1534\\/1534593.jpg\"}', 'upc' => '048021746927', 'provider' => 'bestbuy'],\n ['name' => \"Gettysburg - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gettysburg-cd-original-soundtrack/1534824.p?id=83551&skuId=1534824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1534824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1534\\/1534824_sa.jpg\"}', 'upc' => '731383565427', 'provider' => 'bestbuy'],\n ['name' => \"Madagascar: The Complete Collection [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madagascar-the-complete-collection-3-discs-dvd/1535003.p?id=2758420&skuId=1535003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535003_sa.jpg\"}', 'upc' => '032429146663', 'provider' => 'bestbuy'],\n ['name' => \"Archer: Season 5 [2 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/archer-season-5-2-discs-blu-ray-disc/1535012.p?id=3322291&skuId=1535012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535012_sa.jpg\"}', 'upc' => '024543953494', 'provider' => 'bestbuy'],\n ['name' => \"The Drop (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/the-drop-blu-ray-disc/1535021.p?id=3322311&skuId=1535021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535021.jpg\"}', 'upc' => '024543968641', 'provider' => 'bestbuy'],\n ['name' => \"The Drop (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-drop-dvd/1535049.p?id=3322311&skuId=1535049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535049.jpg\"}', 'upc' => '024543968597', 'provider' => 'bestbuy'],\n ['name' => \"Atlas Shrugged: Who Is John Galt? (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlas-shrugged-who-is-john-galt-dvd/1535058.p?id=3322318&skuId=1535058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535058.jpg\"}', 'upc' => '024543992868', 'provider' => 'bestbuy'],\n ['name' => \"Archer: Season 5 [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 12.99, 'url' => 'http://www.bestbuy.com/site/archer-season-5-2-discs-dvd/1535067.p?id=3322273&skuId=1535067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535067.jpg\"}', 'upc' => '024543953470', 'provider' => 'bestbuy'],\n ['name' => \"Atlas Shrugged: Who Is John Galt? (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlas-shrugged-who-is-john-galt-blu-ray-disc/1535076.p?id=3322318&skuId=1535076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535076.jpg\"}', 'upc' => '024543992899', 'provider' => 'bestbuy'],\n ['name' => \"ANCIENT ALIENS SSN 6 VOL 2 (3PC) (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ancient-aliens-ssn-6-vol-2-3pc-dvd-3-disc/1535085.p?id=3315663&skuId=1535085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535085_sa.jpg\"}', 'upc' => '031398208877', 'provider' => 'bestbuy'],\n ['name' => \"Ancient Aliens Ssn 6 Vol 2 (Blu-ray Disc) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ancient-aliens-ssn-6-vol-2-blu-ray-disc-3-disc/1535094.p?id=3315676&skuId=1535094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535094.jpg\"}', 'upc' => '031398208891', 'provider' => 'bestbuy'],\n ['name' => \"Sennheiser - Gaming Headset with Microphone - Black\", 'description_short' => \"From our expanded online assortment; 7.1-channel surround sound; automatic microphone mute; DJ swivel hinge earcup; noise-canceling; 3D G4ME1 7.1 USB sound card\", 'description_long' => \"From our expanded online assortment; 7.1-channel surround sound; automatic microphone mute; DJ swivel hinge earcup; noise-canceling; 3D G4ME1 7.1 USB sound card\", 'price' => 179.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sennheiser-gaming-headset-with-microphone-black/1535132.p?id=1218267288129&skuId=1535132', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535132_sa.jpg\"}', 'upc' => '615104175235', 'provider' => 'bestbuy'],\n ['name' => \"RODE - USB Microphone - Black\", 'description_short' => \"RODE USB Microphone: Compatible with most mainstream recording apps on Windows and Mac computers and Apple iPad; for recording singing, musical performances and spoken applications; zero-latency 3.5mm jack; includes pop filter and tripod stand\", 'description_long' => \"RODE USB Microphone: Compatible with most mainstream recording apps on Windows and Mac computers and Apple iPad; for recording singing, musical performances and spoken applications; zero-latency 3.5mm jack; includes pop filter and tripod stand\", 'price' => 169.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-usb-microphone-black/1535163.p?id=1219502529925&skuId=1535163', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535163_sa.jpg\"}', 'upc' => '698813003969', 'provider' => 'bestbuy'],\n ['name' => \"Sennheiser - Over-the-Ear Headphones - Titan\", 'description_short' => \"From our expanded online assortment; circumaural, open design; E.A.R. design; ear pads and headband cushion; Duofol diaphragms; neodymium ferrous magnets\", 'description_long' => \"From our expanded online assortment; circumaural, open design; E.A.R. design; ear pads and headband cushion; Duofol diaphragms; neodymium ferrous magnets\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sennheiser-over-the-ear-headphones-titan/1535169.p?id=1218267759430&skuId=1535169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535169_sa.jpg\"}', 'upc' => '615104187672', 'provider' => 'bestbuy'],\n ['name' => \"RODE - Omnidirectional Lavalier Lapel Microphone - Black\", 'description_short' => \"RODE Omnidirectional Lavalier Lapel Microphone: For film, television, video, theater, house of worship and other close-microphone applications; omnidirectional polar pattern; JFET impedance converter; MiCon connector system; 4&#039; detachable cable\", 'description_long' => \"RODE Omnidirectional Lavalier Lapel Microphone: For film, television, video, theater, house of worship and other close-microphone applications; omnidirectional polar pattern; JFET impedance converter; MiCon connector system; 4&#039; detachable cable\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-omnidirectional-lavalier-lapel-microphone-black/1535172.p?id=1219502525323&skuId=1535172', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535172_sa.jpg\"}', 'upc' => '698813001569', 'provider' => 'bestbuy'],\n ['name' => \"RODE - Blimp Wind Shield and Rycote Lyre Suspension System - Gray\", 'description_short' => \"RODE Blimp Wind Shield and Rycote Lyre Suspension System: Compatible with RODE NTG1, NTG2 and NTG3 microphones and most 3rd-party shotgun microphones up to 12.75&quot; in length; thermoplastic material; ergonomic handle; heavy-duty Mogami cable\", 'description_long' => \"RODE Blimp Wind Shield and Rycote Lyre Suspension System: Compatible with RODE NTG1, NTG2 and NTG3 microphones and most 3rd-party shotgun microphones up to 12.75&quot; in length; thermoplastic material; ergonomic handle; heavy-duty Mogami cable\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-blimp-wind-shield-and-rycote-lyre-suspension-system-gray/1535181.p?id=1219502530562&skuId=1535181', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535181_sa.jpg\"}', 'upc' => '698813003631', 'provider' => 'bestbuy'],\n ['name' => \"RODE - Long Shotgun Blimp Extension Kit - Gray\", 'description_short' => \"RODE Long Shotgun Blimp Extension Kit: Designed for original RODE Blimp wind shield systems; enables the use of most long shotgun microphones with barrel lengths up to 23.6&quot;; includes blimp extension piece, 2 silicone bands, fur wind shield and brush\", 'description_long' => \"RODE Long Shotgun Blimp Extension Kit: Designed for original RODE Blimp wind shield systems; enables the use of most long shotgun microphones with barrel lengths up to 23.6&quot;; includes blimp extension piece, 2 silicone bands, fur wind shield and brush\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-long-shotgun-blimp-extension-kit-gray/1535205.p?id=1219502528242&skuId=1535205', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535205_sa.jpg\"}', 'upc' => '698813002771', 'provider' => 'bestbuy'],\n ['name' => \"RODE - DeadWombat Artificial Fur Wind Shield - Gray\", 'description_short' => \"RODE DeadWombat Artificial Fur Wind Shield: Compatible with RODE Blimp; minimizes wind noise when recording in high-wind conditions; artificial fur\", 'description_long' => \"RODE DeadWombat Artificial Fur Wind Shield: Compatible with RODE Blimp; minimizes wind noise when recording in high-wind conditions; artificial fur\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-deadwombat-artificial-fur-wind-shield-gray/1535214.p?id=1219502530497&skuId=1535214', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535214_sa.jpg\"}', 'upc' => '698813001309', 'provider' => 'bestbuy'],\n ['name' => \"RODE - PinMic Omnidirectional Condenser Lavalier Lapel Microphone - Black\", 'description_short' => \"RODE PinMic Omnidirectional Condenser Lavalier Lapel Microphone: For film, television, video, theater and house of worship applications; condenser capsule; cabled backplate; omnidirectional polar pattern; 4&#039; shielded cable\", 'description_long' => \"RODE PinMic Omnidirectional Condenser Lavalier Lapel Microphone: For film, television, video, theater and house of worship applications; condenser capsule; cabled backplate; omnidirectional polar pattern; 4&#039; shielded cable\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-pinmic-omnidirectional-condenser-lavalier-lapel-microphone-black/1535223.p?id=1219502529731&skuId=1535223', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535223_sa.jpg\"}', 'upc' => '698813001576', 'provider' => 'bestbuy'],\n ['name' => \"RODE - DeadCat GO Artificial Fur Wind Shield - Gray\", 'description_short' => \"RODE DeadCat GO Artificial Fur Wind Shield: Compatible with VideoMic GO; minimizes wind noise; designed for windy environments; artificial fur\", 'description_long' => \"RODE DeadCat GO Artificial Fur Wind Shield: Compatible with VideoMic GO; minimizes wind noise; designed for windy environments; artificial fur\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-deadcat-go-artificial-fur-wind-shield-gray/1535232.p?id=1219502527628&skuId=1535232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535232_sa.jpg\"}', 'upc' => '698813003921', 'provider' => 'bestbuy'],\n ['name' => \"RODE - CLIP1 MiCon Cable Management Clips (3-Pack) - Black\", 'description_short' => \"RODE CLIP1 MiCon Cable Management Clips (3-Pack): Compatible with MiCon cables; plastic material; 3-pack\", 'description_long' => \"RODE CLIP1 MiCon Cable Management Clips (3-Pack): Compatible with MiCon cables; plastic material; 3-pack\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-clip1-micon-cable-management-clips-3-pack-black/1535241.p?id=1219502528696&skuId=1535241', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535241_rc.jpg\"}', 'upc' => '698813001880', 'provider' => 'bestbuy'],\n ['name' => \"RODE - smartLav+ Omnidirectional Condenser Lavalier Microphone - Black\", 'description_short' => \"RODE smartLav+ Omnidirectional Condenser Lavalier Microphone: For film, television and broadcast recording with a compatible smartphone; condenser capsule; omnidirectional polar pattern; foam pop shield; TRSS jack; built-in cable management\", 'description_long' => \"RODE smartLav+ Omnidirectional Condenser Lavalier Microphone: For film, television and broadcast recording with a compatible smartphone; condenser capsule; omnidirectional polar pattern; foam pop shield; TRSS jack; built-in cable management\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-smartlav-omnidirectional-condenser-lavalier-microphone-black/1535269.p?id=1219502530055&skuId=1535269', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535269_sa.jpg\"}', 'upc' => '698813004058', 'provider' => 'bestbuy'],\n ['name' => \"Russound - A-BUS Local Source Input\", 'description_short' => \"From our expanded online assortment; IR emitter; auto sensing\", 'description_long' => \"From our expanded online assortment; IR emitter; auto sensing\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russound-a-bus-local-source-input/1535275.p?id=1218267290645&skuId=1535275', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535275_sa.jpg\"}', 'upc' => '612934527456', 'provider' => 'bestbuy'],\n ['name' => \"RODE - ZP2 Padded Zippered Pouch - Black\", 'description_short' => \"RODE ZP2 Padded Zippered Pouch: Compatible with RODE microphones; padded design; zipper\", 'description_long' => \"RODE ZP2 Padded Zippered Pouch: Compatible with RODE microphones; padded design; zipper\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-zp2-padded-zippered-pouch-black/1535278.p?id=1219502528953&skuId=1535278', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535278_sa.jpg\"}', 'upc' => '698813001958', 'provider' => 'bestbuy'],\n ['name' => \"RODE - ZP1 Padded Zippered Pouch - Black\", 'description_short' => \"RODE ZP1 Padded Zippered Pouch: Compatible with RODE microphones; padded design; zipper\", 'description_long' => \"RODE ZP1 Padded Zippered Pouch: Compatible with RODE microphones; padded design; zipper\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-zp1-padded-zippered-pouch-black/1535287.p?id=1219502531451&skuId=1535287', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535287_sa.jpg\"}', 'upc' => '698813001941', 'provider' => 'bestbuy'],\n ['name' => \"Very Necessary - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/very-necessary-cd/1535306.p?id=97784&skuId=1535306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535306_sa.jpg\"}', 'upc' => '042282839220', 'provider' => 'bestbuy'],\n ['name' => \"RODE - 10' VC1 Minijack/3.5mm Stereo Extension Cable - Black\", 'description_short' => \"RODE 10&#039; VC1 Minijack/3.5mm Stereo Extension Cable: Compatible with RODE VideoMic, Stereo VideoMic and VideoMic Pro; extends audio or headphone cables; gold-plated jack and socket\", 'description_long' => \"RODE 10&#039; VC1 Minijack/3.5mm Stereo Extension Cable: Compatible with RODE VideoMic, Stereo VideoMic and VideoMic Pro; extends audio or headphone cables; gold-plated jack and socket\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-10-vc1-minijack-3-5mm-stereo-extension-cable-black/1535319.p?id=1219502531275&skuId=1535319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535319_rc.jpg\"}', 'upc' => '698813000494', 'provider' => 'bestbuy'],\n ['name' => \"RODE - Mini Microphone Tripod Stand - Black\", 'description_short' => \"RODE Mini Microphone Tripod Stand: Designed for mounting most lightweight microphones that support 1/4&quot; mounting; mounts onto most surfaces; collapsible design; 360-degree rotation; vertical adjustments\", 'description_long' => \"RODE Mini Microphone Tripod Stand: Designed for mounting most lightweight microphones that support 1/4&quot; mounting; mounts onto most surfaces; collapsible design; 360-degree rotation; vertical adjustments\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-mini-microphone-tripod-stand-black/1535337.p?id=1219502527689&skuId=1535337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535337_rc.jpg\"}', 'upc' => '698813000623', 'provider' => 'bestbuy'],\n ['name' => \"RODE - LAV-CLIP Microphone Mounting Clips (3-Pack) - Black\", 'description_short' => \"RODE LAV-CLIP Microphone Mounting Clips (3-Pack): Compatible with RODE lavalier microphones; plastic material; ergonomic, discreet design\", 'description_long' => \"RODE LAV-CLIP Microphone Mounting Clips (3-Pack): Compatible with RODE lavalier microphones; plastic material; ergonomic, discreet design\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-lav-clip-microphone-mounting-clips-3-pack-black/1535346.p?id=1219502529861&skuId=1535346&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535346_rc.jpg\"}', 'upc' => '698813002023', 'provider' => 'bestbuy'],\n ['name' => \"RODE - Stereo VideoMic X Broadcast-Grade Stereo On-Camera Microphone - Black\", 'description_short' => \"RODE Stereo VideoMic X Broadcast-Grade Stereo On-Camera Microphone: Acoustically matched true-condenser capsules; resistant to RF interference; balanced XLR output; digital switching; metal construction; RF-shielded 3.5mm stereo output cable\", 'description_long' => \"RODE Stereo VideoMic X Broadcast-Grade Stereo On-Camera Microphone: Acoustically matched true-condenser capsules; resistant to RF interference; balanced XLR output; digital switching; metal construction; RF-shielded 3.5mm stereo output cable\", 'price' => 799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rode-stereo-videomic-x-broadcast-grade-stereo-on-camera-microphone-black/1535364.p?id=1219502529146&skuId=1535364', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535364_sa.jpg\"}', 'upc' => '698813004096', 'provider' => 'bestbuy'],\n ['name' => \"Digimon Fusion (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digimon-fusion-dvd-boxed-set/1535442.p?id=3321959&skuId=1535442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535442.jpg\"}', 'upc' => '883476146270', 'provider' => 'bestbuy'],\n ['name' => \"Rwby Volume 2 (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rwby-volume-2-blu-ray-disc-2-disc/1535451.p?id=3300830&skuId=1535451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535451.jpg\"}', 'upc' => '883476145693', 'provider' => 'bestbuy'],\n ['name' => \"My Little Pony Friendship Is Magic: Adventures Of (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-little-pony-friendship-is-magic-adventures-of-dvd/1535479.p?id=3322006&skuId=1535479&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535479', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535479.jpg\"}', 'upc' => '826663156485', 'provider' => 'bestbuy'],\n ['name' => \"The Aviators (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-aviators-dvd/1535488.p?id=3322037&skuId=1535488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535488.jpg\"}', 'upc' => '883476146287', 'provider' => 'bestbuy'],\n ['name' => \"Altar (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altar-dvd/1535497.p?id=3322193&skuId=1535497&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535497.jpg\"}', 'upc' => '883476146300', 'provider' => 'bestbuy'],\n ['name' => \"The Good Shepherd (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-good-shepherd-blu-ray-disc/1535504.p?id=1625239&skuId=1535504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535504_sa.jpg\"}', 'upc' => '025195053655', 'provider' => 'bestbuy'],\n ['name' => \"Museum of Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/museum-of-heart-cd/1535556.p?id=72855&skuId=1535556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535556.jpg\"}', 'upc' => '012928804929', 'provider' => 'bestbuy'],\n ['name' => \"Game Party: In Motion - Xbox 360\", 'description_short' => \"Let the games begin\", 'description_long' => \"Let the games begin\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/game-party-in-motion-xbox-360/1535584.p?id=1218267757830&skuId=1535584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535584_sa.jpg\"}', 'upc' => '883929144709', 'provider' => 'bestbuy'],\n ['name' => \"Rodeo Waltz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rodeo-waltz-cd/1535636.p?id=101004&skuId=1535636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535636.jpg\"}', 'upc' => '015891381923', 'provider' => 'bestbuy'],\n ['name' => \"Going Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/going-home-cd/1535663.p?id=68037&skuId=1535663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535663_sa.jpg\"}', 'upc' => '063757709527', 'provider' => 'bestbuy'],\n ['name' => \"Echoes from Africa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/echoes-from-africa-cd/1535672.p?id=3382844&skuId=1535672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535672_sa.jpg\"}', 'upc' => '063757304722', 'provider' => 'bestbuy'],\n ['name' => \"Reservation of Education - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reservation-of-education-cd/1535690.p?id=96831&skuId=1535690&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535690', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535690_sa.jpg\"}', 'upc' => '746022600421', 'provider' => 'bestbuy'],\n ['name' => \"Electric Warrior: The Sound of Indian America - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/electric-warrior-the-sound-of-indian-america-cd/1535707.p?id=91273&skuId=1535707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535707_sa.jpg\"}', 'upc' => '746022600322', 'provider' => 'bestbuy'],\n ['name' => \"Live Recordings 1956-1969 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-recordings-1956-1969-cd/1535949.p?id=92109&skuId=1535949&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535949', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535949_sa.jpg\"}', 'upc' => '093074006320', 'provider' => 'bestbuy'],\n ['name' => \"Live Duet Recordings 1963-1980 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-duet-recordings-1963-1980-cd/1535958.p?id=92106&skuId=1535958&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1535958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1535\\/1535958.jpg\"}', 'upc' => '093074006429', 'provider' => 'bestbuy'],\n ['name' => \"The Interview (Blu-ray)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/the-interview-blu-ray/1536002.p?id=3338683&skuId=1536002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536002_sa.jpg\"}', 'upc' => '043396439887', 'provider' => 'bestbuy'],\n ['name' => \"The Interview (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-interview-dvd/1536011.p?id=3338683&skuId=1536011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536011_sa.jpg\"}', 'upc' => '043396439917', 'provider' => 'bestbuy'],\n ['name' => \"Bathtub Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bathtub-blues-cd/1536038.p?id=75919&skuId=1536038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536038_sa.jpg\"}', 'upc' => '033651004226', 'provider' => 'bestbuy'],\n ['name' => \"Midnight at Cabell Hall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-at-cabell-hall-cd/1536083.p?id=82969&skuId=1536083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536083.jpg\"}', 'upc' => '033651005520', 'provider' => 'bestbuy'],\n ['name' => \"Going to the West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/going-to-the-west-cd/1536118.p?id=100004&skuId=1536118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536118.jpg\"}', 'upc' => '033651005629', 'provider' => 'bestbuy'],\n ['name' => \"Tarab - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tarab-cd/1536181.p?id=63521&skuId=1536181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536181_sa.jpg\"}', 'upc' => '063757708322', 'provider' => 'bestbuy'],\n ['name' => \"Another's Point of View - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anothers-point-of-view-cd/1536234.p?id=63624&skuId=1536234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536234.jpg\"}', 'upc' => '063757800422', 'provider' => 'bestbuy'],\n ['name' => \"Windows Of Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/windows-of-time-cd/1536387.p?id=178960&skuId=1536387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536387_sa.jpg\"}', 'upc' => '053993337127', 'provider' => 'bestbuy'],\n ['name' => \"Music from the New York Stage 1890-... [Box] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-from-the-new-york-stage-1890-box-cd-various/1536396.p?id=1829016&skuId=1536396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536396_sa.jpg\"}', 'upc' => '727031905226', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Antenna Adapter for Most 1988-2006 GM Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with most 1988-2006 GM vehicles; copper, polypropylene and steel materials\", 'description_long' => \"From our expanded online assortment; compatible with most 1988-2006 GM vehicles; copper, polypropylene and steel materials\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-adapter-for-most-1988-2006-gm-vehicles-black/1536485.p?id=1110265249348&skuId=1536485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536485_sa.jpg\"}', 'upc' => '086429007042', 'provider' => 'bestbuy'],\n ['name' => \"4-Track Demos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-track-demos-cd/1536500.p?id=95016&skuId=1536500&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536500', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536500.jpg\"}', 'upc' => '731451845024', 'provider' => 'bestbuy'],\n ['name' => \"Music Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-town-cd/1536537.p?id=85999&skuId=1536537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536537_sa.jpg\"}', 'upc' => '015891103921', 'provider' => 'bestbuy'],\n ['name' => \"Broken Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broken-moon-cd/1536699.p?id=89881&skuId=1536699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536699_sa.jpg\"}', 'upc' => '731451830921', 'provider' => 'bestbuy'],\n ['name' => \"Heart To Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-to-heart-cd/1536804.p?id=2387365&skuId=1536804&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536804', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536804_sa.jpg\"}', 'upc' => '042282628329', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Cole Porter Songbooks [Box] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-cole-porter-songbooks-box-cd-various/1536948.p?id=95220&skuId=1536948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536948_sa.jpg\"}', 'upc' => '731451982828', 'provider' => 'bestbuy'],\n ['name' => \"Count Basie Swings, Joe Williams Sings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/count-basie-swings-joe-williams-sings-cd/1536966.p?id=64065&skuId=1536966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536966.jpg\"}', 'upc' => '731451985225', 'provider' => 'bestbuy'],\n ['name' => \"Trio '65 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trio-65-cd/1536984.p?id=66135&skuId=1536984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1536984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1536\\/1536984.jpg\"}', 'upc' => '731451980824', 'provider' => 'bestbuy'],\n ['name' => \"King of the Tenors - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-of-the-tenors-cd/1537091.p?id=71983&skuId=1537091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1537091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1537\\/1537091.jpg\"}', 'upc' => '731451980626', 'provider' => 'bestbuy'],\n ['name' => \"Get in Where You Fit In [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-in-where-you-fit-in-pa-cd/1537411.p?id=101987&skuId=1537411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1537411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1537\\/1537411_sa.jpg\"}', 'upc' => '012414152626', 'provider' => 'bestbuy'],\n ['name' => \"Sleeper - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sleeper-cd/1537947.p?id=83777&skuId=1537947&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1537947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1537\\/1537947_sa.jpg\"}', 'upc' => '722975007920', 'provider' => 'bestbuy'],\n ['name' => \"Dodgin' the Dirt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dodgin-the-dirt-cd/1538125.p?id=103811&skuId=1538125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538125_sa.jpg\"}', 'upc' => '026245201521', 'provider' => 'bestbuy'],\n ['name' => \"StarTech.com - 2-Port PCI Low-Profile RS-232 Serial Adapter Card with 16550 UART\", 'description_short' => \"PCI interface; up to 115 Kbps data transfer rates; adds 2 RS-232 serial ports; 16-byte FIFO buffer; IRQ sharing\", 'description_long' => \"PCI interface; up to 115 Kbps data transfer rates; adds 2 RS-232 serial ports; 16-byte FIFO buffer; IRQ sharing\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/startech-com-2-port-pci-low-profile-rs-232-serial-adapter-card-with-16550-uart/1538166.p?id=1218271246584&skuId=1538166', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538166_sa.jpg\"}', 'upc' => '065030788748', 'provider' => 'bestbuy'],\n ['name' => \"Time Capsule - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-capsule-cd/1538198.p?id=155498&skuId=1538198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538198_sa.jpg\"}', 'upc' => '026245106529', 'provider' => 'bestbuy'],\n ['name' => \"Insufficient Therapy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/insufficient-therapy-cd/1538205.p?id=1985242&skuId=1538205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538205_sa.jpg\"}', 'upc' => '026245106628', 'provider' => 'bestbuy'],\n ['name' => \"Without A Warning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/without-a-warning-cd/1538214.p?id=82572&skuId=1538214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538214.jpg\"}', 'upc' => '049891002526', 'provider' => 'bestbuy'],\n ['name' => \"Dance All Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-all-night-cd/1538223.p?id=76957&skuId=1538223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538223.jpg\"}', 'upc' => '019148500723', 'provider' => 'bestbuy'],\n ['name' => \"Sideways in Paradise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sideways-in-paradise-cd/1538232.p?id=101524&skuId=1538232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538232.jpg\"}', 'upc' => '019148500624', 'provider' => 'bestbuy'],\n ['name' => \"Blonde & Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blonde-blue-cd/1538241.p?id=2542455&skuId=1538241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538241.jpg\"}', 'upc' => '011661312722', 'provider' => 'bestbuy'],\n ['name' => \"My Beautiful Dark... [CD & DVD] [PA] [Digipak] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-beautiful-dark-cd-dvd-pa-digipak-cd-dvd-deluxe-edition/1538272.p?id=2164209&skuId=1538272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538272_sa.jpg\"}', 'upc' => '602527523736', 'provider' => 'bestbuy'],\n ['name' => \"Plays and Sings Bluegrass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-and-sings-bluegrass-cd/1538278.p?id=96594&skuId=1538278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538278_sa.jpg\"}', 'upc' => '011661025325', 'provider' => 'bestbuy'],\n ['name' => \"Driving Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/driving-home-cd/1538296.p?id=103848&skuId=1538296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538296_sa.jpg\"}', 'upc' => '011671115221', 'provider' => 'bestbuy'],\n ['name' => \"Bare Bones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bare-bones-cd/1538324.p?id=2163580&skuId=1538324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538324.jpg\"}', 'upc' => '602527553146', 'provider' => 'bestbuy'],\n ['name' => \"Skyline [Original Score] - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skyline-original-score-original-soundtrack-cd/1538388.p?id=2164512&skuId=1538388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538388_sa.jpg\"}', 'upc' => '030206705720', 'provider' => 'bestbuy'],\n ['name' => \"The Kate Smith Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-kate-smith-christmas-album-cd/1538465.p?id=99283&skuId=1538465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538465_sa.jpg\"}', 'upc' => '078635360721', 'provider' => 'bestbuy'],\n ['name' => \"The Screamin' Cheetah Wheelies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-screamin-cheetah-wheelies-cd/1538517.p?id=98141&skuId=1538517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1538517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1538\\/1538517.jpg\"}', 'upc' => '075678250729', 'provider' => 'bestbuy'],\n ['name' => \"Night Visions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-visions-cd/1539004.p?id=2739939&skuId=1539004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '602537471515', 'provider' => 'bestbuy'],\n ['name' => \"LG - 7.3 Cu. Ft. 14-Cycle Electric Dryer with Steam - White\", 'description_short' => \"Dial-A-Cycle and touch-button controls; 14 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'description_long' => \"Dial-A-Cycle and touch-button controls; 14 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'price' => 999.99, 'sale_price' => 749.99, 'url' => 'http://www.bestbuy.com/site/lg-7-3-cu-ft-14-cycle-electric-dryer-with-steam-white/1539013.p?id=1219054923732&skuId=1539013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539013_sa.jpg\"}', 'upc' => '048231013543', 'provider' => 'bestbuy'],\n ['name' => \"LG - 5.0 Cu. Ft. 14-Cycle High-Efficiency Steam Top-Loading Washer - White\", 'description_short' => \"Rear-panel intelligent electronic controls; 14 cycles; TurboWash technology; direct-drive motor; 5 temperature settings; LoDecibel noise-reduction technology\", 'description_long' => \"Rear-panel intelligent electronic controls; 14 cycles; TurboWash technology; direct-drive motor; 5 temperature settings; LoDecibel noise-reduction technology\", 'price' => 1099.99, 'sale_price' => 899.99, 'url' => 'http://www.bestbuy.com/site/lg-5-0-cu-ft-14-cycle-high-efficiency-steam-top-loading-washer-white/1539022.p?id=1219054919983&skuId=1539022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539022_sa.jpg\"}', 'upc' => '048231014144', 'provider' => 'bestbuy'],\n ['name' => \"Perreologia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/perreologia-cd/1539031.p?id=2166486&skuId=1539031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539031_sa.jpg\"}', 'upc' => '886977699221', 'provider' => 'bestbuy'],\n ['name' => \"Virtuoso No. 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virtuoso-no-4-cd/1539053.p?id=69823&skuId=1539053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539053.jpg\"}', 'upc' => '025218410229', 'provider' => 'bestbuy'],\n ['name' => \"Mis Favoritas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mis-favoritas-cd/1539059.p?id=2166487&skuId=1539059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539059.jpg\"}', 'upc' => '886978128126', 'provider' => 'bestbuy'],\n ['name' => \"Animal + Cannibal [Deluxe Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/animal-cannibal-deluxe-edition-cd/1539068.p?id=2162890&skuId=1539068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539068_sa.jpg\"}', 'upc' => '886978055927', 'provider' => 'bestbuy'],\n ['name' => \"Just Charlie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-charlie-cd/1539086.p?id=2166488&skuId=1539086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539086_sa.jpg\"}', 'upc' => '886978169624', 'provider' => 'bestbuy'],\n ['name' => \"Beyoncé: I Am... World Tour - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beyonce-i-am-world-tour-blu-ray-disc/1539095.p?id=2164204&skuId=1539095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539095_sa.jpg\"}', 'upc' => '886978081896', 'provider' => 'bestbuy'],\n ['name' => \"I Am...World Tour [CD & DVD] (CD) DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-am-world-tour-cd-dvd-cd-dvd/1539138.p?id=2164280&skuId=1539138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539138_sa.jpg\"}', 'upc' => '886978081599', 'provider' => 'bestbuy'],\n ['name' => \"Black Swan - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-swan-cd-original-soundtrack/1539147.p?id=2162552&skuId=1539147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539147_sa.jpg\"}', 'upc' => '886978135629', 'provider' => 'bestbuy'],\n ['name' => \"Farmer's Daughter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/farmers-daughter-cd/1539156.p?id=2164548&skuId=1539156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539156_sa.jpg\"}', 'upc' => '886977480928', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Immortality: The Life and Times of Twista (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-immortality-the-life-and-times-of-twista-dvd/1539208.p?id=2168219&skuId=1539208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539208_sa.jpg\"}', 'upc' => '858773002000', 'provider' => 'bestbuy'],\n ['name' => \"Duets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duets-cd/1539375.p?id=98845&skuId=1539375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539375_sa.jpg\"}', 'upc' => '077778961123', 'provider' => 'bestbuy'],\n ['name' => \"Borderlands: From Conjunto to Chicken Scratch - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/borderlands-from-conjunto-to-chicken-scratch-cd-various/1539393.p?id=75583&skuId=1539393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539393_sa.jpg\"}', 'upc' => '093074041826', 'provider' => 'bestbuy'],\n ['name' => \"Bunggridj-bunggridj: Wangga Songs, Northern... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bunggridj-bunggridj-wangga-songs-northern-cd/1539437.p?id=76314&skuId=1539437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539437_sa.jpg\"}', 'upc' => '093074043028', 'provider' => 'bestbuy'],\n ['name' => \"Croonin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/croonin-cd/1539632.p?id=92656&skuId=1539632&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539632', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539632_sa.jpg\"}', 'upc' => '724382701224', 'provider' => 'bestbuy'],\n ['name' => \"At Worst...The Best of Boy George and Culture... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-worst-the-best-of-boy-george-and-culture-cd/1539650.p?id=79432&skuId=1539650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539650_sa.jpg\"}', 'upc' => '724383901425', 'provider' => 'bestbuy'],\n ['name' => \"All Delighted People [LP] [EP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-delighted-people-lp-ep-vinyl/1539741.p?id=2168729&skuId=1539741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539741_sa.jpg\"}', 'upc' => '656605607511', 'provider' => 'bestbuy'],\n ['name' => \"4x4=12 [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4x4-12-digipak-cd/1539769.p?id=2168726&skuId=1539769&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539769_sa.jpg\"}', 'upc' => '617465251825', 'provider' => 'bestbuy'],\n ['name' => \"All Delighted People [EP] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-delighted-people-ep-digipak-cd/1539778.p?id=2168728&skuId=1539778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539778_sa.jpg\"}', 'upc' => '656605607528', 'provider' => 'bestbuy'],\n ['name' => \"A Tribute to the Music of Bob Wills & the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-tribute-to-the-music-of-bob-wills-the-cd/1539794.p?id=1501502&skuId=1539794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539794.jpg\"}', 'upc' => '077778147022', 'provider' => 'bestbuy'],\n ['name' => \"Hooked Up Classics [LP] [12/7] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hooked-up-classics-lp-12-7-vinyl/1539805.p?id=2168725&skuId=1539805&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539805', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539805_sa.jpg\"}', 'upc' => '780661128014', 'provider' => 'bestbuy'],\n ['name' => \"Hooked Up Classics [12/7] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hooked-up-classics-12-7-cd/1539814.p?id=2168727&skuId=1539814&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539814', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539814_sa.jpg\"}', 'upc' => '780661128021', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Solomon Burke [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-solomon-burke-lp-vinyl/1539823.p?id=2168731&skuId=1539823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539823_sa.jpg\"}', 'upc' => '829421810926', 'provider' => 'bestbuy'],\n ['name' => \"O Moon, Queen of Night On Earth [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/o-moon-queen-of-night-on-earth-lp-vinyl/1539832.p?id=2162490&skuId=1539832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539832.jpg\"}', 'upc' => '093624961505', 'provider' => 'bestbuy'],\n ['name' => \"Heedless [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heedless-digipak-cd/1539841.p?id=2170271&skuId=1539841&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539841', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539841_sa.jpg\"}', 'upc' => '184923100686', 'provider' => 'bestbuy'],\n ['name' => \"Blue Light 'Til Dawn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-light-til-dawn-cd/1539856.p?id=72129&skuId=1539856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539856_sa.jpg\"}', 'upc' => '077778135722', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Collector'S Series 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-collectors-series-1-cd-various/1539892.p?id=100887&skuId=1539892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539892_sa.jpg\"}', 'upc' => '715187765023', 'provider' => 'bestbuy'],\n ['name' => \"Drama y Luz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drama-y-luz-cd/1539896.p?id=2193787&skuId=1539896&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539896', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539896_sa.jpg\"}', 'upc' => '825646789795', 'provider' => 'bestbuy'],\n ['name' => \"Live in Vancouver 1970 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-vancouver-1970-cd/1539905.p?id=2163571&skuId=1539905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539905_sa.jpg\"}', 'upc' => '081227978686', 'provider' => 'bestbuy'],\n ['name' => \"The Final Recordings of His Greatest Hits, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-final-recordings-of-his-greatest-hits-vol-1-cd/1539918.p?id=102615&skuId=1539918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539918_sa.jpg\"}', 'upc' => '715187764125', 'provider' => 'bestbuy'],\n ['name' => \"The Final Recordings of His Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-final-recordings-of-his-greatest-hits-vol-2-cd/1539936.p?id=102616&skuId=1539936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539936_sa.jpg\"}', 'upc' => '715187764224', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Brass Construction: Movin' & Changin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-brass-construction-movin-changin-cd/1539981.p?id=75747&skuId=1539981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1539981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1539\\/1539981_sa.jpg\"}', 'upc' => '724382759126', 'provider' => 'bestbuy'],\n ['name' => \"LG - 5.0 Cu. Ft. 14-Cycle High-Efficiency Steam Top-Loading Washer - Graphite Steel\", 'description_short' => \"Rear-panel intelligent electronic controls; 14 cycles; TurboWash technology; direct-drive motor; 5 temperature settings; LoDecibel noise-reduction technology\", 'description_long' => \"Rear-panel intelligent electronic controls; 14 cycles; TurboWash technology; direct-drive motor; 5 temperature settings; LoDecibel noise-reduction technology\", 'price' => 1199.99, 'sale_price' => 949.99, 'url' => 'http://www.bestbuy.com/site/lg-5-0-cu-ft-14-cycle-high-efficiency-steam-top-loading-washer-graphite-steel/1540212.p?id=1219054918696&skuId=1540212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540212_sa.jpg\"}', 'upc' => '048231013505', 'provider' => 'bestbuy'],\n ['name' => \"LG - 7.3 Cu. Ft. 12-Cycle Steam Gas Dryer - Graphite Steel\", 'description_short' => \"Front-panel touch-button controls; 12 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'description_long' => \"Front-panel touch-button controls; 12 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'price' => 1099.99, 'sale_price' => 989.99, 'url' => 'http://www.bestbuy.com/site/lg-7-3-cu-ft-12-cycle-steam-gas-dryer-graphite-steel/1540249.p?id=1219054922633&skuId=1540249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540249_sa.jpg\"}', 'upc' => '048231013659', 'provider' => 'bestbuy'],\n ['name' => \"LG - 4.9 Cu. Ft. 12-Cycle Mega-Capacity High-Efficiency Top-Loading Washer - White\", 'description_short' => \"ENERGY STAR Certified\nFront-panel touch-button controls; 12 cycles; TurboWash and WaveForce technologies; direct-drive motor; 5 temperature settings; LoDecibel noise-reduction technology\", 'description_long' => \"ENERGY STAR Certified\nFront-panel touch-button controls; 12 cycles; TurboWash and WaveForce technologies; direct-drive motor; 5 temperature settings; LoDecibel noise-reduction technology\", 'price' => 899.99, 'sale_price' => 809.99, 'url' => 'http://www.bestbuy.com/site/lg-4-9-cu-ft-12-cycle-mega-capacity-high-efficiency-top-loading-washer-white/1540258.p?id=1219054919721&skuId=1540258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540258_sa.jpg\"}', 'upc' => '048231013666', 'provider' => 'bestbuy'],\n ['name' => \"LG - 7.3 Cu. Ft. 12-Cycle Ultralarge-Capacity Steam Electric Dryer - White\", 'description_short' => \"Touch-button controls; 12 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'description_long' => \"Touch-button controls; 12 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'price' => 899.99, 'sale_price' => 809.99, 'url' => 'http://www.bestbuy.com/site/lg-7-3-cu-ft-12-cycle-ultralarge-capacity-steam-electric-dryer-white/1540267.p?id=1219054924557&skuId=1540267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540267_sa.jpg\"}', 'upc' => '048231013673', 'provider' => 'bestbuy'],\n ['name' => \"LG - 7.3 Cu. Ft. 12-Cycle Electric Dryer with Steam - Graphite Steel\", 'description_short' => \"Touch-button controls; 12 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'description_long' => \"Touch-button controls; 12 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'price' => 999.99, 'sale_price' => 899.99, 'url' => 'http://www.bestbuy.com/site/lg-7-3-cu-ft-12-cycle-electric-dryer-with-steam-graphite-steel/1540285.p?id=1219054922169&skuId=1540285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540285_sa.jpg\"}', 'upc' => '048231013642', 'provider' => 'bestbuy'],\n ['name' => \"LG - 4.9 Cu. Ft. 12-Cycle High-Efficiency Top-Loading Washer - Graphite Steel\", 'description_short' => \"Front-panel touch-button controls; 12 cycles; TurboWash and WaveForce technologies; direct-drive motor; 5 temperature settings; LoDecibel noise-reduction technology\", 'description_long' => \"Front-panel touch-button controls; 12 cycles; TurboWash and WaveForce technologies; direct-drive motor; 5 temperature settings; LoDecibel noise-reduction technology\", 'price' => 999.99, 'sale_price' => 899.99, 'url' => 'http://www.bestbuy.com/site/lg-4-9-cu-ft-12-cycle-high-efficiency-top-loading-washer-graphite-steel/1540319.p?id=1219054921531&skuId=1540319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540319_sa.jpg\"}', 'upc' => '048231013635', 'provider' => 'bestbuy'],\n ['name' => \"LG - 7.3 Cu. Ft. 14-Cycle Steam Gas Dryer - White\", 'description_short' => \"Dial-A-Cycle and touch-button controls; 14 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'description_long' => \"Dial-A-Cycle and touch-button controls; 14 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'price' => 1099.99, 'sale_price' => 849.99, 'url' => 'http://www.bestbuy.com/site/lg-7-3-cu-ft-14-cycle-steam-gas-dryer-white/1540337.p?id=1219054923529&skuId=1540337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540337_sa.jpg\"}', 'upc' => '048231013550', 'provider' => 'bestbuy'],\n ['name' => \"Xmas In Early America - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/xmas-in-early-america-cd-various/1540345.p?id=2068262&skuId=1540345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540345_sa.jpg\"}', 'upc' => '723385569329', 'provider' => 'bestbuy'],\n ['name' => \"LG - 7.3 Cu. Ft. 14-Cycle Steam Electric Dryer - Graphite Steel\", 'description_short' => \"Dial-A-Cycle and touch-button controls; 14 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'description_long' => \"Dial-A-Cycle and touch-button controls; 14 cycles; 5 temperature levels; NeveRust stainless-steel drum; LoDecibel noise-reduction technology\", 'price' => 1099.99, 'sale_price' => 989.99, 'url' => 'http://www.bestbuy.com/site/lg-7-3-cu-ft-14-cycle-steam-electric-dryer-graphite-steel/1540346.p?id=1219054918689&skuId=1540346&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540346_sa.jpg\"}', 'upc' => '048231013512', 'provider' => 'bestbuy'],\n ['name' => \"Pushin' Against a Stone [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pushin-against-a-stone-digipak-cd/1540355.p?id=2724418&skuId=1540355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540355_sa.jpg\"}', 'upc' => '888072344662', 'provider' => 'bestbuy'],\n ['name' => \"Ocean Avenue Acoustic [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ocean-avenue-acoustic-digipak-cd/1540382.p?id=2717177&skuId=1540382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540382_sa.jpg\"}', 'upc' => '790692077526', 'provider' => 'bestbuy'],\n ['name' => \"House of David: The David \\\"Fathead\\\" Newman... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-of-david-the-david-fathead-newman-cd/1540470.p?id=3326203&skuId=1540470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540470_sa.jpg\"}', 'upc' => '081227145224', 'provider' => 'bestbuy'],\n ['name' => \"The Randy Rhoads Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-randy-rhoads-years-cd/1540595.p?id=95754&skuId=1540595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540595_sa.jpg\"}', 'upc' => '081227144524', 'provider' => 'bestbuy'],\n ['name' => \"Guitar Tribute to the Beatles: Come Together - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-tribute-to-the-beatles-come-together-cd-various/1540764.p?id=74220&skuId=1540764&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1540764', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1540\\/1540764_sa.jpg\"}', 'upc' => '750507600424', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Earbud Headphones - Red\", 'description_short' => \"AUDIO-TECHNICA Earbud Headphones: 8mm dynamic drivers; sound isolating; microphone and 3-button controls; silicone ear tips\", 'description_long' => \"AUDIO-TECHNICA Earbud Headphones: 8mm dynamic drivers; sound isolating; microphone and 3-button controls; silicone ear tips\", 'price' => 39.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-earbud-headphones-red/1541003.p?id=1219502525329&skuId=1541003', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1541003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1541\\/1541003_sa.jpg\"}', 'upc' => '042005179978', 'provider' => 'bestbuy'],\n ['name' => \"Freeflight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freeflight-cd/1541442.p?id=67799&skuId=1541442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1541442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1541\\/1541442.jpg\"}', 'upc' => '011105013321', 'provider' => 'bestbuy'],\n ['name' => \"An Anthology of Big Band Swing (1930-1955) - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-anthology-of-big-band-swing-1930-1955-cd-various/1541479.p?id=64238&skuId=1541479&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1541479', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1541\\/1541479.jpg\"}', 'upc' => '011105062923', 'provider' => 'bestbuy'],\n ['name' => \"Haier - 10,000 BTU Window Air Conditioner - White\", 'description_short' => \"ENERGY STAR Certified\n351-450 sq. ft. cooling capacity; 8.5 amps; electronic controls; MagnaClik remote with Braille text; 3 cool settings, plus Auto Cool; 3 fan speeds; standard filter\", 'description_long' => \"ENERGY STAR Certified\n351-450 sq. ft. cooling capacity; 8.5 amps; electronic controls; MagnaClik remote with Braille text; 3 cool settings, plus Auto Cool; 3 fan speeds; standard filter\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/haier-10000-btu-window-air-conditioner-white/1541557.p?id=1219054924365&skuId=1541557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1541557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1541\\/1541557_500x500_sa.jpg\"}', 'upc' => '688057403144', 'provider' => 'bestbuy'],\n ['name' => \"I'm Ready - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-ready-cd/1541558.p?id=76680&skuId=1541558&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1541558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1541\\/1541558_sa.jpg\"}', 'upc' => '093624538820', 'provider' => 'bestbuy'],\n ['name' => \"The MCA Years: A Retrospective - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mca-years-a-retrospective-cd/1541674.p?id=84280&skuId=1541674&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1541674', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1541\\/1541674_sa.jpg\"}', 'upc' => '008811091422', 'provider' => 'bestbuy'],\n ['name' => \"Screenplaying - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/screenplaying-cd/1541772.p?id=88303&skuId=1541772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1541772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1541\\/1541772_sa.jpg\"}', 'upc' => '093624545729', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - Black\", 'description_short' => \"4 total coil elements; 1500-2600W of power; dual-element bake; built-in storage drawer\", 'description_long' => \"4 total coil elements; 1500-2600W of power; dual-element bake; built-in storage drawer\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-black/1541963.p?id=1219054923467&skuId=1541963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1541963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1541\\/1541963_sa.jpg\"}', 'upc' => '084691256465', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - White-on-White\", 'description_short' => \"4 total coil elements; 1500-2600W of power; dual-element bake; built-in storage drawer\", 'description_long' => \"4 total coil elements; 1500-2600W of power; dual-element bake; built-in storage drawer\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-white-on-white/1541981.p?id=1219054923013&skuId=1541981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1541981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1541\\/1541981_sa.jpg\"}', 'upc' => '084691256472', 'provider' => 'bestbuy'],\n ['name' => \"SMS Audio - BioSport Street by 50 Cent Earbud Headphones - Blue\", 'description_short' => \"Heart-rate tracking; sound isolating; 12mm drivers; 3.5mm gold-plated audio jack; sweat- and water-resistant; 32 ohms impedance; compatible with major fitness apps\", 'description_long' => \"Heart-rate tracking; sound isolating; 12mm drivers; 3.5mm gold-plated audio jack; sweat- and water-resistant; 32 ohms impedance; compatible with major fitness apps\", 'price' => 149.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sms-audio-biosport-street-by-50-cent-earbud-headphones-blue/1542002.p?id=1219502847442&skuId=1542002', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542002_sa.jpg\"}', 'upc' => '812184012690', 'provider' => 'bestbuy'],\n ['name' => \"SMS Audio - BioSport Street by 50 Cent Earbud Headphones - Black\", 'description_short' => \"Heart-rate tracking; sound isolating; 12mm drivers; 3.5mm gold-plated audio jack; sweat- and water-resistant; 32 ohms impedance; compatible with major fitness apps\", 'description_long' => \"Heart-rate tracking; sound isolating; 12mm drivers; 3.5mm gold-plated audio jack; sweat- and water-resistant; 32 ohms impedance; compatible with major fitness apps\", 'price' => 149.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sms-audio-biosport-street-by-50-cent-earbud-headphones-black/1542011.p?id=1219502847443&skuId=1542011', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542011_sa.jpg\"}', 'upc' => '812184012706', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - Bisque\", 'description_short' => \"Two 6&quot;, 1500W and two 8&quot;, 2600W burners; 4-pass, 2585W bake and 6-pass, 3410W broil elements; removable, full-width storage drawer\", 'description_long' => \"Two 6&quot;, 1500W and two 8&quot;, 2600W burners; 4-pass, 2585W bake and 6-pass, 3410W broil elements; removable, full-width storage drawer\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-bisque/1542025.p?id=1219054924429&skuId=1542025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542025_sa.jpg\"}', 'upc' => '084691256427', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - White-on-White\", 'description_short' => \"Up-front controls; two 6&quot;, 1500W and two 8&quot;, 2600W burners; 4-pass, 2585W bake and 6-pass, 3410W broil elements; removable, full-width storage drawer\", 'description_long' => \"Up-front controls; two 6&quot;, 1500W and two 8&quot;, 2600W burners; 4-pass, 2585W bake and 6-pass, 3410W broil elements; removable, full-width storage drawer\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-white-on-white/1542061.p?id=1219054921337&skuId=1542061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542061_sa.jpg\"}', 'upc' => '084691256496', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - White-on-White\", 'description_short' => \"4 total coil elements; 1500W-2600W of power; dual-element bake; built-in storage drawer\", 'description_long' => \"4 total coil elements; 1500W-2600W of power; dual-element bake; built-in storage drawer\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-white-on-white/1542122.p?id=1219054920499&skuId=1542122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542122_sa.jpg\"}', 'upc' => '084691256410', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - Black\", 'description_short' => \"4 total coil elements; 1500W-2600W of power; dual-element bake; built-in storage drawer\", 'description_long' => \"4 total coil elements; 1500W-2600W of power; dual-element bake; built-in storage drawer\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-black/1542177.p?id=1219054923078&skuId=1542177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542177_sa.jpg\"}', 'upc' => '084691256403', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - Silver\", 'description_short' => \"Two 6&quot;, 1500W and two 8&quot;, 2600W burners; 4-pass, 2585W bake and 6-pass, 3410W broil elements; removable, full-width storage drawer\", 'description_long' => \"Two 6&quot;, 1500W and two 8&quot;, 2600W burners; 4-pass, 2585W bake and 6-pass, 3410W broil elements; removable, full-width storage drawer\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-silver/1542195.p?id=1219054918695&skuId=1542195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542195_sa.jpg\"}', 'upc' => '084691256434', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - Stainless-Steel/Black\", 'description_short' => \"Digital temperature display and electronic touchpads; 4 total coil elements; 1500-2600W of power; Sabbath mode; dual-element bake; built-in storage drawer\", 'description_long' => \"Digital temperature display and electronic touchpads; 4 total coil elements; 1500-2600W of power; Sabbath mode; dual-element bake; built-in storage drawer\", 'price' => 649.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-stainless-steel-black/1542229.p?id=1219054923592&skuId=1542229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542229_sa.jpg\"}', 'upc' => '084691257776', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - Silver\", 'description_short' => \"Digital temperature display and electronic touchpads; 4 total coil elements; 1500-2600W of power; dual-element bake; Sabbath mode; built-in storage drawer\", 'description_long' => \"Digital temperature display and electronic touchpads; 4 total coil elements; 1500-2600W of power; dual-element bake; Sabbath mode; built-in storage drawer\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-silver/1542238.p?id=1219054921525&skuId=1542238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542238_sa.jpg\"}', 'upc' => '084691141914', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - Bisque\", 'description_short' => \"Up-front controls; two 6&quot;, 1500W and two 8&quot;, 2600W burners; 4-pass, 2585W bake and 6-pass, 3410W broil elements; removable, full-width storage drawer\", 'description_long' => \"Up-front controls; two 6&quot;, 1500W and two 8&quot;, 2600W burners; 4-pass, 2585W bake and 6-pass, 3410W broil elements; removable, full-width storage drawer\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-bisque/1542247.p?id=1219054922692&skuId=1542247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542247_sa.jpg\"}', 'upc' => '084691256502', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Self-Cleaning Freestanding Electric Range - Black\", 'description_short' => \"Up-front controls; two 6&quot;, 1500W and two 8&quot;, 2600W burners; 4-pass bake and 6-pass broil elements; removable, full-width storage drawer\", 'description_long' => \"Up-front controls; two 6&quot;, 1500W and two 8&quot;, 2600W burners; 4-pass bake and 6-pass broil elements; removable, full-width storage drawer\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-self-cleaning-freestanding-electric-range-black/1542256.p?id=1219054923275&skuId=1542256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542256_sa.jpg\"}', 'upc' => '084691256489', 'provider' => 'bestbuy'],\n ['name' => \"GE - 30\\\" Freestanding Electric Range - Black\", 'description_short' => \"Digital temperature display and electronic touchpads; 4 total coil elements; 1500-2600W of power; Sabbath mode; dual-element bake; built-in storage drawer\", 'description_long' => \"Digital temperature display and electronic touchpads; 4 total coil elements; 1500-2600W of power; Sabbath mode; dual-element bake; built-in storage drawer\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-30-freestanding-electric-range-black/1542265.p?id=1219054922232&skuId=1542265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542265_sa.jpg\"}', 'upc' => '084691256441', 'provider' => 'bestbuy'],\n ['name' => \"KEF - 5.1-Ch. Home Theater System with Powered Subwoofer\", 'description_short' => \"Uni-Q driver arrays; 4 satellite speakers and 1 center-channel speaker; 8&quot;, 250W powered subwoofer; 3/4&quot; vented aluminum-dome tweeters; 4-1/4&quot; aluminum midranges with Z-flex cone surrounds\", 'description_long' => \"Uni-Q driver arrays; 4 satellite speakers and 1 center-channel speaker; 8&quot;, 250W powered subwoofer; 3/4&quot; vented aluminum-dome tweeters; 4-1/4&quot; aluminum midranges with Z-flex cone surrounds\", 'price' => 1199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kef-5-1-ch-home-theater-system-with-powered-subwoofer/1542353.p?id=1219054923974&skuId=1542353', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542353', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542353_500x500_sa.jpg\"}', 'upc' => '637203209604', 'provider' => 'bestbuy'],\n ['name' => \"KEF - T Series 5.1-Channel Home Theater Speaker System with Powered Subwoofer\", 'description_short' => \"2 T301 2-1/2-way closed-box speakers; 2 T101 2-way closed-box speakers; 1 T301c 2-1/2-way closed-box speaker; 1 T-2 powered subwoofer; high-definition 3D sound\", 'description_long' => \"2 T301 2-1/2-way closed-box speakers; 2 T101 2-way closed-box speakers; 1 T301c 2-1/2-way closed-box speaker; 1 T-2 powered subwoofer; high-definition 3D sound\", 'price' => 1999.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kef-t-series-5-1-channel-home-theater-speaker-system-with-powered-subwoofer/1542362.p?id=1219054920228&skuId=1542362', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542362_500x500_sa.jpg\"}', 'upc' => '637203210433', 'provider' => 'bestbuy'],\n ['name' => \"KEF - 5-1/4\\\" Outdoor Speaker (Each)\", 'description_short' => \"100W maximum power handling; 5-1/4&quot; injection-molded woofer; 1&quot; anodized aluminum-dome tweeter; powdercoat aluminum grilles; UV-resistant design\", 'description_long' => \"100W maximum power handling; 5-1/4&quot; injection-molded woofer; 1&quot; anodized aluminum-dome tweeter; powdercoat aluminum grilles; UV-resistant design\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kef-5-1-4-outdoor-speaker-each/1542404.p?id=1219054921713&skuId=1542404', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542404_500x500_sa.jpg\"}', 'upc' => '637203031090', 'provider' => 'bestbuy'],\n ['name' => \"KEF - 5.1-Ch. Home Theater System with Powered Subwoofer\", 'description_short' => \"Uni-Q driver arrays; 4 satellite speakers and 1 center-channel speaker; 8&quot;, 250W powered subwoofer; 3/4&quot; vented aluminum-dome tweeters; 4-1/4&quot; aluminum midranges with Z-flex cone surrounds\", 'description_long' => \"Uni-Q driver arrays; 4 satellite speakers and 1 center-channel speaker; 8&quot;, 250W powered subwoofer; 3/4&quot; vented aluminum-dome tweeters; 4-1/4&quot; aluminum midranges with Z-flex cone surrounds\", 'price' => 1199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kef-5-1-ch-home-theater-system-with-powered-subwoofer/1542413.p?id=1219054918687&skuId=1542413', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542413_500x500_sa.jpg\"}', 'upc' => '637203209505', 'provider' => 'bestbuy'],\n ['name' => \"Matrix Audio - Qube Portable Speaker - Silver/Black\", 'description_short' => \"3W of power; PVB (Passive Vibrating Bass); 33mm drivers; 3.5mm headphone jack\", 'description_long' => \"3W of power; PVB (Passive Vibrating Bass); 33mm drivers; 3.5mm headphone jack\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matrix-audio-qube-portable-speaker-silver-black/1542468.p?id=1219054924234&skuId=1542468', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542468_sa.jpg\"}', 'upc' => '799493872668', 'provider' => 'bestbuy'],\n ['name' => \"Matrix Audio - Qube Portable Speaker - Red/Black\", 'description_short' => \"3W of power; PVB (Passive Vibrating Bass); 33mm drivers; 3.5mm headphone jack\", 'description_long' => \"3W of power; PVB (Passive Vibrating Bass); 33mm drivers; 3.5mm headphone jack\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matrix-audio-qube-portable-speaker-red-black/1542501.p?id=1219054921464&skuId=1542501', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542501_sa.jpg\"}', 'upc' => '799493872170', 'provider' => 'bestbuy'],\n ['name' => \"LG - 1.8 Cu. Ft. Over-the-Range Microwave - Smooth White\", 'description_short' => \"1000W of power; digital controls; 10 power levels; 7 sensor-cook options and sensor-reheat feature; auto, time and rapid defrost; popcorn key; EasyClean interior; 3-speed fan; removable charcoal filter\", 'description_long' => \"1000W of power; digital controls; 10 power levels; 7 sensor-cook options and sensor-reheat feature; auto, time and rapid defrost; popcorn key; EasyClean interior; 3-speed fan; removable charcoal filter\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lg-1-8-cu-ft-over-the-range-microwave-smooth-white/1542617.p?id=1219054922757&skuId=1542617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542617_sa.jpg\"}', 'upc' => '048231318686', 'provider' => 'bestbuy'],\n ['name' => \"LG - 1.8 Cu. Ft. Over-the-Range Microwave - Smooth Black\", 'description_short' => \"1000W of power; digital controls; 10 power levels; 7 sensor-cook options and sensor-reheat feature; auto, time and rapid defrost; popcorn key; EasyClean interior; 3-speed fan; removable charcoal filter\", 'description_long' => \"1000W of power; digital controls; 10 power levels; 7 sensor-cook options and sensor-reheat feature; auto, time and rapid defrost; popcorn key; EasyClean interior; 3-speed fan; removable charcoal filter\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lg-1-8-cu-ft-over-the-range-microwave-smooth-black/1542644.p?id=1219054920369&skuId=1542644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542644_sa.jpg\"}', 'upc' => '048231318693', 'provider' => 'bestbuy'],\n ['name' => \"Loud City Song - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loud-city-song-cd/1542653.p?id=2729931&skuId=1542653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542653_sa.jpg\"}', 'upc' => '887828030620', 'provider' => 'bestbuy'],\n ['name' => \"Rock 'n Roll Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-n-roll-christmas-cd/1542708.p?id=108828&skuId=1542708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1542708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1542\\/1542708_sa.jpg\"}', 'upc' => '077776671826', 'provider' => 'bestbuy'],\n ['name' => \"SMS Audio - BioSport Street by 50 Cent Earbud Headphones - Yellow\", 'description_short' => \"Heart-rate tracking; sound isolating; 12mm drivers; 3.5mm gold-plated audio jack; sweat- and water-resistant; 32 ohms impedance; compatible with major fitness apps\", 'description_long' => \"Heart-rate tracking; sound isolating; 12mm drivers; 3.5mm gold-plated audio jack; sweat- and water-resistant; 32 ohms impedance; compatible with major fitness apps\", 'price' => 149.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sms-audio-biosport-street-by-50-cent-earbud-headphones-yellow/1543001.p?id=1219502847444&skuId=1543001', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1543001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1543\\/1543001_sa.jpg\"}', 'upc' => '812184012683', 'provider' => 'bestbuy'],\n ['name' => \"Glee: The Complete Fourth Season [6 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glee-the-complete-fourth-season-6-discs-dvd/1543024.p?id=2761707&skuId=1543024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1543024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1543\\/1543024_sa.jpg\"}', 'upc' => '024543845096', 'provider' => 'bestbuy'],\n ['name' => \"Encore at the Blue Note - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/encore-at-the-blue-note-cd/1543306.p?id=69951&skuId=1543306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1543306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1543\\/1543306_sa.jpg\"}', 'upc' => '089408335624', 'provider' => 'bestbuy'],\n ['name' => \"Evidence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evidence-cd/1543315.p?id=69263&skuId=1543315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1543315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1543\\/1543315_sa.jpg\"}', 'upc' => '089408334320', 'provider' => 'bestbuy'],\n ['name' => \"Vintage Hampton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vintage-hampton-cd/1543324.p?id=67138&skuId=1543324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1543324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1543\\/1543324_sa.jpg\"}', 'upc' => '089408332128', 'provider' => 'bestbuy'],\n ['name' => \"Paris - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paris-cd/1543404.p?id=79478&skuId=1543404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1543404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1543\\/1543404_sa.jpg\"}', 'upc' => '075596155229', 'provider' => 'bestbuy'],\n ['name' => \"MTV Unplugged - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mtv-unplugged-cd/1543440.p?id=101412&skuId=1543440&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1543440', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1543\\/1543440_sa.jpg\"}', 'upc' => '075596156929', 'provider' => 'bestbuy'],\n ['name' => \"Love & Liberte - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-liberte-cd/1543495.p?id=83670&skuId=1543495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1543495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1543\\/1543495_sa.jpg\"}', 'upc' => '075596159920', 'provider' => 'bestbuy'],\n ['name' => \"Unspeakable Joy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unspeakable-joy-cd/1543770.p?id=1543725&skuId=1543770&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1543770', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1543\\/1543770_sa.jpg\"}', 'upc' => '015095485823', 'provider' => 'bestbuy'],\n ['name' => \"Brownie McGhee & Sonny Terry at the 2nd Fret - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brownie-mcghee-sonny-terry-at-the-2nd-fret-cd/1544323.p?id=91178&skuId=1544323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1544323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1544\\/1544323_sa.jpg\"}', 'upc' => '025218056120', 'provider' => 'bestbuy'],\n ['name' => \"Swarthmore Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swarthmore-concert-cd/1544332.p?id=85676&skuId=1544332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1544332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1544\\/1544332_sa.jpg\"}', 'upc' => '025218056328', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Rev. James Cleveland [Savoy] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-rev-james-cleveland-savoy-cd/1544341.p?id=128027&skuId=1544341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1544341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1544\\/1544341.jpg\"}', 'upc' => '021401711128', 'provider' => 'bestbuy'],\n ['name' => \"S.F. Blues Guitar Summit, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/s-f-blues-guitar-summit-vol-3-cd/1544387.p?id=122377&skuId=1544387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1544387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1544\\/1544387.jpg\"}', 'upc' => '026245200722', 'provider' => 'bestbuy'],\n ['name' => \"Venus Luxure No. 1 Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/venus-luxure-no-1-baby-cd/1544449.p?id=83684&skuId=1544449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1544449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1544\\/1544449.jpg\"}', 'upc' => '036172081721', 'provider' => 'bestbuy'],\n ['name' => \"LG - 800-Lumen, 9.5W A19 Wireless LED Light Bulb, 60W Equivalent - White Only\", 'description_short' => \"For select security and home automation systems; 9.5W of power (60W incandescent equivalent); A19 shape; medium screw-in base; 800 lumens of brightness; lasts up to 25,000 hours\", 'description_long' => \"For select security and home automation systems; 9.5W of power (60W incandescent equivalent); A19 shape; medium screw-in base; 800 lumens of brightness; lasts up to 25,000 hours\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lg-800-lumen-9-5w-a19-wireless-led-light-bulb-60w-equivalent-white-only/1546008.p?id=1219500995818&skuId=1546008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1546008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1546\\/1546008_sa.jpg\"}', 'upc' => '048231376358', 'provider' => 'bestbuy'],\n ['name' => \"Modern Family: Season 4 [3 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/modern-family-season-4-3-discs-blu-ray-disc/1548065.p?id=2988978&skuId=1548065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1548065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1548\\/1548065_sa.jpg\"}', 'upc' => '024543854098', 'provider' => 'bestbuy'],\n ['name' => \"Homeland: Season 2 [4 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/homeland-season-2-4-discs-dvd-boxed-set/1548074.p?id=2725501&skuId=1548074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1548074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1548\\/1548074.jpg\"}', 'upc' => '024543852292', 'provider' => 'bestbuy'],\n ['name' => \"Homeland: Season 2 [3 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/homeland-season-2-3-discs-blu-ray-disc/1548092.p?id=2728670&skuId=1548092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1548092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1548\\/1548092.jpg\"}', 'upc' => '024543852315', 'provider' => 'bestbuy'],\n ['name' => \"League: Season 4 [2 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/league-season-4-2-discs-dvd/1548108.p?id=2770858&skuId=1548108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1548108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1548\\/1548108.jpg\"}', 'upc' => '024543854111', 'provider' => 'bestbuy'],\n ['name' => \"Modern Family: Season 4 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/modern-family-season-4-3-discs-dvd/1548117.p?id=2763140&skuId=1548117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1548117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1548\\/1548117_sa.jpg\"}', 'upc' => '024543854074', 'provider' => 'bestbuy'],\n ['name' => \"Family Guy Vol. 11 (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/family-guy-vol-11-3-disc-dvd/1548126.p?id=2762600&skuId=1548126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1548126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1548\\/1548126_sa.jpg\"}', 'upc' => '024543873471', 'provider' => 'bestbuy'],\n ['name' => \"It's Always Sunny in Philadelphia: Season 8 [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-always-sunny-in-philadelphia-season-8-2-discs-dvd/1548135.p?id=2733418&skuId=1548135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1548135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1548\\/1548135_sa.jpg\"}', 'upc' => '024543869030', 'provider' => 'bestbuy'],\n ['name' => \"Glee: The Complete Fourth Season [4 Discs] [Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glee-the-complete-fourth-season-4-discs-blu-ray-blu-ray-disc/1548144.p?id=2761708&skuId=1548144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1548144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1548\\/1548144_sa.jpg\"}', 'upc' => '024543845119', 'provider' => 'bestbuy'],\n ['name' => \"Sony - 50W Bluetooth Micro Music System - Black\", 'description_short' => \"Plays CD-R/RW, AAC, aptX, MP3 and WMA; S-Master amplifier circuitry; 2-way speakers; USB port; 3.5mm auxiliary input; Bluetooth and NFC (Near Field Communications) connectivity\", 'description_long' => \"Plays CD-R/RW, AAC, aptX, MP3 and WMA; S-Master amplifier circuitry; 2-way speakers; USB port; 3.5mm auxiliary input; Bluetooth and NFC (Near Field Communications) connectivity\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-50w-bluetooth-micro-music-system-black/1549014.p?id=1219054924637&skuId=1549014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1549014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1549\\/1549014_sa.jpg\"}', 'upc' => '027242866294', 'provider' => 'bestbuy'],\n ['name' => \"Nashville: The Complete First Season [5 discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nashville-the-complete-first-season-5-discs-dvd-boxed-set/1550024.p?id=2705357&skuId=1550024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1550024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1550\\/1550024_sa.jpg\"}', 'upc' => '786936830354', 'provider' => 'bestbuy'],\n ['name' => \"Harman - Speaker - 75 W RMS - 2-way - 2 Ohm - Black\", 'description_short' => \"2 Ohm\", 'description_long' => \"2 Ohm\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harman-speaker-75-w-rms-2-way-2-ohm-black/1550734.p?id=1218268349101&skuId=1550734', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1550734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1550\\/1550734_sa.jpg\"}', 'upc' => '050036930093', 'provider' => 'bestbuy'],\n ['name' => \"Apple - USB Cable Adapter - White\", 'description_short' => \"USB - Proprietary Connector\", 'description_long' => \"USB - Proprietary Connector\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/apple-usb-cable-adapter-white/1551069.p?id=1218268438450&skuId=1551069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551069_sa.jpg\"}', 'upc' => '885909686896', 'provider' => 'bestbuy'],\n ['name' => \"Grey's Anatomy: The Complete Ninth Season [6 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greys-anatomy-the-complete-ninth-season-6-discs-dvd/1551166.p?id=2705158&skuId=1551166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551166.jpg\"}', 'upc' => '786936830293', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - Door Reversal Kit for Most Whirlpool Duet Dryers\", 'description_short' => \"Compatible with most Whirlpool Duet dryers; for use when the dryer must be placed on the left side of the washer; universal design\", 'description_long' => \"Compatible with most Whirlpool Duet dryers; for use when the dryer must be placed on the left side of the washer; universal design\", 'price' => 19.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/whirlpool-door-reversal-kit-for-most-whirlpool-duet-dryers/1551342.p?id=1218268354108&skuId=1551342', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551342_sa.jpg\"}', 'upc' => '883049143675', 'provider' => 'bestbuy'],\n ['name' => \"Army Wives: The Complete Seventh Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/army-wives-the-complete-seventh-season-3-discs-dvd/1551466.p?id=2705260&skuId=1551466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551466_sa.jpg\"}', 'upc' => '786936832471', 'provider' => 'bestbuy'],\n ['name' => \"Scandal: The Complete Second Season [5 discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scandal-the-complete-second-season-5-discs-dvd-boxed-set/1551475.p?id=2705388&skuId=1551475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551475_sa.jpg\"}', 'upc' => '786936831993', 'provider' => 'bestbuy'],\n ['name' => \"CSI: Crime Scene Investigation - The Thirteenth Season [6 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/csi-crime-scene-investigation-the-thirteenth-season-6-discs-dvd/1551484.p?id=2724318&skuId=1551484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551484.jpg\"}', 'upc' => '097361441443', 'provider' => 'bestbuy'],\n ['name' => \"Hawaii Five-0: The Third Season [6 Discs] [Blu-ray] (Boxed Set) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hawaii-five-0-the-third-season-6-discs-blu-ray-boxed-set-blu-ray-disc/1551493.p?id=2724320&skuId=1551493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551493_sa.jpg\"}', 'upc' => '097361441948', 'provider' => 'bestbuy'],\n ['name' => \"Blue Bloods: The Third Season [6 discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-bloods-the-third-season-6-discs-dvd-boxed-set/1551509.p?id=2718852&skuId=1551509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551509_sa.jpg\"}', 'upc' => '097361441146', 'provider' => 'bestbuy'],\n ['name' => \"Criminal Minds: The Eighth Season [6 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/criminal-minds-the-eighth-season-6-discs-dvd-boxed-set/1551518.p?id=2718853&skuId=1551518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551518.jpg\"}', 'upc' => '097361441344', 'provider' => 'bestbuy'],\n ['name' => \"South Park: The Complete Sixteenth Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-park-the-complete-sixteenth-season-3-discs-dvd/1551527.p?id=2724422&skuId=1551527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551527_sa.jpg\"}', 'upc' => '097368805040', 'provider' => 'bestbuy'],\n ['name' => \"Hawaii Five-0: The Third Season [7 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hawaii-five-0-the-third-season-7-discs-dvd-boxed-set/1551536.p?id=2724319&skuId=1551536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551536_sa.jpg\"}', 'upc' => '097361441849', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek: The Original Series - Origins (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-the-original-series-origins-blu-ray-disc/1551545.p?id=2719135&skuId=1551545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551545.jpg\"}', 'upc' => '097368051041', 'provider' => 'bestbuy'],\n ['name' => \"Vegas: The Dvd Edition (5 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vegas-the-dvd-edition-5-disc-dvd-boxed-set/1551554.p?id=2724383&skuId=1551554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551554.jpg\"}', 'upc' => '097361442747', 'provider' => 'bestbuy'],\n ['name' => \"South Park: The Complete Sixteenth Season [2 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-park-the-complete-sixteenth-season-2-discs-blu-ray-disc/1551563.p?id=2724439&skuId=1551563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551563.jpg\"}', 'upc' => '097360837346', 'provider' => 'bestbuy'],\n ['name' => \"Bates Motel: Season One [2 Discs] (Ultraviolet Digital Copy) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bates-motel-season-one-2-discs-ultraviolet-digital-copy-blu-ray-disc/1551572.p?id=2726046&skuId=1551572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551572_sa.jpg\"}', 'upc' => '025192199882', 'provider' => 'bestbuy'],\n ['name' => \"Bates Motel: Season One [3 Discs] (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/bates-motel-season-one-3-discs-dvd-ultraviolet-digital-copy/1551581.p?id=2726045&skuId=1551581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551581_sa.jpg\"}', 'upc' => '025192186318', 'provider' => 'bestbuy'],\n ['name' => \"Barska - 3 x 65 Illuminated LED Magnifier\", 'description_short' => \"3x magnification; 65mm lens; 2 bright white LED lights; integrated stand\", 'description_long' => \"3x magnification; 65mm lens; 2 bright white LED lights; integrated stand\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barska-3-x-65-illuminated-led-magnifier/1551615.p?id=1219055278070&skuId=1551615', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1551615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1551\\/1551615_rc.jpg\"}', 'upc' => '790272982493', 'provider' => 'bestbuy'],\n ['name' => \"To All My Friends:... [EP] [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/to-all-my-friends-ep-pa-digipak-cd/1552147.p?id=2156503&skuId=1552147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1552147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1552\\/1552147_sa.jpg\"}', 'upc' => '826257012326', 'provider' => 'bestbuy'],\n ['name' => \"Velocity Micro - Cruz E-Reader - Black\", 'description_short' => \"7&quot; color TFT touch screen; supports ePub, PDF, TXT, PDB, HTML, MP3, WMA, AAC, WAV, H.264, MPEG-4, JPEG, GIF, PNG and BMP formats; 256MB built-in memory; microSD card slot; 802.11b/g wireless connectivity\", 'description_long' => \"7&quot; color TFT touch screen; supports ePub, PDF, TXT, PDB, HTML, MP3, WMA, AAC, WAV, H.264, MPEG-4, JPEG, GIF, PNG and BMP formats; 256MB built-in memory; microSD card slot; 802.11b/g wireless connectivity\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/velocity-micro-cruz-e-reader-black/1552174.p?id=1218399776963&skuId=1552174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1552174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1552\\/1552174_rc.jpg\"}', 'upc' => '877935002122', 'provider' => 'bestbuy'],\n ['name' => \"NCAA Football 14 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Step onto the field and get in the game with extreme accuracy and authentic action\", 'description_long' => \"Step onto the field and get in the game with extreme accuracy and authentic action\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ncaa-football-14-pre-owned-playstation-3/1556019.p?id=1219055273929&skuId=1556019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556019_sa.jpg\"}', 'upc' => '799007834939', 'provider' => 'bestbuy'],\n ['name' => \"NCAA Football 14 - PRE-OWNED - Xbox 360\", 'description_short' => \"Step onto the field and get in the game with extreme accuracy and authentic action\", 'description_long' => \"Step onto the field and get in the game with extreme accuracy and authentic action\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ncaa-football-14-pre-owned-xbox-360/1556161.p?id=1219055275720&skuId=1556161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556161_sa.jpg\"}', 'upc' => '799007834946', 'provider' => 'bestbuy'],\n ['name' => \"Superorganism [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/superorganism-digipak-cd/1556198.p?id=2733088&skuId=1556198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556198_sa.jpg\"}', 'upc' => '848928057184', 'provider' => 'bestbuy'],\n ['name' => \"Keep It Redneck - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keep-it-redneck-cd/1556204.p?id=2739723&skuId=1556204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556204_sa.jpg\"}', 'upc' => '661869002514', 'provider' => 'bestbuy'],\n ['name' => \"Train Keeps a Rolling - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/train-keeps-a-rolling-cd/1556213.p?id=2720546&skuId=1556213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556213_sa.jpg\"}', 'upc' => '099923249023', 'provider' => 'bestbuy'],\n ['name' => \"Inland [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inland-digipak-cd/1556222.p?id=2736225&skuId=1556222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556222_sa.jpg\"}', 'upc' => '859710133399', 'provider' => 'bestbuy'],\n ['name' => \"DARK - PRE-OWNED - Xbox 360\", 'description_short' => \"Embrace the darkness and hone your terrifying skills\", 'description_long' => \"Embrace the darkness and hone your terrifying skills\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dark-pre-owned-xbox-360/1556259.p?id=1219055274715&skuId=1556259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556259_sa.jpg\"}', 'upc' => '799007834953', 'provider' => 'bestbuy'],\n ['name' => \"This World Won't Last Forever, But Tonight We... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-world-wont-last-forever-but-tonight-we-cd/1556295.p?id=2674781&skuId=1556295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556295_sa.jpg\"}', 'upc' => '075678732300', 'provider' => 'bestbuy'],\n ['name' => \"Stay Trippy [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stay-trippy-pa-cd/1556301.p?id=2736215&skuId=1556301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556301_sa.jpg\"}', 'upc' => '888837601122', 'provider' => 'bestbuy'],\n ['name' => \"Big E: A Salute to Steel Guitarist Buddy... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-e-a-salute-to-steel-guitarist-buddy-cd-various/1556383.p?id=2730766&skuId=1556383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556383_sa.jpg\"}', 'upc' => '093624943846', 'provider' => 'bestbuy'],\n ['name' => \"An Object [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-object-digipak-cd/1556425.p?id=2730780&skuId=1556425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556425_sa.jpg\"}', 'upc' => '098787104127', 'provider' => 'bestbuy'],\n ['name' => \"Tomorrow We Die Alive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tomorrow-we-die-alive-cd/1556489.p?id=2730756&skuId=1556489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556489_sa.jpg\"}', 'upc' => '817424012966', 'provider' => 'bestbuy'],\n ['name' => \"Disillusion [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disillusion-digipak-cd/1556513.p?id=2730739&skuId=1556513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556513_sa.jpg\"}', 'upc' => '646920316823', 'provider' => 'bestbuy'],\n ['name' => \"Key Digital - Champion Series HDMI-to-Dual Cat-5e/6 Matrix Switcher\", 'description_short' => \"KEY DIGITAL Champion Series HDMI-to-Dual Cat-5e/6 Matrix Switcher: Offers digital switching of up to 4 HDMI inputs to 4 HDMI and 4 Cat-5e or Cat-6 outputs; supports standard-definition, high-definition and 3D signals; Full Buffer technology\", 'description_long' => \"KEY DIGITAL Champion Series HDMI-to-Dual Cat-5e/6 Matrix Switcher: Offers digital switching of up to 4 HDMI inputs to 4 HDMI and 4 Cat-5e or Cat-6 outputs; supports standard-definition, high-definition and 3D signals; Full Buffer technology\", 'price' => 1599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/key-digital-champion-series-hdmi-to-dual-cat-5e-6-matrix-switcher/1556522.p?id=1219300830885&skuId=1556522', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556522_sa.jpg\"}', 'upc' => '819505008691', 'provider' => 'bestbuy'],\n ['name' => \"Turbo: Super Stunt Squad - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Slide, drift, flip and catch air with your favorite characters\", 'description_long' => \"Slide, drift, flip and catch air with your favorite characters\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turbo-super-stunt-squad-pre-owned-nintendo-3ds/1556586.p?id=1219055279090&skuId=1556586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556586_sa.jpg\"}', 'upc' => '799007834960', 'provider' => 'bestbuy'],\n ['name' => \"Life Is Elsewhere [Bonus Tracks] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/life-is-elsewhere-bonus-tracks-digipak-cd/1556595.p?id=2730781&skuId=1556595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556595_sa.jpg\"}', 'upc' => '803020164024', 'provider' => 'bestbuy'],\n ['name' => \"Turbo: Super Stunt Squad - PRE-OWNED - Nintendo DS\", 'description_short' => \"Slide, drift, flip and catch air with your favorite characters\", 'description_long' => \"Slide, drift, flip and catch air with your favorite characters\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turbo-super-stunt-squad-pre-owned-nintendo-ds/1556665.p?id=1219055274649&skuId=1556665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556665_sa.jpg\"}', 'upc' => '799007834977', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 2-Way Indoor/Outdoor Speakers (Pair) - Black\", 'description_short' => \"40W peak power; 4-1/2&quot; woofer; 1/2&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'description_long' => \"40W peak power; 4-1/2&quot; woofer; 1/2&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'price' => 379.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-2-way-indoor-outdoor-speakers-pair-black/1556765.p?id=1219057146816&skuId=1556765', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556765_sa.jpg\"}', 'upc' => '5709009937106', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 6-1/2\\\" 2-Way In-Ceiling Speakers (Pair) - White\", 'description_short' => \"120W peak power; 6-1/2&quot; honeycomb woofer; 1&quot; silk-dome tweeter with WaveGuide faceplate design; DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) technology; paintable magnetic grille and frame\", 'description_long' => \"120W peak power; 6-1/2&quot; honeycomb woofer; 1&quot; silk-dome tweeter with WaveGuide faceplate design; DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) technology; paintable magnetic grille and frame\", 'price' => 849.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-6-1-2-2-way-in-ceiling-speakers-pair-white/1556774.p?id=1219057148485&skuId=1556774', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556774_sa.jpg\"}', 'upc' => '5709009939292', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - Rock 5.2A 2-Way Outdoor Speaker (Each) - Granite\", 'description_short' => \"60W peak power; 5-1/4&quot; woofer; dual 1/2&quot; dome tweeters; withstands temperatures from -22&#176; to 158&#176;; DVC (dual voice coil) design; ported cabinet\", 'description_long' => \"60W peak power; 5-1/4&quot; woofer; dual 1/2&quot; dome tweeters; withstands temperatures from -22&#176; to 158&#176;; DVC (dual voice coil) design; ported cabinet\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-rock-5-2a-2-way-outdoor-speaker-each-granite/1556829.p?id=1219057146809&skuId=1556829', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556829_sa.jpg\"}', 'upc' => '008634937068', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 2-Way Indoor/Outdoor Speaker (Each) - White\", 'description_short' => \"80W peak power; 5-1/4&quot; polypropylene woofer driver; dual 1&quot; polypropylene-dome tweeters; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket\", 'description_long' => \"80W peak power; 5-1/4&quot; polypropylene woofer driver; dual 1&quot; polypropylene-dome tweeters; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-2-way-indoor-outdoor-speaker-each-white/1556838.p?id=1219057146821&skuId=1556838', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556838_sa.jpg\"}', 'upc' => '5709009937199', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 10\\\" 3-Way In-Ceiling Speaker (Each) - White\", 'description_short' => \"10&quot; honeycomb woofer; two 1-1/2&quot; silk-dome midrange drivers; two 1&quot; silk-dome tweeters; DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) technology; bipole or dipole operation\", 'description_long' => \"10&quot; honeycomb woofer; two 1-1/2&quot; silk-dome midrange drivers; two 1&quot; silk-dome tweeters; DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) technology; bipole or dipole operation\", 'price' => 649.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-10-3-way-in-ceiling-speaker-each-white/1556847.p?id=1219057148004&skuId=1556847', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556847_sa.jpg\"}', 'upc' => '5709009939353', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - Rock 8.3A 2-Way Outdoor Speaker (Each) - Granite\", 'description_short' => \"120W peak power; 8&quot; woofer; dual 1&quot; dome tweeters; withstands temperatures from -22&#176; to 158&#176;; DVC (dual voice coil) design; ported cabinet\", 'description_long' => \"120W peak power; 8&quot; woofer; dual 1&quot; dome tweeters; withstands temperatures from -22&#176; to 158&#176;; DVC (dual voice coil) design; ported cabinet\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-rock-8-3a-2-way-outdoor-speaker-each-granite/1556856.p?id=1219057146818&skuId=1556856', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556856_sa.jpg\"}', 'upc' => '5709009937076', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 2-Way Indoor/Outdoor Speakers (Pair) - White\", 'description_short' => \"80W peak power; 5-1/4&quot; woofer; 1&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'description_long' => \"80W peak power; 5-1/4&quot; woofer; 1&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-2-way-indoor-outdoor-speakers-pair-white/1556865.p?id=1219057146817&skuId=1556865', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556865_sa.jpg\"}', 'upc' => '5709009937137', 'provider' => 'bestbuy'],\n ['name' => \"Klipsch - 6-1/2\\\" 2-Way In-Ceiling Loudspeaker (Each) - White\", 'description_short' => \"200W peak power (50W RMS); 6-1/2&quot; polypropylene woofer cone; 1&quot; silk-dome compression driver; CDT (Controlled Dispersion Technology); SlimTrim magnetic grille; sure-grip mounting dogs\", 'description_long' => \"200W peak power (50W RMS); 6-1/2&quot; polypropylene woofer cone; 1&quot; silk-dome compression driver; CDT (Controlled Dispersion Technology); SlimTrim magnetic grille; sure-grip mounting dogs\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/klipsch-6-1-2-2-way-in-ceiling-loudspeaker-each-white/1556883.p?id=1219057148006&skuId=1556883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556883_sa.jpg\"}', 'upc' => '743878024050', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 8\\\" 2-Way In-Wall Speakers (Pair) - White\", 'description_short' => \"160W peak power; 8&quot; polypropylene woofer; 1&quot; rotating, pivoting titanium-dome tweeter; WaveGuide; SoundAngle technology; paintable frame and magnetic grille\", 'description_long' => \"160W peak power; 8&quot; polypropylene woofer; 1&quot; rotating, pivoting titanium-dome tweeter; WaveGuide; SoundAngle technology; paintable frame and magnetic grille\", 'price' => 799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-8-2-way-in-wall-speakers-pair-white/1556929.p?id=1219057147573&skuId=1556929', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556929', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556929_sa.jpg\"}', 'upc' => '5709009939247', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - Architectural Series 6-1/2\\\" 2-Way Indoor/Outdoor In-Ceiling Speaker (Each) - White\", 'description_short' => \"6-1/2&quot; fiber-composite woofer; two 1/2&quot; pivoting-dome tweeters; DVC (dual-voice-coil) design; resists temperatures from -22&#176; to 158&#176;; aluminum grille\", 'description_long' => \"6-1/2&quot; fiber-composite woofer; two 1/2&quot; pivoting-dome tweeters; DVC (dual-voice-coil) design; resists temperatures from -22&#176; to 158&#176;; aluminum grille\", 'price' => 179.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-architectural-series-6-1-2-2-way-indoor-outdoor-in-ceiling-speaker-each-white/1556938.p?id=1219057148488&skuId=1556938&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556938_sa.jpg\"}', 'upc' => '5709009936802', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 6-1/2\\\" 2-Way In-Wall Speakers (Pair) - White\", 'description_short' => \"120W peak power; 6-1/2&quot; DuPont&#8482; KEVLAR&#174; fiber woofer; 1&quot; rotating, pivoting titanium-dome tweeter; DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) and SoundAngle technologies\", 'description_long' => \"120W peak power; 6-1/2&quot; DuPont&#8482; KEVLAR&#174; fiber woofer; 1&quot; rotating, pivoting titanium-dome tweeter; DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) and SoundAngle technologies\", 'price' => 649.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-6-1-2-2-way-in-wall-speakers-pair-white/1556947.p?id=1219057148005&skuId=1556947', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556947_sa.jpg\"}', 'upc' => '5709009939209', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 8\\\" In-Wall Speakers (Pair) - White\", 'description_short' => \"160W peak power; 8&quot; honeycomb woofer; 1&quot; silk-dome tweeter with DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) technology; paintable magnetic grille\", 'description_long' => \"160W peak power; 8&quot; honeycomb woofer; 1&quot; silk-dome tweeter with DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) technology; paintable magnetic grille\", 'price' => 999.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-8-in-wall-speakers-pair-white/1556956.p?id=1219057147557&skuId=1556956', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556956', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556956_sa.jpg\"}', 'upc' => '5709009939278', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 8\\\" 2-Way In-Ceiling Speakers (Pair) - White\", 'description_short' => \"160W peak power; 8&quot; DuPont&#8482; KEVLAR&#174; fiber woofer; 1&quot; pivoting titanium-dome tweeter; DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) technology; paintable magnetic grille\", 'description_long' => \"160W peak power; 8&quot; DuPont&#8482; KEVLAR&#174; fiber woofer; 1&quot; pivoting titanium-dome tweeter; DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) technology; paintable magnetic grille\", 'price' => 799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-8-2-way-in-ceiling-speakers-pair-white/1556965.p?id=1219057147590&skuId=1556965', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556965_sa.jpg\"}', 'upc' => '5709009939216', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - Architectural Series 8\\\" 2-Way Indoor/Outdoor In-Ceiling Speaker (Each) - White\", 'description_short' => \"8&quot; fiber-composite woofer; two 1/2&quot; pivoting-dome tweeters; DVC (dual-voice-coil) design; resists temperatures from -22&#176; to 158&#176;; aluminum grille\", 'description_long' => \"8&quot; fiber-composite woofer; two 1/2&quot; pivoting-dome tweeters; DVC (dual-voice-coil) design; resists temperatures from -22&#176; to 158&#176;; aluminum grille\", 'price' => 749.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-architectural-series-8-2-way-indoor-outdoor-in-ceiling-speaker-each-white/1556974.p?id=1219057146808&skuId=1556974', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556974_sa.jpg\"}', 'upc' => '5709009936819', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 6-1/2\\\" 2-Way In-Wall Speakers (Pair) - White\", 'description_short' => \"120W peak power; 6-1/2&quot; honeycomb woofer; 1&quot; silk-dome tweeter with WaveGuide faceplate design; DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) and SoundAngle technologies; paintable grille\", 'description_long' => \"120W peak power; 6-1/2&quot; honeycomb woofer; 1&quot; silk-dome tweeter with WaveGuide faceplate design; DTT (Decoupled Tweeter Technology); HCC (Hard Conical Cone) and SoundAngle technologies; paintable grille\", 'price' => 849.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-6-1-2-2-way-in-wall-speakers-pair-white/1556983.p?id=1219057148490&skuId=1556983', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556983', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556983_sa.jpg\"}', 'upc' => '5709009939261', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 2-Way Indoor/Outdoor Speakers (Pair) - White\", 'description_short' => \"40W peak power; 4-1/2&quot; woofer; 1/2&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'description_long' => \"40W peak power; 4-1/2&quot; woofer; 1/2&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'price' => 379.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-2-way-indoor-outdoor-speakers-pair-white/1556992.p?id=1219057147544&skuId=1556992', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1556992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1556\\/1556992_sa.jpg\"}', 'upc' => '5709009937113', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - IC 608 FG 8\\\" 2-Way In-Ceiling Speakers (Pair) - White\", 'description_short' => \"160W peak power; 8&quot; woofer; 1&quot; pivoting DTT tweeter with 3-position level adjustment; paintable magnetic grille; 2-position impedance switch\", 'description_long' => \"160W peak power; 8&quot; woofer; 1&quot; pivoting DTT tweeter with 3-position level adjustment; paintable magnetic grille; 2-position impedance switch\", 'price' => 999.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-ic-608-fg-8-2-way-in-ceiling-speakers-pair-white/1557009.p?id=1219057148003&skuId=1557009', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1557009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1557\\/1557009_sa.jpg\"}', 'upc' => '5709009939308', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - Rock 6.3A 2-Way Outdoor Speaker (Each) - Granite\", 'description_short' => \"100W peak power; 6-1/2&quot; woofer; dual 1/2&quot; polypropylene-dome tweeters; withstands temperatures from -22&#176; to 158&#176;; DVC (dual voice coil) design; ported cabinet\", 'description_long' => \"100W peak power; 6-1/2&quot; woofer; dual 1/2&quot; polypropylene-dome tweeters; withstands temperatures from -22&#176; to 158&#176;; DVC (dual voice coil) design; ported cabinet\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-rock-6-3a-2-way-outdoor-speaker-each-granite/1557018.p?id=1219057147531&skuId=1557018', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1557018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1557\\/1557018_sa.jpg\"}', 'upc' => '5709009937038', 'provider' => 'bestbuy'],\n ['name' => \"Sony - a6000 Mirrorless Camera with 16-50mm Lens - White\", 'description_short' => \"24.3-megapixel Exmor CMOS sensorISO 100-25,600Shooting speeds up to 11 fpsBuilt-in Wi-Fi and NFC (near-field communication) technologyOptical image stabilization\", 'description_long' => \"24.3-megapixel Exmor CMOS sensorISO 100-25,600Shooting speeds up to 11 fpsBuilt-in Wi-Fi and NFC (near-field communication) technologyOptical image stabilization\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-a6000-mirrorless-camera-with-16-50mm-lens-white/1558119.p?id=1219500989595&skuId=1558119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558119_sa.jpg\"}', 'upc' => '027242888272', 'provider' => 'bestbuy'],\n ['name' => \"Lost in Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/lost-in-time-cd/1558178.p?id=2165231&skuId=1558178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558178_sa.jpg\"}', 'upc' => '093624969242', 'provider' => 'bestbuy'],\n ['name' => \"Beginning [Deluxe Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beginning-deluxe-edition-cd/1558187.p?id=2166864&skuId=1558187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558187.jpg\"}', 'upc' => '602527557830', 'provider' => 'bestbuy'],\n ['name' => \"The Beginning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-beginning-cd/1558196.p?id=2166865&skuId=1558196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558196_sa.jpg\"}', 'upc' => '602527548999', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 2-Way Indoor/Outdoor Speaker (Each) - Black\", 'description_short' => \"80W peak power; 5-1/4&quot; polypropylene woofer driver; dual 1&quot; dome tweeters; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket\", 'description_long' => \"80W peak power; 5-1/4&quot; polypropylene woofer driver; dual 1&quot; dome tweeters; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-2-way-indoor-outdoor-speaker-each-black/1558202.p?id=1219057147556&skuId=1558202', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558202_sa.jpg\"}', 'upc' => '5709009937182', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 2-Way Indoor/Outdoor Speakers (Pair) - Black\", 'description_short' => \"80W peak power; 5-1/4&quot; woofer; 1&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'description_long' => \"80W peak power; 5-1/4&quot; woofer; 1&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable cabinet and aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-2-way-indoor-outdoor-speakers-pair-black/1558211.p?id=1219057148481&skuId=1558211', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558211_sa.jpg\"}', 'upc' => '5709009937120', 'provider' => 'bestbuy'],\n ['name' => \"Klipsch - 6-1/2\\\" 2-Way In-Ceiling Loudspeaker (Each)\", 'description_short' => \"200W peak power handling (50W RMS); 6-1/2&quot; polypropylene woofer cone; 1&quot; silk-dome tweeter; SlimTrim magnetic grille\", 'description_long' => \"200W peak power handling (50W RMS); 6-1/2&quot; polypropylene woofer cone; 1&quot; silk-dome tweeter; SlimTrim magnetic grille\", 'price' => 188.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/klipsch-6-1-2-2-way-in-ceiling-loudspeaker-each/1558248.p?id=1219057146820&skuId=1558248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558248_500x500_sa.jpg\"}', 'upc' => '743878024036', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 2-Way Indoor/Outdoor Speakers (Pair)\", 'description_short' => \"120W peak power; 8&quot; woofer; 1&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'description_long' => \"120W peak power; 8&quot; woofer; 1&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-2-way-indoor-outdoor-speakers-pair/1558257.p?id=1219057146815&skuId=1558257', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558257_500x500_sa.jpg\"}', 'upc' => '5709009937168', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - 2-Way Indoor/Outdoor Speakers (Pair)\", 'description_short' => \"120W peak power; 8&quot; woofer; 1&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'description_long' => \"120W peak power; 8&quot; woofer; 1&quot; dome tweeter; withstands temperatures from -22&#176; to 158&#176;; paintable aluminum grille; flexible mounting bracket; Allen-key bolt-locking system\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-2-way-indoor-outdoor-speakers-pair/1558266.p?id=1219057146819&skuId=1558266', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558266_500x500_sa.jpg\"}', 'upc' => '5709009937175', 'provider' => 'bestbuy'],\n ['name' => \"Dynasty Warriors 8 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Become absorbed in the story before you fight the battle\", 'description_long' => \"Become absorbed in the story before you fight the battle\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynasty-warriors-8-pre-owned-playstation-3/1558372.p?id=1219055279089&skuId=1558372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558372_sa.jpg\"}', 'upc' => '799007835004', 'provider' => 'bestbuy'],\n ['name' => \"Turbo: Super Stunt Squad - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Slide, drift, flip and catch air with your favorite characters\", 'description_long' => \"Slide, drift, flip and catch air with your favorite characters\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turbo-super-stunt-squad-pre-owned-nintendo-wii/1558414.p?id=1219055274576&skuId=1558414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558414_sa.jpg\"}', 'upc' => '799007835011', 'provider' => 'bestbuy'],\n ['name' => \"Andis - Home Haircut 19-Piece Kit - Black/Silver\", 'description_short' => \"Powerful magnetic motor; stainless-steel blades; includes adjustable blade clipper, 10 attachment combs, shears, barber cape and comb, blade cleaning brush, lubricating oil and guard, how-to DVD and case\", 'description_long' => \"Powerful magnetic motor; stainless-steel blades; includes adjustable blade clipper, 10 attachment combs, shears, barber cape and comb, blade cleaning brush, lubricating oil and guard, how-to DVD and case\", 'price' => 21.99, 'sale_price' => 20.99, 'url' => 'http://www.bestbuy.com/site/andis-home-haircut-19-piece-kit-black-silver/1558478.p?id=1219055274717&skuId=1558478', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558478_rc.jpg\"}', 'upc' => '040102186455', 'provider' => 'bestbuy'],\n ['name' => \"Frigidaire - Gallery 30\\\" Self-Cleaning Freestanding Electric Convection Induction Range - Stainless-Steel\", 'description_short' => \"Express-Select oven control and timing system; 5 smoothtop elements; center keep-warm element; simmer element; 100-3800W; convection bake, broil and roast; temperature probe\", 'description_long' => \"Express-Select oven control and timing system; 5 smoothtop elements; center keep-warm element; simmer element; 100-3800W; convection bake, broil and roast; temperature probe\", 'price' => 1699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frigidaire-gallery-30-self-cleaning-freestanding-electric-convection-induction-range-stainless-steel/1558487.p?id=1219055278132&skuId=1558487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558487_sa.jpg\"}', 'upc' => '012505508837', 'provider' => 'bestbuy'],\n ['name' => \"Electrolux - 6.0 Cu. Ft. Self-Cleaning Freestanding Electric Range - Stainless-Steel\", 'description_short' => \"IQ-Touch controls; 5 cooktop elements; 100-4000W of power; Sabbath mode; convection bake, broil and roast and delay options; Luxury-Glide oven rack; warming drawer\", 'description_long' => \"IQ-Touch controls; 5 cooktop elements; 100-4000W of power; Sabbath mode; convection bake, broil and roast and delay options; Luxury-Glide oven rack; warming drawer\", 'price' => 1999.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/electrolux-6-0-cu-ft-self-cleaning-freestanding-electric-range-stainless-steel/1558496.p?id=1219055276481&skuId=1558496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558496_sa.jpg\"}', 'upc' => '012505507700', 'provider' => 'bestbuy'],\n ['name' => \"Turbo: Super Stunt Squad - PRE-OWNED - Xbox 360\", 'description_short' => \"Slide, drift, flip and catch air with your favorite characters\", 'description_long' => \"Slide, drift, flip and catch air with your favorite characters\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turbo-super-stunt-squad-pre-owned-xbox-360/1558502.p?id=1219055276809&skuId=1558502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558502_sa.jpg\"}', 'upc' => '799007835035', 'provider' => 'bestbuy'],\n ['name' => \"Dynasty Warriors 8 - PRE-OWNED - Xbox 360\", 'description_short' => \"Become absorbed in the story before you fight the battle\", 'description_long' => \"Become absorbed in the story before you fight the battle\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynasty-warriors-8-pre-owned-xbox-360/1558539.p?id=1219055272584&skuId=1558539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1558539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1558\\/1558539_sa.jpg\"}', 'upc' => '799007835042', 'provider' => 'bestbuy'],\n ['name' => \"The Beginning/The Best of the E.N.D. - CD - Best of\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-beginning-the-best-of-the-e-n-d-cd-best-of/1559034.p?id=2166866&skuId=1559034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559034_sa.jpg\"}', 'upc' => '602527568812', 'provider' => 'bestbuy'],\n ['name' => \"No Boys Allowed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-boys-allowed-cd/1559229.p?id=2167753&skuId=1559229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559229_sa.jpg\"}', 'upc' => '602527536804', 'provider' => 'bestbuy'],\n ['name' => \"Body Talk [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/body-talk-pa-cd/1559247.p?id=2165428&skuId=1559247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559247_sa.jpg\"}', 'upc' => '602527569727', 'provider' => 'bestbuy'],\n ['name' => \"127 Hours [Music from the Motion Picture] - CD - Original Soundtrack Germany\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/127-hours-music-from-the-motion-picture-cd-original-soundtrack-germany/1559256.p?id=2165427&skuId=1559256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559256_sa.jpg\"}', 'upc' => '602527561035', 'provider' => 'bestbuy'],\n ['name' => \"The Moment - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-moment-cd/1559265.p?id=2167131&skuId=1559265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559265.jpg\"}', 'upc' => '602527572833', 'provider' => 'bestbuy'],\n ['name' => \"20th Century Fox: 75 Years of Great... [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20th-century-fox-75-years-of-great-box-cd/1559283.p?id=2167755&skuId=1559283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559283_sa.jpg\"}', 'upc' => '030206705928', 'provider' => 'bestbuy'],\n ['name' => \"Look at What the... [CD & DVD] [Digipak] - DVD - (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/look-at-what-the-cd-dvd-digipak-dvd-2-disc/1559292.p?id=2168737&skuId=1559292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559292_sa.jpg\"}', 'upc' => '602527559964', 'provider' => 'bestbuy'],\n ['name' => \"Madagascar (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madagascar-blu-ray-disc-2-disc/1559399.p?id=1483773&skuId=1559399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559399_sa.jpg\"}', 'upc' => '097361099842', 'provider' => 'bestbuy'],\n ['name' => \"Monsters vs. Aliens (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monsters-vs-aliens-blu-ray-disc-2-disc/1559404.p?id=2009551&skuId=1559404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559404_sa.jpg\"}', 'upc' => '097361169743', 'provider' => 'bestbuy'],\n ['name' => \"Madagascar: Escape 2 Africa (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madagascar-escape-2-africa-blu-ray-disc-2-disc/1559413.p?id=1946574&skuId=1559413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559413_sa.jpg\"}', 'upc' => '097361099941', 'provider' => 'bestbuy'],\n ['name' => \"Death Race 2 (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-race-2-blu-ray-disc-2-disc/1559468.p?id=2162117&skuId=1559468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559468_sa.jpg\"}', 'upc' => '025192093104', 'provider' => 'bestbuy'],\n ['name' => \"Death Race/Death Race 2 [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-race-death-race-2-2-discs-dvd/1559477.p?id=2162119&skuId=1559477&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559477_sa.jpg\"}', 'upc' => '025192050282', 'provider' => 'bestbuy'],\n ['name' => \"A Beautiful Mind (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-beautiful-mind-blu-ray-disc/1559486.p?id=51879&skuId=1559486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559486_sa.jpg\"}', 'upc' => '025192082184', 'provider' => 'bestbuy'],\n ['name' => \"Death Race 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-race-2-dvd/1559495.p?id=2162117&skuId=1559495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559495_sa.jpg\"}', 'upc' => '025192050015', 'provider' => 'bestbuy'],\n ['name' => \"Eternal Sunshine of the Spotless Mind (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eternal-sunshine-of-the-spotless-mind-blu-ray-disc/1559501.p?id=1373268&skuId=1559501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1559501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1559\\/1559501.jpg\"}', 'upc' => '025192073748', 'provider' => 'bestbuy'],\n ['name' => \"Pixie Hollow Games (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pixie-hollow-games-dvd/1560261.p?id=2711406&skuId=1560261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560261_sa.jpg\"}', 'upc' => '786936835939', 'provider' => 'bestbuy'],\n ['name' => \"Specialty - Replacement Dishwasher Installation - Multi\", 'description_short' => \"Save time and avoid the frustration of trying to install your dishwasher yourself. Have your new dishwasher installed the easy way: neatly and reliably by a professional installer. All installers are licensed and insured. You will select this service during check out when you purchase your new dishwasher, and required parts.\", 'description_long' => \"Save time and avoid the frustration of trying to install your dishwasher yourself. Have your new dishwasher installed the easy way: neatly and reliably by a professional installer. All installers are licensed and insured. You will select this service during check out when you purchase your new dishwasher, and required parts.\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/specialty-replacement-dishwasher-installation-multi/1560437.p?id=1219061320982&skuId=1560437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560437_sa.jpg\"}', 'upc' => '400015604376', 'provider' => 'bestbuy'],\n ['name' => \"1 MONTH RHAPSODY DSKU\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-month-rhapsody-dsku/1560446.p?id=2730538&skuId=1560446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015604468', 'provider' => 'bestbuy'],\n ['name' => \"Specialty - Replacement Over-the-Range Microwave Installation\", 'description_short' => \"Save time and avoid the frustration of trying to install your new over-the-range microwave yourself. Have your new microwave installed the easy way: neatly and reliably by a professional installer. All of our installers are licensed and insured on the product they install.\", 'description_long' => \"Save time and avoid the frustration of trying to install your new over-the-range microwave yourself. Have your new microwave installed the easy way: neatly and reliably by a professional installer. All of our installers are licensed and insured on the product they install.\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/specialty-replacement-over-the-range-microwave-installation/1560491.p?id=1219061320478&skuId=1560491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560491_sc.jpg\"}', 'upc' => '400015604918', 'provider' => 'bestbuy'],\n ['name' => \"Specialty - Over-the-Range Microwave Installation Replacing Range Hood\", 'description_short' => \"Save time and avoid the frustration of trying to install your over-the-range microwave yourself. Have your new microwave installed the easy way: neatly and reliably by a professional installer. All of our installers are licensed and insured on the product they install.\", 'description_long' => \"Save time and avoid the frustration of trying to install your over-the-range microwave yourself. Have your new microwave installed the easy way: neatly and reliably by a professional installer. All of our installers are licensed and insured on the product they install.\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/specialty-over-the-range-microwave-installation-replacing-range-hood/1560507.p?id=1219061320416&skuId=1560507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560507_sc.jpg\"}', 'upc' => '400015605076', 'provider' => 'bestbuy'],\n ['name' => \"Law & Order: Special Victims Unit: Fourteenth Year [5 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/law-order-special-victims-unit-fourteenth-year-5-discs-dvd/1560534.p?id=2730450&skuId=1560534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560534_sa.jpg\"}', 'upc' => '025192169984', 'provider' => 'bestbuy'],\n ['name' => \"Hail To the King [Best Buy Exclusive] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hail-to-the-king-best-buy-exclusive-cd/1560631.p?id=2743514&skuId=1560631&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560631', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560631_sa.jpg\"}', 'upc' => '093624941958', 'provider' => 'bestbuy'],\n ['name' => \"American Pickers: Mike & Franks Picks (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-pickers-mike-franks-picks-dvd/1560677.p?id=2698481&skuId=1560677&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560677', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560677.jpg\"}', 'upc' => '031398166641', 'provider' => 'bestbuy'],\n ['name' => \"The Sapphires (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sapphires-dvd/1560686.p?id=2721578&skuId=1560686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560686_sa.jpg\"}', 'upc' => '013132607368', 'provider' => 'bestbuy'],\n ['name' => \"Kickin' It Shaolin Style: 12 Movie Set (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kickin-it-shaolin-style-12-movie-set-3-disc-dvd/1560768.p?id=2711277&skuId=1560768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560768.jpg\"}', 'upc' => '683904530554', 'provider' => 'bestbuy'],\n ['name' => \"Classic TV Westerns (3 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-tv-westerns-3-disc-dvd-boxed-set/1560777.p?id=2717472&skuId=1560777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1560777.jpg\"}', 'upc' => '096009171841', 'provider' => 'bestbuy'],\n ['name' => \"Dean Martin Celebrity Roasts (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/dean-martin-celebrity-roasts-dvd/1560786.p?id=2743814&skuId=1560786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560786.jpg\"}', 'upc' => '610583460797', 'provider' => 'bestbuy'],\n ['name' => \"Chronicles Of The Paranormal: Psi Factor S3 & S4 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chronicles-of-the-paranormal-psi-factor-s3-s4-dvd/1560795.p?id=2673830&skuId=1560795&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560795', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560795.jpg\"}', 'upc' => '096009113841', 'provider' => 'bestbuy'],\n ['name' => \"V/H/S/2 (Blu-ray Disc) (2 Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-h-s-2-blu-ray-disc-2-disc-digital-copy/1560804.p?id=2727915&skuId=1560804&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560804', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560804_sa.jpg\"}', 'upc' => '876964006026', 'provider' => 'bestbuy'],\n ['name' => \"Flying Fists Of Kung Fu: 12 Movie Set (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flying-fists-of-kung-fu-12-movie-set-3-disc-dvd/1560822.p?id=2711468&skuId=1560822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560822.jpg\"}', 'upc' => '683904530561', 'provider' => 'bestbuy'],\n ['name' => \"Dean Martin Celebrity Roasts Collector's Edition (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dean-martin-celebrity-roasts-collectors-edition-dvd/1560859.p?id=2732393&skuId=1560859&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560859', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560859.jpg\"}', 'upc' => '610583460995', 'provider' => 'bestbuy'],\n ['name' => \"The Adventures of Mark Twain (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-adventures-of-mark-twain-dvd/1560877.p?id=1506726&skuId=1560877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1560877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1560\\/1560877_sa.jpg\"}', 'upc' => '876964005111', 'provider' => 'bestbuy'],\n ['name' => \"Tyler Perry's Why Did I Get Married? (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tyler-perrys-why-did-i-get-married-blu-ray-disc/1561039.p?id=1785587&skuId=1561039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1561039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1561\\/1561039_sa.jpg\"}', 'upc' => '031398127574', 'provider' => 'bestbuy'],\n ['name' => \"Tyler Perry's Madea Goes to Jail (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tyler-perrys-madea-goes-to-jail-blu-ray-disc/1561048.p?id=1986436&skuId=1561048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1561048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1561\\/1561048_sa.jpg\"}', 'upc' => '031398127550', 'provider' => 'bestbuy'],\n ['name' => \"Tyler Perry's Madea's Family Reunion (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tyler-perrys-madeas-family-reunion-blu-ray-disc/1561057.p?id=1537634&skuId=1561057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1561057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1561\\/1561057_sa.jpg\"}', 'upc' => '031398127581', 'provider' => 'bestbuy'],\n ['name' => \"Tyler Perry's The Family That Preys (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tyler-perrys-the-family-that-preys-blu-ray-disc/1561075.p?id=1932323&skuId=1561075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1561075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1561\\/1561075.jpg\"}', 'upc' => '031398127567', 'provider' => 'bestbuy'],\n ['name' => \"Madea's Big Happy Family (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madeas-big-happy-family-dvd/1561084.p?id=2149869&skuId=1561084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1561084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1561\\/1561084_sa.jpg\"}', 'upc' => '031398127529', 'provider' => 'bestbuy'],\n ['name' => \"Tyler Perry's Diary of a Mad Black Woman (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tyler-perrys-diary-of-a-mad-black-woman-blu-ray-disc/1561093.p?id=1430346&skuId=1561093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1561093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1561\\/1561093.jpg\"}', 'upc' => '031398127598', 'provider' => 'bestbuy'],\n ['name' => \"Highlander (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/highlander-blu-ray-disc/1561109.p?id=22241&skuId=1561109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1561109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1561\\/1561109_sa.jpg\"}', 'upc' => '031398127499', 'provider' => 'bestbuy'],\n ['name' => \"Madea's Big Happy Family (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madeas-big-happy-family-blu-ray-disc/1561118.p?id=2149869&skuId=1561118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1561118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1561\\/1561118_sa.jpg\"}', 'upc' => '031398128298', 'provider' => 'bestbuy'],\n ['name' => \"HP - Business Desktop Desktop Computer - 2 GB Memory - 250 GB Hard Drive\", 'description_short' => \"AMD Athlon II X2 220 2.80 GHz - Micro Tower - DVD-Reader - NVIDIA GeForce 6150SE Graphics Card - Genuine Windows 7 Professional\", 'description_long' => \"AMD Athlon II X2 220 2.80 GHz - Micro Tower - DVD-Reader - NVIDIA GeForce 6150SE Graphics Card - Genuine Windows 7 Professional\", 'price' => 462.19, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-business-desktop-desktop-computer-2-gb-memory-250-gb-hard-drive/1563073.p?id=null&skuId=1563073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1563073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/mp\\/products\\/1563\\/1563073_sa.jpg\"}', 'upc' => '885631971277', 'provider' => 'bestbuy'],\n ['name' => \"Crysis 2 - PlayStation 3\", 'description_short' => \"When humanity is pushed to the brink, one must stand up and fight\", 'description_long' => \"When humanity is pushed to the brink, one must stand up and fight\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crysis-2-playstation-3/1563434.p?id=1218269334331&skuId=1563434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1563434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1563\\/1563434_sa.jpg\"}', 'upc' => '014633192063', 'provider' => 'bestbuy'],\n ['name' => \"Crysis 2 - Xbox 360\", 'description_short' => \"When humanity is pushed to the brink, one must stand up and fight\", 'description_long' => \"When humanity is pushed to the brink, one must stand up and fight\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crysis-2-xbox-360/1563461.p?id=1218269691668&skuId=1563461', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1563461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1563\\/1563461_sa.jpg\"}', 'upc' => '014633731620', 'provider' => 'bestbuy'],\n ['name' => \"Arkon - Travel Stand for Most Laptop Tablets - Black\", 'description_short' => \"Compatible with most laptop tablets; nonskid cushioned pads; compact design\", 'description_long' => \"Compatible with most laptop tablets; nonskid cushioned pads; compact design\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arkon-travel-stand-for-most-laptop-tablets-black/1563656.p?id=1218269335554&skuId=1563656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1563656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1563\\/1563656_rc.jpg\"}', 'upc' => '047407600013', 'provider' => 'bestbuy'],\n ['name' => \"American Sniper (DVD) (UV Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/american-sniper-dvd-uv-digital-copy/1564008.p?id=3364302&skuId=1564008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564008_sa.jpg\"}', 'upc' => '883929450336', 'provider' => 'bestbuy'],\n ['name' => \"American Sniper (Blu-ray/DVD)(UV Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-sniper-blu-ray-dvduv-digital-copy/1564017.p?id=3364302&skuId=1564017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564017_sa.jpg\"}', 'upc' => '883929450343', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - 2-USB Vehicle Charger - Black\", 'description_short' => \"TUMI T-TECH 2-USB Vehicle Charger: Compatible with most USB-powered devices; 2 charging ports; 2.4-amp/12W power; AutoSense charging technology; orange LED indicator light; rubberized coating\", 'description_long' => \"TUMI T-TECH 2-USB Vehicle Charger: Compatible with most USB-powered devices; 2 charging ports; 2.4-amp/12W power; AutoSense charging technology; orange LED indicator light; rubberized coating\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-2-usb-vehicle-charger-black/1564026.p?id=1219502525328&skuId=1564026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564026_sa.jpg\"}', 'upc' => '030878006255', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - Mobile Power Pack - Black\", 'description_short' => \"TUMI T-TECH Mobile Power Pack: Compatible with most USB-powered devices; 1-amp/5W charging port; AutoSense charging technology; integrated battery; LED power indicator; rubberized bottom; charging cable included\", 'description_long' => \"TUMI T-TECH Mobile Power Pack: Compatible with most USB-powered devices; 1-amp/5W charging port; AutoSense charging technology; integrated battery; LED power indicator; rubberized bottom; charging cable included\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-mobile-power-pack-black/1564035.p?id=1219502525326&skuId=1564035', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564035_sa.jpg\"}', 'upc' => '030878006248', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - Mobile Power Pack - Black\", 'description_short' => \"TUMI T-TECH Mobile Power Pack: Compatible with most USB-powered devices; charges 2 devices simultaneously; 7200 mAh battery; 2.1-amp and 1-amp charging ports; includes travel pouch and mini USB cable\", 'description_long' => \"TUMI T-TECH Mobile Power Pack: Compatible with most USB-powered devices; charges 2 devices simultaneously; 7200 mAh battery; 2.1-amp and 1-amp charging ports; includes travel pouch and mini USB cable\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-mobile-power-pack-black/1564044.p?id=1219502531144&skuId=1564044', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564044_sa.jpg\"}', 'upc' => '043180006172', 'provider' => 'bestbuy'],\n ['name' => \"Tumi T-Tech - 2-USB Wall Charger - Black\", 'description_short' => \"TUMI T-TECH 2-USB Wall Charger: Compatible with most USB-powered devices; 2 charging ports; 2.4-amp/12W power; AutoSense charging technology; orange LED indicator light; folding prongs; rubberized coating\", 'description_long' => \"TUMI T-TECH 2-USB Wall Charger: Compatible with most USB-powered devices; 2 charging ports; 2.4-amp/12W power; AutoSense charging technology; orange LED indicator light; folding prongs; rubberized coating\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumi-t-tech-2-usb-wall-charger-black/1564053.p?id=1219502527047&skuId=1564053', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564053_sa.jpg\"}', 'upc' => '030878006279', 'provider' => 'bestbuy'],\n ['name' => \"Proctor Silex - Compact Grill - Black\", 'description_short' => \"Compact design; nonstick surface; dishwasher-safe drip tray\", 'description_long' => \"Compact design; nonstick surface; dishwasher-safe drip tray\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/proctor-silex-compact-grill-black/1564682.p?id=1218269423493&skuId=1564682', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564682_rc.jpg\"}', 'upc' => '022333252185', 'provider' => 'bestbuy'],\n ['name' => \"Boogie - PRE-OWNED - Nintendo DS\", 'description_short' => \"Boogie with Boog to a brand new beat\", 'description_long' => \"Boogie with Boog to a brand new beat\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boogie-pre-owned-nintendo-ds/1564755.p?id=1218269697165&skuId=1564755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564755_sa.jpg\"}', 'upc' => '799007782902', 'provider' => 'bestbuy'],\n ['name' => \"Littlest Pet Shop Country Friends - PRE-OWNED - Nintendo DS\", 'description_short' => \"Party with your pint-size pets\", 'description_long' => \"Party with your pint-size pets\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/littlest-pet-shop-country-friends-pre-owned-nintendo-ds/1564773.p?id=1218269695470&skuId=1564773&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564773', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564773_sa.jpg\"}', 'upc' => '799007782926', 'provider' => 'bestbuy'],\n ['name' => \"Worms: A Space Oddity - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Embark on an odyssey of the oddest kind\", 'description_long' => \"Embark on an odyssey of the oddest kind\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worms-a-space-oddity-pre-owned-nintendo-wii/1564782.p?id=1218269700330&skuId=1564782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564782_sa.jpg\"}', 'upc' => '799007782933', 'provider' => 'bestbuy'],\n ['name' => \"PopCap Arcade Vol. 2 - PRE-OWNED - Xbox 360\", 'description_short' => \"Get three awesome arcade games in one package\", 'description_long' => \"Get three awesome arcade games in one package\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/popcap-arcade-vol-2-pre-owned-xbox-360/1564791.p?id=1218269693656&skuId=1564791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564791_sa.jpg\"}', 'upc' => '799007782940', 'provider' => 'bestbuy'],\n ['name' => \"Style Lab: Makeover - PRE-OWNED - Nintendo DS\", 'description_short' => \"Give yourself an array of new looks\", 'description_long' => \"Give yourself an array of new looks\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/style-lab-makeover-pre-owned-nintendo-ds/1564819.p?id=1218269692110&skuId=1564819&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564819', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564819_sa.jpg\"}', 'upc' => '799007782957', 'provider' => 'bestbuy'],\n ['name' => \"Broken Sword: The Shadow of the Templars - Director's Cut - PRE-OWNED - Nintendo DS\", 'description_short' => \"Investigate a sinister conspiracy\", 'description_long' => \"Investigate a sinister conspiracy\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broken-sword-the-shadow-of-the-templars-directors-cut-pre-owned-nintendo-ds/1564837.p?id=1218269696095&skuId=1564837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564837_sa.jpg\"}', 'upc' => '799007782971', 'provider' => 'bestbuy'],\n ['name' => \"Touchmaster 2 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Rule the reward system\", 'description_long' => \"Rule the reward system\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/touchmaster-2-pre-owned-nintendo-ds/1564846.p?id=1218269700004&skuId=1564846&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564846', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564846_sa.jpg\"}', 'upc' => '799007782988', 'provider' => 'bestbuy'],\n ['name' => \"Where's Waldo?: The Fantastic Journey - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Search for an iconic character in a new way\", 'description_long' => \"Search for an iconic character in a new way\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wheres-waldo-the-fantastic-journey-pre-owned-nintendo-wii/1564873.p?id=1218269694151&skuId=1564873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564873_500x500_sa.jpg\"}', 'upc' => '799007783015', 'provider' => 'bestbuy'],\n ['name' => \"Command & Conquer 3: Kane's Wrath Expansion Pack - PRE-OWNED - Xbox 360\", 'description_short' => \"Build, deploy and attack across the globe\", 'description_long' => \"Build, deploy and attack across the globe\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/command-conquer-3-kanes-wrath-expansion-pack-pre-owned-xbox-360/1564882.p?id=1218269697478&skuId=1564882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564882_sa.jpg\"}', 'upc' => '799007783022', 'provider' => 'bestbuy'],\n ['name' => \"The Bigs — PRE-OWNED - Nintendo Wii\", 'description_short' => \"Welcome to the big leagues\", 'description_long' => \"Welcome to the big leagues\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bigs-pre-owned-nintendo-wii/1564919.p?id=1218269698665&skuId=1564919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564919.jpg\"}', 'upc' => '799007783046', 'provider' => 'bestbuy'],\n ['name' => \"We Love Golf - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Play the game that&#039;s a hole in one\", 'description_long' => \"Play the game that&#039;s a hole in one\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-love-golf-pre-owned-nintendo-wii/1564946.p?id=1218269692605&skuId=1564946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564946_sa.jpg\"}', 'upc' => '799007783077', 'provider' => 'bestbuy'],\n ['name' => \"TV Show King Party - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Experience game show-style fun at home\", 'description_long' => \"Experience game show-style fun at home\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tv-show-king-party-pre-owned-nintendo-wii/1564955.p?id=1218269694079&skuId=1564955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564955_sa.jpg\"}', 'upc' => '799007783084', 'provider' => 'bestbuy'],\n ['name' => \"Petz Rescue: Endangered Paradise - PRE-OWNED - Nintendo DS\", 'description_short' => \"Rescue wild animals struggling to survive on a polluted island\", 'description_long' => \"Rescue wild animals struggling to survive on a polluted island\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-rescue-endangered-paradise-pre-owned-nintendo-ds/1564973.p?id=1218269696662&skuId=1564973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564973_sa.jpg\"}', 'upc' => '799007783107', 'provider' => 'bestbuy'],\n ['name' => \"Star Wars The Clone Wars: Republic Heroes - PRE-OWNED - Nintendo DS\", 'description_short' => \"Become your favorite Jedi or clone trooper\", 'description_long' => \"Become your favorite Jedi or clone trooper\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-wars-the-clone-wars-republic-heroes-pre-owned-nintendo-ds/1564991.p?id=1218269695343&skuId=1564991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1564991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1564\\/1564991_sa.jpg\"}', 'upc' => '799007783121', 'provider' => 'bestbuy'],\n ['name' => \"Puzzler Collection - PRE-OWNED - Nintendo DS\", 'description_short' => \"Classic puzzles get a new, interactive makeover\", 'description_long' => \"Classic puzzles get a new, interactive makeover\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/puzzler-collection-pre-owned-nintendo-ds/1565017.p?id=1218269688575&skuId=1565017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565017_sa.jpg\"}', 'upc' => '799007783145', 'provider' => 'bestbuy'],\n ['name' => \"Spongebob's Boating Bash - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Race fast-paced boats with Spongebob and his friends\", 'description_long' => \"Race fast-paced boats with Spongebob and his friends\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spongebobs-boating-bash-pre-owned-nintendo-wii/1565044.p?id=1218269698416&skuId=1565044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565044_sa.jpg\"}', 'upc' => '799007783176', 'provider' => 'bestbuy'],\n ['name' => \"Are You Smarter Than a 5th Grader? Game Time - PRE-OWNED - Nintendo DS\", 'description_short' => \"Do you have what it takes to make the grade?\", 'description_long' => \"Do you have what it takes to make the grade?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/are-you-smarter-than-a-5th-grader-game-time-pre-owned-nintendo-ds/1565053.p?id=1218269695535&skuId=1565053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565053_sa.jpg\"}', 'upc' => '799007783183', 'provider' => 'bestbuy'],\n ['name' => \"Command & Conquer: Red Alert 3 Ultimate Edition - PRE-OWNED - PlayStation 3\", 'description_short' => \"Command &amp; Conquer with this Ultimate Edition\", 'description_long' => \"Command &amp; Conquer with this Ultimate Edition\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/command-conquer-red-alert-3-ultimate-edition-pre-owned-playstation-3/1565062.p?id=1218269701121&skuId=1565062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565062_sa.jpg\"}', 'upc' => '799007783190', 'provider' => 'bestbuy'],\n ['name' => \"Raven Squad: Operation Hidden Dagger - PRE-OWNED - Xbox 360\", 'description_short' => \"Prove you have the toughness and the tactics to succeed in the jungle\", 'description_long' => \"Prove you have the toughness and the tactics to succeed in the jungle\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raven-squad-operation-hidden-dagger-pre-owned-xbox-360/1565071.p?id=1218269701120&skuId=1565071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565071_sa.jpg\"}', 'upc' => '799007783206', 'provider' => 'bestbuy'],\n ['name' => \"WarioWare D.I.Y. - PRE-OWNED - Nintendo DS\", 'description_short' => \"Create your very own WarioWare microgame\", 'description_long' => \"Create your very own WarioWare microgame\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warioware-d-i-y-pre-owned-nintendo-ds/1565099.p?id=1218269696450&skuId=1565099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565099_sa.jpg\"}', 'upc' => '799007783213', 'provider' => 'bestbuy'],\n ['name' => \"SpongeBob SquarePants featuring Nicktoons: Globs of Doom - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Help save the Nickelodeon universe from Globulous and the Morphoids\", 'description_long' => \"Help save the Nickelodeon universe from Globulous and the Morphoids\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spongebob-squarepants-featuring-nicktoons-globs-of-doom-pre-owned-nintendo-wii/1565105.p?id=1218269700874&skuId=1565105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565105_sa.jpg\"}', 'upc' => '799007783220', 'provider' => 'bestbuy'],\n ['name' => \"Petz Dogz Fashion - PRE-OWNED - Nintendo DS\", 'description_short' => \"Design a fashion show with some of the cutest models you can imagine\", 'description_long' => \"Design a fashion show with some of the cutest models you can imagine\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-dogz-fashion-pre-owned-nintendo-ds/1565123.p?id=1218269696028&skuId=1565123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565123_sa.jpg\"}', 'upc' => '799007783244', 'provider' => 'bestbuy'],\n ['name' => \"Cold Stone Creamery: Scoop It Up - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Fulfill your ice cream fantasies as you create custom new combinations\", 'description_long' => \"Fulfill your ice cream fantasies as you create custom new combinations\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cold-stone-creamery-scoop-it-up-pre-owned-nintendo-wii/1565132.p?id=1218269693722&skuId=1565132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565132_sa.jpg\"}', 'upc' => '799007783251', 'provider' => 'bestbuy'],\n ['name' => \"Naruto: Clash of Ninja Revolution 2 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Put your ninja fighting skills to the test\", 'description_long' => \"Put your ninja fighting skills to the test\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naruto-clash-of-ninja-revolution-2-pre-owned-nintendo-wii/1565196.p?id=1218269694899&skuId=1565196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565196_sa.jpg\"}', 'upc' => '799007783305', 'provider' => 'bestbuy'],\n ['name' => \"Hannah Montana: Spotlight World Tour - PRE-OWNED - Nintendo Wii\", 'description_short' => \"See the world and become a pop star\", 'description_long' => \"See the world and become a pop star\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hannah-montana-spotlight-world-tour-pre-owned-nintendo-wii/1565211.p?id=1218269688647&skuId=1565211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565211_sa.jpg\"}', 'upc' => '799007783329', 'provider' => 'bestbuy'],\n ['name' => \"High School Musical 3: Senior Year — PRE-OWNED - Nintendo DS\", 'description_short' => \"Get ready for a rocking senior year\", 'description_long' => \"Get ready for a rocking senior year\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-school-musical-3-senior-year-pre-owned-nintendo-ds/1565239.p?id=1218269691296&skuId=1565239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565239.jpg\"}', 'upc' => '799007783336', 'provider' => 'bestbuy'],\n ['name' => \"Thrillville: Off the Rails - PRE-OWNED - Nintendo DS\", 'description_short' => \"Feel the rush of these awesome coasters\", 'description_long' => \"Feel the rush of these awesome coasters\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thrillville-off-the-rails-pre-owned-nintendo-ds/1565257.p?id=1218269693240&skuId=1565257&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565257_sa.jpg\"}', 'upc' => '799007783350', 'provider' => 'bestbuy'],\n ['name' => \"Disney Princess: Magical Jewels - PRE-OWNED - Nintendo DS\", 'description_short' => \"Can you restore the power of the kingdom?\", 'description_long' => \"Can you restore the power of the kingdom?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-princess-magical-jewels-pre-owned-nintendo-ds/1565266.p?id=1218269698977&skuId=1565266&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565266_sa.jpg\"}', 'upc' => '799007783367', 'provider' => 'bestbuy'],\n ['name' => \"LEGO Batman: The Videogame - PRE-OWNED - Nintendo DS\", 'description_short' => \"All the excitement of Batman, combined with the quirky fun of LEGO\", 'description_long' => \"All the excitement of Batman, combined with the quirky fun of LEGO\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lego-batman-the-videogame-pre-owned-nintendo-ds/1565275.p?id=1218269690408&skuId=1565275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565275_sa.jpg\"}', 'upc' => '799007783374', 'provider' => 'bestbuy'],\n ['name' => \"Peggle Dual Shot - PRE-OWNED - Nintendo DS\", 'description_short' => \"Experience a beloved arcade-style game in dual-screen presentation\", 'description_long' => \"Experience a beloved arcade-style game in dual-screen presentation\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peggle-dual-shot-pre-owned-nintendo-ds/1565284.p?id=1218269689036&skuId=1565284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565284_sa.jpg\"}', 'upc' => '799007783381', 'provider' => 'bestbuy'],\n ['name' => \"Sonic & SEGA All-Stars Racing - PRE-OWNED - Nintendo DS\", 'description_short' => \"Take on Sonic and his friends in this challenging, high-speed racing game\", 'description_long' => \"Take on Sonic and his friends in this challenging, high-speed racing game\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonic-sega-all-stars-racing-pre-owned-nintendo-ds/1565293.p?id=1218269693110&skuId=1565293&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565293_sa.jpg\"}', 'upc' => '799007783398', 'provider' => 'bestbuy'],\n ['name' => \"High School Musical 3: Senior Year DANCE - PRE-OWNED - PlayStation 2\", 'description_short' => \"Show you can dance like a true Wildcat\", 'description_long' => \"Show you can dance like a true Wildcat\", 'price' => 0.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-school-musical-3-senior-year-dance-pre-owned-playstation-2/1565309.p?id=1218269696726&skuId=1565309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565309_sa.jpg\"}', 'upc' => '799007783404', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Party Babyz - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Can babysitting be all fun and games?\", 'description_long' => \"Can babysitting be all fun and games?\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-party-babyz-pre-owned-nintendo-wii/1565372.p?id=1218269695908&skuId=1565372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565372_sa.jpg\"}', 'upc' => '799007783466', 'provider' => 'bestbuy'],\n ['name' => \"Iron Man 2 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Save the world as the one-and-only Iron Man\", 'description_long' => \"Save the world as the one-and-only Iron Man\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iron-man-2-pre-owned-playstation-3/1565381.p?id=1218269698540&skuId=1565381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565381_sa.jpg\"}', 'upc' => '799007783473', 'provider' => 'bestbuy'],\n ['name' => \"Carnival Games - PRE-OWNED - Nintendo DS\", 'description_short' => \"Step right up for handheld carnival excitement\", 'description_long' => \"Step right up for handheld carnival excitement\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carnival-games-pre-owned-nintendo-ds/1565414.p?id=1218269691670&skuId=1565414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565414_sa.jpg\"}', 'upc' => '799007783497', 'provider' => 'bestbuy'],\n ['name' => \"Mini Ninjas - PRE-OWNED - PlayStation 3\", 'description_short' => \"Unleash your pint-size power\", 'description_long' => \"Unleash your pint-size power\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mini-ninjas-pre-owned-playstation-3/1565423.p?id=1218269692851&skuId=1565423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565423_sa.jpg\"}', 'upc' => '799007783503', 'provider' => 'bestbuy'],\n ['name' => \"Calvin Tucker's Redneck Jamboree - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Prove you&#039;re a champion redneck\", 'description_long' => \"Prove you&#039;re a champion redneck\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/calvin-tuckers-redneck-jamboree-pre-owned-nintendo-wii/1565441.p?id=1218269696094&skuId=1565441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565441_sa.jpg\"}', 'upc' => '799007783527', 'provider' => 'bestbuy'],\n ['name' => \"Planet Puzzle League - PRE-OWNED - Nintendo DS\", 'description_short' => \"How Nintendo DS does puzzle games\", 'description_long' => \"How Nintendo DS does puzzle games\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/planet-puzzle-league-pre-owned-nintendo-ds/1565469.p?id=1218269699751&skuId=1565469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565469_sa.jpg\"}', 'upc' => '799007783534', 'provider' => 'bestbuy'],\n ['name' => \"Transformers: The Game - PRE-OWNED - PlayStation 3\", 'description_short' => \"Will you fight to save the Earth or fight to destroy it?\", 'description_long' => \"Will you fight to save the Earth or fight to destroy it?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-the-game-pre-owned-playstation-3/1565478.p?id=1218269695783&skuId=1565478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565478_sa.jpg\"}', 'upc' => '799007783541', 'provider' => 'bestbuy'],\n ['name' => \"Star Wars Battlefront: Elite Squadron - PRE-OWNED - Nintendo DS\", 'description_short' => \"Dominate battlefields throughout the galaxy\", 'description_long' => \"Dominate battlefields throughout the galaxy\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-wars-battlefront-elite-squadron-pre-owned-nintendo-ds/1565487.p?id=1218269700205&skuId=1565487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565487_sa.jpg\"}', 'upc' => '799007783558', 'provider' => 'bestbuy'],\n ['name' => \"Petz Catz 2 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Who wouldn&#039;t want to care for a kitty?\", 'description_long' => \"Who wouldn&#039;t want to care for a kitty?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-catz-2-pre-owned-nintendo-ds/1565496.p?id=1218269700998&skuId=1565496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565496_sa.jpg\"}', 'upc' => '799007783565', 'provider' => 'bestbuy'],\n ['name' => \"Batman: The Brave and the Bold The Videogame - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Sometimes even the Caped Crusader could use a little help\", 'description_long' => \"Sometimes even the Caped Crusader could use a little help\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/batman-the-brave-and-the-bold-the-videogame-pre-owned-nintendo-wii/1565511.p?id=1218269696219&skuId=1565511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565511_sa.jpg\"}', 'upc' => '799007783589', 'provider' => 'bestbuy'],\n ['name' => \"Blazing Angels 2: Secret Missions of WWII - PRE-OWNED - PlayStation 3\", 'description_short' => \"Save the world from the Third Reich\", 'description_long' => \"Save the world from the Third Reich\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blazing-angels-2-secret-missions-of-wwii-pre-owned-playstation-3/1565548.p?id=1218269700556&skuId=1565548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565548_sa.jpg\"}', 'upc' => '799007783602', 'provider' => 'bestbuy'],\n ['name' => \"Kane and Lynch 2: Dog Days - PRE-OWNED - PlayStation 3\", 'description_short' => \"Escape from Shanghai with a psychopath at your side\", 'description_long' => \"Escape from Shanghai with a psychopath at your side\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kane-and-lynch-2-dog-days-pre-owned-playstation-3/1565557.p?id=1218269695279&skuId=1565557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565557_sa.jpg\"}', 'upc' => '799007783619', 'provider' => 'bestbuy'],\n ['name' => \"Madagascar: Escape 2 Africa - PRE-OWNED - PlayStation 3\", 'description_short' => \"Return to Madagascar for a thrilling new adventure\", 'description_long' => \"Return to Madagascar for a thrilling new adventure\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madagascar-escape-2-africa-pre-owned-playstation-3/1565609.p?id=1218269694965&skuId=1565609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565609_sa.jpg\"}', 'upc' => '799007783664', 'provider' => 'bestbuy'],\n ['name' => \"Are You Smarter Than a 5th Grader?: Make the Grade - PRE-OWNED - Nintendo DS\", 'description_short' => \"You knew the answers when you were a kid, but how well do you know them now?\", 'description_long' => \"You knew the answers when you were a kid, but how well do you know them now?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/are-you-smarter-than-a-5th-grader-make-the-grade-pre-owned-nintendo-ds/1565663.p?id=1218269697973&skuId=1565663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565663_sa.jpg\"}', 'upc' => '799007783725', 'provider' => 'bestbuy'],\n ['name' => \"Bakugan Battle Brawlers: Battle Training - PRE-OWNED - Nintendo DS\", 'description_short' => \"Become a master of Bakugan training\", 'description_long' => \"Become a master of Bakugan training\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bakugan-battle-brawlers-battle-training-pre-owned-nintendo-ds/1565718.p?id=1218269698787&skuId=1565718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565718_sa.jpg\"}', 'upc' => '799007783763', 'provider' => 'bestbuy'],\n ['name' => \"Shrek Forever After: The Final Chapter - PRE-OWNED - PlayStation 3\", 'description_short' => \"Save Far, Far Away from the devious Rumpelstiltskin\", 'description_long' => \"Save Far, Far Away from the devious Rumpelstiltskin\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shrek-forever-after-the-final-chapter-pre-owned-playstation-3/1565727.p?id=1218269700076&skuId=1565727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565727_sa.jpg\"}', 'upc' => '799007783770', 'provider' => 'bestbuy'],\n ['name' => \"Driver: Parallel Lines - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Are you ready for the streets of NYC?\", 'description_long' => \"Are you ready for the streets of NYC?\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/driver-parallel-lines-pre-owned-nintendo-wii/1565781.p?id=1218269694584&skuId=1565781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565781_sa.jpg\"}', 'upc' => '799007783831', 'provider' => 'bestbuy'],\n ['name' => \"Marvel: Ultimate Alliance 2 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Choose your side in an epic superhero civil war\", 'description_long' => \"Choose your side in an epic superhero civil war\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marvel-ultimate-alliance-2-pre-owned-nintendo-ds/1565818.p?id=1218269699560&skuId=1565818&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565818', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565818_sa.jpg\"}', 'upc' => '799007783855', 'provider' => 'bestbuy'],\n ['name' => \"Jillian Michaels Fitness Ultimatum 2010 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Get in shape with the help of a fitness expert\", 'description_long' => \"Get in shape with the help of a fitness expert\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jillian-michaels-fitness-ultimatum-2010-pre-owned-nintendo-wii/1565836.p?id=1218269692480&skuId=1565836&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565836_sa.jpg\"}', 'upc' => '799007783879', 'provider' => 'bestbuy'],\n ['name' => \"Sonny with a Chance - PRE-OWNED - Nintendo DS\", 'description_short' => \"Play along with Sonny and friends in an exciting adventure inspired by the hit TV show\", 'description_long' => \"Play along with Sonny and friends in an exciting adventure inspired by the hit TV show\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonny-with-a-chance-pre-owned-nintendo-ds/1565863.p?id=1218269689818&skuId=1565863&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565863_sa.jpg\"}', 'upc' => '799007783909', 'provider' => 'bestbuy'],\n ['name' => \"Twin Strike: Operation Thunder - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Keep the citizens safe by engaging the enemy in mid-air\", 'description_long' => \"Keep the citizens safe by engaging the enemy in mid-air\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twin-strike-operation-thunder-pre-owned-nintendo-wii/1565881.p?id=1218269697656&skuId=1565881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565881_sa.jpg\"}', 'upc' => '799007783923', 'provider' => 'bestbuy'],\n ['name' => \"Chief - FIT Fixed TV Wall Mount for Most 40\\\" - 63\\\" Flat-Panel TVs - Black\", 'description_short' => \"Compatible with most 43&quot; - 63&quot; flat-panel TVs; wall mount; hinged design; open wall plate; GlideLock with kickstand\", 'description_long' => \"Compatible with most 43&quot; - 63&quot; flat-panel TVs; wall mount; hinged design; open wall plate; GlideLock with kickstand\", 'price' => 119.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chief-fit-fixed-tv-wall-mount-for-most-40-63-flat-panel-tvs-black/1565918.p?id=1218269423690&skuId=1565918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1565918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1565\\/1565918_rc.jpg\"}', 'upc' => '841872141091', 'provider' => 'bestbuy'],\n ['name' => \"Seven13, Vol. 4 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seven13-vol-4-pa-cd/1567088.p?id=2173817&skuId=1567088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567088_sa.jpg\"}', 'upc' => '678394100530', 'provider' => 'bestbuy'],\n ['name' => \"Rust Colors - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rust-colors-cd/1567097.p?id=2167740&skuId=1567097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567097_sa.jpg\"}', 'upc' => '633757028128', 'provider' => 'bestbuy'],\n ['name' => \"Terminal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/terminal-cd/1567103.p?id=2166477&skuId=1567103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567103_sa.jpg\"}', 'upc' => '880270332427', 'provider' => 'bestbuy'],\n ['name' => \"Bad Choices Made Easy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-choices-made-easy-cd/1567112.p?id=2154805&skuId=1567112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567112_sa.jpg\"}', 'upc' => '782388068727', 'provider' => 'bestbuy'],\n ['name' => \"I Believe: Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-believe-live-cd/1567121.p?id=2167756&skuId=1567121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567121_sa.jpg\"}', 'upc' => '747656309223', 'provider' => 'bestbuy'],\n ['name' => \"We Were So Turned On: A Tribute to David Bowie - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-were-so-turned-on-a-tribute-to-david-bowie-cd-various/1567158.p?id=2147387&skuId=1567158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567158_sa.jpg\"}', 'upc' => '5055300311382', 'provider' => 'bestbuy'],\n ['name' => \"Life Gone Wild - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/life-gone-wild-cd/1567194.p?id=2270698&skuId=1567194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567194.jpg\"}', 'upc' => '894587001396', 'provider' => 'bestbuy'],\n ['name' => \"Light of a Vaster Dark [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/light-of-a-vaster-dark-digipak-cd/1567228.p?id=2162909&skuId=1567228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567228.jpg\"}', 'upc' => '781484037125', 'provider' => 'bestbuy'],\n ['name' => \"Chicano Rap Bangers, Vol. 4 [Box] [PA] - CD - Various Box\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicano-rap-bangers-vol-4-box-pa-cd-various-box/1567237.p?id=2167757&skuId=1567237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567237_sa.jpg\"}', 'upc' => '809367216624', 'provider' => 'bestbuy'],\n ['name' => \"The Lost Tapes of Suave House [PA] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lost-tapes-of-suave-house-pa-cd-various/1567255.p?id=2170852&skuId=1567255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567255_sa.jpg\"}', 'upc' => '894537002701', 'provider' => 'bestbuy'],\n ['name' => \"Common Ground - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/common-ground-cd/1567264.p?id=2166172&skuId=1567264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567264_sa.jpg\"}', 'upc' => '843190007820', 'provider' => 'bestbuy'],\n ['name' => \"Bangs & Works, Vol. 1: A Chicago Footwork... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bangs-works-vol-1-a-chicago-footwork-cd-various/1567273.p?id=2176351&skuId=1567273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567273_sa.jpg\"}', 'upc' => '600116829023', 'provider' => 'bestbuy'],\n ['name' => \"Crunkest Hits [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crunkest-hits-pa-cd/1567282.p?id=2192705&skuId=1567282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567282_sa.jpg\"}', 'upc' => '016581702028', 'provider' => 'bestbuy'],\n ['name' => \"Love Clowns! [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-clowns-digipak-cd/1567291.p?id=2168723&skuId=1567291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567291_sa.jpg\"}', 'upc' => '600385205924', 'provider' => 'bestbuy'],\n ['name' => \"Lost Where I Belong - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-where-i-belong-cd/1567334.p?id=2138446&skuId=1567334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567334_sa.jpg\"}', 'upc' => '5021392589121', 'provider' => 'bestbuy'],\n ['name' => \"Paradise Valley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paradise-valley-cd/1567458.p?id=2728599&skuId=1567458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567458_sa.jpg\"}', 'upc' => '888837564823', 'provider' => 'bestbuy'],\n ['name' => \"Matrix Audio - NRG Portable Speaker - Black\", 'description_short' => \"Built-in 3W amplifier; XBA (Xcavated Bass Amplifier); 40mm drivers; 3.5mm headphone jack\", 'description_long' => \"Built-in 3W amplifier; XBA (Xcavated Bass Amplifier); 40mm drivers; 3.5mm headphone jack\", 'price' => 30.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matrix-audio-nrg-portable-speaker-black/1567467.p?id=1219055526940&skuId=1567467', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567467_sa.jpg\"}', 'upc' => '609207352778', 'provider' => 'bestbuy'],\n ['name' => \"Matrix Audio - ONE Portable Bluetooth Speaker - Black\", 'description_short' => \"Compatible with most portable audio devices; built-in 3.5W amplifier; Bluetooth technology; XBA (Xcavated Bass Amplifier); 45mm drivers; 3.5mm headphone jack\", 'description_long' => \"Compatible with most portable audio devices; built-in 3.5W amplifier; Bluetooth technology; XBA (Xcavated Bass Amplifier); 45mm drivers; 3.5mm headphone jack\", 'price' => 70.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matrix-audio-one-portable-bluetooth-speaker-black/1567485.p?id=1219055524590&skuId=1567485', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567485_500x500_sa.jpg\"}', 'upc' => '609207352877', 'provider' => 'bestbuy'],\n ['name' => \"Matrix Audio - NRG Portable Speaker - Red\", 'description_short' => \"Built-in 3W amplifier; XBA (Xcavated Bass Amplifier); 40mm drivers; 3.5mm headphone jack\", 'description_long' => \"Built-in 3W amplifier; XBA (Xcavated Bass Amplifier); 40mm drivers; 3.5mm headphone jack\", 'price' => 30.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matrix-audio-nrg-portable-speaker-red/1567494.p?id=1219055523578&skuId=1567494', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567494_sa.jpg\"}', 'upc' => '609207352792', 'provider' => 'bestbuy'],\n ['name' => \"Made Up Mind [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/made-up-mind-digipak-cd/1567519.p?id=2721854&skuId=1567519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1567519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1567\\/1567519_sa.jpg\"}', 'upc' => '888837118224', 'provider' => 'bestbuy'],\n ['name' => \"HP - Refurbished 23\\\" Touch-Screen All-In-One - Intel Core i5 - 8GB Memory - 1TB Solid State Hybrid Drive - Multi\", 'description_short' => \"RefurbishedWindows 8.1Technical details: 4th Gen Intel&#174; Core&#8482; i5 processor; 23&quot; display; 8GB memory; 1TB SSHDSpecial features: Touch screen; built-in wireless networking\", 'description_long' => \"RefurbishedWindows 8.1Technical details: 4th Gen Intel&#174; Core&#8482; i5 processor; 23&quot; display; 8GB memory; 1TB SSHDSpecial features: Touch screen; built-in wireless networking\", 'price' => 679.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-refurbished-23-touch-screen-all-in-one-intel-core-i5-8gb-memory-1tb-solid-state-hybrid-drive-multi/1568013.p?id=1219502527113&skuId=1568013', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1568013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1568\\/1568013_sa.jpg\"}', 'upc' => '888793435380', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - Contractor Series 8\\\" 2-Way In-Ceiling Speakers (Pair) - White/Black\", 'description_short' => \"50W peak power handling (25W continuous); 8&quot; polypropylene woofer; 1/2&quot; moisture-resistant Mylar tweeter; paintable frame and grille\", 'description_long' => \"50W peak power handling (25W continuous); 8&quot; polypropylene woofer; 1/2&quot; moisture-resistant Mylar tweeter; paintable frame and grille\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-contractor-series-8-2-way-in-ceiling-speakers-pair-white-black/1568032.p?id=1219057147532&skuId=1568032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1568032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1568\\/1568032_sa.jpg\"}', 'upc' => '5709009940281', 'provider' => 'bestbuy'],\n ['name' => \"Jamo - Contractor Series 6-1/2\\\" 2-Way In-Wall Speakers (Pair) - White\", 'description_short' => \"50W peak power handling (25W continuous); 6-1/2&quot; polypropylene woofer; 1/2&quot; Mylar tweeter; moisture-resistant; paintable frame and grille\", 'description_long' => \"50W peak power handling (25W continuous); 6-1/2&quot; polypropylene woofer; 1/2&quot; Mylar tweeter; moisture-resistant; paintable frame and grille\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamo-contractor-series-6-1-2-2-way-in-wall-speakers-pair-white/1568041.p?id=1219057148487&skuId=1568041', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1568041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1568\\/1568041_sa.jpg\"}', 'upc' => '5709009940045', 'provider' => 'bestbuy'],\n ['name' => \"Super Eruption (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-eruption-dvd/1568096.p?id=2708730&skuId=1568096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1568096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1568\\/1568096_sa.jpg\"}', 'upc' => '796019827331', 'provider' => 'bestbuy'],\n ['name' => \"Matrix Audio - ONE Portable Bluetooth Speaker - White\", 'description_short' => \"Compatible with most portable audio devices; built-in 3.5W amplifier; Bluetooth technology; XBA (Xcavated Bass Amplifier); 45mm drivers; 3.5mm headphone jack\", 'description_long' => \"Compatible with most portable audio devices; built-in 3.5W amplifier; Bluetooth technology; XBA (Xcavated Bass Amplifier); 45mm drivers; 3.5mm headphone jack\", 'price' => 70.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matrix-audio-one-portable-bluetooth-speaker-white/1568139.p?id=1219055524022&skuId=1568139', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1568139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1568\\/1568139_sa.jpg\"}', 'upc' => '609207352884', 'provider' => 'bestbuy'],\n ['name' => \"iRobot - Replenishment Kit for Roomba 800 and 900 series Vacuum-Cleaning Robots - Black/Gray/White\", 'description_short' => \"Compatible with Roomba 800 and 900 series vacuum-cleaning robots; contains 3 HEPA filters, 1 set of tangle-free AeroForce extractors and 2 spinning side brushes\", 'description_long' => \"Compatible with Roomba 800 and 900 series vacuum-cleaning robots; contains 3 HEPA filters, 1 set of tangle-free AeroForce extractors and 2 spinning side brushes\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/irobot-replenishment-kit-for-roomba-800-and-900-series-vacuum-cleaning-robots-black-gray-white/1569003.p?id=1219502528053&skuId=1569003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1569003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1569\\/1569003_sa.jpg\"}', 'upc' => '885155006240', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Various Artists: Chart Hits of 2012-2013 Piano/Vocal/Guitar Songbook\", 'description_short' => \"Piano, vocal and guitar songbook featuring 16 hit songs composed by various artists and released between 2012 and 2013\", 'description_long' => \"Piano, vocal and guitar songbook featuring 16 hit songs composed by various artists and released between 2012 and 2013\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-various-artists-chart-hits-of-2012-2013-piano-vocal-guitar-songbook/1569013.p?id=1219055525408&skuId=1569013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1569013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1569\\/1569013_500x500_sa.jpg\"}', 'upc' => '884088897772', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Various Composers: The Easy Christmas Songbook\", 'description_short' => \"Piano, vocal and guitar songbook with 70 favorite Christmas songs\", 'description_long' => \"Piano, vocal and guitar songbook with 70 favorite Christmas songs\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-various-composers-the-easy-christmas-songbook/1569262.p?id=1219055524597&skuId=1569262', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1569262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1569\\/1569262_500x500_sa.jpg\"}', 'upc' => '884088919412', 'provider' => 'bestbuy'],\n ['name' => \"Metra - License Plate Back-Up Camera - Black\", 'description_short' => \"170&#176; viewing angle; water-resistant design; license-plate mount; selectable parking-assist lines; ABS plastic material\", 'description_long' => \"170&#176; viewing angle; water-resistant design; license-plate mount; selectable parking-assist lines; ABS plastic material\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-license-plate-back-up-camera-black/1570003.p?id=1219055952421&skuId=1570003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570003_sa.jpg\"}', 'upc' => '086429281268', 'provider' => 'bestbuy'],\n ['name' => \"1-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-year-accidental-protection-plan-geek-squad/1570049.p?id=1218269693545&skuId=1570049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015700498', 'provider' => 'bestbuy'],\n ['name' => \"1-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-year-accidental-protection-plan-geek-squad/1570076.p?id=1218269694470&skuId=1570076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015700764', 'provider' => 'bestbuy'],\n ['name' => \"Caddyshack (DVD) (Anniversary Edition) (Remastered)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caddyshack-dvd-anniversary-edition-remastered/1570164.p?id=47263&skuId=1570164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1850\\/18501614.jpg\"}', 'upc' => '883929112654', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Externally Vented Range Hood - Stainless Steel\", 'description_short' => \"Push-button controls; 300 cfm horizontal exhaust/275 cfm vertical exhaust capacity; 3-speed exhaust fan; dishwasher-safe mesh filters; fluorescent lighting\", 'description_long' => \"Push-button controls; 300 cfm horizontal exhaust/275 cfm vertical exhaust capacity; 3-speed exhaust fan; dishwasher-safe mesh filters; fluorescent lighting\", 'price' => 499.99, 'sale_price' => 449.99, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-externally-vented-range-hood-stainless-steel/1570225.p?id=1218269693841&skuId=1570225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570225_sa.jpg\"}', 'upc' => '883049213989', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Externally Vented Range Hood - Stainless Steel\", 'description_short' => \"Push-button controls; 300 cfm exhaust capacity; 3-speed exhaust fan; dishwasher-safe mesh filters; fluorescent lighting\", 'description_long' => \"Push-button controls; 300 cfm exhaust capacity; 3-speed exhaust fan; dishwasher-safe mesh filters; fluorescent lighting\", 'price' => 549.99, 'sale_price' => 494.99, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-externally-vented-range-hood-stainless-steel/1570252.p?id=1218269690972&skuId=1570252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570252_sa.jpg\"}', 'upc' => '883049213941', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 36\\\" Externally Vented Range Hood - Stainless Steel\", 'description_short' => \"Push-button controls; 300 cfm exhaust capacity; 3-speed exhaust fan; dishwasher-safe mesh filters; fluorescent lighting\", 'description_long' => \"Push-button controls; 300 cfm exhaust capacity; 3-speed exhaust fan; dishwasher-safe mesh filters; fluorescent lighting\", 'price' => 599.99, 'sale_price' => 539.99, 'url' => 'http://www.bestbuy.com/site/whirlpool-36-externally-vented-range-hood-stainless-steel/1570261.p?id=1218269692727&skuId=1570261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570261_sa.jpg\"}', 'upc' => '883049213958', 'provider' => 'bestbuy'],\n ['name' => \"Legend of the Guardians: The Owls Of Ga'Hoole (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legend-of-the-guardians-the-owls-of-gahoole-blu-ray-disc/1570313.p?id=2169765&skuId=1570313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570313_sa.jpg\"}', 'upc' => '883929106578', 'provider' => 'bestbuy'],\n ['name' => \"Legend of the Guardians: The Owls Of Ga'Hoole (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legend-of-the-guardians-the-owls-of-gahoole-dvd/1570322.p?id=2169765&skuId=1570322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570322_sa.jpg\"}', 'upc' => '883929106592', 'provider' => 'bestbuy'],\n ['name' => \"The Town (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-town-dvd/1570359.p?id=2168924&skuId=1570359&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570359_sa.jpg\"}', 'upc' => '883929106288', 'provider' => 'bestbuy'],\n ['name' => \"Nip/Tuck: The Complete Series [35 Discs] (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nip-tuck-the-complete-series-35-discs-boxed-set-dvd/1570368.p?id=2140642&skuId=1570368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570368.jpg\"}', 'upc' => '883929150458', 'provider' => 'bestbuy'],\n ['name' => \"Platinum Series - Kickstand Case with Holster for Motorola Moto X Cell Phones - Black\", 'description_short' => \"Compatible with Motorola Moto X cell phones; polycarbonate plastic material; built-in metal kickstand; felt-lined holster belt clip; snap-together design\", 'description_long' => \"Compatible with Motorola Moto X cell phones; polycarbonate plastic material; built-in metal kickstand; felt-lined holster belt clip; snap-together design\", 'price' => 39.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/platinum-series-kickstand-case-with-holster-for-motorola-moto-x-cell-phones-black/1570428.p?id=1219055524973&skuId=1570428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570428_sa.jpg\"}', 'upc' => '849718002179', 'provider' => 'bestbuy'],\n ['name' => \"Platinum Series - Case with Holster for Motorola Moto X Cell Phones - Black\", 'description_short' => \"Compatible with Motorola Moto X cell phones; polycarbonate plastic material; felt-lined holster belt clip; snap-together design\", 'description_long' => \"Compatible with Motorola Moto X cell phones; polycarbonate plastic material; felt-lined holster belt clip; snap-together design\", 'price' => 34.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/platinum-series-case-with-holster-for-motorola-moto-x-cell-phones-black/1570446.p?id=1219055526040&skuId=1570446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570446_sa.jpg\"}', 'upc' => '849718002162', 'provider' => 'bestbuy'],\n ['name' => \"Incredible Mel Brooks: An... [CD & DVD] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 68.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incredible-mel-brooks-an-cd-dvd-dvd/1570455.p?id=2604125&skuId=1570455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570455.jpg\"}', 'upc' => '826663136616', 'provider' => 'bestbuy'],\n ['name' => \"Grateful Dead: A View From the Vault III (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grateful-dead-a-view-from-the-vault-iii-dvd/1570543.p?id=57726&skuId=1570543&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570543_sa.jpg\"}', 'upc' => '826663142457', 'provider' => 'bestbuy'],\n ['name' => \"Kick-Ass 2 [PA] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kick-ass-2-pa-cd-original-soundtrack/1570552.p?id=2728313&skuId=1570552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570552_sa.jpg\"}', 'upc' => '888837574723', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1570561.p?id=2722084&skuId=1570561&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570561_sa.jpg\"}', 'upc' => '888837164825', 'provider' => 'bestbuy'],\n ['name' => \"Grateful Dead: A View From the Vault, Vol. 4 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grateful-dead-a-view-from-the-vault-vol-4-dvd/1570589.p?id=52501&skuId=1570589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570589_sa.jpg\"}', 'upc' => '826663142464', 'provider' => 'bestbuy'],\n ['name' => \"Carrie Underwood: The Blown Away Tour - Live (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carrie-underwood-the-blown-away-tour-live-dvd/1570598.p?id=2728600&skuId=1570598&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1570598', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1570\\/1570598_sa.jpg\"}', 'upc' => '888837294591', 'provider' => 'bestbuy'],\n ['name' => \"Samsung - 1.7 Cu. Ft. SLIM FRY Over-the-Range Convection Microwave - Stainless-Steel\", 'description_short' => \"950W of power; glass touch controls; 10 power levels; auto defrost; sensor reheat; 3-speed fan; 300 cfm ventilation system; Simple Clean Filter and charcoal/grease filter\", 'description_long' => \"950W of power; glass touch controls; 10 power levels; auto defrost; sensor reheat; 3-speed fan; 300 cfm ventilation system; Simple Clean Filter and charcoal/grease filter\", 'price' => 599.99, 'sale_price' => 449.99, 'url' => 'http://www.bestbuy.com/site/samsung-1-7-cu-ft-slim-fry-over-the-range-convection-microwave-stainless-steel/1571002.p?id=1219055507047&skuId=1571002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571002_sa.jpg\"}', 'upc' => '887276851952', 'provider' => 'bestbuy'],\n ['name' => \"The Disappearance of Alice Creed (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-disappearance-of-alice-creed-dvd/1571127.p?id=2154402&skuId=1571127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571127_sa.jpg\"}', 'upc' => '013132174396', 'provider' => 'bestbuy'],\n ['name' => \"Remember to Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remember-to-live-cd/1571172.p?id=2168221&skuId=1571172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571172.jpg\"}', 'upc' => '602527555065', 'provider' => 'bestbuy'],\n ['name' => \"Apollo Kids [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/apollo-kids-pa-cd/1571181.p?id=2170851&skuId=1571181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571181_sa.jpg\"}', 'upc' => '602527562391', 'provider' => 'bestbuy'],\n ['name' => \"Bombay Bellywood - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bombay-bellywood-cd/1571215.p?id=2170849&skuId=1571215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571215_sa.jpg\"}', 'upc' => '894169008423', 'provider' => 'bestbuy'],\n ['name' => \"Pretty Hate Machine [2010 Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pretty-hate-machine-2010-remaster-cd/1571233.p?id=2167758&skuId=1571233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571233_sa.jpg\"}', 'upc' => '602527567730', 'provider' => 'bestbuy'],\n ['name' => \"Ironiclast [Explicit Version] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ironiclast-explicit-version-pa-cd/1571242.p?id=2170850&skuId=1571242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571242_sa.jpg\"}', 'upc' => '602527507125', 'provider' => 'bestbuy'],\n ['name' => \"Mis Favoritas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mis-favoritas-cd/1571288.p?id=2166532&skuId=1571288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571288_sa.jpg\"}', 'upc' => '886978128621', 'provider' => 'bestbuy'],\n ['name' => \"Forever - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forever-cd/1571297.p?id=2166528&skuId=1571297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571297_sa.jpg\"}', 'upc' => '654827020422', 'provider' => 'bestbuy'],\n ['name' => \"La Marcha de la Vida - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-marcha-de-la-vida-cd/1571303.p?id=2166704&skuId=1571303&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571303_sa.jpg\"}', 'upc' => '728028044386', 'provider' => 'bestbuy'],\n ['name' => \"Mis Favoritas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mis-favoritas-cd/1571349.p?id=2166537&skuId=1571349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571349.jpg\"}', 'upc' => '886978129222', 'provider' => 'bestbuy'],\n ['name' => \"Love Letter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-letter-cd/1571358.p?id=2166538&skuId=1571358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571358_sa.jpg\"}', 'upc' => '886978087423', 'provider' => 'bestbuy'],\n ['name' => \"Strip Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strip-me-cd/1571367.p?id=2154038&skuId=1571367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571367_sa.jpg\"}', 'upc' => '886977442223', 'provider' => 'bestbuy'],\n ['name' => \"Sugar [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sugar-lp-vinyl/1571376.p?id=2168213&skuId=1571376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571376_sa.jpg\"}', 'upc' => '886977682810', 'provider' => 'bestbuy'],\n ['name' => \"Sing-Off: Harmonies for the Holidays... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sing-off-harmonies-for-the-holidays-cd-original-soundtrack/1571427.p?id=2165251&skuId=1571427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571427_sa.jpg\"}', 'upc' => '886978149428', 'provider' => 'bestbuy'],\n ['name' => \"Frank Sinatra: Concert for the Americas (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frank-sinatra-concert-for-the-americas-dvd/1571463.p?id=2158869&skuId=1571463&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571463_sa.jpg\"}', 'upc' => '826663122275', 'provider' => 'bestbuy'],\n ['name' => \"Planet Pit [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/planet-pit-pa-cd/1571472.p?id=2224958&skuId=1571472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1571\\/1571472_sa.jpg\"}', 'upc' => '886976906023', 'provider' => 'bestbuy'],\n ['name' => \"1-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-year-accidental-protection-plan-geek-squad/1571579.p?id=1218269699823&skuId=1571579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015715799', 'provider' => 'bestbuy'],\n ['name' => \"1-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-year-accidental-protection-plan-geek-squad/1571603.p?id=1218269693362&skuId=1571603&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571603', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015716031', 'provider' => 'bestbuy'],\n ['name' => \"1-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-year-accidental-protection-plan-geek-squad/1571621.p?id=1218269697542&skuId=1571621&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1571621', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015716215', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1572001.p?id=2722103&skuId=1572001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1572001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1572\\/1572001_sa.jpg\"}', 'upc' => '888837124423', 'provider' => 'bestbuy'],\n ['name' => \"AEE - TORUK AP10 HD FPV Drone - White\", 'description_short' => \"AEE TORUK AP10 HD FPV Drone: 4x digital zoom; digital still mode; integrated GPS flight control; GPS-based auto pilot; 2 flight control modes; 2.4GHz Wi-Fi downlink; compatible with select Android and Apple iOS smartphones\", 'description_long' => \"AEE TORUK AP10 HD FPV Drone: 4x digital zoom; digital still mode; integrated GPS flight control; GPS-based auto pilot; 2 flight control modes; 2.4GHz Wi-Fi downlink; compatible with select Android and Apple iOS smartphones\", 'price' => 799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aee-toruk-ap10-hd-fpv-drone-white/1572028.p?id=1219502528760&skuId=1572028', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1572028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1572\\/1572028_rc.jpg\"}', 'upc' => '814066016239', 'provider' => 'bestbuy'],\n ['name' => \"AEE - HD Action Camera - Black\", 'description_short' => \"AEE HD Action Camera: 4x digital zoom; compact design; low-light recording; 8 high-definition recording modes; 8-frame photo burst mode; built-in Wi-Fi; includes waterproof housing\", 'description_long' => \"AEE HD Action Camera: 4x digital zoom; compact design; low-light recording; 8 high-definition recording modes; 8-frame photo burst mode; built-in Wi-Fi; includes waterproof housing\", 'price' => 329.99, 'sale_price' => 254.99, 'url' => 'http://www.bestbuy.com/site/aee-hd-action-camera-black/1572046.p?id=1219502528178&skuId=1572046', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1572046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1572\\/1572046_rc.jpg\"}', 'upc' => '814066016208', 'provider' => 'bestbuy'],\n ['name' => \"AEE - HD Action Camera - Black\", 'description_short' => \"AEE HD Action Camera: 4x digital zoom; compact design; low-light recording; 3 high-definition video recording modes; 8-frame photo burst mode; slow motion recording; PIV (Photo in Video) function; built-in Wi-Fi; includes waterproof housing\", 'description_long' => \"AEE HD Action Camera: 4x digital zoom; compact design; low-light recording; 3 high-definition video recording modes; 8-frame photo burst mode; slow motion recording; PIV (Photo in Video) function; built-in Wi-Fi; includes waterproof housing\", 'price' => 229.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aee-hd-action-camera-black/1572073.p?id=1219502529341&skuId=1572073', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1572073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1572\\/1572073_rc.jpg\"}', 'upc' => '814066016215', 'provider' => 'bestbuy'],\n ['name' => \"FoodSaver - V2244 Vacuum Sealer - Black\", 'description_short' => \"Crush-free control; double-wide sealing strip; compact design; easy-clean antibacterial drip tray; accessory port\", 'description_long' => \"Crush-free control; double-wide sealing strip; compact design; easy-clean antibacterial drip tray; accessory port\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/foodsaver-v2244-vacuum-sealer-black/1572074.p?id=1218270202186&skuId=1572074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1572074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1572\\/1572074_rc.jpg\"}', 'upc' => '053891103602', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1572117.p?id=2722094&skuId=1572117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1572117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1572\\/1572117_sa.jpg\"}', 'upc' => '888837113823', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1572135.p?id=2722086&skuId=1572135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1572135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1572\\/1572135_sa.jpg\"}', 'upc' => '888837165723', 'provider' => 'bestbuy'],\n ['name' => \"Carry On - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carry-on-cd/1572153.p?id=2736224&skuId=1572153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1572153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1572\\/1572153_sa.jpg\"}', 'upc' => '654367872123', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1572162.p?id=2722122&skuId=1572162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1572162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1572\\/1572162_sa.jpg\"}', 'upc' => '888837124225', 'provider' => 'bestbuy'],\n ['name' => \"The Imposter [8/13] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-imposter-8-13-cd/1572171.p?id=2717964&skuId=1572171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1572171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1572\\/1572171_sa.jpg\"}', 'upc' => '028948104284', 'provider' => 'bestbuy'],\n ['name' => \"Where You Stand - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-you-stand-cd/1573028.p?id=2719465&skuId=1573028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1573028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1573\\/1573028_sa.jpg\"}', 'upc' => '5055667602765', 'provider' => 'bestbuy'],\n ['name' => \"Turtle Beach - Ear Force XO SEVEN PRO Gaming Headset for Xbox One - Black/Green\", 'description_short' => \"Harness the power of immersive sound\", 'description_long' => \"Harness the power of immersive sound\", 'price' => 159.99, 'sale_price' => 106.99, 'url' => 'http://www.bestbuy.com/site/turtle-beach-ear-force-xo-seven-pro-gaming-headset-for-xbox-one-black-green/1573073.p?id=1219055953971&skuId=1573073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1573073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1573\\/1573073_sc.jpg\"}', 'upc' => '731855022281', 'provider' => 'bestbuy'],\n ['name' => \"CompuStar - RFID Hands-Free Keyless Entry Kit - Black\", 'description_short' => \"Compatible with CompuStar 6X00-type remote start and security system controllers; automatic unlock function; discreet auxiliary button; small form factor\", 'description_long' => \"Compatible with CompuStar 6X00-type remote start and security system controllers; automatic unlock function; discreet auxiliary button; small form factor\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/compustar-rfid-hands-free-keyless-entry-kit-black/1574018.p?id=1219055954447&skuId=1574018', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1574\\/1574018_sa.jpg\"}', 'upc' => '829543002131', 'provider' => 'bestbuy'],\n ['name' => \"1-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-year-accidental-protection-plan-geek-squad/1574036.p?id=1218270223930&skuId=1574036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015740364', 'provider' => 'bestbuy'],\n ['name' => \"1-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-year-accidental-protection-plan-geek-squad/1574045.p?id=1218270200603&skuId=1574045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015740456', 'provider' => 'bestbuy'],\n ['name' => \"1-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-year-accidental-protection-plan-geek-squad/1574054.p?id=1218270203469&skuId=1574054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015740548', 'provider' => 'bestbuy'],\n ['name' => \"1-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-year-accidental-protection-plan-geek-squad/1574063.p?id=1218270207944&skuId=1574063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015740630', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-accidental-protection-plan-geek-squad/1574072.p?id=1218270206423&skuId=1574072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015740722', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-accidental-protection-plan-geek-squad/1574081.p?id=1218270216646&skuId=1574081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015740814', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-accidental-protection-plan-geek-squad/1574106.p?id=1218270214011&skuId=1574106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015741064', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 179.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-accidental-protection-plan-geek-squad/1574115.p?id=1218270207417&skuId=1574115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015741156', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-accidental-protection-plan-geek-squad/1574124.p?id=1218270216770&skuId=1574124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015741248', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-accidental-protection-plan-geek-squad/1574133.p?id=1218270199570&skuId=1574133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015741330', 'provider' => 'bestbuy'],\n ['name' => \"Reason 7 Student and Teacher Edition - Mac|Windows\", 'description_short' => \"Record, mix and produce your musical vision\", 'description_long' => \"Record, mix and produce your musical vision\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reason-7-student-and-teacher-edition-macwindows/1574373.p?id=1219055952419&skuId=1574373', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1574\\/1574373_sa.jpg\"}', 'upc' => '884088920814', 'provider' => 'bestbuy'],\n ['name' => \"Thrustmaster - HOTAS Warthog Flight Stick - Multi\", 'description_short' => \"Compatible with HOTAS Cougar controllers; replica shape of a U.S. Air Force A-10C flight stick; H.E.A.R.T. (Hall Effect AccuRate Technology); 3D magnetic sensors; 19 action buttons; 8-way point-of-view hat\", 'description_long' => \"Compatible with HOTAS Cougar controllers; replica shape of a U.S. Air Force A-10C flight stick; H.E.A.R.T. (Hall Effect AccuRate Technology); 3D magnetic sensors; 19 action buttons; 8-way point-of-view hat\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thrustmaster-hotas-warthog-flight-stick-multi/1574558.p?id=1219055954446&skuId=1574558', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1574\\/1574558_sa.jpg\"}', 'upc' => '663296418258', 'provider' => 'bestbuy'],\n ['name' => \"Where You Stand... [CD & DVD] [Digipak] - CD - DVD (with Bonus Tracks) Limited Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-you-stand-cd-dvd-digipak-cd-dvd-with-bonus-tracks-limited-edition/1574585.p?id=2726022&skuId=1574585&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1574585', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1574\\/1574585.jpg\"}', 'upc' => '5055667602642', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 239.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-accidental-protection-plan-geek-squad/1575035.p?id=1218270222545&skuId=1575035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1575035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015750356', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-accidental-protection-plan-geek-squad/1575044.p?id=1218270203756&skuId=1575044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1575044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015750448', 'provider' => 'bestbuy'],\n ['name' => \"Long Forgotten Songs: B-Sides & Covers 2000-... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-forgotten-songs-b-sides-covers-2000-cd/1575071.p?id=2743515&skuId=1575071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1575071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1575\\/1575071_sa.jpg\"}', 'upc' => '602537489015', 'provider' => 'bestbuy'],\n ['name' => \"Hail to the King - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hail-to-the-king-cd/1575099.p?id=2736209&skuId=1575099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1575099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1575\\/1575099_sa.jpg\"}', 'upc' => '093624943099', 'provider' => 'bestbuy'],\n ['name' => \"Hail to the King [Deluxe CD + MP3] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hail-to-the-king-deluxe-cd-mp3-digipak-cd/1575105.p?id=2736208&skuId=1575105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1575105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1575\\/1575105_sa.jpg\"}', 'upc' => '093624942818', 'provider' => 'bestbuy'],\n ['name' => \"At Any Price (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-any-price-blu-ray-disc-ultraviolet-digital-copy/1575123.p?id=2729324&skuId=1575123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1575123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1575\\/1575123_sa.jpg\"}', 'upc' => '043396423367', 'provider' => 'bestbuy'],\n ['name' => \"At Any Price (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-any-price-dvd-ultraviolet-digital-copy/1575132.p?id=2729324&skuId=1575132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1575132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1575\\/1575132_sa.jpg\"}', 'upc' => '043396423398', 'provider' => 'bestbuy'],\n ['name' => \"Metra - ISO DIN Installation Kit for Most 1995 and Later Ford Vehicles - Black\", 'description_short' => \"Compatible with most 1995 and later Ford vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; ABS plastic material\", 'description_long' => \"Compatible with most 1995 and later Ford vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-iso-din-installation-kit-for-most-1995-and-later-ford-vehicles-black/1576016.p?id=1219055955761&skuId=1576016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576016_sa.jpg\"}', 'upc' => '086429281312', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 269.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-accidental-protection-plan-geek-squad/1576034.p?id=1218270202991&skuId=1576034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015760348', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576043.p?id=1218279315326&skuId=1576043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015760430', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576052.p?id=1218279315131&skuId=1576052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015760522', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 229.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576061.p?id=1218279315978&skuId=1576061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015760614', 'provider' => 'bestbuy'],\n ['name' => \"Uncle Grandpa: Tiger Trails 1 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncle-grandpa-tiger-trails-1-dvd/1576079.p?id=3294703&skuId=1576079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576079.jpg\"}', 'upc' => '883929428151', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 259.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576089.p?id=1218279316822&skuId=1576089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015760898', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 289.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576098.p?id=1218279316528&skuId=1576098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015760980', 'provider' => 'bestbuy'],\n ['name' => \"Banshee: Complete Second Season [4 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/banshee-complete-second-season-4-discs-dvd-boxed-set/1576102.p?id=3308194&skuId=1576102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576102_sa.jpg\"}', 'upc' => '883929409754', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 319.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576104.p?id=1218279316293&skuId=1576104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015761048', 'provider' => 'bestbuy'],\n ['name' => \"Ranma 1/2: TV Series Set 4 (Blu-ray Disc) (3 Disc) (Limited Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ranma-1-2-tv-series-set-4-blu-ray-disc-3-disc-limited-edition/1576111.p?id=3301380&skuId=1576111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576111.jpg\"}', 'upc' => '782009243335', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576113.p?id=1218279316411&skuId=1576113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015761130', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 359.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576122.p?id=1218279316102&skuId=1576122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015761222', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 389.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576131.p?id=1218279314303&skuId=1576131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015761314', 'provider' => 'bestbuy'],\n ['name' => \"Inherent Vice (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inherent-vice-blu-ray-disc-2-disc-ultraviolet-digital-copy/1576139.p?id=3358882&skuId=1576139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576139_sa.jpg\"}', 'upc' => '883929388226', 'provider' => 'bestbuy'],\n ['name' => \"Bleach Uncut Set 23 (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bleach-uncut-set-23-dvd-2-disc/1576157.p?id=3292712&skuId=1576157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576157.jpg\"}', 'upc' => '782009243168', 'provider' => 'bestbuy'],\n ['name' => \"2YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2yr-geek-squad-tablet-black-tie-protection/1576159.p?id=1218279316589&skuId=1576159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015761598', 'provider' => 'bestbuy'],\n ['name' => \"Island Of Lemurs: Madagascar (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/island-of-lemurs-madagascar-blu-ray-disc-2-disc/1576166.p?id=3348702&skuId=1576166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576166_sa.jpg\"}', 'upc' => '883929413379', 'provider' => 'bestbuy'],\n ['name' => \"2YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2yr-geek-squad-tablet-black-tie-protection/1576168.p?id=1218279315785&skuId=1576168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015761680', 'provider' => 'bestbuy'],\n ['name' => \"Ranma 1/2: TV Series Set 4 (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ranma-1-2-tv-series-set-4-dvd-3-disc/1576175.p?id=3301150&skuId=1576175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576175.jpg\"}', 'upc' => '782009243328', 'provider' => 'bestbuy'],\n ['name' => \"2YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2yr-geek-squad-tablet-black-tie-protection/1576177.p?id=1218279315522&skuId=1576177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015761772', 'provider' => 'bestbuy'],\n ['name' => \"2YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2yr-geek-squad-tablet-black-tie-protection/1576186.p?id=1218279316967&skuId=1576186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015761864', 'provider' => 'bestbuy'],\n ['name' => \"2YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2yr-geek-squad-tablet-black-tie-protection/1576195.p?id=1218279828154&skuId=1576195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015761956', 'provider' => 'bestbuy'],\n ['name' => \"2YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2yr-geek-squad-tablet-black-tie-protection/1576201.p?id=1218279827730&skuId=1576201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015762014', 'provider' => 'bestbuy'],\n ['name' => \"2YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2yr-geek-squad-tablet-black-tie-protection/1576229.p?id=1218279826428&skuId=1576229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015762298', 'provider' => 'bestbuy'],\n ['name' => \"2YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2yr-geek-squad-tablet-black-tie-protection/1576238.p?id=1218279828041&skuId=1576238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015762380', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Antenna Works Universal Antenna - Black\", 'description_short' => \"Replaces an OEM antenna; copper, polypropylene and steel materials; 14&quot; removable conductive rubber mast; 54&quot; cable; copper shielding; side and top mounting options\", 'description_long' => \"Replaces an OEM antenna; copper, polypropylene and steel materials; 14&quot; removable conductive rubber mast; 54&quot; cable; copper shielding; side and top mounting options\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-works-universal-antenna-black/1576247.p?id=1219055955170&skuId=1576247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576247_sa.jpg\"}', 'upc' => '086429281299', 'provider' => 'bestbuy'],\n ['name' => \"2YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2yr-geek-squad-tablet-black-tie-protection/1576256.p?id=1218279828585&skuId=1576256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015762564', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576265.p?id=1218279825485&skuId=1576265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015762656', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576274.p?id=1218279826053&skuId=1576274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015762748', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576283.p?id=1218279828278&skuId=1576283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015762830', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 179.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576292.p?id=1218279827612&skuId=1576292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015762922', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576308.p?id=1218279826681&skuId=1576308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015763080', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576317.p?id=1218279826106&skuId=1576317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015763172', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 239.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1576326.p?id=1218279826548&skuId=1576326&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576326', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015763264', 'provider' => 'bestbuy'],\n ['name' => \"Littlest Pet Shop Friends - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Party with your pint-size pets\", 'description_long' => \"Party with your pint-size pets\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/littlest-pet-shop-friends-pre-owned-nintendo-wii/1576362.p?id=1218270209832&skuId=1576362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576362_sa.jpg\"}', 'upc' => '799007764663', 'provider' => 'bestbuy'],\n ['name' => \"Cooking Mama 3: Shop & Chop - PRE-OWNED - Nintendo DS\", 'description_short' => \"Shop and chop your way to cooking success\", 'description_long' => \"Shop and chop your way to cooking success\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cooking-mama-3-shop-chop-pre-owned-nintendo-ds/1576371.p?id=1218270217982&skuId=1576371&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576371_sa.jpg\"}', 'upc' => '799007764670', 'provider' => 'bestbuy'],\n ['name' => \"Red Dead Redemption - PRE-OWNED - PlayStation 3\", 'description_short' => \"Set off on a dangerous journey in the last days of the Old West\", 'description_long' => \"Set off on a dangerous journey in the last days of the Old West\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-dead-redemption-pre-owned-playstation-3/1576413.p?id=1218270214322&skuId=1576413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576413_sa.jpg\"}', 'upc' => '799007764700', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Club: L.A. Remix - PRE-OWNED - PSP\", 'description_short' => \"Take over the streets of L.A.\", 'description_long' => \"Take over the streets of L.A.\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-club-l-a-remix-pre-owned-psp/1576422.p?id=1218270221484&skuId=1576422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576422_sa.jpg\"}', 'upc' => '799007764717', 'provider' => 'bestbuy'],\n ['name' => \"Barbie Horse Adventures: Riding Camp - PRE-OWNED - Nintendo DS\", 'description_short' => \"Keep your eye on the blue ribbon\", 'description_long' => \"Keep your eye on the blue ribbon\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barbie-horse-adventures-riding-camp-pre-owned-nintendo-ds/1576486.p?id=1218270218681&skuId=1576486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576486_sa.jpg\"}', 'upc' => '799007764762', 'provider' => 'bestbuy'],\n ['name' => \"Story Hour: Fairy Tales - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Discover the magic of reading with your child\", 'description_long' => \"Discover the magic of reading with your child\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/story-hour-fairy-tales-pre-owned-nintendo-wii/1576501.p?id=1218270204208&skuId=1576501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576501_sa.jpg\"}', 'upc' => '799007764786', 'provider' => 'bestbuy'],\n ['name' => \"IL-2 Sturmovik: Birds of Prey - PRE-OWNED - Xbox 360\", 'description_short' => \"Take to the skies for World War II aerial combat\", 'description_long' => \"Take to the skies for World War II aerial combat\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/il-2-sturmovik-birds-of-prey-pre-owned-xbox-360/1576556.p?id=1218270211743&skuId=1576556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576556_sa.jpg\"}', 'upc' => '799007764823', 'provider' => 'bestbuy'],\n ['name' => \"Borderlands - PRE-OWNED - PlayStation 3\", 'description_short' => \"Fight for survival on the frontier of a wasteland\", 'description_long' => \"Fight for survival on the frontier of a wasteland\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/borderlands-pre-owned-playstation-3/1576574.p?id=1218270198815&skuId=1576574&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576574_sa.jpg\"}', 'upc' => '799007764847', 'provider' => 'bestbuy'],\n ['name' => \"Petz Nursery - PRE-OWNED - Nintendo DS\", 'description_short' => \"Raise a herd of lovable newborns\", 'description_long' => \"Raise a herd of lovable newborns\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-nursery-pre-owned-nintendo-ds/1576644.p?id=1218270220120&skuId=1576644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576644_sa.jpg\"}', 'upc' => '799007764915', 'provider' => 'bestbuy'],\n ['name' => \"Spongebob's Boating Bash - PRE-OWNED - Nintendo DS\", 'description_short' => \"Race fast-paced boats with Spongebob and his friends\", 'description_long' => \"Race fast-paced boats with Spongebob and his friends\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spongebobs-boating-bash-pre-owned-nintendo-ds/1576662.p?id=1218270219663&skuId=1576662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576662_sa.jpg\"}', 'upc' => '799007764939', 'provider' => 'bestbuy'],\n ['name' => \"Disney Sing It - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Belt out your favorite hip Disney tunes\", 'description_long' => \"Belt out your favorite hip Disney tunes\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-sing-it-pre-owned-nintendo-wii/1576671.p?id=1218270209769&skuId=1576671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576671_sa.jpg\"}', 'upc' => '799007764946', 'provider' => 'bestbuy'],\n ['name' => \"Cory in the House - PRE-OWNED - Nintendo DS\", 'description_short' => \"Embark on an hilarious White House adventure\", 'description_long' => \"Embark on an hilarious White House adventure\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cory-in-the-house-pre-owned-nintendo-ds/1576744.p?id=1218270205483&skuId=1576744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576744_sa.jpg\"}', 'upc' => '799007765004', 'provider' => 'bestbuy'],\n ['name' => \"Dropcast - PRE-OWNED - Nintendo DS\", 'description_short' => \"Take on Ingrid and her twisted toys in a battle of spells and puzzling\", 'description_long' => \"Take on Ingrid and her twisted toys in a battle of spells and puzzling\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dropcast-pre-owned-nintendo-ds/1576826.p?id=1218270216893&skuId=1576826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576826_sa.jpg\"}', 'upc' => '799007765073', 'provider' => 'bestbuy'],\n ['name' => \"MySims Party - PRE-OWNED - Nintendo DS\", 'description_short' => \"Party like a MySim in a series of fun mini games\", 'description_long' => \"Party like a MySim in a series of fun mini games\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mysims-party-pre-owned-nintendo-ds/1576844.p?id=1218270217462&skuId=1576844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576844_sa.jpg\"}', 'upc' => '799007765097', 'provider' => 'bestbuy'],\n ['name' => \"Littlest Pet Shop - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Surround yourself with adorable pets\", 'description_long' => \"Surround yourself with adorable pets\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/littlest-pet-shop-pre-owned-nintendo-wii/1576853.p?id=1218270201397&skuId=1576853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576853_sa.jpg\"}', 'upc' => '799007765103', 'provider' => 'bestbuy'],\n ['name' => \"MX vs. ATV Reflex - PRE-OWNED - Nintendo DS\", 'description_short' => \"Rule the off-road\", 'description_long' => \"Rule the off-road\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mx-vs-atv-reflex-pre-owned-nintendo-ds/1576871.p?id=1218270197551&skuId=1576871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576871_sa.jpg\"}', 'upc' => '799007765127', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band 2 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Your rock &#039;n&#039; roll legend continues\", 'description_long' => \"Your rock &#039;n&#039; roll legend continues\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-2-pre-owned-nintendo-wii/1576908.p?id=1218270197303&skuId=1576908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576908_sa.jpg\"}', 'upc' => '799007784661', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Fashion Designer World Tour - PRE-OWNED - Nintendo DS\", 'description_short' => \"Create the hottest looks on the planet\", 'description_long' => \"Create the hottest looks on the planet\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-fashion-designer-world-tour-pre-owned-nintendo-ds/1576944.p?id=1218270213185&skuId=1576944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576944_sa.jpg\"}', 'upc' => '799007784708', 'provider' => 'bestbuy'],\n ['name' => \"Hello Kitty: Big City Dreams - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help Kitty move up in the world\", 'description_long' => \"Help Kitty move up in the world\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hello-kitty-big-city-dreams-pre-owned-nintendo-ds/1576962.p?id=1218270219664&skuId=1576962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1576962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1576\\/1576962_sa.jpg\"}', 'upc' => '799007784722', 'provider' => 'bestbuy'],\n ['name' => \"PES 2010: Pro Evolution Soccer — PRE-OWNED - PlayStation 3\", 'description_short' => \"Kick your game to the next level\", 'description_long' => \"Kick your game to the next level\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pes-2010-pro-evolution-soccer-pre-owned-playstation-3/1577024.p?id=1218270216966&skuId=1577024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577024.jpg\"}', 'upc' => '799007784777', 'provider' => 'bestbuy'],\n ['name' => \"Prince of Persia: The Fallen King - PRE-OWNED - Nintendo DS\", 'description_short' => \"Evil plagues the land and sky of Persia\", 'description_long' => \"Evil plagues the land and sky of Persia\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prince-of-persia-the-fallen-king-pre-owned-nintendo-ds/1577033.p?id=1218270194731&skuId=1577033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577033_sa.jpg\"}', 'upc' => '799007784784', 'provider' => 'bestbuy'],\n ['name' => \"My Baby: First Steps - PRE-OWNED - Nintendo DS\", 'description_short' => \"Teach a baby to walk, talk and play\", 'description_long' => \"Teach a baby to walk, talk and play\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-baby-first-steps-pre-owned-nintendo-ds/1577042.p?id=1218270219272&skuId=1577042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577042_sa.jpg\"}', 'upc' => '799007784791', 'provider' => 'bestbuy'],\n ['name' => \"XSORIES - Capxule Large Soft Camera Case - Black\", 'description_short' => \"XSORIES Capxule Large Soft Camera Case: Fits most GoPro Hero action cameras; polyester and EVA materials; custom-fitted interior insert; 3 interior compartments; carrying handle; zippered closure; included carabiner\", 'description_long' => \"XSORIES Capxule Large Soft Camera Case: Fits most GoPro Hero action cameras; polyester and EVA materials; custom-fitted interior insert; 3 interior compartments; carrying handle; zippered closure; included carabiner\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/xsories-capxule-large-soft-camera-case-black/1577069.p?id=1219502528500&skuId=1577069', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577069_rc.jpg\"}', 'upc' => '840786100149', 'provider' => 'bestbuy'],\n ['name' => \"NCAA Football 11 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Execute the offense with precision and accuracy because the game is in your hands\", 'description_long' => \"Execute the offense with precision and accuracy because the game is in your hands\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ncaa-football-11-pre-owned-playstation-3/1577097.p?id=1218270215160&skuId=1577097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577097_sa.jpg\"}', 'upc' => '799007784838', 'provider' => 'bestbuy'],\n ['name' => \"Hannah Montana: Spotlight World Tour - PRE-OWNED - PlayStation 2\", 'description_short' => \"Tour the world as the one-and-only Hannah Montana\", 'description_long' => \"Tour the world as the one-and-only Hannah Montana\", 'price' => 0.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hannah-montana-spotlight-world-tour-pre-owned-playstation-2/1577112.p?id=1218270218106&skuId=1577112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577112_sa.jpg\"}', 'upc' => '799007784852', 'provider' => 'bestbuy'],\n ['name' => \"Disney Sing It: Pop Hits - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Do you have the makings of a Disney pop star?\", 'description_long' => \"Do you have the makings of a Disney pop star?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-sing-it-pop-hits-pre-owned-nintendo-wii/1577121.p?id=1218270218556&skuId=1577121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577121_sa.jpg\"}', 'upc' => '799007784869', 'provider' => 'bestbuy'],\n ['name' => \"XSORIES - XSolar Charger - Black\", 'description_short' => \"XSORIES XSolar Charger: Compatible with select smartphones, tablets, GoPro cameras and other digital devices; 2000 mAh battery; solar panel; USB port; LED indicators; includes a USB/micro-USB/30-pin combo cable, a silicone cover and a carabiner\", 'description_long' => \"XSORIES XSolar Charger: Compatible with select smartphones, tablets, GoPro cameras and other digital devices; 2000 mAh battery; solar panel; USB port; LED indicators; includes a USB/micro-USB/30-pin combo cable, a silicone cover and a carabiner\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/xsories-xsolar-charger-black/1577165.p?id=1219502529405&skuId=1577165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577165_sa.jpg\"}', 'upc' => '840786101009', 'provider' => 'bestbuy'],\n ['name' => \"BlazBlue: Continuum Shift - PRE-OWNED - PlayStation 3\", 'description_short' => \"Return to the fray and claim Kagutsuchi as your own\", 'description_long' => \"Return to the fray and claim Kagutsuchi as your own\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blazblue-continuum-shift-pre-owned-playstation-3/1577167.p?id=1218270204575&skuId=1577167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577167_sa.jpg\"}', 'upc' => '799007784890', 'provider' => 'bestbuy'],\n ['name' => \"Final Fantasy XIII - PRE-OWNED - Xbox 360\", 'description_short' => \"Summon the courage to face your destiny\", 'description_long' => \"Summon the courage to face your destiny\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/final-fantasy-xiii-pre-owned-xbox-360/1577176.p?id=1218270197171&skuId=1577176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577176_sa.jpg\"}', 'upc' => '799007784906', 'provider' => 'bestbuy'],\n ['name' => \"Naruto Shippuden: Clash of Ninja Revolution III - PRE-OWNED - Nintendo Wii\", 'description_short' => \"The Naruto gang has a grown-up look\", 'description_long' => \"The Naruto gang has a grown-up look\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naruto-shippuden-clash-of-ninja-revolution-iii-pre-owned-nintendo-wii/1577185.p?id=1218270207286&skuId=1577185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577185_sa.jpg\"}', 'upc' => '799007784913', 'provider' => 'bestbuy'],\n ['name' => \"Super Mario Galaxy 2 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Mario returns in this gravity-defying adventure\", 'description_long' => \"Mario returns in this gravity-defying adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-mario-galaxy-2-pre-owned-nintendo-wii/1577219.p?id=1218270217858&skuId=1577219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577219_sa.jpg\"}', 'upc' => '799007784937', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band Unplugged — PRE-OWNED - PSP\", 'description_short' => \"Take your rock band on the road\", 'description_long' => \"Take your rock band on the road\", 'price' => 0.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-unplugged-pre-owned-psp/1577255.p?id=1218270217212&skuId=1577255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577255.jpg\"}', 'upc' => '799007784975', 'provider' => 'bestbuy'],\n ['name' => \"Crime Scene — PRE-OWNED - Nintendo DS\", 'description_short' => \"Solve the case of a double murder using forensic technology\", 'description_long' => \"Solve the case of a double murder using forensic technology\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crime-scene-pre-owned-nintendo-ds/1577282.p?id=1218270223737&skuId=1577282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577282.jpg\"}', 'upc' => '799007785002', 'provider' => 'bestbuy'],\n ['name' => \"Bass Pro Shops: The Hunt - PRE-OWNED - Xbox 360\", 'description_short' => \"Experience the thrill of the hunt\", 'description_long' => \"Experience the thrill of the hunt\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bass-pro-shops-the-hunt-pre-owned-xbox-360/1577316.p?id=1218270218813&skuId=1577316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577316_sa.jpg\"}', 'upc' => '799007785033', 'provider' => 'bestbuy'],\n ['name' => \"Littlest Pet Shop Beach Friends - PRE-OWNED - Nintendo DS\", 'description_short' => \"Party with your pint-size pets\", 'description_long' => \"Party with your pint-size pets\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/littlest-pet-shop-beach-friends-pre-owned-nintendo-ds/1577325.p?id=1218270204331&skuId=1577325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577325_sa.jpg\"}', 'upc' => '799007785040', 'provider' => 'bestbuy'],\n ['name' => \"XSORIES - Capxule 1.1 Soft Camera Case - Black\", 'description_short' => \"XSORIES Capxule 1.1 Soft Camera Case: Fits most GoPro Hero action cameras; polyester and EVA materials; custom-fitted interior insert; 3 interior compartments; included carabiner\", 'description_long' => \"XSORIES Capxule 1.1 Soft Camera Case: Fits most GoPro Hero action cameras; polyester and EVA materials; custom-fitted interior insert; 3 interior compartments; included carabiner\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/xsories-capxule-1-1-soft-camera-case-black/1577357.p?id=1219502529276&skuId=1577357', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577357_rc.jpg\"}', 'upc' => '840786100224', 'provider' => 'bestbuy'],\n ['name' => \"Cats & Dogs: The Revenge Of Kitty Galore: The Videogame - PRE-OWNED - Nintendo DS\", 'description_short' => \"Will you be able to stop Kitty Galore&#039;s purrfect pursuit of world domination in time?\", 'description_long' => \"Will you be able to stop Kitty Galore&#039;s purrfect pursuit of world domination in time?\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cats-dogs-the-revenge-of-kitty-galore-the-videogame-pre-owned-nintendo-ds/1577361.p?id=1218270200990&skuId=1577361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577361_sa.jpg\"}', 'upc' => '799007785088', 'provider' => 'bestbuy'],\n ['name' => \"G-Force - PRE-OWNED - PlayStation 3\", 'description_short' => \"Command an elite squad of secret agent guinea pigs\", 'description_long' => \"Command an elite squad of secret agent guinea pigs\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g-force-pre-owned-playstation-3/1577389.p?id=1218270202796&skuId=1577389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577389_sa.jpg\"}', 'upc' => '799007785095', 'provider' => 'bestbuy'],\n ['name' => \"ModNation Racers - PRE-OWNED - PlayStation 3\", 'description_short' => \"Create your own character, kart or track in this imaginative racer\", 'description_long' => \"Create your own character, kart or track in this imaginative racer\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/modnation-racers-pre-owned-playstation-3/1577398.p?id=1218270211339&skuId=1577398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577398_sa.jpg\"}', 'upc' => '799007785101', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - HDMI-to-VGA Adapter - Black\", 'description_short' => \"HDMI and VGA connectors; supports up to 1920 x 1080 @ 60Hz resolution; 1350 ohms of conductor resistance; fully shielded with 360&#176; enclosed metal shell\", 'description_long' => \"HDMI and VGA connectors; supports up to 1920 x 1080 @ 60Hz resolution; 1350 ohms of conductor resistance; fully shielded with 360&#176; enclosed metal shell\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/insignia-hdmi-to-vga-adapter-black/1577417.p?id=1219503843232&skuId=1577417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577417_sa.jpg\"}', 'upc' => '600603179303', 'provider' => 'bestbuy'],\n ['name' => \"Dora's Big Birthday Adventure - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help Dora journey through Storyland &#8212; and make it home in time for cake\", 'description_long' => \"Help Dora journey through Storyland &#8212; and make it home in time for cake\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doras-big-birthday-adventure-pre-owned-nintendo-ds/1577449.p?id=1218270209250&skuId=1577449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577449_sa.jpg\"}', 'upc' => '799007785125', 'provider' => 'bestbuy'],\n ['name' => \"Ni Hao, Kai-lan: New Year's Celebration - PRE-OWNED - Nintendo DS\", 'description_short' => \"Kai-lan and friends invite kids to a unique New Year&#039;s celebration\", 'description_long' => \"Kai-lan and friends invite kids to a unique New Year&#039;s celebration\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ni-hao-kai-lan-new-years-celebration-pre-owned-nintendo-ds/1577616.p?id=1218270222292&skuId=1577616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577616_sa.jpg\"}', 'upc' => '799007785187', 'provider' => 'bestbuy'],\n ['name' => \"Petz Wild Animals: Tigerz — PRE-OWNED - Nintendo DS\", 'description_short' => \"Can you train a pair of tiger cubs to become performers?\", 'description_long' => \"Can you train a pair of tiger cubs to become performers?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-wild-animals-tigerz-pre-owned-nintendo-ds/1577625.p?id=1218270204002&skuId=1577625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577625.jpg\"}', 'upc' => '799007785194', 'provider' => 'bestbuy'],\n ['name' => \"Night at the Museum: Battle of the Smithsonian - PRE-OWNED - Nintendo DS\", 'description_short' => \"Can you stop the evil schemes of museum exhibits come to life?\", 'description_long' => \"Can you stop the evil schemes of museum exhibits come to life?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-at-the-museum-battle-of-the-smithsonian-pre-owned-nintendo-ds/1577643.p?id=1218270212077&skuId=1577643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577643_sa.jpg\"}', 'upc' => '799007785217', 'provider' => 'bestbuy'],\n ['name' => \"Hannah Montana: The Movie - PRE-OWNED - PlayStation 3\", 'description_short' => \"Experience the life of Hannah Montana and get the best of both worlds\", 'description_long' => \"Experience the life of Hannah Montana and get the best of both worlds\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hannah-montana-the-movie-pre-owned-playstation-3/1577652.p?id=1218270223856&skuId=1577652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577652_sa.jpg\"}', 'upc' => '799007785224', 'provider' => 'bestbuy'],\n ['name' => \"Igor: The Game - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help an aspiring Evil Scientist find his monster creation\", 'description_long' => \"Help an aspiring Evil Scientist find his monster creation\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/igor-the-game-pre-owned-nintendo-ds/1577661.p?id=1218270219149&skuId=1577661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577661_sa.jpg\"}', 'upc' => '799007785231', 'provider' => 'bestbuy'],\n ['name' => \"We Cheer 2 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Cheerleading takes skill, heart and devotion\", 'description_long' => \"Cheerleading takes skill, heart and devotion\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-cheer-2-pre-owned-nintendo-wii/1577707.p?id=1218270212542&skuId=1577707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577707_sa.jpg\"}', 'upc' => '799007785262', 'provider' => 'bestbuy'],\n ['name' => \"Imagine: Master Chef - PRE-OWNED - Nintendo DS\", 'description_short' => \"Fun is on the menu\", 'description_long' => \"Fun is on the menu\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-master-chef-pre-owned-nintendo-ds/1577761.p?id=1218270209177&skuId=1577761&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577761', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577761_sa.jpg\"}', 'upc' => '799007785323', 'provider' => 'bestbuy'],\n ['name' => \"Littlest Pet Shop City Friends — PRE-OWNED - Nintendo DS\", 'description_short' => \"Party with your pint-size pets\", 'description_long' => \"Party with your pint-size pets\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/littlest-pet-shop-city-friends-pre-owned-nintendo-ds/1577789.p?id=1218270217594&skuId=1577789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577789.jpg\"}', 'upc' => '799007785330', 'provider' => 'bestbuy'],\n ['name' => \"Balloon Pop - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Are you ready for some balloon-popping fun?\", 'description_long' => \"Are you ready for some balloon-popping fun?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/balloon-pop-pre-owned-nintendo-wii/1577807.p?id=1218270202330&skuId=1577807&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577807', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577807_sa.jpg\"}', 'upc' => '799007785354', 'provider' => 'bestbuy'],\n ['name' => \"Dancing with the Stars: We Dance - PRE-OWNED - Nintendo DS\", 'description_short' => \"Begin the journey to become King or Queen of the ballroom\", 'description_long' => \"Begin the journey to become King or Queen of the ballroom\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancing-with-the-stars-we-dance-pre-owned-nintendo-ds/1577852.p?id=1218270208718&skuId=1577852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577852_sa.jpg\"}', 'upc' => '799007785408', 'provider' => 'bestbuy'],\n ['name' => \"Story Hour Adventures - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Enjoy delightful Wii stories\", 'description_long' => \"Enjoy delightful Wii stories\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/story-hour-adventures-pre-owned-nintendo-wii/1577889.p?id=1218270217983&skuId=1577889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577889_sa.jpg\"}', 'upc' => '799007785422', 'provider' => 'bestbuy'],\n ['name' => \"Call of Duty: World at War - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Test your mettle in battles that helped to define a generation\", 'description_long' => \"Test your mettle in battles that helped to define a generation\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/call-of-duty-world-at-war-pre-owned-nintendo-wii/1577898.p?id=1218270206350&skuId=1577898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577898_sa.jpg\"}', 'upc' => '799007785439', 'provider' => 'bestbuy'],\n ['name' => \"Style Lab: Jewelry Design - PRE-OWNED - Nintendo DS\", 'description_short' => \"Prove that you&#039;re a real jewel when it comes to design\", 'description_long' => \"Prove that you&#039;re a real jewel when it comes to design\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/style-lab-jewelry-design-pre-owned-nintendo-ds/1577934.p?id=1218270217786&skuId=1577934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577934_sa.jpg\"}', 'upc' => '799007785477', 'provider' => 'bestbuy'],\n ['name' => \"LEGO Indiana Jones: The Original Adventures - PRE-OWNED - Nintendo DS\", 'description_short' => \"Hold onto your hat &#8212; it&#039;s Indy like you&#039;ve never seen him before\", 'description_long' => \"Hold onto your hat &#8212; it&#039;s Indy like you&#039;ve never seen him before\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lego-indiana-jones-the-original-adventures-pre-owned-nintendo-ds/1577952.p?id=1218270223267&skuId=1577952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1577952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1577\\/1577952_sa.jpg\"}', 'upc' => '799007785491', 'provider' => 'bestbuy'],\n ['name' => \"HGST - Travelstar 5K1000 1TB Internal SATA Hard Drive for Laptops (OEM/Bare Drive) - Black/Silver\", 'description_short' => \"Serial ATA interface; data transfer rates up to 998MB/sec.; compatible with PC and Mac\", 'description_long' => \"Serial ATA interface; data transfer rates up to 998MB/sec.; compatible with PC and Mac\", 'price' => 89.99, 'sale_price' => 57.99, 'url' => 'http://www.bestbuy.com/site/hgst-travelstar-5k1000-1tb-internal-sata-hard-drive-for-laptops-oem-bare-drive-black-silver/1578004.p?id=1219502529017&skuId=1578004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578004_sa.jpg\"}', 'upc' => '705487198447', 'provider' => 'bestbuy'],\n ['name' => \"Call of Duty: Modern Warfare 2 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Take the fight to the next level\", 'description_long' => \"Take the fight to the next level\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/call-of-duty-modern-warfare-2-pre-owned-playstation-3/1578014.p?id=1218270198411&skuId=1578014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578014_sa.jpg\"}', 'upc' => '799007785545', 'provider' => 'bestbuy'],\n ['name' => \"HGST - Travelstar 7K1000 1TB Internal SATA Hard Drive for Laptops (OEM/Bare Drive) - Black/Silver\", 'description_short' => \"Serial ATA interface; TrueTrack technology; TFC (Thermal Fly-height Control); data transfer rates up to 1284MB/sec.; compatible with PC and Mac\", 'description_long' => \"Serial ATA interface; TrueTrack technology; TFC (Thermal Fly-height Control); data transfer rates up to 1284MB/sec.; compatible with PC and Mac\", 'price' => 99.99, 'sale_price' => 65.99, 'url' => 'http://www.bestbuy.com/site/hgst-travelstar-7k1000-1tb-internal-sata-hard-drive-for-laptops-oem-bare-drive-black-silver/1578022.p?id=1219502527365&skuId=1578022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578022_sa.jpg\"}', 'upc' => '705487198454', 'provider' => 'bestbuy'],\n ['name' => \"Samurai Shodown Sen - PRE-OWNED - Xbox 360\", 'description_short' => \"Pit your skills against the best fighters and reign supreme\", 'description_long' => \"Pit your skills against the best fighters and reign supreme\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/samurai-shodown-sen-pre-owned-xbox-360/1578023.p?id=1218270207872&skuId=1578023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578023_sa.jpg\"}', 'upc' => '799007785552', 'provider' => 'bestbuy'],\n ['name' => \"HGST - Travelstar Z5K500 500GB Internal SATA Hard Drive for Laptops (OEM/Bare Drive) - Black/Silver\", 'description_short' => \"Serial ATA interface; data transfer rates up to 1061MB/sec.; compatible with PC and Mac\", 'description_long' => \"Serial ATA interface; data transfer rates up to 1061MB/sec.; compatible with PC and Mac\", 'price' => 64.99, 'sale_price' => 53.99, 'url' => 'http://www.bestbuy.com/site/hgst-travelstar-z5k500-500gb-internal-sata-hard-drive-for-laptops-oem-bare-drive-black-silver/1578031.p?id=1219502529991&skuId=1578031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578031_sa.jpg\"}', 'upc' => '705487198416', 'provider' => 'bestbuy'],\n ['name' => \"HGST - Travelstar Z7K500 500GB Internal SATA Hard Drive for Laptops (OEM/Bare Drive) - Black/Silver\", 'description_short' => \"Serial ATA interface; TrueTrack technology; compatible with PC and Mac\", 'description_long' => \"Serial ATA interface; TrueTrack technology; compatible with PC and Mac\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hgst-travelstar-z7k500-500gb-internal-sata-hard-drive-for-laptops-oem-bare-drive-black-silver/1578059.p?id=1219502525317&skuId=1578059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578059_sa.jpg\"}', 'upc' => '705487198430', 'provider' => 'bestbuy'],\n ['name' => \"Transformers: War for Cybertron - PRE-OWNED - Xbox 360\", 'description_short' => \"With the fate of the world at stake, what side will you choose?\", 'description_long' => \"With the fate of the world at stake, what side will you choose?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-war-for-cybertron-pre-owned-xbox-360/1578102.p?id=1218270204207&skuId=1578102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578102_sa.jpg\"}', 'upc' => '799007785620', 'provider' => 'bestbuy'],\n ['name' => \"G-Force - PRE-OWNED - Xbox 360\", 'description_short' => \"Command an elite squad of secret agent guinea pigs\", 'description_long' => \"Command an elite squad of secret agent guinea pigs\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g-force-pre-owned-xbox-360/1578111.p?id=1218270221615&skuId=1578111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578111_sa.jpg\"}', 'upc' => '799007785637', 'provider' => 'bestbuy'],\n ['name' => \"Dead Space - PRE-OWNED - Xbox 360\", 'description_short' => \"Mutilate the alien hordes before they destroy you\", 'description_long' => \"Mutilate the alien hordes before they destroy you\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-space-pre-owned-xbox-360/1578166.p?id=1218270197426&skuId=1578166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578166_sa.jpg\"}', 'upc' => '799007785675', 'provider' => 'bestbuy'],\n ['name' => \"Cheetah Girls: Passport to Stardom — PRE-OWNED - Nintendo DS\", 'description_short' => \"Dance your way across the world and reach ultimate stardom\", 'description_long' => \"Dance your way across the world and reach ultimate stardom\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cheetah-girls-passport-to-stardom-pre-owned-nintendo-ds/1578184.p?id=1218270217338&skuId=1578184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578184.jpg\"}', 'upc' => '799007785699', 'provider' => 'bestbuy'],\n ['name' => \"Red Bull BC One - PRE-OWNED - Nintendo DS\", 'description_short' => \"Do you have the moves it takes to be the One?\", 'description_long' => \"Do you have the moves it takes to be the One?\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-bull-bc-one-pre-owned-nintendo-ds/1578193.p?id=1218270198483&skuId=1578193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578193_sa.jpg\"}', 'upc' => '799007785705', 'provider' => 'bestbuy'],\n ['name' => \"Build-A-Bear Workshop: Friendship Valley - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Explore the cuddly town of Friendship Valley with your favorite furry friends\", 'description_long' => \"Explore the cuddly town of Friendship Valley with your favorite furry friends\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/build-a-bear-workshop-friendship-valley-pre-owned-nintendo-wii/1578272.p?id=1218270212614&skuId=1578272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578272_sa.jpg\"}', 'upc' => '799007785781', 'provider' => 'bestbuy'],\n ['name' => \"Junior Classic Games - PRE-OWNED - Nintendo DS\", 'description_short' => \"Make some time for some classic games\", 'description_long' => \"Make some time for some classic games\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/junior-classic-games-pre-owned-nintendo-ds/1578281.p?id=1218270207945&skuId=1578281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578281_sa.jpg\"}', 'upc' => '799007785798', 'provider' => 'bestbuy'],\n ['name' => \"Red Dead Redemption - PRE-OWNED - Xbox 360\", 'description_short' => \"Set off on a dangerous journey in the last days of the Old West\", 'description_long' => \"Set off on a dangerous journey in the last days of the Old West\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-dead-redemption-pre-owned-xbox-360/1578306.p?id=1218270201063&skuId=1578306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578306_sa.jpg\"}', 'upc' => '799007785804', 'provider' => 'bestbuy'],\n ['name' => \"Trauma Center: New Blood - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Politics and medicine don&#039;t mix\", 'description_long' => \"Politics and medicine don&#039;t mix\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trauma-center-new-blood-pre-owned-nintendo-wii/1578315.p?id=1218270217090&skuId=1578315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578315_sa.jpg\"}', 'upc' => '799007785811', 'provider' => 'bestbuy'],\n ['name' => \"Call of Duty: World at War - PRE-OWNED - Nintendo DS\", 'description_short' => \"Test your mettle in battles that helped to define a generation\", 'description_long' => \"Test your mettle in battles that helped to define a generation\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/call-of-duty-world-at-war-pre-owned-nintendo-ds/1578324.p?id=1218270204455&skuId=1578324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578324_sa.jpg\"}', 'upc' => '799007785828', 'provider' => 'bestbuy'],\n ['name' => \"My SAT Coach with The Princeton Review - PRE-OWNED - Nintendo DS\", 'description_short' => \"Make sure you have the scores to get into the college of your choice\", 'description_long' => \"Make sure you have the scores to get into the college of your choice\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-sat-coach-with-the-princeton-review-pre-owned-nintendo-ds/1578402.p?id=1218270202724&skuId=1578402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578402_sa.jpg\"}', 'upc' => '799007785897', 'provider' => 'bestbuy'],\n ['name' => \"Battalion Wars 2 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Combine tactical strategy and raw firepower to prove your worth in battle\", 'description_long' => \"Combine tactical strategy and raw firepower to prove your worth in battle\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battalion-wars-2-pre-owned-nintendo-wii/1578411.p?id=1218270218557&skuId=1578411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578411_sa.jpg\"}', 'upc' => '799007785903', 'provider' => 'bestbuy'],\n ['name' => \"Summer Athletics: The Ultimate Challenge - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Summer is the time to be a star\", 'description_long' => \"Summer is the time to be a star\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/summer-athletics-the-ultimate-challenge-pre-owned-nintendo-wii/1578439.p?id=1218270204851&skuId=1578439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578439_sa.jpg\"}', 'upc' => '799007785910', 'provider' => 'bestbuy'],\n ['name' => \"Risen - PRE-OWNED - Xbox 360\", 'description_short' => \"Investigate strange events on a remote and mysterious island\", 'description_long' => \"Investigate strange events on a remote and mysterious island\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/risen-pre-owned-xbox-360/1578466.p?id=1218270223005&skuId=1578466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578466_sa.jpg\"}', 'upc' => '799007785941', 'provider' => 'bestbuy'],\n ['name' => \"America's Test Kitchen: Let's Get Cooking - PRE-OWNED - Nintendo DS\", 'description_short' => \"Prepare more than 300 recipes using a variety of tips and tools\", 'description_long' => \"Prepare more than 300 recipes using a variety of tips and tools\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/americas-test-kitchen-lets-get-cooking-pre-owned-nintendo-ds/1578493.p?id=1218270197302&skuId=1578493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578493_sa.jpg\"}', 'upc' => '799007785972', 'provider' => 'bestbuy'],\n ['name' => \"Warhammer: Battle March - PRE-OWNED - Xbox 360\", 'description_short' => \"Show off your bravery in a world of evil and war\", 'description_long' => \"Show off your bravery in a world of evil and war\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warhammer-battle-march-pre-owned-xbox-360/1578518.p?id=1218270204779&skuId=1578518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578518_sa.jpg\"}', 'upc' => '799007785989', 'provider' => 'bestbuy'],\n ['name' => \"Hannah Montana: The Movie - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Experience the life of Hannah Montana and get the best of both worlds\", 'description_long' => \"Experience the life of Hannah Montana and get the best of both worlds\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hannah-montana-the-movie-pre-owned-nintendo-wii/1578527.p?id=1218270201529&skuId=1578527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578527_sa.jpg\"}', 'upc' => '799007785996', 'provider' => 'bestbuy'],\n ['name' => \"How to Train Your Dragon - PRE-OWNED - Nintendo DS\", 'description_short' => \"Train your dragon and prepare for battle to become a Viking hero\", 'description_long' => \"Train your dragon and prepare for battle to become a Viking hero\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-to-train-your-dragon-pre-owned-nintendo-ds/1578536.p?id=1218270198148&skuId=1578536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578536_sa.jpg\"}', 'upc' => '799007786009', 'provider' => 'bestbuy'],\n ['name' => \"My Fun Facts Coach - PRE-OWNED - Nintendo DS\", 'description_short' => \"Get the facts so you can relax\", 'description_long' => \"Get the facts so you can relax\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-fun-facts-coach-pre-owned-nintendo-ds/1578581.p?id=1218270200229&skuId=1578581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578581_sa.jpg\"}', 'upc' => '799007786054', 'provider' => 'bestbuy'],\n ['name' => \"LEGO Harry Potter: Years 1 - 4 - PRE-OWNED - Xbox 360\", 'description_short' => \"LEGO casts a spell on the Harry Potter world\", 'description_long' => \"LEGO casts a spell on the Harry Potter world\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lego-harry-potter-years-1-4-pre-owned-xbox-360/1578651.p?id=1218270212870&skuId=1578651&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578651', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578651_sa.jpg\"}', 'upc' => '799007786115', 'provider' => 'bestbuy'],\n ['name' => \"Professor Heinz Wolff's Gravity - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Pit your brain against a series of clever puzzles\", 'description_long' => \"Pit your brain against a series of clever puzzles\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/professor-heinz-wolffs-gravity-pre-owned-nintendo-wii/1578688.p?id=1218270204852&skuId=1578688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578688_sa.jpg\"}', 'upc' => '799007786139', 'provider' => 'bestbuy'],\n ['name' => \"Disney's A Christmas Carol - PRE-OWNED - Nintendo DS\", 'description_short' => \"Take a fresh look at the joy of Christmas\", 'description_long' => \"Take a fresh look at the joy of Christmas\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disneys-a-christmas-carol-pre-owned-nintendo-ds/1578706.p?id=1218270217859&skuId=1578706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1578706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1578\\/1578706_sa.jpg\"}', 'upc' => '799007786153', 'provider' => 'bestbuy'],\n ['name' => \"Edifier - Prisma Encore e3360BT 2.1 Bluetooth Computer Speakers (3-Piece) - Gloss Black\", 'description_short' => \"EDIFIER Prisma Encore e3360BT 2.1 Bluetooth Computer Speakers (3-Piece): For PCs, laptops, Apple iPod and iPhone models, MP3 players and other devices with a 3.5mm auxiliary input or Bluetooth capability; 64W RMS system power; 2 speakers; subwoofer\", 'description_long' => \"EDIFIER Prisma Encore e3360BT 2.1 Bluetooth Computer Speakers (3-Piece): For PCs, laptops, Apple iPod and iPhone models, MP3 players and other devices with a 3.5mm auxiliary input or Bluetooth capability; 64W RMS system power; 2 speakers; subwoofer\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/edifier-prisma-encore-e3360bt-2-1-bluetooth-computer-speakers-3-piece-gloss-black/1579003.p?id=1219503843166&skuId=1579003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1579003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1579\\/1579003_sa.jpg\"}', 'upc' => '875674001024', 'provider' => 'bestbuy'],\n ['name' => \"Edifier - M1250 2.0 Computer Speakers (2-Piece) - Black\", 'description_short' => \"EDIFIER M1250 2.0 Computer Speakers (2-Piece): Compatible with PC and Mac; 1.2W RMS power; USB-powered; magnetic shielding; flat-panel design; USB port; 3.5mm auxiliary input; headphone jack\", 'description_long' => \"EDIFIER M1250 2.0 Computer Speakers (2-Piece): Compatible with PC and Mac; 1.2W RMS power; USB-powered; magnetic shielding; flat-panel design; USB port; 3.5mm auxiliary input; headphone jack\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/edifier-m1250-2-0-computer-speakers-2-piece-black/1579049.p?id=1219503841897&skuId=1579049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1579049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1579\\/1579049_sa.jpg\"}', 'upc' => '875674009099', 'provider' => 'bestbuy'],\n ['name' => \"Edifier - Prisma Encore e3360BT 2.1 Bluetooth Computer Speakers (3-Piece) - Gloss White\", 'description_short' => \"EDIFIER Prisma Encore e3360BT 2.1 Bluetooth Computer Speakers (3-Piece): For PCs, laptops, Apple iPod and iPhone models, MP3 players and other devices with a 3.5mm auxiliary input or Bluetooth capability; 64W RMS system power; 2 speakers; subwoofer\", 'description_long' => \"EDIFIER Prisma Encore e3360BT 2.1 Bluetooth Computer Speakers (3-Piece): For PCs, laptops, Apple iPod and iPhone models, MP3 players and other devices with a 3.5mm auxiliary input or Bluetooth capability; 64W RMS system power; 2 speakers; subwoofer\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/edifier-prisma-encore-e3360bt-2-1-bluetooth-computer-speakers-3-piece-gloss-white/1579067.p?id=1219503841901&skuId=1579067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1579067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1579\\/1579067_sa.jpg\"}', 'upc' => '875674001031', 'provider' => 'bestbuy'],\n ['name' => \"Harry Potter and the Deathly... [DVD] [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 67.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harry-potter-and-the-deathly-dvd-box-cd/1579095.p?id=2165438&skuId=1579095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1579095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1579\\/1579095.jpg\"}', 'upc' => '794043147012', 'provider' => 'bestbuy'],\n ['name' => \"Pink Friday [Deluxe Version] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pink-friday-deluxe-version-pa-cd/1579129.p?id=2167133&skuId=1579129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1579129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1579\\/1579129_sa.jpg\"}', 'upc' => '602527573038', 'provider' => 'bestbuy'],\n ['name' => \"Glow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glow-cd/1579156.p?id=2729165&skuId=1579156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1579156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1579\\/1579156_sa.jpg\"}', 'upc' => '842803010424', 'provider' => 'bestbuy'],\n ['name' => \"2 Birds, 1 Stone [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-birds-1-stone-pa-cd/1579165.p?id=2725193&skuId=1579165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1579165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1579\\/1579165_sa.jpg\"}', 'upc' => '853435003302', 'provider' => 'bestbuy'],\n ['name' => \"Muppet Movie [Original Motion... [Digipak] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/muppet-movie-original-motion-digipak-cd-original-soundtrack/1579174.p?id=2720634&skuId=1579174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1579174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1579\\/1579174_sa.jpg\"}', 'upc' => '050087290221', 'provider' => 'bestbuy'],\n ['name' => \"Great Gatsby: The Jazz Recording - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-gatsby-the-jazz-recording-cd-various/1579183.p?id=2729969&skuId=1579183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1579183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1579\\/1579183_sa.jpg\"}', 'upc' => '794043171420', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - AF-S DX NIKKOR 18-140mm f/3.5-5.6G ED VR Zoom Lens for Select Nikon DX-Format Digital Cameras - Black\", 'description_short' => \"Compatible with most Nikon DX-format cameras with F-bayonet mount; VR (Vibration Reduction) image stabilization; 67mm filter size\", 'description_long' => \"Compatible with most Nikon DX-format cameras with F-bayonet mount; VR (Vibration Reduction) image stabilization; 67mm filter size\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-af-s-dx-nikkor-18-140mm-f-3-5-5-6g-ed-vr-zoom-lens-for-select-nikon-dx-format-digital-cameras-black/1579262.p?id=1219056203656&skuId=1579262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1579262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1579\\/1579262_sa.jpg\"}', 'upc' => '018208022137', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Popa Chubby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-popa-chubby-cd/1580067.p?id=2168736&skuId=1580067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1580067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1580\\/1580067_sa.jpg\"}', 'upc' => '019148801127', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Legendary Alpine... [CD & DVD] (DVD) (4 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-legendary-alpine-cd-dvd-dvd-4-disc/1580076.p?id=2168732&skuId=1580076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1580076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1580\\/1580076_sa.jpg\"}', 'upc' => '825084980129', 'provider' => 'bestbuy'],\n ['name' => \"JBL - Synchros Premium Powered Over-the-Ear Stereo Headphones - Black\", 'description_short' => \"JBL Synchros Premium Powered Over-the-Ear Stereo Headphones: JBL sound with PureBass performance; LiveStage signal-processing technology; sound isolation; 50mm drivers; detachable iOS 3-button remote/microphone cable\", 'description_long' => \"JBL Synchros Premium Powered Over-the-Ear Stereo Headphones: JBL sound with PureBass performance; LiveStage signal-processing technology; sound isolation; 50mm drivers; detachable iOS 3-button remote/microphone cable\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jbl-synchros-premium-powered-over-the-ear-stereo-headphones-black/1581001.p?id=1219503843225&skuId=1581001', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581001_sa.jpg\"}', 'upc' => '050036320122', 'provider' => 'bestbuy'],\n ['name' => \"JBL - Synchros Premium Powered Over-the-Ear Stereo Headphones - Black\", 'description_short' => \"JBL Synchros Premium Powered Over-the-Ear Stereo Headphones: JBL sound with PureBass performance; LiveStage signal-processing technology; sound isolation; 50mm drivers; detachable iOS 3-button remote/microphone cable\", 'description_long' => \"JBL Synchros Premium Powered Over-the-Ear Stereo Headphones: JBL sound with PureBass performance; LiveStage signal-processing technology; sound isolation; 50mm drivers; detachable iOS 3-button remote/microphone cable\", 'price' => 279.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jbl-synchros-premium-powered-over-the-ear-stereo-headphones-black/1581029.p?id=1219503841902&skuId=1581029', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581029_sa.jpg\"}', 'upc' => '050036320764', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1581066.p?id=1218279825803&skuId=1581066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015810661', 'provider' => 'bestbuy'],\n ['name' => \"3YR Geek Squad Tablet Black Tie Protection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 269.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3yr-geek-squad-tablet-black-tie-protection/1581075.p?id=1218279826169&skuId=1581075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015810753', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - GreenGourmet Hard-Anodized Nonstick 12-Piece Cookware Set - Black\", 'description_short' => \"Ceramic-based nonstick technology; PTFE- and PFOA-free; hard-anodized construction; stay-cool handles; oven and broiler safe\", 'description_long' => \"Ceramic-based nonstick technology; PTFE- and PFOA-free; hard-anodized construction; stay-cool handles; oven and broiler safe\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-greengourmet-hard-anodized-nonstick-12-piece-cookware-set-black/1581109.p?id=1218270216707&skuId=1581109', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581109_rc.jpg\"}', 'upc' => '086279024534', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - GreenGourmet 8\\\" Skillet - Black\", 'description_short' => \"Ceramica nonstick technology; PTFE-, PFOA- and petroleum-free; hard-anodized construction; stainless-steel, stay-cool handles; oven- and broiler-safe\", 'description_long' => \"Ceramica nonstick technology; PTFE-, PFOA- and petroleum-free; hard-anodized construction; stainless-steel, stay-cool handles; oven- and broiler-safe\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-greengourmet-8-skillet-black/1581127.p?id=1218270212331&skuId=1581127', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581127_rc.jpg\"}', 'upc' => '086279022752', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - GreenGourmet 5-1/2-Quart Sauté Pan - Black\", 'description_short' => \"Ceramica nonstick technology; PTFE-, PFOA- and petroleum-free; hard-anodized construction; stainless-steel, stay-cool handles\", 'description_long' => \"Ceramica nonstick technology; PTFE-, PFOA- and petroleum-free; hard-anodized construction; stainless-steel, stay-cool handles\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-greengourmet-5-1-2-quart-saute-pan-black/1581145.p?id=1218270203104&skuId=1581145', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581145_rc.jpg\"}', 'upc' => '086279027313', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - GreenGourmet 12\\\" Stir-Fry Pan - Black\", 'description_short' => \"Ceramica nonstick technology; PTFE-, PFOA- and petroleum-free; hard-anodized construction; stay-cool handles; oven and broiler safe\", 'description_long' => \"Ceramica nonstick technology; PTFE-, PFOA- and petroleum-free; hard-anodized construction; stay-cool handles; oven and broiler safe\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-greengourmet-12-stir-fry-pan-black/1581163.p?id=1218270223603&skuId=1581163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581163_rc.jpg\"}', 'upc' => '086279027283', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - GreenGourmet 4-Quart Dutch Oven - Black\", 'description_short' => \"Ceramica nonstick technology; PTFE-, PFOA-free and petroleum-free; hard-anodized construction; stainless-steel, stay-cool handles\", 'description_long' => \"Ceramica nonstick technology; PTFE-, PFOA-free and petroleum-free; hard-anodized construction; stainless-steel, stay-cool handles\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-greengourmet-4-quart-dutch-oven-black/1581181.p?id=1218270208385&skuId=1581181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581181_rc.jpg\"}', 'upc' => '086279027276', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - GreenGourmet 11\\\" Grill Pan - Black\", 'description_short' => \"Ceramica nonstick technology; PTFE-, PFOA- and petroleum-free; hard-anodized construction; stay-cool handle\", 'description_long' => \"Ceramica nonstick technology; PTFE-, PFOA- and petroleum-free; hard-anodized construction; stay-cool handle\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-greengourmet-11-grill-pan-black/1581206.p?id=1218270205867&skuId=1581206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581206_rc.jpg\"}', 'upc' => '086279022745', 'provider' => 'bestbuy'],\n ['name' => \"The Sophtware Slump [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sophtware-slump-lp-vinyl/1581233.p?id=2168735&skuId=1581233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581233_sa.jpg\"}', 'upc' => '650384026518', 'provider' => 'bestbuy'],\n ['name' => \"The Heart of Saturday Night [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-heart-of-saturday-night-lp-vinyl/1581279.p?id=2168212&skuId=1581279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581279_sa.jpg\"}', 'upc' => '081227980689', 'provider' => 'bestbuy'],\n ['name' => \"Sumday [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sumday-lp-vinyl/1581297.p?id=2168733&skuId=1581297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581297_sa.jpg\"}', 'upc' => '650384026617', 'provider' => 'bestbuy'],\n ['name' => \"Under the Western Freeway [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/under-the-western-freeway-lp-vinyl/1581303.p?id=2168734&skuId=1581303&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581303_sa.jpg\"}', 'upc' => '650384026419', 'provider' => 'bestbuy'],\n ['name' => \"Closing Time [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/closing-time-lp-vinyl/1581312.p?id=2168211&skuId=1581312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581312.jpg\"}', 'upc' => '081227980719', 'provider' => 'bestbuy'],\n ['name' => \"Nighthawks at the Diner [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nighthawks-at-the-diner-lp-vinyl/1581321.p?id=2168210&skuId=1581321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581321_sa.jpg\"}', 'upc' => '081227980702', 'provider' => 'bestbuy'],\n ['name' => \"Doo-Wops & Hooligans [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doo-wops-hooligans-lp-lp-vinyl/1581376.p?id=2162894&skuId=1581376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581376_sa.jpg\"}', 'upc' => '075678893032', 'provider' => 'bestbuy'],\n ['name' => \"Small Change [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/small-change-lp-vinyl/1581385.p?id=2168209&skuId=1581385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581385_sa.jpg\"}', 'upc' => '081227980696', 'provider' => 'bestbuy'],\n ['name' => \"Conair - 2-Blade Beard, Mustache and Stubble Trimmer - Silver/Black\", 'description_short' => \"2-blade cutting system; lithium-ion technology; nose-and-ear trimmer attachment; 2-minute quick charge\", 'description_long' => \"2-blade cutting system; lithium-ion technology; nose-and-ear trimmer attachment; 2-minute quick charge\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conair-2-blade-beard-mustache-and-stubble-trimmer-silver-black/1581472.p?id=1219056200959&skuId=1581472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581472_rc.jpg\"}', 'upc' => '074108275714', 'provider' => 'bestbuy'],\n ['name' => \"Conair - Cord-Keeper 1875W Ionic Conditioning Styler/Hair Dryer - Purple\", 'description_short' => \"2 heat/speed settings; cool-shot button; retractable line cord with push button control; folding handle\", 'description_long' => \"2 heat/speed settings; cool-shot button; retractable line cord with push button control; folding handle\", 'price' => 19.99, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/conair-cord-keeper-1875w-ionic-conditioning-styler-hair-dryer-purple/1581481.p?id=1219056202407&skuId=1581481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581481_rc.jpg\"}', 'upc' => '074108268921', 'provider' => 'bestbuy'],\n ['name' => \"Conair - Cordless/Battery-Operated Beard, Mustache and Stubble Trimmer - Silver/Black\", 'description_short' => \"2-blade cutting system; 3 multipurpose combs; 5-position comb; multi-use handle; includes lubricating oil\", 'description_long' => \"2-blade cutting system; 3 multipurpose combs; 5-position comb; multi-use handle; includes lubricating oil\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conair-cordless-battery-operated-beard-mustache-and-stubble-trimmer-silver-black/1581506.p?id=1219056200955&skuId=1581506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581506_rc.jpg\"}', 'upc' => '074108275707', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - Chef's Classic 7-Piece Bakeware Set - Silver\", 'description_short' => \"Dishwasher-safe, heavy-gauge steel construction; nonstick interior and exterior; easy-grip silicone handles; thick rolled edges; includes 3 cake pans, 2 loaf pans, a muffin pan and a baking sheet\", 'description_long' => \"Dishwasher-safe, heavy-gauge steel construction; nonstick interior and exterior; easy-grip silicone handles; thick rolled edges; includes 3 cake pans, 2 loaf pans, a muffin pan and a baking sheet\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-chefs-classic-7-piece-bakeware-set-silver/1581515.p?id=1219056202364&skuId=1581515&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581515', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581515_rc.jpg\"}', 'upc' => '086279071545', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - Chef's Classic 6-Piece Bakeware Set - Silver\", 'description_short' => \"Dishwasher-safe, heavy-gauge steel construction; nonstick interior and exterior; easy-grip silicone handles; thick rolled edges; includes 3 cake pans, 2 loaf pans and a muffin pan\", 'description_long' => \"Dishwasher-safe, heavy-gauge steel construction; nonstick interior and exterior; easy-grip silicone handles; thick rolled edges; includes 3 cake pans, 2 loaf pans and a muffin pan\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-chefs-classic-6-piece-bakeware-set-silver/1581524.p?id=1219056205054&skuId=1581524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581524_rc.jpg\"}', 'upc' => '086279071552', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - Pro Classic 14-Piece Cookware Set - Black\", 'description_short' => \"Nonstick ceramic construction; includes 2 saucepans, a saut&#233; pan and a stock pot with covers, 2 skillets, a turner, a spoon and 2 ladles\", 'description_long' => \"Nonstick ceramic construction; includes 2 saucepans, a saut&#233; pan and a stock pot with covers, 2 skillets, a turner, a spoon and 2 ladles\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-pro-classic-14-piece-cookware-set-black/1581551.p?id=1219056203521&skuId=1581551&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581551_rc.jpg\"}', 'upc' => '086279071699', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - Pro Classic 11-Piece Cookware Set - Black\", 'description_short' => \"Hard-anodized construction; tempered-glass lids; reinforced nonstick cooking surface; stovetop-, oven- and freezer-safe design; stay-cool handles; tapered rims\", 'description_long' => \"Hard-anodized construction; tempered-glass lids; reinforced nonstick cooking surface; stovetop-, oven- and freezer-safe design; stay-cool handles; tapered rims\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-pro-classic-11-piece-cookware-set-black/1581588.p?id=1219056200958&skuId=1581588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581588_rc.jpg\"}', 'upc' => '086279071606', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - 5-Piece Stainless-Steel Tool Set - Stainless-Steel\", 'description_short' => \"Dishwasher safe; stainless-steel material; hollow handles; includes a universal spoon, slotted spoon, universal turner, slotted turner and slotted spaghetti ladle\", 'description_long' => \"Dishwasher safe; stainless-steel material; hollow handles; includes a universal spoon, slotted spoon, universal turner, slotted turner and slotted spaghetti ladle\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-5-piece-stainless-steel-tool-set-stainless-steel/1581597.p?id=1219056205120&skuId=1581597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581597_rc.jpg\"}', 'upc' => '086279071958', 'provider' => 'bestbuy'],\n ['name' => \"The Morning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-morning-cd/1581758.p?id=2737267&skuId=1581758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581758_sa.jpg\"}', 'upc' => '801193153821', 'provider' => 'bestbuy'],\n ['name' => \"Stay Reckless [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stay-reckless-digipak-cd/1581767.p?id=2737264&skuId=1581767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581767_sa.jpg\"}', 'upc' => '607396628827', 'provider' => 'bestbuy'],\n ['name' => \"Winter Kills [CD/DVD... [CD & DVD] [PA] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winter-kills-cd-dvd-cd-dvd-pa-digipak-cd-dvd/1581776.p?id=2737269&skuId=1581776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581776_sa.jpg\"}', 'upc' => '819224012962', 'provider' => 'bestbuy'],\n ['name' => \"Winter Kills [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winter-kills-pa-cd/1581785.p?id=2737268&skuId=1581785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581785_sa.jpg\"}', 'upc' => '819224012955', 'provider' => 'bestbuy'],\n ['name' => \"6 Feet Beneath the Moon [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/6-feet-beneath-the-moon-digipak-cd/1581794.p?id=2737265&skuId=1581794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581794_sa.jpg\"}', 'upc' => '744861610120', 'provider' => 'bestbuy'],\n ['name' => \"Apple - MacBook Air® (Latest Model) - 11.6\\\" Display - Intel Core i5 - 4GB Memory - 256GB Flash Storage - Silver\", 'description_short' => \"5th Gen Intel&#174; Core&#8482; i5 processor; 11.6&quot; display; 4GB memory; 256GB flash storageNote: DVD/CD drive not included\", 'description_long' => \"5th Gen Intel&#174; Core&#8482; i5 processor; 11.6&quot; display; 4GB memory; 256GB flash storageNote: DVD/CD drive not included\", 'price' => 1099.99, 'sale_price' => 949.99, 'url' => 'http://www.bestbuy.com/site/apple-macbook-air-latest-model-11-6-display-intel-core-i5-4gb-memory-256gb-flash-storage-silver/1581803.p?id=1219056204727&skuId=1581803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312444926\\/1312444926_sa.jpg\"}', 'upc' => '888462342131', 'provider' => 'bestbuy'],\n ['name' => \"Dell - 29\\\" IPS LED HD 21:9 Ultrawide Monitor - Black\", 'description_short' => \"DELL 29&quot; IPS LED HD 21:9 Ultrawide Monitor: 8 ms response time; 1,000:1 contrast ratio; 300 nits brightness; 2560 x 1080 resolution; 178-degree viewing angles; HDMI, DVI-D, DisplayPort, Mini DisplayPort and VGA connections; 4 USB 3.0 ports\", 'description_long' => \"DELL 29&quot; IPS LED HD 21:9 Ultrawide Monitor: 8 ms response time; 1,000:1 contrast ratio; 300 nits brightness; 2560 x 1080 resolution; 178-degree viewing angles; HDMI, DVI-D, DisplayPort, Mini DisplayPort and VGA connections; 4 USB 3.0 ports\", 'price' => 549.99, 'sale_price' => 499.99, 'url' => 'http://www.bestbuy.com/site/dell-29-ips-led-hd-219-ultrawide-monitor-black/1581812.p?id=1219056200956&skuId=1581812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581812_sa.jpg\"}', 'upc' => '884116100393', 'provider' => 'bestbuy'],\n ['name' => \"This Is... Icona Pop [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/this-is-icona-pop-pa-cd/1581821.p?id=2725975&skuId=1581821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581821_sa.jpg\"}', 'upc' => '075678684173', 'provider' => 'bestbuy'],\n ['name' => \"This Is... [Clean] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-clean-cd/1581849.p?id=2736230&skuId=1581849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581849_sa.jpg\"}', 'upc' => '075678683800', 'provider' => 'bestbuy'],\n ['name' => \"Apple - MacBook Air® (Latest Model) - 13.3\\\" Display - Intel Core i5 - 4GB Memory - 256GB Flash Storage - Silver\", 'description_short' => \"5th Gen Intel&#174; Core&#8482; i5 processor; 13.3&quot; display; 4GB memory; 256GB flash storageDVD/CD drive not included\", 'description_long' => \"5th Gen Intel&#174; Core&#8482; i5 processor; 13.3&quot; display; 4GB memory; 256GB flash storageDVD/CD drive not included\", 'price' => 1199.99, 'sale_price' => 1049.99, 'url' => 'http://www.bestbuy.com/site/apple-macbook-air-latest-model-13-3-display-intel-core-i5-4gb-memory-256gb-flash-storage-silver/1581903.p?id=1219056465164&skuId=1581903&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312328943\\/1312328943_sa.jpg\"}', 'upc' => '888462109789', 'provider' => 'bestbuy'],\n ['name' => \"Apple - MacBook Air® (Latest Model) - 13.3\\\" Display - Intel Core i5 - 4GB Memory - 128GB Flash Storage - Silver\", 'description_short' => \"5th Gen Intel&#174; Core&#8482; i5 processor; 13.3&quot; display; 4GB memory; 128GB flash storageNote: DVD/CD drive not included\", 'description_long' => \"5th Gen Intel&#174; Core&#8482; i5 processor; 13.3&quot; display; 4GB memory; 128GB flash storageNote: DVD/CD drive not included\", 'price' => 999.99, 'sale_price' => 849.99, 'url' => 'http://www.bestbuy.com/site/apple-macbook-air-latest-model-13-3-display-intel-core-i5-4gb-memory-128gb-flash-storage-silver/1581921.p?id=1219056464137&skuId=1581921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1581921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1581\\/1581921_sa.jpg\"}', 'upc' => '888462109765', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2005-2007 Infiniti G35 Vehicles - Silver\", 'description_short' => \"From our expanded online assortment; compatible with most 2005-2007 Infiniti G35 sedans and coupes; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with most 2005-2007 Infiniti G35 sedans and coupes; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2005-2007-infiniti-g35-vehicles-silver/1582038.p?id=1218270207143&skuId=1582038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582038_sa.jpg\"}', 'upc' => '086429181223', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Interface for 2006-2007 Saturn Ion and VUE Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 2006-2007 Saturn Ion and VUE vehicles; allows you to install an aftermarket radio\", 'description_long' => \"From our expanded online assortment; compatible with 2006-2007 Saturn Ion and VUE vehicles; allows you to install an aftermarket radio\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-interface-for-2006-2007-saturn-ion-and-vue-vehicles-multi/1582056.p?id=1218270218230&skuId=1582056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582056_rc.jpg\"}', 'upc' => '086429165018', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for Select Volvo Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with select Volvo vehicles; allows you to install an aftermarket radio\", 'description_long' => \"From our expanded online assortment; compatible with select Volvo vehicles; allows you to install an aftermarket radio\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-select-volvo-vehicles-multi/1582065.p?id=1218270201062&skuId=1582065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582065_rc.jpg\"}', 'upc' => '086429084753', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007-2009 Kia Sorento - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2009 Kia Sorento vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system; recessed DIN opening\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2009 Kia Sorento vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system; recessed DIN opening\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-2009-kia-sorento-black/1582083.p?id=1218270201986&skuId=1582083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582083_sa.jpg\"}', 'upc' => '086429165964', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1990-1996 Chevrolet Corvette - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1990-1996 Chevrolet Corvette vehicles; allows the installation of an aftermarket double-DIN radio into a factory dash location; ISO mount with storage pocket\", 'description_long' => \"From our expanded online assortment; compatible with 1990-1996 Chevrolet Corvette vehicles; allows the installation of an aftermarket double-DIN radio into a factory dash location; ISO mount with storage pocket\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1990-1996-chevrolet-corvette-black/1582092.p?id=1218270216306&skuId=1582092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582092_sa.jpg\"}', 'upc' => '086429098088', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Interface for 1997-2004 Chevrolet Corvette Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible 1997-2004 Chevrolet Corvette vehicles; allows you to install an aftermarket radio; 12V accessory power output; ABS plastic, copper, vinyl and aluminum materials\", 'description_long' => \"From our expanded online assortment; compatible 1997-2004 Chevrolet Corvette vehicles; allows you to install an aftermarket radio; 12V accessory power output; ABS plastic, copper, vinyl and aluminum materials\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-interface-for-1997-2004-chevrolet-corvette-vehicles-black/1582117.p?id=1218270216831&skuId=1582117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582117_sa.jpg\"}', 'upc' => '086429178513', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007-2009 Kia Amanti - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2009 Kia Amanti vehicles; allows you to install an aftermarket DIN car radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2009 Kia Amanti vehicles; allows you to install an aftermarket DIN car radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-2009-kia-amanti-black/1582126.p?id=1218270199693&skuId=1582126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582126_sa.jpg\"}', 'upc' => '086429171903', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007-2008 Honda Fit - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2008 Honda Fit vehicles; allows the installation of an aftermarket radio into a factory dash location; quick-release, snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2008 Honda Fit vehicles; allows the installation of an aftermarket radio into a factory dash location; quick-release, snap-in ISO mount system\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-2008-honda-fit-black/1582135.p?id=1218270198341&skuId=1582135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582135_sa.jpg\"}', 'upc' => '086429164448', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Wiring Harness for 2003 and Later Ford, Lincoln and Mercury Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 2003 and later Ford, Lincoln and Mercury vehicles; connects an aftermarket radio to your vehicle&#039;s harness; 8-pin harness with 2 pairs of RCAs\", 'description_long' => \"From our expanded online assortment; compatible with 2003 and later Ford, Lincoln and Mercury vehicles; connects an aftermarket radio to your vehicle&#039;s harness; 8-pin harness with 2 pairs of RCAs\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-wiring-harness-for-2003-and-later-ford-lincoln-and-mercury-vehicles-multi/1582144.p?id=1218270215900&skuId=1582144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582144_rc.jpg\"}', 'upc' => '086429129676', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2010-2013 Mazda Mazda3 - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2010-2013 Mazda 3 vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic\", 'description_long' => \"From our expanded online assortment; compatible with select 2010-2013 Mazda 3 vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2010-2013-mazda-mazda3-black/1582153.p?id=1218270219787&skuId=1582153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582153_sa.jpg\"}', 'upc' => '086429199112', 'provider' => 'bestbuy'],\n ['name' => \"Metra - BOSE® Tuner Bypass for Select Cadillac and Chevrolet Vehicles\", 'description_short' => \"From our expanded online assortment; compatible with select Cadillac and Chevrolet vehicles; allows the connection of an aftermarket radio to your vehicle&#039;s harness\", 'description_long' => \"From our expanded online assortment; compatible with select Cadillac and Chevrolet vehicles; allows the connection of an aftermarket radio to your vehicle&#039;s harness\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-bose-tuner-bypass-for-select-cadillac-and-chevrolet-vehicles/1582162.p?id=1218270209505&skuId=1582162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582162_rc.jpg\"}', 'upc' => '086429087174', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Cadillac Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Cadillac vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select Cadillac vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-cadillac-vehicles-black/1582171.p?id=1218270211934&skuId=1582171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582171_sa.jpg\"}', 'upc' => '086429213191', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2007-2009 Kia Spectra Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2009 Kia Spectra vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2009 Kia Spectra vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2007-2009-kia-spectra-vehicles-black/1582199.p?id=1218270204650&skuId=1582199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582199_sa.jpg\"}', 'upc' => '086429171910', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 1982-1997 Volvo Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 1982-1997 Volvo vehicles; allows you to install an aftermarket radio\", 'description_long' => \"From our expanded online assortment; compatible with 1982-1997 Volvo vehicles; allows you to install an aftermarket radio\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-1982-1997-volvo-vehicles-multi/1582214.p?id=1218270217715&skuId=1582214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582214_rc.jpg\"}', 'upc' => '086429016884', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2010 Audi A3 Symphony - Black\", 'description_short' => \"From our expanded online assortment; not available in all Best Buy stores; compatible with 2006-2010 Audi A3 vehicles; allows the installation of an aftermarket radio into a factory dash location\", 'description_long' => \"From our expanded online assortment; not available in all Best Buy stores; compatible with 2006-2010 Audi A3 vehicles; allows the installation of an aftermarket radio into a factory dash location\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2010-audi-a3-symphony-black/1582223.p?id=1218270197675&skuId=1582223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582223_sa.jpg\"}', 'upc' => '086429154753', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2005 and Later Honda Ridgeline Vehicles - Brown\", 'description_short' => \"From our expanded online assortment; compatible with 2005 and later Honda Ridgeline vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2005 and later Honda Ridgeline vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2005-and-later-honda-ridgeline-vehicles-brown/1582232.p?id=1218270199500&skuId=1582232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582232_sa.jpg\"}', 'upc' => '086429183111', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 1996-1999 Saturn Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1996-1999 Saturn vehicles; allows the installation of an aftermarket double-DIN radio into a factory dash location; ABS plastic\", 'description_long' => \"From our expanded online assortment; compatible with 1996-1999 Saturn vehicles; allows the installation of an aftermarket double-DIN radio into a factory dash location; ABS plastic\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-1996-1999-saturn-vehicles-black/1582241.p?id=1218270220374&skuId=1582241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582241_sa.jpg\"}', 'upc' => '086429213207', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Antenna Adapter for 2007 and Later Kia Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007 and later Kia vehicles; allows you to install an aftermarket antenna\", 'description_long' => \"From our expanded online assortment; compatible with 2007 and later Kia vehicles; allows you to install an aftermarket antenna\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-adapter-for-2007-and-later-kia-vehicles-black/1582269.p?id=1218270201987&skuId=1582269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582269_sa.jpg\"}', 'upc' => '086429170593', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Interface for Select Chevrolet Equinox and Pontiac Torrent Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with select Chevrolet Equinox and Pontiac Torrent vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select Chevrolet Equinox and Pontiac Torrent vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-interface-for-select-chevrolet-equinox-and-pontiac-torrent-vehicles-multi/1582278.p?id=1218270199087&skuId=1582278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582278_rc.jpg\"}', 'upc' => '086429139798', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2002-2011 Volvo XC 90 - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2002-2011 Volvo XC90 vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; color- and contour-matched\", 'description_long' => \"From our expanded online assortment; compatible with 2002-2011 Volvo XC90 vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; color- and contour-matched\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2002-2011-volvo-xc-90-black/1582296.p?id=1218270201785&skuId=1582296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582296_rc.jpg\"}', 'upc' => '086429139514', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 1998-2001 Land Rover Discovery Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 1998-2001 Land Rover Discovery vehicles; allows you to install an aftermarket radio into your vehicle&#039;s harness\", 'description_long' => \"From our expanded online assortment; compatible with 1998-2001 Land Rover Discovery vehicles; allows you to install an aftermarket radio into your vehicle&#039;s harness\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-1998-2001-land-rover-discovery-vehicles-multi/1582311.p?id=1218270208588&skuId=1582311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582311_rc.jpg\"}', 'upc' => '086429115310', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007-2014 Mini Cooper all but convertible - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2014 Mini Cooper vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2014 Mini Cooper vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-2014-mini-cooper-all-but-convertible-black/1582348.p?id=1218270206078&skuId=1582348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582348_sa.jpg\"}', 'upc' => '086429216710', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2005-2009 Hyundai Tucson Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2005-2009 Hyundai Tucson vehicles; allows you to install an aftermarket double-DIN car radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2005-2009 Hyundai Tucson vehicles; allows you to install an aftermarket double-DIN car radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2005-2009-hyundai-tucson-vehicles-black/1582366.p?id=1218270200861&skuId=1582366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582366_sa.jpg\"}', 'upc' => '086429199723', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2006-2009 BMW 3-Series Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2006-2009 BMW 3-Series vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2006-2009 BMW 3-Series vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2006-2009-bmw-3-series-vehicles-black/1582375.p?id=1218270222606&skuId=1582375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582375_sa.jpg\"}', 'upc' => '086429199341', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2008 Hyundai Sonata - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2006-2008 Hyundai Sonata vehicles; allows you to install an aftermarket double-DIN car radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with 2006-2008 Hyundai Sonata vehicles; allows you to install an aftermarket double-DIN car radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2008-hyundai-sonata-black/1582393.p?id=1218270201183&skuId=1582393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582393_sa.jpg\"}', 'upc' => '086429147243', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Tuner Bypass for Select Buick, Chevrolet and Pontiac Vehicles\", 'description_short' => \"From our expanded online assortment; compatible with select Buick, Chevrolet and Pontiac vehicles; allows the connection of an aftermarket radio to your vehicle&#039;s harness\", 'description_long' => \"From our expanded online assortment; compatible with select Buick, Chevrolet and Pontiac vehicles; allows the connection of an aftermarket radio to your vehicle&#039;s harness\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-tuner-bypass-for-select-buick-chevrolet-and-pontiac-vehicles/1582408.p?id=1218270205676&skuId=1582408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582408_rc.jpg\"}', 'upc' => '086429105175', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Mitsubishi Eclipse and Endeavor Vehicles - Multicolor\", 'description_short' => \"From our expanded online assortment; compatible with select Mitsubishi Eclipse and Endeavor vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select Mitsubishi Eclipse and Endeavor vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-mitsubishi-eclipse-and-endeavor-vehicles-multicolor/1582426.p?id=1218270212402&skuId=1582426&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582426', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582426_sa.jpg\"}', 'upc' => '086429183845', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2002-2005 Honda Civic Si 3-door only - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2002-2005 Honda Civic SI vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2002-2005 Honda Civic SI vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2002-2005-honda-civic-si-3-door-only-black/1582435.p?id=1218270211460&skuId=1582435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582435_sa.jpg\"}', 'upc' => '086429091539', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 1999-2002 Mercury Cougar and 2000-2004 Ford Focus Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1999-2002 Mercury Cougar and 2000-2004 Ford Focus vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 1999-2002 Mercury Cougar and 2000-2004 Ford Focus vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-1999-2002-mercury-cougar-and-2000-2004-ford-focus-vehicles-black/1582444.p?id=1218270213064&skuId=1582444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582444_sa.jpg\"}', 'upc' => '086429213467', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2001-2001 Hyundai XG 300/XG 350 - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Hyundai XG 300 and XG 350 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select Hyundai XG 300 and XG 350 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2001-2001-hyundai-xg-300-xg-350-black/1582462.p?id=1218270210219&skuId=1582462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582462_sa.jpg\"}', 'upc' => '086429146413', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2004-2008 Suzuki and Chevrolet Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2004-2008 Suzuki Verona, Suzuki Forenza and Chevrolet Aveo vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select 2004-2008 Suzuki Verona, Suzuki Forenza and Chevrolet Aveo vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2004-2008-suzuki-and-chevrolet-vehicles-black/1582471.p?id=1218270206220&skuId=1582471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582471_sa.jpg\"}', 'upc' => '086429164479', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 1992-1996 Lexus ES Series Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1992-1996 Lexus ES Series vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 1992-1996 Lexus ES Series vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-1992-1996-lexus-es-series-vehicles-black/1582499.p?id=1218270222020&skuId=1582499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582499_sa.jpg\"}', 'upc' => '086429172184', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2006 Pontiac GTO - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2006 Pontiac GTO vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; recessed DIN mounting, oversize, under-radio storage pocket\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2006 Pontiac GTO vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; recessed DIN mounting, oversize, under-radio storage pocket\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2006-pontiac-gto-black/1582505.p?id=1218270203554&skuId=1582505&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582505', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582505_sa.jpg\"}', 'upc' => '086429127429', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2008-2011 Mazda Tribute/Mercury Mariner - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2008-2011 Mazda Tribute/Mercury Mariner vehicles; allows the installation of an aftermarket radio into a factory dashboard location; snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with select 2008-2011 Mazda Tribute/Mercury Mariner vehicles; allows the installation of an aftermarket radio into a factory dashboard location; snap-in ISO mount system\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2008-2011-mazda-tribute-mercury-mariner-black/1582514.p?id=1218270197674&skuId=1582514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582514_sa.jpg\"}', 'upc' => '086429168736', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 1987-2001 Volkswagen and Audi Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 1987-2001 Volkswagen and Audi vehicles; allows you to connect an aftermarket radio to your vehicle&#039;s harness; color-coded and labeled wires\", 'description_long' => \"From our expanded online assortment; compatible with 1987-2001 Volkswagen and Audi vehicles; allows you to connect an aftermarket radio to your vehicle&#039;s harness; color-coded and labeled wires\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-1987-2001-volkswagen-and-audi-vehicles-multi/1582523.p?id=1218270211338&skuId=1582523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582523_rc.jpg\"}', 'upc' => '086429105526', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2006 Kia Amanti - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2006 Kia Amanti vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2006 Kia Amanti vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2006-kia-amanti-black/1582532.p?id=1218270206942&skuId=1582532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582532_sa.jpg\"}', 'upc' => '086429145829', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2014 Hyundai Entourage/Kia Sedona - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Kia and Hyundai vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; recessed DIN mounting; snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with select Kia and Hyundai vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; recessed DIN mounting; snap-in ISO mount system\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2014-hyundai-entourage-kia-sedona-black/1582541.p?id=1218270207530&skuId=1582541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582541_sa.jpg\"}', 'upc' => '086429160556', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2005-2009 Subaru Legacy/Outback without auto climate controls - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 2005-2009 Subaru Legacy/Outback vehicles; quick-release, snap-in ISO system; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2005-2009 Subaru Legacy/Outback vehicles; quick-release, snap-in ISO system; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2005-2009-subaru-legacy-outback-without-auto-climate-controls-multi/1582569.p?id=1218270211530&skuId=1582569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582569_rc.jpg\"}', 'upc' => '086429147120', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1995-2000 Lexus LS400 non NAV - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1995-2000 Lexus LS series vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 1995-2000 Lexus LS series vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1995-2000-lexus-ls400-non-nav-black/1582578.p?id=1218270213458&skuId=1582578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582578_rc.jpg\"}', 'upc' => '086429120918', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2009-2010 Kia Borrego - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2009-2010 Kia Borrego vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with 2009-2010 Kia Borrego vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO mount system\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2009-2010-kia-borrego-black/1582587.p?id=1218270199229&skuId=1582587', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582587_sa.jpg\"}', 'upc' => '086429186631', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Hyundai Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1996-2000 Hyundai Elantra, 1995-2001 Sonata, 1997-2002 Tiburon and 2001-2006 Santa Fe vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 1996-2000 Hyundai Elantra, 1995-2001 Sonata, 1997-2002 Tiburon and 2001-2006 Santa Fe vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-hyundai-vehicles-black/1582596.p?id=1218270213528&skuId=1582596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582596_sa.jpg\"}', 'upc' => '086429151080', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2010 Kia Soul Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2010 Kia Soul vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2010 Kia Soul vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2010-kia-soul-vehicles-black/1582602.p?id=1218270222738&skuId=1582602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582602_sa.jpg\"}', 'upc' => '086429204076', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2011 Kia Sorento Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2011 Kia Sorento vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2011 Kia Sorento vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2011-kia-sorento-vehicles-black/1582611.p?id=1218270198006&skuId=1582611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582611_sa.jpg\"}', 'upc' => '086429222124', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2002-2006 Acura RSX Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2002-2006 Acura RSX Type S vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2002-2006 Acura RSX Type S vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2002-2006-acura-rsx-vehicles-black/1582639.p?id=1218270210088&skuId=1582639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582639_sa.jpg\"}', 'upc' => '086429173280', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006.5-2010 Kia Optima - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2006.5-2010 Kia Optima vehicles; allows the installation of an aftermarket radio into a factory dash location; quick-release, snap-in ISO mount system; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2006.5-2010 Kia Optima vehicles; allows the installation of an aftermarket radio into a factory dash location; quick-release, snap-in ISO mount system; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-5-2010-kia-optima-black/1582648.p?id=1218270216436&skuId=1582648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582648_sa.jpg\"}', 'upc' => '086429161058', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2010-2011 Kia Soul - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2010-2011 Kia Soul vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select 2010-2011 Kia Soul vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2010-2011-kia-soul-black/1582657.p?id=1218270198598&skuId=1582657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582657_sa.jpg\"}', 'upc' => '086429204052', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2009-2011 Mazda RX8 - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2009-2011 Mazda RX-8 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2009-2011 Mazda RX-8 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2009-2011-mazda-rx8-black/1582666.p?id=1218270206535&skuId=1582666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582666_sa.jpg\"}', 'upc' => '086429204915', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Interface for Select 2007 Chrysler, Dodge and Jeep Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2007 Chrysler, Dodge and Jeep vehicles; allows you to install an aftermarket radio; navigation outputs; ABS plastic, copper, vinyl and aluminum materials\", 'description_long' => \"From our expanded online assortment; compatible with select 2007 Chrysler, Dodge and Jeep vehicles; allows you to install an aftermarket radio; navigation outputs; ABS plastic, copper, vinyl and aluminum materials\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-interface-for-select-2007-chrysler-dodge-and-jeep-vehicles-black/1582675.p?id=1218270220243&skuId=1582675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582675_rc.jpg\"}', 'upc' => '086429164745', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Buick, Oldsmobile and Pontiac Vehicles - Multicolor\", 'description_short' => \"From our expanded online assortment; compatible with select Buick, Oldsmobile and Pontiac vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select Buick, Oldsmobile and Pontiac vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-buick-oldsmobile-and-pontiac-vehicles-multicolor/1582684.p?id=1218270198270&skuId=1582684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582684_sa.jpg\"}', 'upc' => '086429126484', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Kia and Hyundai Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2006-2010 Kia Sedona and 2007-2008 Hyundai Entourage vehicles; allows the installation of an aftermarket double-DIN car radio into a factory dash location; ABS plastic\", 'description_long' => \"From our expanded online assortment; compatible with 2006-2010 Kia Sedona and 2007-2008 Hyundai Entourage vehicles; allows the installation of an aftermarket double-DIN car radio into a factory dash location; ABS plastic\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-kia-and-hyundai-vehicles-black/1582693.p?id=1218270205797&skuId=1582693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582693_sa.jpg\"}', 'upc' => '086429160549', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2006-2010 Kia Optima Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2006-2010 Kia Optima vehicles; allows the installation of an aftermarket double-DIN or 2 single-DIN radios into a factory dash location\", 'description_long' => \"From our expanded online assortment; compatible with 2006-2010 Kia Optima vehicles; allows the installation of an aftermarket double-DIN or 2 single-DIN radios into a factory dash location\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2006-2010-kia-optima-vehicles-black/1582702.p?id=1218270221807&skuId=1582702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582702_sa.jpg\"}', 'upc' => '086429160877', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 1997-2003 Lexus ES Series Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1997-2003 Lexus ES Series vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 1997-2003 Lexus ES Series vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-1997-2003-lexus-es-series-vehicles-black/1582711.p?id=1218270223136&skuId=1582711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582711_sa.jpg\"}', 'upc' => '086429172849', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2004-2006 Nissan Maxima Vehicles - Silver\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2006 Nissan Maxima vehicles; allows the installation of an aftermarket radio into a factory dash location; ISO mount; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2006 Nissan Maxima vehicles; allows the installation of an aftermarket radio into a factory dash location; ISO mount; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2004-2006-nissan-maxima-vehicles-silver/1582739.p?id=1218270197877&skuId=1582739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582739_sa.jpg\"}', 'upc' => '086429200207', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Nissan Vehicles - Silver\", 'description_short' => \"From our expanded online assortment; compatible with select Nissan vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; color- and contour-matched\", 'description_long' => \"From our expanded online assortment; compatible with select Nissan vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; color- and contour-matched\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-nissan-vehicles-silver/1582748.p?id=1218270202654&skuId=1582748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582748_sa.jpg\"}', 'upc' => '086429190027', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2005-2009 Buick LaCrosse/ Allure - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2005-2009 Buick LaCrosse vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; quick-release, snap-in design\", 'description_long' => \"From our expanded online assortment; compatible with 2005-2009 Buick LaCrosse vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; quick-release, snap-in design\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2005-2009-buick-lacrosse-allure-black/1582757.p?id=1218271246858&skuId=1582757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582757_sa.jpg\"}', 'upc' => '086429171743', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 1987-1994 Nissan Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 1987-1994 Nissan vehicles; connects an aftermarket radio to your vehicle&#039;s harness; ABS plastic, copper, vinyl and aluminum materials\", 'description_long' => \"From our expanded online assortment; compatible with 1987-1994 Nissan vehicles; connects an aftermarket radio to your vehicle&#039;s harness; ABS plastic, copper, vinyl and aluminum materials\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-1987-1994-nissan-vehicles-multi/1582766.p?id=1218270220760&skuId=1582766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582766_rc.jpg\"}', 'upc' => '086429105397', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 1993-1994 Honda Accord Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 1993-1994 Honda Accord vehicles; connects an aftermarket radio to your vehicle&#039;s harness; 8-pin harness with 2 pairs of RCA connectors\", 'description_long' => \"From our expanded online assortment; compatible with 1993-1994 Honda Accord vehicles; connects an aftermarket radio to your vehicle&#039;s harness; 8-pin harness with 2 pairs of RCA connectors\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-1993-1994-honda-accord-vehicles-multi/1582775.p?id=1218270212200&skuId=1582775&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582775', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582775_rc.jpg\"}', 'upc' => '086429106080', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 2003 Ford Tremor Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 2003 Ford Tremor vehicles; connects an aftermarket radio to your vehicle&#039;s harness; included 8-pin harness with 2 pairs of RCA plugs\", 'description_long' => \"From our expanded online assortment; compatible with 2003 Ford Tremor vehicles; connects an aftermarket radio to your vehicle&#039;s harness; included 8-pin harness with 2 pairs of RCA plugs\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-2003-ford-tremor-vehicles-multi/1582784.p?id=1218270206422&skuId=1582784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582784_rc.jpg\"}', 'upc' => '086429109333', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2002.5-2008 Jaguar S-type non-NAV models - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2002.5-2008 Jaguar S-type non-NAV models; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select 2002.5-2008 Jaguar S-type non-NAV models; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2002-5-2008-jaguar-s-type-non-nav-models-black/1582793.p?id=1218270213388&skuId=1582793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582793_sa.jpg\"}', 'upc' => '086429215881', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Interface for Select Buick, Oldsmobile and Pontiac Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with select Buick, Oldsmobile and Pontiac vehicles; allows you to install an aftermarket radio\", 'description_long' => \"From our expanded online assortment; compatible with select Buick, Oldsmobile and Pontiac vehicles; allows you to install an aftermarket radio\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-interface-for-select-buick-oldsmobile-and-pontiac-vehicles-multi/1582811.p?id=1218270221483&skuId=1582811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582811_rc.jpg\"}', 'upc' => '086429153992', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007-2010 Kia Rondo - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2010 Kia Rondo vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; recessed DIN mounting; oversize storage pocket\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2010 Kia Rondo vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; recessed DIN mounting; oversize storage pocket\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-2010-kia-rondo-black/1582839.p?id=1218270208192&skuId=1582839&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582839', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582839_sa.jpg\"}', 'upc' => '086429167128', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2009-2014 Nissan Maxima WITHOUT OE NAV or tech - Gray\", 'description_short' => \"From our expanded online assortment; compatible with select 2009-2014 Nissan Maxima vehicles; allows the installation of an aftermarket radio into a factory dash location; snap-in ISO mount system; ABS plastic\", 'description_long' => \"From our expanded online assortment; compatible with select 2009-2014 Nissan Maxima vehicles; allows the installation of an aftermarket radio into a factory dash location; snap-in ISO mount system; ABS plastic\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2009-2014-nissan-maxima-without-oe-nav-or-tech-gray/1582848.p?id=1218270221616&skuId=1582848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582848_sa.jpg\"}', 'upc' => '086429186426', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 2008 and Later Smart Fortwo Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 2008 and later Smart Fortwo vehicles; allows you to install an aftermarket radio\", 'description_long' => \"From our expanded online assortment; compatible with 2008 and later Smart Fortwo vehicles; allows you to install an aftermarket radio\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-2008-and-later-smart-fortwo-vehicles-multi/1582857.p?id=1218270215689&skuId=1582857&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582857', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582857_rc.jpg\"}', 'upc' => '086429178445', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1998-2005 Lexus GS 300/400/430 non-NAV - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 1998-2005 Lexus GS series vehicles; allows the installation of an aftermarket radio into a factory dash location; snap-in ISO mount system; ABS plastic\", 'description_long' => \"From our expanded online assortment; compatible with select 1998-2005 Lexus GS series vehicles; allows the installation of an aftermarket radio into a factory dash location; snap-in ISO mount system; ABS plastic\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1998-2005-lexus-gs-300-400-430-non-nav-black/1582866.p?id=1218270215532&skuId=1582866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582866_sa.jpg\"}', 'upc' => '086429101689', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2009-2010 Pontiac Vibe/Toyota Matrix w/o NAV - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Toyota and Pontiac vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select Toyota and Pontiac vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2009-2010-pontiac-vibe-toyota-matrix-w-o-nav-black/1582884.p?id=1218270207672&skuId=1582884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582884_sa.jpg\"}', 'upc' => '086429192090', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2009-2011 Mazda RX8 - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 2009-2011 Mazda RX-8 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2009-2011 Mazda RX-8 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2009-2011-mazda-rx8-multi/1582902.p?id=1218270223931&skuId=1582902&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582902_rc.jpg\"}', 'upc' => '086429204908', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2004-2008 Mazda RX-8 Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2008 Mazda RX-8 vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; ISO mounts with quick-release brackets; custom trim plate and design\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2008 Mazda RX-8 vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; ISO mounts with quick-release brackets; custom trim plate and design\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2004-2008-mazda-rx-8-vehicles-black/1582911.p?id=1218270202992&skuId=1582911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582911_sa.jpg\"}', 'upc' => '086429182954', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2003-2009 Toyota 4Runner Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2003-2009 Toyota 4Runner vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2003-2009 Toyota 4Runner vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2003-2009-toyota-4runner-vehicles-black/1582939.p?id=1218270207802&skuId=1582939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582939_sa.jpg\"}', 'upc' => '086429167500', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2007-2009 Mazda CX9 Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2009 Mazda CX9 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2009 Mazda CX9 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2007-2009-mazda-cx9-vehicles-black/1582948.p?id=1218270213799&skuId=1582948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582948_sa.jpg\"}', 'upc' => '086429199686', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 1987-1993 Ford Mustang Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1987-1993 Ford Mustang vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 1987-1993 Ford Mustang vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-1987-1993-ford-mustang-vehicles-black/1582957.p?id=1218270209249&skuId=1582957&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582957_sa.jpg\"}', 'upc' => '086429199839', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2000-2003 Nissan Maxima Vehicles - Gray\", 'description_short' => \"From our expanded online assortment; compatible with 2000-2003 Nissan Maxima vehicles; allows the installation of an aftermarket radio into a factory dash location\", 'description_long' => \"From our expanded online assortment; compatible with 2000-2003 Nissan Maxima vehicles; allows the installation of an aftermarket radio into a factory dash location\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2000-2003-nissan-maxima-vehicles-gray/1582966.p?id=1218270220891&skuId=1582966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582966_sa.jpg\"}', 'upc' => '086429213177', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2000-2006 BMW X5 Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2000-2006 BMW X5 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2000-2006 BMW X5 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2000-2006-bmw-x5-vehicles-black/1582975.p?id=1218270201254&skuId=1582975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582975_sa.jpg\"}', 'upc' => '086429216499', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2012 Mitsubishi Eclipse - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2006-2012 Mitsubishi Eclipse vehicles; allows you to install an aftermarket DIN or double-DIN radio in your vehicle&#039;s dash; removable, oversize storage pocket\", 'description_long' => \"From our expanded online assortment; compatible with 2006-2012 Mitsubishi Eclipse vehicles; allows you to install an aftermarket DIN or double-DIN radio in your vehicle&#039;s dash; removable, oversize storage pocket\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2012-mitsubishi-eclipse-black/1582984.p?id=1218270208386&skuId=1582984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582984_sa.jpg\"}', 'upc' => '086429153718', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 1993-1997 Lexus GS Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1993-1997 Lexus GS vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash; designed for double DIN radios\", 'description_long' => \"From our expanded online assortment; compatible with 1993-1997 Lexus GS vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash; designed for double DIN radios\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-1993-1997-lexus-gs-vehicles-black/1582993.p?id=1218270212472&skuId=1582993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1582993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1582\\/1582993_sa.jpg\"}', 'upc' => '086429172191', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007-2009 Kia Spectra/Spectra 5 - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2009 Kia Spectra vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2009 Kia Spectra vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-2009-kia-spectra-spectra-5-black/1583019.p?id=1218270198887&skuId=1583019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583019_sa.jpg\"}', 'upc' => '086429172023', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007-2008 Nissan Maxima - Gray\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2008 Nissan Maxima vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; contoured, textured design\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2008 Nissan Maxima vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; contoured, textured design\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-2008-nissan-maxima-gray/1583028.p?id=1218270211742&skuId=1583028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583028_sa.jpg\"}', 'upc' => '086429164165', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2005-2011 Mercedes SLK-Class - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2005-2011 Mercedes SLK vehicles; allows you to install an aftermarket double-DIN car radio in your vehicle&#039;s dash; recessed DIN mount\", 'description_long' => \"From our expanded online assortment; compatible with 2005-2011 Mercedes SLK vehicles; allows you to install an aftermarket double-DIN car radio in your vehicle&#039;s dash; recessed DIN mount\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2005-2011-mercedes-slk-class-black/1583037.p?id=1218270203881&skuId=1583037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583037_sa.jpg\"}', 'upc' => '086429161836', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2001-2008 Jaguar X-Type non-NAV models - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Jaguar vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select Jaguar vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2001-2008-jaguar-x-type-non-nav-models-black/1583046.p?id=1218270222416&skuId=1583046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583046_sa.jpg\"}', 'upc' => '086429204120', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2000-2004 Toyota Avalon - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2000-2004 Toyota Avalon vehicles; allows you to install an aftermarket DIN car radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2000-2004 Toyota Avalon vehicles; allows you to install an aftermarket DIN car radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2000-2004-toyota-avalon-black/1583055.p?id=1218270199631&skuId=1583055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583055_sa.jpg\"}', 'upc' => '086429125944', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Hyundai and Kia Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Hyundai and Kia vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with select Hyundai and Kia vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-hyundai-and-kia-vehicles-black/1583064.p?id=1218270215759&skuId=1583064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583064_sa.jpg\"}', 'upc' => '086429151059', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2007-2009 Kia Amanti Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2009 Kia Amanti vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2009 Kia Amanti vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2007-2009-kia-amanti-vehicles-black/1583082.p?id=1218270197876&skuId=1583082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583082_sa.jpg\"}', 'upc' => '086429172009', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 1997-2003 BMW 5 Series Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1997-2003 BMW 5 Series vehicles; allows the installation of a double-DIN radio into a factory dash location; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 1997-2003 BMW 5 Series vehicles; allows the installation of a double-DIN radio into a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-1997-2003-bmw-5-series-vehicles-black/1583107.p?id=1218270220245&skuId=1583107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583107_sa.jpg\"}', 'upc' => '086429216482', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2010-2015 Chevrolet Equinox/Gmc Terrain with mono info screen - Gray\", 'description_short' => \"From our expanded online assortment; compatible with select 2010-2015 Chevrolet Equinox/Gmc Terrain vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select 2010-2015 Chevrolet Equinox/Gmc Terrain vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2010-2015-chevrolet-equinox-gmc-terrain-with-mono-info-screen-gray/1583116.p?id=1218270203616&skuId=1583116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583116_rc.jpg\"}', 'upc' => '086429216697', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 1990-1994 Lexus LS Series Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1990-1994 Lexus LS Series vehicles; allows the installation of an aftermarket double-DIN car radio into a factory dash location; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 1990-1994 Lexus LS Series vehicles; allows the installation of an aftermarket double-DIN car radio into a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-1990-1994-lexus-ls-series-vehicles-black/1583125.p?id=1218270205938&skuId=1583125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583125_sa.jpg\"}', 'upc' => '086429173297', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2000-2004 Toyota Avalon Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2000-2004 Toyota Avalon vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2000-2004 Toyota Avalon vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2000-2004-toyota-avalon-vehicles-black/1583134.p?id=1218270197170&skuId=1583134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583134_sa.jpg\"}', 'upc' => '086429164493', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2003-2006 Dodge Sprinter van - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2003-2006 Dodge Sprinter vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2003-2006 Dodge Sprinter vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2003-2006-dodge-sprinter-van-black/1583152.p?id=1218270216040&skuId=1583152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583152_sa.jpg\"}', 'upc' => '086429142354', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for Most Ford Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with most Ford vehicles; allows the connection of an aftermarket radio to your vehicle&#039;s harness; labeled and color-coded wires\", 'description_long' => \"From our expanded online assortment; compatible with most Ford vehicles; allows the connection of an aftermarket radio to your vehicle&#039;s harness; labeled and color-coded wires\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-most-ford-vehicles-multi/1583198.p?id=1218270223736&skuId=1583198', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583198_rc.jpg\"}', 'upc' => '086429086412', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 2010 Ford Transit Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 2010 Ford Transit vehicles; allows you to install an aftermarket radio\", 'description_long' => \"From our expanded online assortment; compatible with 2010 Ford Transit vehicles; allows you to install an aftermarket radio\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-2010-ford-transit-vehicles-multi/1583204.p?id=1218270198484&skuId=1583204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583204_rc.jpg\"}', 'upc' => '086429201983', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2001-2004 Volvo S60/V70/ Cross Country/ XC70 - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2001-2004 Volvo S60, V70 and XC70 vehicles; allows you to install an aftermarket DIN car radio in your vehicle&#039;s dash; utilizes factory radio brackets\", 'description_long' => \"From our expanded online assortment; compatible with 2001-2004 Volvo S60, V70 and XC70 vehicles; allows you to install an aftermarket DIN car radio in your vehicle&#039;s dash; utilizes factory radio brackets\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2001-2004-volvo-s60-v70-cross-country-xc70-black/1583213.p?id=1218270201396&skuId=1583213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583213_sa.jpg\"}', 'upc' => '086429098095', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2006 Land Rover Freelander - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2006 Land Rover Freelander vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash; interchangeable design\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2006 Land Rover Freelander vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash; interchangeable design\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2006-land-rover-freelander-black/1583222.p?id=1218270205099&skuId=1583222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583222_sa.jpg\"}', 'upc' => '086429154760', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Interface for 2003-2007 Cadillac CTS and SRX Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2003-2007 Cadillac CTS and SRX vehicles; allows you to install an aftermarket radio\", 'description_long' => \"From our expanded online assortment; compatible with 2003-2007 Cadillac CTS and SRX vehicles; allows you to install an aftermarket radio\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-interface-for-2003-2007-cadillac-cts-and-srx-vehicles-black/1583231.p?id=1218270224256&skuId=1583231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583231_rc.jpg\"}', 'upc' => '086429153695', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2000-2006 Mazda MPV Van - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2000-2006 Mazda MPV vehicles; allows the installation of an aftermarket radio into a factory dash location; snap-in ISO mount system; built-in pocket; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2000-2006 Mazda MPV vehicles; allows the installation of an aftermarket radio into a factory dash location; snap-in ISO mount system; built-in pocket; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2000-2006-mazda-mpv-van-black/1583259.p?id=1218270215039&skuId=1583259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583259_sa.jpg\"}', 'upc' => '086429101733', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2009-2015 Nissan 370Z non NAV - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2009-2015 Nissan 370Z vehicles; allows the installation of an aftermarket radio into a factory dash location; single- and double-DIN installation\", 'description_long' => \"From our expanded online assortment; compatible with select 2009-2015 Nissan 370Z vehicles; allows the installation of an aftermarket radio into a factory dash location; single- and double-DIN installation\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2009-2015-nissan-370z-non-nav-black/1583277.p?id=1218270215232&skuId=1583277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583277_sa.jpg\"}', 'upc' => '086429191888', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2003-2007 Cadillac CTS/SRX - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2003-2007 Cadillac CTS and 2004-2006 SRX vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash; snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with 2003-2007 Cadillac CTS and 2004-2006 SRX vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash; snap-in ISO mount system\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2003-2007-cadillac-cts-srx-black/1583286.p?id=1218270211600&skuId=1583286&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583286', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583286_sa.jpg\"}', 'upc' => '086429145898', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Chevrolet, Geo, Isuzu and Honda Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 1985-1995 Chevrolet, Geo, Isuzu and Honda vehicles; allows conversion from 2 shaft to DIN; allows quick installation of a 1/4&quot; or 1/2&quot; DIN equalizer\", 'description_long' => \"From our expanded online assortment; compatible with select 1985-1995 Chevrolet, Geo, Isuzu and Honda vehicles; allows conversion from 2 shaft to DIN; allows quick installation of a 1/4&quot; or 1/2&quot; DIN equalizer\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-chevrolet-geo-isuzu-and-honda-vehicles-black/1583295.p?id=1218270210848&skuId=1583295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583295_sa.jpg\"}', 'upc' => '086429003785', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2009-2010 Hyundai Sonata - Brown\", 'description_short' => \"From our expanded online assortment; compatible with 2009-2010 Hyundai Sonata vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system; recessed DIN opening\", 'description_long' => \"From our expanded online assortment; compatible with 2009-2010 Hyundai Sonata vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system; recessed DIN opening\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2009-2010-hyundai-sonata-brown/1583301.p?id=1218270202455&skuId=1583301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583301_sa.jpg\"}', 'upc' => '086429183050', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2011 Mazda Mazda5 - Silver\", 'description_short' => \"From our expanded online assortment; compatible with 2006-2011 Mazda 5 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; contoured, textured design\", 'description_long' => \"From our expanded online assortment; compatible with 2006-2011 Mazda 5 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; contoured, textured design\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2011-mazda-mazda5-silver/1583329.p?id=1218270221877&skuId=1583329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583329_sa.jpg\"}', 'upc' => '086429174966', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Antenna Adapter for 2007 and Later Kia Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007 and later Kia vehicles; allows you to install an aftermarket antenna\", 'description_long' => \"From our expanded online assortment; compatible with 2007 and later Kia vehicles; allows you to install an aftermarket antenna\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-adapter-for-2007-and-later-kia-vehicles-black/1583338.p?id=1218270223004&skuId=1583338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583338_sa.jpg\"}', 'upc' => '086429170586', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2007 Ford Taurus/Mercury Sable electronic controls - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2007 Ford Taurus and Mercury Sable vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; integrated climate controls\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2007 Ford Taurus and Mercury Sable vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; integrated climate controls\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2007-ford-taurus-mercury-sable-electronic-controls-multi/1583347.p?id=1218271244315&skuId=1583347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583347_rc.jpg\"}', 'upc' => '086429213238', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1996-1997 Toyota Paseo/Tercel - Silver\", 'description_short' => \"From our expanded online assortment; Compatible with select 1996-1997 Toyota Paseo/Tercel vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; Compatible with select 1996-1997 Toyota Paseo/Tercel vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1996-1997-toyota-paseo-tercel-silver/1583356.p?id=1218270199360&skuId=1583356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583356_sa.jpg\"}', 'upc' => '086429018291', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2009 Toyota Prius - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2009 Toyota Prius vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2009 Toyota Prius vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2009-toyota-prius-black/1583365.p?id=1218270222668&skuId=1583365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583365_sa.jpg\"}', 'upc' => '086429138388', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Interface for Select Mitsubishi Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with select Mitsubishi vehicles; provides outputs to add a navigation radio; VSS (vehicle speed sensor)\", 'description_long' => \"From our expanded online assortment; compatible with select Mitsubishi vehicles; provides outputs to add a navigation radio; VSS (vehicle speed sensor)\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-interface-for-select-mitsubishi-vehicles-multi/1583374.p?id=1218270211145&skuId=1583374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583374_rc.jpg\"}', 'upc' => '086429190225', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2000-2001 Infiniti I30/I35 - Gray\", 'description_short' => \"From our expanded online assortment; compatible with 2000-2001 Infiniti I30/I35 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2000-2001 Infiniti I30/I35 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2000-2001-infiniti-i30-i35-gray/1583383.p?id=1218270213869&skuId=1583383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583383_sa.jpg\"}', 'upc' => '086429218448', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2007-2009 Kia Rondo Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2009 Kia Rondo vehicles; allows the installation of an aftermarket radio into a factory dash location; double-DIN installation\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2009 Kia Rondo vehicles; allows the installation of an aftermarket radio into a factory dash location; double-DIN installation\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2007-2009-kia-rondo-vehicles-black/1583392.p?id=1218270217461&skuId=1583392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583392_sa.jpg\"}', 'upc' => '086429166671', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2007-2009 Dodge Sprinter Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2009 Dodge Sprinter vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2009 Dodge Sprinter vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2007-2009-dodge-sprinter-vehicles-black/1583407.p?id=1218270198675&skuId=1583407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583407_sa.jpg\"}', 'upc' => '086429171750', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2011 Mitsubishi Endeavor - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2011 Mitsubishi Endeavor vehicles; allows the installation of an aftermarket radio into a factory dash location; ISO trim ring\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2011 Mitsubishi Endeavor vehicles; allows the installation of an aftermarket radio into a factory dash location; ISO trim ring\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2011-mitsubishi-endeavor-black/1583416.p?id=1218270220641&skuId=1583416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583416_sa.jpg\"}', 'upc' => '086429109869', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2005-2006 Kia Spectra 5 - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2005-2006 Kia Spectra5 vehicles; allows the installation of an aftermarket radio into a factory dash location; quick-release, snap-in ISO mount system; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2005-2006 Kia Spectra5 vehicles; allows the installation of an aftermarket radio into a factory dash location; quick-release, snap-in ISO mount system; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2005-2006-kia-spectra-5-black/1583425.p?id=1218270206221&skuId=1583425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583425_sa.jpg\"}', 'upc' => '086429142330', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit For 2010 Subaru Legacy and Outback Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2010 Subaru Legacy and Outback vehicles; allows the installation of an aftermarket radio into a factory dash location; double-DIN installation\", 'description_long' => \"From our expanded online assortment; compatible with 2010 Subaru Legacy and Outback vehicles; allows the installation of an aftermarket radio into a factory dash location; double-DIN installation\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2010-subaru-legacy-and-outback-vehicles-black/1583434.p?id=1218270214907&skuId=1583434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583434_sa.jpg\"}', 'upc' => '086429216505', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2008 Mazda RX8 - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2008 Mazda RX-8 vehicles; allows the installation of a DIN radio into a factory dash location; quick-release ISO mount system; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2008 Mazda RX-8 vehicles; allows the installation of a DIN radio into a factory dash location; quick-release ISO mount system; ABS plastic material\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2008-mazda-rx8-black/1583443.p?id=1218270206676&skuId=1583443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583443_rc.jpg\"}', 'upc' => '086429183074', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2008-2009 Saturn Astra gray dash - Gray\", 'description_short' => \"From our expanded online assortment; compatible with 2008-2009 Saturn Astra vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with 2008-2009 Saturn Astra vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; quick-release, snap-in ISO mount system\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2008-2009-saturn-astra-gray-dash-gray/1583452.p?id=1218270207418&skuId=1583452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583452_sa.jpg\"}', 'upc' => '086429183029', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 1995-1998 Ford Vehicles - Multicolored\", 'description_short' => \"From our expanded online assortment; compatible with 1995-1998 Ford vehicles; connects an aftermarket radio to your vehicle&#039;s harness; ABS plastic, copper, vinyl and aluminum materials\", 'description_long' => \"From our expanded online assortment; compatible with 1995-1998 Ford vehicles; connects an aftermarket radio to your vehicle&#039;s harness; ABS plastic, copper, vinyl and aluminum materials\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-1995-1998-ford-vehicles-multicolored/1583461.p?id=1218270198745&skuId=1583461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583461_rc.jpg\"}', 'upc' => '086429088614', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2002-2008 Mini Cooper - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2002 and later Mini Cooper vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2002 and later Mini Cooper vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2002-2008-mini-cooper-black/1583489.p?id=1218270200461&skuId=1583489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583489_sa.jpg\"}', 'upc' => '086429092109', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2011 Suzuki Grand Vitara - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2006-2011 Suzuki Grand Vitara vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2006-2011 Suzuki Grand Vitara vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2011-suzuki-grand-vitara-black/1583498.p?id=1218270200340&skuId=1583498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583498_sa.jpg\"}', 'upc' => '086429153749', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2001-2003 Infiniti QX4/Nissan Pathfinder LE - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Nissan vehicles; allows the installation of an aftermarket radio into a factory dash location; single-DIN or ISO DIN installation\", 'description_long' => \"From our expanded online assortment; compatible with select Nissan vehicles; allows the installation of an aftermarket radio into a factory dash location; single-DIN or ISO DIN installation\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2001-2003-infiniti-qx4-nissan-pathfinder-le-black/1583504.p?id=1218270218680&skuId=1583504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583504_sa.jpg\"}', 'upc' => '086429105762', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2009-2011 Honda Pilot - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2009-2011 Honda Pilot vehicles; allows you to install an aftermarket in-dash DIN car radio with a pocket in your vehicle&#039;s dash; ISO mount\", 'description_long' => \"From our expanded online assortment; compatible with 2009-2011 Honda Pilot vehicles; allows you to install an aftermarket in-dash DIN car radio with a pocket in your vehicle&#039;s dash; ISO mount\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2009-2011-honda-pilot-black/1583513.p?id=1218270203686&skuId=1583513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583513_sa.jpg\"}', 'upc' => '086429185054', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1994-2004 Land Rover Discovery/Discovery II - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1994-2004 Land Rover Discovery/Discovery II vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 1994-2004 Land Rover Discovery/Discovery II vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1994-2004-land-rover-discovery-discovery-ii-black/1583522.p?id=1218270223339&skuId=1583522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583522_sa.jpg\"}', 'upc' => '086429123728', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2011 Hyundai Azera/Hyundai Entourage - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2006-2011 Hyundai Azera and Entourage vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with select 2006-2011 Hyundai Azera and Entourage vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO mount system\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2011-hyundai-azera-hyundai-entourage-black/1583531.p?id=1218270204456&skuId=1583531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583531_sa.jpg\"}', 'upc' => '086429162253', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 1995-2004 Isuzu Rodeo Vehicles - Multicolored\", 'description_short' => \"From our expanded online assortment; compatible with 1995-2004 Isuzu Rodeo vehicles; connects an aftermarket radio to your vehicle&#039;s harness; ABS plastic, copper, vinyl and aluminum materials\", 'description_long' => \"From our expanded online assortment; compatible with 1995-2004 Isuzu Rodeo vehicles; connects an aftermarket radio to your vehicle&#039;s harness; ABS plastic, copper, vinyl and aluminum materials\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-1995-2004-isuzu-rodeo-vehicles-multicolored/1583559.p?id=1218270218812&skuId=1583559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583559_rc.jpg\"}', 'upc' => '086429106066', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2007 Audi A3/A4 w/ Concert radio - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2006-2007 Audi A3/A4 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select 2006-2007 Audi A3/A4 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2007-audi-a3-a4-w-concert-radio-black/1583577.p?id=1218270224115&skuId=1583577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583577_sa.jpg\"}', 'upc' => '086429120758', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Interface for 2005-2006 Chevrolet Equinox and Pontiac Torrent Vehicles - Blue\", 'description_short' => \"From our expanded online assortment; compatible with 2005-2006 Chevrolet Equinox and Pontiac Torrent vehicles; allows you to install an aftermarket radio without losing OnStar, Chimes and other features\", 'description_long' => \"From our expanded online assortment; compatible with 2005-2006 Chevrolet Equinox and Pontiac Torrent vehicles; allows you to install an aftermarket radio without losing OnStar, Chimes and other features\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-interface-for-2005-2006-chevrolet-equinox-and-pontiac-torrent-vehicles-blue/1583586.p?id=1218270219989&skuId=1583586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583586_rc.jpg\"}', 'upc' => '086429143313', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2008 and Later Saturn Astra Vehicles - White\", 'description_short' => \"From our expanded online assortment; compatible with 2008 and later Saturn Astra vehicles; allows you to install an aftermarket double-DIN car radio in your vehicle&#039;s dash; matches factory color and texture\", 'description_long' => \"From our expanded online assortment; compatible with 2008 and later Saturn Astra vehicles; allows you to install an aftermarket double-DIN car radio in your vehicle&#039;s dash; matches factory color and texture\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2008-and-later-saturn-astra-vehicles-white/1583595.p?id=1218270203372&skuId=1583595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583595_sa.jpg\"}', 'upc' => '086429182930', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2006-2008 Hyundai Sonata Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2006-2008 Hyundai Sonata vehicles; allows the installation of a double-DIN radio into a factory dash location; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2006-2008 Hyundai Sonata vehicles; allows the installation of a double-DIN radio into a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2006-2008-hyundai-sonata-vehicles-black/1583601.p?id=1218270206008&skuId=1583601&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583601', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583601_sa.jpg\"}', 'upc' => '086429174430', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2009 Nissan Maxima Vehicles - Gray\", 'description_short' => \"From our expanded online assortment; compatible with 2009 Nissan Maxima vehicles; allows for the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2009 Nissan Maxima vehicles; allows for the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2009-nissan-maxima-vehicles-gray/1583629.p?id=1218270215619&skuId=1583629&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583629', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583629_rc.jpg\"}', 'upc' => '086429186402', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most Mitsubishi, Subaru and Volkswagen Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with most Mitsubishi, Subaru and Volkswagen vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with most Mitsubishi, Subaru and Volkswagen vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-mitsubishi-subaru-and-volkswagen-vehicles-black/1583638.p?id=1218270207285&skuId=1583638&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583638', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583638_sa.jpg\"}', 'upc' => '086429089499', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2010-2012 Hyundai Genesis Coupe manual climate controls - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2010-2012 Hyundai Genesis Coupe vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2010-2012 Hyundai Genesis Coupe vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2010-2012-hyundai-genesis-coupe-manual-climate-controls-black/1583647.p?id=1218270201652&skuId=1583647&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583647', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583647_sa.jpg\"}', 'upc' => '086429219568', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1999-2006 Volvo S80 - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1999-2006 Volvo S80 vehicles; allows you to install an aftermarket single DIN car radio in your vehicle&#039;s dash; utilizes factory brackets\", 'description_long' => \"From our expanded online assortment; compatible with 1999-2006 Volvo S80 vehicles; allows you to install an aftermarket single DIN car radio in your vehicle&#039;s dash; utilizes factory brackets\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1999-2006-volvo-s80-black/1583665.p?id=1218270202453&skuId=1583665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583665_sa.jpg\"}', 'upc' => '086429098101', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2003-2008 Bmw Z4 - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2003-2008 BMW Z4 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2003-2008 BMW Z4 vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2003-2008-bmw-z4-black/1583683.p?id=1218270200185&skuId=1583683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583683_sa.jpg\"}', 'upc' => '086429138685', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2009-2015 Toyota Venza - Gray\", 'description_short' => \"From our expanded online assortment; compatible with select 2009-2015 Toyota Venza vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select 2009-2015 Toyota Venza vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2009-2015-toyota-venza-gray/1583692.p?id=1218270212871&skuId=1583692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583692_sa.jpg\"}', 'upc' => '086429190706', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Ford and Lincoln Vehicles - Silver\", 'description_short' => \"From our expanded online assortment; compatible with select Ford and Lincoln vehicles; allows the installation of an aftermarket radio into a factory dash location; double-DIN installation\", 'description_long' => \"From our expanded online assortment; compatible with select Ford and Lincoln vehicles; allows the installation of an aftermarket radio into a factory dash location; double-DIN installation\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-ford-and-lincoln-vehicles-silver/1583729.p?id=1218270221103&skuId=1583729&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583729', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583729_rc.jpg\"}', 'upc' => '086429186235', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2008 Mazda MX-5 Miata - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2006-2008 Mazda MX-5 Miata vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with 2006-2008 Mazda MX-5 Miata vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO mount system\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2008-mazda-mx-5-miata-black/1583738.p?id=1218270204076&skuId=1583738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583738_sa.jpg\"}', 'upc' => '086429153732', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2009-2013 Mazda Mazda6 - Silver\", 'description_short' => \"From our expanded online assortment; compatible with 2009-2013 Mazda 6 vehicles; allows for the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with 2009-2013 Mazda 6 vehicles; allows for the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2009-2013-mazda-mazda6-silver/1583747.p?id=1218270214321&skuId=1583747&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583747_rc.jpg\"}', 'upc' => '086429186655', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2007-2010 Kia Sorrento Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2010 Kia Sorrento vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2010 Kia Sorrento vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2007-2010-kia-sorrento-vehicles-black/1583756.p?id=1218270209627&skuId=1583756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583756_sa.jpg\"}', 'upc' => '086429165117', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 1995-2000 Lexus LS Series Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1995-2000 Lexus LS series vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO support system; recessed DIN mount\", 'description_long' => \"From our expanded online assortment; compatible with 1995-2000 Lexus LS series vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO support system; recessed DIN mount\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-1995-2000-lexus-ls-series-vehicles-black/1583765.p?id=1218270202584&skuId=1583765&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583765_sa.jpg\"}', 'upc' => '086429173167', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Cadillac Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Cadillac vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; snap-in, quick-release system\", 'description_long' => \"From our expanded online assortment; compatible with select Cadillac vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash; snap-in, quick-release system\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-cadillac-vehicles-black/1583774.p?id=1218270221736&skuId=1583774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583774_sa.jpg\"}', 'upc' => '086429146994', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1998-2002 Lincoln Continental - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1998-2002 Lincoln Continental vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with 1998-2002 Lincoln Continental vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO mount system\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1998-2002-lincoln-continental-black/1583783.p?id=1218270205270&skuId=1583783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583783_sa.jpg\"}', 'upc' => '086429124633', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2000-2003 Ford Taurus electronic controls)/Mercury Sable electronic controls - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2000-2003 Ford Taurus and Mercury Sable vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2000-2003 Ford Taurus and Mercury Sable vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2000-2003-ford-taurus-electronic-controls-mercury-sable-electronic-controls-black/1583792.p?id=1218271246391&skuId=1583792&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583792', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583792_sa.jpg\"}', 'upc' => '086429213221', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Kia Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Kia vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select Kia vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-kia-vehicles-black/1583801.p?id=1218270213259&skuId=1583801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583801_sa.jpg\"}', 'upc' => '086429204960', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2000-2005 Saturn Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2000-2005 Saturn vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash; designed for double DIN radios\", 'description_long' => \"From our expanded online assortment; compatible with 2000-2005 Saturn vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash; designed for double DIN radios\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2000-2005-saturn-vehicles-black/1583829.p?id=1218270210493&skuId=1583829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583829_sa.jpg\"}', 'upc' => '086429213214', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2005-2006 Infiniti G35 coupe - Silver\", 'description_short' => \"From our expanded online assortment; compatible with select Infiniti vehicles; allows for the installation of an aftermarket radio into the factory dash location; ISO mounting\", 'description_long' => \"From our expanded online assortment; compatible with select Infiniti vehicles; allows for the installation of an aftermarket radio into the factory dash location; ISO mounting\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2005-2006-infiniti-g35-coupe-silver/1583838.p?id=1218270214712&skuId=1583838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583838_rc.jpg\"}', 'upc' => '086429181230', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2007 Nissan Armada with dual zone climate controls - Silver\", 'description_short' => \"From our expanded online assortment; compatible with select 2006-2007 Nissan vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO mount system\", 'description_long' => \"From our expanded online assortment; compatible with select 2006-2007 Nissan vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; snap-in ISO mount system\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2007-nissan-armada-with-dual-zone-climate-controls-silver/1583847.p?id=1218270202116&skuId=1583847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583847_sa.jpg\"}', 'upc' => '086429160914', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2004-2008 Toyota Solara Vehicles - Silver\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2008 Toyota Solara vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2008 Toyota Solara vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2004-2008-toyota-solara-vehicles-silver/1583856.p?id=1218270194951&skuId=1583856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583856_sa.jpg\"}', 'upc' => '086429171651', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2003-2008 Honda Pilot - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2003-2008 Honda Pilot vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2003-2008 Honda Pilot vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2003-2008-honda-pilot-black/1583865.p?id=1218270208914&skuId=1583865&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583865_rc.jpg\"}', 'upc' => '086429091867', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2008 Toyota Camry Solara/Solara - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2008 Toyota Solara vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2008 Toyota Solara vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2008-toyota-camry-solara-solara-black/1583883.p?id=1218270212738&skuId=1583883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583883_sa.jpg\"}', 'upc' => '086429136674', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2008-2010 Smart Fortwo - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2008-2010 Smart Fortwo vehicles; allows the installation of an aftermarket radio into a factory dash location; recessed DIN mount; storage pocket\", 'description_long' => \"From our expanded online assortment; compatible with 2008-2010 Smart Fortwo vehicles; allows the installation of an aftermarket radio into a factory dash location; recessed DIN mount; storage pocket\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2008-2010-smart-fortwo-black/1583892.p?id=1218270216307&skuId=1583892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583892_sa.jpg\"}', 'upc' => '086429184927', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2011-2013 Kia Sorento/Sorento non NAV - Black\", 'description_short' => \"From our expanded online assortment; compatible with select 2011-2013 Kia Sorrento vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with select 2011-2013 Kia Sorrento vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2011-2013-kia-sorento-sorento-non-nav-black/1583929.p?id=1218270209046&skuId=1583929&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583929', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583929_sa.jpg\"}', 'upc' => '086429222117', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2008 and Later Saturn Astra Vehicles - Silver\", 'description_short' => \"From our expanded online assortment; compatible with 2008 and later Saturn Astra vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; designed for double-DIN radios\", 'description_long' => \"From our expanded online assortment; compatible with 2008 and later Saturn Astra vehicles; allows you to install an aftermarket car radio in your vehicle&#039;s dash; designed for double-DIN radios\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2008-and-later-saturn-astra-vehicles-silver/1583947.p?id=1218270204649&skuId=1583947&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583947_sa.jpg\"}', 'upc' => '086429182923', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007-2009 Mazda CX-7 - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2009 Mazda CX7 vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2009 Mazda CX7 vehicles; allows you to install an aftermarket car stereo in your vehicle&#039;s dash\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-2009-mazda-cx-7-black/1583956.p?id=1218270199017&skuId=1583956&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583956', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583956_sa.jpg\"}', 'upc' => '086429173228', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2005-2011 Cadillac STS - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2005-2011 Cadillac STS vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2005-2011 Cadillac STS vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2005-2011-cadillac-sts-black/1583965.p?id=1218270205482&skuId=1583965&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583965_sa.jpg\"}', 'upc' => '086429199051', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2003-2008 Honda Pilot Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2003-2008 Honda Pilot vehicles without factory navigation units; allows you to install an aftermarket radio into your vehicle&#039;s factory dash location; double-DIN installation\", 'description_long' => \"From our expanded online assortment; compatible with 2003-2008 Honda Pilot vehicles without factory navigation units; allows you to install an aftermarket radio into your vehicle&#039;s factory dash location; double-DIN installation\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2003-2008-honda-pilot-vehicles-black/1583974.p?id=1218270222415&skuId=1583974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583974_rc.jpg\"}', 'upc' => '086429167159', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2008 Chrysler Pacifica - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2004-2008 Chrysler Pacifica vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 2004-2008 Chrysler Pacifica vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2008-chrysler-pacifica-black/1583983.p?id=1218270216506&skuId=1583983&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583983', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583983_rc.jpg\"}', 'upc' => '086429106127', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Antenna Adapter Cable for 2002 and Later Lexus Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with 2002 and later Lexus vehicles; allows you to install an aftermarket antenna\", 'description_long' => \"From our expanded online assortment; compatible with 2002 and later Lexus vehicles; allows you to install an aftermarket antenna\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-adapter-cable-for-2002-and-later-lexus-vehicles-black/1583992.p?id=1218270213670&skuId=1583992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1583992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1583\\/1583992_sa.jpg\"}', 'upc' => '086429137992', 'provider' => 'bestbuy'],\n ['name' => \"Inherent Vice (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inherent-vice-dvd-ultraviolet-digital-copy/1584008.p?id=3358882&skuId=1584008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584008_sa.jpg\"}', 'upc' => '883929388219', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Harness Adapter for 2007-2010 Mazda CX-7 Vehicles - Multi\", 'description_short' => \"From our expanded online assortment; compatible with 2007-2010 Mazda CX-7 vehicles; allows you to install an aftermarket radio\", 'description_long' => \"From our expanded online assortment; compatible with 2007-2010 Mazda CX-7 vehicles; allows you to install an aftermarket radio\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-harness-adapter-for-2007-2010-mazda-cx-7-vehicles-multi/1584009.p?id=1218270220961&skuId=1584009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584009_rc.jpg\"}', 'upc' => '086429177219', 'provider' => 'bestbuy'],\n ['name' => \"Brother - Color Label Maker - Black/Dark Gray\", 'description_short' => \"ENERGY STAR Certified\nPrints up to 7 lines of text and graphics; wide, easy-type keyboard; full-color, high-resolution display; connects to a PC or Mac; specialty print modes\", 'description_long' => \"ENERGY STAR Certified\nPrints up to 7 lines of text and graphics; wide, easy-type keyboard; full-color, high-resolution display; connects to a PC or Mac; specialty print modes\", 'price' => 92.99, 'sale_price' => 67.99, 'url' => 'http://www.bestbuy.com/site/brother-color-label-maker-black-dark-gray/1584017.p?id=1219503833397&skuId=1584017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584017_sa.jpg\"}', 'upc' => '012502639411', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1993-1997 Lexus GS 300/400/430 - Black\", 'description_short' => \"From our expanded online assortment; compatible with 1993-1997 Lexus GS series vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'description_long' => \"From our expanded online assortment; compatible with 1993-1997 Lexus GS series vehicles; allows you to install an aftermarket radio in your vehicle&#039;s dash\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1993-1997-lexus-gs-300-400-430-black/1584018.p?id=1218270211864&skuId=1584018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584018_sa.jpg\"}', 'upc' => '086429120925', 'provider' => 'bestbuy'],\n ['name' => \"Optoma - 1080p DLP Gaming Projector - White\", 'description_short' => \"DLP1920 x 1200 WUXGA maximum resolution2800 lumens white brightness16:9 aspect ratio\", 'description_long' => \"DLP1920 x 1200 WUXGA maximum resolution2800 lumens white brightness16:9 aspect ratio\", 'price' => 1499.99, 'sale_price' => 699.99, 'url' => 'http://www.bestbuy.com/site/optoma-1080p-dlp-gaming-projector-white/1584026.p?id=1219503833396&skuId=1584026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584026_sa.jpg\"}', 'upc' => '796435812119', 'provider' => 'bestbuy'],\n ['name' => \"Dualit - 3-in-1 Espresso Machine - Stainless-Steel\", 'description_short' => \"DUALIT 3-in-1 Espresso Machine: Control dial; Pure Pour technology; brews NX capsules, ESE Pods and ground coffee; 15-bar pump; thermo block heating; automatic purge; 1250W of power; extra-high clearance; 1.5L removable water tank\", 'description_long' => \"DUALIT 3-in-1 Espresso Machine: Control dial; Pure Pour technology; brews NX capsules, ESE Pods and ground coffee; 15-bar pump; thermo block heating; automatic purge; 1250W of power; extra-high clearance; 1.5L removable water tank\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dualit-3-in-1-espresso-machine-stainless-steel/1584053.p?id=1219503842862&skuId=1584053', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584053_rc.jpg\"}', 'upc' => '6197438446068', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - 3.5-Gal. Wet/Dry Vacuum - Black\", 'description_short' => \"6 amps of power; 3.5 peak HP; bagless technology; foam and reusable dry filters; 2&quot; cleaning path width; includes flexible hose, extension wands, crevice nozzle and floor and utility brushes\", 'description_long' => \"6 amps of power; 3.5 peak HP; bagless technology; foam and reusable dry filters; 2&quot; cleaning path width; includes flexible hose, extension wands, crevice nozzle and floor and utility brushes\", 'price' => 75.99, 'sale_price' => 64.59, 'url' => 'http://www.bestbuy.com/site/stanley-3-5-gal-wet-dry-vacuum-black/1584355.p?id=1219056204321&skuId=1584355', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584355_sa.jpg\"}', 'upc' => '871613004507', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - Disposable Filter Bags for Most Stanley 10- to 12-Gal. Poly Wet/Dry Vacuums (3-Pack)\", 'description_short' => \"Paper construction; disposable; includes 3 bags\", 'description_long' => \"Paper construction; disposable; includes 3 bags\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stanley-disposable-filter-bags-for-most-stanley-10-to-12-gal-poly-wet-dry-vacuums-3-pack/1584364.p?id=1219056202409&skuId=1584364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584364_500x500_sa.jpg\"}', 'upc' => '871613005344', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - Disposable Filter Bags for Most Stanley 8-Gal. Stainless-Steel Wet/Dry Vacuums (3-Pack)\", 'description_short' => \"Paper construction; disposable; includes 3 bags\", 'description_long' => \"Paper construction; disposable; includes 3 bags\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stanley-disposable-filter-bags-for-most-stanley-8-gal-stainless-steel-wet-dry-vacuums-3-pack/1584373.p?id=1219056203189&skuId=1584373', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584373_500x500_sa.jpg\"}', 'upc' => '871613005313', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - 12-Gal. Wet/Dry Vacuum - Black\", 'description_short' => \"6 amps of power; 6 peak HP motor; bagless container; cartridge filter; 2&quot; cleaning path width; includes hose, 2 extension wands and utility, crevice and 10&quot; floor nozzles\", 'description_long' => \"6 amps of power; 6 peak HP motor; bagless container; cartridge filter; 2&quot; cleaning path width; includes hose, 2 extension wands and utility, crevice and 10&quot; floor nozzles\", 'price' => 99.99, 'sale_price' => 84.99, 'url' => 'http://www.bestbuy.com/site/stanley-12-gal-wet-dry-vacuum-black/1584382.p?id=1219056204129&skuId=1584382', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584382_sa.jpg\"}', 'upc' => '871613006501', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - 1-Gal. Wet/Dry Vacuum - Black\", 'description_short' => \"Powered by your vehicle&#039;s DC adapter; 2 amps of power; bagless technology; foam and cloth filters; 2&quot; cleaning path width; includes flexible hose and crevice and utility nozzles\", 'description_long' => \"Powered by your vehicle&#039;s DC adapter; 2 amps of power; bagless technology; foam and cloth filters; 2&quot; cleaning path width; includes flexible hose and crevice and utility nozzles\", 'price' => 29.99, 'sale_price' => 25.49, 'url' => 'http://www.bestbuy.com/site/stanley-1-gal-wet-dry-vacuum-black/1584391.p?id=1219056204921&skuId=1584391&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584391_sa.jpg\"}', 'upc' => '871613003531', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - Disposable Filter Bags for Most Stanley 7- to 8-Gal. Poly Wet/Dry Vacuums (3-Pack)\", 'description_short' => \"Paper construction; disposable; includes 3 bags\", 'description_long' => \"Paper construction; disposable; includes 3 bags\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stanley-disposable-filter-bags-for-most-stanley-7-to-8-gal-poly-wet-dry-vacuums-3-pack/1584415.p?id=1219056203455&skuId=1584415', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584415_500x500_sa.jpg\"}', 'upc' => '871613005337', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - 5-Gal. Wet/Dry Vacuum - Stainless-Steel\", 'description_short' => \"7 amps of power; washable, reusable filter; 10&quot; cleaning path width; includes 3 extension wands and crevice, floor and gulper nozzles\", 'description_long' => \"7 amps of power; washable, reusable filter; 10&quot; cleaning path width; includes 3 extension wands and crevice, floor and gulper nozzles\", 'price' => 69.99, 'sale_price' => 66.99, 'url' => 'http://www.bestbuy.com/site/stanley-5-gal-wet-dry-vacuum-stainless-steel/1584424.p?id=1219056202406&skuId=1584424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584424_sa.jpg\"}', 'upc' => '871613002848', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - 6-Gal. Wet/Dry Vacuum - Black\", 'description_short' => \"6 amps of power; 4 peak HP motor; bagless container; cartridge filter; 2&quot; cleaning path width; includes hose, 2 extension wands and crevice and 10&quot; floor nozzles\", 'description_long' => \"6 amps of power; 4 peak HP motor; bagless container; cartridge filter; 2&quot; cleaning path width; includes hose, 2 extension wands and crevice and 10&quot; floor nozzles\", 'price' => 69.99, 'sale_price' => 58.99, 'url' => 'http://www.bestbuy.com/site/stanley-6-gal-wet-dry-vacuum-black/1584442.p?id=1219056204856&skuId=1584442', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584442_sa.jpg\"}', 'upc' => '871613006457', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - 2.5-Gal. Wet/Dry Vacuum - Black\", 'description_short' => \"6 amps of power; 3 peak HP; bagless technology; double-filtration system with foam and cloth filters; 2&quot; cleaning path width; includes flexible hose and crevice and utility nozzles\", 'description_long' => \"6 amps of power; 3 peak HP; bagless technology; double-filtration system with foam and cloth filters; 2&quot; cleaning path width; includes flexible hose and crevice and utility nozzles\", 'price' => 39.99, 'sale_price' => 33.99, 'url' => 'http://www.bestbuy.com/site/stanley-2-5-gal-wet-dry-vacuum-black/1584451.p?id=1219056203255&skuId=1584451', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584451_sa.jpg\"}', 'upc' => '871613002961', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - Disposable Filter Bags for Most Stanley 14- to 18-Gal. Stainless-Steel Wet/Dry Vacuums (3-Pack)\", 'description_short' => \"Disposable design; includes 3 bags\", 'description_long' => \"Disposable design; includes 3 bags\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stanley-disposable-filter-bags-for-most-stanley-14-to-18-gal-stainless-steel-wet-dry-vacuums-3-pack/1584503.p?id=1219056200953&skuId=1584503&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584503', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584503_500x500_sa.jpg\"}', 'upc' => '871613005252', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - Disposable Filter Bags for Select Stanley 6- to 8-Gal. Vacuums (3-Pack)\", 'description_short' => \"Paper construction; disposable; includes 3 bags\", 'description_long' => \"Paper construction; disposable; includes 3 bags\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stanley-disposable-filter-bags-for-select-stanley-6-to-8-gal-vacuums-3-pack/1584512.p?id=1219056204987&skuId=1584512', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584512', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584512_500x500_sa.jpg\"}', 'upc' => '871613006488', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - 3-Gal. Wet/Dry Vacuum - Black\", 'description_short' => \"6 amps of power; bagless container; nonwoven cloth and foam filters; 7&quot; cleaning path width; includes hose and crevice and utility nozzles\", 'description_long' => \"6 amps of power; bagless container; nonwoven cloth and foam filters; 7&quot; cleaning path width; includes hose and crevice and utility nozzles\", 'price' => 54.99, 'sale_price' => 46.74, 'url' => 'http://www.bestbuy.com/site/stanley-3-gal-wet-dry-vacuum-black/1584521.p?id=1219056203004&skuId=1584521', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584521', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584521_sa.jpg\"}', 'upc' => '871613005535', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - 1-Gal. Wet/Dry Vacuum - Black\", 'description_short' => \"6 amps of power; 1.5 peak HP; bagless technology; double-filtration system with foam and cloth filters; 2&quot; cleaning path width; includes flexible hose and crevice and utility nozzles\", 'description_long' => \"6 amps of power; 1.5 peak HP; bagless technology; double-filtration system with foam and cloth filters; 2&quot; cleaning path width; includes flexible hose and crevice and utility nozzles\", 'price' => 34.99, 'sale_price' => 29.74, 'url' => 'http://www.bestbuy.com/site/stanley-1-gal-wet-dry-vacuum-black/1584549.p?id=1219056203388&skuId=1584549', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584549', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584549_sa.jpg\"}', 'upc' => '871613002930', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - Disposable Filter Bags for Most Stanley 6-Gal. Stainless-Steel Wet/Dry Vacuums (3-Pack)\", 'description_short' => \"Paper construction; disposable; includes 3 bags\", 'description_long' => \"Paper construction; disposable; includes 3 bags\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stanley-disposable-filter-bags-for-most-stanley-6-gal-stainless-steel-wet-dry-vacuums-3-pack/1584558.p?id=1219056204790&skuId=1584558&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584558_500x500_sa.jpg\"}', 'upc' => '871613005306', 'provider' => 'bestbuy'],\n ['name' => \"Stanley - Disposable Filter Bags for Most Stanley 10- to 12-Gal. Stainless-Steel Wet/Dry Vacuums (3-Pack)\", 'description_short' => \"Paper construction; disposable; includes 3 bags\", 'description_long' => \"Paper construction; disposable; includes 3 bags\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stanley-disposable-filter-bags-for-most-stanley-10-to-12-gal-stainless-steel-wet-dry-vacuums-3-pack/1584567.p?id=1219056200957&skuId=1584567&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584567', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584567_500x500_sa.jpg\"}', 'upc' => '871613005320', 'provider' => 'bestbuy'],\n ['name' => \"The Neat Company - Refurbished NeatDesk for PC Sheetfed Scanner\", 'description_short' => \"Refurbished\nUp to 600 dpi resolutionUSB 2.0 interfaceDigital filing system\", 'description_long' => \"Refurbished\nUp to 600 dpi resolutionUSB 2.0 interfaceDigital filing system\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-neat-company-refurbished-neatdesk-for-pc-sheetfed-scanner/1584646.p?id=1219056202805&skuId=1584646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584646_rc.jpg\"}', 'upc' => '854426003233', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1584864.p?id=2722141&skuId=1584864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584864_sa.jpg\"}', 'upc' => '888837124126', 'provider' => 'bestbuy'],\n ['name' => \"Inevitable - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inevitable-cd/1584873.p?id=2726000&skuId=1584873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584873_sa.jpg\"}', 'upc' => '888837443128', 'provider' => 'bestbuy'],\n ['name' => \"Time Is Winding Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-is-winding-up-cd/1584882.p?id=2775901&skuId=1584882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584882_sa.jpg\"}', 'upc' => '823010000828', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1584891.p?id=2722138&skuId=1584891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584891_sa.jpg\"}', 'upc' => '888837114424', 'provider' => 'bestbuy'],\n ['name' => \"A New Nightmare [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-new-nightmare-digipak-cd/1584919.p?id=2750262&skuId=1584919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584919_sa.jpg\"}', 'upc' => '822685000126', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1584928.p?id=2722108&skuId=1584928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584928_sa.jpg\"}', 'upc' => '888837113229', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-cd/1584937.p?id=2722127&skuId=1584937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584937_sa.jpg\"}', 'upc' => '888837124324', 'provider' => 'bestbuy'],\n ['name' => \"Empire State (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/empire-state-blu-ray-disc-ultraviolet-digital-copy/1584964.p?id=2728617&skuId=1584964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584964_sa.jpg\"}', 'upc' => '031398175209', 'provider' => 'bestbuy'],\n ['name' => \"Empire State (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/empire-state-dvd-ultraviolet-digital-copy/1584973.p?id=2728617&skuId=1584973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584973_sa.jpg\"}', 'upc' => '031398175100', 'provider' => 'bestbuy'],\n ['name' => \"Now You See Me (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-you-see-me-dvd-ultraviolet-digital-copy/1584991.p?id=2731438&skuId=1584991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1584991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1584\\/1584991_sa.jpg\"}', 'upc' => '025192206078', 'provider' => 'bestbuy'],\n ['name' => \"Now You See Me (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-you-see-me-blu-ray-disc-2-disc-ultraviolet-digital-copy/1585008.p?id=2731438&skuId=1585008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585008_sa.jpg\"}', 'upc' => '025192206061', 'provider' => 'bestbuy'],\n ['name' => \"Onward & Sideways [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/onward-sideways-digipak-cd/1585016.p?id=3323597&skuId=1585016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585016_sa.jpg\"}', 'upc' => '767981148823', 'provider' => 'bestbuy'],\n ['name' => \"Sondheim: Into the Woods [Original Cast... - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sondheim-into-the-woods-original-cast-cd-original-cast-recording/1585025.p?id=2213444&skuId=1585025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585025_sa.jpg\"}', 'upc' => '886979025622', 'provider' => 'bestbuy'],\n ['name' => \"Lips Are Moving (2-Track Single) (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 1.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lips-are-moving-2-track-single-only--best-buy/1585034.p?id=3333697&skuId=1585034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585034_sa.jpg\"}', 'upc' => '888750536020', 'provider' => 'bestbuy'],\n ['name' => \"Lesser Oceans [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lesser-oceans-pa-digipak-cd/1585043.p?id=3280224&skuId=1585043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585043.jpg\"}', 'upc' => '075678672026', 'provider' => 'bestbuy'],\n ['name' => \"Another Day, Another Time:... [Slipcase] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-day-another-time-slipcase-cd-various/1585052.p?id=3301549&skuId=1585052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585052_sa.jpg\"}', 'upc' => '075597956214', 'provider' => 'bestbuy'],\n ['name' => \"Hifonics - 4-Band Equalizer for Most Aftermarket Vehicle Stereo Systems - Black\", 'description_short' => \"Compatible with most aftermarket vehicle stereo systems that use an amplifier; 1/2 DIN ISO mount; 9V line driver; 18dB cut and gain; master and subwoofer volume control\", 'description_long' => \"Compatible with most aftermarket vehicle stereo systems that use an amplifier; 1/2 DIN ISO mount; 9V line driver; 18dB cut and gain; master and subwoofer volume control\", 'price' => 86.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hifonics-4-band-equalizer-for-most-aftermarket-vehicle-stereo-systems-black/1585071.p?id=1219056360863&skuId=1585071', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585071_500x500_sa.jpg\"}', 'upc' => '806576213901', 'provider' => 'bestbuy'],\n ['name' => \"Hifonics - High-Definition Bass Restoration Processor for Select Aftermarket Vehicle Stereo Systems - Black\", 'description_short' => \"Compatible with most aftermarket vehicle stereo systems that use an amplifier and subwoofer; enhances subwoofer performance; master volume control\", 'description_long' => \"Compatible with most aftermarket vehicle stereo systems that use an amplifier and subwoofer; enhances subwoofer performance; master volume control\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hifonics-high-definition-bass-restoration-processor-for-select-aftermarket-vehicle-stereo-systems-black/1585123.p?id=1219056352028&skuId=1585123', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585123_500x500_sa.jpg\"}', 'upc' => '806576219903', 'provider' => 'bestbuy'],\n ['name' => \"Hifonics - Digital Bass Enhancement Processor for Select Aftermarket Vehicle Stereo Systems - Black\", 'description_short' => \"Compatible with most aftermarket vehicle stereo systems that use an amplifier and subwoofer; enhances subwoofer performance; master volume control\", 'description_long' => \"Compatible with most aftermarket vehicle stereo systems that use an amplifier and subwoofer; enhances subwoofer performance; master volume control\", 'price' => 82.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hifonics-digital-bass-enhancement-processor-for-select-aftermarket-vehicle-stereo-systems-black/1585141.p?id=1219056632055&skuId=1585141', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585141_500x500_sa.jpg\"}', 'upc' => '839859008109', 'provider' => 'bestbuy'],\n ['name' => \"Hifonics - 2- or 4-Channel Electronic Crossover for Select Aftermarket Vehicle Stereo Systems - Black\", 'description_short' => \"Compatible with most aftermarket vehicle stereo systems that use an amplifier; external mount; 8.5V line driver; 45Hz bass boost with parametric EQ\", 'description_long' => \"Compatible with most aftermarket vehicle stereo systems that use an amplifier; external mount; 8.5V line driver; 45Hz bass boost with parametric EQ\", 'price' => 67.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hifonics-2-or-4-channel-electronic-crossover-for-select-aftermarket-vehicle-stereo-systems-black/1585196.p?id=1219056637651&skuId=1585196', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585196_500x500_sa.jpg\"}', 'upc' => '806576216339', 'provider' => 'bestbuy'],\n ['name' => \"Electric Friends - Izzy the Unicorn Mini Speaker - White/Purple\", 'description_short' => \"Compatible with most devices with a 3.5mm interface; 6W RMS power; retractable 3.5mm stereo cable; USB- or battery-powered; unicorn shape; 2 full-range, magnetically shielded 1-5/8&quot; loudspeakers\", 'description_long' => \"Compatible with most devices with a 3.5mm interface; 6W RMS power; retractable 3.5mm stereo cable; USB- or battery-powered; unicorn shape; 2 full-range, magnetically shielded 1-5/8&quot; loudspeakers\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/electric-friends-izzy-the-unicorn-mini-speaker-white-purple/1585363.p?id=1219056363846&skuId=1585363', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585363_sa.jpg\"}', 'upc' => '898671002573', 'provider' => 'bestbuy'],\n ['name' => \"Electric Friends - Dex the Dinosaur Mini Speaker - Brown\", 'description_short' => \"Compatible with most devices with a 3.5mm interface; 6W RMS power; retractable 3.5mm stereo cable; USB- or battery-powered; dinosaur shape; 2 full-range, magnetically shielded 1-5/8&quot; loudspeakers\", 'description_long' => \"Compatible with most devices with a 3.5mm interface; 6W RMS power; retractable 3.5mm stereo cable; USB- or battery-powered; dinosaur shape; 2 full-range, magnetically shielded 1-5/8&quot; loudspeakers\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/electric-friends-dex-the-dinosaur-mini-speaker-brown/1585372.p?id=1219056358431&skuId=1585372', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585372_sa.jpg\"}', 'upc' => '898671002580', 'provider' => 'bestbuy'],\n ['name' => \"Soundfreaq - Sound Spot Bluetooth Speaker - Black\", 'description_short' => \"Compatible with most Bluetooth-enabled devices with A2DP support; 3.5W RMS power; wireless range up to 33&#039;; tone control; custom, full-range driver; USB port; 3.5mm auxiliary input; line output\", 'description_long' => \"Compatible with most Bluetooth-enabled devices with A2DP support; 3.5W RMS power; wireless range up to 33&#039;; tone control; custom, full-range driver; USB port; 3.5mm auxiliary input; line output\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soundfreaq-sound-spot-bluetooth-speaker-black/1585381.p?id=1219056363205&skuId=1585381', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585381_sa.jpg\"}', 'upc' => '849539000095', 'provider' => 'bestbuy'],\n ['name' => \"Electric Friends - Gerty the Owl Mini Speaker - White/Brown\", 'description_short' => \"Compatible with most devices with a 3.5mm interface; 6W RMS power; retractable 3.5mm stereo cable; USB- or battery-powered; owl shape; 2 full-range, magnetically shielded 1-5/8&quot; loudspeakers\", 'description_long' => \"Compatible with most devices with a 3.5mm interface; 6W RMS power; retractable 3.5mm stereo cable; USB- or battery-powered; owl shape; 2 full-range, magnetically shielded 1-5/8&quot; loudspeakers\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/electric-friends-gerty-the-owl-mini-speaker-white-brown/1585423.p?id=1219056352030&skuId=1585423', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585423_sa.jpg\"}', 'upc' => '898671002559', 'provider' => 'bestbuy'],\n ['name' => \"Lorex - Add-On Wireless Pan-Tilt Camera for Lorex Baby CARE 'N' SHARE Baby Monitors - White\", 'description_short' => \"Compatible with Lorex Baby CARE &#039;N&#039; SHARE baby monitors; 1/6.5&quot; color image sensor; IR night vision up to 12&#039;; 2-way talk; Sleep &amp; Soothe sounds\", 'description_long' => \"Compatible with Lorex Baby CARE &#039;N&#039; SHARE baby monitors; 1/6.5&quot; color image sensor; IR night vision up to 12&#039;; 2-way talk; Sleep &amp; Soothe sounds\", 'price' => 129.99, 'sale_price' => 127.99, 'url' => 'http://www.bestbuy.com/site/lorex-add-on-wireless-pan-tilt-camera-for-lorex-baby-care-n-share-baby-monitors-white/1585496.p?id=1219056358764&skuId=1585496', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585496_sa.jpg\"}', 'upc' => '778597035117', 'provider' => 'bestbuy'],\n ['name' => \"Lorex - Live SD+ Add-On Indoor/Outdoor Wireless Surveillance Camera for Select Lorex Systems - Black\", 'description_short' => \"Compatible with Lorex LW2731, LW2732 and LW2932 surveillance systems; VGA (640 x 480) resolution; IR night vision up to 40&#039;; PIR motion sensor; 2-way audio\", 'description_long' => \"Compatible with Lorex LW2731, LW2732 and LW2932 surveillance systems; VGA (640 x 480) resolution; IR night vision up to 40&#039;; PIR motion sensor; 2-way audio\", 'price' => 129.99, 'sale_price' => 119.99, 'url' => 'http://www.bestbuy.com/site/lorex-live-sd-add-on-indoor-outdoor-wireless-surveillance-camera-for-select-lorex-systems-black/1585502.p?id=1219056353759&skuId=1585502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1585502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1585\\/1585502_sa.jpg\"}', 'upc' => '778597273106', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '840716128335', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '032281246259', 'provider' => 'bestbuy'],\n ['name' => \"Jillian Michaels: Hard Body (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jillian-michaels-hard-body-dvd/1587158.p?id=2641331&skuId=1587158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587158_sa.jpg\"}', 'upc' => '018713598646', 'provider' => 'bestbuy'],\n ['name' => \"Leslie Sansone: Walk Away the Pounds - 7-Day Calorie Blast (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leslie-sansone-walk-away-the-pounds-7-day-calorie-blast-dvd/1587167.p?id=2431474&skuId=1587167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587167_sa.jpg\"}', 'upc' => '018713593269', 'provider' => 'bestbuy'],\n ['name' => \"NFL: Top 10: NFL's Greatest Players (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nfl-top-10-nfls-greatest-players-dvd/1587176.p?id=2177612&skuId=1587176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587176_sa.jpg\"}', 'upc' => '883929151714', 'provider' => 'bestbuy'],\n ['name' => \"Mari Winsor's Pink Ribbon Pilates (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mari-winsors-pink-ribbon-pilates-dvd/1587194.p?id=2721745&skuId=1587194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587194_sa.jpg\"}', 'upc' => '018713607386', 'provider' => 'bestbuy'],\n ['name' => \"Brother - LC101CL 3-Pack Ink Cartridges - Cyan/Magenta/Yellow\", 'description_short' => \"Compatible with select Brother printers; cyan, magenta and yellow ink cartridges\", 'description_long' => \"Compatible with select Brother printers; cyan, magenta and yellow ink cartridges\", 'price' => 27.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/brother-lc101cl-3-pack-ink-cartridges-cyan-magenta-yellow/1587228.p?id=1219056357652&skuId=1587228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587228_sa.jpg\"}', 'upc' => '012502636052', 'provider' => 'bestbuy'],\n ['name' => \"VIBE - 2-Channel Remote-Controlled 350Z Sports Car Replica - Multi\", 'description_short' => \"Moves forward and backward; 350Z sports car replica; 2-channel remote operation\", 'description_long' => \"Moves forward and backward; 350Z sports car replica; 2-channel remote operation\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vibe-2-channel-remote-controlled-350z-sports-car-replica-multi/1587282.p?id=1219056361845&skuId=1587282', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587282_sa.jpg\"}', 'upc' => '822248504375', 'provider' => 'bestbuy'],\n ['name' => \"Brother - LC101BK Ink Cartridge - Black\", 'description_short' => \"Compatible with Brother DCPJ152W, MFCJ245, MFCJ285DW, MFCJ450DW, MFCJ470DW, MFCJ475DW, MFCJ650DW, MFCJ870DW and MFCJ875DW model printers; black ink\", 'description_long' => \"Compatible with Brother DCPJ152W, MFCJ245, MFCJ285DW, MFCJ450DW, MFCJ470DW, MFCJ475DW, MFCJ650DW, MFCJ870DW and MFCJ875DW model printers; black ink\", 'price' => 14.99, 'sale_price' => 10.99, 'url' => 'http://www.bestbuy.com/site/brother-lc101bk-ink-cartridge-black/1587661.p?id=1219056363655&skuId=1587661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587661_sa.jpg\"}', 'upc' => '012502635833', 'provider' => 'bestbuy'],\n ['name' => \"Brother - LC103CL XL 3-Pack High-Yield Ink Cartridges - Cyan/Magenta/Yellow\", 'description_short' => \"Compatible with select Brother printers; cyan, magenta and yellow ink cartridges\", 'description_long' => \"Compatible with select Brother printers; cyan, magenta and yellow ink cartridges\", 'price' => 41.99, 'sale_price' => 29.99, 'url' => 'http://www.bestbuy.com/site/brother-lc103cl-xl-3-pack-high-yield-ink-cartridges-cyan-magenta-yellow/1587689.p?id=1219056361976&skuId=1587689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587689_sa.jpg\"}', 'upc' => '012502634362', 'provider' => 'bestbuy'],\n ['name' => \"The Black Waters of Echo's Pond (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-black-waters-of-echos-pond-blu-ray-disc/1587698.p?id=2725112&skuId=1587698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587698_sa.jpg\"}', 'upc' => '013132608228', 'provider' => 'bestbuy'],\n ['name' => \"Watch Dogs Limited Edition - Xbox One\", 'description_short' => \"Use the city of Chicago as your ultimate weapon and exact your own style of revenge\", 'description_long' => \"Use the city of Chicago as your ultimate weapon and exact your own style of revenge\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/watch-dogs-limited-edition-xbox-one/1587716.p?id=1219056253647&skuId=1587716&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587716', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587716_sa.jpg\"}', 'upc' => '008888538387', 'provider' => 'bestbuy'],\n ['name' => \"The Lords of Salem (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lords-of-salem-dvd/1587761.p?id=2725180&skuId=1587761&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587761', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587761_sa.jpg\"}', 'upc' => '013132606293', 'provider' => 'bestbuy'],\n ['name' => \"Watch Dogs Limited Edition - Xbox 360\", 'description_short' => \"Use the city of Chicago as your ultimate weapon and exact your own style of revenge\", 'description_long' => \"Use the city of Chicago as your ultimate weapon and exact your own style of revenge\", 'price' => 129.99, 'sale_price' => 97.99, 'url' => 'http://www.bestbuy.com/site/watch-dogs-limited-edition-xbox-360/1587789.p?id=1219056253651&skuId=1587789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587789_sa.jpg\"}', 'upc' => '008888528388', 'provider' => 'bestbuy'],\n ['name' => \"The Lords of Salem (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lords-of-salem-blu-ray-disc-2-disc-ultraviolet-digital-copy/1587798.p?id=2725180&skuId=1587798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587798_sa.jpg\"}', 'upc' => '013132606309', 'provider' => 'bestbuy'],\n ['name' => \"Euro Cuisine - 2-Quart Greek Yogurt Maker - Clear\", 'description_short' => \"Transforms up to 2 quarts of yogurt into Greek or cheese yogurt; can be used with homemade or store-bought yogurt\", 'description_long' => \"Transforms up to 2 quarts of yogurt into Greek or cheese yogurt; can be used with homemade or store-bought yogurt\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/euro-cuisine-2-quart-greek-yogurt-maker-clear/1587825.p?id=1219056638315&skuId=1587825', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587825_rc.jpg\"}', 'upc' => '737770000502', 'provider' => 'bestbuy'],\n ['name' => \"Euro Cuisine - Yogurt Maker - White\", 'description_short' => \"LCD display; 15-hour digital timer; auto shutoff; includes 7 dishwasher-safe, 6-oz. glass jars and BPA-free lids\", 'description_long' => \"LCD display; 15-hour digital timer; auto shutoff; includes 7 dishwasher-safe, 6-oz. glass jars and BPA-free lids\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/euro-cuisine-yogurt-maker-white/1587843.p?id=1219056356550&skuId=1587843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587843_rc.jpg\"}', 'upc' => '737770650004', 'provider' => 'bestbuy'],\n ['name' => \"Euro Cuisine - 5-in-1 Rechargeable Prep Machine - White/Green\", 'description_short' => \"Allows you to prepare a variety of cooking ingredients; waterproof; includes peeler, frother, whisk, brush and soup-blender attachments\", 'description_long' => \"Allows you to prepare a variety of cooking ingredients; waterproof; includes peeler, frother, whisk, brush and soup-blender attachments\", 'price' => 29.99, 'sale_price' => 27.99, 'url' => 'http://www.bestbuy.com/site/euro-cuisine-5-in-1-rechargeable-prep-machine-white-green/1587852.p?id=1219056632065&skuId=1587852', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587852_rc.jpg\"}', 'upc' => '737770062005', 'provider' => 'bestbuy'],\n ['name' => \"Euro Cuisine - 2-Quart Cotton Bag\", 'description_short' => \"Allows you to convert yogurt into yogurt cheese or Greek yogurt; ideal for storing fruits, vegetables or coffee beans; 100% cotton material\", 'description_long' => \"Allows you to convert yogurt into yogurt cheese or Greek yogurt; ideal for storing fruits, vegetables or coffee beans; 100% cotton material\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/euro-cuisine-2-quart-cotton-bag/1587889.p?id=1219056632064&skuId=1587889', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587889_500x500_sa.jpg\"}', 'upc' => '737770120002', 'provider' => 'bestbuy'],\n ['name' => \"Euro Cuisine - 6-Oz. Glass Jars for Euro Cuisine YMX650 Yogurt Makers (8-Pack) - Clear\", 'description_short' => \"Designed for use with Euro Cuisine YMX650 yogurt makers; 6-oz. capacity; dishwasher-safe design; BPA-free lids with date settings; 8-pack\", 'description_long' => \"Designed for use with Euro Cuisine YMX650 yogurt makers; 6-oz. capacity; dishwasher-safe design; BPA-free lids with date settings; 8-pack\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/euro-cuisine-6-oz-glass-jars-for-euro-cuisine-ymx650-yogurt-makers-8-pack-clear/1587916.p?id=1219056357779&skuId=1587916&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587916', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587916_rc.jpg\"}', 'upc' => '737770264003', 'provider' => 'bestbuy'],\n ['name' => \"The Bling Ring (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bling-ring-dvd-ultraviolet-digital-copy/1587943.p?id=2732718&skuId=1587943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587943.jpg\"}', 'upc' => '031398177456', 'provider' => 'bestbuy'],\n ['name' => \"The Bling Ring (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bling-ring-blu-ray-disc-ultraviolet-digital-copy/1587961.p?id=2732718&skuId=1587961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587961_sa.jpg\"}', 'upc' => '031398177487', 'provider' => 'bestbuy'],\n ['name' => \"Watch Dogs Limited Edition - PlayStation 3\", 'description_short' => \"Use the city of Chicago as your ultimate weapon and exact your own style of revenge\", 'description_long' => \"Use the city of Chicago as your ultimate weapon and exact your own style of revenge\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/watch-dogs-limited-edition-playstation-3/1587989.p?id=1219056251696&skuId=1587989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1587989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1587\\/1587989_sa.jpg\"}', 'upc' => '008888348382', 'provider' => 'bestbuy'],\n ['name' => \"Garmin - Oregon 600t 3\\\" GPS - Black\", 'description_short' => \"Worldwide base map with DEM (digital elevation model); 100K U.S. topo maps; 3&quot; transflective TFT touch screen; 3-axis compass; accelerometer; barometric altimeter; microSD slot\", 'description_long' => \"Worldwide base map with DEM (digital elevation model); 100K U.S. topo maps; 3&quot; transflective TFT touch screen; 3-axis compass; accelerometer; barometric altimeter; microSD slot\", 'price' => 479.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/garmin-oregon-600t-3-gps-black/1588014.p?id=1219056356616&skuId=1588014', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1588014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1588\\/1588014_sa.jpg\"}', 'upc' => '753759994839', 'provider' => 'bestbuy'],\n ['name' => \"Garmin - BarkLimiter Deluxe Bark-Correction Collar - Black\", 'description_short' => \"Tri-Tronics technology; Advanced Bark Correction technology; bark identification technology; Bark Odometer; autorise, manual and vibration settings; micro electromechanical acceleration sensors\", 'description_long' => \"Tri-Tronics technology; Advanced Bark Correction technology; bark identification technology; Bark Odometer; autorise, manual and vibration settings; micro electromechanical acceleration sensors\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/garmin-barklimiter-deluxe-bark-correction-collar-black/1588023.p?id=1219056361709&skuId=1588023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1588023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1588\\/1588023_500x500_sa.jpg\"}', 'upc' => '753759994709', 'provider' => 'bestbuy'],\n ['name' => \"Sanus - Elements Antitip Strap for Most Flat-Panel TVs Up to 60\\\" - Black\", 'description_short' => \"Compatible with most 60&quot; flat-panel TVs weighing up to 150 lbs.; hardware included; easy installation\", 'description_long' => \"Compatible with most 60&quot; flat-panel TVs weighing up to 150 lbs.; hardware included; easy installation\", 'price' => 25.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/sanus-elements-antitip-strap-for-most-flat-panel-tvs-up-to-60-black/1588032.p?id=1218270599213&skuId=1588032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1588032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1588\\/1588032_sa.jpg\"}', 'upc' => '793795521576', 'provider' => 'bestbuy'],\n ['name' => \"Garmin - Oregon 600 3\\\" GPS - Black\", 'description_short' => \"Built-in worldwide base map with DEM (digital elevation model); 3&quot; transflective color TFT touch screen; 3-axis compass; accelerometer; barometric altimeter; microSD slot\", 'description_long' => \"Built-in worldwide base map with DEM (digital elevation model); 3&quot; transflective color TFT touch screen; 3-axis compass; accelerometer; barometric altimeter; microSD slot\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/garmin-oregon-600-3-gps-black/1588041.p?id=1219056363988&skuId=1588041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1588041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1588\\/1588041_sa.jpg\"}', 'upc' => '753759994822', 'provider' => 'bestbuy'],\n ['name' => \"Garmin - BarkLimiter Bark-Correction Collar - Black\", 'description_short' => \"Tri-Tronics dog-training technology; Advanced Bark Correction technology; Bark Odometer; autorise technology; accelerometer-based bark identification; vibration and manual settings\", 'description_long' => \"Tri-Tronics dog-training technology; Advanced Bark Correction technology; Bark Odometer; autorise technology; accelerometer-based bark identification; vibration and manual settings\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/garmin-barklimiter-bark-correction-collar-black/1588069.p?id=1219056361517&skuId=1588069', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1588069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1588\\/1588069_500x500_sa.jpg\"}', 'upc' => '753759994693', 'provider' => 'bestbuy'],\n ['name' => \"Thrustmaster - Ferrari Vibration GT Cockpit 458 Italia Edition for Xbox 360 - Black\", 'description_short' => \"Compatible with Xbox 360; ultraprecise wheel; sequential up-and-down metal paddle shifters; brake pedal with progressive resistance; textured grips; streamlined musetto body\", 'description_long' => \"Compatible with Xbox 360; ultraprecise wheel; sequential up-and-down metal paddle shifters; brake pedal with progressive resistance; textured grips; streamlined musetto body\", 'price' => 276.99, 'sale_price' => 208.99, 'url' => 'http://www.bestbuy.com/site/thrustmaster-ferrari-vibration-gt-cockpit-458-italia-edition-for-xbox-360-black/1588102.p?id=1219056777701&skuId=1588102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1588102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1588\\/1588102_sa.jpg\"}', 'upc' => '663296418166', 'provider' => 'bestbuy'],\n ['name' => \"The Nightmare Before Christmas (Blu-ray 3D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-nightmare-before-christmas-blu-ray-3d/1588111.p?id=54399&skuId=1588111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1588111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1588\\/1588111_sa.jpg\"}', 'upc' => '786936836974', 'provider' => 'bestbuy'],\n ['name' => \"The Nightmare Before Christmas (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-nightmare-before-christmas-blu-ray-disc/1588139.p?id=54399&skuId=1588139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1588139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1588\\/1588139_sa.jpg\"}', 'upc' => '786936836769', 'provider' => 'bestbuy'],\n ['name' => \"Arthur Newman (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arthur-newman-blu-ray-disc-2-disc/1588475.p?id=2712288&skuId=1588475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1588475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1588\\/1588475_sa.jpg\"}', 'upc' => '767685295151', 'provider' => 'bestbuy'],\n ['name' => \"The English Teacher (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-english-teacher-blu-ray-disc/1588536.p?id=2712409&skuId=1588536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1588536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1588\\/1588536_sa.jpg\"}', 'upc' => '767685292327', 'provider' => 'bestbuy'],\n ['name' => \"Person of Interest: Complete Second Season [6 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => 12.99, 'url' => 'http://www.bestbuy.com/site/person-of-interest-complete-second-season-6-discs-dvd/1590012.p?id=2718170&skuId=1590012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1590012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1590012.jpg\"}', 'upc' => '883929278596', 'provider' => 'bestbuy'],\n ['name' => \"HP - 60 2-Pack Ink Cartridges + Photo Paper - Black/Cyan/Magenta/Yellow\", 'description_short' => \"Compatible with most HP inkjet printers; HP 60 black inkjet cartridge (cc640w); HP 60 tricolor inkjet cartridge (cc643w); includes 15 sheets of 5&quot; x 7&quot; Advance glossy photo paper and 5 TwoSmiles 5&quot; x 7&quot; envelopes\", 'description_long' => \"Compatible with most HP inkjet printers; HP 60 black inkjet cartridge (cc640w); HP 60 tricolor inkjet cartridge (cc643w); includes 15 sheets of 5&quot; x 7&quot; Advance glossy photo paper and 5 TwoSmiles 5&quot; x 7&quot; envelopes\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-60-2-pack-ink-cartridges-photo-paper-black-cyan-magenta-yellow/1590173.p?id=1219056357256&skuId=1590173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1590173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1590\\/1590173_sa.jpg\"}', 'upc' => '887758634516', 'provider' => 'bestbuy'],\n ['name' => \"Jabra - Classic Bluetooth Headset - Black\", 'description_short' => \"Compatible with Samsung Galaxy S 5 and most Bluetooth 3.0- and 4.0-enabled cell phones; Bluetooth 4.0 technology; supports A2DP v1.2; up to 98&#039; wireless range; micro USB port; answer/end button; battery indicator\", 'description_long' => \"Compatible with Samsung Galaxy S 5 and most Bluetooth 3.0- and 4.0-enabled cell phones; Bluetooth 4.0 technology; supports A2DP v1.2; up to 98&#039; wireless range; micro USB port; answer/end button; battery indicator\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jabra-classic-bluetooth-headset-black/1590207.p?id=1219056359762&skuId=1590207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1590207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1590\\/1590207_rc.jpg\"}', 'upc' => '615822005630', 'provider' => 'bestbuy'],\n ['name' => \"Cynthia Vincent - 13\\\" Laptop Sleeve - Snake Border\", 'description_short' => \"Only at Best Buy\nCompatible with most laptops with a 13&quot; display; scuff- and mark-resistant; contrasting, plush lining\", 'description_long' => \"Only at Best Buy\nCompatible with most laptops with a 13&quot; display; scuff- and mark-resistant; contrasting, plush lining\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cynthia-vincent-13-laptop-sleeve-snake-border/1591029.p?id=1219510815187&skuId=1591029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591029_sa.jpg\"}', 'upc' => '5031300088271', 'provider' => 'bestbuy'],\n ['name' => \"Nanette Lepore - 13\\\" Laptop Sleeve - Multi\", 'description_short' => \"Compatible with most laptops with a 13&quot; display; scuff- and mark-resistant; contrasting, plush lining\", 'description_long' => \"Compatible with most laptops with a 13&quot; display; scuff- and mark-resistant; contrasting, plush lining\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nanette-lepore-13-laptop-sleeve-multi/1591038.p?id=1219510814470&skuId=1591038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591038_sa.jpg\"}', 'upc' => '5031300088264', 'provider' => 'bestbuy'],\n ['name' => \"The Nightmare Before Christmas (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-nightmare-before-christmas-dvd/1591093.p?id=54399&skuId=1591093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591093_sa.jpg\"}', 'upc' => '786936808988', 'provider' => 'bestbuy'],\n ['name' => \"Handy Manny: Big Construction Job (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/handy-manny-big-construction-job-dvd/1591109.p?id=2115991&skuId=1591109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591109_sa.jpg\"}', 'upc' => '786936804980', 'provider' => 'bestbuy'],\n ['name' => \"Secret Life of the American Teenager, Vol. 5 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secret-life-of-the-american-teenager-vol-5-3-discs-dvd/1591118.p?id=2155277&skuId=1591118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591118_sa.jpg\"}', 'upc' => '786936808513', 'provider' => 'bestbuy'],\n ['name' => \"10 Things I Hate About You (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-things-i-hate-about-you-dvd/1591127.p?id=44115&skuId=1591127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591127_sa.jpg\"}', 'upc' => '786936808964', 'provider' => 'bestbuy'],\n ['name' => \"Step Up 3D (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/step-up-3d-dvd/1591136.p?id=2161240&skuId=1591136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591136_sa.jpg\"}', 'upc' => '786936793604', 'provider' => 'bestbuy'],\n ['name' => \"Step Up 3D (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/step-up-3d-blu-ray-disc-2-disc/1591145.p?id=2161240&skuId=1591145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591145_sa.jpg\"}', 'upc' => '786936793611', 'provider' => 'bestbuy'],\n ['name' => \"Step Up 3D (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/step-up-3d-blu-ray-3d-3-d/1591154.p?id=2161240&skuId=1591154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591154_sa.jpg\"}', 'upc' => '786936808827', 'provider' => 'bestbuy'],\n ['name' => \"Monster High: 13 Wishes - Nintendo Wii U\", 'description_short' => \"Join your favorite ghoulfriends on a freaky quest to save the school\", 'description_long' => \"Join your favorite ghoulfriends on a freaky quest to save the school\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monster-high-13-wishes-nintendo-wii-u/1591163.p?id=1219056706109&skuId=1591163', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591163_sa.jpg\"}', 'upc' => '815403010248', 'provider' => 'bestbuy'],\n ['name' => \"Shrek Forever After (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shrek-forever-after-dvd/1591242.p?id=2162899&skuId=1591242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591242_sa.jpg\"}', 'upc' => '097361329642', 'provider' => 'bestbuy'],\n ['name' => \"Shrek Forever After/Donkey's Christmas Shrektacular [2 Discs] [Blu-ray/DVD] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shrek-forever-after-donkeys-christmas-shrektacular-2-discs-blu-ray-dvd-blu-ray-disc/1591251.p?id=2173325&skuId=1591251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591251_sa.jpg\"}', 'upc' => '097360824346', 'provider' => 'bestbuy'],\n ['name' => \"Shrek: The Whole Story [4 Discs] (Blu-ray Disc) (Gift Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/shrek-the-whole-story-4-discs-blu-ray-disc-gift-set/1591279.p?id=2164282&skuId=1591279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591279.jpg\"}', 'upc' => '097360829747', 'provider' => 'bestbuy'],\n ['name' => \"Hawaii Five-O: The Tenth Season [6 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hawaii-five-o-the-tenth-season-6-discs-dvd/1591288.p?id=2163624&skuId=1591288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591288.jpg\"}', 'upc' => '097368121348', 'provider' => 'bestbuy'],\n ['name' => \"Jersey Shore: Season Two [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jersey-shore-season-two-4-discs-dvd/1591303.p?id=2166493&skuId=1591303&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591303.jpg\"}', 'upc' => '097368213746', 'provider' => 'bestbuy'],\n ['name' => \"Shrek: The Whole Story [5 Discs] (DVD) (Gift Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shrek-the-whole-story-5-discs-dvd-gift-set/1591312.p?id=2164286&skuId=1591312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591312_sa.jpg\"}', 'upc' => '097360824049', 'provider' => 'bestbuy'],\n ['name' => \"Shrek Forever After (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shrek-forever-after-blu-ray-disc/1591349.p?id=2162899&skuId=1591349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1591349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1591\\/1591349_sa.jpg\"}', 'upc' => '097360825244', 'provider' => 'bestbuy'],\n ['name' => \"Third Day of a Seven Day Binge... [Single] - CD5 Single - (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 1.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/third-day-of-a-seven-day-binge-single-cd5-single-only--best-buy/1592019.p?id=3326195&skuId=1592019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1592019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1592\\/1592019_sa.jpg\"}', 'upc' => '888072368835', 'provider' => 'bestbuy'],\n ['name' => \"Third Day of a Seven Day Binge [Only... [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/third-day-of-a-seven-day-binge-only-single-cd/1592028.p?id=3326194&skuId=1592028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1592028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1592\\/1592028_sa.jpg\"}', 'upc' => '888072368828', 'provider' => 'bestbuy'],\n ['name' => \"iCarly 2: iJoin the Click - Nintendo DS\", 'description_short' => \"Help Carly make her show the most popular Web-series\", 'description_long' => \"Help Carly make her show the most popular Web-series\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icarly-2-ijoin-the-click-nintendo-ds/1592375.p?id=1218270597452&skuId=1592375', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1592375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1592\\/1592375_sa.jpg\"}', 'upc' => '047875764538', 'provider' => 'bestbuy'],\n ['name' => \"Minute to Win It - Nintendo DS\", 'description_short' => \"You have 60 seconds to make a virtual million\", 'description_long' => \"You have 60 seconds to make a virtual million\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/minute-to-win-it-nintendo-ds/1592866.p?id=1218270600207&skuId=1592866', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1592866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1592\\/1592866_sa.jpg\"}', 'upc' => '802068103453', 'provider' => 'bestbuy'],\n ['name' => \"Andy Griffith Show: 50th Anniversary - The Best of Mayberry [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/andy-griffith-show-50th-anniversary-the-best-of-mayberry-3-discs-dvd/1592884.p?id=2132741&skuId=1592884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1592884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1592\\/1592884_sa.jpg\"}', 'upc' => '097360754841', 'provider' => 'bestbuy'],\n ['name' => \"Bonanza: The Official Second Season, Vol. 1 [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bonanza-the-official-second-season-vol-1-5-discs-dvd/1592893.p?id=2157410&skuId=1592893&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1592893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1592\\/1592893_sa.jpg\"}', 'upc' => '097360827040', 'provider' => 'bestbuy'],\n ['name' => \"Shawn Johnson Gymnastics - Nintendo DS\", 'description_short' => \"Do you have the moves to go for the gold?\", 'description_long' => \"Do you have the moves to go for the gold?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shawn-johnson-gymnastics-nintendo-ds/1592975.p?id=1218271243459&skuId=1592975', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1592975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1592\\/1592975_sa.jpg\"}', 'upc' => '802068103156', 'provider' => 'bestbuy'],\n ['name' => \"Pinnacle - Dazzle DVD Recorder HD - Silver\", 'description_short' => \"USB video capture device; allows you to turn video clips into digital movies; effects, transitions and soundtrack options library; 1-click uploading to YouTube\", 'description_long' => \"USB video capture device; allows you to turn video clips into digital movies; effects, transitions and soundtrack options library; 1-click uploading to YouTube\", 'price' => 69.99, 'sale_price' => 59.99, 'url' => 'http://www.bestbuy.com/site/pinnacle-dazzle-dvd-recorder-hd-silver/1593161.p?id=1219056633562&skuId=1593161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1593161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1593\\/1593161_sa.jpg\"}', 'upc' => '735163141535', 'provider' => 'bestbuy'],\n ['name' => \"WWE 2K14: THE ULTIMATE WARRIOR-X360\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-2k14-the-ultimate-warrior-x360/1594009.p?id=2734339&skuId=1594009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1594009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400015940092', 'provider' => 'bestbuy'],\n ['name' => \"Knight and Day (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/knight-and-day-dvd/1594133.p?id=2160024&skuId=1594133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1594133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1594\\/1594133_sa.jpg\"}', 'upc' => '024543672234', 'provider' => 'bestbuy'],\n ['name' => \"Archer: The Complete Season One [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/archer-the-complete-season-one-2-discs-dvd/1594142.p?id=2166514&skuId=1594142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1594142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1594\\/1594142.jpg\"}', 'upc' => '024543676515', 'provider' => 'bestbuy'],\n ['name' => \"Family Guy: It's a Trap! (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/family-guy-its-a-trap-blu-ray-disc/1594151.p?id=2157413&skuId=1594151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1594151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1594\\/1594151_sa.jpg\"}', 'upc' => '024543690894', 'provider' => 'bestbuy'],\n ['name' => \"Wall Street: Money Never Sleeps (Blu-ray Disc) (2 Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wall-street-money-never-sleeps-blu-ray-disc-2-disc-digital-copy/1594179.p?id=2171939&skuId=1594179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1594179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1594\\/1594179_sa.jpg\"}', 'upc' => '024543698081', 'provider' => 'bestbuy'],\n ['name' => \"Family Guy: It's a Trap! (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/family-guy-its-a-trap-dvd/1594188.p?id=2157413&skuId=1594188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1594188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1594\\/1594188_sa.jpg\"}', 'upc' => '024543690900', 'provider' => 'bestbuy'],\n ['name' => \"Teenage Mutant Ninja Turtles - Nintendo Wii\", 'description_short' => \"Save NYC from a mind-numbing bomb\", 'description_long' => \"Save NYC from a mind-numbing bomb\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teenage-mutant-ninja-turtles-nintendo-wii/1595105.p?id=1219056706096&skuId=1595105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1595105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1595\\/1595105_sa.jpg\"}', 'upc' => '047875767584', 'provider' => 'bestbuy'],\n ['name' => \"Overnight [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/overnight-digipak-cd/1597167.p?id=2729203&skuId=1597167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1597167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1597\\/1597167_sa.jpg\"}', 'upc' => '602537465200', 'provider' => 'bestbuy'],\n ['name' => \"Monthly Accidental Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monthly-accidental-protection-plan-geek-squad/1597176.p?id=1219056554068&skuId=1597176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1597176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400015971768', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Fused Terminal Cup\", 'description_short' => \"Compatible with most speaker enclosures; integrated fuse; miniATC fuses included; spring-loaded binding post; accepts up to 10 AWG wire\", 'description_long' => \"Compatible with most speaker enclosures; integrated fuse; miniATC fuses included; spring-loaded binding post; accepts up to 10 AWG wire\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-fused-terminal-cup/1598111.p?id=1218272619231&skuId=1598111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598111_rc.jpg\"}', 'upc' => '086429258321', 'provider' => 'bestbuy'],\n ['name' => \"Kandi Koated - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kandi-koated-cd/1598148.p?id=2166496&skuId=1598148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598148_sa.jpg\"}', 'upc' => '093624960379', 'provider' => 'bestbuy'],\n ['name' => \"Resident Evil: Afterlife (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resident-evil-afterlife-blu-ray-3d-3-d/1598166.p?id=2168223&skuId=1598166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598166_sa.jpg\"}', 'upc' => '043396366008', 'provider' => 'bestbuy'],\n ['name' => \"Mandy Ingber: Yogalosophy (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mandy-ingber-yogalosophy-dvd/1598218.p?id=2174738&skuId=1598218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598218_sa.jpg\"}', 'upc' => '018713579065', 'provider' => 'bestbuy'],\n ['name' => \"Devil (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/devil-dvd/1598245.p?id=2168292&skuId=1598245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598245_sa.jpg\"}', 'upc' => '025192060632', 'provider' => 'bestbuy'],\n ['name' => \"Backdraft (Blu-ray Disc) (Anniversary Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backdraft-blu-ray-disc-anniversary-edition/1598254.p?id=20374&skuId=1598254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598254_sa.jpg\"}', 'upc' => '025195053068', 'provider' => 'bestbuy'],\n ['name' => \"Battlestar Galactica: Razor (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battlestar-galactica-razor-blu-ray-disc/1598272.p?id=1691761&skuId=1598272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598272_sa.jpg\"}', 'upc' => '025192084690', 'provider' => 'bestbuy'],\n ['name' => \"The American (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-american-dvd/1598281.p?id=2166556&skuId=1598281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598281_sa.jpg\"}', 'upc' => '025192053740', 'provider' => 'bestbuy'],\n ['name' => \"Lost in Translation (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-in-translation-blu-ray-disc/1598306.p?id=1343297&skuId=1598306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598306_sa.jpg\"}', 'upc' => '025192058141', 'provider' => 'bestbuy'],\n ['name' => \"The American (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-american-blu-ray-disc/1598315.p?id=2166556&skuId=1598315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598315_sa.jpg\"}', 'upc' => '025192053733', 'provider' => 'bestbuy'],\n ['name' => \"Devil (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/devil-blu-ray-disc/1598324.p?id=2168292&skuId=1598324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598324_sa.jpg\"}', 'upc' => '025192071294', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Raw - The Best of 2010 (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-raw-the-best-of-2010-dvd-3-disc/1598342.p?id=2162471&skuId=1598342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598342_sa.jpg\"}', 'upc' => '651191949076', 'provider' => 'bestbuy'],\n ['name' => \"The Temptations (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-temptations-dvd/1598351.p?id=54928&skuId=1598351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598351_sa.jpg\"}', 'upc' => '883476030579', 'provider' => 'bestbuy'],\n ['name' => \"Marvel Knights: Black Panther (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marvel-knights-black-panther-dvd/1598379.p?id=2162457&skuId=1598379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598379.jpg\"}', 'upc' => '826663122831', 'provider' => 'bestbuy'],\n ['name' => \"Veggie Tales: Happy Together (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/veggie-tales-happy-together-dvd/1598388.p?id=2162481&skuId=1598388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598388_sa.jpg\"}', 'upc' => '883476030722', 'provider' => 'bestbuy'],\n ['name' => \"The Great Debaters (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-debaters-blu-ray-disc/1598397.p?id=1853417&skuId=1598397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598397_sa.jpg\"}', 'upc' => '883476030777', 'provider' => 'bestbuy'],\n ['name' => \"Dark Skies: The Declassified Complete Series [6 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dark-skies-the-declassified-complete-series-6-discs-dvd/1598411.p?id=2162459&skuId=1598411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598411_sa.jpg\"}', 'upc' => '826663123081', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Raw - The Best of 2010 (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-raw-the-best-of-2010-blu-ray-disc-2-disc/1598439.p?id=2162471&skuId=1598439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598439_sa.jpg\"}', 'upc' => '651191949083', 'provider' => 'bestbuy'],\n ['name' => \"Larry Sanders Show: The Complete Series [17 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/larry-sanders-show-the-complete-series-17-discs-dvd/1598448.p?id=2120924&skuId=1598448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598448_sa.jpg\"}', 'upc' => '826663118896', 'provider' => 'bestbuy'],\n ['name' => \"Freakonomics (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freakonomics-blu-ray-disc/1598484.p?id=2165408&skuId=1598484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598484_sa.jpg\"}', 'upc' => '876964003582', 'provider' => 'bestbuy'],\n ['name' => \"Gantz: Complete Box Set - Classic Line [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gantz-complete-box-set-classic-line-5-discs-dvd/1598493.p?id=2168046&skuId=1598493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598493.jpg\"}', 'upc' => '704400088605', 'provider' => 'bestbuy'],\n ['name' => \"The Girl Who Kicked the Hornet's Nest (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/the-girl-who-kicked-the-hornets-nest-blu-ray-disc/1598509.p?id=2162916&skuId=1598509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598509_sa.jpg\"}', 'upc' => '705105742557', 'provider' => 'bestbuy'],\n ['name' => \"Phantom: Requiem For The Phantom - 2 (3 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/phantom-requiem-for-the-phantom-2-3-disc-dvd-boxed-set/1598518.p?id=2168044&skuId=1598518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598518.jpg\"}', 'upc' => '704400087769', 'provider' => 'bestbuy'],\n ['name' => \"Tsubasa - Ovas (DVD) (Uncut)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tsubasa-ovas-dvd-uncut/1598527.p?id=2164898&skuId=1598527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598527.jpg\"}', 'upc' => '704400023002', 'provider' => 'bestbuy'],\n ['name' => \"Hugh Hefner: Playboy, Activist and Rebel (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hugh-hefner-playboy-activist-and-rebel-dvd/1598545.p?id=2159597&skuId=1598545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598545_sa.jpg\"}', 'upc' => '625828548802', 'provider' => 'bestbuy'],\n ['name' => \"The Girl Who Kicked the Hornet's Nest (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-girl-who-kicked-the-hornets-nest-dvd/1598554.p?id=2162916&skuId=1598554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598554_sa.jpg\"}', 'upc' => '705105743554', 'provider' => 'bestbuy'],\n ['name' => \"Phantom: Requiem For The Phantom - 1 (3 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/phantom-requiem-for-the-phantom-1-3-disc-dvd-boxed-set/1598563.p?id=2164908&skuId=1598563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598563.jpg\"}', 'upc' => '704400087776', 'provider' => 'bestbuy'],\n ['name' => \"Disgaea: The Complete Series [2 Discs] (Uncut) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disgaea-the-complete-series-2-discs-uncut-dvd/1598572.p?id=2168045&skuId=1598572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598572_sa.jpg\"}', 'upc' => '704400083457', 'provider' => 'bestbuy'],\n ['name' => \"Freakonomics (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freakonomics-dvd/1598581.p?id=2165408&skuId=1598581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598581_sa.jpg\"}', 'upc' => '876964003568', 'provider' => 'bestbuy'],\n ['name' => \"Client 9: The Rise and Fall of Eliot Spitzer (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/client-9-the-rise-and-fall-of-eliot-spitzer-dvd/1598615.p?id=2166821&skuId=1598615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1598615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1598\\/1598615_sa.jpg\"}', 'upc' => '876964003629', 'provider' => 'bestbuy'],\n ['name' => \"Monster - Power Black Platinum 600 6-Outlet Surge Protector - Black\", 'description_short' => \"2160 joules of protection; 6 outlets; Powerline Technology; gold coax protection; fire proof technology; tri-mode power protection; 3.4 amps shared over 2 USB ports\", 'description_long' => \"2160 joules of protection; 6 outlets; Powerline Technology; gold coax protection; fire proof technology; tri-mode power protection; 3.4 amps shared over 2 USB ports\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monster-power-black-platinum-600-6-outlet-surge-protector-black/1599003.p?id=1219503841900&skuId=1599003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1599003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1599\\/1599003_sa.jpg\"}', 'upc' => '050644725296', 'provider' => 'bestbuy'],\n ['name' => \"Sony - 18-200mm f/3.5-6.3 Alpha E-Mount Lens for Sony Alpha NEX DSLR Cameras - Silver\", 'description_short' => \"Compatible with Sony Alpha NEX DSLR cameras; Optical Steady Shot image stabilization; 0.35x maximum magnification; f/22-40 minimum and f/3.5-6.3 maximum aperture\", 'description_long' => \"Compatible with Sony Alpha NEX DSLR cameras; Optical Steady Shot image stabilization; 0.35x maximum magnification; f/22-40 minimum and f/3.5-6.3 maximum aperture\", 'price' => 899.99, 'sale_price' => 799.99, 'url' => 'http://www.bestbuy.com/site/sony-18-200mm-f-3-5-6-3-alpha-e-mount-lens-for-sony-alpha-nex-dslr-cameras-silver/1599004.p?id=1218271246977&skuId=1599004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1599004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1599\\/1599004_rc.jpg\"}', 'upc' => '027242789913', 'provider' => 'bestbuy'],\n ['name' => \"Sanus - Foundations Component Series 11-Outlet Power Conditioner\", 'description_short' => \"From our expanded online assortment; 2400 joules of protection; 11 protected outlets; dual-stage EMI/RFI filters; adjustable dual LED light\", 'description_long' => \"From our expanded online assortment; 2400 joules of protection; 11 protected outlets; dual-stage EMI/RFI filters; adjustable dual LED light\", 'price' => 191.99, 'sale_price' => 175.99, 'url' => 'http://www.bestbuy.com/site/sanus-foundations-component-series-11-outlet-power-conditioner/1599253.p?id=1218271246178&skuId=1599253', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1599253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1599\\/1599253_sa.jpg\"}', 'upc' => '793795521736', 'provider' => 'bestbuy'],\n ['name' => \"Sanus - VisionMount Tilting TV Wall Mount for Most 26\\\" - 46\\\" Flat-Panel TVs - Black\", 'description_short' => \"From our expanded online assortment; supports most 26&quot; - 46&quot; flat-panel TVs weighing up to 100 lbs.; lateral shift adjustment; Virtual Axis tilt technology\", 'description_long' => \"From our expanded online assortment; supports most 26&quot; - 46&quot; flat-panel TVs weighing up to 100 lbs.; lateral shift adjustment; Virtual Axis tilt technology\", 'price' => 84.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sanus-visionmount-tilting-tv-wall-mount-for-most-26-46-flat-panel-tvs-black/1599262.p?id=1218271243783&skuId=1599262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1599262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1599\\/1599262_sa.jpg\"}', 'upc' => '793795521958', 'provider' => 'bestbuy'],\n ['name' => \"Sanus - VisionMount Full-Motion TV Wall Mount for 42\\\" - 84\\\" Flat-Panel TVs - Extends 20\\\" - Black\", 'description_short' => \"From our expanded online assortment; supports most 42&quot; - 84&quot; flat-panel TVs weighing up to 175 lbs.; ProSet height and level adjustments; steel and extruded aluminum material; weather-resistant design\", 'description_long' => \"From our expanded online assortment; supports most 42&quot; - 84&quot; flat-panel TVs weighing up to 175 lbs.; ProSet height and level adjustments; steel and extruded aluminum material; weather-resistant design\", 'price' => 467.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sanus-visionmount-full-motion-tv-wall-mount-for-42-84-flat-panel-tvs-extends-20-black/1599271.p?id=1218271245845&skuId=1599271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1599271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1599\\/1599271_sa.jpg\"}', 'upc' => '793795520692', 'provider' => 'bestbuy'],\n ['name' => \"Aviva - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aviva-cd/1599705.p?id=2729160&skuId=1599705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1599705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1599\\/1599705_sa.jpg\"}', 'upc' => '5099901958720', 'provider' => 'bestbuy'],\n ['name' => \"Justin Bieber: Never Say Never (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/justin-bieber-never-say-never-blu-ray-disc/1599941.p?id=2208662&skuId=1599941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1599941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1599\\/1599941_sa.jpg\"}', 'upc' => '883929302093', 'provider' => 'bestbuy'],\n ['name' => \"Legally Blonde/Legally Blonde 2: Red, White & Blonde [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legally-blonde-legally-blonde-2-red-white-blonde-2-discs-dvd/1599979.p?id=1575616&skuId=1599979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1599979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1599\\/1599979_sa.jpg\"}', 'upc' => '027616137531', 'provider' => 'bestbuy'],\n ['name' => \"Monster - Power Black Platinum 1200 12-Outlet Surge Protector - Black\", 'description_short' => \"3240 joules of protection; 12 outlets; Powerline Technology; gold coax protection; fire proof technology; tri-mode power protection; 3.4 amps shared over 2 USB ports\", 'description_long' => \"3240 joules of protection; 12 outlets; Powerline Technology; gold coax protection; fire proof technology; tri-mode power protection; 3.4 amps shared over 2 USB ports\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monster-power-black-platinum-1200-12-outlet-surge-protector-black/1600028.p?id=1219503841912&skuId=1600028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600028_sa.jpg\"}', 'upc' => '050644725319', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Series Seven - Complete Series (4 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-series-seven-complete-series-4-disc-blu-ray-disc/1600126.p?id=2730817&skuId=1600126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600126.jpg\"}', 'upc' => '883929332618', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Series 7 - Complete Series [5 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 64.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-series-7-complete-series-5-discs-dvd/1600232.p?id=2730763&skuId=1600232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600232.jpg\"}', 'upc' => '883929332601', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Doctors Revisited - 5-8 (4 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-doctors-revisited-5-8-4-disc-dvd/1600435.p?id=2727940&skuId=1600435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600435.jpg\"}', 'upc' => '883929332632', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - Chef's Classic 14-Piece Cookware Set - Stainless-Steel\", 'description_short' => \"14 pieces; stainless-steel riveted handles; helper handle; drip-free pouring rims; aluminum-capsulated bases\", 'description_long' => \"14 pieces; stainless-steel riveted handles; helper handle; drip-free pouring rims; aluminum-capsulated bases\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-chefs-classic-14-piece-cookware-set-stainless-steel/1600471.p?id=1218272179561&skuId=1600471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600471_rc.jpg\"}', 'upc' => '086279013460', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - Chef's Classic Nonstick 14-Piece Cookware Set - Stainless-Steel\", 'description_short' => \"14 pieces; stainless-steel cool-grip riveted handles; drip-free pouring rims; Quantanium nonstick cooking surface; tempered-glass design\", 'description_long' => \"14 pieces; stainless-steel cool-grip riveted handles; drip-free pouring rims; Quantanium nonstick cooking surface; tempered-glass design\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-chefs-classic-nonstick-14-piece-cookware-set-stainless-steel/1600499.p?id=1218272178554&skuId=1600499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600499_rc.jpg\"}', 'upc' => '086279013484', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 46 Combo Kit\", 'description_short' => \"From our expanded online assortment; Par 46 200W lamp and aluminum par can; 4 color gel filters and gel frame; clamp and safety cable\", 'description_long' => \"From our expanded online assortment; Par 46 200W lamp and aluminum par can; 4 color gel filters and gel frame; clamp and safety cable\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-46-combo-kit/1600569.p?id=1218272175831&skuId=1600569', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600569_sa.jpg\"}', 'upc' => '640282010047', 'provider' => 'bestbuy'],\n ['name' => \"American Audio - Power Distribution Panel\", 'description_short' => \"From our expanded online assortment; seven 3-prong power plugs; 1 switched and 1 unswitched AC outlets; pop-out LED lights; 15 amps per outlet; USB port\", 'description_long' => \"From our expanded online assortment; seven 3-prong power plugs; 1 switched and 1 unswitched AC outlets; pop-out LED lights; 15 amps per outlet; USB port\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-audio-power-distribution-panel/1600578.p?id=1218272180995&skuId=1600578', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600578_rc.jpg\"}', 'upc' => '640282043502', 'provider' => 'bestbuy'],\n ['name' => \"American Audio - Pro DJ Headphones - Black\", 'description_short' => \"From our expanded online assortment; flexible housing design; snap-on replaceable earpads; 57mm dia dome drivers; neodymium-iron-boron magnets\", 'description_long' => \"From our expanded online assortment; flexible housing design; snap-on replaceable earpads; 57mm dia dome drivers; neodymium-iron-boron magnets\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-audio-pro-dj-headphones-black/1600596.p?id=1218272180172&skuId=1600596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600596_rc.jpg\"}', 'upc' => '640282024129', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Moonflower LED Dome Light - Black\", 'description_short' => \"From our expanded online assortment; 10-watt quad LEDs; 3 operating modes; 3 DMX channels; electronic dimming and color strobe effects; fan-cooled design\", 'description_long' => \"From our expanded online assortment; 10-watt quad LEDs; 3 operating modes; 3 DMX channels; electronic dimming and color strobe effects; fan-cooled design\", 'price' => 169.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-moonflower-led-dome-light-black/1600648.p?id=1218272178882&skuId=1600648', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600648_sa.jpg\"}', 'upc' => '640282001663', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Stage Tape - Black\", 'description_short' => \"From our expanded online assortment; ideal for a variety of DJ applications; 4&quot; wide; no heavy residue\", 'description_long' => \"From our expanded online assortment; ideal for a variety of DJ applications; 4&quot; wide; no heavy residue\", 'price' => 22.99, 'sale_price' => 20.99, 'url' => 'http://www.bestbuy.com/site/american-dj-stage-tape-black/1600657.p?id=1218272182903&skuId=1600657', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600657_sa.jpg\"}', 'upc' => '640282052962', 'provider' => 'bestbuy'],\n ['name' => \"American Audio - Power Distribution Panel\", 'description_short' => \"From our expanded online assortment; seven 3-prong power plugs; 1 unswitched and 1 switched AC outlets; pop-out LED lights; 15 amps per outlet; USB port\", 'description_long' => \"From our expanded online assortment; seven 3-prong power plugs; 1 unswitched and 1 switched AC outlets; pop-out LED lights; 15 amps per outlet; USB port\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-audio-power-distribution-panel/1600675.p?id=1218272176323&skuId=1600675', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600675_sa.jpg\"}', 'upc' => '640282043359', 'provider' => 'bestbuy'],\n ['name' => \"American Audio - Professional Single CD/MP3 Player - Black\", 'description_short' => \"From our expanded online assortment; plays MP3, CD, CD-R and CD-RW discs; mechanical antiskip protection; pitch control; LCD display\", 'description_long' => \"From our expanded online assortment; plays MP3, CD, CD-R and CD-RW discs; mechanical antiskip protection; pitch control; LCD display\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-audio-professional-single-cd-mp3-player-black/1600684.p?id=1218272175301&skuId=1600684', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1600684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1600\\/1600684_sa.jpg\"}', 'upc' => '640282001519', 'provider' => 'bestbuy'],\n ['name' => \"MakerBot - 1.75mm ABS Filament 2.2 lbs. - True Orange\", 'description_short' => \"MAKERBOT 1.75mm ABS Filament 2.2 lbs.: Compatible with MakerBot Replicator 2X 3D printers; flexible ABS material; consistently round 1.75mm diameter; high melting point; adheres well to Kapton tape; matte finish; 2.2-lb. spool\", 'description_long' => \"MAKERBOT 1.75mm ABS Filament 2.2 lbs.: Compatible with MakerBot Replicator 2X 3D printers; flexible ABS material; consistently round 1.75mm diameter; high melting point; adheres well to Kapton tape; matte finish; 2.2-lb. spool\", 'price' => 48, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/makerbot-1-75mm-abs-filament-2-2-lbs-true-orange/1601063.p?id=1219507982114&skuId=1601063', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1601063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1601\\/1601063_sa.jpg\"}', 'upc' => '817913010107', 'provider' => 'bestbuy'],\n ['name' => \"La Tumba del Alma [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-tumba-del-alma-digipak-cd/1601073.p?id=2730264&skuId=1601073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1601073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1601\\/1601073_sa.jpg\"}', 'upc' => '731467945725', 'provider' => 'bestbuy'],\n ['name' => \"MakerBot - 1.75mm ABS Filament 2.2 lbs. - True Gray\", 'description_short' => \"MAKERBOT 1.75mm ABS Filament 2.2 lbs.: Compatible with MakerBot Replicator 2X 3D printers; flexible ABS material; consistently round 1.75mm diameter; high melting point; adheres well to Kapton tape; matte finish; 2.2-lb. spool\", 'description_long' => \"MAKERBOT 1.75mm ABS Filament 2.2 lbs.: Compatible with MakerBot Replicator 2X 3D printers; flexible ABS material; consistently round 1.75mm diameter; high melting point; adheres well to Kapton tape; matte finish; 2.2-lb. spool\", 'price' => 48, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/makerbot-1-75mm-abs-filament-2-2-lbs-true-gray/1601114.p?id=1219507979481&skuId=1601114', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1601114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1601\\/1601114_sa.jpg\"}', 'upc' => '817913010589', 'provider' => 'bestbuy'],\n ['name' => \"MakerBot - 1.75mm PLA Filament 5 lbs. - True White\", 'description_short' => \"MAKERBOT 1.75mm PLA Filament 5 lbs.: Compatible with the MakerBot Replicator Z18 3D printers; PLA material made from nontoxic resin; limited warping and curling; quality-tested; 5-lb. spool\", 'description_long' => \"MAKERBOT 1.75mm PLA Filament 5 lbs.: Compatible with the MakerBot Replicator Z18 3D printers; PLA material made from nontoxic resin; limited warping and curling; quality-tested; 5-lb. spool\", 'price' => 115, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/makerbot-1-75mm-pla-filament-5-lbs-true-white/1601238.p?id=1219507983675&skuId=1601238', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1601238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1601\\/1601238_sa.jpg\"}', 'upc' => '817913011814', 'provider' => 'bestbuy'],\n ['name' => \"Action Triple Feature (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/action-triple-feature-blu-ray-disc/1602179.p?id=2757155&skuId=1602179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602179.jpg\"}', 'upc' => '096009055219', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Sarah McLachlan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-sarah-mclachlan-cd/1602197.p?id=2728268&skuId=1602197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602197_sa.jpg\"}', 'upc' => '888837507721', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Bill Withers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-bill-withers-cd/1602267.p?id=2736499&skuId=1602267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602267_sa.jpg\"}', 'upc' => '888837422024', 'provider' => 'bestbuy'],\n ['name' => \"Trap Lord [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trap-lord-pa-cd/1602276.p?id=2728381&skuId=1602276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602276_sa.jpg\"}', 'upc' => '888837373722', 'provider' => 'bestbuy'],\n ['name' => \"Essential [Clean] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essential-clean-pa-cd/1602285.p?id=2728532&skuId=1602285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602285_sa.jpg\"}', 'upc' => '888837546720', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Santana - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-santana-cd/1602294.p?id=2728253&skuId=1602294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602294_sa.jpg\"}', 'upc' => '886978342027', 'provider' => 'bestbuy'],\n ['name' => \"For All Generations - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-all-generations-cd/1602319.p?id=3171302&skuId=1602319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '791344164458', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Backstreet Boys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-backstreet-boys-cd/1602328.p?id=2728529&skuId=1602328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602328_sa.jpg\"}', 'upc' => '888837412520', 'provider' => 'bestbuy'],\n ['name' => \"Jimi Hendrix Experience [Bonus Tracks] [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 45.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jimi-hendrix-experience-bonus-tracks-box-cd/1602337.p?id=2721801&skuId=1602337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602337_sa.jpg\"}', 'upc' => '886976284329', 'provider' => 'bestbuy'],\n ['name' => \"Doris [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doris-pa-digipak-cd/1602346.p?id=2733448&skuId=1602346&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602346_sa.jpg\"}', 'upc' => '888837517027', 'provider' => 'bestbuy'],\n ['name' => \"The Essential - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-cd/1602355.p?id=2736498&skuId=1602355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602355_sa.jpg\"}', 'upc' => '888837411523', 'provider' => 'bestbuy'],\n ['name' => \"1 Girl Nation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-girl-nation-cd/1602364.p?id=2728445&skuId=1602364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602364_sa.jpg\"}', 'upc' => '602341017923', 'provider' => 'bestbuy'],\n ['name' => \"Flight (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flight-dvd/1602406.p?id=2644198&skuId=1602406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602406.jpg\"}', 'upc' => '883929334520', 'provider' => 'bestbuy'],\n ['name' => \"Flight (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flight-blu-ray-disc/1602424.p?id=2644198&skuId=1602424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602424_sa.jpg\"}', 'upc' => '883929334438', 'provider' => 'bestbuy'],\n ['name' => \"Best of Warner Bros.: 20 Film Collection - Thrillers [20 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-warner-bros--20-film-collection-thrillers-20-discs-dvd/1602433.p?id=2708078&skuId=1602433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1602433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1602\\/1602433_sa.jpg\"}', 'upc' => '883929288137', 'provider' => 'bestbuy'],\n ['name' => \"NETGEAR - ProSafe 24-Port 10/100/1000 Gigabit Ethernet Switch - Blue\", 'description_short' => \"NETGEAR ProSafe 24-Port 10/100/1000 Gigabit Ethernet Switch: Wired; lets you connect up to 24 devices to your network; 10/100/1000 Mbps speed\", 'description_long' => \"NETGEAR ProSafe 24-Port 10/100/1000 Gigabit Ethernet Switch: Wired; lets you connect up to 24 devices to your network; 10/100/1000 Mbps speed\", 'price' => 429.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/netgear-prosafe-24-port-10-100-1000-gigabit-ethernet-switch-blue/1603044.p?id=1219056747520&skuId=1603044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1603044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1603\\/1603044_sa.jpg\"}', 'upc' => '606449089851', 'provider' => 'bestbuy'],\n ['name' => \"Dinosaurs Alive! (Blu-ray Disc) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dinosaurs-alive-blu-ray-disc-3-d/1606041.p?id=2013316&skuId=1606041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606041_sa.jpg\"}', 'upc' => '014381676754', 'provider' => 'bestbuy'],\n ['name' => \"Resident Evil: Afterlife (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resident-evil-afterlife-dvd/1606069.p?id=2168223&skuId=1606069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606069_sa.jpg\"}', 'upc' => '043396366015', 'provider' => 'bestbuy'],\n ['name' => \"Wild Ocean (Blu-ray Disc) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-ocean-blu-ray-disc-3-d/1606078.p?id=2061757&skuId=1606078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606078_sa.jpg\"}', 'upc' => '014381676853', 'provider' => 'bestbuy'],\n ['name' => \"Desperado/El Mariachi [Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/desperado-el-mariachi-blu-ray-blu-ray-disc/1606087.p?id=2166829&skuId=1606087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606087_sa.jpg\"}', 'upc' => '043396367739', 'provider' => 'bestbuy'],\n ['name' => \"Easy A (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/easy-a-dvd/1606102.p?id=2169522&skuId=1606102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606102.jpg\"}', 'upc' => '043396362796', 'provider' => 'bestbuy'],\n ['name' => \"Ishtar (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ishtar-blu-ray-disc-ultraviolet-digital-copy/1606139.p?id=58658&skuId=1606139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606139_sa.jpg\"}', 'upc' => '043396367692', 'provider' => 'bestbuy'],\n ['name' => \"Salt (DVD) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/salt-dvd-unrated/1606148.p?id=2164505&skuId=1606148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606148_sa.jpg\"}', 'upc' => '043396350083', 'provider' => 'bestbuy'],\n ['name' => \"Once Upon a Time in Mexico (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/once-upon-a-time-in-mexico-blu-ray-disc/1606166.p?id=1342425&skuId=1606166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606166_sa.jpg\"}', 'upc' => '043396227323', 'provider' => 'bestbuy'],\n ['name' => \"Easy A (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/easy-a-blu-ray-disc/1606175.p?id=2169522&skuId=1606175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606175_sa.jpg\"}', 'upc' => '043396362765', 'provider' => 'bestbuy'],\n ['name' => \"Resident Evil: Afterlife (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resident-evil-afterlife-blu-ray-disc/1606209.p?id=2168223&skuId=1606209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606209_sa.jpg\"}', 'upc' => '043396365971', 'provider' => 'bestbuy'],\n ['name' => \"Brother - DR221CL Drum Unit - Black\", 'description_short' => \"Yields up to 15,000 pagesCompatible with select Brother Printers\", 'description_long' => \"Yields up to 15,000 pagesCompatible with select Brother Printers\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brother-dr221cl-drum-unit-black/1606245.p?id=1219056747526&skuId=1606245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606245_sa.jpg\"}', 'upc' => '012502634904', 'provider' => 'bestbuy'],\n ['name' => \"Brother - TN225Y High-Yield Toner Cartridge - Yellow\", 'description_short' => \"Yields up to 2,200 pagesCompatible with select Brother Printers\", 'description_long' => \"Yields up to 2,200 pagesCompatible with select Brother Printers\", 'price' => 98.99, 'sale_price' => 69.99, 'url' => 'http://www.bestbuy.com/site/brother-tn225y-high-yield-toner-cartridge-yellow/1606254.p?id=1219056748350&skuId=1606254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606254_sa.jpg\"}', 'upc' => '012502634898', 'provider' => 'bestbuy'],\n ['name' => \"Brother - TN225M High-Yield Toner Cartridge - Magenta\", 'description_short' => \"Yields up to 2,200 pagesCompatible with select Brother Printers\", 'description_long' => \"Yields up to 2,200 pagesCompatible with select Brother Printers\", 'price' => 98.99, 'sale_price' => 69.99, 'url' => 'http://www.bestbuy.com/site/brother-tn225m-high-yield-toner-cartridge-magenta/1606263.p?id=1219056747521&skuId=1606263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606263_sa.jpg\"}', 'upc' => '012502634881', 'provider' => 'bestbuy'],\n ['name' => \"Brother - TN225C High-Yield Toner Cartridge - Cyan\", 'description_short' => \"Yields up to 2,200 pagesCompatible with select Brother Printers\", 'description_long' => \"Yields up to 2,200 pagesCompatible with select Brother Printers\", 'price' => 98.99, 'sale_price' => 69.99, 'url' => 'http://www.bestbuy.com/site/brother-tn225c-high-yield-toner-cartridge-cyan/1606272.p?id=1219056748764&skuId=1606272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1606272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1606\\/1606272_sa.jpg\"}', 'upc' => '012502634874', 'provider' => 'bestbuy'],\n ['name' => \"Legend of the Guardians: The Owls Of Ga'Hoole (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legend-of-the-guardians-the-owls-of-gahoole-blu-ray-3d-3-d/1608128.p?id=2169765&skuId=1608128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1608128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1608\\/1608128_sa.jpg\"}', 'upc' => '883929166824', 'provider' => 'bestbuy'],\n ['name' => \"Sony - DT Carl Zeiss 16-80mm f/3.5-5.6 A-Mount Standard Zoom Lens - Black\", 'description_short' => \"Compatible with select Sony Alpha digital SLR cameras; 16-80mm focal length (35mm equivalent: 24-120mm); f/3.4-4.5 aperture range\", 'description_long' => \"Compatible with select Sony Alpha digital SLR cameras; 16-80mm focal length (35mm equivalent: 24-120mm); f/3.4-4.5 aperture range\", 'price' => 999.99, 'sale_price' => 899.99, 'url' => 'http://www.bestbuy.com/site/sony-dt-carl-zeiss-16-80mm-f-3-5-5-6-a-mount-standard-zoom-lens-black/1608173.p?id=1218273045700&skuId=1608173', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1608173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1608\\/1608173_sa.jpg\"}', 'upc' => '027242694286', 'provider' => 'bestbuy'],\n ['name' => \"Sony - Alpha Carl Zeiss T 24mm f/2 Lens for Select Sony Alpha DSLR Cameras - Black\", 'description_short' => \"Compatible with select Sony Alpha digital SLR cameras; fast, silent autofocus motor; 24mm focal length (35mm equivalent: 36mm); f/2 aperture\", 'description_long' => \"Compatible with select Sony Alpha digital SLR cameras; fast, silent autofocus motor; 24mm focal length (35mm equivalent: 36mm); f/2 aperture\", 'price' => 1399.99, 'sale_price' => 1299.99, 'url' => 'http://www.bestbuy.com/site/sony-alpha-carl-zeiss-t-24mm-f-2-lens-for-select-sony-alpha-dslr-cameras-black/1608182.p?id=1218273044184&skuId=1608182', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1608182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1608\\/1608182_sa.jpg\"}', 'upc' => '027242800793', 'provider' => 'bestbuy'],\n ['name' => \"Sony - DT 50mm f/1.8 A-Mount Medium Telephoto Lens - Black\", 'description_short' => \"Compatible with Sony APS-C sized A-mount cameras; SAM (Smooth Autofocus Motor); ED (Extra-low Dispersion) lens element; accommodates 49mm filters; 1.12&#039; minimum focusing distance\", 'description_long' => \"Compatible with Sony APS-C sized A-mount cameras; SAM (Smooth Autofocus Motor); ED (Extra-low Dispersion) lens element; accommodates 49mm filters; 1.12&#039; minimum focusing distance\", 'price' => 169.99, 'sale_price' => 144.99, 'url' => 'http://www.bestbuy.com/site/sony-dt-50mm-f-1-8-a-mount-medium-telephoto-lens-black/1608191.p?id=1218273043363&skuId=1608191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1608191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1608\\/1608191_rc.jpg\"}', 'upc' => '027242750883', 'provider' => 'bestbuy'],\n ['name' => \"Sony - 85mm f/2.8 Digital Zoom Lens for Select Sony Alpha Digital SLR Cameras - Black\", 'description_short' => \"Compatible with select Sony Alpha digital SLR cameras; smooth autofocus motor; 85mm focal length (35mm equivalent: 127.5mm); f/2.8 maximum aperture\", 'description_long' => \"Compatible with select Sony Alpha digital SLR cameras; smooth autofocus motor; 85mm focal length (35mm equivalent: 127.5mm); f/2.8 maximum aperture\", 'price' => 299.99, 'sale_price' => 274.99, 'url' => 'http://www.bestbuy.com/site/sony-85mm-f-2-8-digital-zoom-lens-for-select-sony-alpha-digital-slr-cameras-black/1608216.p?id=1218273044884&skuId=1608216', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1608216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1608\\/1608216_rc.jpg\"}', 'upc' => '027242805224', 'provider' => 'bestbuy'],\n ['name' => \"Sony - DT 35mm f/1.8 A-Mount Standard Lens - Black\", 'description_short' => \"Compatible with select Sony Alpha digital SLR cameras; smooth autofocus motor; 35mm focal length (35mm equivalent: 52.5mm); f/1.8 maximum aperture\", 'description_long' => \"Compatible with select Sony Alpha digital SLR cameras; smooth autofocus motor; 35mm focal length (35mm equivalent: 52.5mm); f/1.8 maximum aperture\", 'price' => 219.99, 'sale_price' => 194.99, 'url' => 'http://www.bestbuy.com/site/sony-dt-35mm-f-1-8-a-mount-standard-lens-black/1608225.p?id=1218273044751&skuId=1608225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1608225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1608\\/1608225_rc.jpg\"}', 'upc' => '027242805217', 'provider' => 'bestbuy'],\n ['name' => \"Sony - DT 30mm f/2.8 A-Mount Macro Lens - Black\", 'description_short' => \"Compatible with select Sony Alpha digital SLR cameras; smooth and silent autofocus motor; 30mm focal length (35mm equivalent: 45mm); f/2.8 maximum aperture\", 'description_long' => \"Compatible with select Sony Alpha digital SLR cameras; smooth and silent autofocus motor; 30mm focal length (35mm equivalent: 45mm); f/2.8 maximum aperture\", 'price' => 199.99, 'sale_price' => 174.99, 'url' => 'http://www.bestbuy.com/site/sony-dt-30mm-f-2-8-a-mount-macro-lens-black/1608234.p?id=1218273045771&skuId=1608234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1608234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1608\\/1608234_rc.jpg\"}', 'upc' => '027242750876', 'provider' => 'bestbuy'],\n ['name' => \"Sony - 18-250mm f/3.5-6.3 Telephoto Zoom Lens for Select Sony Alpha Digital SLR Cameras - Black\", 'description_short' => \"Compatible with select Sony digital SLR cameras; 18-250mm focal length (35mm equivalent: 27-375mm); f/3.5-6.3 aperture range\", 'description_long' => \"Compatible with select Sony digital SLR cameras; 18-250mm focal length (35mm equivalent: 27-375mm); f/3.5-6.3 aperture range\", 'price' => 649.99, 'sale_price' => 599.99, 'url' => 'http://www.bestbuy.com/site/sony-18-250mm-f-3-5-6-3-telephoto-zoom-lens-for-select-sony-alpha-digital-slr-cameras-black/1608243.p?id=1218273043021&skuId=1608243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1608243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1608\\/1608243_rc.jpg\"}', 'upc' => '027242714274', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - Microwave Trim Kit for Most 30\\\" Microwaves - Black-on-Stainless-Steel\", 'description_short' => \"UNBRANDED Microwave Trim Kit for Most 30&quot; Microwaves: Gives your microwave an integrated look; installation hardware included\", 'description_long' => \"UNBRANDED Microwave Trim Kit for Most 30&quot; Microwaves: Gives your microwave an integrated look; installation hardware included\", 'price' => 121.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-microwave-trim-kit-for-most-30-microwaves-black-on-stainless-steel/1609029.p?id=1219597173637&skuId=1609029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609029_sa.jpg\"}', 'upc' => '883049269467', 'provider' => 'bestbuy'],\n ['name' => \"Roger Corman Drive-In Collection (DVD) (2 Disc) (Black & White)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roger-corman-drive-in-collection-dvd-2-disc-black-white/1609427.p?id=2187816&skuId=1609427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '723721565565', 'provider' => 'bestbuy'],\n ['name' => \"Aaah! Zombies!! (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aaah-zombies-dvd/1609445.p?id=2142379&skuId=1609445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609445_sa.jpg\"}', 'upc' => '760137507994', 'provider' => 'bestbuy'],\n ['name' => \"Elviras Movie Macabre: Night Of Living Dead (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elviras-movie-macabre-night-of-living-dead-dvd/1609472.p?id=2211267&skuId=1609472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609472_sa.jpg\"}', 'upc' => '741952697596', 'provider' => 'bestbuy'],\n ['name' => \"Roger Corman Horror Collection [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roger-corman-horror-collection-2-discs-dvd/1609481.p?id=2123840&skuId=1609481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '723721463663', 'provider' => 'bestbuy'],\n ['name' => \"Roger Corman Creature Collection (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roger-corman-creature-collection-dvd-2-disc/1609533.p?id=2123839&skuId=1609533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '723721463564', 'provider' => 'bestbuy'],\n ['name' => \"Monsters vs. Aliens: Mutant Pumpkins from Outer Space (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monsters-vs-aliens-mutant-pumpkins-from-outer-space-dvd/1609551.p?id=2235482&skuId=1609551&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609551_sa.jpg\"}', 'upc' => '037117077236', 'provider' => 'bestbuy'],\n ['name' => \"Scared Shrekless (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scared-shrekless-dvd/1609579.p?id=2235483&skuId=1609579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609579_sa.jpg\"}', 'upc' => '037117077335', 'provider' => 'bestbuy'],\n ['name' => \"American Horror Stories: 12 Movie Collection [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-horror-stories-12-movie-collection-3-discs-dvd/1609588.p?id=2758840&skuId=1609588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609588_sa.jpg\"}', 'upc' => '683904531179', 'provider' => 'bestbuy'],\n ['name' => \"8-Movie Family Collection 6 [2 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/8-movie-family-collection-6-2-discs-dvd/1609597.p?id=2706946&skuId=1609597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609597_sa.jpg\"}', 'upc' => '096009184544', 'provider' => 'bestbuy'],\n ['name' => \"Can't Believe It [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cant-believe-it-single-cd/1609603.p?id=2736231&skuId=1609603&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609603', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609603.jpg\"}', 'upc' => '075678683787', 'provider' => 'bestbuy'],\n ['name' => \"Extreme Makeover: Weight Loss Edition - Boot Camp (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/extreme-makeover-weight-loss-edition-boot-camp-dvd/1609612.p?id=2714133&skuId=1609612&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609612_sa.jpg\"}', 'upc' => '031398169512', 'provider' => 'bestbuy'],\n ['name' => \"Jillian Michaels: Yoga Inferno (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jillian-michaels-yoga-inferno-dvd/1609621.p?id=2721778&skuId=1609621&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609621', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609621_sa.jpg\"}', 'upc' => '018713606358', 'provider' => 'bestbuy'],\n ['name' => \"Tracy Anderson: The Method for Beginners (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tracy-anderson-the-method-for-beginners-dvd/1609658.p?id=2716211&skuId=1609658&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609658', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609658_sa.jpg\"}', 'upc' => '013132607924', 'provider' => 'bestbuy'],\n ['name' => \"Right Thoughts Right Words Right Action - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/right-thoughts-right-words-right-action-cd/1609758.p?id=2726746&skuId=1609758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609758_sa.jpg\"}', 'upc' => '887828025527', 'provider' => 'bestbuy'],\n ['name' => \"Right Thoughts, Right Words, Right... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/right-thoughts-right-words-right-digipak-cd/1609776.p?id=2726437&skuId=1609776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609776_sa.jpg\"}', 'upc' => '887828025534', 'provider' => 'bestbuy'],\n ['name' => \"Age Against the Machine [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/age-against-the-machine-pa-cd/1609785.p?id=2732995&skuId=1609785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609785_sa.jpg\"}', 'upc' => '075678684197', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 24.8 Cu. Ft. French Door Refrigerator - Stainless Steel\", 'description_short' => \"ENERGY STAR Certified\nElectric controls; Accu-Chill temperature management; FreshFlow produce preserver; adjustable gallon-size door bins; spill-proof glass shelves; temperature-controlled full-width pantry; icemaker\", 'description_long' => \"ENERGY STAR Certified\nElectric controls; Accu-Chill temperature management; FreshFlow produce preserver; adjustable gallon-size door bins; spill-proof glass shelves; temperature-controlled full-width pantry; icemaker\", 'price' => 1699.99, 'sale_price' => 1199.99, 'url' => 'http://www.bestbuy.com/site/whirlpool-24-8-cu-ft-french-door-refrigerator-stainless-steel/1609849.p?id=1219056779621&skuId=1609849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609849_sa.jpg\"}', 'upc' => '883049288956', 'provider' => 'bestbuy'],\n ['name' => \"Amana - 25.4 Cu. Ft. Side-by-Side Refrigerator with Thru-the-Door Ice and Water - White\", 'description_short' => \"Temp Assure electric freshness controls; Spillsaver glass shelves; adjustable door bins; gallon-size door storage; factory-installed freezer icemaker\", 'description_long' => \"Temp Assure electric freshness controls; Spillsaver glass shelves; adjustable door bins; gallon-size door storage; factory-installed freezer icemaker\", 'price' => 999.99, 'sale_price' => 849.99, 'url' => 'http://www.bestbuy.com/site/amana-25-4-cu-ft-side-by-side-refrigerator-with-thru-the-door-ice-and-water-white/1609858.p?id=1219056780054&skuId=1609858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609858_sa.jpg\"}', 'upc' => '883049280202', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - MultiClad Unlimited 12-Piece Cookware Set - Black\", 'description_short' => \"12-piece set; tapered rims; cool-grip riveted stick handles; hard anodized-aluminum exterior; stainless-steel interior; dishwasher-safe design\", 'description_long' => \"12-piece set; tapered rims; cool-grip riveted stick handles; hard anodized-aluminum exterior; stainless-steel interior; dishwasher-safe design\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-multiclad-unlimited-12-piece-cookware-set-black/1609876.p?id=1219056747515&skuId=1609876', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609876_rc.jpg\"}', 'upc' => '086279051202', 'provider' => 'bestbuy'],\n ['name' => \"Love & the Outcome - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-the-outcome-cd/1609894.p?id=2736221&skuId=1609894&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609894_sa.jpg\"}', 'upc' => '080688865122', 'provider' => 'bestbuy'],\n ['name' => \"The Third Eye Centre [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-third-eye-centre-digipak-cd/1609912.p?id=2736219&skuId=1609912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609912_sa.jpg\"}', 'upc' => '744861103820', 'provider' => 'bestbuy'],\n ['name' => \"Carrier [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carrier-digipak-cd/1609921.p?id=2735780&skuId=1609921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1609921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1609\\/1609921_sa.jpg\"}', 'upc' => '644110026521', 'provider' => 'bestbuy'],\n ['name' => \"Dark Souls II - Scholar of the First Sin - Xbox 360\", 'description_short' => \"Prepare to face death again with the complete Dark Souls II experience\", 'description_long' => \"Prepare to face death again with the complete Dark Souls II experience\", 'price' => 19.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/dark-souls-ii-scholar-of-the-first-sin-xbox-360/1610006.p?id=1219507980484&skuId=1610006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610006_sa.jpg\"}', 'upc' => '722674211567', 'provider' => 'bestbuy'],\n ['name' => \"Carnival Games - Nintendo DS\", 'description_short' => \"Step right up for carnival excitement on your Nintendo DS\", 'description_long' => \"Step right up for carnival excitement on your Nintendo DS\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carnival-games-nintendo-ds/1610044.p?id=1218399791660&skuId=1610044', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610044_sa.jpg\"}', 'upc' => '696055188505', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055188529', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055188536', 'provider' => 'bestbuy'],\n ['name' => \"Deal or No Deal: Special Edition - Nintendo Wii\", 'description_short' => \"Eliminate the wrong briefcases to find the $1,000,000\", 'description_long' => \"Eliminate the wrong briefcases to find the $1,000,000\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deal-or-no-deal-special-edition-nintendo-wii/1610105.p?id=1218308304494&skuId=1610105', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610105.jpg\"}', 'upc' => '696055188550', 'provider' => 'bestbuy'],\n ['name' => \"Red Dead Redemption: Undead Nightmare - PlayStation 3\", 'description_short' => \"Set off on a dangerous journey in the last days of the Old West\", 'description_long' => \"Set off on a dangerous journey in the last days of the Old West\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-dead-redemption-undead-nightmare-playstation-3/1610169.p?id=1218273043434&skuId=1610169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610169_sa.jpg\"}', 'upc' => '710425379338', 'provider' => 'bestbuy'],\n ['name' => \"The All American Nightmare - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-all-american-nightmare-cd/1610318.p?id=2168755&skuId=1610318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610318_sa.jpg\"}', 'upc' => '602527541983', 'provider' => 'bestbuy'],\n ['name' => \"The Night the Cumberland Came Alive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-night-the-cumberland-came-alive-cd/1610327.p?id=2150788&skuId=1610327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1881\\/18814742.jpg\"}', 'upc' => '099923234128', 'provider' => 'bestbuy'],\n ['name' => \"Best Of...So Far - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-so-far-cd/1610336.p?id=2170062&skuId=1610336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610336_sa.jpg\"}', 'upc' => '729440116705', 'provider' => 'bestbuy'],\n ['name' => \"Mis Favoritas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mis-favoritas-cd/1610363.p?id=2166535&skuId=1610363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610363_sa.jpg\"}', 'upc' => '886978128928', 'provider' => 'bestbuy'],\n ['name' => \"Glee: The Music, Vol. 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glee-the-music-vol-4-cd/1610372.p?id=2169767&skuId=1610372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610372.jpg\"}', 'upc' => '886977921421', 'provider' => 'bestbuy'],\n ['name' => \"North American Hunting Extravaganza 2 - Nintendo Wii\", 'description_short' => \"Set your sights on becoming a master hunter\", 'description_long' => \"Set your sights on becoming a master hunter\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/north-american-hunting-extravaganza-2-nintendo-wii/1610502.p?id=1218307697984&skuId=1610502', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610502.jpg\"}', 'upc' => '828068213213', 'provider' => 'bestbuy'],\n ['name' => \"Deal or No Deal: Special Edition - Nintendo DS\", 'description_short' => \"Eliminate the wrong briefcases to find the $1,000,000\", 'description_long' => \"Eliminate the wrong briefcases to find the $1,000,000\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deal-or-no-deal-special-edition-nintendo-ds/1610511.p?id=1218307693183&skuId=1610511', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610511_sa.jpg\"}', 'upc' => '802068103132', 'provider' => 'bestbuy'],\n ['name' => \"Namco Museum Megamix - Nintendo Wii\", 'description_short' => \"Go back to the arcade in a whole new way\", 'description_long' => \"Go back to the arcade in a whole new way\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/namco-museum-megamix-nintendo-wii/1610539.p?id=1218307693302&skuId=1610539', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610539_sa.jpg\"}', 'upc' => '722674800303', 'provider' => 'bestbuy'],\n ['name' => \"Digging for Dinosaurs - Nintendo DS\", 'description_short' => \"Discover the truth about dinosaurs\", 'description_long' => \"Discover the truth about dinosaurs\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digging-for-dinosaurs-nintendo-ds/1610557.p?id=1218307693064&skuId=1610557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610557_sa.jpg\"}', 'upc' => '078073301270', 'provider' => 'bestbuy'],\n ['name' => \"My Amusement Park - Nintendo DS\", 'description_short' => \"Get ready for the ride of your life\", 'description_long' => \"Get ready for the ride of your life\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-amusement-park-nintendo-ds/1610575.p?id=1218307693184&skuId=1610575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610575_sa.jpg\"}', 'upc' => '078073301225', 'provider' => 'bestbuy'],\n ['name' => \"Hidden Mysteries: Salem Secrets - Nintendo DS\", 'description_short' => \"Play the role of Constable Hawthorne in the Salem Witch Trials\", 'description_long' => \"Play the role of Constable Hawthorne in the Salem Witch Trials\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hidden-mysteries-salem-secrets-nintendo-ds/1610593.p?id=1218307693401&skuId=1610593', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610593_sa.jpg\"}', 'upc' => '834656084509', 'provider' => 'bestbuy'],\n ['name' => \"Soda PDF 5 Standard Software for PC - Windows\", 'description_short' => \"For PC; ePUB compatibility; allows you to convert more than 300 file formats into PDF documents and open, edit, create and print PDF files; multiple viewing modes\", 'description_long' => \"For PC; ePUB compatibility; allows you to convert more than 300 file formats into PDF documents and open, edit, create and print PDF files; multiple viewing modes\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soda-pdf-5-standard-software-for-pc-windows/1610709.p?id=1219056779368&skuId=1610709', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610709_sa.jpg\"}', 'upc' => '628636131037', 'provider' => 'bestbuy'],\n ['name' => \"Soda PDF 5 Professional Software for PC - Windows\", 'description_short' => \"For PC; ePUB compatibility; allows you to convert more than 300 file formats into PDF documents and create, edit and share PDF files; selectable permission levels; password protection\", 'description_long' => \"For PC; ePUB compatibility; allows you to convert more than 300 file formats into PDF documents and create, edit and share PDF files; selectable permission levels; password protection\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soda-pdf-5-professional-software-for-pc-windows/1610718.p?id=1219056777941&skuId=1610718', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610718_sa.jpg\"}', 'upc' => '628636131044', 'provider' => 'bestbuy'],\n ['name' => \"Rocketfish™ - Indoor/Outdoor Bluetooth Speaker - Black\", 'description_short' => \"Compatible with most Bluetooth-enabled devices; aptX decoding; up to 32.8&#039; wireless range; weather-resistant design; built-in rechargeable battery; 4&quot; woofer and two 2.75&quot; tweeters; 3.5mm audio input\", 'description_long' => \"Compatible with most Bluetooth-enabled devices; aptX decoding; up to 32.8&#039; wireless range; weather-resistant design; built-in rechargeable battery; 4&quot; woofer and two 2.75&quot; tweeters; 3.5mm audio input\", 'price' => 149.99, 'sale_price' => 96.99, 'url' => 'http://www.bestbuy.com/site/rocketfish-indoor-outdoor-bluetooth-speaker-black/1610736.p?id=1219057055265&skuId=1610736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1610736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1610\\/1610736_sa.jpg\"}', 'upc' => '600603160400', 'provider' => 'bestbuy'],\n ['name' => \"WIZARD OF OZ: 75TH ANNIVERSARY (UVDC) (WBR) (ANIV) (Blu-ray 3D) (Anniversary Edition) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wizard-of-oz-75th-anniversary-uvdc-wbr-aniv-blu-ray-3d-anniversary-edition-ultraviolet-digital-copy/1611422.p?id=2718925&skuId=1611422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1611422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1611\\/1611422_sa.jpg\"}', 'upc' => '883929333332', 'provider' => 'bestbuy'],\n ['name' => \"WIZARD OF OZ: 75TH ANNIVERSARY / (ANIV) (Blu-ray Disc) (Anniversary Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => 12.99, 'url' => 'http://www.bestbuy.com/site/wizard-of-oz-75th-anniversary-aniv-blu-ray-disc-anniversary-edition/1611431.p?id=2718457&skuId=1611431&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1611431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1611431.jpg\"}', 'upc' => '883929332663', 'provider' => 'bestbuy'],\n ['name' => \"WIZARD OF OZ: 75TH ANNIVERSARY (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wizard-of-oz-75th-anniversary-dvd/1611477.p?id=2719205&skuId=1611477&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1611477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1611\\/1611477_sa.jpg\"}', 'upc' => '883929332694', 'provider' => 'bestbuy'],\n ['name' => \"House of Wax (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/house-of-wax-blu-ray-3d-3-d/1611486.p?id=47655&skuId=1611486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1611486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1611\\/1611486_sa.jpg\"}', 'upc' => '883929350964', 'provider' => 'bestbuy'],\n ['name' => \"PDP - Afterglow Wireless Dolby 5.1 Surround Sound Tower\", 'description_short' => \"Make a dual purpose addition to your gaming setup\", 'description_long' => \"Make a dual purpose addition to your gaming setup\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pdp-afterglow-wireless-dolby-5-1-surround-sound-tower/1611556.p?id=1219057055761&skuId=1611556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1611556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1611\\/1611556_sa.jpg\"}', 'upc' => '708056000042', 'provider' => 'bestbuy'],\n ['name' => \"Motorola - Boom Bluetooth Headset - Black\", 'description_short' => \"Compatible with most NFC-enabled mobile phones; Bluetooth technology; flip design; up to 300&#039; range; friendly audio prompts; rapid charging\", 'description_long' => \"Compatible with most NFC-enabled mobile phones; Bluetooth technology; flip design; up to 300&#039; range; friendly audio prompts; rapid charging\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/motorola-boom-bluetooth-headset-black/1611574.p?id=1219056770174&skuId=1611574&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1611574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1611\\/1611574_rc.jpg\"}', 'upc' => '723755896055', 'provider' => 'bestbuy'],\n ['name' => \"The Journey (Livin' Hits) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-journey-livin-hits-cd/1612398.p?id=2734081&skuId=1612398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612398_sa.jpg\"}', 'upc' => '851491003052', 'provider' => 'bestbuy'],\n ['name' => \"Ultra Trap - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultra-trap-cd-various/1612421.p?id=2734201&skuId=1612421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612421_sa.jpg\"}', 'upc' => '617465776328', 'provider' => 'bestbuy'],\n ['name' => \"World Boogie Is Coming [Digipak] - CD - (with Bonus Tracks) w/Book\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-boogie-is-coming-digipak-cd-with-bonus-tracks-w-book/1612467.p?id=2734082&skuId=1612467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612467_sa.jpg\"}', 'upc' => '794504799941', 'provider' => 'bestbuy'],\n ['name' => \"Blood! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blood-cd/1612476.p?id=2734073&skuId=1612476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612476_sa.jpg\"}', 'upc' => '808720018929', 'provider' => 'bestbuy'],\n ['name' => \"Atmosphere [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atmosphere-digipak-cd/1612485.p?id=2734171&skuId=1612485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612485_sa.jpg\"}', 'upc' => '617465405327', 'provider' => 'bestbuy'],\n ['name' => \"Turisas 2013 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turisas-2013-cd/1612564.p?id=2734216&skuId=1612564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612564_sa.jpg\"}', 'upc' => '727701901824', 'provider' => 'bestbuy'],\n ['name' => \"The Other Side - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-other-side-cd/1612573.p?id=2734226&skuId=1612573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612573_sa.jpg\"}', 'upc' => '714753017924', 'provider' => 'bestbuy'],\n ['name' => \"Mountains Beaches Cities [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mountains-beaches-cities-digipak-cd/1612582.p?id=2734148&skuId=1612582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612582_sa.jpg\"}', 'upc' => '840104100004', 'provider' => 'bestbuy'],\n ['name' => \"NETGEAR - ProSAFE Business Class 802.11n Single-Band Wireless Access Point\", 'description_short' => \"Complies with 802.11n standards; backward compatible with 802.11b/g; up to 300 Mbps data transfer rates; multiple SSID and layer 2 VLAN security\", 'description_long' => \"Complies with 802.11n standards; backward compatible with 802.11b/g; up to 300 Mbps data transfer rates; multiple SSID and layer 2 VLAN security\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/netgear-prosafe-business-class-802-11n-single-band-wireless-access-point/1612625.p?id=1219057058050&skuId=1612625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612625_500x500_sa.jpg\"}', 'upc' => '606449095982', 'provider' => 'bestbuy'],\n ['name' => \"Later...When the TV Turns to... [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/later-when-the-tv-turns-to-cd-dvd-cd-dvd-deluxe-edition/1612643.p?id=2734084&skuId=1612643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612643.jpg\"}', 'upc' => '859381003748', 'provider' => 'bestbuy'],\n ['name' => \"Fever Hunting [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fever-hunting-pa-digipak-cd/1612652.p?id=2734224&skuId=1612652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612652_sa.jpg\"}', 'upc' => '020286214151', 'provider' => 'bestbuy'],\n ['name' => \"Lunch. Drunk. Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lunch-drunk-love-cd/1612661.p?id=2734113&skuId=1612661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612661_sa.jpg\"}', 'upc' => '759707130526', 'provider' => 'bestbuy'],\n ['name' => \"Dance Your Ass Off [Ultra] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-your-ass-off-ultra-cd-various/1612689.p?id=2734162&skuId=1612689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612689_sa.jpg\"}', 'upc' => '617465409929', 'provider' => 'bestbuy'],\n ['name' => \"Dying Alive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dying-alive-cd/1612698.p?id=2734116&skuId=1612698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612698_sa.jpg\"}', 'upc' => '727361315528', 'provider' => 'bestbuy'],\n ['name' => \"Colored Sands - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/colored-sands-cd/1612707.p?id=2734249&skuId=1612707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612707.jpg\"}', 'upc' => '822603131123', 'provider' => 'bestbuy'],\n ['name' => \"Later...When the TV Turns to Static - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/later-when-the-tv-turns-to-static-cd/1612716.p?id=2734087&skuId=1612716&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612716', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612716_sa.jpg\"}', 'upc' => '859381003663', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1612734.p?id=1219058094538&skuId=1612734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016127348', 'provider' => 'bestbuy'],\n ['name' => \"The Smurfs 2 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Travel to Paris to save the day and bring Smurfette home safe\", 'description_long' => \"Travel to Paris to save the day and bring Smurfette home safe\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-smurfs-2-pre-owned-nintendo-ds/1612752.p?id=1219057243148&skuId=1612752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612752_sa.jpg\"}', 'upc' => '799007835059', 'provider' => 'bestbuy'],\n ['name' => \"The Witches (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-witches-dvd/1612789.p?id=25518&skuId=1612789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612789_sa.jpg\"}', 'upc' => '883929084647', 'provider' => 'bestbuy'],\n ['name' => \"Frames [Deluxe] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frames-deluxe-digipak-cd/1612807.p?id=2731675&skuId=1612807&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612807', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612807_sa.jpg\"}', 'upc' => '015707833226', 'provider' => 'bestbuy'],\n ['name' => \"Frames [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frames-digipak-cd/1612816.p?id=2731522&skuId=1612816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612816_sa.jpg\"}', 'upc' => '015707830225', 'provider' => 'bestbuy'],\n ['name' => \"Toxicology: Zug Izland's Dopest Bangers [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/toxicology-zug-izlands-dopest-bangers-pa-cd/1612825.p?id=2729902&skuId=1612825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612825_sa.jpg\"}', 'upc' => '756504500224', 'provider' => 'bestbuy'],\n ['name' => \"Afro Blue Impressions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afro-blue-impressions-cd/1612834.p?id=2731467&skuId=1612834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612834.jpg\"}', 'upc' => '888072346055', 'provider' => 'bestbuy'],\n ['name' => \"Los Psychos del Corrido (Los Psicópatas) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/los-psychos-del-corrido-los-psicopatas-cd/1612843.p?id=2732668&skuId=1612843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612843_sa.jpg\"}', 'upc' => '827865521026', 'provider' => 'bestbuy'],\n ['name' => \"A Mi México, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-mi-mexico-vol-2-cd-various/1612852.p?id=2733025&skuId=1612852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612852_sa.jpg\"}', 'upc' => '600753447390', 'provider' => 'bestbuy'],\n ['name' => \"Black Bear [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-bear-digipak-cd/1612861.p?id=2731807&skuId=1612861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612861_sa.jpg\"}', 'upc' => '786626307029', 'provider' => 'bestbuy'],\n ['name' => \"I'll Fly Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-fly-away-cd/1612889.p?id=2732048&skuId=1612889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612889.jpg\"}', 'upc' => '030206196726', 'provider' => 'bestbuy'],\n ['name' => \"Songs & Story: Sofia the First - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-story-sofia-the-first-cd/1612907.p?id=2726028&skuId=1612907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612907_sa.jpg\"}', 'upc' => '050087285869', 'provider' => 'bestbuy'],\n ['name' => \"NETGEAR - AC1200 802.11ac Dual-Band Wireless Router - Black\", 'description_short' => \"Up to 300 + 867 Mbps data transfer rates; secure Wi-Fi connections (WPA/WPA2); double firewall protection (SPI/NAT); DoS (Denial-of-service) attack prevention; Push &#039;N&#039; Connect setup\", 'description_long' => \"Up to 300 + 867 Mbps data transfer rates; secure Wi-Fi connections (WPA/WPA2); double firewall protection (SPI/NAT); DoS (Denial-of-service) attack prevention; Push &#039;N&#039; Connect setup\", 'price' => 94.99, 'sale_price' => 75.99, 'url' => 'http://www.bestbuy.com/site/netgear-ac1200-802-11ac-dual-band-wireless-router-black/1612916.p?id=1219057056953&skuId=1612916&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612916', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612916_sa.jpg\"}', 'upc' => '606449098082', 'provider' => 'bestbuy'],\n ['name' => \"The Smurfs 2 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Travel to Paris to save the day and bring Smurfette home safe\", 'description_long' => \"Travel to Paris to save the day and bring Smurfette home safe\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-smurfs-2-pre-owned-nintendo-wii/1612998.p?id=1219057242426&skuId=1612998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1612998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1612\\/1612998_sa.jpg\"}', 'upc' => '799007835073', 'provider' => 'bestbuy'],\n ['name' => \"The Smurfs 2 - PRE-OWNED - Nintendo Wii U\", 'description_short' => \"Travel to Paris to save the day and bring Smurfette home safe\", 'description_long' => \"Travel to Paris to save the day and bring Smurfette home safe\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-smurfs-2-pre-owned-nintendo-wii-u/1613014.p?id=1219057247836&skuId=1613014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613014_sa.jpg\"}', 'upc' => '799007835080', 'provider' => 'bestbuy'],\n ['name' => \"Tracy Anderson: The Perfect Design Series - Level II Intermediate (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tracy-anderson-the-perfect-design-series-level-ii-intermediate-dvd/1613041.p?id=2715675&skuId=1613041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613041_sa.jpg\"}', 'upc' => '013132598826', 'provider' => 'bestbuy'],\n ['name' => \"Leslie Sansone: Just Walk - Belly Blasting Walk (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leslie-sansone-just-walk-belly-blasting-walk-dvd/1613069.p?id=2640445&skuId=1613069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613069_sa.jpg\"}', 'upc' => '013132597461', 'provider' => 'bestbuy'],\n ['name' => \"Billy Blanks' Tae Bo Max Intensity (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/billy-blanks-tae-bo-max-intensity-dvd/1613078.p?id=2716470&skuId=1613078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613078_sa.jpg\"}', 'upc' => '013132511290', 'provider' => 'bestbuy'],\n ['name' => \"Pikmin 3 - PRE-OWNED - Nintendo Wii U\", 'description_short' => \"Command your tiny troops through challenging puzzles and gain treasure\", 'description_long' => \"Command your tiny troops through challenging puzzles and gain treasure\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pikmin-3-pre-owned-nintendo-wii-u/1613096.p?id=1219057239460&skuId=1613096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613096_sa.jpg\"}', 'upc' => '799007835103', 'provider' => 'bestbuy'],\n ['name' => \"Bionaire - Egg Air Purifier - Silver\", 'description_short' => \"Up to 112 sq. ft. coverage; 0.6 amps; removes up to 99% of airborne allergens, such as dust, pollen and pet dander; 3 speed settings; HEPA-type filtration; ionizer\", 'description_long' => \"Up to 112 sq. ft. coverage; 0.6 amps; removes up to 99% of airborne allergens, such as dust, pollen and pet dander; 3 speed settings; HEPA-type filtration; ionizer\", 'price' => 89.99, 'sale_price' => 69.99, 'url' => 'http://www.bestbuy.com/site/bionaire-egg-air-purifier-silver/1613102.p?id=1219057054256&skuId=1613102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613102_sa.jpg\"}', 'upc' => '048894042997', 'provider' => 'bestbuy'],\n ['name' => \"Bionaire - Ceramic Mini Tower Heater - Black\", 'description_short' => \"Heats medium-size rooms; 12.5 amps; LCD controls; 2 heat settings; tip-over and overheat protection\", 'description_long' => \"Heats medium-size rooms; 12.5 amps; LCD controls; 2 heat settings; tip-over and overheat protection\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bionaire-ceramic-mini-tower-heater-black/1613148.p?id=1219057054249&skuId=1613148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310257818\\/1310257818_sa.jpg\"}', 'upc' => '048894051722', 'provider' => 'bestbuy'],\n ['name' => \"Oster - Baldwyn 14-Piece Knife Set - Stainless-Steel\", 'description_short' => \"Stainless-steel material; brushed-satin finish; includes santoku, carving, utility, paring, steak and bread knives, scissors, a sharpening steel and a hardwood storage block\", 'description_long' => \"Stainless-steel material; brushed-satin finish; includes santoku, carving, utility, paring, steak and bread knives, scissors, a sharpening steel and a hardwood storage block\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oster-baldwyn-14-piece-knife-set-stainless-steel/1613184.p?id=1219057248997&skuId=1613184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613184_rc.jpg\"}', 'upc' => '085081937414', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 1.7L Cordless Electric Kettle - White\", 'description_short' => \"Up to 1.7L capacity; water window with measurements; removable particle filter; lever-action lid; boil-sensor auto shutoff; tubular heaters; plastic handle\", 'description_long' => \"Up to 1.7L capacity; water window with measurements; removable particle filter; lever-action lid; boil-sensor auto shutoff; tubular heaters; plastic handle\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-1-7l-cordless-electric-kettle-white/1613193.p?id=1219057239455&skuId=1613193', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613193_500x500_sa.jpg\"}', 'upc' => '632555991429', 'provider' => 'bestbuy'],\n ['name' => \"Oster - Baldwyn 22-Piece Knife Set - Stainless-Steel\", 'description_short' => \"Precision-stamped design; stainless-steel blades; stainless-steel/polyoxymethyleme handles; includes santoku, chef, carving, paring, utility, boning and steak knives, scissors, sharpening steel and rubberwood block\", 'description_long' => \"Precision-stamped design; stainless-steel blades; stainless-steel/polyoxymethyleme handles; includes santoku, chef, carving, paring, utility, boning and steak knives, scissors, sharpening steel and rubberwood block\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oster-baldwyn-22-piece-knife-set-stainless-steel/1613236.p?id=1219057249201&skuId=1613236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613236_rc.jpg\"}', 'upc' => '085081937421', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 2-Slice Toaster - Black\", 'description_short' => \"Adjustable browning controls; cancel button; slide-open crumb tray; aluminum material; auto shutoff\", 'description_long' => \"Adjustable browning controls; cancel button; slide-open crumb tray; aluminum material; auto shutoff\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-2-slice-toaster-black/1613263.p?id=1219057239454&skuId=1613263', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613263_rc.jpg\"}', 'upc' => '636555992097', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - IM-800 2-Speed Hand Mixer - White\", 'description_short' => \"2 speed settings; 200W motor; ergonomic handle; sealed power switch; stainless-steel blade; scratch-resistant body\", 'description_long' => \"2 speed settings; 200W motor; ergonomic handle; sealed power switch; stainless-steel blade; scratch-resistant body\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-im-800-2-speed-hand-mixer-white/1613333.p?id=1219058090782&skuId=1613333', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613333_rc.jpg\"}', 'upc' => '636555998006', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 5-Speed Hand Mixer - Black\", 'description_short' => \"5 speed settings; includes stainless-steel beaters and dough hooks\", 'description_long' => \"5 speed settings; includes stainless-steel beaters and dough hooks\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-5-speed-hand-mixer-black/1613351.p?id=1219058090189&skuId=1613351', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613351_rc.jpg\"}', 'upc' => '636555998129', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 3-3/4-Quart Slow Cooker - Stainless-Steel\", 'description_short' => \"High, low and auto settings; thermostat-controlled heating; 3-3/4-quart capacity; dishwasher-safe lid and stoneware crock; stainless-steel material\", 'description_long' => \"High, low and auto settings; thermostat-controlled heating; 3-3/4-quart capacity; dishwasher-safe lid and stoneware crock; stainless-steel material\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-3-3-4-quart-slow-cooker-stainless-steel/1613388.p?id=1219057242762&skuId=1613388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613388_rc.jpg\"}', 'upc' => '636555994541', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 10\\\" Fryer - Gray\", 'description_short' => \"Dishwasher-safe design; ultraheavy-gauge aluminum construction; nonstick surfaces; cool-touch plastic handles; water-resistant tempered-glass cover\", 'description_long' => \"Dishwasher-safe design; ultraheavy-gauge aluminum construction; nonstick surfaces; cool-touch plastic handles; water-resistant tempered-glass cover\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-10-fryer-gray/1613397.p?id=1219057250678&skuId=1613397', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613397_rc.jpg\"}', 'upc' => '636555810018', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 5-Speed Hand Mixer - White\", 'description_short' => \"Push button ejection and thumb-switch controls; 5 speeds; turbo boost; ergonomic handle; stainless-steel beaters and dough hooks\", 'description_long' => \"Push button ejection and thumb-switch controls; 5 speeds; turbo boost; ergonomic handle; stainless-steel beaters and dough hooks\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-5-speed-hand-mixer-white/1613402.p?id=1219058091351&skuId=1613402', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613402_rc.jpg\"}', 'upc' => '636555998105', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 12-Cup Coffeemaker - White\", 'description_short' => \"Grab-a-cup feature; water-level indicator; glass carafe; removable filter basket; cord storage\", 'description_long' => \"Grab-a-cup feature; water-level indicator; glass carafe; removable filter basket; cord storage\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-12-cup-coffeemaker-white/1613439.p?id=1219057243473&skuId=1613439', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613439_rc.jpg\"}', 'upc' => '636555991113', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 10-Speed Blender - White\", 'description_short' => \"8 continuous and 2 pulse speeds; 450W of power; 48-oz. capacity; removable filler cap; dishwasher-safe jar; auto shutoff; ABS polymer housing; stable base design\", 'description_long' => \"8 continuous and 2 pulse speeds; 450W of power; 48-oz. capacity; removable filler cap; dishwasher-safe jar; auto shutoff; ABS polymer housing; stable base design\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-10-speed-blender-white/1613448.p?id=1219057246135&skuId=1613448', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613448_rc.jpg\"}', 'upc' => '636555996040', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 4-Slice Toaster - Black\", 'description_short' => \"Adjustable browning controls; cancel button; slide-open crumb tray; cool-touch ABS front and rear panels; auto shutoff\", 'description_long' => \"Adjustable browning controls; cancel button; slide-open crumb tray; cool-touch ABS front and rear panels; auto shutoff\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-4-slice-toaster-black/1613475.p?id=1219057251315&skuId=1613475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613475_rc.jpg\"}', 'upc' => '636555992424', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 1.8L Cordless Electric Kettle - Red\", 'description_short' => \"Up to 1.8L capacity; auto shutoff; tubular heaters; removable pot; cool-touch plastic handle; see-through glass\", 'description_long' => \"Up to 1.8L capacity; auto shutoff; tubular heaters; removable pot; cool-touch plastic handle; see-through glass\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-1-8l-cordless-electric-kettle-red/1613484.p?id=1219057246394&skuId=1613484', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613484_rc.jpg\"}', 'upc' => '636555991526', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 12\\\" Fryer - Gray\", 'description_short' => \"Dishwasher-safe design; ultraheavy-gauge aluminum construction; nonstick surfaces; cool-touch plastic handles; water-resistant tempered-glass cover\", 'description_long' => \"Dishwasher-safe design; ultraheavy-gauge aluminum construction; nonstick surfaces; cool-touch plastic handles; water-resistant tempered-glass cover\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-12-fryer-gray/1613493.p?id=1219057250524&skuId=1613493', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613493_rc.jpg\"}', 'upc' => '636555812012', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 2-Slice Toaster - White\", 'description_short' => \"Adjustable browning setting; auto shutoff; crumb tray; aluminum material\", 'description_long' => \"Adjustable browning setting; auto shutoff; crumb tray; aluminum material\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-2-slice-toaster-white/1613527.p?id=1219057247002&skuId=1613527', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613527_rc.jpg\"}', 'upc' => '636555992103', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 4-Slice Toaster - White\", 'description_short' => \"Adjustable browning controls; cancel button; slide-open crumb tray; cool-touch ABS front and rear panels; auto shutoff\", 'description_long' => \"Adjustable browning controls; cancel button; slide-open crumb tray; cool-touch ABS front and rear panels; auto shutoff\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-4-slice-toaster-white/1613545.p?id=1219057249461&skuId=1613545', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613545_rc.jpg\"}', 'upc' => '636555992417', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - Personal Coffeemaker - Black\", 'description_short' => \"Compatible with ground coffee and select pods; brews 1 cup at a time, up to 12 oz.; permanent filter; auto shutoff; power-on indicator light; compact design\", 'description_long' => \"Compatible with ground coffee and select pods; brews 1 cup at a time, up to 12 oz.; permanent filter; auto shutoff; power-on indicator light; compact design\", 'price' => 19.99, 'sale_price' => 13.99, 'url' => 'http://www.bestbuy.com/site/better-chef-personal-coffeemaker-black/1613554.p?id=1219057249591&skuId=1613554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613554_rc.jpg\"}', 'upc' => '636555991021', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - Compact Chopper - White\", 'description_short' => \"Pulse-on switch; detachable bowl, lid and stainless-steel blade; safety-lock lid\", 'description_long' => \"Pulse-on switch; detachable bowl, lid and stainless-steel blade; safety-lock lid\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-compact-chopper-white/1613563.p?id=1219058091920&skuId=1613563', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613563_rc.jpg\"}', 'upc' => '636555998457', 'provider' => 'bestbuy'],\n ['name' => \"Rachael Ray - 5-Quart Sauté Pan - Orange\", 'description_short' => \"5-quart capacity; oval shape; nonstick cooking surface; dishwasher-safe design; hard-anodized construction; ergonomic silicone handle; includes see-through glass lid\", 'description_long' => \"5-quart capacity; oval shape; nonstick cooking surface; dishwasher-safe design; hard-anodized construction; ergonomic silicone handle; includes see-through glass lid\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rachael-ray-5-quart-saute-pan-orange/1613581.p?id=1219057245400&skuId=1613581', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613581_rc.jpg\"}', 'upc' => '051153806513', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 1.8L Cordless Electric Kettle - Stainless-Steel\", 'description_short' => \"Up to 1.8L capacity; auto shutoff; tubular heaters; removable pot; cool-touch plastic handle; see-through glass\", 'description_long' => \"Up to 1.8L capacity; auto shutoff; tubular heaters; removable pot; cool-touch plastic handle; see-through glass\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-1-8l-cordless-electric-kettle-stainless-steel/1613606.p?id=1219057249331&skuId=1613606', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613606', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613606_rc.jpg\"}', 'upc' => '636555991502', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 2-Slice Toaster - White\", 'description_short' => \"Adjustable browning setting; auto shutoff; cool-touch design; crumb tray; aluminum material\", 'description_long' => \"Adjustable browning setting; auto shutoff; cool-touch design; crumb tray; aluminum material\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-2-slice-toaster-white/1613651.p?id=1219057244444&skuId=1613651', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613651', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613651_rc.jpg\"}', 'upc' => '636555992158', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - Citrus Juicer - White\", 'description_short' => \"Self-reversing action; 1L juice capacity; adjustable pulp filter; easy-pour spout; auto shutoff; cord storage; removable parts\", 'description_long' => \"Self-reversing action; 1L juice capacity; adjustable pulp filter; easy-pour spout; auto shutoff; cord storage; removable parts\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-citrus-juicer-white/1613679.p?id=1219057242563&skuId=1613679', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613679_rc.jpg\"}', 'upc' => '636555995029', 'provider' => 'bestbuy'],\n ['name' => \"Rachael Ray - 5-Quart Oval Sauté Pan - Silver/Orange\", 'description_short' => \"Quick, even heating; nonstick interior; silicone handles; porcelain-enamel construction; glass lid\", 'description_long' => \"Quick, even heating; nonstick interior; silicone handles; porcelain-enamel construction; glass lid\", 'price' => 74.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rachael-ray-5-quart-oval-saute-pan-silver-orange/1613706.p?id=1219057243607&skuId=1613706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613706_rc.jpg\"}', 'upc' => '051153196461', 'provider' => 'bestbuy'],\n ['name' => \"Better Chef - 3-Cup Chopper - Black\", 'description_short' => \"2 speeds; 3-cup capacity; stainless-steel blade; detachable blade, lid and container; safety lock; stable base\", 'description_long' => \"2 speeds; 3-cup capacity; stainless-steel blade; detachable blade, lid and container; safety lock; stable base\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-chef-3-cup-chopper-black/1613751.p?id=1219057249396&skuId=1613751', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613751_rc.jpg\"}', 'upc' => '636555998549', 'provider' => 'bestbuy'],\n ['name' => \"From Up on Poppy Hill (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-up-on-poppy-hill-dvd-2-disc/1613879.p?id=2712300&skuId=1613879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613879_sa.jpg\"}', 'upc' => '767685294178', 'provider' => 'bestbuy'],\n ['name' => \"From Up on Poppy Hill (Blu-ray Disc) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-up-on-poppy-hill-blu-ray-disc-3-disc/1613888.p?id=2712300&skuId=1613888&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613888', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613888_sa.jpg\"}', 'upc' => '767685294185', 'provider' => 'bestbuy'],\n ['name' => \"Sinbad: Season One (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sinbad-season-one-3-disc-dvd/1613897.p?id=2708201&skuId=1613897&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613897', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1613897.jpg\"}', 'upc' => '883929281886', 'provider' => 'bestbuy'],\n ['name' => \"Sinbad: Season One (3 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 28.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sinbad-season-one-3-disc-blu-ray-disc/1613906.p?id=2708181&skuId=1613906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1613906.jpg\"}', 'upc' => '883929287130', 'provider' => 'bestbuy'],\n ['name' => \"Vives En Mi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vives-en-mi-cd/1613924.p?id=3248422&skuId=1613924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613924.jpg\"}', 'upc' => '859230003219', 'provider' => 'bestbuy'],\n ['name' => \"Bleach Uncut Set 18 (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bleach-uncut-set-18-2-disc-dvd/1613933.p?id=2724666&skuId=1613933&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613933', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613933.jpg\"}', 'upc' => '782009242864', 'provider' => 'bestbuy'],\n ['name' => \"The Temptations: Live in London (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-temptations-live-in-london-dvd/1613942.p?id=1645585&skuId=1613942&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1613942', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1613\\/1613942_sa.jpg\"}', 'upc' => '030309991099', 'provider' => 'bestbuy'],\n ['name' => \"Shameless: Complete Fourth Season [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shameless-complete-fourth-season-4-discs-dvd/1614011.p?id=3301182&skuId=1614011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614011.jpg\"}', 'upc' => '883929373802', 'provider' => 'bestbuy'],\n ['name' => \"Amana - 25.4 Cu. Ft. Side-by-Side Refrigerator with Thru-the-Door Ice and Water - Stainless Steel\", 'description_short' => \"Temp Assure freshness controls; Spillsaver glass shelves; deli drawer; dairy center; adjustable door bins; gallon-size door storage\", 'description_long' => \"Temp Assure freshness controls; Spillsaver glass shelves; deli drawer; dairy center; adjustable door bins; gallon-size door storage\", 'price' => 1099.99, 'sale_price' => 899.99, 'url' => 'http://www.bestbuy.com/site/amana-25-4-cu-ft-side-by-side-refrigerator-with-thru-the-door-ice-and-water-stainless-steel/1614013.p?id=1219057245144&skuId=1614013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614013_sa.jpg\"}', 'upc' => '883049279893', 'provider' => 'bestbuy'],\n ['name' => \"Banshee: Complete Second Season [4 Discs] (Blu-ray Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/banshee-complete-second-season-4-discs-blu-ray-disc-boxed-set/1614039.p?id=3308217&skuId=1614039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614039.jpg\"}', 'upc' => '883929409761', 'provider' => 'bestbuy'],\n ['name' => \"SanDisk - Extreme Pro 16GB CompactFlash Memory Card - Black\", 'description_short' => \"Compatible with most devices with a CF slot; 16GB capacity; RTV silicone interior coating; writeable label\", 'description_long' => \"Compatible with most devices with a CF slot; 16GB capacity; RTV silicone interior coating; writeable label\", 'price' => 199.99, 'sale_price' => 39.99, 'url' => 'http://www.bestbuy.com/site/sandisk-extreme-pro-16gb-compactflash-memory-card-black/1614217.p?id=1219057247003&skuId=1614217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310203150\\/1310203150_sa.jpg\"}', 'upc' => '619659102265', 'provider' => 'bestbuy'],\n ['name' => \"SanDisk - Extreme Pro 32GB CompactFlash Memory Card - Black\", 'description_short' => \"Compatible with most devices with a CF slot; 32GB capacity; RTV silicone interior coating; writeable label\", 'description_long' => \"Compatible with most devices with a CF slot; 32GB capacity; RTV silicone interior coating; writeable label\", 'price' => 349.99, 'sale_price' => 51.99, 'url' => 'http://www.bestbuy.com/site/sandisk-extreme-pro-32gb-compactflash-memory-card-black/1614226.p?id=1219057239466&skuId=1614226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310203167\\/1310203167_sa.jpg\"}', 'upc' => '619659102319', 'provider' => 'bestbuy'],\n ['name' => \"SanDisk - Extreme Pro 64GB CompactFlash Memory Card - Black\", 'description_short' => \"Compatible with most devices with a CF slot; 64GB capacity; RTV silicone interior coating; writeable label\", 'description_long' => \"Compatible with most devices with a CF slot; 64GB capacity; RTV silicone interior coating; writeable label\", 'price' => 649.99, 'sale_price' => 85.99, 'url' => 'http://www.bestbuy.com/site/sandisk-extreme-pro-64gb-compactflash-memory-card-black/1614323.p?id=1219057246591&skuId=1614323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614323_sa.jpg\"}', 'upc' => '619659103231', 'provider' => 'bestbuy'],\n ['name' => \"Xappr - Metal Compass X1 Gun Gaming Accessory - Black/Orange\", 'description_short' => \"Designed for use with select Apple&#174; iPhone&#174;, and iPod&#174; models, as well as select Android devices; supports a variety of virtual- and augmented-reality shooting games; plug-and-play connectivity\", 'description_long' => \"Designed for use with select Apple&#174; iPhone&#174;, and iPod&#174; models, as well as select Android devices; supports a variety of virtual- and augmented-reality shooting games; plug-and-play connectivity\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/xappr-metal-compass-x1-gun-gaming-accessory-black-orange/1614332.p?id=1219057243282&skuId=1614332', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614332_500x500_sa.jpg\"}', 'upc' => '7290014507005', 'provider' => 'bestbuy'],\n ['name' => \"CM4 - Q Card Wallet Case for Samsung Galaxy S 4 Cell Phones - Red Rouge\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; Direct Channel Audio design; lay-flat Screen Guard; Natural Throw buttons; soft-touch rubber and fabric materials; fits up to 3 cards and cash\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; Direct Channel Audio design; lay-flat Screen Guard; Natural Throw buttons; soft-touch rubber and fabric materials; fits up to 3 cards and cash\", 'price' => 39.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/cm4-q-card-wallet-case-for-samsung-galaxy-s-4-cell-phones-red-rouge/1614438.p?id=1219057242888&skuId=1614438', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614438_sa.jpg\"}', 'upc' => '853999002353', 'provider' => 'bestbuy'],\n ['name' => \"CM4 - Q Card Wallet Case for Samsung Galaxy S 4 Cell Phones - Black Onyx\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; Direct Channel Audio design; lay-flat Screen Guard; Natural Throw buttons; soft-touch rubber and fabric materials; fits up to 3 cards and cash\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; Direct Channel Audio design; lay-flat Screen Guard; Natural Throw buttons; soft-touch rubber and fabric materials; fits up to 3 cards and cash\", 'price' => 39.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/cm4-q-card-wallet-case-for-samsung-galaxy-s-4-cell-phones-black-onyx/1614456.p?id=1219057247011&skuId=1614456', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614456', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614456_sa.jpg\"}', 'upc' => '853999002322', 'provider' => 'bestbuy'],\n ['name' => \"Omega - 5-Speed Blender - Red\", 'description_short' => \"5 speeds; frozen drink function; 1 HP motor; 48-oz. shatter-resistant glass container; removable ingredient cap; steady-grip feet\", 'description_long' => \"5 speeds; frozen drink function; 1 HP motor; 48-oz. shatter-resistant glass container; removable ingredient cap; steady-grip feet\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-5-speed-blender-red/1614517.p?id=1219057241794&skuId=1614517', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614517_rc.jpg\"}', 'upc' => '737416010032', 'provider' => 'bestbuy'],\n ['name' => \"Omega - Pulp Ejector Juicer - White\", 'description_short' => \"1/3 HP motor; 5200 rpm; 1-lb. stainless-steel blade and basket; large feed chute; automatic pulp ejection; pulp-catching bin\", 'description_long' => \"1/3 HP motor; 5200 rpm; 1-lb. stainless-steel blade and basket; large feed chute; automatic pulp ejection; pulp-catching bin\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-pulp-ejector-juicer-white/1614526.p?id=1219057248049&skuId=1614526&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614526', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614526_rc.jpg\"}', 'upc' => '737416040008', 'provider' => 'bestbuy'],\n ['name' => \"Omega - 48-Oz. Blender - Red\", 'description_short' => \"On/off and high/low controls; 1 HP motor; 48-oz. BPA-free Eastman Tritan container; recessed coupling system; self-lubricating ball bearings; compact base; 4 gripper feet\", 'description_long' => \"On/off and high/low controls; 1 HP motor; 48-oz. BPA-free Eastman Tritan container; recessed coupling system; self-lubricating ball bearings; compact base; 4 gripper feet\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-48-oz-blender-red/1614544.p?id=1219057242693&skuId=1614544', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614544_sc.jpg\"}', 'upc' => '737416033338', 'provider' => 'bestbuy'],\n ['name' => \"Omega - Masticating Juicer - Chrome\", 'description_short' => \"80 rpm, low-speed juicer; GE Ultem auger; dual-stage masticating extraction; automatically ejects pulp; built-in handle; quiet operation; includes 6 nozzles and 2 juicing screens\", 'description_long' => \"80 rpm, low-speed juicer; GE Ultem auger; dual-stage masticating extraction; automatically ejects pulp; built-in handle; quiet operation; includes 6 nozzles and 2 juicing screens\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-masticating-juicer-chrome/1614553.p?id=1219057246070&skuId=1614553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614553_rc.jpg\"}', 'upc' => '737416080066', 'provider' => 'bestbuy'],\n ['name' => \"Omega - 64-Oz. Blender - Silver Mist\", 'description_short' => \"Intuitive controls; multiple blending cycles; variable and infinity control; pulse function; 3 peak HP motor; overload protection; automatic shutoff; BPA-free Eastman Tritan copolyester container; stainless-steel blade assembly\", 'description_long' => \"Intuitive controls; multiple blending cycles; variable and infinity control; pulse function; 3 peak HP motor; overload protection; automatic shutoff; BPA-free Eastman Tritan copolyester container; stainless-steel blade assembly\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-64-oz-blender-silver-mist/1614562.p?id=1219057244252&skuId=1614562', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614562_sc.jpg\"}', 'upc' => '737416063007', 'provider' => 'bestbuy'],\n ['name' => \"Omega - Citrus Juicer - White\", 'description_short' => \"150 rpm; stainless-steel bowl and pulp strainer; splash guard; nonslip feet; 3 juice cones\", 'description_long' => \"150 rpm; stainless-steel bowl and pulp strainer; splash guard; nonslip feet; 3 juice cones\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-citrus-juicer-white/1614599.p?id=1219057242362&skuId=1614599', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614599_sa.jpg\"}', 'upc' => '737416051004', 'provider' => 'bestbuy'],\n ['name' => \"Omega - Centrifugal Juicer - White\", 'description_short' => \"1/3 HP induction motor; 3600 rpm speed; large feed chute; stainless-steel blade, basket and cover\", 'description_long' => \"1/3 HP induction motor; 3600 rpm speed; large feed chute; stainless-steel blade, basket and cover\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-centrifugal-juicer-white/1614623.p?id=1219057241442&skuId=1614623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614623_rc.jpg\"}', 'upc' => '737416090003', 'provider' => 'bestbuy'],\n ['name' => \"Omega - 5-Speed Blender - Silver\", 'description_short' => \"5 speeds; frozen drink function; 1 HP motor; 48-oz. shatter-resistant glass container; removable ingredient cap; steady-grip feet\", 'description_long' => \"5 speeds; frozen drink function; 1 HP motor; 48-oz. shatter-resistant glass container; removable ingredient cap; steady-grip feet\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-5-speed-blender-silver/1614669.p?id=1219057245270&skuId=1614669', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614669_rc.jpg\"}', 'upc' => '737416010049', 'provider' => 'bestbuy'],\n ['name' => \"Omega - Vertical Juicer - Silver\", 'description_short' => \"Low-speed, squeezing juicing system; 80 rpm rotation speed; continuous juicing with automatic pulp ejection; includes juicing screen\", 'description_long' => \"Low-speed, squeezing juicing system; 80 rpm rotation speed; continuous juicing with automatic pulp ejection; includes juicing screen\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-vertical-juicer-silver/1614678.p?id=1219057239456&skuId=1614678&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614678', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614678_rc.jpg\"}', 'upc' => '737416035004', 'provider' => 'bestbuy'],\n ['name' => \"Omega - Vertical Juicer - White\", 'description_short' => \"Low-speed, squeezing juicing system; 80 rpm rotation speed; continuous juicing with automatic pulp ejection; includes juicing screen\", 'description_long' => \"Low-speed, squeezing juicing system; 80 rpm rotation speed; continuous juicing with automatic pulp ejection; includes juicing screen\", 'price' => 379.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-vertical-juicer-white/1614696.p?id=1219057245817&skuId=1614696', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614696_rc.jpg\"}', 'upc' => '737416035103', 'provider' => 'bestbuy'],\n ['name' => \"Omega - Masticating Juicer - White\", 'description_short' => \"80 rpm, low-speed juicer; GE Ultem auger; dual-stage masticating extraction; automatically ejects pulp; built-in handle; quiet operation; includes 6 nozzles and 2 juicing screens\", 'description_long' => \"80 rpm, low-speed juicer; GE Ultem auger; dual-stage masticating extraction; automatically ejects pulp; built-in handle; quiet operation; includes 6 nozzles and 2 juicing screens\", 'price' => 259.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omega-masticating-juicer-white/1614705.p?id=1219057245542&skuId=1614705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1614705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1614\\/1614705_rc.jpg\"}', 'upc' => '737416080042', 'provider' => 'bestbuy'],\n ['name' => \"Press On [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/press-on-lp-vinyl/1615049.p?id=2171480&skuId=1615049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1615049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1615\\/1615049_sa.jpg\"}', 'upc' => '803020113015', 'provider' => 'bestbuy'],\n ['name' => \"Allura - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/allura-cd/1615058.p?id=2171218&skuId=1615058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1615058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1615\\/1615058_sa.jpg\"}', 'upc' => '091012210129', 'provider' => 'bestbuy'],\n ['name' => \"Faster [Original Score] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/faster-original-score-cd-original-soundtrack/1615085.p?id=2163353&skuId=1615085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1615085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1615\\/1615085_sa.jpg\"}', 'upc' => '780163420227', 'provider' => 'bestbuy'],\n ['name' => \"Mejor Show Romantico De America (CD+DVD) - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mejor-show-romantico-de-america-cd-dvd-cd-dvd/1615128.p?id=2177810&skuId=1615128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1615128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1615\\/1615128.jpg\"}', 'upc' => '097037739225', 'provider' => 'bestbuy'],\n ['name' => \"Back to Basics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-basics-cd/1615146.p?id=2168933&skuId=1615146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1615146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1615\\/1615146_sa.jpg\"}', 'upc' => '884502005592', 'provider' => 'bestbuy'],\n ['name' => \"Matter of Dayz [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matter-of-dayz-pa-cd/1615164.p?id=2168935&skuId=1615164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1615164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1615\\/1615164_sa.jpg\"}', 'upc' => '760371639680', 'provider' => 'bestbuy'],\n ['name' => \"Not Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/not-music-cd/1615331.p?id=2165148&skuId=1615331&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1615331', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1615\\/1615331_sa.jpg\"}', 'upc' => '781484043027', 'provider' => 'bestbuy'],\n ['name' => \"My Fanbase Will Destroy You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-fanbase-will-destroy-you-cd/1615359.p?id=2160705&skuId=1615359&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1615359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1615\\/1615359_sa.jpg\"}', 'upc' => '655035143026', 'provider' => 'bestbuy'],\n ['name' => \"Shamless: Complete Fourth Season [5 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shamless-complete-fourth-season-5-discs-blu-ray-disc/1616019.p?id=3301500&skuId=1616019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1616019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1616\\/1616019.jpg\"}', 'upc' => '883929373819', 'provider' => 'bestbuy'],\n ['name' => \"Asus - 24\\\" Widescreen Flat-Panel LED-LCD HD Monitor - Black\", 'description_short' => \"2 ms response time; 1000:1 contrast ratio; 250 cd/m&#178; brightness; 1920 x 1080 resolution; 170&#176; horizontal and 160&#176; vertical viewing angles\", 'description_long' => \"2 ms response time; 1000:1 contrast ratio; 250 cd/m&#178; brightness; 1920 x 1080 resolution; 170&#176; horizontal and 160&#176; vertical viewing angles\", 'price' => 204.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/asus-24-widescreen-flat-panel-led-lcd-hd-monitor-black/1616181.p?id=1218273045015&skuId=1616181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1616181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1616\\/1616181_rc.jpg\"}', 'upc' => '610839331871', 'provider' => 'bestbuy'],\n ['name' => \"Famous [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/famous-digipak-cd/1617001.p?id=2733638&skuId=1617001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617001_sa.jpg\"}', 'upc' => '016351581426', 'provider' => 'bestbuy'],\n ['name' => \"Gone Away Backward [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gone-away-backward-digipak-cd/1617029.p?id=2733618&skuId=1617029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617029_sa.jpg\"}', 'upc' => '744302021126', 'provider' => 'bestbuy'],\n ['name' => \"Bulletstorm - Xbox 360\", 'description_short' => \"Kill with skill as you fight for revenge\", 'description_long' => \"Kill with skill as you fight for revenge\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bulletstorm-xbox-360/1617038.p?id=1218273043916&skuId=1617038', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617038_sa.jpg\"}', 'upc' => '014633194586', 'provider' => 'bestbuy'],\n ['name' => \"Awready, Vol. 1 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/awready-vol-1-pa-cd/1617056.p?id=2733534&skuId=1617056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617056_sa.jpg\"}', 'upc' => '786984061328', 'provider' => 'bestbuy'],\n ['name' => \"Bulletstorm - PlayStation 3\", 'description_short' => \"Kill with skill as you fight for revenge\", 'description_long' => \"Kill with skill as you fight for revenge\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bulletstorm-playstation-3/1617214.p?id=1218273487191&skuId=1617214', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617214_sa.jpg\"}', 'upc' => '014633194579', 'provider' => 'bestbuy'],\n ['name' => \"Deep in the Heart of Texas, Vol. 4 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deep-in-the-heart-of-texas-vol-4-pa-cd/1617296.p?id=2733604&skuId=1617296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617296_sa.jpg\"}', 'upc' => '786984061229', 'provider' => 'bestbuy'],\n ['name' => \"Free Worshipper: A Praise and... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/free-worshipper-a-praise-and-digipak-cd/1617302.p?id=2733500&skuId=1617302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617302_sa.jpg\"}', 'upc' => '016351581327', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute to Faith Evans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-faith-evans-cd/1617311.p?id=2733547&skuId=1617311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617311_sa.jpg\"}', 'upc' => '707541988698', 'provider' => 'bestbuy'],\n ['name' => \"In the Moment [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-moment-digipak-cd/1617339.p?id=2733574&skuId=1617339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617339_sa.jpg\"}', 'upc' => '016351541024', 'provider' => 'bestbuy'],\n ['name' => \"IV - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iv-cd/1617348.p?id=2733620&skuId=1617348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617348_sa.jpg\"}', 'upc' => '802644822624', 'provider' => 'bestbuy'],\n ['name' => \"Turn Turn Turn [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turn-turn-turn-digipak-cd/1617357.p?id=2730434&skuId=1617357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617357_sa.jpg\"}', 'upc' => '800495001922', 'provider' => 'bestbuy'],\n ['name' => \"Greater Than Before - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greater-than-before-cd/1617366.p?id=2733658&skuId=1617366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617366_sa.jpg\"}', 'upc' => '099923930020', 'provider' => 'bestbuy'],\n ['name' => \"Door Without a Screen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/door-without-a-screen-cd/1617375.p?id=2736214&skuId=1617375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617375_sa.jpg\"}', 'upc' => '099923932321', 'provider' => 'bestbuy'],\n ['name' => \"Solo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solo-cd/1617408.p?id=2734756&skuId=1617408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617408_sa.jpg\"}', 'upc' => '825646438976', 'provider' => 'bestbuy'],\n ['name' => \"Guantanamera: The Essential Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guantanamera-the-essential-album-cd/1617444.p?id=2726390&skuId=1617444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617444_sa.jpg\"}', 'upc' => '825646428953', 'provider' => 'bestbuy'],\n ['name' => \"Love Songs [Sony BMG] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-songs-sony-bmg-cd/1617499.p?id=1845912&skuId=1617499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617499_sa.jpg\"}', 'upc' => '886972237725', 'provider' => 'bestbuy'],\n ['name' => \"Lados B - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lados-b-cd/1617587.p?id=2734639&skuId=1617587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617587_sa.jpg\"}', 'upc' => '825646427086', 'provider' => 'bestbuy'],\n ['name' => \"Santo Pecado - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/santo-pecado-cd/1617639.p?id=2734760&skuId=1617639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617639_sa.jpg\"}', 'upc' => '825646427512', 'provider' => 'bestbuy'],\n ['name' => \"Halloween (Blu-ray Disc) (Anniversary Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/halloween-blu-ray-disc-anniversary-edition/1617648.p?id=244818&skuId=1617648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617648_sa.jpg\"}', 'upc' => '013132606330', 'provider' => 'bestbuy'],\n ['name' => \"Miss Congeniality/Miss Congeniality 2: Armed & Fabulous [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miss-congeniality-miss-congeniality-2-armed-fabulous-2-discs-dvd/1617784.p?id=2000290&skuId=1617784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617784_sa.jpg\"}', 'upc' => '883929082186', 'provider' => 'bestbuy'],\n ['name' => \"Skil - 25-Piece Household Tool Set\", 'description_short' => \"Includes a wrench, keychain tape measure, diagonal and linesman pliers, 10 precision screwdriver bits, 10 standard precision bits and an adapter; hard storage case\", 'description_long' => \"Includes a wrench, keychain tape measure, diagonal and linesman pliers, 10 precision screwdriver bits, 10 standard precision bits and an adapter; hard storage case\", 'price' => 16.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/skil-25-piece-household-tool-set/1617857.p?id=1219057246864&skuId=1617857&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617857', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617857_105x210_sc.jpg\"}', 'upc' => '811187019323', 'provider' => 'bestbuy'],\n ['name' => \"Skil - 22-Piece Dual-Sided Ratchet and Socket Set - Multi\", 'description_short' => \"Includes five 3/8&quot; sockets and sixteen 1/4&quot; sockets; dual-sided stubby ratchet with comfort-grip handle; hard storage case\", 'description_long' => \"Includes five 3/8&quot; sockets and sixteen 1/4&quot; sockets; dual-sided stubby ratchet with comfort-grip handle; hard storage case\", 'price' => 16.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/skil-22-piece-dual-sided-ratchet-and-socket-set-multi/1617866.p?id=1219057246724&skuId=1617866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617866_sa.jpg\"}', 'upc' => '811187013963', 'provider' => 'bestbuy'],\n ['name' => \"Skil - 33-Piece Screwdriver Set - Red/Black\", 'description_short' => \"24 precision bits; 7 nut drivers; precision driver with comfort-grip handle; hard storage case\", 'description_long' => \"24 precision bits; 7 nut drivers; precision driver with comfort-grip handle; hard storage case\", 'price' => 9.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/skil-33-piece-screwdriver-set-red-black/1617875.p?id=1219057243606&skuId=1617875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617875_sa.jpg\"}', 'upc' => '811187019330', 'provider' => 'bestbuy'],\n ['name' => \"Skil - Stubby Hammer - Black/Red/Silver\", 'description_short' => \"Full-size head; ergonomic rubber grip; lightweight, compact design\", 'description_long' => \"Full-size head; ergonomic rubber grip; lightweight, compact design\", 'price' => 4.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/skil-stubby-hammer-black-red-silver/1617948.p?id=1219057250251&skuId=1617948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617948_rc.jpg\"}', 'upc' => '811187013987', 'provider' => 'bestbuy'],\n ['name' => \"Skil - 2-Piece Hex Key Set\", 'description_short' => \"Includes 1 SAE and 1 metric hex key; PP, TPR and CRV materials\", 'description_long' => \"Includes 1 SAE and 1 metric hex key; PP, TPR and CRV materials\", 'price' => 7.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/skil-2-piece-hex-key-set/1617957.p?id=1219057244317&skuId=1617957&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617957_sa.jpg\"}', 'upc' => '811187019361', 'provider' => 'bestbuy'],\n ['name' => \"Babylon 5: The Movie Collecton [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/babylon-5-the-movie-collecton-5-discs-dvd/1617975.p?id=2193831&skuId=1617975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1908\\/19089445.jpg\"}', 'upc' => '883929048014', 'provider' => 'bestbuy'],\n ['name' => \"Skil - Retractable Folding Utility Knife - Red\", 'description_short' => \"Retractable, folding design; slide lock\", 'description_long' => \"Retractable, folding design; slide lock\", 'price' => 9.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/skil-retractable-folding-utility-knife-red/1617984.p?id=1219057239461&skuId=1617984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617984_rc.jpg\"}', 'upc' => '811187019347', 'provider' => 'bestbuy'],\n ['name' => \"Big TV - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-tv-cd/1617993.p?id=2720957&skuId=1617993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1617993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1617\\/1617993_sa.jpg\"}', 'upc' => '602537409068', 'provider' => 'bestbuy'],\n ['name' => \"Into the Light: Life Stories & Love Songs - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-the-light-life-stories-love-songs-cd-dvd/1618019.p?id=2733075&skuId=1618019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618019_sa.jpg\"}', 'upc' => '5099901092226', 'provider' => 'bestbuy'],\n ['name' => \"One Track Heart - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-track-heart-cd-original-soundtrack/1618028.p?id=2732512&skuId=1618028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618028_sa.jpg\"}', 'upc' => '030206720983', 'provider' => 'bestbuy'],\n ['name' => \"World's End [Original Motion Picture... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worlds-end-original-motion-picture-cd-original-soundtrack/1618037.p?id=2731842&skuId=1618037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618037_sa.jpg\"}', 'upc' => '018771898627', 'provider' => 'bestbuy'],\n ['name' => \"Mortal Instruments: City of Bones [Original... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mortal-instruments-city-of-bones-original-cd-original-soundtrack/1618046.p?id=2733555&skuId=1618046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618046_sa.jpg\"}', 'upc' => '602537478989', 'provider' => 'bestbuy'],\n ['name' => \"Roku - 1 Streaming Player - Black\", 'description_short' => \"Allows you to access more than 2,000 channels of streaming content; compatible with most HDTVs and standard-definition TVs; supports 1080p content and Dolby Digital Plus 7.1 surround sound; wireless connectivity\", 'description_long' => \"Allows you to access more than 2,000 channels of streaming content; compatible with most HDTVs and standard-definition TVs; supports 1080p content and Dolby Digital Plus 7.1 surround sound; wireless connectivity\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roku-1-streaming-player-black/1618055.p?id=1219057250674&skuId=1618055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618055_sa.jpg\"}', 'upc' => '829610880600', 'provider' => 'bestbuy'],\n ['name' => \"Downtown: Life Under the Gun [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/downtown-life-under-the-gun-pa-cd/1618082.p?id=2733440&skuId=1618082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618082_sa.jpg\"}', 'upc' => '602537462896', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 24.7 Cu. Ft. French Door Refrigerator with Thru-the-Door Ice and Water - Stainless-Steel\", 'description_short' => \"Tap Touch electronic dispenser controls; 4 MicroEdge shelves; temperature-controlled pantry; triple crisper system; 3 door bins; In-Door-Ice; freezer bin and pizza pocket\", 'description_long' => \"Tap Touch electronic dispenser controls; 4 MicroEdge shelves; temperature-controlled pantry; triple crisper system; 3 door bins; In-Door-Ice; freezer bin and pizza pocket\", 'price' => 2199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-24-7-cu-ft-french-door-refrigerator-with-thru-the-door-ice-and-water-stainless-steel/1618091.p?id=1219057251051&skuId=1618091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618091_sa.jpg\"}', 'upc' => '883049253619', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1618125.p?id=1219058821498&skuId=1618125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016181258', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1618143.p?id=1219058821493&skuId=1618143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016181432', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1618152.p?id=1219058822444&skuId=1618152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016181524', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1618198.p?id=1219058821495&skuId=1618198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016181982', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1618204.p?id=1219058821500&skuId=1618204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016182040', 'provider' => 'bestbuy'],\n ['name' => \"The Sapphires (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sapphires-blu-ray-disc-2-disc/1618222.p?id=2721578&skuId=1618222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618222_sa.jpg\"}', 'upc' => '013132607382', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1618259.p?id=1219058094539&skuId=1618259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016182590', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1618268.p?id=1219058097190&skuId=1618268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016182682', 'provider' => 'bestbuy'],\n ['name' => \"Solomon Kane (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solomon-kane-blu-ray-disc/1618277.p?id=2708851&skuId=1618277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618277_sa.jpg\"}', 'upc' => '013132606927', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 39.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618286.p?id=1219058821504&skuId=1618286&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618286', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016182866', 'provider' => 'bestbuy'],\n ['name' => \"The Black Waters of Echo's Pond (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-black-waters-of-echos-pond-dvd/1618295.p?id=2725112&skuId=1618295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618295_sa.jpg\"}', 'upc' => '013132608211', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 39.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618301.p?id=1219058821506&skuId=1618301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016183016', 'provider' => 'bestbuy'],\n ['name' => \"I Spit on Your Grave 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-spit-on-your-grave-2-dvd/1618329.p?id=2725120&skuId=1618329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618329_sa.jpg\"}', 'upc' => '013132601830', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 49.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618338.p?id=1219058821503&skuId=1618338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016183382', 'provider' => 'bestbuy'],\n ['name' => \"I Spit on Your Grave 2 (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-spit-on-your-grave-2-blu-ray-disc-2-disc/1618347.p?id=2725120&skuId=1618347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618347_sa.jpg\"}', 'upc' => '013132601854', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 49.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618356.p?id=1219058821505&skuId=1618356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016183566', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 59.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618365.p?id=1219058822275&skuId=1618365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016183658', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 99.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618383.p?id=1219058821496&skuId=1618383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016183832', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 119.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618392.p?id=1219058821492&skuId=1618392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016183924', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 139.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618407.p?id=1219058821502&skuId=1618407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016184075', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 159.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618416.p?id=1219058821501&skuId=1618416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016184167', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 159.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618425.p?id=1219058096344&skuId=1618425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016184259', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 159.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1618434.p?id=1219058094540&skuId=1618434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016184341', 'provider' => 'bestbuy'],\n ['name' => \"American Dad 8 (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dad-8-3-disc-dvd/1618443.p?id=2734715&skuId=1618443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618443.jpg\"}', 'upc' => '024543878919', 'provider' => 'bestbuy'],\n ['name' => \"How I Met Your Mother: The Complete Season 8 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-i-met-your-mother-the-complete-season-8-3-discs-dvd/1618452.p?id=2749798&skuId=1618452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1618452.jpg\"}', 'upc' => '024543864189', 'provider' => 'bestbuy'],\n ['name' => \"New Girl: The Complete Second Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-girl-the-complete-second-season-3-discs-dvd/1618461.p?id=2761706&skuId=1618461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618461_sa.jpg\"}', 'upc' => '024543861867', 'provider' => 'bestbuy'],\n ['name' => \"American Horror Story: Asylum [3 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-horror-story-asylum-3-discs-blu-ray-disc/1618489.p?id=2775593&skuId=1618489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/pdpimages\\/1618489.jpg\"}', 'upc' => '024543855835', 'provider' => 'bestbuy'],\n ['name' => \"American Horror Story: Asylum [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-horror-story-asylum-4-discs-dvd/1618498.p?id=2749799&skuId=1618498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/pdpimages\\/1618498.jpg\"}', 'upc' => '024543855811', 'provider' => 'bestbuy'],\n ['name' => \"Hannibal: Season 1 [4 Discs] (DVD) (Boxed Set) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hannibal-season-1-4-discs-dvd-boxed-set-ultraviolet-digital-copy/1618504.p?id=2733033&skuId=1618504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618504_sa.jpg\"}', 'upc' => '031398172062', 'provider' => 'bestbuy'],\n ['name' => \"Hannibal: Season 1 (Blu-ray Disc) (3 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hannibal-season-1-blu-ray-disc-3-disc-ultraviolet-digital-copy/1618513.p?id=2732953&skuId=1618513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1618513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1618\\/1618513_sa.jpg\"}', 'upc' => '031398172215', 'provider' => 'bestbuy'],\n ['name' => \"Blue Microphones - Spark Cardioid Condenser Microphone - Orange\", 'description_short' => \"For recording vocals, drums, guitars, pianos, brass, woodwinds and more; Focus Control with normal and focus modes; condenser capsule; pop filter; shockmount\", 'description_long' => \"For recording vocals, drums, guitars, pianos, brass, woodwinds and more; Focus Control with normal and focus modes; condenser capsule; pop filter; shockmount\", 'price' => 199.99, 'sale_price' => 185.99, 'url' => 'http://www.bestbuy.com/site/blue-microphones-spark-cardioid-condenser-microphone-orange/1620209.p?id=1218273485885&skuId=1620209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1620209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1620\\/1620209_sa.jpg\"}', 'upc' => '836213000816', 'provider' => 'bestbuy'],\n ['name' => \"Graham Parker & the Figgs: Live at the FTC (DVD) (2 Disc) (Bonus CD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/graham-parker-the-figgs-live-at-the-ftc-dvd-2-disc-bonus-cd/1620324.p?id=2159574&skuId=1620324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1620324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1620\\/1620324.jpg\"}', 'upc' => '014381656121', 'provider' => 'bestbuy'],\n ['name' => \"Black & Decker - Wet/Dry Bagless Cordless Hand Vac - White\", 'description_short' => \"9.6V motor; bagless dirt bowl; washable filter; squeegee tool\", 'description_long' => \"9.6V motor; bagless dirt bowl; washable filter; squeegee tool\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-decker-wet-dry-bagless-cordless-hand-vac-white/1620466.p?id=1218273485752&skuId=1620466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1620466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1620\\/1620466_rc.jpg\"}', 'upc' => '885911222501', 'provider' => 'bestbuy'],\n ['name' => \"GE - Artistry Series 1.6 Cu. Ft. Over-the-Range Microwave - White\", 'description_short' => \"1000W of power; electronic touch controls; popcorn, beverage, potato, reheat and up to 6-minute express cook settings; weight and time defrost; glass turntable\", 'description_long' => \"1000W of power; electronic touch controls; popcorn, beverage, potato, reheat and up to 6-minute express cook settings; weight and time defrost; glass turntable\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-artistry-series-1-6-cu-ft-over-the-range-microwave-white/1621004.p?id=1219058095937&skuId=1621004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621004_sa.jpg\"}', 'upc' => '084691255437', 'provider' => 'bestbuy'],\n ['name' => \"GE - Artistry Series 30\\\" Freestanding Gas Range - White-on-White\", 'description_short' => \"One 5,000 BTU precise simmer burner, two 9,500 BTU burners and one 12,500 BTU burner; high and low broil options; Sabbath mode; built-in broiler drawer\", 'description_long' => \"One 5,000 BTU precise simmer burner, two 9,500 BTU burners and one 12,500 BTU burner; high and low broil options; Sabbath mode; built-in broiler drawer\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-artistry-series-30-freestanding-gas-range-white-on-white/1621013.p?id=1219057462714&skuId=1621013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621013_sa.jpg\"}', 'upc' => '084691258308', 'provider' => 'bestbuy'],\n ['name' => \"Party Tyme Karaoke: Super Hits, Vol. 20 [CD+G] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/party-tyme-karaoke-super-hits-vol-20-cd-g-cd-various/1621022.p?id=2733630&skuId=1621022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621022_sa.jpg\"}', 'upc' => '610017111639', 'provider' => 'bestbuy'],\n ['name' => \"Pretty Hate Machine: 2010 Remaster (Remastered) - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pretty-hate-machine-2010-remaster-remastered-vinyl/1621059.p?id=2169309&skuId=1621059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621059_sa.jpg\"}', 'upc' => '602527567822', 'provider' => 'bestbuy'],\n ['name' => \"All American Nightmare [Deluxe] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-american-nightmare-deluxe-pa-cd/1621086.p?id=2168757&skuId=1621086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621086_sa.jpg\"}', 'upc' => '602527574301', 'provider' => 'bestbuy'],\n ['name' => \"Party Tyme Karaoke: Girl Pop... [CD+G] [Box] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/party-tyme-karaoke-girl-pop-cd-g-box-cd-various/1621208.p?id=2733590&skuId=1621208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621208_sa.jpg\"}', 'upc' => '610017445925', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute to Tamela Mann - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-tamela-mann-cd/1621217.p?id=2733450&skuId=1621217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621217_sa.jpg\"}', 'upc' => '707541987196', 'provider' => 'bestbuy'],\n ['name' => \"Country Girls at Heart - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-girls-at-heart-cd-various/1621235.p?id=2732362&skuId=1621235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621235_sa.jpg\"}', 'upc' => '778325400736', 'provider' => 'bestbuy'],\n ['name' => \"Party Tyme Karaoke: Country Hits, Vol. 13 [CD+G] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/party-tyme-karaoke-country-hits-vol-13-cd-g-cd-various/1621253.p?id=2733695&skuId=1621253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621253_sa.jpg\"}', 'upc' => '610017111738', 'provider' => 'bestbuy'],\n ['name' => \"Santana & McLaughlin: Live at Montreux 2011 - Invitation to Illumination - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/santana-mclaughlin-live-at-montreux-2011-invitation-to-illumination-blu-ray-disc/1621271.p?id=2727301&skuId=1621271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621271_sa.jpg\"}', 'upc' => '801213345793', 'provider' => 'bestbuy'],\n ['name' => \"Santana & McLaughlin: Live at Montreux 2011 - Invitation to Illumination (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/santana-mclaughlin-live-at-montreux-2011-invitation-to-illumination-dvd/1621299.p?id=2727301&skuId=1621299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621299_sa.jpg\"}', 'upc' => '801213062690', 'provider' => 'bestbuy'],\n ['name' => \"Cluck Ol' Hen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cluck-ol-hen-cd/1621305.p?id=2727899&skuId=1621305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621305.jpg\"}', 'upc' => '669890500429', 'provider' => 'bestbuy'],\n ['name' => \"Party Tyme Karaoke: Girl Pop, Vol. 20 [CD+G] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/party-tyme-karaoke-girl-pop-vol-20-cd-g-cd-various/1621314.p?id=2733431&skuId=1621314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621314_sa.jpg\"}', 'upc' => '610017167636', 'provider' => 'bestbuy'],\n ['name' => \"A Year in Your Life: 1950 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-year-in-your-life-1950-cd-various/1621323.p?id=2732196&skuId=1621323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621323_sa.jpg\"}', 'upc' => '778325224226', 'provider' => 'bestbuy'],\n ['name' => \"The Gatsby Era - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gatsby-era-cd-various/1621332.p?id=2733471&skuId=1621332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621332_sa.jpg\"}', 'upc' => '778325325121', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute To Midnight Star - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-midnight-star-cd/1621369.p?id=2733688&skuId=1621369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621369_sa.jpg\"}', 'upc' => '707541988599', 'provider' => 'bestbuy'],\n ['name' => \"GE - Artistry Series 30\\\" Freestanding Gas Range - Black\", 'description_short' => \"One 5,000 BTU precise simmer burner, two 9,500 BTU burners and one 12,500 BTU burner; high and low broil options; Sabbath mode; built-in broiler drawer\", 'description_long' => \"One 5,000 BTU precise simmer burner, two 9,500 BTU burners and one 12,500 BTU burner; high and low broil options; Sabbath mode; built-in broiler drawer\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-artistry-series-30-freestanding-gas-range-black/1621378.p?id=1219057462842&skuId=1621378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621378_sa.jpg\"}', 'upc' => '084691258315', 'provider' => 'bestbuy'],\n ['name' => \"GE - Artistry Series 30\\\" Freestanding Electric Range - Black\", 'description_short' => \"Up-front controls; two 6&quot;, 1500W elements, one 8&quot;, 2000W element and one 8&quot;, 2500W element; dual-element bake and broil functions; removable, full-width storage drawer\", 'description_long' => \"Up-front controls; two 6&quot;, 1500W elements, one 8&quot;, 2000W element and one 8&quot;, 2500W element; dual-element bake and broil functions; removable, full-width storage drawer\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-artistry-series-30-freestanding-electric-range-black/1621387.p?id=1219057462343&skuId=1621387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621387_sa.jpg\"}', 'upc' => '084691256113', 'provider' => 'bestbuy'],\n ['name' => \"GE - Artistry Series 5.0 Cu. Ft. Freestanding Electric Range - White-on-White\", 'description_short' => \"Up-front controls; two 6&quot;, 1500W elements, one 8&quot;, 2000W element and one 8&quot;, 2500W element; dual-element bake and broil functions; removable, full-width storage drawer\", 'description_long' => \"Up-front controls; two 6&quot;, 1500W elements, one 8&quot;, 2000W element and one 8&quot;, 2500W element; dual-element bake and broil functions; removable, full-width storage drawer\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-artistry-series-5-0-cu-ft-freestanding-electric-range-white-on-white/1621396.p?id=1219057462584&skuId=1621396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621396_sa.jpg\"}', 'upc' => '084691254355', 'provider' => 'bestbuy'],\n ['name' => \"Transformers Prime: Beast Hunters - Predacons Rising (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-prime-beast-hunters-predacons-rising-dvd/1621401.p?id=2731584&skuId=1621401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621401_sa.jpg\"}', 'upc' => '826663143256', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Goldberg - The Ultimate Collection (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-goldberg-the-ultimate-collection-blu-ray-disc-2-disc/1621429.p?id=2731940&skuId=1621429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621429_sa.jpg\"}', 'upc' => '651191951710', 'provider' => 'bestbuy'],\n ['name' => \"Maniac (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maniac-dvd/1621438.p?id=2749150&skuId=1621438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621438_sa.jpg\"}', 'upc' => '030306988191', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Goldberg - The Ultimate Collection (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-goldberg-the-ultimate-collection-dvd-3-disc/1621447.p?id=2731940&skuId=1621447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621447_sa.jpg\"}', 'upc' => '651191951703', 'provider' => 'bestbuy'],\n ['name' => \"Europa Report (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/europa-report-blu-ray-disc/1621456.p?id=2743935&skuId=1621456&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621456', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621456_sa.jpg\"}', 'upc' => '876964006019', 'provider' => 'bestbuy'],\n ['name' => \"Kicker - P-Series Power Kit for Most Aftermarket Amplifiers - Blue/Gray\", 'description_short' => \"Compatible with most aftermarket amplifiers; provides the wiring and hardware needed to power an in-vehicle amplifier; silver-tinned, oxygen-free copper wires\", 'description_long' => \"Compatible with most aftermarket amplifiers; provides the wiring and hardware needed to power an in-vehicle amplifier; silver-tinned, oxygen-free copper wires\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kicker-p-series-power-kit-for-most-aftermarket-amplifiers-blue-gray/1621535.p?id=1219057461459&skuId=1621535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621535_sa.jpg\"}', 'upc' => '713034064961', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek Into Darkness (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-into-darkness-dvd/1621544.p?id=2731147&skuId=1621544&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1621544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1621\\/1621544_sa.jpg\"}', 'upc' => '097363555049', 'provider' => 'bestbuy'],\n ['name' => \"Arthur Newman (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arthur-newman-dvd/1622012.p?id=2712288&skuId=1622012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622012_sa.jpg\"}', 'upc' => '767685288573', 'provider' => 'bestbuy'],\n ['name' => \"Just Dance Kids 2014 - Xbox 360\", 'description_short' => \"Enjoy kid-friendly dance routines to hit songs from today\", 'description_long' => \"Enjoy kid-friendly dance routines to hit songs from today\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-dance-kids-2014-xbox-360/1622021.p?id=1219057566327&skuId=1622021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622021_500x500_sa.jpg\"}', 'upc' => '008888528166', 'provider' => 'bestbuy'],\n ['name' => \"Simpli Home - Warm Shaker Media Cabinet for Most Flat-Panel TVs Up to 46\\\" - Brown\", 'description_short' => \"Pine wood material; brushed-nickel knobs; 2 tempered-glass cabinets with 2 adjustable shelves; 2 open cubbies; square, tapered legs\", 'description_long' => \"Pine wood material; brushed-nickel knobs; 2 tempered-glass cabinets with 2 adjustable shelves; 2 open cubbies; square, tapered legs\", 'price' => 299.99, 'sale_price' => 249.99, 'url' => 'http://www.bestbuy.com/site/simpli-home-warm-shaker-media-cabinet-for-most-flat-panel-tvs-up-to-46-brown/1622076.p?id=1219058144184&skuId=1622076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622076_rc.jpg\"}', 'upc' => '840469007086', 'provider' => 'bestbuy'],\n ['name' => \"Simpli Home - Amherst TV Stand for Most Flat-Panel TVs Up to 55\\\" - Brown\", 'description_short' => \"Pine wood material; brushed-nickel knobs; 4 adjustable shelves; central open area; 2 side cabinets; cord management cutouts\", 'description_long' => \"Pine wood material; brushed-nickel knobs; 4 adjustable shelves; central open area; 2 side cabinets; cord management cutouts\", 'price' => 399.99, 'sale_price' => 334.99, 'url' => 'http://www.bestbuy.com/site/simpli-home-amherst-tv-stand-for-most-flat-panel-tvs-up-to-55-brown/1622085.p?id=1219058141230&skuId=1622085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622085_sa.jpg\"}', 'upc' => '840469008540', 'provider' => 'bestbuy'],\n ['name' => \"Simpli Home - Warm Shaker TV Stand for Most Flat-Panel TVs Up to 50\\\" - Brown\", 'description_short' => \"Pine wood material; brushed-nickel knobs; 4 adjustable shelves; 2 bottom drawers; 2 side doors; cord management cutouts\", 'description_long' => \"Pine wood material; brushed-nickel knobs; 4 adjustable shelves; 2 bottom drawers; 2 side doors; cord management cutouts\", 'price' => 349.99, 'sale_price' => 292.99, 'url' => 'http://www.bestbuy.com/site/simpli-home-warm-shaker-tv-stand-for-most-flat-panel-tvs-up-to-50-brown/1622094.p?id=1219058139992&skuId=1622094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622094_rc.jpg\"}', 'upc' => '840469007079', 'provider' => 'bestbuy'],\n ['name' => \"Simpli Home - Acadian TV Stand for Most Flat-Panel TVs Up to 54\\\" - Brown\", 'description_short' => \"Pine wood material; brushed-nickel knobs; 4 adjustable shelves; 2 side cabinets with doors; tapered legs, grooved sides and crown-molding-edged tabletop; cord management cutouts\", 'description_long' => \"Pine wood material; brushed-nickel knobs; 4 adjustable shelves; 2 side cabinets with doors; tapered legs, grooved sides and crown-molding-edged tabletop; cord management cutouts\", 'price' => 279.99, 'sale_price' => 232.99, 'url' => 'http://www.bestbuy.com/site/simpli-home-acadian-tv-stand-for-most-flat-panel-tvs-up-to-54-brown/1622119.p?id=1219058144771&skuId=1622119', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622119_sa.jpg\"}', 'upc' => '840469007123', 'provider' => 'bestbuy'],\n ['name' => \"Simpli Home - Artisan Media Cabinet for Most Flat-Panel TVs Up to 42\\\" - Brown\", 'description_short' => \"Pine wood material; rectangular bronze knobs with peaked tops; 2 tempered-glass cabinet doors and 2 adjustable shelves; clean-angle-edged tabletop\", 'description_long' => \"Pine wood material; rectangular bronze knobs with peaked tops; 2 tempered-glass cabinet doors and 2 adjustable shelves; clean-angle-edged tabletop\", 'price' => 299.99, 'sale_price' => 266.99, 'url' => 'http://www.bestbuy.com/site/simpli-home-artisan-media-cabinet-for-most-flat-panel-tvs-up-to-42-brown/1622128.p?id=1219058142015&skuId=1622128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622128_sa.jpg\"}', 'upc' => '840469007222', 'provider' => 'bestbuy'],\n ['name' => \"Simpli Home - Artisan TV Stand for Most Flat-Panel TVs Up to 54\\\" - Brown\", 'description_short' => \"Pine wood material; rectangular bronze knobs; 2 tempered-glass side doors; 5 adjustable shelves; 2 central drawers; closed side cabinets; cord management cutouts\", 'description_long' => \"Pine wood material; rectangular bronze knobs; 2 tempered-glass side doors; 5 adjustable shelves; 2 central drawers; closed side cabinets; cord management cutouts\", 'price' => 399.99, 'sale_price' => 346.99, 'url' => 'http://www.bestbuy.com/site/simpli-home-artisan-tv-stand-for-most-flat-panel-tvs-up-to-54-brown/1622137.p?id=1219058148780&skuId=1622137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622137_rc.jpg\"}', 'upc' => '840469007208', 'provider' => 'bestbuy'],\n ['name' => \"Simpli Home - Cosmopolitan Computer Desk - Medium Auburn Brown\", 'description_short' => \"Solid pine wood construction; flip-down central drawer front with long chrome drawer pull; supports most monitors up to 26&quot;; internal keyboard tray\", 'description_long' => \"Solid pine wood construction; flip-down central drawer front with long chrome drawer pull; supports most monitors up to 26&quot;; internal keyboard tray\", 'price' => 179.99, 'sale_price' => 137.99, 'url' => 'http://www.bestbuy.com/site/simpli-home-cosmopolitan-computer-desk-medium-auburn-brown/1622146.p?id=1219058134824&skuId=1622146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622146_sa.jpg\"}', 'upc' => '840469006430', 'provider' => 'bestbuy'],\n ['name' => \"Simpli Home - Avalon Computer Desk - Rich Tobacco Brown\", 'description_short' => \"Solid pine wood construction; brushed-nickel cabinet pull and knobs; 2 side storage drawers with metal drawer glides; supports most monitors up to 26&quot;; flip-down central drawer front with internal keyboard tray\", 'description_long' => \"Solid pine wood construction; brushed-nickel cabinet pull and knobs; 2 side storage drawers with metal drawer glides; supports most monitors up to 26&quot;; flip-down central drawer front with internal keyboard tray\", 'price' => 219.99, 'sale_price' => 191.99, 'url' => 'http://www.bestbuy.com/site/simpli-home-avalon-computer-desk-rich-tobacco-brown/1622155.p?id=1219058144253&skuId=1622155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622155_sa.jpg\"}', 'upc' => '840469007239', 'provider' => 'bestbuy'],\n ['name' => \"Simpli Home - Acadian Media Cabinet for Most Flat-Panel TVs Up to 42\\\" - Brown\", 'description_short' => \"Pine wood material; brushed-nickel knobs; 2 tempered-glass cabinet doors and 2 adjustable shelves; tapered legs, grooved sides and crown-molding-edged tabletop\", 'description_long' => \"Pine wood material; brushed-nickel knobs; 2 tempered-glass cabinet doors and 2 adjustable shelves; tapered legs, grooved sides and crown-molding-edged tabletop\", 'price' => 299.99, 'sale_price' => 249.99, 'url' => 'http://www.bestbuy.com/site/simpli-home-acadian-media-cabinet-for-most-flat-panel-tvs-up-to-42-brown/1622164.p?id=1219058149108&skuId=1622164', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622164_sa.jpg\"}', 'upc' => '840469007253', 'provider' => 'bestbuy'],\n ['name' => \"Da Vinci's Demons [3 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/da-vincis-demons-3-discs-dvd-boxed-set/1622182.p?id=2722149&skuId=1622182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622182_sa.jpg\"}', 'upc' => '013132600864', 'provider' => 'bestbuy'],\n ['name' => \"Da Vinci's Demons: The Complete First Season [3 Discs] (Blu-ray Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/da-vincis-demons-the-complete-first-season-3-discs-blu-ray-disc-boxed-set/1622191.p?id=2722382&skuId=1622191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1622\\/1622191.jpg\"}', 'upc' => '013132600871', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 159.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1622216.p?id=1219058222595&skuId=1622216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016222166', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 179.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1622225.p?id=1219058222598&skuId=1622225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016222258', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1622243.p?id=1219058822274&skuId=1622243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016222432', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1622261.p?id=1219058991982&skuId=1622261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016222616', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1622289.p?id=1219058990753&skuId=1622289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1622289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016222890', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1623011.p?id=1219058990748&skuId=1623011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1623011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016230116', 'provider' => 'bestbuy'],\n ['name' => \"Intruders: Season One (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/intruders-season-one-blu-ray-disc-2-disc/1623027.p?id=3301255&skuId=1623027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1623027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1623\\/1623027.jpg\"}', 'upc' => '883929430499', 'provider' => 'bestbuy'],\n ['name' => \"Intruders: Season One (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/intruders-season-one-dvd-3-disc/1623036.p?id=3301145&skuId=1623036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1623036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1623\\/1623036.jpg\"}', 'upc' => '883929430505', 'provider' => 'bestbuy'],\n ['name' => \"Tony Bennett & Lady Gaga: Cheek to Cheek Live! - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tony-bennett-lady-gaga-cheek-to-cheek-live-blu-ray-disc/1623045.p?id=3328563&skuId=1623045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1623045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1623\\/1623045_sa.jpg\"}', 'upc' => '602547123923', 'provider' => 'bestbuy'],\n ['name' => \"Tony Bennett & Lady Gaga: Cheek to Cheek Live! (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tony-bennett-lady-gaga-cheek-to-cheek-live-dvd/1623054.p?id=3328563&skuId=1623054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1623054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1623\\/1623054_sa.jpg\"}', 'upc' => '602547123916', 'provider' => 'bestbuy'],\n ['name' => \"Virgin Mobile - $10 Top-Up Card - Multi\", 'description_short' => \"Compatible with Virgin Mobile Beyond Talk, Broadband to Go, payLo and Assurance Wireless plans; redeemable for adding talk time and content services; $10 value\", 'description_long' => \"Compatible with Virgin Mobile Beyond Talk, Broadband to Go, payLo and Assurance Wireless plans; redeemable for adding talk time and content services; $10 value\", 'price' => 10, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virgin-mobile-10-top-up-card-multi/1623093.p?id=1218274634224&skuId=1623093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1623093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1623\\/1623093_sa.jpg\"}', 'upc' => '836182004815', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Color Burst LED Light - Black\", 'description_short' => \"From our expanded online assortment; 140 red, green, blue and amber LEDs; chase program, chase speed and sound sensitivity controls\", 'description_long' => \"From our expanded online assortment; 140 red, green, blue and amber LEDs; chase program, chase speed and sound sensitivity controls\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-color-burst-led-light-black/1623454.p?id=1218273845944&skuId=1623454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1623454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1623\\/1623454_sa.jpg\"}', 'upc' => '640282001328', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - LED Strobe Light - White\", 'description_short' => \"From our expanded online assortment; 220 white LEDs; strobe speed control knob; in/out 1/4&quot; mono plugs; plastic case\", 'description_long' => \"From our expanded online assortment; 220 white LEDs; strobe speed control knob; in/out 1/4&quot; mono plugs; plastic case\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-led-strobe-light-white/1623463.p?id=1218273847517&skuId=1623463', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1623463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1623\\/1623463_sa.jpg\"}', 'upc' => '640282001502', 'provider' => 'bestbuy'],\n ['name' => \"Virgin Mobile - $40 Top-Up Card\", 'description_short' => \"Compatible with Virgin Mobile Beyond Talk, Broadband to Go, payLo and Assurance Wireless plans; redeemable for adding talk time and content services; $40 value\", 'description_long' => \"Compatible with Virgin Mobile Beyond Talk, Broadband to Go, payLo and Assurance Wireless plans; redeemable for adding talk time and content services; $40 value\", 'price' => 40, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virgin-mobile-40-top-up-card/1623667.p?id=1218274633792&skuId=1623667&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1623667', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1623\\/1623667_sa.jpg\"}', 'upc' => '836182004839', 'provider' => 'bestbuy'],\n ['name' => \"Microsoft - Xbox 360 Controller - Black\", 'description_short' => \"Don&#039;t let a controller control the way you play\", 'description_long' => \"Don&#039;t let a controller control the way you play\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/microsoft-xbox-360-controller-black/1624065.p?id=1218273818793&skuId=1624065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308460725\\/1308460725_sa.jpg\"}', 'upc' => '885370145717', 'provider' => 'bestbuy'],\n ['name' => \"iBitz - Adult Unity Wireless Activity Monitor - Lime\", 'description_short' => \"Measures steps, distance, weight, height, overall physical activity and BMI; syncs with select iOS Bluetooth 4.0-enabled devices; stores up to 30 days of activity; tri-axis accelerometer; water-resistant\", 'description_long' => \"Measures steps, distance, weight, height, overall physical activity and BMI; syncs with select iOS Bluetooth 4.0-enabled devices; stores up to 30 days of activity; tri-axis accelerometer; water-resistant\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ibitz-adult-unity-wireless-activity-monitor-lime/1624302.p?id=1219058089113&skuId=1624302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624302_sa.jpg\"}', 'upc' => '853655002789', 'provider' => 'bestbuy'],\n ['name' => \"Tickety Toc: Chime Time Adventures (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tickety-toc-chime-time-adventures-dvd/1624384.p?id=2725213&skuId=1624384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624384.jpg\"}', 'upc' => '013132604794', 'provider' => 'bestbuy'],\n ['name' => \"Ancient Aliens: Season 5, Vol. 1 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ancient-aliens-season-5-vol-1-3-discs-dvd/1624393.p?id=2720608&skuId=1624393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624393_sa.jpg\"}', 'upc' => '031398174929', 'provider' => 'bestbuy'],\n ['name' => \"Thomas & Friends: King of the Railway - The Movie (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thomas-friends-king-of-the-railway-the-movie-blu-ray-disc/1624408.p?id=2728340&skuId=1624408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624408_sa.jpg\"}', 'upc' => '884487113848', 'provider' => 'bestbuy'],\n ['name' => \"Thomas & Friends: King of the Railway - The Movie (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thomas-friends-king-of-the-railway-the-movie-dvd/1624417.p?id=2728340&skuId=1624417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/21652311.jpg\"}', 'upc' => '884487113718', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1624426.p?id=1219058990750&skuId=1624426&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624426', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016244267', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1624435.p?id=1219058992156&skuId=1624435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016244359', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-protection-plan/1624453.p?id=1219058991924&skuId=1624453&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624453', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016244533', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1624462.p?id=1219058222597&skuId=1624462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016244625', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1624514.p?id=1219058222596&skuId=1624514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016245141', 'provider' => 'bestbuy'],\n ['name' => \"GE - 1.6 Cu. Ft. Over-the-Range Microwave - White\", 'description_short' => \"1000W of power; electronic touch controls; popcorn, beverage, potato, reheat and up to 6-minute express cook settings; auto and time defrost; glass turntable\", 'description_long' => \"1000W of power; electronic touch controls; popcorn, beverage, potato, reheat and up to 6-minute express cook settings; auto and time defrost; glass turntable\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-1-6-cu-ft-over-the-range-microwave-white/1624523.p?id=1219058096931&skuId=1624523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624523_sa.jpg\"}', 'upc' => '084691254959', 'provider' => 'bestbuy'],\n ['name' => \"GE - 1.6 Cu. Ft. Over-the-Range Microwave - Stainless Steel with Black Accents\", 'description_short' => \"1000W of power; electronic touch controls; 10 power levels; convenience cooking controls; auto and time defrost; 1- to 6-minute express cook options; add-30-seconds feature; 2-speed, 300 cfm venting system\", 'description_long' => \"1000W of power; electronic touch controls; 10 power levels; convenience cooking controls; auto and time defrost; 1- to 6-minute express cook options; add-30-seconds feature; 2-speed, 300 cfm venting system\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-1-6-cu-ft-over-the-range-microwave-stainless-steel-with-black-accents/1624532.p?id=1219057461793&skuId=1624532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624532_sa.jpg\"}', 'upc' => '084691254980', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1624541.p?id=1219058990751&skuId=1624541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016245417', 'provider' => 'bestbuy'],\n ['name' => \"Dell - 7C6F7 Toner Cartridge - Black\", 'description_short' => \"Yields up to 1,250 pagesCompatible with select Dell color laser printers\", 'description_long' => \"Yields up to 1,250 pagesCompatible with select Dell color laser printers\", 'price' => 71.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dell-7c6f7-toner-cartridge-black/1624602.p?id=1219057329163&skuId=1624602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624602_sa.jpg\"}', 'upc' => '884116098317', 'provider' => 'bestbuy'],\n ['name' => \"Dell - 4J0X7 Toner Cartridge - Magenta\", 'description_short' => \"Yields up to 1,000 pagesCompatible with select Dell color laser printers\", 'description_long' => \"Yields up to 1,000 pagesCompatible with select Dell color laser printers\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dell-4j0x7-toner-cartridge-magenta/1624693.p?id=1219057328210&skuId=1624693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624693_sa.jpg\"}', 'upc' => '884116098331', 'provider' => 'bestbuy'],\n ['name' => \"Dell - 5R6J0 Toner Cartridge - Cyan\", 'description_short' => \"Yields up to 1,000 pagesCompatible with select Dell color laser printers\", 'description_long' => \"Yields up to 1,000 pagesCompatible with select Dell color laser printers\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dell-5r6j0-toner-cartridge-cyan/1624711.p?id=1219057329161&skuId=1624711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624711_sa.jpg\"}', 'upc' => '884116098348', 'provider' => 'bestbuy'],\n ['name' => \"Dell - XY7N4 Toner Cartridge - Yellow\", 'description_short' => \"Yields up to 1,000 pagesCompatible with select Dell color laser printers\", 'description_long' => \"Yields up to 1,000 pagesCompatible with select Dell color laser printers\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dell-xy7n4-toner-cartridge-yellow/1624739.p?id=1219057328205&skuId=1624739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624739_sa.jpg\"}', 'upc' => '884116098324', 'provider' => 'bestbuy'],\n ['name' => \"GE - 1.9 Cu. Ft. Over-the-Range Microwave - Stainless-Steel with Gray Accents\", 'description_short' => \"1000W of power; electronic touch controls; 10 power levels; sensor cooking controls; 1-6 minutes express cook; add-30-seconds feature; 3-speed, 300 cfm venting system\", 'description_long' => \"1000W of power; electronic touch controls; 10 power levels; sensor cooking controls; 1-6 minutes express cook; add-30-seconds feature; 3-speed, 300 cfm venting system\", 'price' => 399.99, 'sale_price' => 314.99, 'url' => 'http://www.bestbuy.com/site/ge-1-9-cu-ft-over-the-range-microwave-stainless-steel-with-gray-accents/1624775.p?id=1219057462779&skuId=1624775&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624775', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624775_sa.jpg\"}', 'upc' => '084691255161', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-protection-plan/1624784.p?id=1219058992279&skuId=1624784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016247848', 'provider' => 'bestbuy'],\n ['name' => \"GE - Profile Series 1.7 Cu. Ft. Over-the-Range Microwave - Stainless-Steel\", 'description_short' => \"1000W of power; electronic touch controls; easy-set control dial; convection bake and roast; Fast Bake; warming oven; 10 power levels; sensor cooking controls; 3-speed, 300 cfm venting system\", 'description_long' => \"1000W of power; electronic touch controls; easy-set control dial; convection bake and roast; Fast Bake; warming oven; 10 power levels; sensor cooking controls; 3-speed, 300 cfm venting system\", 'price' => 599.99, 'sale_price' => 539.99, 'url' => 'http://www.bestbuy.com/site/ge-profile-series-1-7-cu-ft-over-the-range-microwave-stainless-steel/1624793.p?id=1219057461460&skuId=1624793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624793_sa.jpg\"}', 'upc' => '084691255352', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1624802.p?id=1219058990740&skuId=1624802&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624802', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016248029', 'provider' => 'bestbuy'],\n ['name' => \"Can't Get Enough - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cant-get-enough-cd/1624857.p?id=2731585&skuId=1624857&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624857', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624857_sa.jpg\"}', 'upc' => '795041794024', 'provider' => 'bestbuy'],\n ['name' => \"Any Given Moment - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/any-given-moment-cd/1624866.p?id=2732604&skuId=1624866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1624\\/1624866_sa.jpg\"}', 'upc' => '8024391061329', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1624884.p?id=1219058991862&skuId=1624884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016248845', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 39.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1624893.p?id=1219058990747&skuId=1624893&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016248937', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 39.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1624902.p?id=1219058990752&skuId=1624902&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016249026', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 49.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1624939.p?id=1219058991688&skuId=1624939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016249392', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 49.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1624948.p?id=1219058990754&skuId=1624948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016249484', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 59.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1624966.p?id=1219058991569&skuId=1624966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016249668', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 99.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1624975.p?id=1219058992040&skuId=1624975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1624975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016249750', 'provider' => 'bestbuy'],\n ['name' => \"Incase - Chromebook Briefcase - Heathered Black\", 'description_short' => \"Compatible with most Chromebook laptops with up to an 11&quot; display; fleece-lined laptop compartment; zippered exterior pocket; carrying handle; detachable shoulder strap\", 'description_long' => \"Compatible with most Chromebook laptops with up to an 11&quot; display; fleece-lined laptop compartment; zippered exterior pocket; carrying handle; detachable shoulder strap\", 'price' => 59.99, 'sale_price' => 29.99, 'url' => 'http://www.bestbuy.com/site/incase-chromebook-briefcase-heathered-black/1625028.p?id=1219057462350&skuId=1625028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1625\\/1625028_sc.jpg\"}', 'upc' => '650450133294', 'provider' => 'bestbuy'],\n ['name' => \"National Geographic: Glacier National Park (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/national-geographic-glacier-national-park-blu-ray-disc-2-disc/1625116.p?id=2116237&skuId=1625116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1625\\/1625116_sa.jpg\"}', 'upc' => '727994754480', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-protection-plan/1625125.p?id=1219058992098&skuId=1625125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016251258', 'provider' => 'bestbuy'],\n ['name' => \"Disney's Planes - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"High-flying adventure awaits with your friends from the Disney film\", 'description_long' => \"High-flying adventure awaits with your friends from the Disney film\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disneys-planes-pre-owned-nintendo-3ds/1625152.p?id=1219057463492&skuId=1625152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1625\\/1625152_sa.jpg\"}', 'upc' => '799007835110', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 139.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1625161.p?id=1219058991746&skuId=1625161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016251616', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 159.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1625231.p?id=1219058990746&skuId=1625231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016252316', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Standard Geek Squad Protection\", 'description_short' => \"2-Year Standard Geek Squad Protection\", 'description_long' => \"2-Year Standard Geek Squad Protection\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-standard-geek-squad-protection/1625338.p?id=1219058990749&skuId=1625338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400016253382', 'provider' => 'bestbuy'],\n ['name' => \"CybertronPC - Patriot Desktop - AMD A4-Series - 8GB Memory - 1TB Hard Drive - Blue\", 'description_short' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD A4-Series processor; 8GB memory; 1TB hard driveSpecial features: Built-in wireless networking; HDMI output\", 'description_long' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD A4-Series processor; 8GB memory; 1TB hard driveSpecial features: Built-in wireless networking; HDMI output\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cybertronpc-patriot-desktop-amd-a4-series-8gb-memory-1tb-hard-drive-blue/1625356.p?id=1219058141034&skuId=1625356', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308478409\\/1308478409_sa.jpg\"}', 'upc' => '844750019994', 'provider' => 'bestbuy'],\n ['name' => \"CybertronPC - Hellion Desktop - AMD FX-Series - 16GB Memory - 1TB Hard Drive - Black/Orange\", 'description_short' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD FX-Series processor; 16GB memory; 1TB hard driveSpecial features: 2GB dedicated graphics; built-in wireless networking; HDMI output\", 'description_long' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD FX-Series processor; 16GB memory; 1TB hard driveSpecial features: 2GB dedicated graphics; built-in wireless networking; HDMI output\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cybertronpc-hellion-desktop-amd-fx-series-16gb-memory-1tb-hard-drive-black-orange/1625365.p?id=1219058138003&skuId=1625365', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308478515\\/1308478515_sa.jpg\"}', 'upc' => '844750019925', 'provider' => 'bestbuy'],\n ['name' => \"CybertronPC - Hellion Desktop - AMD FX-Series - 16GB Memory - 1TB Hard Drive - Black\", 'description_short' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD FX-Series processor; 16GB memory; 1TB hard driveSpecial features: 2GB dedicated graphics; built-in wireless networking; HDMI output\", 'description_long' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD FX-Series processor; 16GB memory; 1TB hard driveSpecial features: 2GB dedicated graphics; built-in wireless networking; HDMI output\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cybertronpc-hellion-desktop-amd-fx-series-16gb-memory-1tb-hard-drive-black/1625461.p?id=1219058148324&skuId=1625461', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308478492\\/1308478492_sa.jpg\"}', 'upc' => '844750019901', 'provider' => 'bestbuy'],\n ['name' => \"CybertronPC - Minotaur Maximus Desktop - Intel Core i5 - 16GB Memory - 2TB Hard Drive + 120GB Solid State Drive - Red\", 'description_short' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: 4th Gen Intel&#174; Core&#8482; i5 processor; 16GB memory; 2TB hard drive; 120GB solid state driveSpecial features: Blu-ray playback; 4GB dedicated graphics; built-in wireless networking\", 'description_long' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: 4th Gen Intel&#174; Core&#8482; i5 processor; 16GB memory; 2TB hard drive; 120GB solid state driveSpecial features: Blu-ray playback; 4GB dedicated graphics; built-in wireless networking\", 'price' => 2599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cybertronpc-minotaur-maximus-desktop-intel-core-i5-16gb-memory-2tb-hard-drive-120gb-solid-state-drive-red/1625489.p?id=1219058141438&skuId=1625489', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1625\\/1625489_sa.jpg\"}', 'upc' => '844750020020', 'provider' => 'bestbuy'],\n ['name' => \"CybertronPC - Hellion Desktop - AMD FX-Series - 16GB Memory - 1TB Hard Drive - Red\", 'description_short' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD FX-Series processor; 16GB memory; 1TB hard driveSpecial features: 2GB dedicated graphics; built-in wireless networking; HDMI output\", 'description_long' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD FX-Series processor; 16GB memory; 1TB hard driveSpecial features: 2GB dedicated graphics; built-in wireless networking; HDMI output\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cybertronpc-hellion-desktop-amd-fx-series-16gb-memory-1tb-hard-drive-red/1625504.p?id=1219058146951&skuId=1625504', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308478522\\/1308478522_sa.jpg\"}', 'upc' => '844750019932', 'provider' => 'bestbuy'],\n ['name' => \"CybertronPC - Patriot Desktop - AMD A4-Series - 8GB Memory - 1TB Hard Drive - Red\", 'description_short' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD A4-Series processor; 8GB memory; 1TB hard driveSpecial features: Built-in wireless networking; HDMI output\", 'description_long' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD A4-Series processor; 8GB memory; 1TB hard driveSpecial features: Built-in wireless networking; HDMI output\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cybertronpc-patriot-desktop-amd-a4-series-8gb-memory-1tb-hard-drive-red/1625531.p?id=1219058143525&skuId=1625531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308478416\\/1308478416_sa.jpg\"}', 'upc' => '844750020013', 'provider' => 'bestbuy'],\n ['name' => \"CybertronPC - Hellion Desktop - AMD FX-Series - 16GB Memory - 1TB Hard Drive - Blue\", 'description_short' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD FX-Series processor; 16GB memory; 1TB hard driveSpecial features: 2GB dedicated graphics; built-in wireless networking; HDMI output\", 'description_long' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: AMD FX-Series processor; 16GB memory; 1TB hard driveSpecial features: 2GB dedicated graphics; built-in wireless networking; HDMI output\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cybertronpc-hellion-desktop-amd-fx-series-16gb-memory-1tb-hard-drive-blue/1625559.p?id=1219058140902&skuId=1625559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308478508\\/1308478508_sa.jpg\"}', 'upc' => '844750019918', 'provider' => 'bestbuy'],\n ['name' => \"CybertronPC - Minotaur Desktop - Intel Core i5 - 16GB Memory - 2TB Hard Drive + 120GB Solid State Drive - Red\", 'description_short' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: 4th Gen Intel&#174; Core&#8482; i5 processor; 16GB memory; 2TB hard drive; 120GB solid state driveSpecial features: Blu-ray playback; 2GB dedicated graphics; built-in wireless networking\", 'description_long' => \"Windows 8, upgrade to Windows 10 for freeTechnical details: 4th Gen Intel&#174; Core&#8482; i5 processor; 16GB memory; 2TB hard drive; 120GB solid state driveSpecial features: Blu-ray playback; 2GB dedicated graphics; built-in wireless networking\", 'price' => 1999.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cybertronpc-minotaur-desktop-intel-core-i5-16gb-memory-2tb-hard-drive-120gb-solid-state-drive-red/1625638.p?id=1219058138261&skuId=1625638', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625638', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1625\\/1625638_sa.jpg\"}', 'upc' => '844750020129', 'provider' => 'bestbuy'],\n ['name' => \"Hall of Fame [Deluxe Edition] [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hall-of-fame-deluxe-edition-pa-digipak-cd/1625692.p?id=2733512&skuId=1625692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1625\\/1625692_sa.jpg\"}', 'upc' => '602537252220', 'provider' => 'bestbuy'],\n ['name' => \"Hall of Fame [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hall-of-fame-pa-cd/1625738.p?id=2733496&skuId=1625738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1625\\/1625738_sa.jpg\"}', 'upc' => '602537252206', 'provider' => 'bestbuy'],\n ['name' => \"Chicago Gaming Company - Gibraltar Pro Foosball Table - Midnight Dust\", 'description_short' => \"Angled playfield corners; single goalie; tongue-and-groove construction; octagonal handles; scratch-resistant playfield; side ball returns; ABS players; wood scoring device; cup holders; ages 8 and up\", 'description_long' => \"Angled playfield corners; single goalie; tongue-and-groove construction; octagonal handles; scratch-resistant playfield; side ball returns; ABS players; wood scoring device; cup holders; ages 8 and up\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicago-gaming-company-gibraltar-pro-foosball-table-midnight-dust/1625783.p?id=1219058147671&skuId=1625783', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1625\\/1625783_500x500_sa.jpg\"}', 'upc' => '660762020120', 'provider' => 'bestbuy'],\n ['name' => \"NETGEAR - ReadyNAS 104 2TB 4-Bay External Network Storage (NAS)\", 'description_short' => \"Gigabit Ethernet; 1 USB 2.0 and 1 eSATA interfaces; 4-Bay NAS; RAIDiator OS operating system; multiple RAID volumes; data transfer rates up to 480 Mbps with USB 2.0\", 'description_long' => \"Gigabit Ethernet; 1 USB 2.0 and 1 eSATA interfaces; 4-Bay NAS; RAIDiator OS operating system; multiple RAID volumes; data transfer rates up to 480 Mbps with USB 2.0\", 'price' => 1014.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/netgear-readynas-104-2tb-4-bay-external-network-storage-nas/1625801.p?id=1219057463744&skuId=1625801', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1625801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1625\\/1625801_sa.jpg\"}', 'upc' => '606449093179', 'provider' => 'bestbuy'],\n ['name' => \"Dirty Harry Collection [5 Discs] [Blu-ray] (Blu-ray Disc) (Collector's Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dirty-harry-collection-5-discs-blu-ray-blu-ray-disc-collectors-edition/1626036.p?id=2076637&skuId=1626036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1626036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1626\\/1626036_sa.jpg\"}', 'upc' => '883929099054', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - Premier Series 12-Cup Coffeemaker - Black\", 'description_short' => \"24-hour programmable design; keep-warm function with auto shutoff; Brew Pause feature; 12-cup carafe with ergonomic handle, knuckle guard and dripless spout\", 'description_long' => \"24-hour programmable design; keep-warm function with auto shutoff; Brew Pause feature; 12-cup carafe with ergonomic handle, knuckle guard and dripless spout\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-premier-series-12-cup-coffeemaker-black/1626072.p?id=1219057564777&skuId=1626072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1626072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1626\\/1626072_rc.jpg\"}', 'upc' => '086279062178', 'provider' => 'bestbuy'],\n ['name' => \"Waring Pro - Professional Wine Center - Black\", 'description_short' => \"Rubberized handsets; brushed-stainless-steel accents; wine opener; electric wine preserver; 2 wine stoppers; foil cutter; charging base unit\", 'description_long' => \"Rubberized handsets; brushed-stainless-steel accents; wine opener; electric wine preserver; 2 wine stoppers; foil cutter; charging base unit\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waring-pro-professional-wine-center-black/1626133.p?id=1219057564771&skuId=1626133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1626133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1626\\/1626133_sc.jpg\"}', 'upc' => '040072020896', 'provider' => 'bestbuy'],\n ['name' => \"JVC - Rechargeable Active Shutter RF 3D Glasses - Black\", 'description_short' => \"Compatible with select JVC D-ILA 3D projectors; utilizes RF (radio frequency) signals; 3D/2D mode selection; optically matched design; up to 100 hours of battery life; lightweight construction\", 'description_long' => \"Compatible with select JVC D-ILA 3D projectors; utilizes RF (radio frequency) signals; 3D/2D mode selection; optically matched design; up to 100 hours of battery life; lightweight construction\", 'price' => 179.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jvc-rechargeable-active-shutter-rf-3d-glasses-black/1626151.p?id=1219058094532&skuId=1626151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1626151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1626\\/1626151_rc.jpg\"}', 'upc' => '046838067297', 'provider' => 'bestbuy'],\n ['name' => \"JVC - Wireless 3D RF Emitter - Black\", 'description_short' => \"Compatible with most JVC 3D projectors and PK-AG3G 3D RF active-shutter glasses; 30&#039; wireless range\", 'description_long' => \"Compatible with most JVC 3D projectors and PK-AG3G 3D RF active-shutter glasses; 30&#039; wireless range\", 'price' => 99.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jvc-wireless-3d-rf-emitter-black/1626212.p?id=1219058091989&skuId=1626212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1626212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1626\\/1626212_sa.jpg\"}', 'upc' => '046838067303', 'provider' => 'bestbuy'],\n ['name' => \"Rocketfish™ - Hard Shell Case for HTC One Cell Phones - Blue\", 'description_short' => \"Compatible with HTC One cell phones; polycarbonate material; 1-piece, snap-on construction; play-through design\", 'description_long' => \"Compatible with HTC One cell phones; polycarbonate material; 1-piece, snap-on construction; play-through design\", 'price' => 24.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/rocketfish-hard-shell-case-for-htc-one-cell-phones-blue/1627008.p?id=1219058096675&skuId=1627008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1627008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1627\\/1627008_sa.jpg\"}', 'upc' => '600603161292', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Accu Cable DMX T-Pack\", 'description_short' => \"From our expanded online assortment; Terminator plug set; one male 3-pin and one male 5-pin plug; 110 ohms\", 'description_long' => \"From our expanded online assortment; Terminator plug set; one male 3-pin and one male 5-pin plug; 110 ohms\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-accu-cable-dmx-t-pack/1627275.p?id=1218274631218&skuId=1627275', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1627275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1627\\/1627275_sa.jpg\"}', 'upc' => '640282015875', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2010-2013 Hyundai Tucson NAV - Black\", 'description_short' => \"Compatible with most 2010-2013 Hyundai Tucson vehicles; allows the installation of an aftermarket radio into a factory dash; storage pocket; single- or double-DIN installation\", 'description_long' => \"Compatible with most 2010-2013 Hyundai Tucson vehicles; allows the installation of an aftermarket radio into a factory dash; storage pocket; single- or double-DIN installation\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2010-2013-hyundai-tucson-nav-black/1627511.p?id=1218665525793&skuId=1627511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1627511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1627\\/1627511_rc.jpg\"}', 'upc' => '086429223336', 'provider' => 'bestbuy'],\n ['name' => \"Machete (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/machete-dvd/1627609.p?id=2169006&skuId=1627609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1627609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1627\\/1627609_sa.jpg\"}', 'upc' => '024543718413', 'provider' => 'bestbuy'],\n ['name' => \"Machete (Blu-ray Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/machete-blu-ray-disc-digital-copy/1627618.p?id=2169006&skuId=1627618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1627618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1627\\/1627618_sa.jpg\"}', 'upc' => '024543718482', 'provider' => 'bestbuy'],\n ['name' => \"DigiPower - Rechargeable Lithium-Ion Battery for Select Sony Digital Cameras - black\", 'description_short' => \"Compatible with select Sony digital cameras; 3.7V; 800 mAh\", 'description_long' => \"Compatible with select Sony digital cameras; 3.7V; 800 mAh\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digipower-rechargeable-lithium-ion-battery-for-select-sony-digital-cameras-black/1627872.p?id=1218408991626&skuId=1627872&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1627872', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1627\\/1627872_sa.jpg\"}', 'upc' => '758302629053', 'provider' => 'bestbuy'],\n ['name' => \"D-Link - 5-Port 10/100/1000 Mbps Gigabit Switch\", 'description_short' => \"ENERGY STAR Certified\nWired; 10/100/1000 Gigabit; increases bandwidth to handle large network loads; D-Link Green Technology; up to 2000 Mbps data transfer rates in full-duplex mode; plug-and-play installation\", 'description_long' => \"ENERGY STAR Certified\nWired; 10/100/1000 Gigabit; increases bandwidth to handle large network loads; D-Link Green Technology; up to 2000 Mbps data transfer rates in full-duplex mode; plug-and-play installation\", 'price' => 49.99, 'sale_price' => 23.99, 'url' => 'http://www.bestbuy.com/site/d-link-5-port-10-100-1000-mbps-gigabit-switch/1628431.p?id=1218274672315&skuId=1628431&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628431_sa.jpg\"}', 'upc' => '790069333132', 'provider' => 'bestbuy'],\n ['name' => \"Levana - Ovia Baby Video Monitor - Black\", 'description_short' => \"Silent camera with pan, tilt and zoom functions; automatic IR night vision up to 15&#039;; 4.3&quot; LCD monitor; ClearVu digital signal; Talk to Baby 2-way intercom; power-saving PEEP mode; video and photo recording; invisible LEDs\", 'description_long' => \"Silent camera with pan, tilt and zoom functions; automatic IR night vision up to 15&#039;; 4.3&quot; LCD monitor; ClearVu digital signal; Talk to Baby 2-way intercom; power-saving PEEP mode; video and photo recording; invisible LEDs\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/levana-ovia-baby-video-monitor-black/1628565.p?id=1219058142870&skuId=1628565', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628565_sa.jpg\"}', 'upc' => '061783256565', 'provider' => 'bestbuy'],\n ['name' => \"Proctor Silex - 60-Cup Coffee Urn - Brushed Aluminum/Black\", 'description_short' => \"Brews approximately 1 cup/minute; gentle warming heater; 1-hand dispensing; coffee-level indicator; ready-to-serve light; tall base; locking lid; cool-touch handles\", 'description_long' => \"Brews approximately 1 cup/minute; gentle warming heater; 1-hand dispensing; coffee-level indicator; ready-to-serve light; tall base; locking lid; cool-touch handles\", 'price' => 83.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/proctor-silex-60-cup-coffee-urn-brushed-aluminum-black/1628583.p?id=1219058146075&skuId=1628583', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628583_rc.jpg\"}', 'upc' => '022333450604', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - 3-Speed Triple-Spindle Drink Mixer - Gray\", 'description_short' => \"Rocker and pulse switches; 2-way motor activation; 3 speeds; three 1/3 HP motors; removable, dishwasher-safe cup guides\", 'description_long' => \"Rocker and pulse switches; 2-way motor activation; 3 speeds; three 1/3 HP motors; removable, dishwasher-safe cup guides\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-3-speed-triple-spindle-drink-mixer-gray/1628617.p?id=1219058140772&skuId=1628617', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628617_rc.jpg\"}', 'upc' => '040094911028', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - Mix 'N Chill Drink Mixer - Stainless-Steel/Black\", 'description_short' => \"On/off rocker switch; rotary dial with variable speed selections; 3/4 HP motor; durable stainless-steel agitator and shaft; removable stainless-steel splash pan; removable plastic splash guard\", 'description_long' => \"On/off rocker switch; rotary dial with variable speed selections; 3/4 HP motor; durable stainless-steel agitator and shaft; removable stainless-steel splash pan; removable plastic splash guard\", 'price' => 793.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-mix-n-chill-drink-mixer-stainless-steel-black/1628626.p?id=1219058144969&skuId=1628626', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628626_rc.jpg\"}', 'upc' => '040094949502', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - 3-Speed Drink Mixer - Gray\", 'description_short' => \"Rocker and pulse switches; 2-way motor activation; 3 speeds; 1/3 HP individually balanced motor; removable cup guide; die-cast metal construction; includes stainless-steel cup\", 'description_long' => \"Rocker and pulse switches; 2-way motor activation; 3 speeds; 1/3 HP individually balanced motor; removable cup guide; die-cast metal construction; includes stainless-steel cup\", 'price' => 321.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-3-speed-drink-mixer-gray/1628635.p?id=1219058146140&skuId=1628635', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628635_rc.jpg\"}', 'upc' => '040094911011', 'provider' => 'bestbuy'],\n ['name' => \"Proctor Silex - 40-Cup Coffee Urn - Brushed Aluminum/Black\", 'description_short' => \"Brews approximately 1 cup/minute; gentle warming heater; 1-hand dispensing; coffee-level indicator; ready-to-serve light; tall base; locking lid; cool-touch handles\", 'description_long' => \"Brews approximately 1 cup/minute; gentle warming heater; 1-hand dispensing; coffee-level indicator; ready-to-serve light; tall base; locking lid; cool-touch handles\", 'price' => 68.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/proctor-silex-40-cup-coffee-urn-brushed-aluminum-black/1628671.p?id=1219058144066&skuId=1628671', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628671_rc.jpg\"}', 'upc' => '022333450406', 'provider' => 'bestbuy'],\n ['name' => \"Proctor Silex - 18-Quart Roaster Oven/Warmer - Stainless-Steel/Black\", 'description_short' => \"Cook, warm, roast and bake functions; temperature settings from 200&#176; to 450&#176;; stainless-steel construction; heavy-duty high-dome lid; cool-touch handles\", 'description_long' => \"Cook, warm, roast and bake functions; temperature settings from 200&#176; to 450&#176;; stainless-steel construction; heavy-duty high-dome lid; cool-touch handles\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/proctor-silex-18-quart-roaster-oven-warmer-stainless-steel-black/1628699.p?id=1219058138078&skuId=1628699', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628699_rc.jpg\"}', 'upc' => '022333329184', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - Juicer - Midnight Blue\", 'description_short' => \"Sealed push button on/off switch; 3 reinforced reamers with a rib design; extra-tall open spout; electric-powered motor; crescent-shape footprint; metal housing; includes stainless-steel container and strainer\", 'description_long' => \"Sealed push button on/off switch; 3 reinforced reamers with a rib design; extra-tall open spout; electric-powered motor; crescent-shape footprint; metal housing; includes stainless-steel container and strainer\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-juicer-midnight-blue/1628708.p?id=1219058148456&skuId=1628708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628708_rc.jpg\"}', 'upc' => '040094967001', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - Tournant 64-Oz. Blender - Gray\", 'description_short' => \"Speed dial; high-speed, pulse, variable-speed and one-touch chopping functions; 3 HP motor; jar-pad sensor; temperature gauge; includes container, Sure Grip feet and blade assembly unit\", 'description_long' => \"Speed dial; high-speed, pulse, variable-speed and one-touch chopping functions; 3 HP motor; jar-pad sensor; temperature gauge; includes container, Sure Grip feet and blade assembly unit\", 'price' => 565.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-tournant-64-oz-blender-gray/1628726.p?id=1219058139924&skuId=1628726', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628726_rc.jpg\"}', 'upc' => '040094915798', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - 2-Speed Hand Mixer - Black\", 'description_short' => \"2 speeds; 175W motor; 4 blades with 5 cutting edges; blade guard; storage hook; double-insulated cord; 9&quot; stainless-steel shaft; ABS handle; includes chopping attachment and polysulfone cap\", 'description_long' => \"2 speeds; 175W motor; 4 blades with 5 cutting edges; blade guard; storage hook; double-insulated cord; 9&quot; stainless-steel shaft; ABS handle; includes chopping attachment and polysulfone cap\", 'price' => 124.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-2-speed-hand-mixer-black/1628735.p?id=1219058138920&skuId=1628735', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628735', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628735_rc.jpg\"}', 'upc' => '040094908554', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - Wall-Mount Drink Mixer - Gray\", 'description_short' => \"Sealed on/off switch; 250W motor; removable cup guide and cup rest; wall-mountable design; die-cast stainless-steel construction; includes agitator and mounting hardware\", 'description_long' => \"Sealed on/off switch; 250W motor; removable cup guide and cup rest; wall-mountable design; die-cast stainless-steel construction; includes agitator and mounting hardware\", 'price' => 321.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-wall-mount-drink-mixer-gray/1628744.p?id=1219058143725&skuId=1628744', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628744_rc.jpg\"}', 'upc' => '040094916955', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - Revolution 64-Oz. Ice Shaver Blender - Black\", 'description_short' => \"Touchpad controls; Revolution portion system; Wave-Action system; double-wall hopper; sensor technology; stainless-steel blade; includes 64-oz. container, base, ice chute and leveling feet\", 'description_long' => \"Touchpad controls; Revolution portion system; Wave-Action system; double-wall hopper; sensor technology; stainless-steel blade; includes 64-oz. container, base, ice chute and leveling feet\", 'price' => 2425.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-revolution-64-oz-ice-shaver-blender-black/1628771.p?id=1219058148715&skuId=1628771', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628771_rc.jpg\"}', 'upc' => '040094912704', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - 128-Oz. Blender - Black/Gray\", 'description_short' => \"2 speeds; pulse option; 3/4 HP motor; 4-stainless-steel blades; self-aligning collar; 3-wire grounded plug; includes 128-oz. stainless-steel container, Sure Grip feet and blade-unit-removal accessory\", 'description_long' => \"2 speeds; pulse option; 3/4 HP motor; 4-stainless-steel blades; self-aligning collar; 3-wire grounded plug; includes 128-oz. stainless-steel container, Sure Grip feet and blade-unit-removal accessory\", 'price' => 929.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-128-oz-blender-black-gray/1628808.p?id=1219058143791&skuId=1628808', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628808_rc.jpg\"}', 'upc' => '040094019908', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - Manual Juice Extractor - Black\", 'description_short' => \"Black\", 'description_long' => \"Black\", 'price' => 194.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-manual-juice-extractor-black/1628817.p?id=1219058146271&skuId=1628817', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628817_sc.jpg\"}', 'upc' => '040094040209', 'provider' => 'bestbuy'],\n ['name' => \"Motorola - NiMH AAA Upgrade Kit for Motorola Talkabout MH Series Radios - Black\", 'description_short' => \"Compatible with Motorola Talkabout MH series radios; includes 2 rechargeable NiMH batteries, a dual-charging base, 2 charging pocket inserts and an AC wall adapter\", 'description_long' => \"Compatible with Motorola Talkabout MH series radios; includes 2 rechargeable NiMH batteries, a dual-charging base, 2 charging pocket inserts and an AC wall adapter\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/motorola-nimh-aaa-upgrade-kit-for-motorola-talkabout-mh-series-radios-black/1628899.p?id=1219058096605&skuId=1628899', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1628899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1628\\/1628899_sa.jpg\"}', 'upc' => '843677000986', 'provider' => 'bestbuy'],\n ['name' => \"ZeroWater - Travel Bottle Filters (2-Pack) - Blue/White\", 'description_short' => \"Compatible with most ZeroWater travel water bottles; features a 5-stage ion-exchange filter; color-changing filter-replacement notification; 2-pack\", 'description_long' => \"Compatible with most ZeroWater travel water bottles; features a 5-stage ion-exchange filter; color-changing filter-replacement notification; 2-pack\", 'price' => 14.99, 'sale_price' => 13.99, 'url' => 'http://www.bestbuy.com/site/zerowater-travel-bottle-filters-2-pack-blue-white/1629149.p?id=1219058302966&skuId=1629149', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629149_500x500_sa.jpg\"}', 'upc' => '188781000478', 'provider' => 'bestbuy'],\n ['name' => \"Techko Maid - Dry Cloths for Techko Maid RV318 Robotic Vacuum, High-Speed Sweeper and Mopping Machines (24-Pack)\", 'description_short' => \"Compatible with Techko Maid RV318 robotic vacuum, high-speed sweeper and mopping machines; disposable design; 24-pack\", 'description_long' => \"Compatible with Techko Maid RV318 robotic vacuum, high-speed sweeper and mopping machines; disposable design; 24-pack\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/techko-maid-dry-cloths-for-techko-maid-rv318-robotic-vacuum-high-speed-sweeper-and-mopping-machines-24-pack/1629176.p?id=1219058094534&skuId=1629176', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629176_500x500_sa.jpg\"}', 'upc' => '014575021001', 'provider' => 'bestbuy'],\n ['name' => \"Techko Maid - Wet Cloths for Techko Maid RV318 Robotic Vacuum, High-Speed Sweeper and Mopping Machines (12-Pack)\", 'description_short' => \"Compatible with Techko Maid RV318 robotic vacuum, high-speed sweeper and mopping machines; disposable design; 12-pack\", 'description_long' => \"Compatible with Techko Maid RV318 robotic vacuum, high-speed sweeper and mopping machines; disposable design; 12-pack\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/techko-maid-wet-cloths-for-techko-maid-rv318-robotic-vacuum-high-speed-sweeper-and-mopping-machines-12-pack/1629194.p?id=1219058367000&skuId=1629194', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629194_500x500_sa.jpg\"}', 'upc' => '014575022008', 'provider' => 'bestbuy'],\n ['name' => \"Techko Maid - Self-Propelled Robotic High-Speed Sweeper and Mopping Machine - Silver\", 'description_short' => \"One-touch operation; digitally coded light source technology; preprogrammed and random pattern movements; side brush; touch-sensitive bumpers; automatic shutoff\", 'description_long' => \"One-touch operation; digitally coded light source technology; preprogrammed and random pattern movements; side brush; touch-sensitive bumpers; automatic shutoff\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/techko-maid-self-propelled-robotic-high-speed-sweeper-and-mopping-machine-silver/1629228.p?id=1219058096078&skuId=1629228', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629228_sa.jpg\"}', 'upc' => '014575118008', 'provider' => 'bestbuy'],\n ['name' => \"Techko Maid - Wet Cloths for Techko Maid RM518 and RS118 Robotic High-Speed Sweeper and Mopping Machines (12-Pack)\", 'description_short' => \"Compatible with Techko Maid RM518 and RS118 robotic high-speed sweeper and mopping machines; disposable design; 12-pack\", 'description_long' => \"Compatible with Techko Maid RM518 and RS118 robotic high-speed sweeper and mopping machines; disposable design; 12-pack\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/techko-maid-wet-cloths-for-techko-maid-rm518-and-rs118-robotic-high-speed-sweeper-and-mopping-machines-12-pack/1629246.p?id=1219058094536&skuId=1629246', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629246_500x500_sa.jpg\"}', 'upc' => '014575012009', 'provider' => 'bestbuy'],\n ['name' => \"Techko Maid - Dry Cloths for Techko Maid RV118 Robotic High-Speed Sweeper and Mopping Machines (24-Pack)\", 'description_short' => \"Compatible with Techko Maid RV118 robotic high-speed sweeper and mopping machines; disposable design; 24-pack\", 'description_long' => \"Compatible with Techko Maid RV118 robotic high-speed sweeper and mopping machines; disposable design; 24-pack\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/techko-maid-dry-cloths-for-techko-maid-rv118-robotic-high-speed-sweeper-and-mopping-machines-24-pack/1629255.p?id=1219058094537&skuId=1629255', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629255_500x500_sa.jpg\"}', 'upc' => '014575011002', 'provider' => 'bestbuy'],\n ['name' => \"Hollow Crown: Complete Series (4 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => 24.99, 'url' => 'http://www.bestbuy.com/site/hollow-crown-complete-series-4-disc-dvd-boxed-set/1629291.p?id=2730393&skuId=1629291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629291.jpg\"}', 'upc' => '025192170256', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: The Complete First Series [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 68.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-the-complete-first-series-5-discs-dvd/1629398.p?id=2496882&skuId=1629398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1629398.jpg\"}', 'upc' => '883929262205', 'provider' => 'bestbuy'],\n ['name' => \"Naruto: Shippuden - The Movie: The Lost Tower (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naruto-shippuden-the-movie-the-lost-tower-dvd/1629412.p?id=2718051&skuId=1629412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629412_sa.jpg\"}', 'upc' => '782009242710', 'provider' => 'bestbuy'],\n ['name' => \"Naruto: Shippuden - The Movie: The Lost Tower (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naruto-shippuden-the-movie-the-lost-tower-blu-ray-disc/1629421.p?id=2718051&skuId=1629421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629421.jpg\"}', 'upc' => '782009242727', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Scream of the Shalka (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-scream-of-the-shalka-dvd/1629467.p?id=2727795&skuId=1629467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629467_sa.jpg\"}', 'upc' => '883929334537', 'provider' => 'bestbuy'],\n ['name' => \"League: Season 4 [2 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/league-season-4-2-discs-blu-ray-disc/1629528.p?id=2734613&skuId=1629528&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629528', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629528.jpg\"}', 'upc' => '024543854135', 'provider' => 'bestbuy'],\n ['name' => \"It's Always Sunny n Philadelphia: Season 8 [2 discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-always-sunny-n-philadelphia-season-8-2-discs-blu-ray-disc/1629546.p?id=2730680&skuId=1629546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629546_sa.jpg\"}', 'upc' => '024543869054', 'provider' => 'bestbuy'],\n ['name' => \"Alphas: Season Two [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alphas-season-two-3-discs-dvd/1629555.p?id=2708649&skuId=1629555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629555_sa.jpg\"}', 'upc' => '025192165405', 'provider' => 'bestbuy'],\n ['name' => \"Beauty and the Beast: First Season [6 Discs] (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beauty-and-the-beast-first-season-6-discs-boxed-set-dvd/1629564.p?id=2729406&skuId=1629564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629564_sa.jpg\"}', 'upc' => '097361443041', 'provider' => 'bestbuy'],\n ['name' => \"Teenage Mutant Ninja Turtles: Ultimate Showdown (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teenage-mutant-ninja-turtles-ultimate-showdown-dvd/1629573.p?id=2729418&skuId=1629573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1629573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1629\\/1629573.jpg\"}', 'upc' => '097368045644', 'provider' => 'bestbuy'],\n ['name' => \"Rodney Yee's Yoga for Energy & Stress Relief (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rodney-yees-yoga-for-energy-stress-relief-dvd/1630084.p?id=2721851&skuId=1630084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1630084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1630\\/1630084_sa.jpg\"}', 'upc' => '018713607379', 'provider' => 'bestbuy'],\n ['name' => \"Ghost Rider (Blu-ray Disc) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ghost-rider-blu-ray-disc-unrated/1631029.p?id=1637676&skuId=1631029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631029_sa.jpg\"}', 'upc' => '043396366435', 'provider' => 'bestbuy'],\n ['name' => \"The Universe: 7 Wonders of the Solar System (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-universe-7-wonders-of-the-solar-system-blu-ray-disc/1631038.p?id=2167844&skuId=1631038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631038.jpg\"}', 'upc' => '733961236651', 'provider' => 'bestbuy'],\n ['name' => \"Restrepo (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/restrepo-blu-ray-disc/1631047.p?id=2152046&skuId=1631047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631047_sa.jpg\"}', 'upc' => '829567074220', 'provider' => 'bestbuy'],\n ['name' => \"The Situation Workout (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-situation-workout-dvd/1631056.p?id=2149904&skuId=1631056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631056_sa.jpg\"}', 'upc' => '018713578372', 'provider' => 'bestbuy'],\n ['name' => \"Exit Through the Gift Shop (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exit-through-the-gift-shop-dvd/1631083.p?id=2163683&skuId=1631083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631083_sa.jpg\"}', 'upc' => '896602002326', 'provider' => 'bestbuy'],\n ['name' => \"Super Mario Bros. Super Show!: The Best Of (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-mario-bros-super-show-the-best-of-dvd/1631092.p?id=1951643&skuId=1631092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631092_sa.jpg\"}', 'upc' => '843501001097', 'provider' => 'bestbuy'],\n ['name' => \"9th Company (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/9th-company-dvd/1631108.p?id=2119240&skuId=1631108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631108_sa.jpg\"}', 'upc' => '812491011478', 'provider' => 'bestbuy'],\n ['name' => \"Restrepo (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/restrepo-dvd/1631117.p?id=2152046&skuId=1631117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631117_sa.jpg\"}', 'upc' => '829567073322', 'provider' => 'bestbuy'],\n ['name' => \"MLB: San Francisco Giants - 2010 World Series (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mlb-san-francisco-giants-2010-world-series-dvd/1631126.p?id=2150849&skuId=1631126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631126_sa.jpg\"}', 'upc' => '733961237078', 'provider' => 'bestbuy'],\n ['name' => \"Winnebago Man (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winnebago-man-dvd/1631135.p?id=2154712&skuId=1631135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631135_sa.jpg\"}', 'upc' => '738329069223', 'provider' => 'bestbuy'],\n ['name' => \"Jillian Michaels for Beginners: Backside (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jillian-michaels-for-beginners-backside-dvd/1631144.p?id=1606644&skuId=1631144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1631144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1631\\/1631144_sa.jpg\"}', 'upc' => '018713578532', 'provider' => 'bestbuy'],\n ['name' => \"Hellraiser (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hellraiser-blu-ray-disc/1632019.p?id=53173&skuId=1632019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1632019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1632\\/1632019_sa.jpg\"}', 'upc' => '014381732450', 'provider' => 'bestbuy'],\n ['name' => \"Sony - Alpha a7 II Full-Frame Mirrorless Camera (Body Only) - Black\", 'description_short' => \"24.3-megapixel full-frame Exmor CMOS sensorISO 100-25,600Shooting speeds up to 5 fpsFast Hybrid autofocusBuilt-in Wi-Fi and NFC (near-field communication)\", 'description_long' => \"24.3-megapixel full-frame Exmor CMOS sensorISO 100-25,600Shooting speeds up to 5 fpsFast Hybrid autofocusBuilt-in Wi-Fi and NFC (near-field communication)\", 'price' => 1699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-alpha-a7-ii-full-frame-mirrorless-camera-body-only-black/1633004.p?id=1219503851391&skuId=1633004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1633004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1633\\/1633004_sa.jpg\"}', 'upc' => '027242888722', 'provider' => 'bestbuy'],\n ['name' => \"Nicolas Cage Double Feature (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nicolas-cage-double-feature-dvd/1633018.p?id=2679453&skuId=1633018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1633018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1633\\/1633018_sa.jpg\"}', 'upc' => '014381811926', 'provider' => 'bestbuy'],\n ['name' => \"Cowboy Bebop: The Movie/American Pop [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cowboy-bebop-the-movie-american-pop-2-discs-dvd/1633027.p?id=2417772&skuId=1633027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1633027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1633\\/1633027_sa.jpg\"}', 'upc' => '014381800524', 'provider' => 'bestbuy'],\n ['name' => \"Jet LI Double Feature (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jet-li-double-feature-dvd/1633063.p?id=2679627&skuId=1633063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1633063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1633\\/1633063_sa.jpg\"}', 'upc' => '014381838626', 'provider' => 'bestbuy'],\n ['name' => \"The Hills Have Eyes (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hills-have-eyes-blu-ray-disc/1633124.p?id=719782&skuId=1633124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1633124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1633\\/1633124_sa.jpg\"}', 'upc' => '014381724554', 'provider' => 'bestbuy'],\n ['name' => \"Tides [Digipak] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tides-digipak-cd-various/1633488.p?id=2726479&skuId=1633488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1633488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1633\\/1633488_sa.jpg\"}', 'upc' => '799632177395', 'provider' => 'bestbuy'],\n ['name' => \"Pride: A Tribute to Charley Pride - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pride-a-tribute-to-charley-pride-cd/1633497.p?id=2729075&skuId=1633497&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1633497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1633\\/1633497_sa.jpg\"}', 'upc' => '662582717426', 'provider' => 'bestbuy'],\n ['name' => \"Alabama & Friends - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alabama-friends-cd-various/1633503.p?id=2736629&skuId=1633503&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1633503', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1633\\/1633503_sa.jpg\"}', 'upc' => '602537433940', 'provider' => 'bestbuy'],\n ['name' => \"A.M. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-m-cd/1633512.p?id=2732139&skuId=1633512&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1633512', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1633\\/1633512_sa.jpg\"}', 'upc' => '888837326421', 'provider' => 'bestbuy'],\n ['name' => \"Hesitation Marks [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hesitation-marks-digipak-cd/1633558.p?id=2719883&skuId=1633558&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1633558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1633\\/1633558_sa.jpg\"}', 'upc' => '888837449526', 'provider' => 'bestbuy'],\n ['name' => \"Sony - Alpha a7 II Full-Frame Mirrorless Camera with 28-70mm Lens - Black\", 'description_short' => \"24.3-megapixel full-frame Exmor CMOS sensorISO 100-25,600Shooting speeds up to 5 fpsFast Hybrid autofocusBuilt-in Wi-Fi and NFC (near-field communication)\", 'description_long' => \"24.3-megapixel full-frame Exmor CMOS sensorISO 100-25,600Shooting speeds up to 5 fpsFast Hybrid autofocusBuilt-in Wi-Fi and NFC (near-field communication)\", 'price' => 1999.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sony-alpha-a7-ii-full-frame-mirrorless-camera-with-28-70mm-lens-black/1634012.p?id=1219503851392&skuId=1634012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1634012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1634\\/1634012_sa.jpg\"}', 'upc' => '027242888739', 'provider' => 'bestbuy'],\n ['name' => \"Appreciation Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/appreciation-day-cd/1634017.p?id=2734496&skuId=1634017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1634017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1634\\/1634017.jpg\"}', 'upc' => '075678766732', 'provider' => 'bestbuy'],\n ['name' => \"These Are My Sins - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/these-are-my-sins-cd/1635195.p?id=2141219&skuId=1635195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1635195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1635\\/1635195_sa.jpg\"}', 'upc' => '894587001365', 'provider' => 'bestbuy'],\n ['name' => \"III/IV [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iii-iv-digipak-cd/1635229.p?id=2170910&skuId=1635229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1635229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1635\\/1635229_sa.jpg\"}', 'upc' => '851007003002', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Defender Series Case for Samsung Galaxy S 4 Cell Phones - Gunmetal Gray\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; polycarbonate inner shell; outer slipcover; built-in screen protector; port plugs; play-through design; includes a belt-clip holster\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; polycarbonate inner shell; outer slipcover; built-in screen protector; port plugs; play-through design; includes a belt-clip holster\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/otterbox-defender-series-case-for-samsung-galaxy-s-4-cell-phones-gunmetal-gray/1635953.p?id=1219058141101&skuId=1635953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1635953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1635\\/1635953_sa.jpg\"}', 'upc' => '660543019893', 'provider' => 'bestbuy'],\n ['name' => \"Tavik - Synth Hard Shell Case for Apple iPhone 6 Plus - Clear/Black\", 'description_short' => \"Compatible with Apple iPhone 6 Plus; TPU material; shock absorbent; nonslip grip; play-through design\", 'description_long' => \"Compatible with Apple iPhone 6 Plus; TPU material; shock absorbent; nonslip grip; play-through design\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tavik-synth-hard-shell-case-for-apple-iphone-6-plus-clear-black/1636029.p?id=1219507976204&skuId=1636029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636029_sa.jpg\"}', 'upc' => '848691080815', 'provider' => 'bestbuy'],\n ['name' => \"WYWH [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wywh-digipak-cd/1636033.p?id=2166857&skuId=1636033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636033.jpg\"}', 'upc' => '616892110262', 'provider' => 'bestbuy'],\n ['name' => \"Tavik - Synth Hard Shell Case for Apple iPhone 6 Plus - Purple/Red\", 'description_short' => \"Compatible with Apple iPhone 6 Plus; TPU material; shock absorbent; nonslip grip; play-through design\", 'description_long' => \"Compatible with Apple iPhone 6 Plus; TPU material; shock absorbent; nonslip grip; play-through design\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tavik-synth-hard-shell-case-for-apple-iphone-6-plus-purple-red/1636047.p?id=1219507978744&skuId=1636047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636047_sa.jpg\"}', 'upc' => '848691080822', 'provider' => 'bestbuy'],\n ['name' => \"Amoral - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amoral-cd/1636051.p?id=2166858&skuId=1636051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636051_sa.jpg\"}', 'upc' => '616892111566', 'provider' => 'bestbuy'],\n ['name' => \"Tavik - Outer Edge Bumper Case for Apple® iPhone® 6 - White/Magenta\", 'description_short' => \"Compatible with Apple iPhone 6; slim profile; play-through design; shock absorbent; nonslip grip\", 'description_long' => \"Compatible with Apple iPhone 6; slim profile; play-through design; shock absorbent; nonslip grip\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tavik-outer-edge-bumper-case-for-apple-iphone-6-white-magenta/1636074.p?id=1219507980687&skuId=1636074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636074_sa.jpg\"}', 'upc' => '848691080761', 'provider' => 'bestbuy'],\n ['name' => \"Tavik - Workwear Fabric Snap-On Case for Apple iPhone 6 - Camo\", 'description_short' => \"Compatible with Apple iPhone 6; fabric exterior; EVA lining; shock absorbent; nonslip grip; play-through design\", 'description_long' => \"Compatible with Apple iPhone 6; fabric exterior; EVA lining; shock absorbent; nonslip grip; play-through design\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tavik-workwear-fabric-snap-on-case-for-apple-iphone-6-camo/1636092.p?id=1219507982252&skuId=1636092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636092_sa.jpg\"}', 'upc' => '848691080808', 'provider' => 'bestbuy'],\n ['name' => \"Tavik - Workwear Fabric Snap-On Case for Apple iPhone 6 - Black Denim\", 'description_short' => \"Compatible with Apple iPhone 6; fabric exterior; EVA lining; shock absorbent; nonslip grip; play-through design\", 'description_long' => \"Compatible with Apple iPhone 6; fabric exterior; EVA lining; shock absorbent; nonslip grip; play-through design\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tavik-workwear-fabric-snap-on-case-for-apple-iphone-6-black-denim/1636116.p?id=1219507978273&skuId=1636116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636116_sa.jpg\"}', 'upc' => '848691080792', 'provider' => 'bestbuy'],\n ['name' => \"V-MODA - CROSSFADE M-100 Over-the-Ear Headphones - White Silver\", 'description_short' => \"Analog noise isolation; 50mm dual-diaphragm drivers; audiophile tuning; dual inputs and V-CORK; folding design; 1-button SpeakEasy microphone cable; SharePlay audio cable\", 'description_long' => \"Analog noise isolation; 50mm dual-diaphragm drivers; audiophile tuning; dual inputs and V-CORK; folding design; 1-button SpeakEasy microphone cable; SharePlay audio cable\", 'price' => 249.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-moda-crossfade-m-100-over-the-ear-headphones-white-silver/1636816.p?id=1219058300872&skuId=1636816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636816_sa.jpg\"}', 'upc' => '877653005658', 'provider' => 'bestbuy'],\n ['name' => \"V-MODA - CROSSFADE M-100 Over-the-Ear Headphones - Black\", 'description_short' => \"Analog noise isolation; 50mm dual-diaphragm drivers; audiophile tuning; dual inputs and V-CORK; folding design; 1-button SpeakEasy microphone cable; SharePlay audio cable\", 'description_long' => \"Analog noise isolation; 50mm dual-diaphragm drivers; audiophile tuning; dual inputs and V-CORK; folding design; 1-button SpeakEasy microphone cable; SharePlay audio cable\", 'price' => 249.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-moda-crossfade-m-100-over-the-ear-headphones-black/1636825.p?id=1219058299172&skuId=1636825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636825_sa.jpg\"}', 'upc' => '877653005238', 'provider' => 'bestbuy'],\n ['name' => \"V-MODA - METALLO Case for Apple® iPhone® 5 and 5s - Black\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; VERZADOCK mount; metal construction; sliding-lock mechanism\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; VERZADOCK mount; metal construction; sliding-lock mechanism\", 'price' => 99.98, 'sale_price' => 55.99, 'url' => 'http://www.bestbuy.com/site/v-moda-metallo-case-for-apple-iphone-5-and-5s-black/1636843.p?id=1219058145424&skuId=1636843', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636843_sa.jpg\"}', 'upc' => '877653006099', 'provider' => 'bestbuy'],\n ['name' => \"V-MODA - VAMP VERZA Headphone Amplifier, Digital-to-Analog Converter and Battery Pack\", 'description_short' => \"Compatible with select Apple&#174; and Android devices and computers; rotary volume control with high/low gain; bass/3D button; 2 dedicated DACs; Burr Brown and AKM DAC\", 'description_long' => \"Compatible with select Apple&#174; and Android devices and computers; rotary volume control with high/low gain; bass/3D button; 2 dedicated DACs; Burr Brown and AKM DAC\", 'price' => 599.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-moda-vamp-verza-headphone-amplifier-digital-to-analog-converter-and-battery-pack/1636852.p?id=1219058148651&skuId=1636852', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636852_500x500_sa.jpg\"}', 'upc' => '877653005863', 'provider' => 'bestbuy'],\n ['name' => \"V-MODA - METALLO Case for Samsung Galaxy S III - Silver\", 'description_short' => \"Compatible with Samsung Galaxy S III; VERZADOCK mount; metal construction; sliding-lock mechanism\", 'description_long' => \"Compatible with Samsung Galaxy S III; VERZADOCK mount; metal construction; sliding-lock mechanism\", 'price' => 99.98, 'sale_price' => 55.99, 'url' => 'http://www.bestbuy.com/site/v-moda-metallo-case-for-samsung-galaxy-s-iii-silver/1636889.p?id=1219058141166&skuId=1636889', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636889_sa.jpg\"}', 'upc' => '877653006143', 'provider' => 'bestbuy'],\n ['name' => \"V-MODA - CROSSFADE M-100 Over-the-Ear Headphones - Shadow\", 'description_short' => \"Analog noise isolation; 50mm dual-diaphragm drivers; audiophile tuning; dual inputs and V-CORK; folding design; 1-button SpeakEasy microphone cable; SharePlay audio cable\", 'description_long' => \"Analog noise isolation; 50mm dual-diaphragm drivers; audiophile tuning; dual inputs and V-CORK; folding design; 1-button SpeakEasy microphone cable; SharePlay audio cable\", 'price' => 249.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-moda-crossfade-m-100-over-the-ear-headphones-shadow/1636898.p?id=1219058138601&skuId=1636898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1307\\/1307989937\\/1307989937_sa.jpg\"}', 'upc' => '877653005252', 'provider' => 'bestbuy'],\n ['name' => \"V-MODA - METALLO Case for Samsung Galaxy S III - Black\", 'description_short' => \"Compatible with Samsung Galaxy S III; VERZADOCK mount; metal construction; sliding-lock mechanism\", 'description_long' => \"Compatible with Samsung Galaxy S III; VERZADOCK mount; metal construction; sliding-lock mechanism\", 'price' => 99.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-moda-metallo-case-for-samsung-galaxy-s-iii-black/1636907.p?id=1219058300360&skuId=1636907', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636907_sa.jpg\"}', 'upc' => '877653006136', 'provider' => 'bestbuy'],\n ['name' => \"V-MODA - VAMP VERZA Headphone Amplifier, Digital-to-Analog Converter and Battery Pack\", 'description_short' => \"Compatible with select Apple&#174; and Android devices and computers; rotary volume control with high/low gain; bass/3D button; 2 dedicated DACs; Burr Brown and AKM DAC\", 'description_long' => \"Compatible with select Apple&#174; and Android devices and computers; rotary volume control with high/low gain; bass/3D button; 2 dedicated DACs; Burr Brown and AKM DAC\", 'price' => 599.98, 'sale_price' => 578.99, 'url' => 'http://www.bestbuy.com/site/v-moda-vamp-verza-headphone-amplifier-digital-to-analog-converter-and-battery-pack/1636916.p?id=1219058144509&skuId=1636916', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636916', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636916_500x500_sa.jpg\"}', 'upc' => '877653005870', 'provider' => 'bestbuy'],\n ['name' => \"V-MODA - METALLO Case for Samsung Galaxy S III - Red\", 'description_short' => \"Compatible with Samsung Galaxy S III; VERZADOCK mount; metal construction; sliding-lock mechanism\", 'description_long' => \"Compatible with Samsung Galaxy S III; VERZADOCK mount; metal construction; sliding-lock mechanism\", 'price' => 99.99, 'sale_price' => 55.99, 'url' => 'http://www.bestbuy.com/site/v-moda-metallo-case-for-samsung-galaxy-s-iii-red/1636925.p?id=1219058134831&skuId=1636925', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1636925', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1636\\/1636925_sa.jpg\"}', 'upc' => '877653006150', 'provider' => 'bestbuy'],\n ['name' => \"Platinum - Quick Charge Wall Charger - Black\", 'description_short' => \"Compatible with most smartphones, tablets, e-readers, MP3 players and other electronic devices; Qualcomm Quick Charge 2.0; 15W maximum output\", 'description_long' => \"Compatible with most smartphones, tablets, e-readers, MP3 players and other electronic devices; Qualcomm Quick Charge 2.0; 15W maximum output\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/platinum-quick-charge-wall-charger-black/1637019.p?id=1219507977948&skuId=1637019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1637019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1637\\/1637019_rc.jpg\"}', 'upc' => '600603184666', 'provider' => 'bestbuy'],\n ['name' => \"Bones: Season 8 [5 Discs] (Blu-ray Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bones-season-8-5-discs-blu-ray-disc-boxed-set/1637175.p?id=3281201&skuId=1637175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1637175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1637\\/1637175_sa.jpg\"}', 'upc' => '024543861843', 'provider' => 'bestbuy'],\n ['name' => \"The Frozen Ground (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/the-frozen-ground-blu-ray-disc-ultraviolet-digital-copy/1637184.p?id=2737397&skuId=1637184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1637184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1637\\/1637184_sa.jpg\"}', 'upc' => '031398176305', 'provider' => 'bestbuy'],\n ['name' => \"Sandra Boynton's Frog Trouble - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sandra-boyntons-frog-trouble-cd-various/1637263.p?id=2734557&skuId=1637263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1637263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1637\\/1637263_sa.jpg\"}', 'upc' => '093624943495', 'provider' => 'bestbuy'],\n ['name' => \"Eclipse de Luna - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eclipse-de-luna-cd/1637272.p?id=2734528&skuId=1637272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1637272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1637\\/1637272_sa.jpg\"}', 'upc' => '825646419432', 'provider' => 'bestbuy'],\n ['name' => \"Repave [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/repave-digipak-cd/1638004.p?id=2729786&skuId=1638004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1638004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1638\\/1638004_sa.jpg\"}', 'upc' => '656605223827', 'provider' => 'bestbuy'],\n ['name' => \"Platinum - Quick Charge Car Charger - Black\", 'description_short' => \"Compatible with most smartphones, tablets, e-readers, MP3 players and other electronic devices; Qualcomm Quick Charge 2.0; 15W maximum output\", 'description_long' => \"Compatible with most smartphones, tablets, e-readers, MP3 players and other electronic devices; Qualcomm Quick Charge 2.0; 15W maximum output\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/platinum-quick-charge-car-charger-black/1638009.p?id=1219507978204&skuId=1638009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1638009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1638\\/1638009_sa.jpg\"}', 'upc' => '600603184673', 'provider' => 'bestbuy'],\n ['name' => \"Bad Blood [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-blood-pa-digipak-cd/1638013.p?id=2735310&skuId=1638013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1638013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1638\\/1638013_sa.jpg\"}', 'upc' => '616892151043', 'provider' => 'bestbuy'],\n ['name' => \"Worse Things Get, The Harder I Fight, The... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worse-things-get-the-harder-i-fight-the-cd/1639003.p?id=2726743&skuId=1639003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1639003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1639\\/1639003_sa.jpg\"}', 'upc' => '045778729128', 'provider' => 'bestbuy'],\n ['name' => \"Worse Things Get, The Harder I... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worse-things-get-the-harder-i-digipak-cd/1639012.p?id=2727111&skuId=1639012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1639012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1639\\/1639012_sa.jpg\"}', 'upc' => '045778717125', 'provider' => 'bestbuy'],\n ['name' => \"Peace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peace-cd/1639021.p?id=2735285&skuId=1639021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1639021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1639\\/1639021_sa.jpg\"}', 'upc' => '819224013006', 'provider' => 'bestbuy'],\n ['name' => \"Peace [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peace-digipak-cd/1639207.p?id=2735437&skuId=1639207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1639207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1639\\/1639207_sa.jpg\"}', 'upc' => '819224013013', 'provider' => 'bestbuy'],\n ['name' => \"Start Somewhere Never Surrender - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/start-somewhere-never-surrender-cd/1639313.p?id=2735574&skuId=1639313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1639313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1639\\/1639313_sa.jpg\"}', 'upc' => '819531011023', 'provider' => 'bestbuy'],\n ['name' => \"DayShell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dayshell-cd/1639322.p?id=2735068&skuId=1639322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1639322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1639\\/1639322_sa.jpg\"}', 'upc' => '817424013055', 'provider' => 'bestbuy'],\n ['name' => \"mophie - 3000 powerstation plus External Battery for Lightning-Equipped Apple® Devices - Silver/Black\", 'description_short' => \"MOPHIE 3000 powerstation plus External Battery for Lightning-Equipped Apple Devices: Compatible with select Apple devices; built-in Lightning cable; integrated LED indicator lights; aluminum finish\", 'description_long' => \"MOPHIE 3000 powerstation plus External Battery for Lightning-Equipped Apple Devices: Compatible with select Apple devices; built-in Lightning cable; integrated LED indicator lights; aluminum finish\", 'price' => 79.99, 'sale_price' => 63.99, 'url' => 'http://www.bestbuy.com/site/mophie-3000-powerstation-plus-external-battery-for-lightning-equipped-apple-devices-silver-black/1640003.p?id=1219507977624&skuId=1640003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1640003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1640\\/1640003_sa.jpg\"}', 'upc' => '810472029467', 'provider' => 'bestbuy'],\n ['name' => \"mophie - 5000 powerstation plus External Battery for Lightning-Equipped Apple® Devices - Silver/Black\", 'description_short' => \"MOPHIE 5000 powerstation plus External Battery for Lightning-Equipped Apple Devices: Compatible with select Apple devices; built-in Lightning cable; integrated LED indicator lights; aluminum finish\", 'description_long' => \"MOPHIE 5000 powerstation plus External Battery for Lightning-Equipped Apple Devices: Compatible with select Apple devices; built-in Lightning cable; integrated LED indicator lights; aluminum finish\", 'price' => 99.99, 'sale_price' => 85.99, 'url' => 'http://www.bestbuy.com/site/mophie-5000-powerstation-plus-external-battery-for-lightning-equipped-apple-devices-silver-black/1641002.p?id=1219507977818&skuId=1641002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1641002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1641\\/1641002_sa.jpg\"}', 'upc' => '810472029481', 'provider' => 'bestbuy'],\n ['name' => \"Caprica: Season 1.5 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caprica-season-1-5-3-discs-dvd/1641344.p?id=2167837&skuId=1641344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1641344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1641\\/1641344_sa.jpg\"}', 'upc' => '025192080388', 'provider' => 'bestbuy'],\n ['name' => \"Case Logic - Camera Bag - Black\", 'description_short' => \"Compatible with most compact system cameras, hybrid/high-zoom cameras and camcorders; nylon material; waterproof EVA base; 3 zippered pockets; hammock system; removable, adjustable shoulder strap\", 'description_long' => \"Compatible with most compact system cameras, hybrid/high-zoom cameras and camcorders; nylon material; waterproof EVA base; 3 zippered pockets; hammock system; removable, adjustable shoulder strap\", 'price' => 34.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/case-logic-camera-bag-black/1641917.p?id=1219062439342&skuId=1641917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1641917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1641\\/1641917_rc.jpg\"}', 'upc' => '085854193351', 'provider' => 'bestbuy'],\n ['name' => \"Michael - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/michael-cd/1641971.p?id=2169354&skuId=1641971&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1641971', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1641\\/1641971_sa.jpg\"}', 'upc' => '886976677329', 'provider' => 'bestbuy'],\n ['name' => \"Indestructible - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/indestructible-cd/1642042.p?id=2169543&skuId=1642042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642042_sa.jpg\"}', 'upc' => '654367580813', 'provider' => 'bestbuy'],\n ['name' => \"Alvin and the Chipmunks: The Squeakquel - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Your favorite music-making chipmunks return\", 'description_long' => \"Your favorite music-making chipmunks return\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alvin-and-the-chipmunks-the-squeakquel-pre-owned-nintendo-wii/1642088.p?id=1218276043038&skuId=1642088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642088_sa.jpg\"}', 'upc' => '799007787907', 'provider' => 'bestbuy'],\n ['name' => \"Alvin and the Chipmunks: The Squeakquel - PRE-OWNED - Nintendo DS\", 'description_short' => \"Your favorite music-making chipmunks return\", 'description_long' => \"Your favorite music-making chipmunks return\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alvin-and-the-chipmunks-the-squeakquel-pre-owned-nintendo-ds/1642149.p?id=1218276043668&skuId=1642149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642149_sa.jpg\"}', 'upc' => '799007787952', 'provider' => 'bestbuy'],\n ['name' => \"Split/Second - PRE-OWNED - Xbox 360\", 'description_short' => \"In this race, seconds stand between you and destruction\", 'description_long' => \"In this race, seconds stand between you and destruction\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/split-second-pre-owned-xbox-360/1642158.p?id=1218276036971&skuId=1642158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642158_sa.jpg\"}', 'upc' => '799007787969', 'provider' => 'bestbuy'],\n ['name' => \"JONAS - PRE-OWNED - Nintendo DS\", 'description_short' => \"Live the life of a rock star\", 'description_long' => \"Live the life of a rock star\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jonas-pre-owned-nintendo-ds/1642185.p?id=1218276039122&skuId=1642185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642185_sa.jpg\"}', 'upc' => '799007765165', 'provider' => 'bestbuy'],\n ['name' => \"Gunblade NY and L.A. Machineguns Arcade Hits Pack - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Show android invaders who&#039;s got the biggest guns around\", 'description_long' => \"Show android invaders who&#039;s got the biggest guns around\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gunblade-ny-and-l-a-machineguns-arcade-hits-pack-pre-owned-nintendo-wii/1642194.p?id=1218276034078&skuId=1642194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642194_sa.jpg\"}', 'upc' => '799007765172', 'provider' => 'bestbuy'],\n ['name' => \"Dora the Explorer: Dora Puppy - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help Dora tend to her puppy pal\", 'description_long' => \"Help Dora tend to her puppy pal\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dora-the-explorer-dora-puppy-pre-owned-nintendo-ds/1642228.p?id=1218276041923&skuId=1642228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642228_sa.jpg\"}', 'upc' => '799007765196', 'provider' => 'bestbuy'],\n ['name' => \"Disney Camp Rock: The Final Jam - PRE-OWNED - Nintendo DS\", 'description_short' => \"Head back to camp and rock to win with Mitchie and Shane\", 'description_long' => \"Head back to camp and rock to win with Mitchie and Shane\", 'price' => 1.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-camp-rock-the-final-jam-pre-owned-nintendo-ds/1642246.p?id=1218276040796&skuId=1642246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642246_sa.jpg\"}', 'upc' => '799007765219', 'provider' => 'bestbuy'],\n ['name' => \"Tom Clancy's H.A.W.X. 2 - PRE-OWNED - Xbox 360\", 'description_short' => \"Take off for adrenaline-pumping aerial action\", 'description_long' => \"Take off for adrenaline-pumping aerial action\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tom-clancys-h-a-w-x-2-pre-owned-xbox-360/1642264.p?id=1218276048688&skuId=1642264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642264_sa.jpg\"}', 'upc' => '799007765233', 'provider' => 'bestbuy'],\n ['name' => \"Puzzle Quest 2 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Claim what is rightfully yours\", 'description_long' => \"Claim what is rightfully yours\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/puzzle-quest-2-pre-owned-nintendo-ds/1642291.p?id=1218276035706&skuId=1642291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642291_sa.jpg\"}', 'upc' => '799007765264', 'provider' => 'bestbuy'],\n ['name' => \"Ben 10 Alien Force: Vilgax Attacks - PRE-OWNED - Nintendo DS\", 'description_short' => \"Control Ben and 10 of his alien forms as you battle intergalactic villains\", 'description_long' => \"Control Ben and 10 of his alien forms as you battle intergalactic villains\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ben-10-alien-force-vilgax-attacks-pre-owned-nintendo-ds/1642307.p?id=1218276042451&skuId=1642307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642307_sa.jpg\"}', 'upc' => '799007765271', 'provider' => 'bestbuy'],\n ['name' => \"Little League World Series Baseball: Double Play - PRE-OWNED - Nintendo DS\", 'description_short' => \"Can you lead your team to a Little League World Series championship?\", 'description_long' => \"Can you lead your team to a Little League World Series championship?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-league-world-series-baseball-double-play-pre-owned-nintendo-ds/1642316.p?id=1218276038747&skuId=1642316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642316_sa.jpg\"}', 'upc' => '799007765288', 'provider' => 'bestbuy'],\n ['name' => \"Drawn to Life: The Next Chapter - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Draw your sword &#8212; literally\", 'description_long' => \"Draw your sword &#8212; literally\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drawn-to-life-the-next-chapter-pre-owned-nintendo-wii/1642334.p?id=1218276042191&skuId=1642334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642334_sa.jpg\"}', 'upc' => '799007765301', 'provider' => 'bestbuy'],\n ['name' => \"Planet 51: The Game - PRE-OWNED - PlayStation 3\", 'description_short' => \"Crash-land in a wacky world in which you&#039;re the alien invader\", 'description_long' => \"Crash-land in a wacky world in which you&#039;re the alien invader\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/planet-51-the-game-pre-owned-playstation-3/1642343.p?id=1218276032411&skuId=1642343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642343_sa.jpg\"}', 'upc' => '799007765318', 'provider' => 'bestbuy'],\n ['name' => \"NHL 11 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Skate into realistic, puck-pulverizing competition and become a hockey legend\", 'description_long' => \"Skate into realistic, puck-pulverizing competition and become a hockey legend\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nhl-11-pre-owned-playstation-3/1642361.p?id=1218276038354&skuId=1642361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642361_sc.jpg\"}', 'upc' => '799007765332', 'provider' => 'bestbuy'],\n ['name' => \"Mission Runway - PRE-OWNED - Nintendo DS\", 'description_short' => \"Prove to the world that you have what it takes to be the next top model\", 'description_long' => \"Prove to the world that you have what it takes to be the next top model\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mission-runway-pre-owned-nintendo-ds/1642403.p?id=1218276045753&skuId=1642403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642403_sa.jpg\"}', 'upc' => '799007765363', 'provider' => 'bestbuy'],\n ['name' => \"Star Ocean: The Last Hope International - PRE-OWNED - PlayStation 3\", 'description_short' => \"Look to the stars for hope\", 'description_long' => \"Look to the stars for hope\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-ocean-the-last-hope-international-pre-owned-playstation-3/1642412.p?id=1218276041652&skuId=1642412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642412_sa.jpg\"}', 'upc' => '799007765370', 'provider' => 'bestbuy'],\n ['name' => \"Women's Murder Club: Games of Passion - PRE-OWNED - Nintendo DS\", 'description_short' => \"Use a wide range of investigative skills to get to the bottom of the mystery\", 'description_long' => \"Use a wide range of investigative skills to get to the bottom of the mystery\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/womens-murder-club-games-of-passion-pre-owned-nintendo-ds/1642449.p?id=1218276043101&skuId=1642449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642449_sa.jpg\"}', 'upc' => '799007765394', 'provider' => 'bestbuy'],\n ['name' => \"Picross 3D - PRE-OWNED - Nintendo DS\", 'description_short' => \"Exercise your brain to reveal hidden objects\", 'description_long' => \"Exercise your brain to reveal hidden objects\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/picross-3d-pre-owned-nintendo-ds/1642458.p?id=1218276032546&skuId=1642458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642458_sa.jpg\"}', 'upc' => '799007765400', 'provider' => 'bestbuy'],\n ['name' => \"Dead to Rights: Retribution - PRE-OWNED - Xbox 360\", 'description_short' => \"Take on the Grant City underworld\", 'description_long' => \"Take on the Grant City underworld\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-to-rights-retribution-pre-owned-xbox-360/1642476.p?id=1218276043542&skuId=1642476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642476_sa.jpg\"}', 'upc' => '799007765424', 'provider' => 'bestbuy'],\n ['name' => \"Rogue Warrior - PRE-OWNED - Xbox 360\", 'description_short' => \"Become the legendary Dick Marcinko and thwart a Communist plot\", 'description_long' => \"Become the legendary Dick Marcinko and thwart a Communist plot\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rogue-warrior-pre-owned-xbox-360/1642494.p?id=1218276043102&skuId=1642494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642494_sa.jpg\"}', 'upc' => '799007765448', 'provider' => 'bestbuy'],\n ['name' => \"Balloon Pop - PRE-OWNED - Nintendo DS\", 'description_short' => \"Take part in the puzzle-popping fun\", 'description_long' => \"Take part in the puzzle-popping fun\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/balloon-pop-pre-owned-nintendo-ds/1642519.p?id=1218276037498&skuId=1642519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642519_sa.jpg\"}', 'upc' => '799007765455', 'provider' => 'bestbuy'],\n ['name' => \"Tournament of Legends - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Epic monsters have never been so colossal\", 'description_long' => \"Epic monsters have never been so colossal\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tournament-of-legends-pre-owned-nintendo-wii/1642537.p?id=1218276035483&skuId=1642537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642537_sa.jpg\"}', 'upc' => '799007765479', 'provider' => 'bestbuy'],\n ['name' => \"Girl Time - PRE-OWNED - Nintendo DS\", 'description_short' => \"Girls everywhere will enjoy some time just for them\", 'description_long' => \"Girls everywhere will enjoy some time just for them\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/girl-time-pre-owned-nintendo-ds/1642546.p?id=1218276034276&skuId=1642546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642546_sa.jpg\"}', 'upc' => '799007765486', 'provider' => 'bestbuy'],\n ['name' => \"Arcade Zone - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Show you&#039;ve got the talent to rule the arcade\", 'description_long' => \"Show you&#039;ve got the talent to rule the arcade\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arcade-zone-pre-owned-nintendo-wii/1642555.p?id=1218276048921&skuId=1642555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642555_sa.jpg\"}', 'upc' => '799007765493', 'provider' => 'bestbuy'],\n ['name' => \"World Championship Athletics - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Aspire to become the best in the world\", 'description_long' => \"Aspire to become the best in the world\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-championship-athletics-pre-owned-nintendo-wii/1642564.p?id=1218276039930&skuId=1642564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642564_sa.jpg\"}', 'upc' => '799007765509', 'provider' => 'bestbuy'],\n ['name' => \"Bookworm - PRE-OWNED - Nintendo DS\", 'description_short' => \"Embark on a subterranean spelling adventure\", 'description_long' => \"Embark on a subterranean spelling adventure\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bookworm-pre-owned-nintendo-ds/1642582.p?id=1218276031416&skuId=1642582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642582_sa.jpg\"}', 'upc' => '799007765523', 'provider' => 'bestbuy'],\n ['name' => \"LEGO Rock Band - PRE-OWNED - Nintendo DS\", 'description_short' => \"Construct your own unique path to rock stardom\", 'description_long' => \"Construct your own unique path to rock stardom\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lego-rock-band-pre-owned-nintendo-ds/1642591.p?id=1218276034275&skuId=1642591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642591_sa.jpg\"}', 'upc' => '799007765530', 'provider' => 'bestbuy'],\n ['name' => \"Are You Smarter Than a 5th Grader? Game Time - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Do you have what it takes to make the grade?\", 'description_long' => \"Do you have what it takes to make the grade?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/are-you-smarter-than-a-5th-grader-game-time-pre-owned-nintendo-wii/1642607.p?id=1218276048167&skuId=1642607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642607_sa.jpg\"}', 'upc' => '799007765547', 'provider' => 'bestbuy'],\n ['name' => \"Split/Second - PRE-OWNED - PlayStation 3\", 'description_short' => \"In this race, seconds stand between you and destruction\", 'description_long' => \"In this race, seconds stand between you and destruction\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/split-second-pre-owned-playstation-3/1642625.p?id=1218276039518&skuId=1642625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642625_sa.jpg\"}', 'upc' => '799007765561', 'provider' => 'bestbuy'],\n ['name' => \"Band Hero - PRE-OWNED - Nintendo DS\", 'description_short' => \"Ascend to music stardom in a new way\", 'description_long' => \"Ascend to music stardom in a new way\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/band-hero-pre-owned-nintendo-ds/1642643.p?id=1218276035145&skuId=1642643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642643_sa.jpg\"}', 'upc' => '799007765585', 'provider' => 'bestbuy'],\n ['name' => \"Disney G-Force - PRE-OWNED - Nintendo DS\", 'description_short' => \"Solve a dangerous government mission with your pint-size powers\", 'description_long' => \"Solve a dangerous government mission with your pint-size powers\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-g-force-pre-owned-nintendo-ds/1642689.p?id=1218276048994&skuId=1642689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642689_sa.jpg\"}', 'upc' => '799007765615', 'provider' => 'bestbuy'],\n ['name' => \"Karaoke Revolution - PRE-OWNED - PlayStation 3\", 'description_short' => \"Set a course for singing stardom\", 'description_long' => \"Set a course for singing stardom\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/karaoke-revolution-pre-owned-playstation-3/1642807.p?id=1218276046204&skuId=1642807&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642807', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642807_sa.jpg\"}', 'upc' => '799007765639', 'provider' => 'bestbuy'],\n ['name' => \"Dawn of Discovery - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Seek out ways to build and sustain a civilization\", 'description_long' => \"Seek out ways to build and sustain a civilization\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dawn-of-discovery-pre-owned-nintendo-wii/1642843.p?id=1218276042574&skuId=1642843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642843_sa.jpg\"}', 'upc' => '799007765677', 'provider' => 'bestbuy'],\n ['name' => \"The Backyardigans - PRE-OWNED - Nintendo DS\", 'description_short' => \"The world is as big as they make it\", 'description_long' => \"The world is as big as they make it\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-backyardigans-pre-owned-nintendo-ds/1642852.p?id=1218276035144&skuId=1642852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642852_sa.jpg\"}', 'upc' => '799007765684', 'provider' => 'bestbuy'],\n ['name' => \"Disney Princess: Enchanted Journey - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Join up with some of the most famous princesses in the world\", 'description_long' => \"Join up with some of the most famous princesses in the world\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-princess-enchanted-journey-pre-owned-nintendo-wii/1642898.p?id=1218276036548&skuId=1642898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642898_sa.jpg\"}', 'upc' => '799007765714', 'provider' => 'bestbuy'],\n ['name' => \"Marker Man Adventures - PRE-OWNED - Nintendo DS\", 'description_short' => \"Draw your way through a fun scrolling world\", 'description_long' => \"Draw your way through a fun scrolling world\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marker-man-adventures-pre-owned-nintendo-ds/1642943.p?id=1218276045546&skuId=1642943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642943_sa.jpg\"}', 'upc' => '799007775522', 'provider' => 'bestbuy'],\n ['name' => \"Iron Man 2 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Save the world as the one-and-only Iron Man\", 'description_long' => \"Save the world as the one-and-only Iron Man\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iron-man-2-pre-owned-nintendo-ds/1642961.p?id=1218276035585&skuId=1642961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1642961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1642\\/1642961_sa.jpg\"}', 'upc' => '799007775546', 'provider' => 'bestbuy'],\n ['name' => \"Nancy Drew: The Model Mysteries - PRE-OWNED - Nintendo DS\", 'description_short' => \"Discover the villain behind the murderous scheming at your friend&#039;s wedding\", 'description_long' => \"Discover the villain behind the murderous scheming at your friend&#039;s wedding\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nancy-drew-the-model-mysteries-pre-owned-nintendo-ds/1643032.p?id=1218276031603&skuId=1643032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1643032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1643\\/1643032_sa.jpg\"}', 'upc' => '799007775607', 'provider' => 'bestbuy'],\n ['name' => \"Imagine: Figure Skater - PRE-OWNED - Nintendo DS\", 'description_short' => \"Can you make it to the figure skating championships?\", 'description_long' => \"Can you make it to the figure skating championships?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-figure-skater-pre-owned-nintendo-ds/1644031.p?id=1218276031293&skuId=1644031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644031_sa.jpg\"}', 'upc' => '799007775638', 'provider' => 'bestbuy'],\n ['name' => \"Tony Hawk's Proving Ground - PRE-OWNED - Nintendo DS\", 'description_short' => \"When it comes to your reputation, talk is cheap\", 'description_long' => \"When it comes to your reputation, talk is cheap\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tony-hawks-proving-ground-pre-owned-nintendo-ds/1644068.p?id=1218276047431&skuId=1644068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644068_sa.jpg\"}', 'upc' => '799007775652', 'provider' => 'bestbuy'],\n ['name' => \"SimAnimals - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Rule the forest and everything it contains\", 'description_long' => \"Rule the forest and everything it contains\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/simanimals-pre-owned-nintendo-wii/1644086.p?id=1218276039858&skuId=1644086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644086_sa.jpg\"}', 'upc' => '799007775676', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Cheerleader - PRE-OWNED - Nintendo DS\", 'description_short' => \"Show off your school spirit\", 'description_long' => \"Show off your school spirit\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-cheerleader-pre-owned-nintendo-ds/1644138.p?id=1218276042648&skuId=1644138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644138_sa.jpg\"}', 'upc' => '799007775713', 'provider' => 'bestbuy'],\n ['name' => \"Pimp My Ride: Street Racing - PRE-OWNED - Nintendo DS\", 'description_short' => \"Strut your vehicle&#039;s stuff all over the globe\", 'description_long' => \"Strut your vehicle&#039;s stuff all over the globe\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pimp-my-ride-street-racing-pre-owned-nintendo-ds/1644174.p?id=1218276041249&skuId=1644174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644174_sa.jpg\"}', 'upc' => '799007775751', 'provider' => 'bestbuy'],\n ['name' => \"Discovery Kids: Pony Paradise - PRE-OWNED - Nintendo DS\", 'description_short' => \"Adopt your very own pony\", 'description_long' => \"Adopt your very own pony\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/discovery-kids-pony-paradise-pre-owned-nintendo-ds/1644217.p?id=1218276032079&skuId=1644217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644217_sa.jpg\"}', 'upc' => '799007775799', 'provider' => 'bestbuy'],\n ['name' => \"TNA Impact - PRE-OWNED - PlayStation 3\", 'description_short' => \"Enter the ring and prepare for total nonstop action\", 'description_long' => \"Enter the ring and prepare for total nonstop action\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tna-impact-pre-owned-playstation-3/1644226.p?id=1218276047506&skuId=1644226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644226_sa.jpg\"}', 'upc' => '799007775805', 'provider' => 'bestbuy'],\n ['name' => \"Pokémon Battle Revolution - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Prepare to battle and prove your worth\", 'description_long' => \"Prepare to battle and prove your worth\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pokemon-battle-revolution-pre-owned-nintendo-wii/1644271.p?id=1218276046757&skuId=1644271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644271_sc.jpg\"}', 'upc' => '799007775850', 'provider' => 'bestbuy'],\n ['name' => \"Zenses: Rainforest - PRE-OWNED - Nintendo DS\", 'description_short' => \"Complete puzzles and brain-training games as you take a break from your day\", 'description_long' => \"Complete puzzles and brain-training games as you take a break from your day\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zenses-rainforest-pre-owned-nintendo-ds/1644299.p?id=1218276037571&skuId=1644299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644299_sa.jpg\"}', 'upc' => '799007775867', 'provider' => 'bestbuy'],\n ['name' => \"The Sims 2 Apartment Pets - PRE-OWNED - Nintendo DS\", 'description_short' => \"Interact with a variety of fun animals\", 'description_long' => \"Interact with a variety of fun animals\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sims-2-apartment-pets-pre-owned-nintendo-ds/1644323.p?id=1218276047505&skuId=1644323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644323_sa.jpg\"}', 'upc' => '799007775898', 'provider' => 'bestbuy'],\n ['name' => \"X-Men Origins: Wolverine - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Uncage the power and fury of Wolverine\", 'description_long' => \"Uncage the power and fury of Wolverine\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/x-men-origins-wolverine-pre-owned-nintendo-wii/1644429.p?id=1218276039197&skuId=1644429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644429_sa.jpg\"}', 'upc' => '799007775973', 'provider' => 'bestbuy'],\n ['name' => \"Turn It Around - PRE-OWNED - Nintendo DS\", 'description_short' => \"Stop spinning your wheels and start spinning these mini games\", 'description_long' => \"Stop spinning your wheels and start spinning these mini games\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turn-it-around-pre-owned-nintendo-ds/1644465.p?id=1218276038426&skuId=1644465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644465_sa.jpg\"}', 'upc' => '799007776017', 'provider' => 'bestbuy'],\n ['name' => \"Discovery Kids: Kitten Corner - PRE-OWNED - Nintendo DS\", 'description_short' => \"Make your kitten a happy cat\", 'description_long' => \"Make your kitten a happy cat\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/discovery-kids-kitten-corner-pre-owned-nintendo-ds/1644517.p?id=1218276045618&skuId=1644517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644517_sa.jpg\"}', 'upc' => '799007776062', 'provider' => 'bestbuy'],\n ['name' => \"The Legend of Spyro: Dawn of the Dragon - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help the legendary purple dragon fulfill his destiny\", 'description_long' => \"Help the legendary purple dragon fulfill his destiny\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-legend-of-spyro-dawn-of-the-dragon-pre-owned-nintendo-ds/1644535.p?id=1218276039001&skuId=1644535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644535_sa.jpg\"}', 'upc' => '799007776086', 'provider' => 'bestbuy'],\n ['name' => \"Shrek's Carnival Craze Party Games - PRE-OWNED - Nintendo DS\", 'description_short' => \"Join Shrek and the gang for crazy carnival-style fun\", 'description_long' => \"Join Shrek and the gang for crazy carnival-style fun\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shreks-carnival-craze-party-games-pre-owned-nintendo-ds/1644553.p?id=1218276041457&skuId=1644553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644553_sa.jpg\"}', 'upc' => '799007776109', 'provider' => 'bestbuy'],\n ['name' => \"Littlest Pet Shop: Winter - PRE-OWNED - Nintendo DS\", 'description_short' => \"Frolic through the snow with cool, cuddly pets\", 'description_long' => \"Frolic through the snow with cool, cuddly pets\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/littlest-pet-shop-winter-pre-owned-nintendo-ds/1644571.p?id=1218276042771&skuId=1644571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644571_sa.jpg\"}', 'upc' => '799007776123', 'provider' => 'bestbuy'],\n ['name' => \"My Spanish Coach - PRE-OWNED - Nintendo DS\", 'description_short' => \"Learn Spanish in a fun way\", 'description_long' => \"Learn Spanish in a fun way\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-spanish-coach-pre-owned-nintendo-ds/1644599.p?id=1218276034535&skuId=1644599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644599_sa.jpg\"}', 'upc' => '799007776130', 'provider' => 'bestbuy'],\n ['name' => \"My Word Coach - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Express yourself with confidence\", 'description_long' => \"Express yourself with confidence\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-word-coach-pre-owned-nintendo-wii/1644632.p?id=1218276041529&skuId=1644632&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644632', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644632_sa.jpg\"}', 'upc' => '799007776178', 'provider' => 'bestbuy'],\n ['name' => \"Petz Dogz 2 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Pal around with a pooch\", 'description_long' => \"Pal around with a pooch\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-dogz-2-pre-owned-nintendo-ds/1644669.p?id=1218276048292&skuId=1644669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644669_sa.jpg\"}', 'upc' => '799007776192', 'provider' => 'bestbuy'],\n ['name' => \"Cooking Mama 2: Dinner with Friends - PRE-OWNED - Nintendo DS\", 'description_short' => \"Create your most mouth-watering dishes yet\", 'description_long' => \"Create your most mouth-watering dishes yet\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cooking-mama-2-dinner-with-friends-pre-owned-nintendo-ds/1644678.p?id=1218276037694&skuId=1644678&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644678', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644678_sa.jpg\"}', 'upc' => '799007776208', 'provider' => 'bestbuy'],\n ['name' => \"Defendin' De Penguin - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help Little Blue save his food supply from hungry invaders\", 'description_long' => \"Help Little Blue save his food supply from hungry invaders\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/defendin-de-penguin-pre-owned-nintendo-ds/1644687.p?id=1218276048044&skuId=1644687&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644687', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644687_sa.jpg\"}', 'upc' => '799007776215', 'provider' => 'bestbuy'],\n ['name' => \"Discovery Kids: Dolphin Discovery - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help your pet dolphin make a real splash\", 'description_long' => \"Help your pet dolphin make a real splash\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/discovery-kids-dolphin-discovery-pre-owned-nintendo-ds/1644741.p?id=1218276031292&skuId=1644741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644741_sa.jpg\"}', 'upc' => '799007791300', 'provider' => 'bestbuy'],\n ['name' => \"Skate It - PRE-OWNED - Nintendo DS\", 'description_short' => \"Ride to fame and skateboard like a champ\", 'description_long' => \"Ride to fame and skateboard like a champ\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skate-it-pre-owned-nintendo-ds/1644823.p?id=1218276040404&skuId=1644823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644823_sa.jpg\"}', 'upc' => '799007791348', 'provider' => 'bestbuy'],\n ['name' => \"Family Fest Presents Movie Games - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Become a movie star in your own home\", 'description_long' => \"Become a movie star in your own home\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/family-fest-presents-movie-games-pre-owned-nintendo-wii/1644841.p?id=1218276038551&skuId=1644841&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644841', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644841_sa.jpg\"}', 'upc' => '799007791362', 'provider' => 'bestbuy'],\n ['name' => \"Zoo Hospital - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Live out your dreams of treating exotic animals\", 'description_long' => \"Live out your dreams of treating exotic animals\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zoo-hospital-pre-owned-nintendo-wii/1644878.p?id=1218276044663&skuId=1644878&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644878', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644878_sa.jpg\"}', 'upc' => '799007791386', 'provider' => 'bestbuy'],\n ['name' => \"Paws & Claws Pet Resort - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Give your furry and feathered friends the TLC they deserve\", 'description_long' => \"Give your furry and feathered friends the TLC they deserve\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paws-claws-pet-resort-pre-owned-nintendo-wii/1644896.p?id=1218276041849&skuId=1644896&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644896', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644896_sa.jpg\"}', 'upc' => '799007791409', 'provider' => 'bestbuy'],\n ['name' => \"SimAnimals - PRE-OWNED - Nintendo DS\", 'description_short' => \"Rule the forest and everything it contains\", 'description_long' => \"Rule the forest and everything it contains\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/simanimals-pre-owned-nintendo-ds/1644932.p?id=1218276036236&skuId=1644932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1644932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1644\\/1644932_sa.jpg\"}', 'upc' => '799007791447', 'provider' => 'bestbuy'],\n ['name' => \"Electrolux - Ergorapido Limited-Edition Realtree Xtra Camo Bagless Cordless 2-in-1 Handheld/Stick Vacuum - Realtree Max-5\", 'description_short' => \"9.6V motor; bagless dust cup; Cyclonic technology; 2-step, washable snap filter; 10&quot; cleaning path width; crevice tool and dusting brush\", 'description_long' => \"9.6V motor; bagless dust cup; Cyclonic technology; 2-step, washable snap filter; 10&quot; cleaning path width; crevice tool and dusting brush\", 'price' => 149.99, 'sale_price' => 123.99, 'url' => 'http://www.bestbuy.com/site/electrolux-ergorapido-limited-edition-realtree-xtra-camo-bagless-cordless-2-in-1-handheld-stick-vacuum-realtree-max-5/1645008.p?id=1219507976195&skuId=1645008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1645008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1645\\/1645008_sa.jpg\"}', 'upc' => '023169143487', 'provider' => 'bestbuy'],\n ['name' => \"Rocketfish™ - Soft-Shell Case for Motorola Moto X Cell Phones - Clear\", 'description_short' => \"Compatible with Motorola Moto X cell phones; TPU material; durable silicone skin; form-fitting design; play-through design\", 'description_long' => \"Compatible with Motorola Moto X cell phones; TPU material; durable silicone skin; form-fitting design; play-through design\", 'price' => 24.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/rocketfish-soft-shell-case-for-motorola-moto-x-cell-phones-clear/1645012.p?id=1219058090074&skuId=1645012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1645012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1645\\/1645012_500x500_sa.jpg\"}', 'upc' => '600603161285', 'provider' => 'bestbuy'],\n ['name' => \"Brave, Bold and Broken - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brave-bold-and-broken-cd/1646002.p?id=2746546&skuId=1646002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1646002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1646\\/1646002_sa.jpg\"}', 'upc' => '813985011028', 'provider' => 'bestbuy'],\n ['name' => \"JVC - 7\\\" - CD/DVD - Built-In Bluetooth - Satellite Radio-Ready - In-Dash Receiver - Black\", 'description_short' => \"Apple&#174; iPod&#174;- and iPhone&#174;-ready; Satellite Radio-ready; fixed faceplate; USB port; front auxiliary input; 3 pairs of 2.5V preouts\", 'description_long' => \"Apple&#174; iPod&#174;- and iPhone&#174;-ready; Satellite Radio-ready; fixed faceplate; USB port; front auxiliary input; 3 pairs of 2.5V preouts\", 'price' => 399.99, 'sale_price' => 279.99, 'url' => 'http://www.bestbuy.com/site/jvc-7-cd-dvd-built-in-bluetooth-satellite-radio-ready-in-dash-receiver-black/1646007.p?id=1219508237166&skuId=1646007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1646007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1646\\/1646007_sa.jpg\"}', 'upc' => '046838071065', 'provider' => 'bestbuy'],\n ['name' => \"Overcomer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/overcomer-cd/1646011.p?id=2731865&skuId=1646011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1646011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1646\\/1646011_sa.jpg\"}', 'upc' => '5099960707420', 'provider' => 'bestbuy'],\n ['name' => \"Scarecrow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scarecrow-cd/1646136.p?id=2731168&skuId=1646136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1646136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1646\\/1646136_sa.jpg\"}', 'upc' => '736211605993', 'provider' => 'bestbuy'],\n ['name' => \"Leslie Sansone: Walk It Off in 30 Days (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leslie-sansone-walk-it-off-in-30-days-dvd/1646163.p?id=2716392&skuId=1646163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1646163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1646\\/1646163_sa.jpg\"}', 'upc' => '013132607443', 'provider' => 'bestbuy']\n ];\n\n // Insert all the products\n foreach ($products as $product) {\n Product::create($product);\n }\n }", "public function run()\n {\n $product = $this->getAttribute('product');\n\n /// get 2 products from the same category ///\n $catProducts = array();\n if (array_key_exists('collections', $product))\n {\n $collection = $product['collections'][0];\n $catProducts = $this->getProductsByCollection($collection['pkey'], 3);\n }\n\n #alert($product, 'blue', 'product');\n\n // dd($catProducts[0]['pkey']);\n /// get 5 products from the same tag ///\n\n\n\n #if ( ! empty($product['tag']))\n #{\n $tagProducts = $this->getProductsByTag($product['tag'], 7);\n /// merg e to products array ///\n // alertd(sizeof($catProducts).\" \".sizeof($tagProducts));\n $rawProducts = array_merge($catProducts, $tagProducts);\n #}\n #else\n #{\n #$rawProducts = $catProducts;\n #}\n /// build array of related products ///\n $products = $this->buildProductsArray($rawProducts, $product);\n\n $attrs = array(\n 'products' => $products,\n );\n\n return $attrs;\n }", "public function setProductValues($products) {\n $productObj = new Crm_Product();\n $productFeaturesModel = new Frontend_Model_ProductFeatures();\n $product_reviews_model = new Frontend_Model_ProductReviews();\n $identity = Zend_Auth::getInstance()->getStorage()->read();\n $contact_id = $identity ? $identity['id'] : null;\n $personalPricesModel = new Crm_PersonalPrice($contact_id);\n $newProducts = [];\n foreach ($products as $key => $product) {\n $newProducts[$key] = $product;\n\n $img = $productObj->getImgSrc($product['id'], $product['image_id']) . $product['image_id'] . '.96x96.' . $product['ext'];\n $img_200 = $productObj->getImgSrc($product['id'], $product['image_id']) . $product['image_id'] . '.200x0.' . $product['ext'];\n $dumy_Image = \"/img/empty.jpg\";\n\n $newProducts[$key]['img'] = ($product['image_id'] && file_exists(PUBLIC_PATH . $img)) ? $img : $dumy_Image;\n $newProducts[$key]['img_200'] = ($product['image_id'] && file_exists(PUBLIC_PATH . $img_200)) ? $img_200 : $dumy_Image;\n $newProducts[$key]['features'] = $productFeaturesModel->getFeaturesValuesByParams(['product_id' => $product['id']]);\n $newProducts[$key]['review_count'] = $product_reviews_model->getCountReviews($product['id']);\n if ($contact_id) {\n $productOne = $personalPricesModel->add_personal_price(array($newProducts[$key]));\n $productOne = reset($productOne);\n $newProducts[$key]['personal_price'] = Frontend_Utils::priceUA($productOne['skus'][$productOne['sku_id']]['personal_price'], $productOne['currency']);\n }\n }\n return $newProducts;\n }", "public function ProductListingAction(Request $request) {\n\n $em = $this->getDoctrine()->getManager();\n\n //$entities = $em->getRepository('ReverseAuctionReverseAuctionBundle:ProductInfo')->findAll();\n $entities = $em->getRepository('ReverseAuctionReverseAuctionBundle:ProductInfo')->productDisplay();\n \n if (!$entities) {\n $errorMsg = \"No Data Found\";\n return new JsonResponse($this->blankField($errorMsg));\n }\n\n ######################################################\n /* VerY Very Important COde */\n $dataentity = array();\n $productList = array();\n foreach ($entities as $product) {\n $productList['productId'] = $product->getId();\n $productList['pName'] = $product->getPName();\n $productList['pType'] = $product->getPType();\n $productList['pBrandName'] = $product->getPBrandName();\n $productList['pRetailPrize'] = $product->getPRetailPrize();\n $productList['pImage']= $product->getPImage(); \n $productList['pDescription'] = $product->getPDescription();\n $productList['pBidExpiry'] = $product->getPBidExpiry();\n \n /*Push the Product List array into Dataentity.*/\n array_push($dataentity, $productList);\n \n \n }\n \n if (!empty($dataentity) || $dataentity != null) { \n \n /* return new Json Response With the product listing object in json */\n return new JsonResponse($this->productListing($dataentity));\n \n } else {\n return new JsonResponse($this->productNotFound());\n }\n return $this->render('ReverseAuctionWebservicesBundle:ProductListing:ProductListing.html.twig');\n }" ]
[ "0.67855495", "0.6776654", "0.67266226", "0.67228085", "0.6644426", "0.655285", "0.64634293", "0.6440792", "0.6251106", "0.62285787", "0.6176255", "0.6174209", "0.61705863", "0.61479497", "0.61409783", "0.6134019", "0.6113361", "0.6097682", "0.6093095", "0.6076081", "0.60724056", "0.606446", "0.60617304", "0.60599375", "0.60148096", "0.5993227", "0.599184", "0.59886193", "0.5983816", "0.59738445" ]
0.6790183
0
Returns text to require all files in filesrequired array.
public function getRequired() { $sRet = "// Files required by class:\n"; if(!empty($this->filesrequired)) { foreach($this->filesrequired as $file) { $sRet .= "require_once(\"$file\");\n"; } } else { $sRet .= "// No files required.\n"; } $sRet .= "\n"; return($sRet); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function requiredFileCheck($file_list)\n {\n $output = '';\n\n foreach ($file_list as $key => $val) {\n $entry = array();\n $result = file_exists('./' . $key);\n\n $entry[] = $key;\n $entry[] = $this->_status($result);\n\n if (!$result) {\n if (empty($val)) {\n $entry[] = 'The file <code>' . $key . '</code> appears to be missing. You probably just forgot to copy <code>' . $key . '.dist</code> over. While you do that, take a look at the settings and make sure they are appropriate for your site.';\n } else {\n $entry[] = $val;\n }\n }\n\n $output .= $this->_outputLine($entry);\n }\n\n return $output;\n }", "protected function checkRequiredFilesParams(array $required)\n\t{\n\t\t$params = array();\n\t\tforeach($required as $item)\n\t\t{\n\t\t\t$params[$item] = $this->request->getFile($item);\n\t\t}\n\t\tunset($item);\n\n\t\treturn $this->checkRequiredInputParams($params, $required);\n\t}", "function getRequiredFiles($sF){\n return (!$this->getIgnore() && $this->getStatus() && isset($this->aRequire[$sF]) ? $this->aRequire[$sF] : array());\n }", "public function renderRequireIncludes()\n {\n $resource = $this->resource;\n return $this->resource->applyCallback(function ($line, Resource $res) use ($resource) {\n $arr = preg_split('/require\\ \"/', $line);\n $arr = preg_split('/\"\\ /', $arr[1]);\n $requiredFile = $arr[0];\n $file = $resource->getClone();\n $file->setResource($res->getRelativePath() . '/' . $requiredFile);\n return $file->getHtml();\n });\n }", "public function generate()\n {\n if (count($this->_requires) > 1) {\n $stringlist = '';\n foreach ($this->_requires as $require) {\n $stringlist .= (empty($stringlist)) ? '\"' : ', \"';\n $stringlist .= $require . '\"';\n }\n return 'require [' . $stringlist . '];';\n }\n if (count($this->_requires) == 1) {\n return 'require \"' . $this->_requires[0] . '\";';\n }\n return '';\n }", "private function requireFile(): string\n {\n foreach ($this->pathOverride as $path) {\n foreach ($this->nameOverride as $name) {\n if (is_file($path . $name)) {\n return $path . $name;\n }\n }\n if (is_file($path . $this->name)) {\n return $path . $this->name;\n }\n }\n foreach ($this->nameOverride as $name) {\n if (is_file($this->path . $name)) {\n return $this->path . $name;\n }\n }\n\n return $this->path . $this->name;\n }", "public function test_file_block_required() {\n global $PAGE;\n\n $output = $PAGE->get_renderer('local_moodlecheck');\n\n // A file with multiple classes, require the file phpdoc block.\n $path = new local_moodlecheck_path('local/moodlecheck/tests/fixtures/phpdoc_file_required_yes1.php', null);\n $result = $output->display_path($path, 'xml');\n $this->assertStringContainsString('File-level phpdocs block is not found', $result);\n\n // A file without any class (library-like), require the file phpdoc block.\n $path = new local_moodlecheck_path('local/moodlecheck/tests/fixtures/phpdoc_file_required_yes2.php', null);\n $result = $output->display_path($path, 'xml');\n $this->assertStringContainsString('File-level phpdocs block is not found', $result);\n\n // A file with one interface and one trait, require the file phpdoc block.\n $path = new local_moodlecheck_path('local/moodlecheck/tests/fixtures/phpdoc_file_required_yes3.php', null);\n $result = $output->display_path($path, 'xml');\n $this->assertStringContainsString('File-level phpdocs block is not found', $result);\n\n // A file with only one class, do not require the file phpdoc block.\n $path = new local_moodlecheck_path('local/moodlecheck/tests/fixtures/phpdoc_file_required_no1.php', null);\n $result = $output->display_path($path, 'xml');\n $this->assertStringNotContainsString('File-level phpdocs block is not found', $result);\n\n // A file with only one interface, do not require the file phpdoc block.\n $path = new local_moodlecheck_path('local/moodlecheck/tests/fixtures/phpdoc_file_required_no2.php', null);\n $result = $output->display_path($path, 'xml');\n $this->assertStringNotContainsString('File-level phpdocs block is not found', $result);\n\n // A file with only one trait, do not require the file phpdoc block.\n $path = new local_moodlecheck_path('local/moodlecheck/tests/fixtures/phpdoc_file_required_no3.php', null);\n $result = $output->display_path($path, 'xml');\n $this->assertStringNotContainsString('File-level phpdocs block is not found', $result);\n }", "public function renderFiles()\n {\n $strScript = '';\n\n // Javascript files should get processed before the commands.\n if (!empty($this->files[self::JAVA_SCRIPTS])) {\n foreach ($this->files[self::JAVA_SCRIPTS] as $js) {\n $strScript .= '<script type=\"text/javascript\" src=\"' . Application::getJsFileUri($js) . '\"></script>' . \"\\n\";\n }\n }\n\n $this->files = array();\n\n return $strScript;\n }", "private function autoloadFilesArray()\n\t\t{\n\t\t\trequire_once 'core/autoloadFiles.php';\n\n\t\t\tforeach ($files as $main) \n\t\t\t{\n\t\t\t\tforeach ($main['files'] as $file)\n\t\t\t\t{\n\t\t\t\t\t$path = 'app/'.$main['type'].'/'.$file.$main['name'].'.php';\n\t\t\t\t\trequire_once $path;\n\t\t\t\t}\t\n\t\t\t}\n\t\t}", "protected function checkRequire($files) {\n $plugins = array();\n foreach($files as $file) {\n if(file_exists($file)) {\n include_once($file);\n }\n }\n return $plugins;\n }", "public function setRequired($aFiles) {\n $this->filesrequired = $aFiles;\n }", "private function _includeFiles(array $files)\n {\n $result = '';\n foreach ($files as $value) {\n if (strpos($value['filename'], \".php\") !== false) {\n $file_name = $value['filename'] . Url::getCommon($value['params'] + array('v' => PMA_VERSION));\n $result .= \"<script data-cfasync='false' \"\n . \"type='text/javascript' src='js/\" . $file_name\n . \"'></script>\\n\";\n } else {\n $result .= '<script data-cfasync=\"false\" type=\"text/javascript\" src=\"js/'\n . $value['filename'] . '?' . Header::getVersionParameter() . '\"></script>' . \"\\n\";\n }\n }\n return $result;\n }", "public function getRequires(): array;", "public function get_required() {\n\t\t$required = array(\n\t\t\t'token',\n\t\t\t'team_id',\n\t\t\t'channel_id',\n\t\t\t'channel_name',\n\t\t\t'timestamp',\n\t\t\t'user_id',\n\t\t\t'user_name',\n\t\t\t'text',\n\t\t\t'trigger_word'\n\t\t\t);\n\t\t$send = array();\n\t\tforeach ( $this->_reqArray as $key => $value ) {\n\t\t\tif ( in_array( $key, $required ) ) {\n\t\t\t\t$send[$key] = $value;\n\t\t\t}\n\t\t}\n\t\treturn $send;\n\t}", "public function getDependenciesString()\n {\n $dependencies = [];\n\n foreach ($this->getDependencies() as $dependency) {\n $dependencies[] = 'use '.$dependency.';';\n }\n\n return implode(PHP_EOL, $dependencies);\n }", "function PLG_getPLGClientRequires($fileName)\n{\n return(PLG_getPluginValue($fileName,\"pluginClientRequires\"));\n}", "public function requiresFileList();", "protected function getRequiredFiles()\n\t{\n\t\t// This order in the path makes php check for its includes in the site/src directory, then lib if that fails\n\t\tset_include_path('.' \n\t\t . PATH_SEPARATOR . \"{$this->strBasePath}/src\" \n\t\t . PATH_SEPARATOR . '/home/genghishack/lib'\n\t\t . PATH_SEPARATOR . get_include_path()\n\t\t);\n\n\t\tif (!class_exists('Page_Class', false))\n\t\t{\n\t\t\trequire_once ('php/Page/Page_Class.php');\n\t\t}\n\t\tif (!class_exists('Module_Class', false))\n\t\t{\n\t\t\trequire_once ('php/Module/Module_Class.php');\n\t\t}\n\t\tif (!class_exists('Util_Class', false))\n\t\t{\n\t\t\trequire_once ('php/Util/Util_Class.php');\n\t\t}\n\t\tif (!class_exists('Smarty', false))\n\t\t{\n\t\t\trequire_once ('vendor/smarty/Smarty-3.0.8/libs/Smarty.class.php');\n\t\t}\n\t\t\n\t\trequire_once ('vendor/php-activerecord/php-activerecord-1.0/ActiveRecord.php');\n\t\t\n\t\trequire_once ('vendor/techpatterns/php_browser_detection.php');\n\n\t\trequire_once ('php/Page.php');\n\t\trequire_once ('php/Module.php');\n\t\trequire_once ('php/Util.php');\n\n\t\tif ($this->isFacebookApp())\n\t\t{\n\t\t\trequire_once ('vendor/facebook/facebook-php-sdk-3.0.1/src/facebook.php');\n\n\t\t\trequire_once ('php/FbApp/FbApp_Class.php');\n\t\t\trequire_once ('php/FbApp.php');\n\t\t}\n\t}", "private function _checkFiles() {\n\t\t$result = $this->l('This block shows which files used by sendsms seems to be configurated or not') . \"<br><br>\";\n\n\t\t$files = array(\n\t\t\t'../themes/' . _THEME_NAME_ . '/order-carrier.tpl',\n\t\t\t'../override/controllers/front/CartController.php',\n\t\t\t'../override/controllers/front/OrderController.php',\n\t\t\t'../override/classes/Mail.php'\n\t\t);\n\t\tforeach($files as $filename) {\n\t\t\tif (file_exists($filename)) {\n\t\t\t\t$fd = fopen($filename, 'r');\n\t\t\t\t$contents = fread($fd, filesize($filename));\n\t\t\t\tif (stripos($contents, \"sendsms\") !== false) {\n\t\t\t\t\t$result .= \"<img src='../img/admin/ok.gif' align='absmiddle'> \" . basename($filename) .\"<br/>\";\n\t\t\t\t} else {\n\t\t\t\t\t$result .= \"<img src='../img/admin/error2.png' align='absmiddle'> \" . basename($filename) . \"<br>\" . $this->l('This file doesn\\'t contain the sendsms modification') . \"<br/>\";\n\t\t\t\t}\n\t\t\t\tfclose($fd);\n\t\t\t} else {\n\t\t\t\t$result .= \"<img src='../img/admin/error2.png' align='absmiddle'> \" . basename($filename) . \"<br>\" . $this->l('Must be copied into /override/controllers/') . \"<br/>\";\n\t\t\t}\n\t\t}\n\t\treturn $result;\n\t}", "protected function checkStrings()\n {\n // We expect that all files in the base folder are available in all other folders. \n // This means, we can just use the base folder to get the relative path names and prepend\n // the folder names. Let's do it!\n\n $errorCount = 0;\n $baseFolderFiles = $this->folders[$this->baseFolder];\n\n foreach ($baseFolderFiles as $file) {\n // Prepare the arguments\n $filesArgument = array();\n foreach ($this->folders as $folder => $files){\n $filesArgument[] = $folder . $file->getRelativePathname();\n }\n\n $arguments = array(\n \"files\" => $filesArgument,\n );\n\n // Start the StringsCommand\n $command = $this->getApplication()->find(\"check:strings\");\n $input = new ArrayInput($arguments);\n $errorCount += $command->run($input, $this->output); \n }\n \n return $errorCount;\n }", "protected function isRequired()\n {\n if ($this->file->isFile()) {\n require $this->file->getRealPath();\n }\n }", "public function requireOnceAllFiles()\n {\n foreach ($this->iterator as $fileArray) {\n\n $file = $fileArray[0];\n\n require_once (string) $file;\n\n yield $file;\n\n }\n }", "private function getRequired()\r\n {\r\n return \"['<span style=\\\"color:red; font-weight:bold\\\" data-qtip=\\\"Required\\\">*</span>']\";\r\n }", "function getDefaultRequirements() {\n\t\treturn require(dirname(__FILE__).DIRECTORY_SEPARATOR.'requirements.php');\n\t}", "protected function requireFileDependencies(): void\n {\n if (! empty($this->testFiles) && defined('WP_MOCK_INCLUDE_DIR')) {\n foreach ($this->testFiles as $file) {\n if (file_exists(WP_MOCK_INCLUDE_DIR.$file)) {\n require_once(WP_MOCK_INCLUDE_DIR.$file);\n }\n }\n }\n }", "function CIncludeJSFilesHead_toString(){\n\t$cincludefiles = CIncludeFiles :: getCIncludeFiles( \"CIncludeJSFiles\" );\n\tif( $cincludefiles == NULL )\n\t\treturn \"\";\n\t$filepathparams = $cincludefiles->getFilePathParams();\n\tif( $filepathparams == NULL )\n\t\treturn \"\";\t\n\t$filepathparams = CIncludeFiles_minify( $filepathparams, \"js\" );\n\t$str=\"\";\n\tforeach( $filepathparams as $strfilename=>$params ){\n\t\tif( isset($params[\"location\"]) == false || $params[\"location\"] != \"foot\" ) \n\t\t\t$str .= toJSString( $params ); \n\t} // end foreach()\n\treturn $str;\n}", "function findFiles($dir) {\r\n\t\t$suffixes=array_merge($this->requiredFiles,$this->optionalFiles);\r\n\t\t$files=$this->getAllFiles($dir);\r\n\t\tforeach ($files as $file) {\r\n\t\t\tforeach($suffixes as $suffix) {\r\n\t\t\t\tif (strcasecmp(substr($file, -(strlen($suffix)+1)), \".\".$suffix)==0)\r\n\t\t\t\t\t$this->coursefiles[$suffix] = $file;\t\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\t//check for required files\r\n\t\t$missingFiles = array_diff ($this->requiredFiles, array_keys($this->coursefiles));\r\n\t\tif (count($missingFiles)==4)\r\n\t\t\t$this->errorText[]=\"Missing all required files.<br>You want to check if your learning module is of a different type.\";\r\n\t\telse if (count($missingFiles)>0)\r\n\t\t\t$this->errorText[]=\"Missing required file(s): \".implode(\"<bR>\", $missingFiles);\r\n\t}", "private function getRequiredFieldsLabels() {\n $labels = [];\n $fields = $this->getRequiredFields();\n\n foreach ($fields as $field) {\n $labels[] = $field->getFieldDefinition()->getLabel();\n }\n\n return implode(', ', $labels);\n }", "public function requiredCSS()\n\t{\n\t\treturn [\"/Static/main.css\", \"/Static/nav.css\"]; //return an array containing the string \"/Static/main.css\"\n\t}", "private function _initFileArrays()\n {\n if (! empty($this->_preferedFiles) || ! empty($this->_unpreferedFiles)) {\n return;\n\n }\n $simpleIterator = new AutoloaderFileIterator_Simple();\n $simpleIterator->setAutoloader($this->autoloader);\n $simpleIterator->skipFilesize = $this->skipFilesize;\n $simpleIterator->skipDirPatterns = $this->skipDirPatterns;\n $simpleIterator->skipFilePatterns = $this->skipFilePatterns;\n $simpleIterator->onlyDirPattern = $this->onlyDirPattern;\n $simpleIterator->onlyFilePattern = $this->onlyFilePattern;\n\n $this->_preferedFiles = array();\n $this->_unpreferedFiles = array();\n foreach ($simpleIterator as $file) {\n foreach ($this->_preferedPatterns as $pattern) {\n if (preg_match($pattern, $file)) {\n $this->_preferedFiles[] = $file;\n continue 2;\n\n }\n }\n $this->_unpreferedFiles[] = $file;\n\n }\n }" ]
[ "0.6412001", "0.62473285", "0.5967058", "0.5835526", "0.57821983", "0.5544488", "0.5480215", "0.53294766", "0.53229284", "0.5322414", "0.53080034", "0.5293993", "0.5253287", "0.5218883", "0.52111924", "0.52018374", "0.51789963", "0.5172242", "0.51656836", "0.5146151", "0.51216716", "0.5084935", "0.50775486", "0.50598997", "0.49566832", "0.49435878", "0.49400827", "0.4932142", "0.49267566", "0.49228793" ]
0.7301819
0
Returns text for a header for our class file.
public function getHeader() { $sRet = "<?php\n"; $sRet .= "/******************************************************************************* * Class Name: $this->classname * File Name: $this->filename * Generated: $this->filedate * - for Table: $this->tablename * - in Database: $this->databasename * Created by: table2class (http://www.stevenflesch.com/projects/table2class/) ********************************************************************************/\n\n"; $sRet .= $this->getRequired(); $sRet .= "// Begin Class \"$this->classname\"\n"; $sRet .= "class $this->classname {\n"; return($sRet); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getHeader()\n {\n return <<<EOF\n _______ ___ __ ___ _______ .______ _______ _______ .__ __. \n | ____| / \\ | |/ / | ____|| _ \\ / _____|| ____|| \\ | | \n | |__ / ^ \\ | ' / | |__ | |_) | | | __ | |__ | \\| | \n | __| / /_\\ \\ | < | __| | / | | |_ | | __| | . ` | \n | | / _____ \\ | . \\ | |____ | |\\ \\----. | |__| | | |____ | |\\ | \n |__| /__/ \\__\\ |__|\\__\\ |_______|| _| `._____| \\______| |_______||__| \\__|\n\nEOF;\n\n}", "public function getHeader(): string\n {\n return $this->debugTool->getRenderHeader();\n }", "public function __toString() : string\n {\n return self::HEADER_NAME;\n }", "public function getHeaderText()\n {\n return Mage::helper('pdfgenerator')->__('PDF Templates');\n }", "public static function header() {\n\t\treturn static::instance()->header();\n\t}", "protected function getHeader()\n {\n return <<<EOF\n<fg=blue>\n /`\n +o/`\n -oooo/.\n .+oooooo/-\n ./oooooo+//::`\n `.:+ooooo/-`\n .:+ooooooo+. `...`\n ./+ooooooooo/ ./oooooo+-\n -+ooooooooooo+` -oooooooooo/ `\n `/ooooooooooooo/ +ooooooooooo. .+.\n `+oooooooooooooo+ /ooooooooooo. -oo/`\n +oooooooooooooooo- `/oooooooo+. +ooo+`\n:oooooooooooooooo+/` `-////:. `+ooooo+`\n+oooooooooooo+:.` `:+ooooooo:\nooooooooooo/` .:+oooooooooo+\nooooooooo+` `.-::--` :oooooooooooo\n/ooooooo/ -+oooooooo+:` -oooooooooo+\n.oooooo+` `+oooooooooooo+. /ooooooooo-\n :ooooo: /oooooooooooooo+` .oooooooo/\n /oooo- +ooooooooooooooo. `ooooooo/\n :ooo: :oooooooooooooo+ .oooooo:\n `/oo` :oooooooooooo+` /oooo/.\n ./+` .:+ooooooo/- :ooo/.\n `-` `..... `/o/-`\n `-:.`\n</fg=blue>\nEOF\n .parent::getHeader();\n }", "public function getMainHeading() : string\n {\n return <<< 'MAINHEADING'\n\nMAINHEADING;\n }", "public function getHeader()\n {\n return Debug::getRenderHeader();\n }", "public function getMainHeading() : string\n {\n return <<< 'MAINHEADING'\nADO.NET in C#\nMAINHEADING;\n }", "protected function getFileHeader() {\n return \"\n<?php\n require_once( dirname(__FILE__) . '/../components/Interfaces.php');\n require_once(dirname(__FILE__) . '/../components/CustomExceptions.php');\n\";\n }", "public function getMainHeading() : string\n {\n return <<< 'MAINHEADING'\nJava Persistence API\nMAINHEADING;\n }", "public function get_heading()\n {\n return $this->heading;\n }", "public function getContent(): string\n {\n $content = parent::getContent();\n $header = '';\n if (strlen($content) > 0) {\n $headerLines = explode(PHP_EOL, $content);\n $header = '/**' . PHP_EOL;\n foreach ($headerLines as $headerLine) {\n $header .= ' * ' . $headerLine . PHP_EOL;\n }\n\n $header .= ' */' . PHP_EOL;\n }\n\n return $header;\n }", "function getHeader()\n\t{\n\t\t$contents = \"\";\n\t\t$fpath = array();\n\t\t$contents .= \"<h3> Unit : \";\n\t\tif(isset($_GET[\"unit\"])){\n\t\t\t$contents .= $_GET[\"unit\"];\n\t\t}\n\t\t$contents .= \" -- Exercise : \";\n\t\tif(isset($_GET[\"file\"])){\n\t\t\t$fpath = explode(\"/\", $_GET[\"file\"]);\t// file value : ex) ./files/1/1/circle.php\n\t\t\t$contents .= $fpath[3];\n\t\t} else if(isset($_GET[\"exercise\"])){\n\t\t\t$contents .= $_GET[\"exercise\"];\n\t\t}\n\t\t$contents .= \" -- Filename : \";\n\t\tif(isset($_GET[\"file\"])){\n\t\t\t$contents .= $fpath[count($fpath)-1];\n\t\t}\n\t\t$contents .= \"</h3>\";\n\t\treturn $contents;\n\t}", "public function getHeader()\n {\n }", "protected function getHeaderText()\n {\n return null;\n }", "public function getHeaderName();", "public function getMainHeading() : string\n {\n return <<< 'MAINHEADING'\nWeb Services in MVC\nMAINHEADING;\n }", "public function getHeaderField(): string\n {\n return $this->getConfig('header');\n }", "public function getMainHeading() : string\n {\n return <<< 'MAINHEADING'\nCommand Line Interface\nMAINHEADING;\n }", "public function getMainHeading() : string\n {\n return <<< 'MAINHEADING'\nMore UML Diagrams\nMAINHEADING;\n }", "public static function HTMLHeader(){\n\t\treturn self::$HTMLHeader;\n\t}", "private function getHeader() {\n\t\treturn \n\t\t\"<!DOCTYPE HTML>\n\t\t<html>\n\t\t\t<head>\n\t\t\t\t<title>1DV408 - Labb 01</title>\n\t\t\t\t<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>\n\t\t\t\t<link rel='stylesheet' type='text/css' href='assets/css/style.css'>\n\t\t\t</head>\";\n\t}", "public function getHeader(){\n $header = $this->_headerScript;\n $header.= $this->_headerStyle;\n $header.= $this->getOnLoad();\n return $header;\n }", "public function getMainHeading() : string\n {\n return <<< 'MAINHEADING'\nSQL SERVER Intro\nMAINHEADING;\n }", "protected function constructHead(){\t\t\n\t\t$head = \"\\r\\n<!-- Header Information -->\\r\\n\";\n\t\t\n\t\t//Print Page Title\n\t\t$head .= \"\\r\\n<!-- SITE TITLE -->\\r\\n\";\n\t\t$head .= HTML::title($this->assets()->contsructTitle());\n\t\t\n\t\t//Print Meta\n\t\t$head .= \"\\r\\n<!-- META INFORMATION -->\\r\\n\";\n\t\t$head .= implode(\"\", $this->assets()->meta());\n\t\t\n\t\t//Print Styles\n\t\t$head .= \"\\r\\n<!-- STYLE SHEETS -->\\r\\n\";\n\t\t$head .= implode(\"\", $this->assets()->styles());\n\t\t\n\t\t//Print Javascript\n\t\t$head .= \"\\r\\n<!-- JAVASCRIPT INCLUDES -->\\r\\n\";\n\t\t$head .= implode(\"\", $this->assets()->scripts(true));\n\t\t\n\t\t//Print Extra\n\t\t$head .= \"\\r\\n<!-- EXTRA INCLUDES -->\\r\\n\";\n\t\t$head .= implode(\"\", $this->assets()->extra());\n\t\t\n\t\treturn $head;\n\t}", "public function getHeaderText()\n {\n if ($this->_coreRegistry->registry('lofhelpdesk_ticket')->getId()) {\n return __(\"View Ticket '%1'\", $this->escapeHtml($this->_coreRegistry->registry('lofhelpdesk_ticket')->getTitle()));\n } else {\n return __('New Ticket');\n }\n }", "public static function cssHeader(){\n\t\tforeach (self::$cssHeader as $headerLine){\n\t\t\techo $headerLine.PHP_EOL;\n\t\t}\n\t}", "private function getHeader()\r\n {\r\n return $this->header;\r\n }", "public function Header() {\n $this->imprime($this->format['header']);\n }" ]
[ "0.7235434", "0.7023084", "0.6871664", "0.68712425", "0.6824998", "0.6793942", "0.67362076", "0.66969216", "0.66968185", "0.66870224", "0.6683659", "0.66664636", "0.6662851", "0.66581976", "0.66415036", "0.66153246", "0.65943897", "0.6561976", "0.6552808", "0.6547836", "0.6546702", "0.65274084", "0.6519214", "0.6513344", "0.65013844", "0.6494843", "0.6491432", "0.6486589", "0.64813644", "0.6475661" ]
0.7805425
0
Returns text for a footer for our class file.
public function getFooter() { $sRet = "}\n"; $sRet .= "// End Class \"$this->classname\"\n?>"; return($sRet); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getFooter()\n {\n return <<<EOF\n\n<info>\nFinished. \n</info>\n\n\nEOF;\n\n}", "public static function footer(){\t?>\r\n\t\t\t<footer>\r\n\t\t\t\t<p>(c)2017 Web programada por: Jose Montes & Juan Javier Ligero Rambla</p>\r\n\t\t\t</footer>\r\n\t\t<?php }", "function footer()\n\t{\n\t\treturn \"<footer>By Lauren Johnston</footer>\\n</body></html>\";\n\t}", "public static function footer(){\n\t\tforeach (self::$footer as $footerLine){\n\t\t\techo $footerLine.PHP_EOL;\n\t\t}\n\t}", "private function getFooter()\n {\n return sprintf(UUP_MAIL_MESSAGE_FOOTER, $this->data->options->app_name, $this->data->options->app_base);\n }", "public function GenFooter() {\n\t\t$this->sOutputFooter = $this->oTpl->fetch($this->aTplFile['footer']);\n\n\t\t// Set time used and db query executed time\n\t\tif ($this->bShowDebugInfo)\n\t\t\t$this->sOutputFooter = str_replace('<!-- debug info -->'\n\t\t\t\t, $this->oCtl->GetDebugInfo($this)\n\t\t\t\t. '<!-- debug info -->'\n\t\t\t\t, $this->sOutputFooter);\n\n\t\treturn $this->sOutputFooter;\n\t}", "public static function footer() {\n return <<<HTML\n<footer>\n\t<p>Copyright 2015, Sharing made Simple, Inc.</p>\n</footer>\nHTML;\n\n }", "public static function footer() {\n\t\t\t?>\n\t<div class=\"footer\">\n\t\t<div class=\"container\">\n\t\t\t<span class=\"left\">\n\t\t\t\tSite Created by <a target=\"_BLANK\" href=\"http://www.brethudson.com\">Bret Hudson</a>. &copy; <?php echo date(\"Y\"); ?> Fluency Games. All rights reserved.\n\t\t\t</span>\n\t\t\t<span class=\"right\">\n\t\t\t\t<a href=\"http://fluency-games.com/privacy-policy/\">Privacy Policy</a> | \n\t\t\t\t<a href=\"http://fluency-games.com/terms-of-use/\">Terms of Use</a> | \n\t\t\t\t<a href=\"http://fluency-games.com/contactus/\">Contact Us</a> |\n\t\t\t\t<?php echo ' ' . Config::get('version'); ?>\n\t\t\t</span>\n\t\t\t<div class=\"clear\"></div>\n\t\t</div>\n\t</div>\n\n\t\t\t<?php\n\t\t}", "public function getFooter(): string\n {\n return $this->debugTool->getRenderFooter();\n }", "public function footer()\n {\n $str=\"\\n\";\n $str.='M3 S0'.\"\\n\";//laser off\n $str.='M5'.\"\\n\";//?\n\n $str.='G0 X0 Y0 ;GO HOME'.\"\\n\";//Rapid home\n //?\n $str.='G91 G0 X0 Y0'.\"\\n\";\n $str.='%';\n return $str;\n }", "public function getFooter()\r\n \t{\r\n \t\t// The instructions stored in footer module\r\n \t\t// so include footer module to execute these inctructions\r\n \t\tinclude('modules/footer.module.php');\r\n \t\t\r\n \t\t// Get the name of class\r\n $footer_name = FOOTER_NAME;\r\n \r\n // Make a new object\r\n $footer_name = new $footer_name;\r\n \r\n // Execute inctructions\r\n $footer_name->run();\r\n \t}", "public function footer()\n {\n return $this->footer;\n }", "public function getFooter()\n {\n return $this->getValue('nb_catalog_tag_lang_footer');\n }", "public function Footer() {\n $this->imprime($this->format['footer']);\n }", "function rain_the_custom_footer(){\n\t\techo rain\\Rain_Customizer::get_instance()->get_footer_markup();\n\t}", "private function getFooter() {\n\t\treturn \n\t\t\"</body>\n\t\t</html>\";\n\t}", "public function footer() {\n global $CFG, $USER;\n\n $output = $this->container_end_all(true);\n\n $footer = $this->opencontainers->pop('header/footer');\n\n // Provide some performance info if required\n $performanceinfo = '';\n if (defined('MDL_PERF') || (!empty($CFG->perfdebug) and $CFG->perfdebug > 7)) {\n $perf = get_performance_info();\n if (defined('MDL_PERFTOLOG') && !function_exists('register_shutdown_function')) {\n error_log(\"PERF: \" . $perf['txt']);\n }\n if (defined('MDL_PERFTOFOOT') || debugging() || $CFG->perfdebug > 7) {\n $performanceinfo = essential_performance_output($perf, $this->page->theme->settings->perfinfo);\n }\n }\n\n $footer = str_replace($this->unique_performance_info_token, $performanceinfo, $footer);\n\n $footer = str_replace($this->unique_end_html_token, $this->page->requires->get_end_code(), $footer);\n\n $this->page->set_state(moodle_page::STATE_DONE);\n\n if(!empty($this->page->theme->settings->persistentedit) && property_exists($USER, 'editing') && $USER->editing && !$this->really_editing) {\n $USER->editing = false;\n }\n\n return $output . $footer;\n }", "function footer(){\n $this->getFooter();\n $tmp = [];\n foreach($this->footer_elements as $key => $value){\n $tmp[] = $value['text'];\n }\n $this->footer = '<div id=\"footer\" class=\"large-12 columns\">';\n $this->footer .= $this->div_elements($tmp);\n $this->footer .= '</div>';\n echo $this->footer;\n }", "public function getFooterContent();", "public function getFooter()\n {\n return $this->renderItem($this->footer);\n }", "function Footer()\n {\n $this->SetY(-12);\n // Arial italic 8\n $this->SetFont('Arial','I',8);\n // Page number\n $this->Cell(335,10,'copyright @ 2RA Technology Limited',0,0,'C');\n }", "function dofooter($text='&nbsp;', $class='footer') {\n\n $h = <<<END\n<br/><br/><br/><br/><br/><br/><br/><br/>\n<div class='$class'>\n<hr size='4' width='80%' noshade='noshade'>\n<center>\n$text\n</center>\n</div>\n</body></html>\n\nEND;\n return $h;\n}", "function Footer()\n {\n $this->SetY(-15);\n // Select Arial italic 8\n $this->SetFont('Arial','',6);\n // Print centered page number\n $this->Cell($this->GetStringWidth('Fisa se completeaza cu litere de tipar') + 7,2,'','T',1);\n $this->Cell(0,3,'Fisa se completeaza cu litere de tipar','',1,'L');\n $this->Cell(0,3,'Codul postal','',1,'L');\n $this->Cell(0,3,'Inclusiv prefixul localitatii','',1,'L');\n\n }", "protected function footer() {\n echo $this->output->footer();\n }", "public function Footer()\n {\n $this->SetY(-25);\n // Set font\n $this->SetFont('times', 'I', 8);\n // Page number\n $this->Cell(0, 10, \"Tierra Fértil - Atención al Ciudadano. Elaborado (\".fechaactual().\") por \".$this->author.\". Página \".$this->getAliasNumPage().\"/\".$this->getAliasNbPages(), 0, 0, 'C');\n\t}", "public function Footer() {\n // Position at 27 mm from bottom\n $this->SetY(-15);\n // Set font\n $this->SetFont('helvetica', 'I', 8);\n // Page number\n// $this->Cell(0, 10, 'Página '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');\n \n $footer = '<div align=\"center\"><span style=\"color: red;font-size: 1.3em;font-weight: bold;font-variant: small-caps;\">'.$this->footerText.'</span><br><span>'.$this->trans('pequiven_seip.pdf.pageFooter', array('%page%' => $this->getAliasNumPage(),'%totalPage%' => $this->getAliasNbPages()),'PequivenSEIPBundle').'</span></div>';\n $this->writeHTML($footer);\n \n //Línea HR\n $lineRed = array('width' => 1.0, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 0));\n if($this->printLineFooter === true){\n $this->Line(0, 190, 300, 190, $lineRed);\n }\n\n }", "function Footer() {\n// Position at 1.5 cm from bottom\n $this->SetY(-35);\n// Arial italic 8\n $this->SetFont('Arial', 'I', 8);\n\n\n\n $this->SetLeftMargin(17);\n $this->WriteHTML(\"<p> Net Surfing garantisce l'assoluta riservatezza delle informazioni relative ai dati personali del cliente che in nessun caso saranno divulgati\" .\n \"<br>\" .\n \"in forma nominativa. Si invita a prendere visione dell'informativa sulla privacy di Net Surfing al seguente indirizzo:\" . \"<br>\" .\n \"https://www.netsurf.it/it/azienda/privacy-policy </p>\");\n // Stampa il numero di pagina corrente e totale\n $this->SetX(0);\n $this->Cell(0, 10, 'Page ' . $this->PageNo() . '/{nb}', 0, 1, 'C');\n }", "public function GetFooter()\r\n\t{\r\n\t\treturn $this->pObjResponse->GetFooter();\r\n\t}", "public static function getGeneralFooter() {\n ?>\n <footer class = \"py-5 bg-dark\">\n <div class = \"container\">\n <p class = \"m-0 text-center text-white\" > Copyright &copy Estampaty</p>\n </div>\n <!--/.container -->\n </footer>\n <?php\n }", "function Footer()\n{\n\t$this->SetY(-20);\n\t// Arial italic 8\n\t$this->SetFont('Arial','I',9);\n\t// Text color in gray\n\t$this->SetTextColor(128);\n\t// Page number\n#\t$this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');\n//\t$this->Cell(0,10,'1800 Century Park East, 2nd Floor - Los Angeles, California 90067 ','','','C');\n//\t$this->Ln(3);\n//\t$this->Cell(0,10,'877-515-4712 Main - 310.861.9051 Fax - www.InitiativeLegal.com ','','','C');\n//\t$this->Ln(4);\n//\t$this->Cell(0,10,'CLIENT INITIALS _______','','','R');\n//\t$this->Ln(9);\n}" ]
[ "0.76420254", "0.7623476", "0.7586849", "0.75850743", "0.7465838", "0.7453531", "0.74399644", "0.74120873", "0.74010116", "0.73502177", "0.7342733", "0.7290339", "0.7230145", "0.7217044", "0.72145236", "0.72097665", "0.71738154", "0.7147445", "0.71333694", "0.71244824", "0.7122593", "0.7117807", "0.7117043", "0.7111862", "0.7109849", "0.70830727", "0.7077248", "0.706379", "0.70496523", "0.70139885" ]
0.8046243
0
public function to return text to declare all the variables in the class.
public function getVariables() { $sRet = "// Variable declaration\n"; $sRet .= "public \$$this->primarykey; // Primary Key\n"; foreach($this->variables as $variable) { // Loop through variables and declare them. if($variable != $this->primarykey) { // Variable is not primary key, so we'll add it. $sRet .= "public \$$variable;\n"; } } // Add variable for connection to database. $sRet .= "public \$database;\n\n"; return($sRet); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function __toString() {\r\n return \"Variable name = \" . $this->name . \", value = \" . $this->value;\r\n }", "private function generarVariables() {\n JD('Controlador', $this->_nombreControlador);\n JD('Vista', $this->vista);\n JD('Metodo', $this->_metodo);\n JD('Modulo', $this->_modulo);\n }", "public function getTab()\n {\n return ' Variables';\n }", "public function __toString()\n\t{\n\t\t$buffer = '';\n\t\t$count = 0;\n\t\tforeach ($this->getClasses() as $class) {\n\t\t\t$string = \"\\n \" . trim(str_replace(\"\\n\", \"\\n \", $class->__toString()), ' ');\n\t\t\t$string = str_replace(\" \\n - Parameters\", \"\\n - Parameters\", $string);\n\n\t\t\t$buffer .= $string;\n\t\t\t$count++;\n\t\t}\n\t\t$classes = sprintf(\"\\n\\n - Classes [%d] {\\n%s }\", $count, ltrim($buffer, \"\\n\"));\n\n\t\t$buffer = '';\n\t\t$count = 0;\n\t\tforeach ($this->getConstants() as $constant) {\n\t\t\t$buffer .= ' ' . $constant->__toString();\n\t\t\t$count++;\n\t\t}\n\t\t$constants = sprintf(\"\\n\\n - Constants [%d] {\\n%s }\", $count, $buffer);\n\n\t\t$buffer = '';\n\t\t$count = 0;\n\t\tforeach ($this->getFunctions() as $function) {\n\t\t\t$string = \"\\n \" . trim(str_replace(\"\\n\", \"\\n \", $function->__toString()), ' ');\n\t\t\t$string = str_replace(\" \\n - Parameters\", \"\\n - Parameters\", $string);\n\n\t\t\t$buffer .= $string;\n\t\t\t$count++;\n\t\t}\n\t\t$functions = sprintf(\"\\n\\n - Functions [%d] {\\n%s }\", $count, ltrim($buffer, \"\\n\"));\n\n\t\treturn sprintf(\n\t\t\t\"Namespace [ <user> namespace %s ] { %s%s%s\\n}\\n\",\n\t\t\t$this->getName(),\n\t\t\t$classes,\n\t\t\t$constants,\n\t\t\t$functions\n\t\t);\n\t}", "function gen_php_file() {\n $php=\"\";\n $php.=$this->php_head.\"\\n\\n\";\n if (! empty($this->start_class)) $php.=$this->start_class;\n while (list($name,$value) = each ($this->vars)) {\n if (is_array($value)) {\n // generuj tablice\n $php.=\"\\tvar \\$$name=\".$this->gen_array($value).\";\\n\";\n } else { \n //$value=addslashes($value);\n //$value=ereg_replace(\"\\'\",\"'\",$value);\n $value=ereg_replace('\"','\\\"',$value);\n $value=preg_replace('/\\$/','\\\\\\$',$value); \n $php.=\"\\tvar \\$$name=\\\"$value\\\";\\n\";\n }\n }\n if (! empty($this->start_class)) {\n $this->end_class();\n $php.=$this->end_class;\n }\n $php.=$this->php_foot;\n \n return $php;\n }", "public static function variables()\n {\n return self::$codev;\n }", "public function getVariables();", "protected function getStaticVariableHeader()\n {\n return '<p><p><b><u>' . __('Static Template variables:') . '</u></b>' . ' ' .\n __('their values are written in product/category attributes in the backend.') . ' ' .\n __('The values of randomizer feature will also be written in the attibutes.');\n }", "public static function variableKeyUI(): string {\n\t\treturn preg_quote(Delimiters::VAR_OPEN) . '\\s*(?P<varName>' . self::CHAR_CLASS_EDITABLE_VARS . '+)';\n\t}", "public function __toString()\n {\n return \\Helpers\\Debug::vars($this->_data);\n }", "public function toString() {\n return sprintf(\n \"%s(%s)@{\\n\".\n \" [config ] %s\\n\".\n \" [scriptlet ] %s\\n\".\n \" [debug ] %s\\n\".\n \" [arguments ] [%s]\\n\".\n \" [environment ] %s\\n\".\n \" [logLevels ] %s\\n\".\n \"}\",\n nameof($this),\n $this->name,\n $this->config ? strtr($this->config->toString(), [\"\\n\" => \"\\n \"]) : '(none)',\n $this->scriptlet ? $this->scriptlet->getName() : '(none)',\n implode(' | ', WebDebug::namesOf($this->debug)),\n implode(', ', $this->arguments),\n \\xp::stringOf($this->environment, ' '),\n \\xp::stringOf($this->logLevels(), ' ')\n );\n }", "public function falar(){// metodo \n\n\t\treturn \" o meu nome é \".$this->nome ; //$this é uma variaveis interna do php serve para chamar o atributo dentro do metodo\n\n\t}", "static function plInfo()\n {\n return (array(\n \"plShortName\" => _(\"Variable entry\"),\n \"plDescription\" => _(\"FAI variable entry \"),\n \"plSelfModify\" => FALSE,\n \"plDepends\" => array(),\n \"plPriority\" => 23,\n \"plSection\" => array(\"administration\"),\n \"plCategory\" => array(\"fai\"),\n \"plProvidedAcls\" => array(\n \"cn\" => _(\"Name\"),\n \"description\" => _(\"Description\"),\n \"FAIvariableContent\"=> _(\"Variable content\") )\n ));\n }", "public function greeting(){\n\t\techo \"$this->name $this->lastname </br>\";\n\t}", "public function getHeader() {\n $sRet = \"<?php\\n\";\n $sRet .= \"/*******************************************************************************\n* Class Name: $this->classname\n* File Name: $this->filename\n* Generated: $this->filedate\n* - for Table: $this->tablename\n* - in Database: $this->databasename\n* Created by: table2class (http://www.stevenflesch.com/projects/table2class/)\n********************************************************************************/\\n\\n\";\n $sRet .= $this->getRequired();\n $sRet .= \"// Begin Class \\\"$this->classname\\\"\\n\";\n $sRet .= \"class $this->classname {\\n\";\n\n return($sRet);\n }", "public function __toString(): string\n {\n $clsName = \"\\033[1m\" . get_class($this) . \"\\033[0m\";\n return $clsName . \"\\nParams: \" . print_r($this->getIdentifyingParams(), true);\n }", "private function getUsedVariablesMessage(): string\r\n {\r\n $usedVariables = '';\r\n if (!empty($this->usedVariables)) {\r\n foreach ($this->usedVariables as $var => $value) {\r\n $usedVariables .= sprintf('%s %s %s, '\r\n , Stylizer::variable(\"$$var\")\r\n , Stylizer::operation('=')\r\n , Stylizer::type($value));\r\n }\r\n }\r\n return $usedVariables;\r\n }", "protected function getDynamicVariableHeader()\n {\n return '<br><p><p><b><u>' . __('Dynamic Template variables:') . '</u></b>' .\n ' <font color = \"#ea7601\">' . __('their values will only be seen on the frontend. In the backend you’ll see the variables themselves.') . '</font>' .\n ' ' . __('Here randomizer values will change with every page refresh.');\n }", "public function __toString()\n {\n $str = \"Class: \".$this->getName().\"\\n\";\n for ($i=0; $i<(strlen($this->getName())+7); $i++) {\n $str .= \"-\";\n }\n\n if (count($this->getConstants()) > 0) {\n $str .= \"\\n\\n### Constants ###\\n\\n\";\n $str .= implode(\"\\n\\n\", $this->getConstants());\n }\n\n $prop_filter = ReflectionProperty::IS_PUBLIC;\n $prop_filter += ReflectionProperty::IS_PROTECTED;\n if (count($this->getProperties($prop_filter)) > 0) {\n $str .= \"\\n\\n### Properties ###\\n\\n\";\n $str .= implode(\"\\n\\n\", $this->getProperties());\n }\n\n if (count($this->getMethods()) > 0) {\n $str .= \"\\n\\n### Methods ###\\n\\n\";\n $str .= implode(\"\\n\\n\", $this->getMethods());\n }\n\n return $str;\n }", "public function dispaly(){\n\n\n return \"Name: {$this->name} - {$this->street} - {$this->ssn}\";\n }", "protected function bodyToString()\n {\n return sprintf(\n '{' . PHP_EOL .\n ' @@ %s %d-%d' . PHP_EOL . PHP_EOL .\n ' - Constants [%d] {' . PHP_EOL .\n '%s }' . PHP_EOL . PHP_EOL .\n ' - Properties [%d] {' . PHP_EOL .\n '%s }' . PHP_EOL . PHP_EOL .\n ' - Methods [%d] {' . PHP_EOL .\n '%s }' . PHP_EOL .\n '}',\n $this->getFileName(),\n $this->getStartLine(),\n $this->getEndLine(),\n count( $this->getConstants() ),\n $this->constantsToString(),\n count( $this->getProperties() ),\n $this->propertiesToString(),\n count( $this->getMethods() ),\n $this->methodsToString()\n );\n }", "private function generatePreamble() {\n $handlerName= $this->getHandlerName();\n \n $preamble= 'private $'.$handlerName.'= null;'.\"\\n\\n\";\n $preamble.= 'public function __construct($handler) {'.\"\\n\".\n ' $this->'.$handlerName.'= $handler;'.\"\\n\".\n \"}\\n\";\n\n return $preamble;\n }", "private function _setOutputVariables()\n {\n $this->_siteTitle = $this->_system_register->site_info('SITE_TITLE');\n $this->_siteSlogan = $this->_system_register->site_info('SITE_SLOGAN');\n $this->_clientName = $this->_system_register->site_info('CLIENT_NAME');\n $this->_siteTagManager = $this->_system_register->site_info('SITE_TAG_MANAGER');\n $this->_siteReCAPTCHA = $this->_system_register->site_info('SITE_RECAPTCHA_KEY');\n \n return;\n }", "public function getInfo()\n {\n return 'The fuit: '.$this->name.' has a '.$this->taste.' taste!<br>';\n }", "function printprop(){\n echo\"this is from Mainclass\";\n echo \"<br>\";\n echo $this->a;\n echo \"<br>\";\n echo self::B; //for constnats and static value we should use \"self::\" {only inside self::}\n echo \"<br>\";\n echo self::$c; //for public static variables we should use \"self::$c\" {only inside self::}\n echo \"<br>\";\n }", "public function getMessageVars();", "public function toString() {\n return nameof($this).'{{> '.$this->name.'}}, indent= \"'.$this->indent.'\"';\n }", "function toString() {\n\t\t$vars = get_object_vars( $this );\n\t\t$keys = array_keys( $vars );\n\t\t$str = get_class( $this ) . \" => {\";\n\t\tfor ( $i = 0, $end = count( $keys ); $i < $end; $i++ ) {\n\t\t\t$key = $keys[ $i ];\n\t\t\t$val = $vars[ $key ];\n\t\t\t$str .= \"$key: $val\";\n\t\t\tif ( $i < $end - 1 ) {\n\t\t\t\t$str .= \", \";\n\t\t\t}\n\t\t}\n\t\t$str .= \"}\\n\";\n\t\treturn $str;\n\t}", "public function toString() {\n return $this->getClassName().'['.$this->descr.' @ '.$this->prop->getFilename().']';\n }", "public function attributes();" ]
[ "0.64769745", "0.6319033", "0.62301767", "0.5982435", "0.59698427", "0.5942711", "0.59362155", "0.591281", "0.58735585", "0.58120805", "0.57618743", "0.5750565", "0.5747912", "0.5723815", "0.5723449", "0.56977016", "0.5657355", "0.5652612", "0.56397974", "0.56303847", "0.5623686", "0.5593944", "0.5589623", "0.5583524", "0.5541035", "0.5535831", "0.5512767", "0.5511449", "0.550338", "0.54884857" ]
0.7011458
0
Test the ability to instantiate a container when the requested continer exists and verify that calling an unregistered container will result in an error.
public function testCreateInstanceAnOfAIoCRegistry() { $IoCRegistryMockTestObject = \Tinker\Di\IoCRegistry::resolve('IoCRegistryMockTestObject'); $this->assertSame('bar', $IoCRegistryMockTestObject->foo()); //Unregistered containers MUST throw an exception $AssertWillThrowException = \Tinker\Di\IoCRegistry::resolve('ThisWillThrowAnException'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testContainerIsRegistered()\n {\n $container = new Container();\n $otherContainer = $container->get('DI\\Container');\n\n $this->assertSame($container, $otherContainer);\n }", "public function testGetWithError()\n {\n $c = new Container;\n $c->get('foo');\n }", "public function testServiceAlreadyRegistered()\n {\n $this->expectException(InvalidArgumentException::class);\n $this->expectExceptionMessage('Service with ID \"stdclass\"');\n $this->container->register('stdclass', function () {\n return new \\stdClass();\n });\n $this->container->register('stdclass', function () {\n return new \\stdClass();\n });\n }", "public function testHas()\n {\n $this->container->register('stdclass', function () {\n return new \\stdClass();\n });\n\n $this->assertFalse($this->container->has('foo'));\n $this->assertTrue($this->container->has('stdclass'));\n }", "public function testAddAContainerToTheRegistry()\n {\n\n $this->assertFalse(\\Tinker\\Di\\IoCRegistry::registered('IoCRegistryMockTestObjectToBeAdded'));\n\n \\Tinker\\Di\\IoCRegistry::register('IoCRegistryMockTestObjectToBeAdded', function() {\n $IoCRegistryMockTestObjectToBeAdded = new IoCRegistryMockTestObjectToBeAdded;\n return $IoCRegistryMockTestObjectToBeAdded;\n });\n\n $this->assertArrayHasKey('IoCRegistryMockTestObjectToBeAdded', \\Tinker\\Di\\IoCRegistry::registry());\n }", "public function testRegisterNotExistingExtension()\n {\n $this->expectException(InvalidArgumentException::class);\n $this->expectExceptionMessage('\"NotExistingExtension\" does not exist');\n\n $container = new Container(['NotExistingExtension']);\n $container->init();\n }", "public function testContainerHasInstance() {\n $dic = new Container();\n\n $dic->setInstance('foo', new Db());\n\n $this->assertTrue($dic->has('foo'));\n }", "public function testGetWithDiConfigErrorThrownAsInvalidArgumentException()\n {\n $this->expectException(NotFoundException::class);\n\n $container = ContainerBuilder::build();\n $container['foo'] = function (ContainerInterface $container) {\n return $container['doesnt-exist'];\n };\n $container->get('foo');\n }", "public function testRemoveAContainerFromTheRegistry()\n {\n\n $count = count(\\Tinker\\Di\\IoCRegistry::registry());\n\n $this->assertArrayHasKey('IoCRegistryMockTestObject', \\Tinker\\Di\\IoCRegistry::registry());\n\n \\Tinker\\Di\\IoCRegistry::unregister('IoCRegistryMockTestObject');\n $this->assertArrayNotHasKey('IoCRegistryMockTestObject', \\Tinker\\Di\\IoCRegistry::registry());\n\n //Make sure only one container is removed\n $this->assertSame(count(\\Tinker\\Di\\IoCRegistry::registry()), ($count - 1));\n }", "public function testGetWithDiConfigErrorThrownAsContainerValueNotFoundException()\n {\n $this->expectException(NotFoundException::class);\n\n $container = ContainerBuilder::build();\n $container['foo'] = function (ContainerInterface $container) {\n return $container->get('doesnt-exist');\n };\n $container->get('foo');\n }", "public function testGet(): void\n {\n $container = Container::create();\n\n $this->assertSame($container, $container->get(Container::class));\n }", "public function testContainer()\n {\n $extension = new BestItKitchensinkExtension();\n $container = new ContainerBuilder();\n\n $extension->load(\n [\n [\n 'template' => $template = uniqid(),\n 'data_provider' => $provider = uniqid(),\n 'template_engine' => $engine = uniqid(),\n ]\n ],\n $container\n );\n\n static::assertSame($template, $container->getParameter('best_it_kitchensink.template'));\n static::assertTrue($container->hasAlias('best_it_kitchensink.template_engine'));\n static::assertTrue($container->hasAlias('best_it_kitchensink.data_provider'));\n }", "public function testUnknownUserConfig()\n {\n $this->expectException(InvalidConfigurationException::class);\n $this->expectExceptionMessage('Invalid user configuration');\n $container = new Container([], [\n 'not' => 'existing',\n ]);\n $container->init();\n }", "public function testRegister(): void\n {\n $resolver = $this->createMock(ResolverInterface::class);\n $resolver\n ->expects($this->once())\n ->method('getService')\n ->with('A')\n ->willReturn(new stdClass());\n\n $resolver\n ->expects($this->once())\n ->method('hasService')\n ->with('A')\n ->willReturn(true);\n\n $container = $this->createMock(ContainerInterface::class);\n\n /**\n * @var ResolverInterface $resolver\n * @var ContainerInterface $container\n */\n $serviceLocator = new ServiceLocator($container);\n $service = $serviceLocator\n ->addResolver($resolver, 'invokables')\n ->getService('A');\n\n $this->assertInstanceOf(stdClass::class, $service);\n }", "public function testGlobalContainer()\n {\n $container = wprss_wp_container();\n $this->assertTrue($container instanceof \\Interop\\Container\\ContainerInterface, 'Global container is not a valid container');\n }", "public function has(UnitTester $I): void\n {\n $I->wantToTest('PSR-11 Container - has');\n\n $di = new Di();\n $di->setShared('issetService', function () {\n return true;\n });\n\n $container = new Container($di);\n\n $I->assertFalse($container->has('empty'));\n $I->assertTrue($container->has('issetService'));\n }", "public function isContainerAvailable() : bool;", "private function getUnInstallableContainerSetup()\n {\n $app = $this->app;\n $app['env'] = 'production';\n $app['orchestra.installed'] = false;\n $acl = $app['orchestra.acl'];\n $config = $app['config'];\n $event = $app['events'];\n $mailer = $app['orchestra.mail'];\n $memory = $app['orchestra.memory'];\n $notifier = $app['orchestra.notifier'];\n $request = $app['request'];\n $widget = $app['orchestra.widget'];\n\n $memoryProvider = m::mock('\\Orchestra\\Memory\\Provider');\n\n $memoryProvider->shouldReceive('get')->once()->with('site.name')->andReturnNull()\n ->shouldReceive('put')->once()->with('site.name', 'Orchestra Platform')->andReturnNull();\n\n $acl->shouldReceive('make')->once()->andReturn($acl);\n $mailer->shouldReceive('attach')->once()->with($memoryProvider)->andReturnNull();\n $memory->shouldReceive('make')->once()->andReturn($memoryProvider)\n ->shouldReceive('make')->once()->with('runtime.orchestra')->andReturn($memoryProvider);\n $notifier->shouldReceive('setDefaultDriver')->once()->with('orchestra')->andReturnNull();\n $widget->shouldReceive('make')->once()->with('menu.orchestra')->andReturn($widget)\n ->shouldReceive('make')->once()->with('menu.app')->andReturn($widget)\n ->shouldReceive('add->title->link')->once()->with('http://localhost/admin/install')->andReturn($widget);\n $request->shouldReceive('root')->andReturn('http://localhost')\n ->shouldReceive('secure')->andReturn(false);\n $config->shouldReceive('get')->once()->with('orchestra/foundation::handles', '/')->andReturn('admin');\n $event->shouldReceive('fire')->once()->with('orchestra.started', array($memoryProvider))->andReturnNull();\n\n return $app;\n }", "private function getInstallableContainerSetup()\n {\n $app = $this->app;\n $app['env'] = 'production';\n $app['orchestra.installed'] = false;\n $acl = $app['orchestra.acl'];\n $config = $app['config'];\n $event = $app['events'];\n $mailer = $app['orchestra.mail'];\n $memory = $app['orchestra.memory'];\n $notifier = $app['orchestra.notifier'];\n $request = $app['request'];\n $translator = $app['translator'];\n $widget = $app['orchestra.widget'];\n\n $memoryProvider = m::mock('\\Orchestra\\Memory\\Provider');\n\n $memoryProvider->shouldReceive('get')->once()->with('site.name')->andReturn('Orchestra');\n\n $acl->shouldReceive('make')->once()->andReturn($acl)\n ->shouldReceive('attach')->once()->with($memoryProvider)->andReturn($acl);\n $mailer->shouldReceive('attach')->once()->with($memoryProvider)->andReturnNull();\n $memory->shouldReceive('make')->once()->andReturn($memoryProvider);\n $notifier->shouldReceive('setDefaultDriver')->once()->with('orchestra')->andReturnNull();\n $widget->shouldReceive('make')->once()->with('menu.orchestra')->andReturn($widget)\n ->shouldReceive('make')->once()->with('menu.app')->andReturn($widget)\n ->shouldReceive('add->title->link')->once()->andReturnNull();\n $translator->shouldReceive('get')->andReturn('foo');\n $event->shouldReceive('listen')->once()\n ->with('orchestra.ready: admin', 'Orchestra\\Foundation\\AdminMenuHandler')->andReturnNull()\n ->shouldReceive('fire')->once()->with('orchestra.started', array($memoryProvider))->andReturnNull();\n $config->shouldReceive('get')->once()->with('orchestra/foundation::handles', '/')->andReturn('admin');\n $request->shouldReceive('root')->andReturn('http://localhost')\n ->shouldReceive('secure')->andReturn(false);\n\n return $app;\n }", "public function testThrowsWhenGettingNonExistentClass()\n {\n $this->setExpectedException('League\\Container\\Exception\\NotFoundException');\n\n $container = new ReflectionContainer;\n\n $container->get('Whoooo');\n }", "public function testContainerHasExistingClass() {\n $dic = new Container();\n\n $this->assertTrue($dic->has(self::DB));\n }", "public function testRegisterContainerConfiguration()\n {\n $mock = static::createMock(LoaderInterface::class);\n\n $mock\n ->expects(static::once())\n ->method('load')\n ->with(realpath(__DIR__ . '/../') . DIRECTORY_SEPARATOR . 'app/config/config_' . self::TESTED_ENV . '.yml');\n\n $this->fixture->registerContainerConfiguration($mock);\n }", "public function testContainerStructure()\n {\n $globalContainer = wprss_wp_container();\n $wpraContainer = wprss_hub_container();\n $coreContainer = wprss_core_container();\n\n $this->assertTrue(in_array($wpraContainer, $globalContainer->getContainers(), true), 'Global container does not container the WPRA container');\n $this->assertTrue(in_array($coreContainer, $wpraContainer->getContainers(), true), 'WPRA container does not contain the Core container');\n }", "public function testRegisterSet()\n {\n $this->container->register('stdclass', function () {\n return new \\stdClass();\n });\n\n $instance = $this->container->get('stdclass');\n $this->assertInstanceOf('stdClass', $instance);\n $this->assertSame($instance, $this->container->get('stdclass'));\n }", "public function testGetInstantiatesClassWithConstructorAndUsesContainer()\n {\n $classWithConstructor = 'League\\Container\\Test\\Asset\\Foo';\n $dependencyClass = 'League\\Container\\Test\\Asset\\Bar';\n $dependency = new $dependencyClass;\n\n $container = new ReflectionContainer;\n\n $container->setContainer($this->getImmutableContainerMock([\n $dependencyClass => $dependency,\n ]));\n\n $item = $container->get($classWithConstructor);\n\n $this->assertInstanceOf($classWithConstructor, $item);\n $this->assertSame($dependency, $item->bar);\n }", "public function testGetInstantiatesClassWithoutConstructor()\n {\n $classWithoutConstructor = 'League\\Container\\Test\\Asset\\Bar';\n\n $container = new ReflectionContainer;\n\n $this->assertInstanceOf($classWithoutConstructor, $container->get($classWithoutConstructor));\n }", "public function testGearmanDescriberLoadFromContainer()\n {\n static::$kernel = static::createKernel();\n static::$kernel->boot();\n\n $this->assertInstanceOf(\n '\\Mmoreram\\GearmanBundle\\Service\\GearmanDescriber',\n static::$kernel\n ->getContainer()\n ->get('gearman.describer')\n );\n }", "function it_is_initializable()\n {\n $this->shouldHaveType(Container::class);\n }", "public function testServiceNotFound(): void\n {\n $this->expectException(ServiceNotFound::class);\n $this->expectExceptionMessage('No service found for key \"foo\".');\n\n $container = $this->createMock(ContainerInterface::class);\n\n /**\n * @var ContainerInterface $container\n */\n $serviceLocator = new ServiceLocator($container);\n $serviceLocator->getService('foo');\n }", "public function testContainerSetFailureInvalidContainer()\n {\n $key = uniqid('key');\n $val = uniqid('val');\n $data = [$key, $val];\n $container = uniqid('container');\n $exception = $this->createInvalidArgumentException('Invalid container');\n $subject = $this->createInstance();\n $_subject = $this->reflect($subject);\n\n $subject->expects($this->exactly(1))\n ->method('_createInvalidArgumentException')\n ->with(\n $this->isType('string'),\n null,\n null,\n $container\n )\n ->will($this->returnValue($exception));\n\n $this->setExpectedException('InvalidArgumentException');\n $reflection = new ReflectionMethod($subject, '_containerSet');\n $reflection->setAccessible(true);\n $reflection->invokeArgs($subject, [&$container, $key, $val]);\n }" ]
[ "0.66732424", "0.64265406", "0.6359458", "0.61928743", "0.61882555", "0.5996683", "0.59790194", "0.5890901", "0.5869647", "0.5864339", "0.58388287", "0.58325773", "0.573898", "0.570725", "0.5706457", "0.5643163", "0.5631367", "0.5627564", "0.56166667", "0.5598202", "0.5590146", "0.5573981", "0.5569073", "0.554226", "0.5537638", "0.55318964", "0.5529893", "0.55246085", "0.5521457", "0.54896456" ]
0.65980506
1
Test adding new containers to the registry
public function testAddAContainerToTheRegistry() { $this->assertFalse(\Tinker\Di\IoCRegistry::registered('IoCRegistryMockTestObjectToBeAdded')); \Tinker\Di\IoCRegistry::register('IoCRegistryMockTestObjectToBeAdded', function() { $IoCRegistryMockTestObjectToBeAdded = new IoCRegistryMockTestObjectToBeAdded; return $IoCRegistryMockTestObjectToBeAdded; }); $this->assertArrayHasKey('IoCRegistryMockTestObjectToBeAdded', \Tinker\Di\IoCRegistry::registry()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testRemoveAContainerFromTheRegistry()\n {\n\n $count = count(\\Tinker\\Di\\IoCRegistry::registry());\n\n $this->assertArrayHasKey('IoCRegistryMockTestObject', \\Tinker\\Di\\IoCRegistry::registry());\n\n \\Tinker\\Di\\IoCRegistry::unregister('IoCRegistryMockTestObject');\n $this->assertArrayNotHasKey('IoCRegistryMockTestObject', \\Tinker\\Di\\IoCRegistry::registry());\n\n //Make sure only one container is removed\n $this->assertSame(count(\\Tinker\\Di\\IoCRegistry::registry()), ($count - 1));\n }", "public function testGetRegistrationInstances()\n {\n }", "function registry_container($new_container = null)\n{\n\tstatic $registry_container = array();\t\n\t$returned_container = $registry_container;\n\tif ( ! empty($new_container) ) {\n\t\t$registry_container = $new_container;\n\t}\n\treturn $returned_container;\n}", "public function testBrowseContainers()\r\n {\r\n //start up a new session, starting at the home page\r\n $this->session->visit('http://localhost:8000/app_test.php');\r\n // Get the page\r\n $page = $this->session->getPage();\r\n\r\n //click on the containers button\r\n $page->find(\"css\",\"#containersPage\")->click();\r\n\r\n //check that the header is the container search page\r\n $this->assertContains(\"Container Search\", $page->find(\"css\",\"#contentSeparator h2\")->getHtml());\r\n $this->assertContains(\"/container/search\", $this->session->getCurrentUrl());\r\n\r\n //Click on the add container button\r\n $page->find(\"css\",\"#newContainer\")->click();\r\n\r\n //check that the header is there and we're on the new container page\r\n $this->assertContains(\"Add Container\" , $page->find(\"css\",\"#contentSeparator h2\")->getHtml());\r\n $this->assertContains(\"/container/new\", $this->session->getCurrentUrl());\r\n\r\n //check that the buttons on the new container page are in the same y index\r\n $this->assertTrue($this->session->evaluateScript('\r\n $(\".ui.buttons .ui.button:contains(Cancel)\").position().top == $(\".ui.buttons .ui.button[value=\\\"Add\\\"\").position().top\r\n '));\r\n\r\n //Attempt to click on the cancel button\r\n $page->find(\"css\",\"#cancelButton\")->click();\r\n\r\n //check that we're back on the search page\r\n $this->assertContains(\"Container Search\", $page->find(\"css\",\"#contentSeparator h2\")->getHtml());\r\n $this->assertContains(\"/container/search\", $this->session->getCurrentUrl());\r\n }", "public function testContainerIsRegistered()\n {\n $container = new Container();\n $otherContainer = $container->get('DI\\Container');\n\n $this->assertSame($container, $otherContainer);\n }", "public function testAddActionSuccess()\r\n {\r\n //$container->setContainerSerial('testSerialController');\r\n //$repo = $this->em->getRepository(Container::class);\r\n //$repo->remove($container);\r\n\r\n //Create a client to go through the web page\r\n $client = static::createClient(array(), array('PHP_AUTH_USER' => 'admin', 'PHP_AUTH_PW' => 'password'));\r\n //Reques the contact add page\r\n $crawler = $client->request('GET','/container/new');\r\n //select the form and add values to it.\r\n $form = $crawler->selectButton('Add')->form();\r\n $form['appbundle_container[containerSerial]'] = 'testSerialController'.time();\r\n $form['appbundle_container[frequency]'] = 'Weekly';\r\n $form['appbundle_container[locationDesc]'] = 'Near backdoor';\r\n $form['appbundle_container[type]'] = 'Bin';\r\n $form['appbundle_container[size]'] = '6';\r\n $form['appbundle_container[lon]'] = 10;\r\n $form['appbundle_container[lat]'] = 25;\r\n $form['appbundle_container[status]'] = 'Active';\r\n $form['appbundle_container[reasonForStatus]'] = 'Test reason';\r\n $form['appbundle_container[augmentation]'] = 'Wheels installed';\r\n\r\n //crawler submits the form\r\n $crawler = $client->submit($form);\r\n //check for the success message\r\n //$this->assertGreaterThan(\r\n // 0,\r\n // $crawler->filter('html:contains(\"Contact has been successfully added\")')->count()\r\n // );\r\n $this->assertContains('Redirecting to /container', $client->getResponse()->getContent());\r\n }", "public function testAddInventorySnapshotTag()\n {\n }", "public function testContainerStructure()\n {\n $globalContainer = wprss_wp_container();\n $wpraContainer = wprss_hub_container();\n $coreContainer = wprss_core_container();\n\n $this->assertTrue(in_array($wpraContainer, $globalContainer->getContainers(), true), 'Global container does not container the WPRA container');\n $this->assertTrue(in_array($coreContainer, $wpraContainer->getContainers(), true), 'WPRA container does not contain the Core container');\n }", "public function testRegister()\n {\n }", "public function testRegistering()\n {\n // $provider->register();\n }", "public function testGetRegistrations()\n {\n }", "public function testAdd()\n {\n $response = $this->call('POST', '/sprint/add/1/asd/2015-01-01/2015-01-02/20');\n $this->assertEquals(200, $response->getStatusCode());\n $sprint = Sprint::all();\n $count = count($sprint);\n\n $this->assertEquals(1, $count);\n }", "public function testTaskAddCollection()\n {\n\n }", "public function test_addWarehouseTag() {\n\n }", "public function testViewContainerSuccess(){\r\n //create a container to be inserted into the database\r\n $contanier = new Container();\r\n $contanier->setFrequency('Weekly')\r\n ->setContainerSerial('123456')\r\n ->setLocationDesc(\"South side of building\")\r\n ->setLon(87)\r\n ->setLat(88)\r\n ->setType(\"Cart\")\r\n ->setSize(\"6 yd\")\r\n ->setAugmentation(\"Wheels\")\r\n ->setStatus(\"Active\")\r\n ->setReasonForStatus(\"Everything normal\");\r\n\r\n //create client\r\n $client = static::createClient(array(), array('PHP_AUTH_USER' => 'admin', 'PHP_AUTH_PW' => 'password'));\r\n $client->followRedirects();\r\n\r\n //Get the entity manager and repo for containers\r\n $em = $client->getContainer()->get('doctrine.orm.entity_manager');\r\n $repo = $em->getRepository(Container::class);\r\n\r\n //save the container\r\n $id = $repo->save($contanier);\r\n\r\n //Go to the containers page\r\n $crawler = $client->request('GET',\"/container/$id\");\r\n\r\n //get the content to check\r\n $content = $client->getResponse()->getContent();\r\n\r\n //assert that all the assigned values are on the page\r\n $this->assertContains('123456',$content);\r\n $this->assertContains('Weekly',$content);\r\n $this->assertContains('South side of building',$content);\r\n $this->assertContains('87',$content);\r\n $this->assertContains('88',$content);\r\n $this->assertContains('Cart',$content);\r\n $this->assertContains('6 yd',$content);\r\n $this->assertContains('Wheels',$content);\r\n $this->assertContains('Active',$content);\r\n $this->assertContains('Everything normal',$content);\r\n\r\n //Check that the valid labels are on the page\r\n //check that the field labels are not on the page\r\n //$this->assertContains('Id:',$content);\r\n $this->assertContains('Frequency:',$content);\r\n $this->assertContains('Container Serial:',$content);\r\n $this->assertContains('Location Description:',$content);\r\n $this->assertContains('Longitude:',$content);\r\n $this->assertContains('Latitude:',$content);\r\n $this->assertContains('Type:',$content);\r\n $this->assertContains('Size:',$content);\r\n $this->assertContains('Augmentation:',$content);\r\n $this->assertContains('Status:',$content);\r\n $this->assertContains('Reason for status:',$content);\r\n $this->assertContains('Property:',$content);\r\n //$this->assertContains('Structure:',$content);\r\n }", "public function testGetRegistrationInstanceLaunchHistory()\n {\n }", "public function testAddingNewItemTrue() {\n $addCart = array(\"isbn\" => \"9791296965391\", \"amt\" => 20, \"title\" => \"Book of Life\", \"pic\" => \"https://unsplash.com/photos/DCzpr09cTXY\", \"price\" => 294);\n $result = $this->object->addingNewItem($addCart);\n $this->assertNotSame(0, count($result));\n $this->assertNotEmpty($result);\n }", "public function testAdd() {\n\t\t$this->assertTrue(true);\n\t}", "public function testGetRegistry()\n {\n $this->assertArrayHasKey('IoCRegistryMockTestObject', \\Tinker\\Di\\IoCRegistry::registry());\n $this->assertArrayNotHasKey('IoCRegistryMockTestObjectXXXXXXXXXX', \\Tinker\\Di\\IoCRegistry::registry());\n }", "public function testEventServicesPutEventService()\n {\n }", "function testGroupAdd()\r\n {\r\n // Instantiate IC controller\r\n $icController = new InfocenterController($this->ant, $this->user);\r\n $icController->debug = true;\r\n \r\n $params['name'] = \"UnitTest GroupName\";\r\n $params['color'] = \"eeeeee\";\r\n \r\n $gid = $icController->groupAdd($params);\r\n $this->assertTrue($gid > 0);\r\n \r\n // clear data\r\n $params['gid'] = $gid;\r\n $ret = $icController->groupDelete($params);\r\n $this->assertTrue($ret > 0);\r\n $this->assertEquals($gid, $ret);\r\n }", "public function testGetRegistrationInstanceStatements()\n {\n }", "public function testReRegister()\r\n {\r\n $correctData = $this->getCorrectData();\r\n $result = $this->Engines->register($correctData['hostname'], $correctData['pid'], $correctData['host_session_key'], $correctData['port']);\r\n $this->assertTrue($result);\r\n $result = $this->Engines->register($correctData['hostname'], $correctData['pid'], $correctData['host_session_key'], $correctData['port']);\r\n $this->assertFalse($result);\r\n }", "public function testServiceAlreadyRegistered()\n {\n $this->expectException(InvalidArgumentException::class);\n $this->expectExceptionMessage('Service with ID \"stdclass\"');\n $this->container->register('stdclass', function () {\n return new \\stdClass();\n });\n $this->container->register('stdclass', function () {\n return new \\stdClass();\n });\n }", "public function onAdd(ContainerInterface $container)\n {\n\n }", "public function testGet(): void\n {\n $container = Container::create();\n\n $this->assertSame($container, $container->get(Container::class));\n }", "public function testAdd()\n\t{\n\t\t$this->cache->put('key', 'value', 15);\n\t\t$this->assertFalse($this->cache->add('key', 'value', 15));\n\t}", "public function testRegisterSet()\n {\n $this->container->register('stdclass', function () {\n return new \\stdClass();\n });\n\n $instance = $this->container->get('stdclass');\n $this->assertInstanceOf('stdClass', $instance);\n $this->assertSame($instance, $this->container->get('stdclass'));\n }", "public function testCreateCollectionViaIocContainer()\n {\n $collectionName = $this->TESTNAMES_PREFIX . 'CollectionTestSuite-Collection';\n\n $collectionOptions = ['waitForSync' => true];\n\n\n $collection = new Collection($this->client);\n\n /** @var $responseObject HttpResponse */\n $responseObject = $collection->create($collectionName, $collectionOptions);\n\n $body = $responseObject->body;\n\n $this->assertArrayHasKey('code', json_decode($body, true));\n $decodedJsonBody = json_decode($body, true);\n $this->assertEquals(200, $decodedJsonBody['code']);\n $this->assertEquals($collectionName, $decodedJsonBody['name']);\n }", "public function testGetRegistrationLaunchHistory()\n {\n }" ]
[ "0.6358716", "0.6263715", "0.61207443", "0.60878867", "0.6055882", "0.5995566", "0.5983167", "0.59619737", "0.5956085", "0.59001434", "0.58876705", "0.58770245", "0.5869145", "0.5832607", "0.58237463", "0.5777038", "0.5768048", "0.5748433", "0.5741667", "0.57354075", "0.57171917", "0.57067347", "0.5706318", "0.5694925", "0.5685581", "0.5685453", "0.56814575", "0.56775784", "0.56737494", "0.56671506" ]
0.76821744
0
Test removing containers from the registry
public function testRemoveAContainerFromTheRegistry() { $count = count(\Tinker\Di\IoCRegistry::registry()); $this->assertArrayHasKey('IoCRegistryMockTestObject', \Tinker\Di\IoCRegistry::registry()); \Tinker\Di\IoCRegistry::unregister('IoCRegistryMockTestObject'); $this->assertArrayNotHasKey('IoCRegistryMockTestObject', \Tinker\Di\IoCRegistry::registry()); //Make sure only one container is removed $this->assertSame(count(\Tinker\Di\IoCRegistry::registry()), ($count - 1)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function deleteAllTestContainers()\n {\n $containerInfos = $this->docker->getContainerManager()->findAll([\n 'filters' => json_encode([\n 'label' => ['lfs-server', 'is-testing'],\n ])\n ]);\n\n foreach ($containerInfos as $containerInfo) {\n if (in_array($containerInfo->getState(), ['running', 'restarting'])) {\n $this->stop($containerInfo->getId());\n }\n $this->delete($containerInfo->getId());\n }\n }", "public function testDeleteRegistrationInstance()\n {\n }", "public function testRemove()\n {\n InternalAutoloader::getInstance()->remove();\n $this->_assertRemoved();\n }", "public function tearDown(ServiceContainer $serviceContainer): void;", "public function testRemoveNonExistent(): void\n {\n self::assertInstanceOf(Collection::class, $this->class->remove('invalid'));\n }", "public function IDeleteBehatTestCollection() {\n $drupal_user = user_load($this->getUserManager()->getCurrentUser()->uid);\n $connection = islandora_get_tuque_connection($drupal_user);\n $repository = $connection->repository;\n $object = islandora_object_load($this->behat_test_collection_pid);\n if(empty($object)) {\n throw new Exception(\"Unable to find the behat test collection in order to delete it.\");\n }\n // try {\n // foreach($object as $datastream) {\n // $object->purgeDatastream($datastream->id);\n // }\n // }\n // catch(Exception $e) {\n // echo(\"WARNING: Could not purge test collection datastream: \" . $datastream->id);\n // }\n\n try {\n $repository->purgeObject($this->behat_test_collection_pid);\n }\n catch(Exception $e) {\n throw new Exception(\"Could not purge the behat test collection. Message: \" . $e->getMessage());\n }\n }", "public function testEventServicesDeleteEventService()\n {\n }", "public function testDeleteRegistration()\n {\n }", "public function testRemove()\n {\n $page1 = $this->createPage('Foobar');\n $page2 = $this->createPage('Barfoo', $page1);\n $page3 = $this->createPage('BarBar');\n\n $this->getEntityManager()->remove($page1);\n $this->getEntityManager()->flush();\n\n try {\n $this->getStorage()->getByUuid($page1->getUuid());\n $this->fail('UUID still exists after remove');\n } catch (NotFoundException $e) {\n }\n\n try {\n $this->getStorage()->getByUuid($page2->getUuid());\n $this->fail('UUID of sub-node still exists after remove');\n } catch (NotFoundException $e) {\n }\n }", "public function testDeleteRegistrationGlobalData()\n {\n }", "public function testUnset()\n {\n $this->registry->moo = 'maz';\n unset($this->registry->moo);\n\n $this->assertNull($this->registry->moo);\n }", "public function testRemove(): void\n {\n $this->class->set('bar', 'foo');\n\n self::assertInstanceOf(Collection::class, $this->class->remove('bar'));\n }", "public function stopAllTestContainers()\n {\n $containerInfos = $this->docker->getContainerManager()->findAll([\n 'filters' => json_encode([\n 'label' => ['lfs-server', 'is-testing'],\n 'status' => ['created', 'restarting', 'running', 'paused', 'exited', 'dead'],\n ])\n ]);\n\n foreach ($containerInfos as $containerInfo) {\n if (in_array($containerInfo->getState(), ['running', 'restarting'])) {\n $this->stop($containerInfo->getId());\n }\n }\n }", "public function testDeleteInventorySnapshotTag()\n {\n }", "public function testRemoveAlias() {\n $dic = new Container();\n\n $dic->addAlias('foo');\n $this->assertSame(['foo'], $dic->getAliases());\n\n $dic->removeAlias('foo');\n $this->assertSame([], $dic->getAliases());\n }", "public function testRemoveAll()\n {\n InternalAutoloader::removeAll();\n $this->_assertRemoved();\n }", "abstract protected function _containerUnset(&$container, $key);", "public function testDeleteRegistrationInstanceConfigurationSetting()\n {\n }", "public function testDeleteBuildOpenshiftIoV1CollectionNamespacedBuild()\n {\n\n }", "public function testSpacesProjectsDelete()\n {\n }", "public function tearDown()\n\t{\n\t\t$this->container = null;\n\t}", "public function testDeleteBuildOpenshiftIoV1CollectionNamespacedBuildConfig()\n {\n\n }", "public function testRemove()\n\t{\n\t\t$s = $this->session->getNamespace('three');\n\t\t$s->a = 'apple';\n\t\t$s->p = 'papaya';\n\t\t$s['c'] = 'cherry';\n\n\t\t$s = $this->session->getNamespace('three');\n\t\t$result = $this->serialize($s->getIterator());\n\t\t$this->assertEquals('a=apple;p=papaya;c=cherry;', $result);\n\n\t\t$s->remove();\n\t\t$result = $this->serialize($s->getIterator());\n\t\t$this->assertEquals('', $result, 'remove() did not remove data from namespace');\n\t}", "public function testDeleteNexus()\n {\n }", "public function testHandleRemoveAdmin()\n {\n $this->withSession($this->adminSession)\n ->call('POST', '/user/remove', ['ID' => 1]);\n \n $this->assertResponseStatus(404);\n }", "public function testDeleteCollection()\n {\n\n $collectionName = $this->TESTNAMES_PREFIX . 'CollectionTestSuite-Collection';\n\n $collection = new Collection($this->client);\n\n /** @var $responseObject HttpResponse */\n $responseObject = $collection->drop($collectionName);\n\n $body = $responseObject->body;\n\n $this->assertArrayHasKey('code', json_decode($body, true));\n $decodedJsonBody = json_decode($body, true);\n $this->assertEquals(200, $decodedJsonBody['code']);\n }", "public function testRemoveEvent()\n {\n $this->addMockEvent();\n $events = $this->events->getEvents();\n $event = array_shift($events);\n $this->events->removeEvent($event);\n $expected = array();\n $actual = $this->events->getEvents();\n $this->assertSame($expected, $actual);\n }", "public static function deleteTestCollection()\n\t{\n\t\tKinvey::deleteCollection(array(\n\t\t\t'collection' => 'widgets',\n\t\t\t'authMode' => 'admin',\n\t\t));\n\t}", "public function testFoldersDelete()\n {\n }", "public function testDeleteItems(): void\n {\n $psr16 = $this->createMock(CacheInterface::class);\n $psr16->expects(static::once())\n ->method('deleteMultiple')\n ->with(['foo', 'bar'])->willReturn(true);\n\n $pool = new CacheItemPool($psr16);\n static::assertTrue($pool->deleteItems(['foo', 'bar']));\n }" ]
[ "0.633851", "0.6244595", "0.6124343", "0.60814667", "0.5944229", "0.58563966", "0.5773719", "0.5762328", "0.57494897", "0.57426214", "0.5740702", "0.57339317", "0.5729913", "0.5722524", "0.57111204", "0.56994843", "0.5695432", "0.5662059", "0.56581014", "0.56493205", "0.56104493", "0.5609674", "0.56010026", "0.55992585", "0.55795634", "0.5577931", "0.55690515", "0.55681545", "0.5530608", "0.55107003" ]
0.80811465
0
Show pricelist for editing.
public function edit(PriceListAdminRequest $request, PriceList $pricelist) { Form::populate($pricelist); return response()->view('pricelist::admin.pricelist.edit', compact('pricelist')); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function show(PriceList $priceList)\n {\n //\n }", "public function edit($id)\n {\n $pricelist = PriceList::findOrFail($id);\n\n return view('price-list.edit', compact('pricelist'));\n }", "public function index()\n {\n $this->canAccess('show', PriceList::class);\n return view('admin.pricelist.index');\n }", "public function edit(PriceList $priceList)\n {\n $this->canAccess('edit', PriceList::class);\n return view('admin.pricelist.edit', compact('priceList'));\n }", "public function actionViewPrices(){\r\n\t\t//empty method - only for ACL permissions\r\n\t}", "public function show(Price $price)\n {\n //\n }", "private function printPriceList() {\n\n\t\tif(!$this->price_list) {\n\t\t\t$this->getPriceList($this->zenpaypal['option']['pricelist']);\n\t\t}\n\n\t\t$text = $this->zenpaypal['option']['pricelist_html_text'];\n\t\tif(is_null($text)) $text = gettext('Price List');\n\n\t\t$data_id = $this->zenpaypal['option']['pricelist_html_id'].'_data';\n\n\t\t$HTML_Tag = $this->zenpaypal['option']['pricelist_html_tag'];\n\t\tif(!empty($HTML_Tag)) {\n\t\t\t$HTML_Tag_Start = '<'.$HTML_Tag.'>';\n\t\t\t$HTML_Tag_End = '</'.$HTML_Tag.'>';\n\t\t}\n\n if(!empty($this->zenpaypal['option']['pricelist_table_caption'])) $caption = $this->zenpaypal['option']['pricelist_table_caption'];\n if(is_null($caption)) $caption = $this->zenpaypal['text']['Price_List']['caption'];\n\n if(!empty($this->zenpaypal['option']['pricelist_thead_media'])) $th_media = $this->zenpaypal['option']['pricelist_thead_media'];\n if(is_null($th_media)) $th_media = $this->zenpaypal['text']['Price_List']['media'];\n\n if(!empty($this->zenpaypal['option']['pricelist_thead_price'])) $th_price = $this->zenpaypal['option']['pricelist_thead_price'];\n if(is_null($th_price)) $th_price = $this->zenpaypal['text']['Price_List']['price'];\n\n if(!empty($this->zenpaypal['option']['pricelist_thead_qty'])) $th_qty = $this->zenpaypal['option']['pricelist_thead_qty'];\n if(is_null($th_qty)) $th_qty = $this->zenpaypal['text']['Price_List']['quantity'];\n\n if(!empty($this->zenpaypal['option']['pricelist_thead_size'])) $th_size = $this->zenpaypal['option']['pricelist_thead_size'];\n if(is_null($th_size)) $th_size = $this->zenpaypal['text']['Price_List']['size'];\n\n\n\t\t$html = $HTML_Tag_Start.'<a href=\"javascript: toggle('.\"'\".$data_id.\"'\".');\">'.$text.\"</a>\".$HTML_Tag_End.\"\\n\";\n\t\t$html .= '<div id=\"'.$data_id.'\" style=\"display: none;\">'.\"\\n\";\n\t\t$html .= '<table>'.\"\\n\";\n\t\t$html .= '<caption>'.$caption.'</caption>'.\"\\n\";\n\t\t$html .= '<thead>'.\"\\n\";\n\t\t$html .= '<tr>'.\"\\n\";\n\t\t$html .= '<th>'.$th_size.'</th>'.\"\\n\";\n\t\t$html .= '<th>'.$th_media.'</th>'.\"\\n\";\n\t\t$html .= '<th>'.$th_price.'</th>'.\"\\n\";\n\t\t$html .= '<th>'.$th_qty.'</th>'.\"\\n\";\n\t\t$html .= '</tr>'.\"\\n\";\n\t\t$html .= '</thead>'.\"\\n\";\n\t\t$html .= '<tbody>'.\"\\n\";\n unset($text,$data_id,$HTML_Tag,$caption,$th_media,$th_price,$th_qty,$th_size);\n\n\t\tforeach($this->price_list['size'] as $key => $value) {\n\t\t\t$size = str_replace(' ', '&nbsp;', $value);\n\t\t\t$media = str_replace(' ', '&nbsp;', $this->price_list['media'][$key]);\n\t\t\t$price = $this->price_list['price'][$key].'&nbsp;'.$this->zenpaypal['option']['currency_symbol'];\n\t\t\tif(!empty($this->price_list['quantity'])) {\n\t\t\t\t$qty = $this->price_list['quantity'][$key];\n\t\t\t}\n\t\t\telse $qty = $this->zenpaypal['option']['quantity_max'];\n\n\t\t\t$html .= '<tr>'.\"\\n\";\n\t\t\t$html .= '<td class=\"size\">'.$size.'</td>'.\"\\n\";\n\t\t\t$html .= '<td class=\"media\">'.$media.'</td>'.\"\\n\";\n\t\t\t$html .= '<td class=\"price\">'.$price.'</td>'.\"\\n\";\n\t\t\tif(!empty($qty)) $html .= '<td class=\"qty\">'.$qty.'</td>'.\"\\n\";\n\t\t\t$html .= '</tr>'.\"\\n\";\n\t\t}\n\t\tunset($size,$media,$price,$qty,$key,$value);\n\n\t\t$html .= '</tbody>'.\"\\n\";\n\t\t$html .= '</table>'.\"\\n\";\n\t\t$html .= '</div>'.\"\\n\";\n\n\t\treturn $html;\n unset($html);\n\t}", "public function edit() {\n $listeEspeces = $this->model->getEspeces();\n $this->view->editListEspeces($listeEspeces);\n }", "public function edit($id)\n {\n\n \t$price = SetPrice::find($id);\n\t return view('product_price.edit' , compact('price'));\n }", "public function edit($id)\n {\n $price = price::find($id);\n return view('management.prices.edit')->with('price',$price);\n }", "function edit($id) {\n\n $this->view->title = 'Price Categories';\n $this->view->breadcumb = '<a href=\"' . URL . '\">Home</a> <i class=\"fas fa-angle-right\"></i> <a href=\"' . URL . 'controlPanel\">Control Panel</a> <i class=\"fas fa-angle-right\"></i><a href=\"' . URL . 'priceCategories\">Price Categories</a> <i class=\"fas fa-angle-right\"></i>Edit Price Category';\n\n // get category details of the given id\n \n $this->view->getpricecat = $this->model->getPriceCategory($id);\n\n $this->view->render('control_panel/owner/edit_price_categories');\n }", "public function edit($id)\n { \n $product = Price::find($id);\n return view('admin.edit',[\n 'product' =>$product\n ]);\n }", "public function actionEditlist()\n {\n $searchModel = new OrdersSearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n\n return $this->render('editlist', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n }", "function editPriceView($id = NULL) {\r\n if(!array_key_exists(35,$this->role_privileges)){\r\n $this->loadThis();\r\n } else {\r\n if ($id == null) {\r\n redirect('admin/vehicle/pricelist');\r\n }\r\n $data['resultInfo'] = $this->k_master_price_model->getDetails($id);\r\n $data['priceListArray'] = $this->k_master_price_per_time_model->getPriceListByPriceId($id);\r\n \r\n $this->global['pageTitle'] = PROJECT_NAME . ' : Edit Price';\r\n $data['title'] = \"Price\";\r\n\r\n $data['sub_title'] = \"Edit\";\r\n\r\n $this->loadViews(\"admin/vehicle/price/edit\", $this->global, $data, NULL);\r\n }\r\n }", "public function PriceListManager() {\n $room_type_price = RoomTypePrice::all();\n \treturn view('pages.PriceListManager.PriceListManager')->with('room_type_price', $room_type_price);\n }", "public function edit($id)\n {\n $price = Price::findOrFail($id);\n return view('dashboard.prices.edit',compact(['price']));\n }", "public function show(ProductPrice $productPrice)\n {\n //\n }", "function OptionsList(){\t\n\t\techo '<table><tr class=\"newlink\"><th colspan=\"8\"><a href=\"productedit.php\">Create new product</a></th></tr><tr><th>&nbsp;</th><th>Title</th><th>Author</th><th>Category</th><th>Video</th><th>Live?</th><th>Price</th><th>Actions</th></tr>';\n\t\tforeach ($this->GetOptions() as $option_row)\n\t\t{\t$product = new AdminStoreProduct($product_row);\n\t\t\tif (!is_array($cats))\n\t\t\t{\t$cats = $product->GetAllCategories();\n\t\t\t}\n\t\t\techo '<tr class=\"stripe', $i++ % 2, '\"><td>';\n\t\t\tif ($img = $product->HasImage('tiny'))\n\t\t\t{\techo '<img src=\"', $img, '\" />';\n\t\t\t}\n\t\t\techo '</td><td>', $this->InputSafeString($product->details['title']), '</td><td>', $this->InputSafeString($product->details['author']), '</td><td>', $cats[$product->details['category']], '</td><td>', $product->VideoDescription(), '</td><td>', $product->details['live'] ? 'Yes' : 'No', '</td><td class=\"num\">', number_format($product->details['price'], 2), '</td><td><a href=\"productedit.php?id=', $product->id, '\">edit</a>';\n\t\t\tif ($histlink = $this->DisplayHistoryLink('storeproducts', $product->id))\n\t\t\t{\techo '&nbsp;|&nbsp;', $histlink;\n\t\t\t}\n\t\t\tif ($product->CanDelete())\n\t\t\t{\techo '&nbsp;|&nbsp;<a href=\"productedit.php?id=', $product->id, '&delete=1\">delete</a>';\n\t\t\t}\n\t\t\techo '</td></tr>';\n\t\t}\n\t\techo \"</table>\";\n\t}", "public function edit($id)\n {\n $data = Price::findOrFail($id);\n return view('price.edit', compact('data'));\n }", "public function showEditProduct(){\n $productDB = new ProductModel();\n $productId = filter_input(INPUT_POST, 'id');\n $view = new View();\n $view->products = $productDB->getTaskById($productId);\n $view->renderAdmin('admin_edit_product.php', 'admin_view.php');\n }", "public function edit($id)\r\n {\r\n $data['item'] = ProductListModel::find($id)->toArray();\r\n $data['category'] = $this->menu->ListMenu(ProductCategoryModel::all()->toArray(), 0);\r\n return view('Admin.Product.ListEdit')->with($data);\r\n }", "public function edit(OfferPrice $offerPrice)\n {\n //\n }", "public function edit($id)\n {\n $package_price=PackagePrice::find(1);\n\n return view('admin.package.price.index')->with('package_price',$package_price);\n }", "public function edit(Price $price, $id)\n {\n //\n $buildings_edit = Rumah::all();\n $house = Price::with('house')->find($id);\n $price = Price::find($id);\n return view('pages.price.create-price', compact('house', 'price', 'buildings_edit'));\n }", "public function edit(ProductList $productList)\n {\n //\n }", "public function show(OfferPrice $offerPrice)\n {\n //\n }", "public function edit($list)\n\t{\n\t\t$shoppingList = App::make('Api\\ListController')->show($list);\n\n\t\treturn View::make('list.edit')->with('shoppingList', $shoppingList);\n\t}", "public function actionIndex()\n {\n $searchModel = new PriceSearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n\n $model = new Price();\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n $this->setFlash('alert-success', 'Data was successfully saved');\n return $this->redirect(['price/index']);\n }\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n 'model' => $model,\n ]);\n }", "function priceList() {\r\n \r\n if(!array_key_exists(35,$this->role_privileges)){\r\n $this->loadThis();\r\n } else {\r\n\r\n $searchText = $this->input->post('searchText');\r\n $data['searchText'] = $searchText;\r\n\r\n $data['totalCount'] = true;\r\n $data['searchText'] = $searchText;\r\n\r\n $result = $this->k_master_price_model->getlist($data);\r\n $count = $result['count'];\r\n $data['totalCount'] = false;\r\n $segment = 5;\r\n $returns = $this->paginationCompress(\"admin/vehicle/price/list/\", $count, PER_PAGE_RECORDS, $segment);\r\n\r\n $data['page'] = $returns['page'];\r\n $data['offset'] = $returns['offset'];\r\n\r\n $data['records'] = $this->k_master_price_model->getList($data);\r\n\r\n $this->global['pageTitle'] = PROJECT_NAME . ' : Price List';\r\n $data['title'] = 'Price';\r\n $data['sub_title'] = 'List';\r\n $this->global['assets'] = array('cssTopArray' => array(base_url() . 'assets/plugins/iCheck/all'),\r\n 'cssBottomArray' => array(),\r\n 'jsTopArray' => array(),\r\n 'jsBottomArray' => array(base_url() . 'assets/plugins/iCheck/icheck')\r\n \r\n );\r\n\r\n $this->loadViews(\"admin/vehicle/price/list\", $this->global, $data, $this->global);\r\n }\r\n }", "private function showList(): void\n {\n $msg = \"Welcome customer, to view the product list type: list\\n\";\n echo $msg;\n while ($command = $this->getInput() !== 'list') {\n echo $msg;\n };\n $products = Route::goTo('list');\n $this->products = $products;\n foreach ($this->products as $product) {\n echo $product->toString() . \"\\n\";\n }\n }" ]
[ "0.7174985", "0.68316406", "0.67455846", "0.67017066", "0.66606015", "0.66221035", "0.6585282", "0.65298206", "0.6514046", "0.64778924", "0.64476347", "0.64385164", "0.6380707", "0.6351556", "0.6332403", "0.62524545", "0.6247579", "0.622592", "0.6206882", "0.62061155", "0.6148102", "0.6144588", "0.61385536", "0.6138398", "0.61072123", "0.61042994", "0.6093136", "0.60771555", "0.60390365", "0.60080594" ]
0.69017655
1
Tests all possible cases of adding and getting slides
public function testAddSlides() { $idOne = '1'; $slideOne = new Slide($idOne); $idTwo = '2'; $slideTwo = new Slide($idTwo); $collection = new SlideCollection(); $this->assertEmpty($collection->getAll()); $this->assertNull($collection->getSlideByIdentifier($idOne)); $this->assertNull($collection->getSlideByIdentifier($idTwo)); $collection->addSlide($slideOne); $this->assertEquals($slideOne, $collection->getSlideByIdentifier($idOne)); $this->assertNull($collection->getSlideByIdentifier($idTwo)); $collection->addSlide($slideTwo); $this->assertEquals($slideOne, $collection->getSlideByIdentifier($idOne)); $this->assertEquals($slideTwo, $collection->getSlideByIdentifier($idTwo)); $this->setExpectedException(\LogicException::class); $collection->addSlide($slideOne); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testGetSlidesSlide()\n {\n $request = $this->getGetSlidesSlideRequest();\n $this->initialize(\"getSlidesSlide\", null, null);\n $needAssertResponse = false;\n try {\n $result = $this->api->getSlidesSlide($request);\n $needAssertResponse = true;\n } catch (Exception $ex) {\n TestUtils::assertSuccessfulException($ex, \"getSlidesSlide\");\n }\n if ($needAssertResponse) {\n Assert::assertEquals(2, intdiv(json_decode($result, true)[\"Code\"], 100));\n }\n }", "public function testPutSlidesSlide()\n {\n $request = $this->getPutSlidesSlideRequest();\n $this->initialize(\"putSlidesSlide\", null, null);\n $needAssertResponse = false;\n try {\n $result = $this->api->putSlidesSlide($request);\n $needAssertResponse = true;\n } catch (Exception $ex) {\n TestUtils::assertSuccessfulException($ex, \"putSlidesSlide\");\n }\n if ($needAssertResponse) {\n Assert::assertEquals(2, intdiv(json_decode($result, true)[\"Code\"], 100));\n }\n }", "function setup_slides($slides = null, $post_id = false){\r global $slider;\r\r if(isset($slider))\r return $slider->setup($slides, $post_id);\r \r else\r return false;\r \r}", "public function testGetSlidesSlidesList()\n {\n $request = $this->getGetSlidesSlidesListRequest();\n $this->initialize(\"getSlidesSlidesList\", null, null);\n $needAssertResponse = false;\n try {\n $result = $this->api->getSlidesSlidesList($request);\n $needAssertResponse = true;\n } catch (Exception $ex) {\n TestUtils::assertSuccessfulException($ex, \"getSlidesSlidesList\");\n }\n if ($needAssertResponse) {\n Assert::assertEquals(2, intdiv(json_decode($result, true)[\"Code\"], 100));\n }\n }", "public function testGetSlideWithFormat()\n {\n $request = $this->getGetSlideWithFormatRequest();\n $this->initialize(\"getSlideWithFormat\", null, null);\n $needAssertResponse = false;\n try {\n $result = $this->api->getSlideWithFormat($request);\n $needAssertResponse = true;\n } catch (Exception $ex) {\n TestUtils::assertSuccessfulException($ex, \"getSlideWithFormat\");\n }\n if ($needAssertResponse) {\n Assert::assertTrue($result->isFile());\n }\n }", "function dynamicSlides() {\n\n\t\t$source = get_sub_field('selected_source') ? get_sub_field('selected_source') : '';\n\t\t$post_type_source = get_sub_field('pt_source') && $source == 'Post Type' ? get_sub_field('pt_source') : '';\n\t\t$cat_source = get_sub_field('cat_source') && $source == 'Categories' ? get_sub_field('cat_source')->slug : '';\n\t\t$tag_source = get_sub_field('tag_source') && $source == 'Tags' ? get_sub_field('tag_source')->slug : '';\n\t\t$post_length = get_sub_field('post_length');\n\n\t\t// the arguments for the wp_query, are driven by what the admin selects as the source\n\t\t// they can choose to select a post type, category or tag, as well as how many should return\n\t\t$args = array(\n\t\t\t'post_type' => $post_type_source,\n\t\t\t'category_name' => $cat_source,\n\t\t\t'tag' => $tag_source,\n\t\t\t'posts_per_page' => $post_length\n\t\t);\n\n\t\t$slide = new WP_Query($args);\n\n\t\t$i = 0;\n\n\t\tif ($slide->have_posts()): \n\t\t\twhile ($slide->have_posts()): $slide->the_post();\n\n\t\t\t\t// setting blank variables, these will be determined by the switch statement\n\t\t\t\t$large_url;\n\t\t\t\t$small_url;\n\n\t\t\t\tswitch ($post_type_source) {\n\n\t\t\t\t\tcase 'person': // if its a person cpt\n\t\t\t\t\t\t$large_url = get_field('person_bio_image')[\"url\"];\n\t\t\t\t\t\t$small_url = get_field('person_alt_bio_image')[\"url\"];\n\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tcase 'resource': // if its a resource cpt\n\t\t\t\t\t\t$large_url = get_field('resource_large_image')[\"url\"];\n\t\t\t\t\t\t$small_url = get_field('resource_archive_thumbnail')[\"url\"];\n\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tcase 'testimonial': // if its a testimonial cpt\n\t\t\t\t\t\t$large_url = get_field('testimonial_photo')[\"url\"];\n\t\t\t\t\t\t$small_url = get_field('testimonial_photo')[\"sizes\"][\"large\"];\n\n\t\t\t\t\t\tbreak;\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tdefault: // if its a post cpt\n\t\t\t\t\t\t$thumb_id = get_post_thumbnail_id();\n\t\t\t\t\t\t$large = wp_get_attachment_image_src($thumb_id, 'full', true);\n\t\t\t\t\t\t$small = wp_get_attachment_image_src($thumb_id, 'large', true);\n\t\t\t\t\t\t$large_url = $large[0];\n\t\t\t\t\t\t$small_url = $small[0];\n\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\t// for each post, we create an array, that has the following in it\n\t\t\t\t$data[$i]['content'] = get_the_title() . '<br><p>' . get_the_content() . '</p>';\n\t\t\t\t$data[$i]['large_img'] = $large_url;\n\t\t\t\t$data[$i]['small_img'] = $small_url;\n\n\t\t\t\t// skip to the bottom to see a sample of what this will produce\n\n\t\t\t\t$i++;\n\n\t\t\tendwhile;\n\t\tendif;\n\n\t\treturn $data;\n\t}", "public function publishSlides()\n {\n $slides = SlideImage::get();\n $ct = 0;\n foreach ($slides as $slide) {\n if ($slide->ShowSlide == 1) {\n if (!$slide->Name) {\n $slide->Name = ($slide->Headline) ? $slide->Headline : 'New Slide';\n }\n $slide->writeToStage('Stage');\n $slide->publish('Stage', 'Live');\n echo '<p>' . $slide->Name . '</p>';\n ++$ct;\n }\n }\n echo '<h3>'.$ct.' slides updated.</h3>';\n }", "public function testBasicTest()\n {\n\n $test = Slide::find(1);\n dd($test->content('hu')->first()->toArray());\n }", "private function _prepHook(){\n \n $slide_config = array(\n 'effect' => \"\\\"\".Configuration::get('AUTUMN_SLIDER_EFFECT').\"\\\"\",\n 'anim_speed' => Configuration::get('AUTUMN_SLIDER_ANI_SPEED'),\n 'pause_time' => Configuration::get('AUTUMN_SLIDER_PAUSE_TIME')\n );\n \n $context = Context::getContext();\n \n $slides = $this->_getSlides($this->context->language->id, $this->context->shop->id);\n \n if (!$slides){\n return false;\n }\n \n $this->smarty->assignGlobal('slide_config', $slide_config);\n $this->smarty->assignGlobal('slides', $slides);\n \n return true;\n }", "public function updateSlides($slides)\n {\n $result = true;\n $result &= $this->removeSliderSlides();\n if (count($slides)) {\n foreach ($slides as $slide) {\n $info = explode('-', $slide);\n $result &= Db::getInstance()->insert(\n 'jxmegalayout_extra_slider_item',\n array('id_extra_slider' => (int)$this->id, 'type' => pSQL($info[0]), 'id_content' => (int)$info[1])\n );\n }\n }\n\n return $result;\n }", "public function ajax_add_slides() {\n\t\tif ( isset( $_POST['data'] ) ) {\n\t\t\t$slides_data = json_decode( stripslashes( $_POST['data'] ), true );\n\n\t\t\tforeach ( $slides_data as $slide_data ) {\n\t\t\t\t$this->create_slide( $slide_data );\n\t\t\t}\n\t\t} else {\n\t\t\t$this->create_slide( false );\n\t\t}\n\n\t\tdie();\n\t}", "public function testFromArray()\n {\n $idOne = '1';\n $slideOne = new Slide($idOne);\n\n $idTwo = '2';\n $slideTwo = new Slide($idTwo);\n\n $slides = array($slideOne, $slideTwo);\n\n $collection = SlideCollection::fromArray($slides);\n\n $this->assertEquals($slides, $collection->getAll());\n }", "function new_wpt_slider() {\r\n \r\n $fits = array('post_type' => 'wpt_slider', 'posts_per_page' => 1);\r\n //if there is 1 slide show the slider\r\n if($fits){\r\n echo '<div id=\"containermio\">';\r\n\r\n echo '<a class=\"prev\" onclick=\"plusSlides(-1)\">&#10094;</a>';\r\n echo '<a class=\"next\" onclick=\"plusSlides(1)\">&#10095;</a>';\r\n\r\n echo '<ul id=\"slidermio\">';\r\n\r\n $args = array('post_type' => 'wpt_slider');\r\n $loop = new WP_Query($args);\r\n while ($loop->have_posts()) : $loop->the_post();\r\n \r\n echo '<li class=\"mySlides\">';\r\n echo '<div id=\"heightimg\">';\r\n echo '<h3 class=\"text\">';\r\n the_title();\r\n echo '</h3>';\r\n the_post_thumbnail('wpt_slider_image');\r\n echo '</div>';\r\n echo '</li>';\r\n\r\n endwhile;\r\n\r\n echo '</ul>';\r\n echo '</div>';\r\n \r\n };\r\n}", "function staticSlides() {\n\n\t\t$slide = get_sub_field('slide');\n\n\t\t$i = 0;\n\n\t\tforeach ($slide as $s) {\n\t\t\t$data[$i]['content'] = $s[\"content\"];\n\t\t\t$data[$i]['large_img'] = $s[\"large_image\"][\"url\"];\n\t\t\t$data[$i]['small_img'] = $s[\"small_image\"]; \n\n\t\t\t// skip to the bottom to see a sample of what this will produce\t\t\n\n\t\t\t$i++;\n\t\t}\n\n\t\treturn $data;\n\n\t}", "static function get_slides()\n {\n global $db;\n \n // grab the articles and push them into an array\n $result = array();\n $query = mysqli_query($db, \"SELECT * FROM `slides` ORDER BY `index`\");\n while ($cur = mysqli_fetch_assoc($query)) {\n $result[] = $cur;\n }\n \n return (count($result) === 0) ? null : $result;\n }", "function register_slide_fields() {\n\n\tif(function_exists(\"register_field_group\"))\n\t{\n\t\tregister_field_group(array (\n\t\t\t'id' => '50f458eec3f5a',\n\t\t\t'title' => 'Slider',\n\t\t\t'fields' => \n\t\t\tarray (\n\t\t\t\t0 => \n\t\t\t\tarray (\n\t\t\t\t\t'key' => 'field_7',\n\t\t\t\t\t'label' => 'Slides',\n\t\t\t\t\t'name' => 'acffs_slides',\n\t\t\t\t\t'type' => 'repeater',\n\t\t\t\t\t'order_no' => 0,\n\t\t\t\t\t'instructions' => '',\n\t\t\t\t\t'required' => 0,\n\t\t\t\t\t'conditional_logic' => \n\t\t\t\t\tarray (\n\t\t\t\t\t\t'status' => 0,\n\t\t\t\t\t\t'rules' => \n\t\t\t\t\t\tarray (\n\t\t\t\t\t\t\t0 => \n\t\t\t\t\t\t\tarray (\n\t\t\t\t\t\t\t\t'field' => 'null',\n\t\t\t\t\t\t\t\t'operator' => '==',\n\t\t\t\t\t\t\t\t'value' => '',\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t),\n\t\t\t\t\t\t'allorany' => 'all',\n\t\t\t\t\t),\n\t\t\t\t\t'sub_fields' => \n\t\t\t\t\tarray (\n\t\t\t\t\t\t'field_9' => \n\t\t\t\t\t\tarray (\n\t\t\t\t\t\t\t'label' => 'Slide Image',\n\t\t\t\t\t\t\t'name' => 'acffs_slide_image',\n\t\t\t\t\t\t\t'type' => 'image',\n\t\t\t\t\t\t\t'instructions' => '',\n\t\t\t\t\t\t\t'column_width' => '',\n\t\t\t\t\t\t\t'save_format' => 'url',\n\t\t\t\t\t\t\t'preview_size' => 'thumbnail',\n\t\t\t\t\t\t\t'order_no' => 0,\n\t\t\t\t\t\t\t'key' => 'field_9',\n\t\t\t\t\t\t),\n\t\t\t\t\t\t'field_8' => \n\t\t\t\t\t\tarray (\n\t\t\t\t\t\t\t'label' => 'Slide Description',\n\t\t\t\t\t\t\t'name' => 'acffs_slide_description',\n\t\t\t\t\t\t\t'type' => 'textarea',\n\t\t\t\t\t\t\t'instructions' => 'Enter a short description for this slide.',\n\t\t\t\t\t\t\t'column_width' => '',\n\t\t\t\t\t\t\t'default_value' => '',\n\t\t\t\t\t\t\t'formatting' => 'none',\n\t\t\t\t\t\t\t'order_no' => 1,\n\t\t\t\t\t\t\t'key' => 'field_8',\n\t\t\t\t\t\t),\n\t\t\t\t\t\t'field_11' => \n\t\t\t\t\t\tarray (\n\t\t\t\t\t\t\t'label' => 'Slide Post',\n\t\t\t\t\t\t\t'name' => 'acffs_slide_post',\n\t\t\t\t\t\t\t'type' => 'page_link',\n\t\t\t\t\t\t\t'instructions' => 'Link this slide to a post or page.',\n\t\t\t\t\t\t\t'column_width' => '',\n\t\t\t\t\t\t\t'post_type' => \n\t\t\t\t\t\t\tarray (\n\t\t\t\t\t\t\t\t0 => 'post',\n\t\t\t\t\t\t\t\t1 => 'page',\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t'allow_null' => 1,\n\t\t\t\t\t\t\t'multiple' => 0,\n\t\t\t\t\t\t\t'order_no' => 2,\n\t\t\t\t\t\t\t'key' => 'field_11',\n\t\t\t\t\t\t),\n\t\t\t\t\t\t'field_12' => \n\t\t\t\t\t\tarray (\n\t\t\t\t\t\t\t'label' => 'Slide URL',\n\t\t\t\t\t\t\t'name' => 'acffs_slide_url',\n\t\t\t\t\t\t\t'type' => 'text',\n\t\t\t\t\t\t\t'instructions' => 'Link this slide to a custom URL',\n\t\t\t\t\t\t\t'column_width' => '',\n\t\t\t\t\t\t\t'default_value' => '',\n\t\t\t\t\t\t\t'formatting' => 'none',\n\t\t\t\t\t\t\t'order_no' => 3,\n\t\t\t\t\t\t\t'key' => 'field_12',\n\t\t\t\t\t\t),\n\t\t\t\t\t),\n\t\t\t\t\t'row_min' => 0,\n\t\t\t\t\t'row_limit' => '',\n\t\t\t\t\t'layout' => 'table',\n\t\t\t\t\t'button_label' => 'Add Slide',\n\t\t\t\t),\n\t\t\t\t1 => \n\t\t\t\tarray (\n\t\t\t\t\t'key' => 'field_13',\n\t\t\t\t\t'label' => 'Slide Banner',\n\t\t\t\t\t'name' => 'acffs_slide_banner',\n\t\t\t\t\t'type' => 'text',\n\t\t\t\t\t'order_no' => 1,\n\t\t\t\t\t'instructions' => 'Enter text here to display it as a banner over the slider.',\n\t\t\t\t\t'required' => 0,\n\t\t\t\t\t'conditional_logic' => \n\t\t\t\t\tarray (\n\t\t\t\t\t\t'status' => 0,\n\t\t\t\t\t\t'rules' => \n\t\t\t\t\t\tarray (\n\t\t\t\t\t\t\t0 => \n\t\t\t\t\t\t\tarray (\n\t\t\t\t\t\t\t\t'field' => 'null',\n\t\t\t\t\t\t\t\t'operator' => '==',\n\t\t\t\t\t\t\t\t'value' => '',\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t),\n\t\t\t\t\t\t'allorany' => 'all',\n\t\t\t\t\t),\n\t\t\t\t\t'default_value' => '',\n\t\t\t\t\t'formatting' => 'none',\n\t\t\t\t),\n\t\t\t),\n\t\t\t'location' => \n\t\t\tarray (\n\t\t\t\t'rules' => \n\t\t\t\tarray (\n\t\t\t\t\t0 => \n\t\t\t\t\tarray (\n\t\t\t\t\t\t'param' => 'options_page',\n\t\t\t\t\t\t'operator' => '==',\n\t\t\t\t\t\t'value' => 'acf-options-slider',\n\t\t\t\t\t\t'order_no' => 0,\n\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t\t'allorany' => 'all',\n\t\t\t),\n\t\t\t'options' => \n\t\t\tarray (\n\t\t\t\t'position' => 'normal',\n\t\t\t\t'layout' => 'no_box',\n\t\t\t\t'hide_on_screen' => \n\t\t\t\tarray (\n\t\t\t\t),\n\t\t\t),\n\t\t\t'menu_order' => 0,\n\t\t));\n\t}\n}", "function project_slides_init()\n\t{\n\t $labels = array(\n\t\t'name' => _x('Слайд', 'post type general name'),\n\t\t'singular_name' => _x('Слайд', 'post type singular name'),\n\t\t'add_new' => _x('Добавить', 'slide'),\n\t\t'add_new_item' => __('Добавить Слайд'),\n\t\t'edit_item' => __('Редактировать слайд'),\n\t\t'new_item' => __('Новый слайд'),\n\t\t'view_item' => __('Просмотр слайда'),\n\t\t'search_items' => __('Поиск слайда'),\n\t\t'not_found' => __('Нет слайдов'),\n\t\t'not_found_in_trash' => __('No slides found in Trash'),\n\t\t'parent_item_colon' => '',\n\t\t'menu_name' => 'Слайды'\n\n\t );\n\n\t $args = array(\n\t\t'labels' => $labels,\n\t\t'public' => true,\n\t\t'publicly_queryable' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'query_var' => true,\n\t\t'rewrite' => true,\n\t\t'capability_type' => 'post',\n\t\t'has_archive' => true,\n\t\t'hierarchical' => false,\n\t\t'menu_position' => null,\n\t\t'supports' => array('title','editor','custom-fields')\n\t );\n\t // The following is the main step where we register the post.\n\t register_post_type('slides',$args);\n\n\t \n\t \n\t \n\t // Initialize New Taxonomy Labels\n\t $labels = array(\n\t\t'name' => _x( 'Категории', 'taxonomy general name' ),\n\t\t'singular_name' => _x( 'Категория', 'taxonomy singular name' ),\n\t\t'search_items' => __( 'Поиск категории' ),\n\t\t'all_items' => __( 'Все категории' ),\n\t\t'parent_item' => __( 'Главная категория' ),\n\t\t'parent_item_colon' => __( 'Главная категория:' ),\n\t\t'edit_item' => __( 'Редактировать категорию' ),\n\t\t'update_item' => __( 'Обновить категорию' ),\n\t\t'add_new_item' => __( 'Добавить категорию' ),\n\t\t'new_item_name' => __( 'Имя категории' ),\n\t );\n\t \n\t// Custom taxonomy for Project Tags\n\tregister_taxonomy('genre',array('slides'), array(\n\t\t'hierarchical' => true,\n\t\t'labels' => $labels,\n\t\t'show_ui' => true,\n\t\t'query_var' => true,\n\t\t'rewrite' => array( 'slug' => 'genre' ),\n\t ));\n\n\t}", "private function _validateAndSaveSlide (){\n \n // UPDATE THE SLIDE\n if (Tools::isSubmit('slideid') && Validate::isInt(Tools::getValue('slideid'))){\n if ($this->_isSlideExists((int)Tools::getValue('slideid'))){\n \n $upload = true;\n $slide_caption = '';\n \n // Validation stuff\n if (strlen(Tools::getValue('url')) > 0 && !Validate::isUrl(Tools::getValue('url'))){\n return $this->displayError($this->l('URL format is not correct!'));\n }\n \n if (Tools::getValue('image') != null && !Validate::isFileName(Tools::getValue('image'))){\n return $this->displayError($this->l('Invalid filename!'));\n }\n \n if (strlen(Tools::getValue('caption')) > 0){\n $slide_caption = pSQl(Tools::getValue('caption'), true);\n }\n \n $slide_id = (int)Tools::getValue('slideid');\n \n $slide = $this->_getSlide($slide_id);\n $current_slide_image = $slide['image'];\n \n if (!$_FILES['image']['name'] && $_FILES['image']['error']){\n $upload = false;\n }\n \n \n //PREP THE VARIABLES\n $slide_url = pSQL(Tools::getValue('url'));\n \n //If there is a new image\n if ($upload){\n $type = strtolower(substr(strrchr($_FILES['image']['name'], '.'), 1));\n $imagesize = array();\n $imagesize = @getimagesize($_FILES['image']['tmp_name']);\n\n if (isset($_FILES['image']) &&\n isset($_FILES['image']['tmp_name']) &&\n !empty($_FILES['image']['tmp_name']) &&\n !empty($imagesize) &&\n in_array(strtolower(substr(strrchr($imagesize['mime'], '/'), 1)), array('jpg', 'gif', 'jpeg', 'png')) &&\n in_array($type, array('jpg', 'gif', 'jpeg', 'png')))\n {\n $temp_name = tempnam(_PS_TMP_IMG_DIR_, 'PS');\n $salt = sha1(microtime());\n if ($error = ImageManager::validateUpload($_FILES['image'])){\n return $error;\n }\n elseif (!$temp_name || !move_uploaded_file($_FILES['image']['tmp_name'], $temp_name)){\n return $this->displayError($this->l('An error occurred during the image upload.'));\n }\n elseif (!ImageManager::resize($temp_name, dirname(__FILE__).'/slides/'.Tools::encrypt($_FILES['image']['name'].$salt).'.'.$type)){\n return $this->displayError($this->l('An error occurred during the image upload.'));\n }\n if (isset($temp_name)){\n @unlink($temp_name);\n }\n\n $slide_image = pSQL(Tools::encrypt($_FILES['image']['name'].$salt).'.'.$type);\n }\n else{\n return $this->displayError($this->l('Please select a proper image! (Allowed extensions: *.jpg *.gif *.jpeg *.png)'));\n }\n \n //DO THE UPDATE (WITH THE NEW IMAGE)\n $response = Db::getInstance(_PS_USE_SQL_SLAVE_)->execute('\n UPDATE '._DB_PREFIX_.'autumn_slider\n SET `url` = \\''.$slide_url.'\\', `caption` = \\''.$slide_caption.'\\', `image` =\\''.$slide_image.'\\'\n WHERE `slide_id` = '.$slide_id.'\n ');\n if (!$response){\n return $this->displayError($this->l('Slide could not be added!'));\n }\n else{\n return NULL;\n }\n \n }\n \n //DO THE UPDATE\n if (!$upload){\n $response = Db::getInstance(_PS_USE_SQL_SLAVE_)->execute('\n UPDATE '._DB_PREFIX_.'autumn_slider\n SET `url` = \\''.$slide_url.'\\', `caption` = \\''.$slide_caption.'\\'\n WHERE `slide_id` = '.$slide_id.'\n ');\n if (!$response){\n return $this->displayError($this->l('Slide could not be added!'));\n }\n else{\n return NULL;\n }\n }\n \n }\n }\n \n \n \n // ADD NEW SLIDE\n elseif (!Tools::isSubmit('slideid')){\n \n $slide_caption = '';\n \n // Validation stuff\n if (!Tools::isSubmit('lang')){\n return $this->displayError($this->l('Invalid Language!'));\n }\n \n if (strlen(Tools::getValue('url')) > 0 && !Validate::isUrl(Tools::getValue('url'))){\n return $this->displayError($this->l('URL format is not correct!'));\n }\n \n if (strlen(Tools::getValue('caption')) > 0){\n $slide_caption = pSQL(Tools::getValue('caption'), true);\n }\n \n if (Tools::getValue('image') != null && !Validate::isFileName(Tools::getValue('image'))){\n return $this->displayError($this->l('Invalid filename!'));\n }\n \n \n // PREP THE VARIABLES\n // Get the url\n if (Tools::getValue('url') == ''){\n $slide_url = '';\n }\n else{\n $slide_url = pSQL(Tools::getValue('url'));\n }\n \n //Get the language\n $lang_id = pSQL((int)Tools::getValue('lang'));\n \n // Upload the image and get the filename \n $type = strtolower(substr(strrchr($_FILES['image']['name'], '.'), 1));\n $imagesize = array();\n $imagesize = @getimagesize($_FILES['image']['tmp_name']);\n\n if (isset($_FILES['image']) &&\n isset($_FILES['image']['tmp_name']) &&\n !empty($_FILES['image']['tmp_name']) &&\n !empty($imagesize) &&\n in_array(strtolower(substr(strrchr($imagesize['mime'], '/'), 1)), array('jpg', 'gif', 'jpeg', 'png')) &&\n in_array($type, array('jpg', 'gif', 'jpeg', 'png')))\n {\n $temp_name = tempnam(_PS_TMP_IMG_DIR_, 'PS');\n $salt = sha1(microtime());\n if ($error = ImageManager::validateUpload($_FILES['image'])){\n return $error;\n }\n elseif (!$temp_name || !move_uploaded_file($_FILES['image']['tmp_name'], $temp_name)){\n return $this->displayError($this->l('An error occurred during the image upload to the tmp folder.'));\n }\n elseif (!ImageManager::resize($temp_name, dirname(__FILE__).'/slides/'.Tools::encrypt($_FILES['image']['name'].$salt).'.'.$type)){\n return $this->displayError($this->l('An error occurred during the image upload.'));\n }\n if (isset($temp_name)){\n @unlink($temp_name);\n }\n \n $slide_image = pSQL(Tools::encrypt($_FILES['image']['name'].$salt).'.'.$type);\n }\n else{\n return $this->displayError($this->l('Please select a proper image! (Allowed extensions: *.jpg *.gif *.jpeg *.png)'));\n }\n \n // Get the shop id\n $context = Context::getContext();\n $shop_id = pSQL($context->shop->id);\n \n //Get the last position and do the math\n $position_array = $this->_getLastSlidePosition($shop_id, $lang_id);\n $position_values = array_values($position_array);\n $position = array_shift($position_values);\n \n if ($position == NULL){\n $position = 1;\n }else{\n $position++;\n }\n \n //DO THE SAVE\n $response = Db::getInstance(_PS_USE_SQL_SLAVE_)->execute('\n INSERT INTO '._DB_PREFIX_.'autumn_slider\n (`shop_id`,`lang_id`,`position`,`url`,`caption`,`image`)\n VALUES ('.$shop_id.','.$lang_id.','.$position.',\\''.$slide_url.'\\',\\''.$slide_caption.'\\',\\''.$slide_image.'\\')\n ');\n if (!$response){\n return $this->displayError($this->l('Slide could not be added!'));\n }\n else{\n return NULL;\n }\n }\n \n //Errors\n else{\n return $this->displayError($this->l('Slide could not be saved! Unknown error! Please try again!'));\n }\n \n }", "public function test_add_to_images_and_images_methods()\n {\n $name_nothing = 'nothing';\n $name_php_logo = 'php-logo';\n $name_background = 'backgorund';\n $image_nothing = 'http://www.example.com/nothing.png';\n $image_php_logo = 'https://php-library.zlatanstajic.com/assets/img/elephpant.png';\n $image_background = 'https://php-library.zlatanstajic.com/assets/img/background.png';\n\n $this->website_object->add_to_images(array(\n $name_php_logo => $image_php_logo,\n $name_background => $image_background,\n ));\n\n $this->assertNotFalse($this->website_object->images($name_php_logo));\n $this->assertNotFalse($this->website_object->images($name_background));\n $this->assertFalse($this->website_object->images($name_nothing));\n $this->assertEquals(\n $image_php_logo,\n $this->website_object->images($name_php_logo)\n );\n $this->assertEquals(\n $image_background,\n $this->website_object->images($name_background)\n );\n $this->assertNotEquals(\n $image_nothing,\n $this->website_object->images($name_nothing)\n );\n $this->assertInternalType(\n 'string',\n $this->website_object->images($name_php_logo)\n );\n $this->assertInternalType(\n 'string',\n $this->website_object->images($name_background)\n );\n $this->assertInternalType(\n 'bool',\n $this->website_object->images($name_nothing)\n );\n\n $name_random = 'random';\n $image_random = 'http://www.example.com/random.png';\n\n $this->website_object->add_to_images(array(\n $name_random => $image_random,\n ), TRUE);\n\n $this->assertNotFalse($this->website_object->images($name_php_logo));\n $this->assertNotFalse($this->website_object->images($name_background));\n $this->assertFalse($this->website_object->images($name_nothing));\n $this->assertNotFalse($this->website_object->images($name_random));\n $this->assertEquals(\n $image_random,\n $this->website_object->images($name_random)\n );\n $this->assertInternalType(\n 'string',\n $this->website_object->images($name_random)\n );\n }", "function slidedeck_get_slides( $slides, $slidedeck ) {\r\n global $SlideDeckPlugin;\r\n \r\n // Fail silently if not this Deck type\r\n if( !$this->is_valid( $slidedeck['source'] ) ) {\r\n return $slides;\r\n }\r\n \r\n // How many decks are on the page as of now.\r\n $deck_iteration = 0;\r\n if( isset( $SlideDeckPlugin->SlideDeck->rendered_slidedecks[ $slidedeck['id'] ] ) )\r\n $deck_iteration = $SlideDeckPlugin->SlideDeck->rendered_slidedecks[ $slidedeck['id'] ];\r\n \r\n // Slides associated with this SlideDeck\r\n $slides_nodes = $this->get_slides_nodes( $slidedeck );\r\n \r\n $slide_counter = 1;\r\n foreach( (array) $slides_nodes as $slide_nodes ) {\r\n $slide = array(\r\n 'source' => $this->name,\r\n 'title' => $slide_nodes['title'],\r\n 'thumbnail' => (string) $slide_nodes['thumbnail'],\r\n 'created_at' => $slide_nodes['created_at'],\r\n 'classes' => array( 'has-image' ),\r\n 'type' => 'image'\r\n );\r\n $slide = array_merge( $this->slide_node_model, $slide );\r\n \r\n $slide_nodes['source'] = $slide['source'];\r\n $slide_nodes['type'] = $slide['type'];\r\n \r\n // In-line styles to apply to the slide DD element\r\n $slide_styles = array();\r\n $slide_nodes['slide_counter'] = $slide_counter;\r\n $slide_nodes['deck_iteration'] = $deck_iteration;\r\n \r\n $slide['title'] = $slide_nodes['title'] = slidedeck2_stip_tags_and_truncate_text( $slide_nodes['title'], $slidedeck['options']['titleLengthWithImages'] );\r\n $slide_nodes['permalink'] = $slide_nodes['permalink'];\r\n $slide_nodes['excerpt'] = slidedeck2_stip_tags_and_truncate_text( $slide_nodes['description'], $slidedeck['options']['excerptLengthWithImages'] );\r\n \r\n // Build an in-line style tag if needed\r\n if( !empty( $slide_styles ) ) {\r\n foreach( $slide_styles as $property => $value ) {\r\n $slide['styles'] .= \"{$property}:{$value};\";\r\n }\r\n }\r\n \r\n if( !empty( $slide['title'] ) ) {\r\n $slide['classes'][] = \"has-title\";\r\n } else {\r\n $slide['classes'][] = \"no-title\";\r\n }\r\n \r\n if( !empty( $slide_nodes['description'] ) ) {\r\n $slide['classes'][] = \"has-excerpt\";\r\n } else {\r\n $slide['classes'][] = \"no-excerpt\";\r\n }\r\n \r\n // Set link target node\r\n $slide_nodes['target'] = $slidedeck['options']['linkTarget'];\r\n \r\n $slide['content'] = $SlideDeckPlugin->Lens->process_template( $slide_nodes, $slidedeck );\r\n \r\n $slide_counter++;\r\n \r\n $slides[] = $slide;\r\n }\r\n \r\n return $slides;\r\n }", "private function _checkAndDeleteSlide(){\n if (!Tools::isSubmit('slideid')){\n return $this->displayError($this->l('Invalid Slide ID!'));\n }\n \n $slide_id = (int)Tools::getValue('slideid');\n \n if ($this->_isSlideExists($slide_id)){\n \n $curr_slide = $this->_getSlide($slide_id);\n $shop_id = $curr_slide['shop_id'];\n $lang_id = $curr_slide['lang_id'];\n $curr_position = $curr_slide['position'];\n \n $delete = Db::getInstance(_PS_USE_SQL_SLAVE_)->execute('\n DELETE FROM '._DB_PREFIX_.'autumn_slider\n WHERE `slide_id` = '.$slide_id.'\n ');\n \n if (!$delete){\n return $this->displayError($this->l('Slide could not be deleted!'));\n } \n \n $next_rows = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('\n SELECT `slide_id`, `position`\n FROM '._DB_PREFIX_.'autumn_slider\n WHERE `shop_id` = '.$shop_id.'\n AND `lang_id` = '.$lang_id.'\n AND `position` > '.$curr_position\n );\n \n $new_position = $curr_position;\n foreach ($next_rows as $next_row){\n \n $fix_positions = Db::getInstance(_PS_USE_SQL_SLAVE_)->execute('\n UPDATE '._DB_PREFIX_.'autumn_slider\n SET `position` = '.$new_position.'\n WHERE `slide_id` = '.$next_row['slide_id'].'\n ');\n \n $new_position++;\n }\n \n \n return $this->displayConfirmation($this->l('Slide deleted!'));\n \n }\n \n }", "public function testSetComplex()\n {\n Fig::set(\"projects.open source\", array(\"Fig\"));\n $this->assertEquals(array(\"Fig\"), Fig::get(\"projects.open source\"));\n }", "public function run()\n {\n Slide::create([\n 'ruta' => '1.png',\n 'activo' => 1\n ]);\n\n Slide::create([\n 'ruta' => '2.png',\n 'activo' => 1\n ]);\n\n Slide::create([\n 'ruta' => '3.png',\n 'activo' => 1\n ]);\n }", "function testSlider() {\n\t\t$this->Proto->get('#element');\n\t\t$result = $this->Proto->slider(array(\n\t\t\t'handle' => '#handle',\n\t\t\t'direction' => 'horizontal',\n\t\t\t'change' => 'onChange',\n\t\t\t'complete' => 'onComplete',\n\t\t\t'value' => 4,\n\t\t\t'wrapCallbacks' => false\n\t\t));\n\t\t$expected = 'var jsSlider = new Control.Slider($(\"handle\"), $(\"element\"), {axis:\"horizontal\", onChange:onComplete, onSlide:onChange, sliderValue:4});';\n\t\t$this->assertEqual($result, $expected);\n\n\t\t$this->Proto->get('#element');\n\t\t$result = $this->Proto->slider(array(\n\t\t\t'handle' => '#handle',\n\t\t\t'change' => 'change();',\n\t\t\t'complete' => 'complete();',\n\t\t\t'value' => 4,\n\t\t\t'min' => 10,\n\t\t\t'max' => 100\n\t\t));\n\t\t$expected = 'var jsSlider = new Control.Slider($(\"handle\"), $(\"element\"), {onChange:function (value) {complete();}, onSlide:function (value) {change();}, range:$R(10,100), sliderValue:4});';\n\t\t$this->assertEqual($result, $expected);\n\t}", "public function run()\n {\n $slide = new Slide();\n $slide->id = '1';\n $slide->link = 'ok';\n $slide->image = 'home-slider-1.jpg';\n $slide->save();\n\n $slide = new Slide();\n $slide->id = '2';\n $slide->link = 'ok';\n $slide->image = 'home-slider-2.jpg';\n $slide->save();\n\n }", "public function getSlides() {\n if(empty($this->slides)) {\n $db = \\Helper::getDB();\n $db->where('documentId', $db->escape($this->getId()));\n $db->orderBy('s.id', 'asc');\n $db->join('comments c', 'c.itemId = s.id AND c.type = \"slide\"', 'LEFT');\n $db->groupBy('s.id');\n $results = $db->get('document_slides s', NULL, '*, count(c.id) as commentsCount, s.id as id');\n\n $i = 1;\n foreach($results as $result) {\n $hasComments = $result['commentsCount'] > 0 ? TRUE : FALSE;\n $this->slides[$i] = new \\Models\\Slide($result['id'], $i, $this->getPath(). DS . $i .'.'. IMAGE_TYPE, $hasComments);\n $i++;\n }\n }\n\n return $this->slides;\n }", "function theme_slides()\n { \n return theme_facilities('slides');\n }", "function create_ukt_slide_type() {\n\t$ukt_slider_labels = array(\n\t\t'name' => __( 'UKT Slides'),\n\t\t'singular_name' => __( 'Slide'),\n\t\t'add_new' => __( 'Add New UKT Slide'),\n\t\t'add_new_item' => __( 'Add New UKT Slide'),\n\t\t'edit_item' => __( 'Edit UKT Slide'),\n\t\t'new_item' => __( 'New UKT Slide'),\n\t\t'view_item' => __( 'View UKT Slide'),\n\t\t'search_items' => __( 'Search UKT Slides'),\n\t\t'not_found' => __( '0 slide found'),\n\t\t'not_found_in_trash' => __( '0 UKT slide found in Trash'), \n\t\t'parent_item_colon' => '',\n\t\t'menu_name' => __( 'UKT Slides')\n\t);\n\t\n\t/*$ukt_slider_capabilities = array(\t\t\n\t\t'edit_post' => 'ukt_edit_slide',\n\t\t'edit_posts' => 'ukt_edit_slides',\n\t\t'edit_others_posts' => 'ukt_edit_others_slides',\n\t\t'publish_posts' => 'ukt_publish_slides',\n\t\t'read_post' => 'ukt_read_slide',\n\t\t'read_private_posts' => 'ukt_read_private_slides',\n\t\t'delete_post' => 'ukt_delete_slide'\n\t);*/\n\t\n\t$ukt_slider_capabilities = array(\n\t\t'edit_post' => 'edit_post',\n\t\t'edit_posts' => 'edit_posts',\n\t\t'edit_others_posts' => 'edit_others_posts',\n\t\t'publish_posts' => 'publish_posts',\n\t\t'read_post' => 'read_post',\n\t\t'read_private_posts' => 'read_private_posts',\n\t\t'delete_post' => 'delete_post'\n\t);\n\t\n\t//icon before changes : ''. plugins_url( '/slides-icon-20x20.png', __FILE__ ),\n\n\t\n\t$ukt_slider_args = array(\n 'labels' => $ukt_slider_labels,\n 'public' => true,\n 'publicly_queryable' => true,\n 'show_ui' => true,\n 'query_var' => true,\n\t'menu_icon' => plugins_url( '/includes/images/slides-icon.png', __FILE__ ),\n 'rewrite' => true,\n 'capability_type' => 'post',\n 'hierarchical' => true,\n 'menu_position' => 5,\n\t'taxonomies' => array( 'ukt_slideshow' ),\n\t'description' => 'A slide is composed of 3 images 2 buttons and 3 links',\n 'supports' => array('title'));\n\t\n\n\tregister_post_type( 'uktslider', $ukt_slider_args);\n\tregister_taxonomy( 'slider', 'uktslider', array( 'hierarchical' => false, 'label' => 'Slider', 'query_var' => true, 'rewrite' => true ) );\n}", "public function testSetUp()\n {\n $identifier = 'foo';\n $message = 'bar';\n\n $slide = new Slide($identifier, $message);\n\n $this->assertEquals($identifier, $slide->getIdentifier());\n $this->assertEquals($message, $slide->getMessage());\n }", "function codex_slides_init() {\n $labels = array(\n 'name' => _x('Slides', 'post type general name'),\n 'singular_name' => _x('Slides', 'post type singular name'),\n 'add_new' => _x('Add New', 'slides'),\n 'add_new_item' => __('Add New Slides'),\n 'edit_item' => __('Edit Slides'),\n 'new_item' => __('New Slides'),\n 'all_items' => __('All Slides'),\n 'view_item' => __('View Slides'),\n 'search_items' => __('Search Slides'),\n 'not_found' => __('No slides found'),\n 'not_found_in_trash' => __('No slides found in Trash'), \n 'parent_item_colon' => '',\n 'menu_name' => __('Slides')\n\n );\n $args = array(\n 'labels' => $labels,\n 'public' => true,\n 'publicly_queryable' => true,\n 'show_ui' => true, \n 'show_in_menu' => true, \n 'query_var' => true,\n 'rewrite' => true,\n 'capability_type' => 'post',\n 'has_archive' => true, \n 'hierarchical' => false,\n 'menu_position' => null,\n 'supports' => array( 'title', 'editor', 'thumbnail' )\n ); \n register_post_type('slides',$args);\n}" ]
[ "0.6619129", "0.6340462", "0.62293565", "0.5889763", "0.581859", "0.5779053", "0.57205707", "0.56011176", "0.5551022", "0.5525724", "0.5511316", "0.5484416", "0.54692364", "0.54624814", "0.5436498", "0.541975", "0.54014045", "0.53886384", "0.538457", "0.53827775", "0.5348618", "0.53033984", "0.52809274", "0.5259066", "0.525482", "0.52454925", "0.5226696", "0.521271", "0.5203888", "0.51760864" ]
0.70880437
0
Tests the creation of a collection by an array of slides
public function testFromArray() { $idOne = '1'; $slideOne = new Slide($idOne); $idTwo = '2'; $slideTwo = new Slide($idTwo); $slides = array($slideOne, $slideTwo); $collection = SlideCollection::fromArray($slides); $this->assertEquals($slides, $collection->getAll()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testAddSlides()\n {\n $idOne = '1';\n $slideOne = new Slide($idOne);\n\n $idTwo = '2';\n $slideTwo = new Slide($idTwo);\n\n $collection = new SlideCollection();\n\n $this->assertEmpty($collection->getAll());\n $this->assertNull($collection->getSlideByIdentifier($idOne));\n $this->assertNull($collection->getSlideByIdentifier($idTwo));\n\n $collection->addSlide($slideOne);\n\n $this->assertEquals($slideOne, $collection->getSlideByIdentifier($idOne));\n $this->assertNull($collection->getSlideByIdentifier($idTwo));\n\n $collection->addSlide($slideTwo);\n\n $this->assertEquals($slideOne, $collection->getSlideByIdentifier($idOne));\n $this->assertEquals($slideTwo, $collection->getSlideByIdentifier($idTwo));\n\n $this->setExpectedException(\\LogicException::class);\n\n $collection->addSlide($slideOne);\n }", "public static function make(array ...$arrays): Collection;", "public function createCollection(array $data = [])\n\t{\n\t\tif (array_key_exists('data', $data)) {\n\t\t\t$data = $data['data'];\n\t\t}\n\t\t$collection = new GenericCollection();\n\t\tforeach ($data as $episode)\n\t\t{\n\t\t\t$collection->add(null, $this->create($episode));\n\t\t}\n\t\treturn $collection;\n\t}", "public function __construct($collection) { }", "abstract public function collection($collection);", "public function testCreateCollection()\n {\n $logger = $this->createMock(\\Monolog\\Logger::class);\n $dir = vfsStream::url(self::STORAGE_DIR);\n\n self::assertInstanceOf(\\Browscap\\Writer\\WriterCollection::class, $this->object->createCollection($logger, $dir));\n }", "public function testCollections(): void\n {\n $model = new ModelManager($this->registry, $this->propertyAccessor);\n\n $this->expectDeprecation('Method Sonata\\DoctrineMongoDBAdminBundle\\Model\\ModelManager::getModelCollectionInstance() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.4 and will be removed in version 4.0.');\n $collection = $model->getModelCollectionInstance('whyDoWeEvenHaveThisParameter');\n $this->assertInstanceOf(ArrayCollection::class, $collection);\n\n $item1 = new \\stdClass();\n $item2 = new \\stdClass();\n $model->collectionAddElement($collection, $item1);\n $model->collectionAddElement($collection, $item2);\n\n $this->assertTrue($model->collectionHasElement($collection, $item1));\n\n $model->collectionRemoveElement($collection, $item1);\n\n $this->assertFalse($model->collectionHasElement($collection, $item1));\n\n $model->collectionClear($collection);\n\n $this->assertTrue($collection->isEmpty());\n }", "abstract protected function generateCollection();", "public function run()\n {\n $faker = Faker\\Factory::create();\n\n for ($i=1; $i <= 4 ; $i++) { \n DB::table('slide')->insert([\n 'name' => $faker->sentence(2),\n 'description' => $faker->sentence(3),\n 'image' => $faker->image('public/uploads/slide',640,480, null, false),\n 'created_at' => \\Carbon\\Carbon::now(),\n 'updated_at' => \\Carbon\\Carbon::now(),\n ]); \n }\n }", "public function testCreateCollectionViaIocContainer()\n {\n $collectionName = $this->TESTNAMES_PREFIX . 'CollectionTestSuite-Collection';\n\n $collectionOptions = ['waitForSync' => true];\n\n\n $collection = new Collection($this->client);\n\n /** @var $responseObject HttpResponse */\n $responseObject = $collection->create($collectionName, $collectionOptions);\n\n $body = $responseObject->body;\n\n $this->assertArrayHasKey('code', json_decode($body, true));\n $decodedJsonBody = json_decode($body, true);\n $this->assertEquals(200, $decodedJsonBody['code']);\n $this->assertEquals($collectionName, $decodedJsonBody['name']);\n }", "public function run()\n {\n $faker = \\Faker\\Factory::create(\"id_ID\");\n foreach (range(1,5) as $slider) {\n\t Slider::insert([\n\t\t\t\t\"title_en\" => $faker->title,\n\t\t\t\t\"title_id\" => $faker->title,\n\t\t\t\t\"images\" => $faker->image(public_path('/uploads/slider'),1920, 580,'',false),\n\t\t\t\t\"link\" => $faker->url\n\t ]);\n \t\t}\n }", "public function testConstructWithData(): void\n {\n self::assertInstanceOf(Collection::class, new Collection(['test', 'test2']));\n }", "function createCollection()\n{\n global $collectionId, $dataBase;\n\n $response = $dataBase->createCollection(\n 'Movies',\n ['*'],\n ['*'],\n [\n [\n 'label' => 'Name',\n 'key' => 'name',\n 'type' => 'text',\n 'default' => 'Empty Name',\n 'required' => true,\n 'array' => false\n ],\n [\n 'label' => 'Release Year',\n 'key' => 'release_year',\n 'type' => 'numeric',\n 'default' => 1970,\n 'required' => true,\n 'array' => false\n ]\n ]\n );\n\n $collectionId = $response['$id'];\n\n return [\n 'call' => 'api.createCollection',\n 'response' => $response\n ];\n}", "public function run(){\n for ($i = 1; $i <= 5; $i++){\n \\Illuminate\\Support\\Facades\\DB::table('slides')->insert([\n 'image' => 'Slide-'.$i,\n 'title' => 'Titre du slide n° '.$i,\n 'description' => 'Description du slide n° '.$i,\n ]);\n }\n }", "public function run()\n {\n Slide::create([\n 'ruta' => '1.png',\n 'activo' => 1\n ]);\n\n Slide::create([\n 'ruta' => '2.png',\n 'activo' => 1\n ]);\n\n Slide::create([\n 'ruta' => '3.png',\n 'activo' => 1\n ]);\n }", "public function testTransformCollection()\n {\n $transformer = $this->getMockForAbstractClass(AbstractViewTransformer::class);\n\n // Set up a collection with two domain objects\n $collection = [\n $this->getMockForAbstractClass(AbstractDomainObject::class),\n $this->getMockForAbstractClass(AbstractDomainObject::class)\n ];\n\n // Expect transform to be called twice, once on each domain object\n $transformer->expects($this->exactly(2))\n ->method('transform')\n ->will($this->returnValue(['transformed' => 'values']));\n\n $result = $transformer->transformCollection($collection);\n\n // We should end up with a multidimensional array\n // with one set of values for each object in collection\n $this->assertEquals([\n [\n 'transformed' => 'values'\n ],\n [\n 'transformed' => 'values'\n ]\n ], $result);\n }", "public function testSet(): void\n {\n $c = new Collection();\n\n $this->assertEquals(false, $c->has('first'));\n\n $v = 'test';\n $c->set('first', $v);\n\n $this->assertEquals(true, $c->has('first'));\n $this->assertEquals($v, $c->get('first'));\n\n $v = array('1' => 'one', '2' => 'two');\n $c->set('second', $v);\n\n $this->assertEquals(true, $c->has('second'));\n $this->assertEquals($v, $c->get('second'));\n\n // test with an initialized collection\n $c = new Collection(self::TEST_ARRAY);\n\n $this->assertEquals(false, $c->has('first'));\n\n $v = 'test';\n $c->set('first', $v);\n\n $this->assertEquals(true, $c->has('first'));\n $this->assertEquals($v, $c->get('first'));\n\n $v = array('1' => 'one', '2' => 'two');\n $c->set('second', $v);\n\n $this->assertEquals(true, $c->has('second'));\n $this->assertEquals($v, $c->get('second'));\n }", "public function testConstructMultiple()\n {\n $fixtures = new Mad_Test_Fixture_Collection($this->_conn, array('unit_tests', 'unit_tests_opts'));\n\n $expected = array('unit_tests' => 1, 'unit_tests_opts' => 1);\n $this->assertEquals($expected, Mad_Test_Fixture_Base::getParsed());\n }", "public function newCollection(array $models=[]);", "public function it_can_add_to_an_album_using_an_array_of_images()\n {\n $imageOne = factory(Image::class)->create();\n $imageTwo = factory(Image::class)->create();\n $imageThree = factory(Image::class)->create();\n $images = [$imageOne, $imageTwo, $imageThree];\n $this->album->addImages($images);\n\n $albumImages = $this->album->images()->get();\n\n $this->assertEquals(3, count($albumImages));\n }", "public function test_it_builds_empty_collection()\n {\n }", "public function ajax_add_slides() {\n\t\tif ( isset( $_POST['data'] ) ) {\n\t\t\t$slides_data = json_decode( stripslashes( $_POST['data'] ), true );\n\n\t\t\tforeach ( $slides_data as $slide_data ) {\n\t\t\t\t$this->create_slide( $slide_data );\n\t\t\t}\n\t\t} else {\n\t\t\t$this->create_slide( false );\n\t\t}\n\n\t\tdie();\n\t}", "public function testWhenFieldsAreGivenThenPassThemToTheBuildCollectionMethod()\n {\n /** @var \\Mockery\\MockInterface|SchemaMapper $mapper */\n $mapper = Mockery::mock(SchemaMapper::class)->makePartial();\n\n $name0 = 'name0';\n $type0 = 'type0';\n $null0 = 'null0';\n $key0 = 'key0';\n $default0 = 'default0';\n $extra0 = 'extra0';\n\n $name1 = 'name1';\n $type1 = 'type1';\n $null1 = 'null1';\n $key1 = 'key1';\n $default1 = 'default1';\n $extra1 = 'extra1';\n\n $persistenceField0 = Mockery::mock(TableField::class)->makePartial();\n $persistenceField0->shouldReceive('getName')->once()->andReturn($name0);\n $persistenceField0->shouldReceive('getType')->once()->andReturn($type0);\n $persistenceField0->shouldReceive('getIsNull')->once()->andReturn($null0);\n $persistenceField0->shouldReceive('getKey')->once()->andReturn($key0);\n $persistenceField0->shouldReceive('getDefault')->once()->andReturn($default0);\n $persistenceField0->shouldReceive('getExtra')->once()->andReturn($extra0);\n\n $persistenceField1 = Mockery::mock(TableField::class)->makePartial();\n $persistenceField1->shouldReceive('getName')->once()->andReturn($name1);\n $persistenceField1->shouldReceive('getType')->once()->andReturn($type1);\n $persistenceField1->shouldReceive('getIsNull')->once()->andReturn($null1);\n $persistenceField1->shouldReceive('getKey')->once()->andReturn($key1);\n $persistenceField1->shouldReceive('getDefault')->once()->andReturn($default1);\n $persistenceField1->shouldReceive('getExtra')->once()->andReturn($extra1);\n\n $domainField0 = Mockery::mock(\\DatabaseInspect\\Domain\\Models\\TableField::class)->makePartial();\n $domainField1 = Mockery::mock(\\DatabaseInspect\\Domain\\Models\\TableField::class)->makePartial();\n\n $mapper->shouldReceive('buildField')\n ->once()\n ->with($name0, $type0, $null0, $key0, $default0, $extra0)\n ->andReturn($domainField0);\n\n $mapper->shouldReceive('buildField')\n ->once()\n ->with($name1, $type1, $null1, $key1, $default1, $extra1)\n ->andReturn($domainField1);\n\n // overload static build collection\n $request = \\Mockery::mock('overload:\\DatabaseInspect\\Domain\\Models\\TableFieldCollection');\n $request->shouldReceive('build')\n ->once()\n ->with([$domainField0, $domainField1])\n ->andReturn(\\Mockery::self());\n\n // perform action\n /** @var TableFieldCollection $output */\n $response = $mapper->buildTableFieldCollectionFromPersistence([\n $persistenceField0,\n $persistenceField1\n ]);\n\n // assert expectation\n static::assertInstanceOf(TableFieldCollection::class, $response);\n static::assertSame($request, $response);\n }", "public function it_can_be_instantiated()\n {\n $items = new Collection;\n\n static::assertCount(0, $items);\n static::assertFalse($items->hasAnySelected());\n }", "public function run()\n {\n /* $photos1 = ['images/products/1.png', 'images/products/2.png', 'images/products/3.png'];\n\n foreach ($photos1 as $photo) {\n factory(App\\Photo::class)->create([\n 'path' => $photo,\n 'product_id' => Product::first()->id\n ]);\n }*/\n\n /*$photo = [\n 'images/products/1.png', 'images/products/2.png', 'images/products/3.png',\n 'images/products/3.png', 'images/products/4.png', 'images/products/5.png'\n ];*/\n\n $photo = 'images/products/1.png';\n\n /*$ids = Product::all()->pluck('id')->toArray();\n\n $sliced = array_slice($ids, 0, 2, true);\n\n $sliced_photos = array_slice($photos, 0, 3, true);\n\n foreach ($sliced as $slice) {\n \n foreach ($sliced_photos as $photo) \n {\n \n factory(App\\Photo::class)->create([\n 'path' => $photo,\n 'product_id' => $slice\n ]); \n \n }\n }*/\n $products = Product::all();\n\n foreach ($products as $product) \n {\n factory(App\\Photo::class)->create([\n 'path' => 'images/products/'.random_int(1, 20) .'.png',\n 'product_id' => $product->id\n ]); \n }\n }", "public function testTaskAddCollection()\n {\n\n }", "public static function newCollection(array $models) : Collection;", "function getCollection(array $raw)\n {\n }", "public function testArrayToCollection()\n {\n $source = array();\n $collectionType = CollectionInterface::class;\n $return = openssl_random_pseudo_bytes(3);\n \n $mockManager = $this->getMockForAbstractClass(\n ArrayCasterManagerInterface::class\n );\n $mockManager->expects($this->once())\n ->method(\"process\")\n ->with($this->equalTo($source), $this->equalTo($collectionType))\n ->will($this->returnValue($return));\n \n $reflection = new \\ReflectionClass(AbstractCollectionHelper::class);\n $managerProperty = $reflection->getProperty(\"manager\");\n \n $managerProperty->setAccessible(true);\n $managerProperty->setValue($this->testInstance, $mockManager);\n \n $this->assertEquals(\n $return,\n $this->testInstance->arrayToCollection($source, $collectionType),\n sprintf(\n \"The instance of %s is expected to the result\".\n \" of the manager %s method when the method %s is called\",\n AbstractCollectionHelper::class,\n \"process\",\n \"arrayToCollection\"\n )\n );\n }", "function staticSlides() {\n\n\t\t$slide = get_sub_field('slide');\n\n\t\t$i = 0;\n\n\t\tforeach ($slide as $s) {\n\t\t\t$data[$i]['content'] = $s[\"content\"];\n\t\t\t$data[$i]['large_img'] = $s[\"large_image\"][\"url\"];\n\t\t\t$data[$i]['small_img'] = $s[\"small_image\"]; \n\n\t\t\t// skip to the bottom to see a sample of what this will produce\t\t\n\n\t\t\t$i++;\n\t\t}\n\n\t\treturn $data;\n\n\t}" ]
[ "0.6770705", "0.60992616", "0.5929519", "0.58150154", "0.57623595", "0.5744877", "0.57045984", "0.5644827", "0.56295264", "0.56129956", "0.55854464", "0.55800426", "0.55299705", "0.5528582", "0.55102193", "0.54958105", "0.5490573", "0.5477396", "0.54702413", "0.5449376", "0.54475147", "0.54346853", "0.5420799", "0.53853095", "0.53726405", "0.53694564", "0.53550506", "0.53468996", "0.53407305", "0.5336069" ]
0.732174
0
Test the legacy page.
public function tryToTestLegacyPage(AcceptanceTester $you): void { $you->wantToTest('The legacy page is accessible'); $you->amOnPage('/legacy'); $you->seeResponseCodeIsSuccessful(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function verifyPage()\n {\n }", "protected function verifyPage()\n {\n }", "private function testDisplayRequestedPage(){\n $this->url = 'homeadmin';\n $this->dispatcher->displayRequestedPage($this->url);\n if(!assert($this->dispatcher->getHtml() === file_get_contents('../../view/src/admin/home.template.html'))){\n parent::addError(\"testDisplayRequestedPage failed!\");\n }\n }", "public function testFrontpage()\n {\n $this->visit('/')\n ->see('Karriere- und Jobmessen');\n }", "protected function should_check_lp_page() {\n\t\treturn false;\n\t}", "function is_upgrades_page() {\n\treturn isset( $_GET['page'] ) && ( 'sc-upgrades' === $_GET['page'] );\n}", "public function testSameRedirectFromFile()\n {\n ob_start();\n $page = Page::html(array(\n 'dir' => __DIR__.'/page',\n 'base' => 'http://website.com',\n 'suffix' => '',\n 'testing' => true,\n ), Request::create(\n 'http://website.com/same'\n ), 'override');\n $output = ob_get_clean();\n $this->assertEmpty($output);\n $this->assertEquals('http://website.com/same', $page->url['full']);\n }", "public function test_Howto_PageLoadsCorrectly()\n {\n $response = $this->get('/how-to');\n $response->assertSee('A comprehensive guide for the website');\n\n $response->assertStatus(200);\n }", "public function testGetPageGoodUrl()\n {\n $this->mock->append(new Response(200, [], $this->html));\n\n $page = PageRequest::getPage($this->client, new Uri($this->url));\n $this->assertSame($this->html, $page->html);\n $this->assertSame($this->url, $page->url);\n }", "public function testCatalogueLearnv1catalogwebpages()\n {\n\n }", "public function test_internalRedirectToExistingPage($dataStoreType)\n {\n\n\n $redirectManager = admin_plugin_404manager::get()->setDataStoreType($dataStoreType);\n if ($redirectManager->isRedirectionPresent(constant_parameters::$EXPLICIT_REDIRECT_PAGE_SOURCE)) {\n $redirectManager->deleteRedirection(constant_parameters::$EXPLICIT_REDIRECT_PAGE_SOURCE);\n }\n $redirectManager->addRedirection(constant_parameters::$EXPLICIT_REDIRECT_PAGE_SOURCE, constant_parameters::$EXPLICIT_REDIRECT_PAGE_TARGET);\n\n // Create the target Page\n saveWikiText(constant_parameters::$EXPLICIT_REDIRECT_PAGE_TARGET, 'EXPLICIT_REDIRECT_PAGE_TARGET', 'Test initialization');\n\n $conf ['plugin'][constant_parameters::$PLUGIN_BASE]['ActionReaderFirst'] = action_plugin_404manager::GO_TO_SEARCH_ENGINE;\n\n // Read only otherwise, you go in edit mode\n global $AUTH_ACL;\n $aclReadOnlyFile = constant_parameters::$DIR_RESOURCES . '/acl.auth.read_only.php';\n $AUTH_ACL = file($aclReadOnlyFile);\n\n\n $request = new TestRequest();\n $request->get(array('id' => constant_parameters::$EXPLICIT_REDIRECT_PAGE_SOURCE), '/doku.php');\n $response = $request->execute();\n\n\n $locationHeader = $response->getHeader(\"Location\");\n $components = parse_url($locationHeader);\n parse_str($components['query'], $queryKeys);\n $this->assertNull($queryKeys['do'], \"The page is only shown\");\n\n $this->assertEquals(constant_parameters::$EXPLICIT_REDIRECT_PAGE_TARGET, $queryKeys['id'], \"The Id of the page is the target page\");\n\n $this->assertEquals(constant_parameters::$EXPLICIT_REDIRECT_PAGE_SOURCE, $queryKeys[action_plugin_404manager::QUERY_STRING_ORIGIN_PAGE], \"The 404 id must be present\");\n $this->assertEquals(action_plugin_404manager::REDIRECT_TARGET_PAGE_FROM_DATASTORE, $queryKeys[action_plugin_404manager::QUERY_STRING_REDIR_TYPE], \"The redirect type is known\");\n\n\n }", "public function testGetLandingPage()\n\t{\n\t\t$response = $this->call('diskus::home@index', array());\n\n\t\t$this->assertInstanceOf('Laravel\\Response', $response);\n\t\t$this->assertEquals(200, $response->foundation->getStatusCode());\n\t\t$this->assertEquals('diskus::home.index', $response->content->view);\n\t}", "public function testStaticPages()\n {\n $this->browse(function (Browser $browser) {\n\n // Basic browser page tests, unauthenticated user\n $browser->visit('/')\n ->assertSee('GC Talent Cloud')\n ->assertDontSee('Oprah Winfrey Network');\n\n $browser->clickLink('Français')\n ->assertSee('Nuage de talents du GC')\n ->assertPathIs('/fr');\n\n $browser->clickLink('English')\n ->assertSee('GC Talent Cloud')\n ->assertDontSee('Job Mountain')\n ->assertPathIs('/en');\n\n $browser->clickLink('FAQ')\n ->assertSee('Talent Cloud User Guide')\n ->assertPathIs('/en/faq');\n\n $browser->clickLink('Français')\n ->assertSee('Nuage de talents : mode d\\'emploi')\n ->assertPathIs('/fr/faq');\n\n // TODO: Move to job application test\n $browser->clickLink('Parcourir les emplois')\n ->assertSee('Parcourir les emplois')\n ->assertPathIs('/fr/jobs');\n\n $browser->clickLink('English')\n ->assertSee('Browse Jobs')\n ->assertPathIs('/en/jobs');\n\n });\n }", "function isNormalPage() {\n\n $normalPages = [\n 'giveaward.php',\n 'viewawards.php'\n ];\n\n return checkPages($normalPages);\n\n}", "public function test_internalRedirectToBestNamePageSameBranch($dataStoreType)\n {\n\n $redirectManager = admin_plugin_404manager::get()->setDataStoreType($dataStoreType);\n if ($redirectManager->isRedirectionPresent(constant_parameters::$REDIRECT_BEST_PAGE_NAME_SOURCE)) {\n $redirectManager->deleteRedirection(constant_parameters::$REDIRECT_BEST_PAGE_NAME_SOURCE);\n }\n\n // Create the target Page\n saveWikiText(constant_parameters::$REDIRECT_BEST_PAGE_NAME_TARGET_SAME_BRANCH, 'REDIRECT Best Page Name Same Branch', 'Test initialization');\n // Add the page to the index, otherwise, it will not be find by the ft_lookup\n idx_addPage(constant_parameters::$REDIRECT_BEST_PAGE_NAME_TARGET_SAME_BRANCH);\n\n\n // Read only otherwise, you go in edit mode\n global $AUTH_ACL;\n $aclReadOnlyFile = constant_parameters::$DIR_RESOURCES . '/acl.auth.read_only.php';\n $AUTH_ACL = file($aclReadOnlyFile);\n\n global $conf;\n $conf ['plugin'][constant_parameters::$PLUGIN_BASE]['ActionReaderFirst'] = action_plugin_404manager::GO_TO_BEST_PAGE_NAME;\n $conf['plugin'][constant_parameters::$PLUGIN_BASE]['WeightFactorForSamePageName'] = 4;\n $conf['plugin'][constant_parameters::$PLUGIN_BASE]['WeightFactorForStartPage'] = 3;\n $conf['plugin'][constant_parameters::$PLUGIN_BASE]['WeightFactorForSameNamespace'] = 5;\n\n $request = new TestRequest();\n $request->get(array('id' => constant_parameters::$REDIRECT_BEST_PAGE_NAME_SOURCE), '/doku.php');\n $response = $request->execute();\n\n\n $locationHeader = $response->getHeader(\"Location\");\n $components = parse_url($locationHeader);\n parse_str($components['query'], $queryKeys);\n $this->assertNull($queryKeys['do'], \"The page has no action than show\");\n $this->assertEquals(constant_parameters::$REDIRECT_BEST_PAGE_NAME_TARGET_SAME_BRANCH, $queryKeys['id'], \"The Id of the source page is the asked page\");\n $this->assertEquals(constant_parameters::$REDIRECT_BEST_PAGE_NAME_SOURCE, $queryKeys[action_plugin_404manager::QUERY_STRING_ORIGIN_PAGE], \"The 404 id must be present\");\n $this->assertEquals(action_plugin_404manager::REDIRECT_SOURCE_BEST_PAGE_NAME, $queryKeys[action_plugin_404manager::QUERY_STRING_REDIR_TYPE], \"The redirect type is known\");\n\n\n }", "public function testPage()\n {\n $this->visit('/')\n ->see('Home')\n ->see('Tasks')\n ->see('Welcome');\n }", "public function test_internalRedirectToBestNamePageOtherBranch($dataStoreType)\n {\n\n\n $redirectManager = admin_plugin_404manager::get()->setDataStoreType($dataStoreType);\n if ($redirectManager->isRedirectionPresent(constant_parameters::$REDIRECT_BEST_PAGE_NAME_SOURCE)) {\n $redirectManager->deleteRedirection(constant_parameters::$REDIRECT_BEST_PAGE_NAME_SOURCE);\n }\n\n\n // Create the target Pages and add the pages to the index, otherwise, they will not be find by the ft_lookup\n saveWikiText(constant_parameters::$REDIRECT_BEST_PAGE_NAME_TARGET_SAME_BRANCH, 'REDIRECT Best Page Name Same Branch', 'Test initialization');\n idx_addPage(constant_parameters::$REDIRECT_BEST_PAGE_NAME_TARGET_SAME_BRANCH);\n saveWikiText(constant_parameters::$REDIRECT_BEST_PAGE_NAME_TARGET_OTHER_BRANCH, 'REDIRECT Best Page Name Other Branch', 'Test initialization');\n idx_addPage(constant_parameters::$REDIRECT_BEST_PAGE_NAME_TARGET_OTHER_BRANCH);\n\n\n // Read only otherwise, you go in edit mode\n global $AUTH_ACL;\n $aclReadOnlyFile = constant_parameters::$DIR_RESOURCES . '/acl.auth.read_only.php';\n $AUTH_ACL = file($aclReadOnlyFile);\n\n global $conf;\n $conf['plugin'][constant_parameters::$PLUGIN_BASE]['ActionReaderFirst'] = action_plugin_404manager::GO_TO_BEST_PAGE_NAME;\n $conf['plugin'][constant_parameters::$PLUGIN_BASE]['WeightFactorForSamePageName'] = 4;\n $conf['plugin'][constant_parameters::$PLUGIN_BASE]['WeightFactorForStartPage'] = 3;\n $conf['plugin'][constant_parameters::$PLUGIN_BASE]['WeightFactorForSameNamespace'] = 5;\n\n $request = new TestRequest();\n $request->get(array('id' => constant_parameters::$REDIRECT_BEST_PAGE_NAME_SOURCE), '/doku.php');\n $response = $request->execute();\n\n\n $locationHeader = $response->getHeader(\"Location\");\n $components = parse_url($locationHeader);\n parse_str($components['query'], $queryKeys);\n\n $this->assertNull($queryKeys['do'], \"The is only shown\");\n $this->assertEquals(constant_parameters::$REDIRECT_BEST_PAGE_NAME_TARGET_SAME_BRANCH, $queryKeys['id'], \"The Id of the source page is the asked page\");\n $this->assertEquals(constant_parameters::$REDIRECT_BEST_PAGE_NAME_SOURCE, $queryKeys[action_plugin_404manager::QUERY_STRING_ORIGIN_PAGE], \"The 404 id must be present\");\n $this->assertEquals(action_plugin_404manager::REDIRECT_SOURCE_BEST_PAGE_NAME, $queryKeys[action_plugin_404manager::QUERY_STRING_REDIR_TYPE], \"The redirect type is known\");\n\n\n }", "static private function validatePage(){\r\n\r\n\t\tif (empty(self::$page)){\r\n\t\t\tself::$page = 'main';\r\n\t\t\treturn true;\r\n\t\t} elseif (!file_exists('pages/' . self::$page . '.php')){\r\n\t\t\tthrow new \\TaskerMAN\\Core\\FatalException('404 - Page Not Found', new \\Exception('Requested page (' . self::$page . ') was not found'));\r\n\t\t\treturn false;\r\n\t\t}\r\n\r\n\t\treturn true;\r\n\t}", "public function testPageResponses() {\n \\Drupal::currentUser()->setAccount(new AnonymousUserSession());\n $subrequest = Request::create('/test_page_display_403', 'GET');\n $response = $this->container->get('http_kernel')->handle($subrequest, HttpKernelInterface::SUB_REQUEST);\n $this->assertEquals(403, $response->getStatusCode());\n\n $subrequest = Request::create('/test_page_display_404', 'GET');\n $response = $this->container->get('http_kernel')->handle($subrequest, HttpKernelInterface::SUB_REQUEST);\n $this->assertEquals(404, $response->getStatusCode());\n\n $subrequest = Request::create('/test_page_display_200', 'GET');\n $response = $this->container->get('http_kernel')->handle($subrequest, HttpKernelInterface::SUB_REQUEST);\n $this->assertEquals(200, $response->getStatusCode());\n\n $subrequest = Request::create('/test_page_display_200', 'GET');\n \\Drupal::getContainer()->get('request_stack')->push($subrequest);\n\n // Test accessing a disabled page for a view.\n $view = Views::getView('test_page_display');\n // Disable the view, rebuild menu, and request the page again.\n $view->storage->disable()->save();\n // Router rebuild would occur in a kernel terminate event so we need to\n // simulate that here.\n \\Drupal::service('router.builder')->rebuild();\n\n $response = $this->container->get('http_kernel')->handle($subrequest, HttpKernelInterface::SUB_REQUEST);\n $this->assertEquals(404, $response->getStatusCode());\n }", "function test_it_loads_the_page()\n {\n $response = $this->withoutExceptionHandling();\n $response = $this->get('/usuario');\n $response->assertStatus(200)\n ->assertSee('Usuarios');\n }", "public function testShouldGenerateHomePage()\n\t {\n\t\t$html = $this->_execute($this->script, array(), \"GET\");\n\t\t$this->assertTrue(XHTMLvalidator::validate($html, true));\n\t }", "public function test_guest_user_can_see_homepage()\n {\n // Access to the page\n $response = $this->get('/')\n ->assertStatus(200);\n }", "public function testReadPage()\n {\n $response = $this->get(action('\\Gdevilbat\\SpardaCMS\\Modules\\Page\\Http\\Controllers\\PageController@index'));\n\n $response->assertStatus(302)\n ->assertRedirect(action('\\Gdevilbat\\SpardaCMS\\Modules\\Core\\Http\\Controllers\\Auth\\LoginController@showLoginForm')); // Return Not Valid, User Not Login\n\n $user = \\App\\Models\\User::find(1);\n\n $response = $this->actingAs($user)\n ->from(action('\\Gdevilbat\\SpardaCMS\\Modules\\Page\\Http\\Controllers\\PageController@index'))\n ->json('GET',action('\\Gdevilbat\\SpardaCMS\\Modules\\Page\\Http\\Controllers\\PageController@serviceMaster'))\n ->assertSuccessful()\n ->assertJsonStructure(['data', 'draw', 'recordsTotal', 'recordsFiltered']); // Return Valid user Login\n }", "public function testGetPageAndElementNotAvailable(){\n $result = $this->WikiElement->getElement(\"nix:da\", \"garnix\");\n $this->assertEqual($result, false);\n }", "public function testGetPagesLoader() {\n\n // Get loader\n $result = $this->call('GET', 'events/loader');\n\n // Check status\n $this->assertResponseStatus(302);\n\n // Check if logged out is redirected\n $this->assertRedirectedToRoute('register');\n }", "function testie_my_page(){\n return \"<p>This is my testie demo page.</p>\";\n}", "public function testSite()\n\t{\n\t\t$crawler = $this->client->request('GET', '/');\n\n\t\t$this->assertTrue($this->client->getResponse()->isOk());\n\t}", "public function testNewsPage() {\n $response = $this->get('/news/');\n $response->assertStatus(200);\n }", "public function testDoubleRedirectFromFile()\n {\n ob_start();\n $page = Page::html(array(\n 'dir' => __DIR__.'/page',\n 'base' => 'http://website.com',\n 'suffix' => '.html',\n 'testing' => true,\n ), Request::create(\n 'https://www.website.com/redirect/'\n ), 'override');\n $output = ob_get_clean();\n $this->assertGreaterThan(0, strpos($output, '<a href=\"http://website.com/first.html\">'));\n }", "public function testGetPageData()\n {\n }" ]
[ "0.68513155", "0.68513155", "0.64819205", "0.6214018", "0.620944", "0.6116653", "0.6083321", "0.6056732", "0.603732", "0.5939977", "0.59272355", "0.5906564", "0.58826613", "0.58768517", "0.58702844", "0.5864361", "0.58476895", "0.5835755", "0.5823163", "0.57916707", "0.57783985", "0.57737464", "0.5769868", "0.57536626", "0.57492894", "0.5742014", "0.5741135", "0.5741009", "0.57395744", "0.57237995" ]
0.726187
0
Test the tos page.
public function tryToTestTosPage(AcceptanceTester $you): void { $you->wantToTest('The TOS page is accessible'); $you->amOnPage('/tos'); $you->seeResponseCodeIsSuccessful(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testOrderSummaryPage(){\n\t\t$from = $me = new User(self::createUser());\n\t\t$to = $them = new User(self::createUser());\n\n\t\t// Set the recipient online\n\t\t$to->setOnlineStatus('online', true);\n\n\t\t$this->url($this->urlHelper('About', null, null, array('session_key' => $from->Session_Key())));\n\t\t$this->disableLongPoll();\n\n\t\ttry {\n\t\t\t// Select the contact list\n\t\t\t$this->byCssSelector('#chat ul.list_tabs a[rel=nearme]')->click();\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail('Unable to find Contacts tab');\n\t\t}\n\n\t\ttry {\n\t\t\t$this->timeouts()->implicitWait(10000);\n\t\t\t$this->byCssSelector(\"#chat .buddy\")->click();\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail('Buddy not online');\n\t\t}\n\n\t\ttry {\n\t\t\t$title = $this->byCssSelector('#facebox h1');\n\t\t\t$this->assertTrue((bool)stristr($title->text(), 'Connect with'), 'Facebox h1 has incorrect text');\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail('Connect Facebox didnt display');\n\t\t}\n\n\t\ttry {\n\t\t\t$this->byCssSelector('#facebox .subscribe .button')->click();\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail('Subscribe Now Button not found');\n\t\t}\n\n\t\ttry {\n\t\t\t$this->byCssSelector('#subscriptions fieldset[data-product-id=SUB1] .button')->click();\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail('Select Plan Button not found');\n\t\t}\n\n\t\ttry {\n\t\t\t$payment_method = $this->byCssSelector('#payment_methods label.active');\n\t\t\t$this->assertTrue((bool)stristr($payment_method->text(), 'Credit'), 'Cant find payment method');\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail(\"Order Confirmation Page Didn't Display\");\n\t\t}\n\n\t}", "function testRpnPageExists() {\n $this->get(PAGE_URL);\n $this->assertText(PAGE_H1);\n }", "protected function verifyPage()\n {\n }", "protected function verifyPage()\n {\n }", "public function testPage()\n {\n $this->visit('/')\n ->see('Home')\n ->see('Tasks')\n ->see('Welcome');\n }", "public function tos()\n\t{\n\t\treturn View::make('frontend.static.tos');\n\t}", "public function testExample()\n {\n \t$this->visit(\"tachesv/taches\");\n $this->seePageIs('tachesv/taches');\n }", "public function testGetForgotPage()\n\t{\n\t\t$response = $this->call('orchestra::forgot@index');\n\n\t\t$this->assertInstanceOf('Laravel\\Response', $response);\n\t\t$this->assertEquals(200, $response->foundation->getStatusCode());\n\t\t$this->assertEquals('orchestra::forgot.index', $response->content->view);\n\t}", "public function test_ps_test()\n {\n\n\n\n $this->assert_ps_type('[email protected]', 5, 'e');\n $this->assert_ps_type('http://www.yahoo.com', 5, 'u');\n $this->assert_ps_type(2, 0, 'f');\n $this->assert_ps_type(31, 0, 'i');\n $this->assert_ps_type('your text here ', 10, 'd');\n }", "public function testTricksDetailPage()\n {\n //Je crée un client http\n $client = static::createClient();\n //Je crée la requete\n $client->request('GET', '/tricks/4');\n //Je controle le titre\n $this->assertSelectorTextContains('html h1', 'Board Slide');\n }", "public function testTricksAddPage()\n {\n //Je crée le client http\n $client = static::createClient();\n //Je crée la requete\n $client->request('GET', '/tricks/add');\n //Je controle l'existence du titre de la page\n $this->assertSelectorTextContains('html h1', 'Accès interdit');\n }", "public function testGetCheckoutPage()\n {\n $this->json('get', 'checkout')\n ->assertOk();\n }", "public function testContactPage()\n {\n $user = factory(User::class)->create();\n\n $response = $this->actingAs($user)\n ->withSession(['foo' => 'bar'])\n ->get('/contact');\n\n $response->assertStatus(200);\n }", "public function testimony()\n {\n $this->data['testimonials'] = $this->testimonial->getVisibleTestimonials();\n\n if (!isset($_SESSION['user'])) {\n $register = '<a href=\"' . ROOT_URL . '/auth?tab=register' . '\">S\\'inscrire.</a>';\n flash('login_flash', 'Veuillez vous connecter pour nous donner votre témoignage! Vous n\\'avez pas de compte? ' . $register, 'flash flash-info');\n redirect('auth');\n }\n\n // Modify data\n $this->data['page_info']['title'] = SITE_NAME . ' - Dites-nous votre témoignage';\n\n // Load view\n $this->view('pages/testimony.php', $this->data);\n }", "public function testNewsPage() {\n $response = $this->get('/news/');\n $response->assertStatus(200);\n }", "public function getHTMLSimplePageSubjectTest() {\n\n\t\t$html = '<h4>' . _t('SEO.SEOSubjectCheckIntro', 'Your page subject was found in:'). '</h4>';\n\t\t$html .= '<ul id=\"simple_pagesubject_test\">';\n\t\t$html .= '<li>' . _t('SEO.SEOSubjectCheckFirstParagraph', 'First paragraph:'). ' ';\n\t\t$html .= ($this->checkPageSubjectInFirstParagraph()) ? '<span class=\"simple_pagesubject_yes\">' . _t('SEO.SEOYes', 'Yes') . '</span>' : '<span class=\"simple_pagesubject_no\">' . _t('SEO.SEONo', 'No') . '</span>';\n\t\t$html .= '</li>';\n\t\t$html .= '<li>' . _t('SEO.SEOSubjectCheckPageTitle', 'Page title:'). ' ';\n\t\t$html .= ($this->checkPageSubjectInTitle()) ? '<span class=\"simple_pagesubject_yes\">' . _t('SEO.SEOYes', 'Yes') . '</span>' : '<span class=\"simple_pagesubject_no\">' . _t('SEO.SEONo', 'No') . '</span>';\n\t\t$html .= '</li>';\n\t\t$html .= '<li>' . _t('SEO.SEOSubjectCheckPageContent', 'Page content:'). ' ';\n\t\t$html .= ($this->checkPageSubjectInContent()) ? '<span class=\"simple_pagesubject_yes\">' . _t('SEO.SEOYes', 'Yes') . '</span>' : '<span class=\"simple_pagesubject_no\">' . _t('SEO.SEONo', 'No') . '</span>';\n\t\t$html .= '</li>'; \n\t\t$html .= '<li>' . _t('SEO.SEOSubjectCheckPageURL', 'Page URL:'). ' ';\n\t\t$html .= ($this->checkPageSubjectInUrl()) ? '<span class=\"simple_pagesubject_yes\">' . _t('SEO.SEOYes', 'Yes') . '</span>' : '<span class=\"simple_pagesubject_no\">' . _t('SEO.SEONo', 'No') . '</span>';\n\t\t$html .= '</li>'; \n\t\t$html .= '<li>' . _t('SEO.SEOSubjectCheckPageMetaDescription', 'Page meta description:'). ' ';\n\t\t$html .= ($this->checkPageSubjectInMetaDescription()) ? '<span class=\"simple_pagesubject_yes\">' . _t('SEO.SEOYes', 'Yes') . '</span>' : '<span class=\"simple_pagesubject_no\">' . _t('SEO.SEONo', 'No') . '</span>';\n\t\t$html .= '</li>'; \n\n\t\t$html .= '</ul>';\n\t\treturn $html;\n\n\t}", "public function testBrowseTrucksHome()\r\n {\r\n //start up a new session, starting at the home page\r\n $this->session->visit('http://localhost:8000/app_test.php');\r\n // Get the page\r\n $page = $this->session->getPage();\r\n\r\n //click on the truck button\r\n $page->find(\"css\",\"#homeTrucks\")->click();\r\n\r\n //check that the header is the truck index page\r\n $this->assertContains(\"Add Truck\", $page->find(\"css\",\"#contentSeparator h2\")->getHtml());\r\n $this->assertContains(\"/truck\", $this->session->getCurrentUrl());\r\n }", "public function test_vista_mostrar_solicitudes()\n {\n\n $this->browse(function (Browser $first) {\n $first->visit('/login')\n ->type('email', '[email protected]')\n ->type('password', 'secret')\n ->press('entrar');\n\n $first->visit(route('solicitud.index'))\n ->assertSee('Listado de Solicitudes')\n ->screenshot('usuario-solicitud');\n });\n }", "public function testResultPageActionGet()\n {\n // Test action\n // $session = $di->get(\"session\");\n $res = $this->controller->resultPageActionGet();\n $this->assertIsObject($res);\n $this->assertInstanceOf(\"Anax\\Response\\Response\", $res);\n $this->assertInstanceOf(\"Anax\\Response\\ResponseUtility\", $res);\n // Get body and compare results\n $body = $res->getBody();\n // $this->assertContains(\"<title>Validate IP result | ramverk1</title>\", $body);\n // $this->assertContains(\"<h1>Här är resultatet</h1>\", $body);\n // $this->assertContains(\"<h4>Text</h4>\", $body);\n // $this->assertContains(\"<h4>JSON</h4>\", $body);\n // $this->assertContains(\"<h4>Exempel</h4>\", $body);\n }", "public function setUpPage()\n {\n //$this->url('http://whatsmyip.org');\n $this->url('http://127.0.0.1/test.php');\n }", "public function test_access_to_site()\n {\n $this->visit('/')\n ->see('Benvenuti sulla nostra Piattaforma!')\n ->dontSee('Accedi');\n }", "protected function actionTestNewsletter() {\n\n\t\t$recipients = $this->paperboy->getTestRecipients();\n\t\t$tplRow = $this->parser->getTemplate($this->templatesPath . 'cmt_paperboy_test_recipient_row.tpl');\n\t\t$recipientsContent = '';\n\t\t\n\t\tforeach ($recipients as $key => $recipient) {\n\t\t\t$this->parser->setParserVar('counter', $key);\n\t\t\t$this->parser->setParserVar('recipient', $recipient);\n\t\t\t$recipientsContent .= $this->parser->parse($tplRow);\n\t\t}\n\t\t$this->parser->setParserVar('recipientsContent', $recipientsContent);\n\t\t\n\t\t$this->showPage($this->parser->parseTemplate($this->templatesPath . 'cmt_paperboy_test_overview.tpl'));\n\n\t}", "public function test_page_load()\n {\n $this->browse(function (Browser $browser) {\n $browser->visit(new SignUpPage)\n ->waitForText('Your journey starts here')\n ->assertSee('Your journey starts here');\n });\n }", "public function testAccessAsiOSTablet()\n {\n $headers = [\n 'user-agent' => 'Mozilla/5.0 (iPad; CPU OS 11_2_1 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C153 Safari/604.1'\n ];\n $this->withServerVariables($this->transformHeadersToServerVars($headers));\n $response = $this->get('/');\n $response->assertSeeText('Tablet');\n $response->assertSeeText('iOS');\n $response->assertSeeText('Safari');\n }", "public function testPassthru() {\n $this->configureTest();\n $random = $this->randomMachineName();\n $this->drupalGet('/cbtest/ok', ['query' => ['data' => $random]]);\n $this->assertSession()->pageTextContains('Test passed OK');\n $this->assertSession()->pageTextContains($random);\n $this->assertSession()->statusCodeEquals(200);\n }", "public function testWeSeeNews()\n {\n $this->visit('/')\n ->see('News Publications application.');\n }", "public function testRoseFlow(){\n\t\t$from = $me = new User(self::createUser());\n\t\t$to = $them = new User(self::createUser());\n\n\t\t// Set the recipient online\n\t\t$to->setOnlineStatus('online', true);\n\n\t\t$this->url($this->urlHelper('About', null, null, array('session_key' => $from->Session_Key())));\n\t\t$this->disableLongPoll();\n\n\t\ttry {\n\t\t\t// Select the contact list\n\t\t\t$this->byCssSelector('#chat ul.list_tabs a[rel=nearme]')->click();\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail('Unable to find Contacts tab');\n\t\t}\n\n\t\ttry {\n\t\t\t$this->timeouts()->implicitWait(10000);\n\t\t\t$this->byCssSelector(\"#chat .buddy\")->click();\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail('Buddy not online');\n\t\t}\n\n\t\ttry {\n\t\t\t$title = $this->byCssSelector('#facebox h1');\n\t\t\t$this->assertTrue((bool)stristr($title->text(), 'Connect with'), 'Facebox h1 has incorrect text');\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail('Connect Facebox didnt display');\n\t\t}\n\n\t\ttry {\n\t\t\t$this->byCssSelector('#facebox .rose .button')->click();\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail('Send a Rose Button not found');\n\t\t}\n\n\t\ttry {\n\t\t\t$this->byCssSelector('.upsubmit input')->click();\n\t\t} catch(RuntimeException $e){\n\t\t\t$this->fail('Yes I want to Use Points button not found');\n\t\t}\n\t}", "function test_it_load_users_create_page()\n {\n $response = $this->get('/usuario/nuevo');\n $response->assertStatus(200);\n $response->assertSee(\"Crear Usuario\");\n }", "public function testFrontpage()\n {\n $this->visit('/')\n ->see('Karriere- und Jobmessen');\n }", "public function testVisit()\n {\n Session::start();\n $this->actingAs(User::find(15));\n\n $this->post(url(\"config/mail/seat-exchanged\"), [\n \"_token\" => csrf_token(),\n \"sender\" => config(\"maillist.notify.seat_exchanged.sender\"),\n \"ccs\" => implode(\",\", config(\"maillist.notify.seat_exchanged.ccs\")),\n \"initiator_subject\" => \"测试主题\",\n \"target_subject\" => config(\"maillist.notify.seat_exchanged.target_subject\"),\n \"emergence_contact\" => config(\"maillist.notify.seat_exchanged.emergence_contact\")\n ])->assertResponseStatus(302)->assertEquals(\"测试主题\", config(\"maillist.notify.seat_exchanged.initiator_subject\"));\n\n\n $this->visit(url(\"config/mail/seat-exchanged\"))\n ->type(\"randomStr\", \"emergence_contact\")//should be false\n ->press(\"现在提交\")\n ->assertNotEquals(\"randomStr\",config(\"maillist.notify.seat_exchanged.emergence_contact\"));\n\n $this->visit(url(\"config/mail/seat-exchanged\"))\n ->type(\"[email protected],randomStr\", \"ccs\")//every address has to be email address.should be false\n ->press(\"现在提交\")\n ->assertNotEquals([\"[email protected]\", \"randomStr\"], config(\"maillist.notify.seat_exchanged.ccs\"));\n\n $this->visit(url(\"config/mail/seat-exchanged\"))\n ->type(\"[email protected],[email protected]\", \"ccs\")//\n ->press(\"现在提交\")\n ->assertEquals([\"[email protected]\", \"[email protected]\"], config(\"maillist.notify.seat_exchanged.ccs\"));\n\n }" ]
[ "0.6187745", "0.60658264", "0.60185057", "0.60185057", "0.5994977", "0.58384717", "0.5774109", "0.57546747", "0.5747625", "0.5733811", "0.57265896", "0.57069004", "0.5705273", "0.56833595", "0.5668167", "0.5654395", "0.5623152", "0.55929834", "0.55909556", "0.5567363", "0.5553486", "0.5551005", "0.5541891", "0.551574", "0.5504228", "0.55017996", "0.5494903", "0.549205", "0.547187", "0.5469706" ]
0.67105985
0
return an associative array of pattern and values to replace in the flash message content
public function getFlashMessageParameters();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getFlashMessage()\n {\n return [\n 'error' => $this->errorMessages,\n 'info' => $this->infoMessages,\n 'success' => $this->successMessages,\n 'warning' => $this->warningMessages,\n ];\n }", "private function _replaceMessageParameters() {\n\t\t$pattern = \"/%[A-Za-z0-9]+((\\-|\\_)[A-Za-z0-9]+)*%/\";\n\t\tforeach ($this->_parameters as $key => $value) {\n\t\t\tif (preg_match($pattern, \"%\".$key.\"%\")) {\n\t\t\t\t$this->_message = preg_replace(\"/%\".$key.\"%/\", $value, $this->_message);\n\t\t\t} else {\n\t\t\t\t$this->_errorMessage = \"Parameter with wrong syntax\";\n\t\t\t}\n\t\t}\n\t\tif ( preg_match($pattern, $this->_message) ) {\n\t\t\t$this->_errorMessage = \"Tag from template not filled\";\n\t\t\treturn false;\n\t\t}\n\t\treturn true; \n\t}", "private function replacePlaceholdersInMessage()\n\t{\n\t\tif (($count = preg_match_all(\"/%(\\d+)%/\", $this->messageString, $matches)) == FALSE)\n\t\t{\n\t\t\treturn ;\n\t\t}\n\t\t\n\t\tforeach ($matches[1] as $match)\n\t\t{\n\t\t\t// This is the subpattern in $matchArray[1] which has the arg index.\n\t\t\t$num = trim($match);\n\t\t\t$patterns[] = \"/%$num%/\" ;\n\t\t\t$replacements[] = $this->messageArgs[$num];\n\t\t}\n\t\t\n\t\t$this->messageString = preg_replace($patterns, $replacements, $this->messageString);\n\t}", "function _sfs_get_replacement_patterns() {\n $header = array('Name', 'Replacement Pattern', 'Description');\n\n $rows[] = array(t('File Shared By'),\n '[sfs:file-shared-by]',\n t('This contains the name of the user, the file is shared by.'),\n );\n $rows[] = array(t('File Shared On'),\n '[sfs:file-shared-on]',\n t(\"This contains the date on which the file is shared with user's.\"),\n );\n $rows[] = array(t('File URL'),\n '[sfs:file-url]',\n t('This contains the url to download the file.'),\n );\n $rows[] = array(t('File Password'),\n '[sfs:file-password]',\n t('This contains the password to download the file.'),\n );\n return theme('table', array('header' => $header, 'rows' => $rows));\n}", "public function messages(): array\n {\n return [\n 'appKey.regex' => ':attribute格式错误,请填入使用 `#` 符号分割的正确值',\n ];\n }", "protected function obtainReplacements()\n {\n return [\n 'ROUTE_LINK' => $this->getReplacements()[0],\n 'ROUTE_CONTROLLER' => $this->controller($this->getReplacements()[1]),\n ];\n }", "function GetFlashMessages()\n{\n\t$flash_messages = IEM::sessionGet('FlashMessages', false);\n\n\tif (!$flash_messages) {\n\t\treturn '';\n\t}\n\n\t$template_system = GetTemplateSystem();\n\n\t$print_msg = '';\n\tforeach ($flash_messages as $msg) {\n\t\tswitch ($msg['type']) {\n\t\t\tcase SS_FLASH_MSG_SUCCESS:\n\t\t\t\t$GLOBALS['Success'] = $msg['message'];\n\t\t\t\t$print_msg .= $template_system->ParseTemplate('successmsg', true);\n\t\t\tbreak;\n\n\t\t\tcase SS_FLASH_MSG_ERROR:\n\t\t\t\t$GLOBALS['Error'] = $msg['message'];\n\t\t\t\t$print_msg .= $template_system->ParseTemplate('errormsg', true);\n\t\t\tbreak;\n\n\t\t\tcase SS_FLASH_MSG_INFO:\n\t\t\t\t$GLOBALS['Message'] = $msg['message'];\n\t\t\t\t$print_msg .= $template_system->ParseTemplate('infomsg', true);\n\t\t\tbreak;\n\n\t\t\tcase SS_FLASH_MSG_WARNING:\n\t\t\t\t$GLOBALS['Warning'] = $msg['message'];\n\t\t\t\t$print_msg .= $template_system->ParseTemplate('warningmsg', true);\n\t\t\tbreak;\n\t\t}\n\t}\n\tIEM::sessionRemove('FlashMessages');\n\n\treturn $print_msg;\n}", "final private function replaceTags($message)\r\n {\r\n $msg = $message;\r\n $reflectionClass = new ReflectionClass($this);\r\n $properties = $reflectionClass->getProperties(ReflectionProperty::IS_PROTECTED);\r\n foreach ($properties as $prop) {\r\n $tag = $prop->getName();\r\n $prop->setAccessible(true);\r\n $value = $prop->getValue($this);\r\n// }\r\n// foreach ($this->template as $tag => $value) {\r\n if (!empty($value) && ($value !== 0 && $value !== '' && !is_object($value) && !is_array($value))) {\r\n $search = \"/({{)($tag)(}})/\";\r\n $replace = $value;\r\n $msg = preg_replace($search, $replace, $msg);\r\n }\r\n }\r\n\r\n return $msg;\r\n }", "public function flashMessages()\n {\n $aSession = $this->getSession();\n $sFlashMessages = '';\n\n if (array_key_exists(self::FLASH_MESSAGE, $aSession)) {\n foreach ($aSession[self::FLASH_MESSAGE] as $type => $aContent) {\n $sFlashMessages .= \"<div class='alert alert-$type'><span class='glyphicon \" . $aContent['icon'] .\n \"' aria-hidden='true'></span>&nbsp;&nbsp;&nbsp;\" . $aContent['message'] . '</div><br>';\n }\n }\n\n $this->destroySessionValue(self::FLASH_MESSAGE);\n\n return $sFlashMessages;\n }", "public function getFlashes(): array\n {\n return isset($this->messages[$this->lang], $this->messages[$this->lang]['now']) ? $this->messages[$this->lang]['now'] : [];\n }", "public function varSub($msgPattern, $substitutes)\n {\n\t$search = array('QTY' => '%qty%', 'PN' => '%pn%', 'DESC' => '%desc%', 'LINK' => '%link%');\n\t\n\t//$replace = array($substitutes['QTY'], $substitutes['PN'], $substitutes['DESC'], $substitutes['LINK']);\n\t$replace = $substitutes;\n\n\treturn str_replace($search, $replace, $msgPattern);\n\t\n }", "private function buildCache() {\n $this->cache = array();\n $data = $this->flashObj->getMessages($this::SESSION_KEY, false);\n \n if($data) {\n foreach($data as $message) {\n $keyValuePair = explode($this::DELIMITER, $message);\n $this->cache[$keyValuePair[0]] = $keyValuePair[1];\n }\n }\n \n return $this->cache;\n }", "public function messages()\n {\n return [\n 'captcha_key' => '图片验证键',\n 'captcha_code' => '图片验证码',\n ];\n }", "protected function getHandlerParamsMail() : array {\n $params = [];\n if( !empty($conf = $this->handlerParamsConfig['mail']) ){\n $transport = (new \\Swift_SmtpTransport())\n ->setHost($conf->host)\n ->setPort($conf->port)\n ->setEncryption($conf->scheme)\n ->setUsername($conf->username)\n ->setPassword($conf->password)\n ->setStreamOptions([\n 'ssl' => [\n 'allow_self_signed' => true,\n 'verify_peer' => false\n ]\n ]);\n\n $mailer = new \\Swift_Mailer($transport);\n\n // callback function used instead of Swift_Message() object\n // -> we want the formatted/replaced message as subject\n $messageCallback = function($content, $records) use ($conf){\n $subject = 'No Subject';\n if(!empty($records)){\n // build subject from first record -> remove \"markdown\"\n $subject = str_replace(['*', '_'], '', $records[0]['message']);\n }\n\n $jsonData = @json_encode($records, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);\n\n\n $message = (new \\Swift_Message())\n ->setSubject($subject)\n ->addPart($jsonData)\n ->setFrom($conf->from)\n ->setTo($conf->to)\n ->setContentType('text/html')\n ->setCharset('utf-8')\n ->setMaxLineLength(1000);\n\n if($conf->addJson){\n $jsonAttachment = (new \\Swift_Attachment())\n ->setFilename('data.json')\n ->setContentType('application/json')\n ->setBody($jsonData);\n $message->attach($jsonAttachment);\n }\n\n return $message;\n };\n\n $params[] = $mailer;\n $params[] = $messageCallback;\n $params[] = Logger::toMonologLevel($this->getLevel()); // min level that is handled\n $params[] = true; // bubble\n }\n\n return $params;\n }", "protected function messageFilled()\n {\n $search = array();\n $replace = array();\n\n foreach ($this->parameters as $key => $value) {\n $search[] = '#{' . $key . '}#';\n $replace[] = (string) $value;\n }\n\n return preg_replace($search, $replace, $this->message);\n }", "public function getMessageVars();", "public function transform()\n {\n return [\n 'messsage' => (string) 'Please use embeds to grab data.'\n ];\n }", "function getFlashMessage()\n{\n // on test si $_SESSION['flash'] existe\n if (isset($_SESSION['flash'])) {\n //on stock les message dans une variable intermédiaire\n $messages = $_SESSION['flash']; // stocks les messages dans une variables\n unset($_SESSION['flash']); // Vide la session 'flash'\n\n return $messages;//ensuite on retourne les messages\n }\n return []; //On retourne un tableau vide pour dire qu'on a pas de messages ensuite on va dans common\n}", "function getMessageMap() {\n $errors = file(\"errors/{$this->language}.txt\");\n foreach($errors as $error) {\n list($key,$value) = explode(\",\", $error, 2);\n $errorArray[$key] = $value;\n }\n return $errorArray[$this->errorcode];\n }", "protected function loadMotivationText($value) {\n\t\t$text=[];\n\t\tif ($value >= 0) {\n\t\t\t$text[0]='';\n\t\t\t$text[1]='Gratulacje.';\n\t\t\t$text[2]='Świetnie zarządzasz finansami!';\n\t\t} else {\n\t\t\t$text[0]='color:red';\n\t\t\t$text[1]='Uważaj,';\n\t\t\t$text[2]='wpadasz w długi!';\n\t\t}\n\t\treturn $text;\n\t}", "public function messages()\n {\n return [\n \"email.required\"=>'אימייל הוא שדה חובה',\n \"email.email\"=>'שדה זה חייב אימייל חוקי',\n \"password.required\"=>'הסיסמה היא שדה חובה',\n ];\n }", "public function setMessages()\n {\n $flash = $this->session->getSegment('flash\\messages');\n $flash->set(\"flash\", $this->data);\n }", "function flash_message()\n{\n $ci =& get_instance();\n $flashmsg = $ci->session->flashdata('message');\n\n $html = '';\n if (is_array($flashmsg))\n {\n $html = '<div id=\"flashmessage\" class=\"'.$flashmsg[type].'\"> \n <p>'.$flashmsg['content'].'</p>\n </div>';\n }\n return $html;\n}", "function get_messages_from_session() {\n\t$messages = CLanaya::Instance()->session->GetMessages();\n\t$html = null;\n\tif(!empty($messages)) {\n\t\tforeach($messages as $val) {\n\t\t\t$valid = array('info', 'success', 'error', 'block');\n\t\t\t$class = (in_array($val['type'], $valid)) ? $val['type'] : 'info';\n\t\t\t$html .= \"<div class='alert alert-$class'>{$val['message']}</div>\\n\";\n\t\t}\n\t}\n\treturn $html;\n}", "function mentions_rewrite_river_message($hook, $type, $view_vars, $params) {\n\n\t$message = elgg_extract('message', $view_vars);\n\tif (!$message) {\n\t\treturn;\n\t}\n\n\t$regexp = mentions_get_regex();\n\t$view_vars['message'] = preg_replace_callback($regexp, 'mentions_preg_callback', $message);\n\n\treturn $view_vars;\n}", "function flash_message()\n {\n $ci =& get_instance();\n $flashmsg = $ci->session->flashdata('message');\n\n $html = '';\n if (is_array($flashmsg))\n {\n $html = '<div id=\"flashmessage\" class=\"'.$flashmsg[type].'\">\n <img style=\"float: right; cursor: pointer\" id=\"closemessage\" src=\"'.base_url().'images/cross.png\" />\n <strong>'.$flashmsg['title'].'</strong>\n <p>'.$flashmsg['content'].'</p>\n </div>';\n }\n return $html;\n }", "protected function replaceColors($message) {\r\n // Colour tokens.\r\n $colors = array(\r\n '@blue' => \"\\033[0;34m\",\r\n '@green' => \"\\033[0;32m\",\r\n '@cyan' => \"\\033[0;36m\",\r\n '@red' => \"\\033[0;31m\",\r\n '@purple' => \"\\033[0;35m\",\r\n '@brown' => \"\\033[0;33m\",\r\n '@lgray' => \"\\033[0;37m\",\r\n '@gray' => \"\\033[1;30m\",\r\n '@lblue' => \"\\033[1;34m\",\r\n '@lgreen' => \"\\033[1;32m\",\r\n '@lcyan' => \"\\033[1;36m\",\r\n '@lred' => \"\\033[1;31m\",\r\n '@lpurple' => \"\\033[1;35m\",\r\n '@yellow' => \"\\033[1;33m\",\r\n '@end' => \"\\033[0m\",\r\n );\r\n\r\n return str_replace(array_keys($colors), array_values($colors), $message);\r\n }", "public static function addFlashMessages(){\n\t\t$messages = self::bddSelect(\"SELECT message_text FROM shaoline_flash_message WHERE message_only_for_logged = 0 AND current_date() >= message_start_date AND current_date() <= message_stop_date\");\n\t\twhile ($row = $messages->fetchAssoc()) {\n\t\t\tShaContext::addFlashMessage($row[\"message_text\"]);\n\t\t}\n\t\t\n\t\tif (ShaContext::getUser()->isAuthentified()){\n\t\t\t// Getting message for logged user\n\t\t\t$messages = self::bddSelect(\"\n\t\t\tSELECT message_id, message_text\n\t\t\tFROM shaoline_flash_message\n\t\t\tWHERE\n\t\t\t\tmessage_only_for_logged = 1 AND\n\t\t\t\tcurrent_date() >= message_start_date AND\n\t\t\t\tcurrent_date() <= message_stop_date AND\n\t\t\t\tmessage_id NOT IN (SELECT message_id FROM shaoline_user_flash_message WHERE user_id = \".ShaContext::getUser()->getValue(\"user_id\").\")\n\t\t\t\");\n\t\t\twhile ($row = $messages->fetchAssoc()) {\n\t\t\t\tShaContext::addFlashMessage($row[\"message_text\"]);\n\t\t\t\t$shaUserFlashMessage = new ShaUserFlashMessage();\n\t\t\t\t$shaUserFlashMessage\n\t\t\t\t\t->setValue(\"user_id\", ShaContext::getUser().getValue(\"user_id\"))\n\t\t\t\t\t->setValue(\"message_id\", $row[\"message_id\"])\n\t\t\t\t\t->save()\n\t\t\t\t;\n\t\t\t}\n\t\t\t\n\t\t}\n\t\n\t}", "public function messages()\n {\n return [\n 'email.unique' => 'This email has been used',\n 'username.unique' => 'This Username has been used',\n ];\n }", "function invite_answer_message_data()\n\t{\n\t\t$lang = $this->Ip_location->get_language();\n\t\t$this->lang->load('messages',$lang);\n\t\t$subject = $this->lang->line('invite_answer_msg_subject');\n\t\t$content = $this->lang->line('invite_answer_msg_content');\n\t\treturn array('subject'=>$subject,'content'=>$content);\n\t}" ]
[ "0.61297166", "0.6039662", "0.5810302", "0.5399553", "0.53749263", "0.535948", "0.53530914", "0.5351648", "0.5337125", "0.529277", "0.52882546", "0.52674913", "0.52046245", "0.5201193", "0.5185534", "0.5135973", "0.5100265", "0.5095051", "0.50737566", "0.50667495", "0.5058236", "0.50539505", "0.50516224", "0.50493467", "0.5048593", "0.504018", "0.5032917", "0.50214654", "0.50053024", "0.49985558" ]
0.6080333
1
Creates a new Zend\Validator\Step object for each test method
public function setUp() { $this->validator = new Validator\Step(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected abstract function createSteps(): array;", "public function post_create()\n\t{\n\t\t$validation = Validator::make(Input::all(), array(\n\t\t\t'step_id' => array('required', 'integer'),\n\t\t\t'step_description' => array('required'),\n\t\t\t'step_expected_result' => array('required'),\n\t\t));\n\n\t\tif($validation->valid())\n\t\t{\n\t\t\t$test_step = new Test_Step;\n\n\t\t\t$test_step->step_id = Input::get('step_id');\n\t\t\t$test_step->step_description = Input::get('step_description');\n\t\t\t$test_step->step_expected_result = Input::get('step_expected_result');\n\n\t\t\t$test_step->save();\n\n\t\t\tSession::flash('message', 'Added test step #'.$test_step->id);\n\n\t\t\treturn Redirect::to('test_steps');\n\t\t}\n\n\t\telse\n\t\t{\n\t\t\treturn Redirect::to('test_steps/create')->with_errors($validation->errors);\n\t\t}\n\t}", "public function testValidation()\n {\n }", "protected abstract function initSteps();", "protected function defineSteps() {\n\n\t}", "public function testCanSetStepValue()\n {\n $this->validator->setStep(2);\n $this->assertEquals('2', $this->validator->getStep());\n }", "abstract protected function define_my_steps();", "public function testCustomMethods() {\n\t\t$def = array('rule' => 'myTestRule');\n\t\t$data = array(\n\t\t\t'fieldName' => 'some data'\n\t\t);\n\t\t$methods = array('mytestrule' => array($this, 'myTestRule'));\n\n\t\t$Rule = new ValidationRule($def);\n\t\t$Rule->process('fieldName', $data, $methods);\n\t\t$this->assertFalse($Rule->isValid());\n\n\t\t$methods = array('mytestrule' => array($this, 'myTestRule2'));\n\t\t$Rule->process('fieldName', $data, $methods);\n\t\t$this->assertTrue($Rule->isValid());\n\n\t\t$methods = array('mytestrule' => array($this, 'myTestRule3'));\n\t\t$Rule->process('fieldName', $data, $methods);\n\t\t$this->assertFalse($Rule->isValid());\n\t}", "function step1(){\n //createRegisteredUsers();\n //createUsers();\n //createAdmins();\n}", "public function __construct() {\n\t\t$this->validationSuite = new Validation ();\n\t}", "public function run()\n\t{\n\t\t$test_methods = get_class_methods($this);\n\n\t\t$files = array();\n\n\t\tif (is_array($this->validator->package_files))\n\t\t{\n\t\t\t$files = array_merge($files, $this->validator->package_files);\n\t\t}\n\n\t\tif (is_array($this->validator->modx_files))\n\t\t{\n\t\t\t$files = array_merge($files, $this->validator->modx_files);\n\t\t}\n\n\t\tforeach ($files as $package_file)\n\t\t{\n\t\t\tif (mpv::check_unwanted($package_file))\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\t\t\n\t\t\n\t\t\t// Only test html, php, xml files\n\t\t\tif (!in_array(strrchr($package_file, '.'), array('.php', '.xml', '.html')))\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t$this->failed_tests = array();\n\n\t\t\t$this->file_name = $package_file;\n\t\t\t$this->file_contents = file_get_contents($this->validator->temp_dir . $package_file);\n\n\t\t\t$this->file_contents_file = file($this->validator->temp_dir . $package_file);\n\n\t\t\tforeach ($test_methods as $method)\n\t\t\t{\n\t\t\t\tif (substr($method, 0, 5) == 'test_')\n\t\t\t\t{\n\t\t\t\t\tif (!$this->$method() || $this->terminate)\n\t\t\t\t\t{\n\t\t\t\t\t\t$this->failed_tests[] = substr($method, 5);\n\t\t\t\t\t}\n\n\t\t\t\t\tif ($this->terminate)\n\t\t\t\t\t{\n\t\t\t\t\t\tunset($this->file_contents, $this->file_contents_file);\n\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tunset($this->file_contents, $this->file_contents_file);\n\t\t}\n\t}", "public function testProcessValidators(): void\n {\n $annotationDriver = AnnotationDriver::create(__DIR__ . '/../../../../../../../../Documents/Ecommerce');\n $this->dm->getConfiguration()->setMetadataDriverImpl($annotationDriver);\n $this->commandTester->execute([]);\n $output = $this->commandTester->getDisplay();\n self::assertStringContainsString('Updated validation for all classes', $output);\n }", "public function createValidator() : IValidator;", "public function setUp()\n {\n $fields = [\n 'label_exists' => [\n 'label' => 'Label exists',\n 'type' => 'text',\n 'rules' => 'required'\n ],\n 'label_not_exists' => [\n 'type' => 'text',\n 'rules' => 'required'\n ],\n 'required_options' => [\n 'label' => 'Required options',\n 'type' => 'text',\n 'rules' => 'required|inList[option1,option2]'\n ],\n 'optional_options' => [\n 'label' => 'Optional options',\n 'type' => 'text',\n 'rules' => 'inList[option1,option2]'\n ],\n 'ignored_field' => [\n 'rules' => 'ignore'\n ],\n 'no_rules' => [\n 'rules' => ''\n ],\n ];\n\n $this->form = new \\PHPForms\\Form($fields);\n $errors = [\n 'required' => '{field} is required',\n 'inList' => '{field} must be one of these options: {params}',\n ];\n $this->validations = new \\PHPForms\\Validations($errors);\n }", "function ValidateUserTest() {\n // Instantiate the class to be tested\n $this->validator= new ValidateUser('username');\n }", "protected function getStepValidator()\n {\n $format = $this->getFormat();\n $stepValue = isset($this->attributes['step']) ? $this->attributes['step'] : 60; // Seconds\n\n $baseValue = isset($this->attributes['min']) ? $this->attributes['min'] : date($format, 0);\n\n return new DateStepValidator([\n 'format' => $format,\n 'baseValue' => $baseValue,\n 'step' => new DateInterval(\"PT{$stepValue}S\"),\n ]);\n }", "protected function setUp()\n {\n $properties = (object) [\n 'str' => new StringValidator(2, 4),\n 'ok' => new BooleanValidator(),\n ];\n\n $this->object = new ObjectValidator(\n $properties,\n ['ok'],\n true,\n 2,\n 2\n );\n }", "public function testGetRules()\n {\n $expected = ['field'=>'required'];\n\n $this->callValidatorMethod('getRules', $expected);\n }", "public function testAddMultiple(): void\n {\n $validator = new Validator();\n $validator->add('title', [\n 'notBlank' => [\n 'rule' => 'notBlank',\n ],\n 'length' => [\n 'rule' => ['minLength', 10],\n 'message' => 'Titles need to be at least 10 characters long',\n ],\n ]);\n $set = $validator->field('title');\n $this->assertInstanceOf(ValidationSet::class, $set);\n $this->assertCount(2, $set);\n }", "public function test_validate()\n {\n return $this->find_errors($this->check);\n }", "protected function createMocks()\n {\n $scenario = $this->test->getScenario();\n\n $steps = $scenario->getSteps();\n if (!isset($steps[$scenario->getCurrentStep()])) throw new \\Exception(\"New steps were added to scenario in realtime. Can't proceed.\\nRemove loops from your unit test to fix it\");\n\n for ($i = $scenario->getCurrentStep()+1; $i < count($steps); $i++) {\n $step = $steps[$i];\n if (strpos($action = $step->getAction(), 'seeMethod') === 0) {\n $arguments = $step->getArguments(false);\n $mock = array_shift($arguments);\n $function = array_shift($arguments);\n $params = array_shift($arguments);\n\n foreach ($this->stubs as $stub) {\n if (get_class($stub) == get_class($mock)) {\n $mock = $stub;\n }\n }\n\n $invoke = false;\n\n switch ($action) {\n case 'seeMethodInvoked':\n case 'seeMethodInvokedAtLeastOnce':\n if (!$mock) throw new \\InvalidArgumentException(\"Stub class not defined\");\n $invoke = new \\PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastOnce();\n break;\n case 'seeMethodInvokedOnce':\n if (!$mock) throw new \\InvalidArgumentException(\"Stub class not defined\");\n $invoke = new \\PHPUnit_Framework_MockObject_Matcher_InvokedCount(1);\n break;\n case 'seeMethodNotInvoked':\n if (!$mock) throw new \\InvalidArgumentException(\"Stub class not defined\");\n $invoke = new \\PHPUnit_Framework_MockObject_Matcher_InvokedCount(0);\n break;\n case 'seeMethodInvokedMultipleTimes':\n if (!$mock) throw new \\InvalidArgumentException(\"Stub class not defined\");\n $times = $params;\n if (!is_int($times)) throw new \\InvalidArgumentException(\"Invoked times count should be an integer\");\n $params = $arguments;\n $invoke = new \\PHPUnit_Framework_MockObject_Matcher_InvokedCount($times);\n break;\n default:\n }\n\n if ($invoke) {\n $mockMethod = $mock->expects($invoke)->method($function);\n $this->debug(get_class($invoke) . ' attached');\n if ($params) {\n call_user_func_array(array($mockMethod, 'with'), $params);\n $this->debug('with ' . json_encode($params));\n }\n }\n }\n\n if ($step->getAction() == 'executeTestedMethod') break;\n if ($step->getAction() == 'execute') break;\n if ($step->getAction() == 'executeTestedMethodOn') break;\n if ($step->getAction() == 'executeTestedMethodWith') break;\n }\n }", "public function secondStepSubmit(){\n // $validatedData = $this->validate([\n // 'status' => 'required',\n // ]);\n\n $this->currentStep = 3;\n }", "public function getSteps()\n {\n }", "public function setUp(): void\n {\n $this->validator = new TableRequiredValidator();\n }", "abstract public function validate($scenario);", "public function testParseRule()\n {\n $method = 'parseRule';\n $args = ['required'];\n\n $validator = $this->getMockBuilder(\\Illuminate\\Validation\\Validator::class)\n ->disableOriginalConstructor()\n ->getMock();\n\n $parser = $this->getMockBuilder(\\Proengsoft\\JsValidation\\Support\\ValidationRuleParserProxy::class)\n ->disableOriginalConstructor()\n ->getMock();\n\n $parser->expects($this->any())\n ->method('parse')\n ->willReturn(true);\n\n $delegated = $this->getMockBuilder(\\Proengsoft\\JsValidation\\Support\\DelegatedValidator::class)\n ->setConstructorArgs([$validator, $parser])\n ->onlyMethods(['callProtected'])\n ->getMock();\n\n if (is_array($args)) {\n $v = call_user_func_array([$delegated,$method], $args);\n } else {\n $v = $delegated->$method($args);\n }\n\n $this->assertTrue($v);\n }", "public final static function buildStepsWithValidValuesProvider() {\n\t\t$stepsWithValues = [];\n\t\tforeach( static::validBuilderStepsProvider() as $caseBuildSteps ) {\n\t\t\tforeach( $caseBuildSteps[0] as $buildStep => $value ){\n\t\t\t\t$stepsWithValues[] = [ $buildStep, $value ];\n\t\t\t}\n\t\t}\n\t\treturn $stepsWithValues;\n\t}", "public function takeStepAction();", "public function make(array $data)\n {\n $list = $this->rules;\n\n foreach ($list as $field => $rule) {\n $isRequired = false;\n\n if (strpos($rule, \"|\")) {\n\n $list = explode('|', $rule);\n\n foreach ($list as $rule) {\n\n $rule_info = Rule::info($rule);\n\n if ($rule_info['name'] == 'required') $isRequired = true;\n\n $test = $this->callRuleArgs(\n $rule_info,\n $field,\n $data,\n $isRequired\n );\n\n $index = \"$field.{$rule_info['name']}\";\n\n $this->tests[$index] = $test;\n }\n\n $isRequired = false;\n } else {\n $rule_info = Rule::info($rule);\n $required = false;\n\n if ($rule_info['name'] == \"required\") $required = true;\n\n $test = $this->callRuleArgs($rule_info, $field, $data, $required);\n $index = \"$field.{$rule_info['name']}\";\n\n $this->tests[$index] = $test;\n }\n }\n }", "public function rules()\n {\n return array(\n array('invite_code', 'numerical'),\n // Step 1 Scenario\n array('city', 'required', 'on' => 'step1', 'message' => '{attribute} не может быть пустым'),\n array('city', 'numerical', 'integerOnly' => true, 'on' => 'step1'),\n // Step 2 Scenario\n array('city, gender, lastname, firstname, middlename', 'required', 'on' => 'step2', 'message' => 'Заполните поле {attribute}'),\n array('lastname, firstname, middlename', 'length', 'on' => 'step2', 'min' => 2),\n // Step 3 Scenario\n array('city, gender, lastname, firstname, middlename, login, email, password', 'required', 'on' => 'step3', 'message' => '{attribute} не может быть пустым'),\n array('login', 'length', 'min' => 3, 'max' => 30),\n array('login', 'unique', 'on' => 'step3', 'className' => 'User'),\n array('email', 'email', 'on' => 'step3'),\n array('email', 'unique', 'on' => 'step3', 'className' => 'User', 'message' => '{attribute} \\'{value}\\' уже используется'),\n array('password', 'length', 'on' => 'step3', 'min' => 3),\n // Step 4 Scenario\n array('city, gender, lastname, firstname, middlename, login, email, password, phone, agreement', 'required', 'on' => 'step4', 'message' => '{attribute} не может быть пустым'),\n array('phone', 'length', 'on' => 'step4', 'min' => 10),\n array('phone', 'unique', 'on' => 'step4', 'className' => 'Profile'),\n // Step 5 Scenario\n array('city, gender, lastname, firstname, middlename, login, email, password, phone, agreement, confirm', 'required', 'on' => 'step5', 'message' => '{attribute} не может быть пустым'),\n array('confirm', 'checkConfirm', 'on' => 'step5'),\n );\n }" ]
[ "0.6217008", "0.5645435", "0.56306463", "0.55451655", "0.5540408", "0.55259925", "0.5507491", "0.5441797", "0.5403372", "0.5387522", "0.5323738", "0.5302325", "0.52972466", "0.52844125", "0.52783793", "0.52431273", "0.52268493", "0.52214605", "0.5153209", "0.515134", "0.5147966", "0.5134416", "0.51096284", "0.5107415", "0.50883317", "0.5086815", "0.5067542", "0.50328606", "0.5008287", "0.5005095" ]
0.64643246
0
Ensures that set/getBaseValue() works
public function testCanSetBaseValue() { $this->validator->setBaseValue(2); $this->assertEquals('2', $this->validator->getBaseValue()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "abstract public function setValue(mixed $value): mixed;", "abstract function setValue($value);", "abstract public function setValue($value);", "public function testValue(): void\n {\n $this->setInaccessibleProperty(new Html(), 'generateIdCounter', ['i' => 6]);\n $this->formModel->setAttribute('string', '1');\n $expected = <<<'HTML'\n <div>\n <label for=\"typeform-string\">String</label>\n <input type=\"range\" id=\"typeform-string\" name=\"TypeForm[string]\" value=\"1\" placeholder=\"Typed your text string.\" oninput=\"i7.value=this.value\">\n <output id=\"i7\" name=\"i7\" for=\"TypeForm[string]\">1</output>\n <div>Write your text string.</div>\n </div>\n HTML;\n $this->assertEqualsWithoutLE(\n $expected,\n Field::widget()->config($this->formModel, 'string')->range()->render(),\n );\n\n // int value 1\n $this->setInaccessibleProperty(new Html(), 'generateIdCounter', ['i' => 7]);\n $this->formModel->setAttribute('int', '1');\n $expected = <<<'HTML'\n <div>\n <label for=\"typeform-int\">Int</label>\n <input type=\"range\" id=\"typeform-int\" name=\"TypeForm[int]\" value=\"1\" oninput=\"i8.value=this.value\">\n <output id=\"i8\" name=\"i8\" for=\"TypeForm[int]\">1</output>\n </div>\n HTML;\n $this->assertEqualsWithoutLE(\n $expected,\n Field::widget()->config($this->formModel, 'int')->range()->render(),\n );\n }", "public function getVal() {\r\n return $this->baseValue;\r\n }", "abstract public function set_manage_value_callback();", "public function testMagicIsset(): void\n {\n $this->class->setAll($this->valueAlt);\n\n self::assertTrue(isset($this->class->bar));\n }", "public function computeNewValue();", "public function validate(): void\n {\n if (null === $this->isValid) {\n if (null === $this->userValue && null !== $this->defaultValue) {\n // There is a preset value, and its not being changed\n $this->isValid = true;\n } elseif (null !== $this->validator && false !== $this->validator) {\n if ('' === $this->userValue && false === $this->required) {\n $this->isValid = true;\n return;\n } elseif ('' === $this->userValue && true === $this->required) {\n $this->isValid = false;\n return;\n }\n $validator = $this->validator;\n $result = $validator::quickValidate($this->userValue, $this->filters, $this->constraints, $this->error);\n if ($result != null) {\n $this->userValue = $result;\n $this->isValid = true;\n } else {\n $this->userValue = null;\n $this->isValid = false;\n }\n } else {\n // This field does not get validated\n $this->isValid = true;\n }\n }\n // Check if the input is different from the default value\n if ($this->isValid && null !== $this->userValue) {\n $this->isChanged = ($this->defaultValue != $this->userValue);\n }\n }", "public function &getValueToSet();", "function hook_entity_field_values_init(\\Drupal\\Core\\Entity\\FieldableEntityInterface $entity) {\n if ($entity instanceof \\Drupal\\Core\\Entity\\ContentEntityInterface && !$entity->foo->value) {\n $entity->foo->value = 'some_initial_value';\n }\n}", "public function testGetBaseLanguageReturnsAlreadySettedValue()\n {\n $oLang = $this->getProxyClass( \"oxLang\" );\n $oLang->setNonPublicVar( '_iBaseLanguageId', 2 );\n\n $this->assertEquals( 2, $oLang->getBaseLanguage() );\n }", "protected function ensureAllNumericValues() {\n\t\t$this->ensureNumericValue(array(\n\t\t\tself::OFFICIAL_DISTANCE,\n\t\t\tself::OFFICIAL_TIME,\n\t\t\tself::OFFICIALLY_MEASURED,\n\t\t\tself::ACTIVITY_ID\n\t\t));\n\t}", "abstract protected function getValue();", "abstract protected function getValue();", "abstract protected function getValue();", "abstract protected function getValue();", "public function testCreateValueFail(): void\n {\n try {\n $this->field->createValue();\n } catch (PropertyRequiredException $propertyRequiredException) {\n $this->assertEquals(\n 'You must register the custom field - missing id',\n $propertyRequiredException->getMessage()\n );\n }\n }", "function hook_ENTITY_TYPE_field_values_init(\\Drupal\\Core\\Entity\\FieldableEntityInterface $entity) {\n if (!$entity->foo->value) {\n $entity->foo->value = 'some_initial_value';\n }\n}", "public function testSetValuesIgnoresErrors()\n {\n $mono = new P4_Spec_MonoMock;\n\n $values = $mono->getValues();\n $values['JunkEntry'] = 'a junk entry';\n\n // invalid field would normally throw; ensure it doesn't here.\n try {\n $mono->setValues($values);\n\n $this->assertSame(\n array('TypeMap' => $values['TypeMap']),\n $mono->getValues(),\n 'Expected values to match'\n );\n } catch (Exception $e) {\n $this->fail('Unexpected Exception ('. get_class($e) .'): '. $e->getMessage());\n }\n }", "abstract public function get_value();", "public function testSetValuesSafeCanAcceptAnything()\n {\n $article = new Article($this->conn);\n $values = [\n 'id' => 12,\n 'title' => 'Foo',\n 'slug' => 'foo',\n 'created_at' => new \\DateTime(),\n 'updated_at' => new \\DateTime(),\n ];\n $article->setValuesSafe($values);\n $this->assertSame($values, $article->getValues());\n }", "protected function ensureCalculated(): void {\n if (!$this->isCalculated) {\n $entity = $this->getEntity();\n if (!$entity->isNew()) {\n $this->setValue([\n 'value' => $entity->get('firstname')->value . ' ' . $entity->get('lastname')->value,\n ]);\n }\n $this->isCalculated = TRUE;\n }\n }", "public function validate() {\n if (!empty($this->value)) {\n parent::validate();\n }\n }", "function self_load_defaults($val) {\r\n $this->value = $val;\r\n }", "public function testMagicSet()\n {\n $this->uut->setData(self::SOME_DATA);\n $newValue = 'new';\n $this->uut->foo = $newValue;\n $this->assertEquals($newValue, $this->uut->getField('foo'));\n }", "abstract public function validateValue($value);", "function set_values() {\n\t\tparent::set_values();\n\t}", "static function isValidValue()\n {\n }", "abstract public function getValue(): mixed;" ]
[ "0.632918", "0.6176296", "0.6071397", "0.60341257", "0.59813404", "0.5835679", "0.58143216", "0.58073795", "0.58005434", "0.57696724", "0.57589304", "0.5742407", "0.57387483", "0.5735045", "0.5735045", "0.5735045", "0.5735045", "0.5725889", "0.57207596", "0.57084894", "0.569283", "0.5690049", "0.565023", "0.56358236", "0.5610714", "0.56097704", "0.5608841", "0.56014615", "0.55998677", "0.55909634" ]
0.7737885
0
Ensures that set/getStep() works
public function testCanSetStepValue() { $this->validator->setStep(2); $this->assertEquals('2', $this->validator->getStep()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function performStep()\n {\n }", "private function bump_step()\n {\n }", "function StepIt() { $this->StepBy($this->Step); }", "public function getStep();", "abstract protected function define_my_steps();", "function setStep($step) {\n\t\t$this->step = $step;\n\t}", "function agc_login_steps_getset_step($step_number = 0,$set = false)\n{\n\t$current_step = get_user_meta(bp_loggedin_user_id(),'agc_login_steps_completed',true);\n\t$current_step = ($current_step)?$current_step:0;\n\n\tif($set)\n\t{\n\t\tupdate_user_meta(bp_loggedin_user_id(),'agc_login_steps_completed',$step_number,$current_step);\n\n\t\tdo_action('agc_after_login_step_saved',$step_number,$current_step);\n\n\t\treturn;\n\t}\n\treturn $current_step;\n}", "private function do_steps()\n {\n }", "protected abstract function initSteps();", "public function testReachNextStateOrValide()\n {\n $model = new FakeModel();\n $modelState = $this->getProcessHandler()->start($model);\n\n $this->assertTrue($modelState instanceof ModelState);\n $this->assertEquals('document_proccess', $modelState->getProcessName());\n $this->assertEquals('step_create_doc', $modelState->getStepName());\n\n $model->setContent('blablabla');\n $modelState = $this->getProcessHandler()->reachNextState($model, 'validate_or_remove');\n\n $this->assertTrue($modelState instanceof ModelState);\n $this->assertEquals('document_proccess', $modelState->getProcessName());\n $this->assertEquals('step_validate_doc', $modelState->getStepName());\n }", "abstract public function processNextStep();", "public function takeStepAction();", "public function setStep($step) {\n\t\t$this->step = $step;\n\t}", "public function actionStep()\n {}", "public function step() {\n // This space left intentionally blank.\n }", "protected function defineSteps() {\n\n\t}", "public function takeStepData();", "function setCurrentStep($i){\n if( !isset( $this->aSteps[$i] ) ) $i = 1;\n // Make sure the user is allowed onto this step yet\n $allowedstep = $this->getLastAllowedStep();\n if( $i > $allowedstep ) $i = $allowedstep;\n $this->currentstep = $i;\n }", "abstract protected function doLastStep();", "public function setUp()\n {\n $this->validator = new Validator\\Step();\n }", "protected function readStep() { return $this->_step; }", "public function setup()\n {\n $this->totalSteps = 1;\n }", "public function getSteps()\n {\n }", "public function getNowStep(): ?StepInterface;", "public function secondStepSubmit(){\n // $validatedData = $this->validate([\n // 'status' => 'required',\n // ]);\n\n $this->currentStep = 3;\n }", "function setCurrentStep($nextStep) {\n /* Old step log as completed */\n $currentStep = $this->getCurrentStep();\n if ($currentStep != null) {\n $this->state['step_details'][$currentStep->name]['completed'] = date('Y-m-d H:i:s');\n }\n\n /* New step log as started */\n $nextStepName = is_string($nextStep) ? $nextStep : $nextStep->name;\n if (isset($this->steps[$nextStepName]) == false) {\n throw new \\RuntimeException('Step ' . $nextStepName . ' DOES NOT exist in workflow');\n }\n $this->state['current_step'] = $nextStepName;\n $this->state['history'][] = $nextStepName;\n $this->state['step_details'][$nextStepName]['started'] = date('Y-m-d');\n }", "function qa_step($qa_step_id=0, $row=false) {\n // Key ids..\n $this->qa_step_id = $qa_step_id;\n // Suck in any data provided..\n if ($row !== false) {\n $this->assign_from_row($row);\n $this->valid = true;\n }\n }", "public function beforeStep(StepEvent $e)\n {\n }", "static function stepReset()\n {\n echo \"\\n\";\n self::$stepCount = 0;\n }", "public function getStep() {\n\t\treturn $this->step;\n\t}" ]
[ "0.68642503", "0.6631645", "0.6616821", "0.65349513", "0.64224637", "0.6397732", "0.63911265", "0.63464063", "0.628529", "0.62202424", "0.62035054", "0.6171174", "0.6145987", "0.61230063", "0.60872906", "0.60798764", "0.5949079", "0.59368074", "0.5903374", "0.5869022", "0.585879", "0.5834676", "0.5785065", "0.56856203", "0.56789476", "0.5664127", "0.56256735", "0.56109434", "0.55334336", "0.5495875" ]
0.76613206
0
/ setAsFirstChildOf set current node as first child of source node
public function setAsFirstChildOf($sourceNodeOrSourceNodeId){ $this->_nodePositionChangeType = 'firstChild'; $this->_nodePositionChangeContext = $sourceNodeOrSourceNodeId; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function makeFirstChildOf($node);", "public function insertBeforeSpecificNode(Node $node, Node $target): void;", "public function getNodeFirst();", "public function setSourceNode($node) {}", "public function prependChild(Node $child): self\n {\n return $this;\n }", "public function moveToFirstChildOf($node) {\n\n if (!$this->isInTree()) {\n throw new Exception('Object must be already in the tree to be moved. Use the insertAsFirstChildOf() instead.');\n }\n if ($node->isDescendantOf($this->getOwner())) {\n throw new Exception('Cannot move a node as child of one of its subtree nodes.');\n }\n\n /** @var \\Flywheel\\Model\\ActiveRecord $owner */\n $owner = $this->getOwner();\n if (!$owner->validate()) {//check validate before save\n return $owner;\n }\n\n $owner->beforeSave();\n $this->_moveSubtreeTo($node->getLeftValue() + 1, $node->getLevelValue() - $this->getLevelValue() + 1, $node->getScopeValue());\n $owner->afterSave();\n $owner->reload();\n $node->reload();\n\n return $owner;\n }", "public function testMoveSubTreeBefore() {\n\n $target = $this->nestedSet->getNode(new NodeKey(4, 1));\n $nodeKey = new NodeKey(7, 1);\n $node = $this->nestedSet->getNode($nodeKey);\n\n $this->nestedSet->moveSubTreeBefore($target, $node);\n $this->assertNodeMovedBefore();\n\n $node = $this->nestedSet->getNode(new NodeKey(7, 1));\n // Check node is in new position.\n $node = $this->nestedSet->getNode($nodeKey);\n\n $this->nestedSet->moveSubTreeBefore($target, $node);\n $this->assertNodeMovedBefore();\n }", "public function firstChild()\n {\n return !empty($this->nodes) ? $this->nodes[0] : null;\n }", "protected static function mergeNode(SimpleXMLElement $source, SimpleXMLElement $new)\n\t{\n\t\t// Update the attributes of the child node.\n\t\tforeach ($new->attributes() as $name => $value)\n\t\t{\n\t\t\tif (isset($source[$name]))\n\t\t\t{\n\t\t\t\t$source[$name] = (string) $value;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$source->addAttribute($name, $value);\n\t\t\t}\n\t\t}\n\n\t\t// What to do with child elements?\n\t}", "public function addChildFirst() {\n $args = func_get_args();\n\n if (count($this->children)) {\n for ($n = count($args) - 1; $n >= 0; $n--) {\n if (is_array($args[$n])) {\n $num = count($args[$n]);\n array_splice($args, $n, 1, $args[$n]);\n $n += $num - 1;\n }\n\n $obj = $args[$n];\n $this->addChildBefore($obj, $this->children[0]);\n }\n } else {\n $this->addChild($args);\n }\n\n return $this;\n }", "public function testGetFirstChild()\n {\n $node = new Node('<b>Test 1</b><strong>Test 2</strong>');\n $child = $node->getFirstChild();\n $this->assertInstanceOf(NodeContract::class, $child);\n $this->assertEquals('b', $child->getName());\n }", "public function addFirst($value)\n\t{\n\t\t$this->head = new DNode($value, $this->head, null);\n\t\tif ($this->tail == null) {\n\t\t\t$this->tail = $this->head;\n\t\t}\n\t\t$this->size++;\n\t}", "public function testGetFirstChildNull()\n {\n $node = new Node('<span></span>');\n $spanTag = $node->getChild(0);\n $this->assertNull($spanTag->getFirstChild());\n }", "private function linkFirst($e) {\n\t\t/* @var $f Node */\n\t\t$this->testTypeParameters( $e );\n\t\t$f = $this->first;\n\t\t$newNode = new Node( null, $e, $f );\n\t\t$this->first = $newNode;\n\t\tif ($f == null) {\n\t\t\t$this->last = $newNode;\n\t\t} else {\n\t\t\t$f->prev = $newNode;\n\t\t}\n\t\t$this->size++;\n\t\t$this->modCount++;\n\t}", "public function firstNode() {\n return $this->belongsTo(Node::class, 'first_node_id');\n }", "public function insertAtHead(Node $node): void;", "public function insertAsFirstChildOf($node) {\n if ($this->isInTree()) {\n throw new Exception('Oject must not already be in the tree to be inserted. Use the moveToFirstChildOf() instead.');\n }\n\n $left = $node->getLeftValue()+1;\n\n // Update node properties\n $this->setLeftValue($left);\n $this->setRightValue($left + 1);\n $this->setLevelValue($node->getLevelValue() + 1);\n $scope = $node->getScopeValue();\n $this->setScopeValue($scope);\n\n /** @var \\Flywheel\\Model\\ActiveRecord $owner */\n $owner = $this->getOwner();\n\n if (!$owner->validate()) {//check validate before save\n return $owner;\n }\n // Keep the tree modification query for the save() transaction\n $this->nestedSetQueries []= array(\n 'callable' => array($this, 'makeRoomForLeaf'),\n 'arguments' => array($left, $scope)\n );\n\n $owner->save();\n $node->reload();\n\n return $this->_owner;\n\n }", "public static function firstChild( $node )\r\n {\r\n $node = $node->firstChild ;\r\n // while ( $node != null && $node->nodeType == XML_TEXT_NODE ) {\r\n while ( $node != null && $node->nodeType != XML_ELEMENT_NODE ) {\r\n $node = $node->nextSibling ;\r\n }\r\n return $node ;\r\n }", "public function rewind()\n {\n $this->position = 0;\n// $this->node = $this->first;\n //$this->node = $this->node->nextSibling->firstChild;\n }", "public function firstDescendant():?PrototypeTraversal;", "public function addFirst( $val )\n {\n return $this->insertBefore($this->head->next, $val);\n }", "public static function prepend($content, $source)\n\t{\n\t return preg_replace('/^(<.*?>)/', '${1}' . $content, $source);\n\t}", "public function getFirstChildOfType($targetType)\n {\n foreach ($this->_nodes as $node) {\n if ($node instanceof $targetType) {\n return $node;\n }\n if (($child = $node->getFirstChildOfType($targetType)) !== null) {\n return $child;\n }\n }\n return null;\n }", "public function prepend(string|htmldoc $html) : htmldoc {\n\t\tif (($nodes = $this->parse($html)) !== false) {\n\t\t\tforeach ($this->children AS $item) {\n\t\t\t\tif (\\get_class($item) === 'hexydec\\\\html\\\\tag') {\n\t\t\t\t\t$item->prepend($nodes);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $this;\n\t}", "protected static function mergeNodes(SimpleXMLElement $source, SimpleXMLElement $new)\n\t{\n\t\t// The assumption is that the inputs are at the same relative level.\n\t\t// So we just have to scan the children and deal with them.\n\n\t\t// Update the attributes of the child node.\n\t\tforeach ($new->attributes() as $name => $value)\n\t\t{\n\t\t\tif (isset($source[$name]))\n\t\t\t{\n\t\t\t\t$source[$name] = (string) $value;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$source->addAttribute($name, $value);\n\t\t\t}\n\t\t}\n\n\t\tforeach ($new->children() as $child)\n\t\t{\n\t\t\t$type = $child->getName();\n\t\t\t$name = $child['name'];\n\n\t\t\t// Does this node exist?\n\t\t\t$fields = $source->xpath($type . '[@name=\"' . $name . '\"]');\n\n\t\t\tif (empty($fields))\n\t\t\t{\n\t\t\t\t// This node does not exist, so add it.\n\t\t\t\tself::addNode($source, $child);\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t// This node does exist.\n\t\t\t\tswitch ($type)\n\t\t\t\t{\n\t\t\t\t\tcase 'field':\n\t\t\t\t\t\tself::mergeNode($fields[0], $child);\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tself::mergeNodes($fields[0], $child);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "function GetLeftSibling()\n\t{\n\t\t$q = $this->ancestor->child;\n\t\twhile ($q->sibling != $this)\n\t\t{\n\t\t\t$q = $q->sibling;\n\t\t}\n\t\treturn $q;\n\t}", "public function getLeftSibling();", "function insertBefore (Node $child, Node $reference)\n\t{\n\t\t//Attributes can be inserted\n\t\tif ($child instanceof Attr) {\n\t\t\tthrow new DomException(\"Node cannot be inserted at the specified point in the hierarchy\");\n\t\t}\n\t\t//If the node to add is a document fragment insert its child nodes \n\t\t//instead of it and remove them from the fragment\n\t\tif ($child->nodeType === 11) {\n\t\t\t$i = $child->childNodes->length;\n\t\t\twhile ($i) {\n\t\t\t\t$docChild = $child->removeChild($child->childNodes[0]);\n\t\t\t\t$this->insertBefore($docChild, $reference);\n\t\t\t\t$i--;\n\t\t\t}\n\t\t\treturn $child;\n\t\t}\n\t\t//See if the current node contains the reference node\n\t\t$index = $this->_getChildNodeIndex($reference);\n\t\t//If the reference node is not contained into the current one\n\t\t//throw an exception\n\t\tif ($index === null) {\n\t\t\tthrow new DomException(\"Node was not found\");\n\t\t} else {\n\t\t\t//Remove the child from its parent node before continue\n\t\t\tif ($child->parentNode) {\n\t\t\t\t$child->parentNode->removeChild($child);\n\t\t\t}\n\t\t\t$child->parentNode = $this;\n\t\t\t$this->childNodes->_addNodeAt($child, $index);\n\t\t}\n\t\treturn $child;\n\t}", "public function setParentNode(Node $parent = null): void;", "public function getSiblingBefore() {\n\t\ttry {\n\t\t\tif ($this->hasSiblingBefore()) {\n\t\t\t\t$prev\t= $this->node->previousSibling;\n\t\t\t\twhile ($prev && (!$prev instanceof DOMElement)) {\n\t\t\t\t\t$prev\t= $prev->previousSibling;\n\t\t\t\t}\n\t\t\t\t$className\t= get_class($this);\n\t\t\t\t$previous\t= new $className;\n\t\t\t\t$previous\t\t->setNode($prev);\n\t\t\t\t$previous\t\t->setConfig($this->config);\n\t\t\t\tif ($this->outputFilter instanceof LBoxOutputFilter) {\n\t\t\t\t\t$ofClassName\t= get_class($this->outputFilter);\n\t\t\t\t\t$previous->setOutputFilter(new $ofClassName($previous));\n\t\t\t\t}\n\t\t\t\treturn $previous;\n\t\t\t}\n\t\t}\n\t\tcatch(Exception $e) {\n\t\t\tthrow $e;\n\t\t}\n\t}" ]
[ "0.6880003", "0.6144844", "0.58703154", "0.5847014", "0.5768889", "0.5753745", "0.56292903", "0.56156164", "0.55214393", "0.5479213", "0.5450374", "0.54074997", "0.53758717", "0.5337216", "0.53269464", "0.5274103", "0.5263855", "0.52375203", "0.5237384", "0.5221371", "0.52094626", "0.5201098", "0.51992023", "0.51738536", "0.51651776", "0.51328474", "0.5130023", "0.5124818", "0.51200837", "0.5111692" ]
0.73294026
0
/ setAsLastChildOf set current node as last child of source node
public function setAsLastChildOf($contextNodeOrSourceNodeId){ $this->_nodePositionChangeType = 'lastChild'; $this->_nodePositionChangeContext = $contextNodeOrSourceNodeId; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function makeLastChildOf($node);", "public function getNodeLast();", "function removeLastChild() : void\r\n {\r\n array_pop($this->children);\r\n }", "public function testOrderAfterLast()\n {\n $siblings = [\n 'one' => $this->prophesize(NodeInterface::class),\n 'two' => $this->prophesize(NodeInterface::class),\n ];\n\n $this->event->getDestId()->willReturn(self::UUID);\n $this->nodeManager->find(self::UUID)->willReturn($this->siblingNode->reveal());\n $this->event->getAfter()->willReturn(true);\n $this->parentNode->getPath()->willReturn(self::PARENT_PATH);\n $this->node->getName()->willReturn(self::NODE_NAME);\n $this->node->getParent()->willReturn($this->parentNode->reveal());\n $this->parentNode->getNodes()->willReturn($siblings);\n\n $this->siblingNode->getPath()->willReturn('/path/to/two');\n $this->parentNode->orderBefore(self::NODE_NAME, null)->shouldBeCalled();\n\n $this->subscriber->handleReorder($this->event->reveal());\n }", "public function moveToLast(): void\n {\n $this->moveToPosition($this->getLastPosition());\n }", "public function linkLast($e) {\n\t\t/* @var $l Node */\n\t\t$this->testTypeParameters( $e );\n\t\t$l = $this->last;\n\t\t$newNode = new Node( $l, $e, null );\n\t\t$this->last = $newNode;\n\t\tif ($l == null) {\n\t\t\t$this->first = $newNode;\n\t\t} else {\n\t\t\t$l->next = $newNode;\n\t\t}\n\t\t$this->size++;\n\t\t$this->modCount++;\n\t}", "function getLastChild()\n {\n return end($this->children);\n }", "public function lastChild()\n {\n return !empty($this->nodes) ? $this->nodes[$this->nodeCount() - 1] : null;\n }", "public function addLast($value)\n\t{\n\t\t$this->tail = new DNode($value, null, $this->tail);\n\t\tif ($this->head == null) {\n\t\t\t$this->head = $this->tail;\n\t\t}\n\t\t$this->size++;\n\t}", "function move_node_append_last($lft,$nlft){\n\t\t$node = $this->get_node($nlft);\n\t\tif(!$node)return false;\n\t\treturn $this->move_node($lft,$node[$this->right_col]);\n\t}", "public function addLast($oElement);", "public function getLastChild() {\n\t return $this->children[count($this->children) - 1];\n\t}", "public function moveToLastChildOf($node) {\n if (!$this->isInTree()) {\n throw new Exception('Object must be already in the tree to be moved. Use the insertAsFirstChildOf() instead.');\n }\n if ($node->isDescendantOf($this->getOwner())) {\n throw new Exception('Cannot move a node as child of one of its subtree nodes.');\n }\n\n /** @var \\Flywheel\\Model\\ActiveRecord $owner */\n $owner = $this->getOwner();\n if (!$owner->validate()) {//check validate before save\n return $owner;\n }\n\n $owner->beforeSave();\n $this->_moveSubtreeTo($node->getRightValue(), $node->getLevelValue() - $this->getLevelValue() + 1, $node->getScopeValue());\n $owner->afterSave();\n $owner->reload();\n $node->reload();\n\n return $owner;\n }", "public function insertAtEnd(Node $node): void;", "public function testMoveSubTreeBelowEndChildNode() {\n\n $parent = $this->nestedSet->getNode(new NodeKey(1, 1));\n $nodeKey = new NodeKey(7, 1);\n $node = $this->nestedSet->getNode($nodeKey);\n\n $newRoot = $this->nestedSet->addRootNode(new NodeKey(12, 1));\n $newChild = $this->nestedSet->addNodeBelow($newRoot, new NodeKey(13, 1));\n $this->nestedSet->moveSubTreeBelow($newChild, $node);\n\n // Check node is in new position.\n $node = $this->nestedSet->getNode($nodeKey);\n $this->assertEquals(19, $node->getLeft());\n $this->assertEquals(24, $node->getRight());\n $this->assertEquals(2, $node->getDepth());\n\n // Check children are in new position.\n $node = $this->nestedSet->getNode(new NodeKey(10, 1));\n $this->assertEquals(20, $node->getLeft());\n $this->assertEquals(21, $node->getRight());\n $this->assertEquals(3, $node->getDepth());\n\n $node = $this->nestedSet->getNode(new NodeKey(11, 1));\n $this->assertEquals(22, $node->getLeft());\n $this->assertEquals(23, $node->getRight());\n $this->assertEquals(3, $node->getDepth());\n\n // Check old parent is updated.\n $node = $this->nestedSet->getNode(new NodeKey(3, 1));\n $this->assertEquals(10, $node->getLeft());\n $this->assertEquals(15, $node->getRight());\n $this->assertEquals(1, $node->getDepth());\n\n }", "public function testMoveSubTreeBelowEndParentNode() {\n\n $parent = $this->nestedSet->getNode(new NodeKey(1, 1));\n $nodeKey = new NodeKey(7, 1);\n $node = $this->nestedSet->getNode($nodeKey);\n\n $newRoot = $this->nestedSet->addRootNode(new NodeKey(12, 1));\n $this->nestedSet->moveSubTreeBelow($newRoot, $node);\n\n // Check node is in new position.\n $node = $this->nestedSet->getNode($nodeKey);\n $this->assertEquals(18, $node->getLeft());\n $this->assertEquals(23, $node->getRight());\n $this->assertEquals(1, $node->getDepth());\n\n // Check children are in new position.\n $node = $this->nestedSet->getNode(new NodeKey(10, 1));\n $this->assertEquals(19, $node->getLeft());\n $this->assertEquals(20, $node->getRight());\n $this->assertEquals(2, $node->getDepth());\n\n $node = $this->nestedSet->getNode(new NodeKey(11, 1));\n $this->assertEquals(21, $node->getLeft());\n $this->assertEquals(22, $node->getRight());\n $this->assertEquals(2, $node->getDepth());\n\n // Check old parent is updated.\n $node = $this->nestedSet->getNode(new NodeKey(3, 1));\n $this->assertEquals(10, $node->getLeft());\n $this->assertEquals(15, $node->getRight());\n $this->assertEquals(1, $node->getDepth());\n\n }", "public function end()\n {\n $node = $this->getNode();\n $children = $this->children();\n $parent = $this->getParent();\n \n # add child columns to this ColumnNode \n foreach($children as $child) {\n $node->addChild($child);\n }\n \n # appent ColumnNode to parent builder\n $parent->append($node);\n \n return $parent;\n \n }", "function moveToLastPosition();", "function appendChild(&$child) {\n \n // Set child's parentNode\n $child->parentNode = & $this;\n \n // Add child to list of childNodes\n $this->childNodes[] = & $child;\n \n // Is child of type node?\n if ($child->nodeType == XML_TYPE_NODE) {\n \n // Set child's previousSibling\n $child->previousSibling = & $this->lastChild;\n }\n \n // Is this node of type node?\n if ($this->nodeType != null && $this->nodeType == XML_TYPE_NODE) {\n \n // Set current lastChild's nextSibling to this child\n if (!is_null($this->lastChild)) {\n $this->lastChild->nextSibling = & $child;\n }\n \n // Now (re)set firstChild and lastChild\n $this->firstChild = & $this->childNodes[0];\n $this->lastChild = & $child;\n }\n \n }", "public function testGetLastChild()\n {\n $node = new Node('<b>Test 1</b><strong>Test 2</strong>');\n $child = $node->getLastChild();\n $this->assertInstanceOf(NodeContract::class, $child);\n $this->assertEquals('strong', $child->getName());\n }", "public function lastNode($xpath,$base=null)\n{\n$node_list=$this->nodes($xpath,$base);\nreturn ($node_list->length ? $node_list->item($node_list->length-1) : null);\n}", "public function end(): void\n {\n $this->current = $this->tail->prev();\n $this->offset = $this->count - 1;\n }", "public function getSiblingAfter() {\n\t\ttry {\n\t\t\tif ($this->hasSiblingAfter()) {\n\t\t\t\t$next\t= $this->node->nextSibling;\n\t\t\t\twhile ($next && (!$next instanceof DOMElement)) {\n\t\t\t\t\t$next\t= $next->nextSibling;\n\t\t\t\t}\n\t\t\t\t$className\t= get_class($this);\n\t\t\t\t$nextItem\t= new $className;\n\t\t\t\t$nextItem\t->setNode($next);\n\t\t\t\t$nextItem\t->setConfig($this->config);\n\t\t\t\tif ($this->outputFilter instanceof LBoxOutputFilter) {\n\t\t\t\t\t$ofClassName\t= get_class($this->outputFilter);\n\t\t\t\t\t$nextItem->setOutputFilter(new $ofClassName($nextItem));\n\t\t\t\t}\n\t\t\t\treturn $nextItem;\n\t\t\t}\n\t\t}\n\t\tcatch(Exception $e) {\n\t\t\tthrow $e;\n\t\t}\n\t}", "public function insertAsLastChildOf($node) {\n if ($this->isInTree()) {\n throw new Exception('Oject must not already be in the tree to be inserted. Use the moveToFirstChildOf() instead.');\n }\n\n $left = $node->getRightValue();\n\n // Update node properties\n $this->setLeftValue($left);\n $this->setRightValue($left + 1);\n $this->setLevelValue($node->getLevelValue() + 1);\n $scope = $node->getScopeValue();\n $this->setScopeValue($scope);\n\n /** @var \\Flywheel\\Model\\ActiveRecord $owner */\n $owner = $this->getOwner();\n if (!$owner->validate()) {//check validate before save\n return $owner;\n }\n // Keep the tree modification query for the save() transaction\n $this->nestedSetQueries []= array(\n 'callable' => array($this, 'makeRoomForLeaf'),\n 'arguments' => array($left, $scope)\n );\n\n $owner->save();\n $node->reload();\n\n return $this->_owner;\n }", "public function testMoveNodeAfterAnother_ExistingSubcategoryLast()\n {\n $category_repository = new CategoryRepository();\n // At first, the tree is like this:\n // 1. Phones [1]\n // 2. Samsung [2]\n // 3. Nokia [3]\n // 4. LG [4]\n // We'll move LG underneath Phones (not at the end, that uses target_srl, but at the top, which uses parent_srl)\n $category_repository->moveCategory(self::CATEGORY_LG, 0, self::CATEGORY_NOKIA);\n\n // We expect the following tree:\n // 1. Phones [1]\n // 2. Samsung [2]\n // 3. Nokia [3]\n // 4. LG [4]\n $tree = $category_repository->getCategoriesTree(107);\n\n $phones = array_shift($tree->children);\n $samsung = array_shift($phones->children);\n $nokia = array_shift($phones->children);\n $lg = array_shift($phones->children);\n\n $this->assertEquals(self::CATEGORY_PHONES, $phones->category->category_srl);\n $this->assertEquals(1, $phones->category->list_order);\n\n $this->assertEquals(self::CATEGORY_SAMSUNG, $samsung->category->category_srl);\n $this->assertEquals(2, $samsung->category->list_order);\n\n $this->assertEquals(self::CATEGORY_NOKIA, $nokia->category->category_srl);\n $this->assertEquals(3, $nokia->category->list_order);\n\n $this->assertEquals(self::CATEGORY_LG, $lg->category->category_srl);\n $this->assertEquals(4, $lg->category->list_order);\n }", "public function testMoveNodePlacementChildBottom()\n {\n $this->treeAdapter\n ->moveNode(22, 18, TreeAdapter::PLACEMENT_CHILD_BOTTOM);\n\n $this->assertCompareDataSet(array('tree_traversal'), __DIR__.'/_files/NestedSet/initDataSetWithIds.php');\n\n // test\n $this->treeAdapter\n ->moveNode(9, 12, TreeAdapter::PLACEMENT_CHILD_BOTTOM);\n\n $this->assertCompareDataSet(array('tree_traversal'), __DIR__.'/_files/NestedSet/testMoveNodePlacementChildBottom-1.php');\n\n // test\n $this->treeAdapter\n ->moveNode(10, 3, TreeAdapter::PLACEMENT_CHILD_BOTTOM);\n\n $this->assertCompareDataSet(array('tree_traversal'), __DIR__.'/_files/NestedSet/testMoveNodePlacementChildBottom-2.php');\n\n // test\n $this->treeAdapter\n ->moveNode(21, 12, TreeAdapter::PLACEMENT_CHILD_BOTTOM);\n\n $this->assertCompareDataSet(array('tree_traversal'), __DIR__.'/_files/NestedSet/testMoveNodePlacementChildBottom-3.php');\n }", "function moveLast()\n {\n $this->position = count($this->model->triples) - 1;\n }", "public function testInsertNodeAfter() {\n $parent = $this->nestedSet->getNode(new NodeKey(5, 1));\n $childNodeKey = new NodeKey(15, 1);\n\n $newNode = $this->nestedSet->addNodeAfter($parent, $childNodeKey);\n\n // Should be inserted below 6 with depth 4.\n $this->assertEquals(6, $newNode->getLeft());\n $this->assertEquals(7, $newNode->getRight());\n $this->assertEquals(3, $newNode->getDepth());\n\n // Parent node right should have incremented.\n $newParent = $this->nestedSet->getNode(new NodeKey(4, 1));\n $this->assertEquals(3, $newParent->getLeft());\n $this->assertEquals(10, $newParent->getRight());\n }", "public function testAdoptChildrenWithDecendents() {\n\n $oldParent = $this->nestedSet->getNode(new NodeKey(3, 1));\n $newParent = $this->nestedSet->getNode(new NodeKey(4, 1));\n\n $this->nestedSet->adoptChildren($oldParent, $newParent);\n\n // Check new parent has all children.\n $node = $this->nestedSet->getNode(new NodeKey(4, 1));\n $this->assertEquals(3, $node->getLeft());\n $this->assertEquals(18, $node->getRight());\n $this->assertEquals(2, $node->getDepth());\n\n // Check old parent has been updated.\n $node = $this->nestedSet->getNode(new NodeKey(3, 1));\n $this->assertEquals(20, $node->getLeft());\n $this->assertEquals(21, $node->getRight());\n $this->assertEquals(1, $node->getDepth());\n\n // Check first child is in correct postion.\n $node = $this->nestedSet->getNode(new NodeKey(5, 1));\n $this->assertEquals(4, $node->getLeft());\n $this->assertEquals(5, $node->getRight());\n $this->assertEquals(3, $node->getDepth());\n\n // Check last child is in correct postion.\n $node = $this->nestedSet->getNode(new NodeKey(9, 1));\n $this->assertEquals(16, $node->getLeft());\n $this->assertEquals(17, $node->getRight());\n $this->assertEquals(3, $node->getDepth());\n }", "function append_node_last($lft,$data){\n\t\t$node = $this->get_node($lft);\n\t\tif(!$node)\n\t\t\treturn false;\n\t\treturn $this->insert_node($node[$this->right_col],$data);\n\t}" ]
[ "0.739441", "0.6226479", "0.5996221", "0.5906795", "0.58830357", "0.5841183", "0.5815755", "0.58148164", "0.57845694", "0.5780525", "0.5737704", "0.5734962", "0.5692964", "0.56853104", "0.56762195", "0.562115", "0.56062275", "0.55586165", "0.55402654", "0.5505708", "0.54996145", "0.54802537", "0.5472775", "0.54390424", "0.54202753", "0.5379692", "0.5324669", "0.5290241", "0.5284356", "0.5273456" ]
0.65367013
1
/ setAsNextSibblingOf set current node as the next sibbling of source node
public function setAsNextSibblingOf($contextNodeOrSourceNodeId){ $this->_nodePositionChangeType = 'nextSibbling'; $this->_nodePositionChangeContext = $contextNodeOrSourceNodeId; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function next()\n {\n $this->key = $this->key + 1;\n $this->current = $this->current + 1;\n }", "public function next()\n {\n foreach($this->current->subnodes() as $subnode)\n {\n $this->pushNodeForIteration($subnode);\n }\n\n $this->popNodeForIteration();\n $this->k++;\n }", "public function setNext(?Bucket $next): void;", "public function activateNextSet()\n\t{\n\t\t// Get all sets with the oldest on top\n\t\t$sets = $this->getAllSets(CAutoUpdate::ORDERBY_LASTRUN);\n\n\t\t// Check, if there is at least one set\n\t\tif (count($sets) > 0)\n\t\t{\n\t\t\t$nextID = array_shift(array_keys($sets));\n\t\t\t$this->activateSet($nextID);\n\t\t\treturn($this->getActiveSetID());\n\t\t}\n\t\telse\n\t\t\treturn(NULL);\n\t}", "public final function set_next($next) {\n\n // TODO: Check next hasn't been set already\n\n // TODO: Avoid circular dependencies\n if ($this->is_circular_reference($next)) {\n $a = new stdclass();\n $a->alreadyinchain = get_class($this);\n $a->main = get_class($next);\n throw new base_logger_exception('logger_circular_reference', $a);\n }\n\n $this->next = $next;\n }", "public function next()\n {\n $this->_currentPosition++;\n $this->_currentNode = $this->_currentNode->next;\n }", "public function next()\n {\n $this->idx += 1;\n }", "function nstMoveToNextSibling ($src, $dst)\n\t/* moves the node '$src' and all its children (subtree) that it is the next sibling of '$dst'. */\n\t{\n\t\t// 更新parent_id\n\t\t// var_dump($src, $dst);\n\t\t$this->db->query('update ' .$this->thandle['table'].' set parent_id=' . $dst['parent_id'].' where id=' . $src['id']);\n\t return $this->_moveSubtree ($src, $dst['r']+1);\n\t}", "public function next()\n {\n $keys = array_keys($this->items);\n $index = array_search($this->currentKey, $keys);\n\n $index++;\n\n $this->currentKey = array_key_exists($index, $keys) ? $keys[$index] : null;\n }", "protected function setNext()\n {\n return ++$this->set_index<$this->set_count;\n }", "public function next() {\n\t\t$this->getNext();\n\t}", "public function next()\n {\n $method = $this->getMethodForNext();\n $this->pointed = call_user_func([$this->pointed, $method]);\n }", "public function next(): void\n {\n if ($this->current instanceof TerminalBucket) {\n return;\n }\n\n $this->current = $this->current->next();\n $this->offset++;\n }", "public function next()\n {\n $this->__iteratorCurrentIndex += 1;\n }", "public function next()\n {\n ++$this->position;\n $this->current = $this->valid = null;\n }", "public function setNextPlayer()\n {\n $this->currentPlayerIndex = $this->findNextPlayer();\n }", "public function next()\n {\n\n $this->_currentIndex++;\n }", "public function next(): void\n {\n next($this->items);\n }", "public function next() {\n next($this->items);\n }", "function next() {\n $this->keys = array_keys($this->data);\n ++$this->index;\n }", "public function next()\n {\n $this->currIndex++;\n }", "public function shiftSiblingsForRestore();", "function next()\r\n {\r\n $this->current++;\r\n }", "public function next()\n {\n ++$this->index;\n }", "public function next() {\n next($this->_items);\n }", "public function next(): void;", "public function setFirstIterator () {}", "public function next()\n {\n $this->idx++;\n }", "public function next ()\n {\n if ( $this->end > $this->start )\n {\n $this->current += $this->step;\n $result = $this->current <= $this->end;\n }\n else\n {\n $this->current -= $this->step;\n $result = $this->current >= $this->end;\n }\n\n if ( !$result )\n {\n $this->current = NULL;\n $this->key = NULL;\n }\n else\n {\n $this->offset++;\n }\n }", "public function next() {\n $this->generator->next();\n }" ]
[ "0.5667862", "0.5545739", "0.55033433", "0.520027", "0.5187374", "0.5171169", "0.5081988", "0.5070398", "0.5067639", "0.5015949", "0.49934807", "0.49697492", "0.49225318", "0.48934153", "0.4886981", "0.48613954", "0.48452023", "0.48359597", "0.48312488", "0.4828825", "0.48275834", "0.48102906", "0.47879314", "0.47819546", "0.4765679", "0.47544977", "0.47540426", "0.47497323", "0.47467774", "0.47083408" ]
0.62407213
0
/ setAsPreviousSibblingOf set current node as the previous sibbling of source node
public function setAsPreviousSibblingOf($contextNodeOrSourceNodeId){ $this->_nodePositionChangeType = 'previousSibbling'; $this->_nodePositionChangeContext = $contextNodeOrSourceNodeId; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function shiftSiblingsForRestore();", "function SetPrevious($item, $previous);", "public function linkBackList() \n {\n \n $numb = 0;\n $prevnode = null;\n $currentNode = $this->head;\n \n while($currentNode !== null)\n {\n $currentNode->prevNode = $prevnode;\n $currentNode->nodeNum = ++$numb;\n $prevnode = $currentNode; \n $currentNode = $currentNode->nextNode;\n \n }\n $this->totNode = $numb;\n }", "public function setPrev(?Bucket $prev): void;", "public function prev(): void\n {\n if ($this->current instanceof TerminalBucket) {\n return;\n }\n\n $this->current = $this->current->prev();\n $this->offset--;\n }", "public function prev(): void\n {\n if (!$this->valid()) {\n $this->end();\n\n return;\n }\n\n $this->seek((int) $this->key() - 1);\n }", "public function testMoveSubTreeBefore() {\n\n $target = $this->nestedSet->getNode(new NodeKey(4, 1));\n $nodeKey = new NodeKey(7, 1);\n $node = $this->nestedSet->getNode($nodeKey);\n\n $this->nestedSet->moveSubTreeBefore($target, $node);\n $this->assertNodeMovedBefore();\n\n $node = $this->nestedSet->getNode(new NodeKey(7, 1));\n // Check node is in new position.\n $node = $this->nestedSet->getNode($nodeKey);\n\n $this->nestedSet->moveSubTreeBefore($target, $node);\n $this->assertNodeMovedBefore();\n }", "public function setAsNextSibblingOf($contextNodeOrSourceNodeId){\n $this->_nodePositionChangeType = 'nextSibbling';\n $this->_nodePositionChangeContext = $contextNodeOrSourceNodeId;\n return $this;\n }", "public function previous();", "public function resetPrey() {\n reset($this->nodes);\n return current($this->nodes);\n }", "public function setNewPreviousSibling($val) {\n $this->_new_previous_sibling = $val;\n }", "public function previousSiblings():NodeList;", "function prev (array &$array) {}", "public function moveToPrevSiblingOf($node) {\n if (!$this->isInTree()) {\n throw new Exception('Object must be already in the tree to be moved. Use the insertAsPrevSiblingOf() instead.');\n }\n if ($node->isRoot()) {\n throw new Exception('Cannot move to previous sibling of a root node.');\n }\n if ($node->isDescendantOf($this->getOwner())) {\n throw new Exception('Cannot move a node as sibling of one of its subtree nodes.');\n }\n\n /** @var \\Flywheel\\Model\\ActiveRecord $owner */\n $owner = $this->getOwner();\n if (!$owner->validate()) {//check validate before save\n return $owner;\n }\n\n $owner->beforeSave();\n $this->_moveSubtreeTo($node->getLeftValue(), $node->getLevelValue() - $this->getLevelValue(), $node->getScopeValue());\n $owner->afterSave();\n $owner->reload();\n $node->reload();\n\n return $owner;\n }", "protected function setRewind()\n {\n $this->set_index = 0;\n }", "public function getNewPreviousSibling() {\n return $this->_new_previous_sibling;\n }", "public function restoring($node)\n {\n $node->shiftSiblingsForRestore();\n }", "public function rewind()\n {\n $this->current = $this->minimum;\n }", "private function set_current_node($node)\n {\n if ($this->current_node === $node) {\n return;\n }\n $this->current_node = $node;\n if (empty($node)) {\n $this->current_sources = null;\n } elseif (!empty($this->args['should_locate_sources'])) {\n $this->current_sources = \\Google\\Web_Stories_Dependencies\\AMP_Validation_Manager::locate_sources($node);\n }\n }", "public function setAsCurrent();", "public function previous($value) {\n return $this->setProperty('previous', $value);\n }", "function setKeepWithPrevious ($a_keep)\n\t{\n\t\t$this->keep_with_previous = $a_keep;\n\t}", "public function prev()\n {\n $this->store->prev();\n }", "public function getPreviousState();", "public function getPreviousState();", "public function prev(): ?Bucket;", "public function previousNext($value) {\n return $this->setProperty('previousNext', $value);\n }", "function previous_references_set_previous($field_key,$previous){\n\t\t//does cache exist?\n\t\tif ($cache = previous_references_get_cache()){\n\t\t\t//nothing\n\t\t}else{\n\t\t\t//no cache to set to an array\n\t\t\t$cache = array();\n\t\t}\n\t\t//add/replace field data in cache\n\t\t$cache[$field_key] = $previous;\n\t\t//save cache\n\t\tprevious_references_set_cache($cache);\n\t}", "function previous()\n {\n if ($this->position > 0) {\n $this->position--;\n return $this->model->triples[$this->position];\n } else {\n return null;\n }\n }", "public function activateNextSet()\n\t{\n\t\t// Get all sets with the oldest on top\n\t\t$sets = $this->getAllSets(CAutoUpdate::ORDERBY_LASTRUN);\n\n\t\t// Check, if there is at least one set\n\t\tif (count($sets) > 0)\n\t\t{\n\t\t\t$nextID = array_shift(array_keys($sets));\n\t\t\t$this->activateSet($nextID);\n\t\t\treturn($this->getActiveSetID());\n\t\t}\n\t\telse\n\t\t\treturn(NULL);\n\t}" ]
[ "0.6106212", "0.5939599", "0.5906939", "0.58157945", "0.58040386", "0.5460729", "0.5336706", "0.53314614", "0.52439976", "0.5218348", "0.5183106", "0.5134101", "0.510288", "0.50765556", "0.50602233", "0.5050218", "0.5048399", "0.5035101", "0.5024572", "0.50065255", "0.49855345", "0.49823523", "0.49678135", "0.493793", "0.493793", "0.49278623", "0.49168047", "0.491558", "0.49081182", "0.4889301" ]
0.6588878
0
/ _exportPositionChangeInfo retrieves information regarding whether or not position has change and needs to be updated in the persistance layer
public function _exportPositionChangeInfo(){ if($this->_nodePositionChangeType === null || $this->_nodePositionChangeContext === null){ return null; } return array( 'type' => $this->_nodePositionChangeType, 'context' => $this->_nodePositionChangeContext ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function isPositionChangeAvailable()\n {\n return $this->getXml()->getElementsByTagName('PositionChange')->length > 0;\n }", "public function notification_position_info() {\n\t\n\t\tif($this->input->post('type')=='notification_position_info') {\n\t\t\n\t\t/* Define return | here result is used to return user data and error for error message */\n\t\t$Return = array('result'=>'', 'error'=>'');\n\t\t\n\t\tif($this->input->post('notification_position')==='') {\n \t$Return['error'] = \"The notification position field is required.\";\n\t\t}\n\t\t\n\t\tif($Return['error']!=''){\n\t\t\t$hrm_f->output($Return);\n\t\t}\n\t\t$id = 1;\n\t\t\t\n\t\t$data = array(\n\t\t'notification_position' => $this->input->post('notification_position'),\n\t\t'notification_close_btn' => $this->input->post('notification_close_btn'),\n\t\t'notification_bar' => $this->input->post('notification_bar')\n\t\t);\n\t\t\n\t\t$result = $this->Graphene_model->update_setting_info_record($data,$id);\t\t\n\t\t\n\t\tif ($result == TRUE) {\n\t\t\t$Return['result'] = 'Notification Position Configuration updated.';\n\t\t} else {\n\t\t\t$Return['error'] = 'Bug. Something went wrong, please try again.';\n\t\t}\n\t\t$this->output($Return);\n\t\texit;\n\t\t}\n\t}", "public function savePosInfo($params = [], $headers = [])\n {\n $table = 'trn_pos_connect';\n\n $conditions = [\n 'company_code' => $params['company_code'] ?? $headers['company_code'],\n 'store_no' => $params['store_no'] ?? $headers['store_no']\n ];\n $time = date('YmdHis');\n $data = [\n 'pos_company_code' => $params['pos_company_code'],\n 'pos_company_name' => $params['pos_company_name'],\n 'pos_store_code' => $params['pos_store_code'],\n 'pos_store_name' => $params['pos_store_name'],\n 'business_date' => $params['business_date'] ?: date('Ymd'),\n 'business_time' => $params['business_time'] ?: date('His'),\n 'ip_address' => $params['ip_address'] ?: '',\n 'app_version' => $params['app_version'] ?: '',\n 'status' => $params['status'] ?: DEFAULT_CONNECT_POS_STATUS,\n 'device_id' => $params['device_id'] ?: '',\n 'create_time' => $params['create_time'] ?? $time,\n 'create_user' => $params['create_user'] ?? DB_USER_VALUE,\n 'update_time' => $params['update_time'] ?? $time,\n 'update_user' => $params['update_user'] ?? DB_USER_VALUE,\n 'delete_flg' => $params['delete_flg'] ?? UNDELETE_FLAG_VALUE,\n ];\n\n $userId = (int)($params['user_id'] ?? $headers['user_id']);\n if (!empty($userId)) {\n $data['user_id'] = $userId;\n }\n\n // clear the old information\n $this->deleteBy($conditions, $table);\n\n // insert the new information\n return $this->insert(array_merge($conditions, $data), $table);\n }", "private function _savePosition($pnPositionPk = 0)\n {\n $lang = getValue('language');\n\n if(!assert('is_integer($pnPositionPk)'))\n return array('error' => 'Missing parameters to save the position.');\n\n //update is tricky, need tabs in the form and manage multi lingual descriptions\n if(!empty($pnPositionPk))\n {\n $oDbResult = $this->_getModel()->getByPk($pnPositionPk, 'sl_position');\n $bread = $oDbResult->readFirst();\n if(!$bread)\n return array('error' => 'Could not find the position.');\n\n $asPosition = $oDbResult->getData();\n }\n else\n $asPosition = array();\n\n $oLogin = CDependency::getCpLogin();\n\n\n //field for sl_position table\n $asPosition['companyfk'] = (int)getValue('companyfk');\n if(empty($asPosition['companyfk']))\n return array('error' => __LINE__.' - You must select a company.');\n\n $asPosition['industryfk'] = (int)getValue('industryfk');\n if(empty($asPosition['industryfk']))\n return array('error' => __LINE__.' - You must select an industry.');\n\n $asPosition['location'] = (int)getValue('location');\n if(empty($asPosition['location']))\n return array('error' => __LINE__.' - You must select a location.');\n\n $asPosition['age_from'] = (int)getValue('age_from');\n $asPosition['age_to'] = (int)getValue('age_to');\n $asPosition['salary_from'] = (int)getValue('salary_from');\n $asPosition['salary_to'] = (int)getValue('salary_to');\n $asPosition['salary_to'] = (int)getValue('salary_to');\n $asPosition['salary_to'] = (int)getValue('salary_to');\n $asPosition['lvl_japanese'] = (int)getValue('japanese');\n $asPosition['lvl_english'] = (int)getValue('english');\n\n if(empty($pnPositionPk))\n {\n $asPosition['date_created'] = date('Y-m-d H:i:s');\n $asPosition['created_by'] = $oLogin->getUserPk();\n $asPosition['status'] = 1;\n }\n\n\n //field for sl_position_detail table\n $asPosition['language'] = filter_var(getValue('language'), FILTER_SANITIZE_STRING);\n //$asPosition['language'] = getValue('language');\n $asPosition['title'] = filter_var(getValue('title'), FILTER_SANITIZE_STRING);\n if(empty($asPosition['title']))\n return array('error' => __LINE__.' - You must enter title.');\n\n $asPosition['career_level'] = filter_var(getValue('career_level'), FILTER_SANITIZE_STRING);\n $asPosition['description'] = filter_var(getValue('description'), FILTER_SANITIZE_STRING);\n $asPosition['requirements'] = filter_var(getValue('requirements'), FILTER_SANITIZE_STRING);\n $asPosition['responsabilities'] = filter_var(getValue('responsabilities'), FILTER_SANITIZE_STRING);\n $asPosition['content_html'] = filter_var(getValue('content_html'), FILTER_SANITIZE_STRING);\n $asPosition['is_public'] = (int)getValue('is_public');\n $asPosition['display_age'] = (int)getValue('display_age');\n $asPosition['display_salary'] = (int)getValue('display_salary');\n $asPosition['display_date'] = (int)getValue('display_date');\n $asPosition['moderation'] = (int)getValue('moderation');\n\n $asPosition['contact_number'] = getValue('contact_number');\n $asPosition['email'] = getValue('email');\n\n if(empty($pnPositionPk))\n {\n $nPositionPk = $this->_getModel()->add($asPosition, 'sl_position');\n if(empty($nPositionPk))\n return array('error' => __LINE__.' - Error while saving the position.');\n\n $asPosition['positionfk'] = $nPositionPk;\n\n $nPositionPk = $this->_getModel()->add($asPosition, 'sl_position_detail');\n if(empty($nPositionPk))\n return array('error' => __LINE__.' - Error while saving the position.');\n\n $oLogin = CDependency::getCpLogin();\n $user_id = $oLogin->getuserPk();\n\n $newOwner = $user_id;\n $company_id = $asPosition['companyfk'];\n insertNewOwner($newOwner,$user_id,$company_id);\n\n }\n else\n {\n $asPosition['sl_positionpk'] = (int)$asPosition['sl_positionpk'];\n $asPosition['created_by'] = (int)$asPosition['created_by'];\n $asPosition['status'] = (int)$asPosition['status'];\n $bUpdate = $this->_getModel()->update($asPosition, 'sl_position', 'sl_positionpk = '.$pnPositionPk);\n if(!$bUpdate)\n return array('error' => __LINE__.' - Error while saving the position.');\n\n $asPosition['positionfk'] = $pnPositionPk;\n\n $nPositionPk = $this->_getModel()->update($asPosition, 'sl_position_detail', 'positionfk = '.$pnPositionPk);\n if(empty($nPositionPk))\n return array('error' => __LINE__.' - Error while saving the position.');\n\n }\n $_SESSION['savedPositionTitle'] = $asPosition['positionfk'];\n//$GLOBALS['redis']->set('savedPositionTitle', $asPosition['positionfk']);\n//setValue('title', $asPosition['positionfk']);\n\n\n $sURL = $this->_oPage->getAjaxUrl('555-005', CONST_ACTION_LIST, CONST_POSITION_TYPE_JD);\n return array('notice' => 'Position successfully saved.', 'action' => '\n goPopup.removeLastByType(\\'layer\\');\n var oConf = goPopup.getConfig();\n oConf.height = 725; oConf.width = 1080;\n goPopup.setLayerFromAjax(oConf, \\''.$sURL.'\\');\n ');\n }", "public function savePosition()\n {\n $this->savedPosition = array(\n 'line_no' => $this->mainParser->getTemplateLineNum(),\n 'ident_no' => $this->tokenIndex\n );\n }", "public function save()\n {\n $position = new Position();\n\n $position->name = $this->pName;\n $position->description = $this->pDescription;\n $position->pos_x = $this->pX;\n $position->pos_y = $this->pY;\n $position->plane = $this->pPlane;\n\n if ($position->save()) {\n $this->pPosition = $position->id;\n $this->status = self::STATUS_SUCCESS;\n return true;\n }\n $this->status = self::STATUS_ERROR;\n return false;\n }", "function export_manager__update($old_version_info, $new_version_info)\n{\n global $g_table_prefix;\n\n $old_version_date = date(\"Ymd\", ft_convert_datetime_to_timestamp($old_version_info[\"module_date\"]));\n\n if ($old_version_date < 20090908)\n {\n @mysql_query(\"ALTER TABLE {$g_table_prefix}module_export_groups TYPE=MyISAM\");\n @mysql_query(\"ALTER TABLE {$g_table_prefix}module_export_groups ENGINE=MyISAM\");\n @mysql_query(\"ALTER TABLE {$g_table_prefix}module_export_group_clients TYPE=MyISAM\");\n @mysql_query(\"ALTER TABLE {$g_table_prefix}module_export_group_clients ENGINE=MyISAM\");\n @mysql_query(\"ALTER TABLE {$g_table_prefix}module_export_types TYPE=MyISAM\");\n @mysql_query(\"ALTER TABLE {$g_table_prefix}module_export_types ENGINE=MyISAM\");\n }\n\n // added for 2.0.8 - it confirms that the previous update (which failed on some system) was made properly\n if ($old_version_date < 20111024)\n {\n $query = mysql_query(\"SHOW COLUMNS FROM {$g_table_prefix}module_export_groups\");\n $cols = array();\n while ($row = mysql_fetch_assoc($query))\n {\n $cols[] = $row[\"Field\"];\n }\n\n if (!in_array(\"form_view_mapping\", $cols))\n {\n $query = mysql_query(\"\n ALTER TABLE {$g_table_prefix}module_export_groups\n ADD form_view_mapping ENUM('all', 'except', 'only') NOT NULL\n DEFAULT 'all' AFTER access_type\n \");\n if (!$query)\n {\n \treturn array(false, \"We couldn't add the form_view_mapping database field. Please report this problem in the forums.\");\n }\n }\n if (!in_array(\"forms_and_views\", $cols))\n {\n $query = mysql_query(\"\n ALTER TABLE {$g_table_prefix}module_export_groups\n ADD forms_and_views MEDIUMTEXT NULL AFTER form_view_mapping\n \");\n if (!$query)\n {\n \treturn array(false, \"We couldn't add the forms_and_views database field. Please report this problem in the forums.\");\n }\n }\n }\n\n return array(true, \"\");\n}", "public static function parse_export_info()\n {\n $info = (object) array('major_version' => (int) self::$xml->dict->integer[0],\n 'minor_version' => (int) self::$xml->dict->integer[1],\n 'date' => (string) self::$xml->dict->date,\n 'application_version' => (string) self::$xml->dict->string[0],\n 'features' => (int) self::$xml->dict->integer[2],\n 'music_folder' => (string) self::$xml->dict->string[1],\n 'library_persistent_id' => (string) self::$xml->dict->string[2]);\n\n return $info;\n }", "public function savePositions()\r\n {\r\n // session token\r\n $this->app->session->checkToken() or jexit('Invalid Token');\r\n\r\n $defaultRedirect = $this->app->jbrouter->admin(array('task' => 'index'));\r\n if (!$this->_jbrequest->isPost()) {\r\n $this->setRedirect($defaultRedirect);\r\n }\r\n\r\n $positions = $this->_jbrequest->getArray('positions');\r\n $group = $this->_jbrequest->get('group');\r\n $layout = $this->_jbrequest->get('layout');\r\n $redirect = $this->_jbrequest->get('redirect', $defaultRedirect);\r\n\r\n $this->_position->save($group, $positions, $layout);\r\n\r\n $this->setRedirect($redirect, JText::_('JBZOO_ADMIN_MESSAGE_SAVED'));\r\n }", "protected function saveOrderInfo()\r\n\t{\r\n\t $order = $this->_order;\r\n\t\r\n\t JTable::addIncludePath( JPATH_ADMINISTRATOR.'/components/com_tienda/tables' );\r\n\t $row = JTable::getInstance('OrderInfo', 'TiendaTable');\r\n\t $row->order_id = $order->order_id;\r\n\t $row->user_email = @$this->_values['email_address'];\r\n\t $row->bind( $this->_orderinfoBillingAddressArray );\r\n\t $row->bind( $this->_orderinfoShippingAddressArray );\r\n\t $row->user_id = $order->user_id;\r\n\t\r\n\t // Get Addresses\r\n\t $shipping_address = $order->getShippingAddress();\r\n\t $billing_address = $order->getBillingAddress();\r\n\t\r\n\t // set zones and countries\r\n\t $row->billing_zone_id = $billing_address->zone_id;\r\n\t $row->billing_country_id = $billing_address->country_id;\r\n\t $row->shipping_zone_id = $shipping_address->zone_id;\r\n\t $row->shipping_country_id = $shipping_address->country_id;\r\n\t\r\n\t if (!$row->save())\r\n\t {\r\n\t $this->setError( $row->getError() );\r\n\t return false;\r\n\t }\r\n\t\r\n\t $order->orderinfo = $row;\r\n\t return true;\r\n\t}", "function show_olc_pcachepos()\n\t{\n\t\t$this->show_enum(\n\t\t\tarray(\n\t\t\t\tarray(\"value\"=>\"tail\",\"display_name\"=>gettext(\"Before Other Overlay Response Callbacks\")),\n\t\t\t\tarray(\"value\"=>\"head\",\"display_name\"=>gettext(\"After Other Overlay Response Callbacks\"))\n\t\t\t\t)\n\t\t\t);\n\t}", "function initializePositionSaving() {\n \t\t$this->stored=unserialize($this->user->getKey('ses',$this->sessionVar));\n\t\t$PM = explode('_',t3lib_div::_GP('PM'));\t// 0: mount key, 1: set/clear boolean, 2: item ID (cannot contain \"_\"), 3: treeName\n\t\tif (is_array($PM)) {\n\t\t\tif (count($PM)==4 && $PM[3]==$this->treeName)\t{\n\t\t\t\tif (isset($this->MOUNTS[$PM[0]]))\t{\n\t\t\t\t\tif ($PM[1])\t{\t// set\n\t\t\t\t\t\t$this->stored[$PM[0]][$PM[2]]=1;\n\t\t\t\t\t\t$this->savePosition();\n\t\t\t\t\t} else {\t// clear\n\t\t\t\t\t\tunset($this->stored[$PM[0]][$PM[2]]);\n\t\t\t\t\t\t$this->savePosition();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n \t}", "public function historyPos()\n {\n $action = $this->oldModel->getId() ? 'Atualizar' : 'Inserir';\n $diff = \\Db\\Model\\History::diffModel($this, $this->oldModel);\n $this->historyReg($this::getName(), $this->getId(), $action, $diff);\n }", "function moveToHistory($position) {\r\n global $db;\r\n $queryupdate = \"Update FeaturingPerson Set `Position` = 10, `DateAdded` = '\".gmdate(\"Y-m-j H:i:s\", time() + 3600*12).\"' WHERE `Position` = \".$position;\r\n $resultupdate = $db->query($queryupdate);\r\n return $resultupdate === TRUE;\r\n}", "public function savePricePositions()\r\n {\r\n // session token\r\n $this->app->session->checkToken() or jexit('Invalid Token');\r\n\r\n $defaultRedirect = $this->app->jbrouter->admin(array('task' => 'index'));\r\n if (!$this->_jbrequest->isPost()) {\r\n $this->setRedirect($defaultRedirect);\r\n }\r\n\r\n $this->app->jbtables->checkSku(true);\r\n\r\n $positions = $this->_jbrequest->getArray('positions');\r\n $group = $this->_jbrequest->get('group');\r\n $layout = $this->_jbrequest->get('layout');\r\n $element = $this->_jbrequest->get('element');\r\n $redirect = $this->_jbrequest->get('redirect', $defaultRedirect);\r\n\r\n $this->_position->savePrice($group, $positions, $element, $layout);\r\n\r\n $this->setRedirect($redirect, JText::_('JBZOO_ADMIN_MESSAGE_SAVED'));\r\n }", "function save() {\r\n $app = JFactory::getApplication();\r\n $data =& $this->getData();\r\n $row =& $this->getTable('Member_position', 'JResearch');\r\n\r\n if (!$row->save($data))\r\n {\r\n $this->setError($row->getError());\r\n return false;\r\n }\r\n\r\n $app->setUserState('com_jresearch.edit.member_position.data', $data);\r\n\r\n return true;\r\n }", "public function updated(Position $position)\n {\n //\n }", "public function actionUpdatePosition()\n {\n $request = Yii::$app->request->get();\n $group_id = $request['group_id'];\n $group_key = GroupKey::find()->where(['group_id' => $group_id])->all();\n\n // getting all the needed keys of the group\n $i=0;\n for($i=0; $i < count($group_key); $i++){\n $key[$i] = KeyPosition::find()->where(['key_id' => $group_key[$i]['key_id']])->orderBy('date desc')->one();\n }\n // counting elements for top\n $i=0;\n $included = 0;\n for($i=0; $i < count($key); $i++){\n if($key[$i]['position'] <= 10)\n $included++;\n }\n // percentage counted\n $top = $included / count($key) * 100;\n\n $date = date('Ymd');\n $id = md5($group_id . $date);\n $exists = GroupVisibility::find()->where(['id' => $id])->exists();\n\n if($exists) {\n $model = $this->findModel($id);\n $model->visibility = round($top);\n $model->update($model->id);\n } else {\n $model = new GroupVisibility();\n $model->group_id = $group_id;\n $model->date = $date;\n $model->id = $id;\n $model->visibility = round($top);\n $model->save();\n }\n\n return $this->redirect(Yii::$app->request->referrer);\n }", "function hook_system_info_alter(&$info, $file, $type) {\n // Only fill this in if the .info file does not define a 'datestamp'.\n if (empty($info['datestamp'])) {\n $info['datestamp'] = filemtime($file->filename);\n }\n}", "public static function onPositionModify(OpenPosition $position, $prevTP, $prevSL) {\n if (!is_null($prevTP) && !is_float($prevTP)) throw new IllegalTypeException('Illegal type of parameter $prevTP: '.getType($prevSL));\n if (!is_null($prevSL) && !is_float($prevSL)) throw new IllegalTypeException('Illegal type of parameter $prevSL: '.getType($prevSL));\n\n $modification = $tpMsg = $slMsg = null;\n if (($current=$position->getTakeProfit()) != $prevTP) $modification .= ($tpMsg=' TP: '.($prevTP ? $prevTP.' => ':'').($current ? $current:'-'));\n if (($current=$position->getStopLoss()) != $prevSL) $modification .= ($slMsg=' SL: '.($prevSL ? $prevSL.' => ':'').($current ? $current:'-'));\n if (!$modification) throw new RuntimeException('No modification found in OpenPosition '.$position);\n\n $signal = $position->getSignal();\n\n // Ausgabe in Console\n $format = \"%-4s %4.2F %s @ %-8s\";\n $type = $position->getType();\n $lots = $position->getLots();\n $symbol = $position->getSymbol();\n $price = $position->getOpenPrice();\n $msg = sprintf($format, ucFirst($type), $lots, $symbol, $price);\n echoPre(date('Y-m-d H:i:s', time()).': modify '.$msg.$modification);\n\n // Benachrichtigung per E-Mail\n $mailMsg = $signal->getName().': modify '.$msg.$modification;\n try {\n foreach (XTrade::getMailSignalReceivers() as $receiver) {\n mail($receiver, $subject=$mailMsg, $mailMsg);\n }\n }\n catch (\\Exception $ex) { Logger::log($ex, L_ERROR); }\n\n\n // Benachrichtigung per SMS\n if (false) { // fuer Limitaenderungen vorerst deaktiviert\n try {\n $smsMsg = $signal->getName().': modified '.str_replace(' ', ' ', $msg).\"\\n\"\n .$modification .\"\\n\"\n .date('(H:i:s)', time()); // XTrade::fxtDate(time(), '(H:i:s)')\n foreach (XTrade::getSmsSignalReceivers() as $receiver) {\n XTrade::sendSms($receiver, $smsMsg);\n }\n }\n catch (\\Exception $ex) { Logger::log($ex, L_ERROR); }\n }\n }", "public function update()\n {\n $position = Position::findById($this->pPosition);\n\n if ($position) {\n $position->name = $this->pName;\n $position->description = $this->pDescription;\n if ($position->save()) {\n $this->status = self::STATUS_SUCCESS;\n return true;\n }\n }\n $this->status = self::STATUS_ERROR;\n return false;\n }", "public function changePosition ($change)\n {\n $this->position+=(int)$change ;\n }", "public function getChanged()\n {\n return 0;\n }", "public function hasChanges()\n {\n return $this->saveChanges;\n }", "protected function getPositionData(): array\n {\n return [\n 'productLinks' => array_replace_recursive(\n $this->existingProducts,\n [\n 'wrong-simple' => ['position' => 2],\n 'simple-249' => ['position' => 3],\n 'simple-156' => ['position' => 1],\n ]\n ),\n 'expectedProductLinks' => [\n 'simple-156',\n 'wrong-simple',\n 'simple-249',\n ],\n ];\n }", "private function changeInfos(): void\n {\n foreach($this->groups as $groups) {\n $this->infos[\"totalGroups\"] += sizeof($groups);\n\n foreach($groups as $group) {\n if($group[\"totalPrice\"] < $this->infos[\"cheapestPrice\"]) {\n $this->infos[\"cheapestPrice\"] = $group[\"totalPrice\"];\n $this->infos[\"cheapestGroup\"] = $group[\"uniqueId\"];\n }\n\n if(!sizeof($group[\"outbound\"]) || !sizeof($group[\"inbound\"])) {\n $this->infos[\"totalFlights\"] += 1;\n }\n }\n }\n }", "private function update_event_info_status()\n {\n $log_data['runtime_jobname'] = __FUNCTION__;\n $log_data['start'] = $this->get_date();\n\n echo \"** UPDATE EVENT INFO STATUS\\n\";\n\n $query_params = [\n \"where\" => [\"edition_info_status\" => 16, \"edition_date <= \" => date(\"Y-m-d H:i:s\", strtotime(\"yesterday\"))],\n ];\n // wts($query_params);\n $edition_list_to_update = $this->edition_model->get_edition_list($query_params);\n if ($edition_list_to_update) {\n foreach ($edition_list_to_update as $edition_id => $edition) {\n $this->edition_model->update_field($edition_id, \"edition_info_status\", 10);\n echo \"Updated \" . $edition['edition_name'] . \" to pending results status\\n\\r\";\n }\n $log_data['runtime_count'] = count($edition_list_to_update);\n } else {\n echo \"No editions with info status verified in the past\\n\\r\";\n $log_data['runtime_count'] = 0;\n }\n\n // LOG RUNTIME DATA\n $log_data['end'] = $this->get_date();\n $this->log_runtime($log_data);\n }", "public function updateinfo()\n\t{\n\t\t$updateModel = JModelLegacy::getInstance('Updates', 'CmcModel');\n\t\t$updateInfo = (object) $updateModel->getUpdates(true);\n\t\t$extensionName = 'CMC';\n\n\t\t$result = '';\n\n\t\tif ($updateInfo->hasUpdate)\n\t\t{\n\t\t\t$strings = array(\n\t\t\t\t'header' => JText::sprintf('LIB_COMPOJOOM_DASHBOARD_MSG_UPDATEFOUND', $extensionName, $updateInfo->version),\n\t\t\t\t'button' => JText::sprintf('LIB_COMPOJOOM_DASHBOARD_MSG_UPDATENOW', $updateInfo->version),\n\t\t\t\t'infourl' => $updateInfo->infoURL,\n\t\t\t\t'infolbl' => JText::_('LIB_COMPOJOOM_DASHBOARD_MSG_MOREINFO'),\n\t\t\t);\n\n\t\t\t$result = <<<ENDRESULT\n\t<div class=\"alert alert-warning\">\n\t\t<h3>\n\t\t\t<span class=\"fa fa-warning\"></span>\n\t\t\t{$strings['header']}\n\t\t</h3>\n\t\t<p>\n\t\t\t<a href=\"index.php?option=com_installer&view=update\" class=\"btn btn-primary\">\n\t\t\t\t{$strings['button']}\n\t\t\t</a>\n\t\t\t<a href=\"{$strings['infourl']}\" target=\"_blank\" class=\"btn btn-small btn-info\">\n\t\t\t\t{$strings['infolbl']}\n\t\t\t</a>\n\t\t</p>\n\t</div>\nENDRESULT;\n\t\t}\n\n\t\techo '###' . $result . '###';\n\n\t\t// Cut the execution short\n\t\tJFactory::getApplication()->close();\n\t}", "function get_original_info() {\n return $this->original_info;\n }", "function fnGenePosToGenomePos($sGeneName, $nPos) {\r\n\tglobal $oGTF;\r\n\r\n\tif (!array_key_exists($sGeneName , $oGTF->arrGenes )) {\r\n\t\treturn array(\"unknown\" , \"0\");\r\n\t}\r\n\r\n\t$arrCDS = $oGTF->arrGenes[$sGeneName];\r\n\r\n\t$nAccuLen = 0;\r\n\r\n\t$sOrientation = $arrCDS[0][\"orientation\"];\r\n\t\tforeach($arrCDS as $oExon ) {\r\n\t\t\t//$sExon = $oExon[\"exon\"] ;\r\n\t\t\t//print_r($oExon);\r\n\t\t\t//die();\r\n\t\t\t$sExon = $oExon[\"exon\"] ;\r\n\t\t\t$nExonStart = intval($oExon[\"start\"]);\r\n\t\t\t$nExonEnd = intval($oExon[\"end\"]);\r\n\t\t\t$sScfld = $oExon[\"chr\"];\r\n\t\t\t$bOnReverseStrand = false;\r\n\r\n\t\t\t\r\n\r\n\t\t\tif ( ($sOrientation==\"-\" && $nExonStart <$nExonEnd) || ($sOrientation==\"+\" && $nExonStart >$nExonEnd) ) {\r\n\t\t\t\t$bOnReverseStrand = true;\r\n\t\t\t}\r\n\r\n\t\t\t$nAccuLen += abs($nExonStart - $nExonEnd)+1;// - $oExon[\"frame\"]; don't bother with frame\r\n\r\n\t\t\tif ($nPos <= $nAccuLen) {\r\n\t\t\t\tif (!$bOnReverseStrand) {\r\n\t\t\t\t\t$nTruePos = $nExonEnd - ( $nAccuLen - $nPos);\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$nTruePos = $nExonStart + ( $nAccuLen - $nPos);\r\n\t\t\t\t}\r\n\r\n\t\t\t\treturn(array($sScfld , $nTruePos));\r\n\t\t\t} \r\n\t\t\t\r\n\t\t}\r\n\r\n\r\n\t\t\t\tprint_r($arrCDS);\r\n\t\t\t\techo(\"$sGeneName, $nPos\".PHP_EOL);\r\n\r\n\tdie(\"The above gene's coordinate cannot be mapped to genome coordinate according to the GTF file. Check upstream scripts!\\n\");\r\n\treturn array(\"unknown\" , \"0\");\r\n\r\n\t\r\n}" ]
[ "0.5103262", "0.5038551", "0.49233168", "0.48914555", "0.48742917", "0.48355097", "0.47810546", "0.475355", "0.4727595", "0.46977073", "0.46383628", "0.45944476", "0.45941055", "0.4563527", "0.45501187", "0.4543935", "0.45234865", "0.45149004", "0.44602075", "0.44557697", "0.44486642", "0.44168437", "0.43973136", "0.43800944", "0.43705797", "0.43699095", "0.43212792", "0.43116504", "0.43080968", "0.4307065" ]
0.7478973
0
Sets the master page for the control
function setMasterPage(UIMasterPage $masterPage) { $this->masterPage = $masterPage; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function getMasterPage()\n\t{\n\t\treturn $this->masterPage;\n\t}", "function RegisterMasterPage($Master)\r\n\t{\r\n\t\t//Currently does nothing\r\n\t\t\r\n\t\treturn $Master;\r\n\t}", "public function setHomepage() {\n //$home_Body= $this->fetch('HomeBody.tpl');\n $home_Body=\"qua ci va il body della home... manca ancora il tpl e va cambiato il commento su VHome.php in modo da fare la fetch\";\n $this->setBody($home_Body);\n \n }", "public function Page()\n {\n $this->Title = 'TemPHPlate';\n $this->Template = new BootstrapTemplate($this);\n }", "public function GetMasterView()\n {\n //Use The Principalemaster view \n $frontController = new FrontController($this->Core);\n return $frontController->GetMasterView();\n }", "public function setPage() {\n }", "private function checkMasterTemplateSetup() : void\n {\n $this->assertView\n ->varEquals('masterCSS', [\n '/assets/css/style.css?v=1.19',\n '/assets/css/prism.css',\n '//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css'\n ])\n ->varEquals('javaScript', [\n '/assets/js/prism.js'\n ])\n ->varEquals('defaultBranch', DocumentationConfig::DEFAULT_BRANCH);\n }", "function set_home_page(){\n\n\t\t$home = get_page_by_title( 'Sample Page' );\n\n\t\tif ( get_option( 'page_on_front' ) != $home->ID ){\n\t\t\tupdate_option( 'show_on_front', 'page' );\n\t\t\tupdate_option( 'page_on_front', $home->ID );\n\t\t}\n\n\t}", "public function getMaster();", "public function getMaster();", "public function startPage(){\n\t\t$this->setTitle(\"Welcome to Smartest\");\n\t}", "function home() {\n\n\t\t$this->mcontents['page_title'] \t\t= 'Control Panel';\n\t\t$this->mcontents['page_heading'] \t= 'Home';\n\n\t\tisAdminSection();\n\n\t\tloadAdminTemplate('home', $this->mcontents);\n\t}", "public function home() {\n\t$this->layout = \"shop_main\";\n\t$this->set('page_type','home');\n}", "public function GetMasterView()\n {\n $dashBoardController = new DashBoardController();\n return $dashBoardController->GetMasterView();\n }", "public function index()\n {\n $this->template->load('master', 'public/v_home');\n }", "public function showBase()\n\t{\n\t\t$this->data->pageBody = $this->read(\"main-layout\");\n\t\t$this->show(\"base\");\n\t}", "public function viewada()\n {\n $this->template->set_navbar('templates/navbar');\n }", "public function index() \n {\n $this->master = $this->start(); \n }", "public function hestia_set_front_page() {\n\t\tthemeisle_hestia_set_frontpage();\n\t}", "public function set_homepage( $page ) {\n $_SESSION[ 'homepage' ] = $page;\n }", "public function testNewVirtualPagesGrabTheContentFromTheirMaster()\n {\n $vp = new VirtualPage();\n $vp->write();\n\n $vp->CopyContentFromID = $this->idFromFixture(SiteTree::class, 'master');\n $vp->write();\n\n $this->assertEquals(\"My Page\", $vp->Title);\n $this->assertEquals(\"My Page Nav\", $vp->MenuTitle);\n\n $vp->CopyContentFromID = $this->idFromFixture(SiteTree::class, 'master2');\n $vp->write();\n\n $this->assertEquals(\"My Other Page\", $vp->Title);\n $this->assertEquals(\"My Other Page Nav\", $vp->MenuTitle);\n }", "public function setView()\r\n {\r\n $this->view->header = $this->getHeader();\r\n $this->view->subHeader = $this->getSubHeader();\r\n $this->view->content = $this->getContent();\r\n if (empty($this->view->hrClasses)) {\r\n $this->view->hrClasses = $this->getHRClasses();\r\n }\r\n }", "protected function AssignPage()\n\t{\t$this->page = new AdminPageContent($_GET['id'], $this->user->CanUserAccess('administration'));\n\t}", "public function setPage(Page $page)\n {\n $this->page = $page;\n $this->getServiceLocator()->get('ViewRenderer')->headTitle()->append($page->getTitle());\n\n // Create breadcrumb\n $this->_create_breadcrumb();\n\n // Add stylesheets\n $stylesheets = json_decode($this->page->getStylesheets());\n if (!empty($stylesheets))\n {\n foreach($stylesheets as $stylesheet)\n {\n $this->getServiceLocator()->get('ViewRenderer')->headScript()->appendFile('/css/' . trim($stylesheet));\n }\n }\n\n // Add javascript\n $scripts = json_decode($this->page->getHeadScripts());\n if (!empty($scripts))\n {\n foreach ($scripts as $script)\n {\n $this->getServiceLocator()->get('ViewRenderer')->headScript()->appendFile('/js/' . trim($script));\n }\n }\n }", "public function index(){\r\n\t\t\t$this->middle = 'adminLayout';\r\n\t\t\t//On appelle le layout\r\n\t\t \t$this->layout();\r\n\t\t}", "protected function setupLayout()\n {\n View::composer('layouts.master', function($view){\n $view->with('status', Session::get('status'));\n });\n\n\t\tif ( ! is_null($this->layout))\n\t\t{\n $this->layout = View::make($this->layout)\n ->with('status', Session::get('status'));\n\t\t}\n\t}", "public function admin_dashboard() {\n\t\t\n \t$this->set(array(\n 'title_for_layout' => 'Painel de Controle'\n ));\n\t}", "public function onPageCreate($page, $args)\n\t\t{\n\t\t\t$page->setMaster(new \\System\\Web\\WebControls\\MasterView('common'));\n\n\t\t\t// place any common behavior here...\n\t\t\t$page->master->assign('title', \"SEO Analyzer\");\n\t\t}", "abstract protected function set_external_page();", "public function setLayout()\n\t{\n \t$this->_helper->layout->setLayout('admin');\t\n\t}" ]
[ "0.72734255", "0.686851", "0.5933225", "0.58554316", "0.58374447", "0.5833049", "0.5739619", "0.5579704", "0.55724126", "0.55724126", "0.5545503", "0.54742366", "0.5469069", "0.54448366", "0.5441501", "0.54336685", "0.5347512", "0.53338355", "0.53147167", "0.5276211", "0.52715796", "0.52570754", "0.52525604", "0.5244286", "0.5178368", "0.5177858", "0.5159239", "0.51441634", "0.513815", "0.5134102" ]
0.6942778
1
Gets the master page for the control
function getMasterPage() { return $this->masterPage; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function GetMasterView()\n {\n //Use The Principalemaster view \n $frontController = new FrontController($this->Core);\n return $frontController->GetMasterView();\n }", "public function getMaster();", "public function getMaster();", "public function GetMasterView()\n {\n $dashBoardController = new DashBoardController();\n return $dashBoardController->GetMasterView();\n }", "function RegisterMasterPage($Master)\r\n\t{\r\n\t\t//Currently does nothing\r\n\t\t\r\n\t\treturn $Master;\r\n\t}", "public function getContentPage() {\n\t\treturn $this->getCurrentPage();\n\t}", "public function getMasterPage( $name )\n {\n if ( !$this->hasMasterPage($name) )\n {\n throw new InvalidArgumentException('There is no master page `' . $name . '` in theme `' . $this->name . '` !');\n }\n\n return $this->masterPages[$name];\n }", "protected function get_main_page() {\n\t\treset( $this->pages );\n\n\t\treturn current( $this->pages );\n\t}", "public function currentPage()\n {\n $id = $this->currentPageID();\n if ($id === 0) {\n return SiteTree::singleton();\n }\n return parent::currentPage();\n }", "public function getCurrentPage() {\n\t\treturn $this->getLastChild();\n\t}", "public function getDocumentMasterPage( $documentKey )\n {\n if ( !$this->hasDocumentMasterPage($documentKey) )\n {\n throw new InvalidArgumentException('Cant find master page for document `' . $documentKey . '` in current theme!');\n }\n\n return $this->documentMasterPages[trim($documentKey)];\n }", "private function get_current_page() {\n\n\t\treturn $this->page;\n\t}", "protected function getCurrentLandingPage()\n {\n return $this->coreRegistry->registry('mageworx_landingpagespro_landingpage');\n }", "public function getCurrentPage()\n\t{\n\t\treturn $this->current_page;\n\t}", "public function GetCurrentPage()\n\t{\n\t\treturn $this->currentPage;\n\t}", "public function getCurrentPage() {\n return $this->currentpage;\n }", "public function getPage() {\n\t\treturn Mage::registry('cms_page');\n\t}", "function getStartPage()\n {\n return $this->os->getStartPage();\n }", "public function getPage()\n {\n return Mage::registry('cms_page');\n }", "public function getRoot()\n {\n if ($this->getSection()->getRoot() instanceof Section) {\n return $this->getSection()->getRoot()->getPage();\n }\n\n return null;\n }", "public static function getFormTitlePage()\n\t{\n\t\treturn (string)self::get('form_title_page');\n\t}", "public function get_homepage() {\n if( isset( $_SESSION[ 'homepage' ] ) ) {\n return $_SESSION[ 'homepage' ];\n }\n return null;\n }", "public function getCurrentPage()\n {\n return isset($this->current_page) ? $this->current_page : null;\n }", "public function getMasterWebsiteId()\n {\n $website = $this->getStaging()->getMasterWebsite();\n if ($website) {\n return $website->getId();\n }\n\n return 0;\n }", "private function getCurrentPage()\n {\n\n $page = array_values(array_filter(explode('/', strip_tags( $_SERVER['REQUEST_URI'] ))));\n\n if( empty( $page ) )\n {\n\n return Settings::getSetting('controller_index_page');\n }\n\n return $page[0];\n }", "protected function GetPage() {\r\n\t\t\treturn $this->page;\r\n\t\t}", "public function getForm()\n {\n return $this->page_control_default_data;\n }", "public function getHomepage() {\n\t\treturn $this->site_homepage;\n\t}", "public function default_page()\n {\n return $this->_config['pages']['default'];\n }", "public function getHomepage()\n {\n return $this->homepage;\n }" ]
[ "0.66314185", "0.65537196", "0.65537196", "0.64794385", "0.64775145", "0.6403305", "0.610195", "0.6033733", "0.5890725", "0.58361506", "0.5799602", "0.57565135", "0.57037234", "0.56932336", "0.5675288", "0.5668302", "0.56666064", "0.56494486", "0.56414896", "0.5588465", "0.5559297", "0.5535394", "0.5532503", "0.55155694", "0.5488593", "0.54809326", "0.5477352", "0.5461821", "0.5457578", "0.54476386" ]
0.8495561
0
Affichage de la page des tickets classes par jalon
function tickets_classer_par_jalon($bidon) { $page = NULL; if (defined('_TICKETS_LISTE_JALONS') OR lire_config()) { $liste = explode(":", _TICKETS_LISTE_JALONS); $i = 0; foreach($liste as $_jalon) { $i += 1; $page .= recuperer_fond('prive/contenu/inc_liste_detaillee', array_merge($_GET, array('titre' => _T('tickets:champ_jalon').' '.$_jalon, 'statut' => 'ouvert', 'jalon' => $_jalon, 'bloc' => "_bloc$i")), array('ajax'=>true)); } } return $page; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function get_tickets(){\n\t\tif( is_object($this->tickets) && get_class($this->tickets)=='EM_Tickets' ){\n\t\t\treturn apply_filters('em_booking_get_tickets', $this->tickets, $this);\n\t\t}else{\n\t\t\t$this->tickets = new EM_Tickets($this);\n\t\t}\n\t\treturn apply_filters('em_booking_get_tickets', $this->tickets, $this);\n\t}", "public function getTickets()\n {\n $this->data['nonRentPayments'] = $this->nonRentPayments;\n $this->data['ticketStatus'] = $this->ticketStatus;\n return view('administrator.' . $this->data['module'] . '.' . 'index', ['data' => $this->data]);\n }", "function reports_tickets() {\n $data['allowed_modules'] = $this->check_module_accessable();\n $logged_in_employee_info = $this->Employee->get_logged_in_employee_info();\n $data['position_info'] = $this->Module->get_position_info($logged_in_employee_info->position_id)->result();\n $this->load->view(\"reports/listing_tickets\", $data);\n }", "public function show(Ticket_type $tickettype)\n {\n //\n }", "public function index()\n {\n $tickets = Ticket::with('trashed_ticket_type.trashed_festival','trashed_user', 'trashed_order')->withTrashed()->latest()->paginate();\n return view('ticket.index', compact('tickets'));\n }", "public function show_book_ticket_menu(){\n\t\t// check tour modules\n\t\tif($this->check_tour_module()){ \n\t\t\t$this->loadModel('TvlBookTkt');\n\t\t\t$this->TvlBookTkt->unBindModel(array('hasOne' => array('TvlTicket','TvlTicketStatus'), 'belongsTo' => array('HrEmployee','TskCustomer','TvlMode','TvlPlace')));\n\t\t\t$tkt_count = $this->TvlBookTkt->find('count', array('conditions' => array('TvlBookTkt.status' => 'A', 'is_approve' => 'Y', 'tkt_status' => '', 'TvlBookTkt.is_deleted' => 'N'), 'group' => array('TvlBookTkt.id')));\t\n\t\t\t$this->tvl_tkt_count += $tkt_count;\n\t\t\t$this->tour_count += $tkt_count;\n\t\t\t$this->set('BOOK_TKT_COUNT', $tkt_count);\n\t\t}\n\t}", "public function getTicket();", "function get_the_tickets() {\n\n // Run the hook\n run_hook('the_tickets', array());\n \n }", "public function index()\n {\n return Ticket::join('usuarios', 'usuario_uid', '=', 'usuarios.uid')\n ->join('departamentos', 'departamento_id', '=', 'departamentos.id_departamento')\n ->join('servicios', 'servicio_id', '=', 'servicios.id_servicio')\n ->select(\n 'id_ticket',\n 'servicio',\n 'status',\n 'tecnico',\n 'tickets.created_at as created_at',\n 'displayName',\n 'departamento')\n // ->paginate(5)\n // ->orderBy('id_ticket', 'asc')\n ->get();\n }", "public function index() {\n\t\t$tickets = DB::table('tickets')\n\t\t\t->join('turns as c', 'tickets.turn_id', '=', 'c.id')\n\t\t\t->join('categories as cat', 'tickets.category_id', '=', 'cat.id')\n\t\t\t->join('clients as cl', 'tickets.client_id', '=', 'cl.id')\n\t\t\t->join('problems as pr', 'tickets.problem_id', '=', 'pr.id')\n\t\t\t->join('priorities as pt', 'tickets.priority_id', '=', 'pt.id')\n\t\t\t->join('statuses as st', 'tickets.status_id', '=', 'st.id')\n\t\t\t->join('users as us', 'tickets.user_id', '=', 'us.id')\n\t\t\t->select('tickets.id', 'tickets.folio', 'c.name_tur', 'cat.name_cat', 'cl.name_cli', 'pr.name_pro', 'pt.name_pri', 'st.name_sta', 'us.email')\n\t\t\t->paginate(10);\n\t\treturn view('tickets.index', compact('tickets'));\n\t}", "public function getTickets(){\n $requete = \"SELECT *, t.id as id_ticket, t.description as desc_ticket, s.description as desc_statut\n FROM linku_ticket as t \n LEFT JOIN linku_statut as s \n ON t.id_linku_statut = s.id\n WHERE t.id_linku_statut = 1 OR t.id_linku_statut = 2\n ORDER BY id_linku_statut ASC, date_debut ASC\";\n $result = $this->connexion->query($requete);\n $listTickets = $result->fetchAll(PDO::FETCH_ASSOC);\n return $listTickets;\n }", "public function tickets()\n\t{\n\t\treturn $this->hasMany('Dodona\\Ticket');\n\t}", "public static function getTicketList() {\n $client = self::getClient();\n $session = Session::get('session');\n $contact = Session::get('contact');\n //$rootSession = $client->getRootSession();\n\n // Get ticket that linked to the portal contact\n $relationshipsParams = array(\n 'session' => $session->root_session_id,\n 'module_name' => 'Accounts',\n 'module_id' => $contact->account_id,\n 'link_field_name' => 'cases',\n 'related_module_query' => 'cases.type = \"Ticket\"',\n 'related_fields' => array(\n 'id', 'case_number', 'name', 'status', 'priority', 'description', 'assigned_user_name', 'date_entered' \n ),\n 'related_module_link_name_to_fields_array' => array(),\n 'deleted'=> '0',\n 'order_by' => 'cases.date_entered DESC',\n 'offset' => 0,\n 'limit' => 1000,\n );\n\n $result = $client->call(SugarMethod::GET_RELATIONSHIPS, $relationshipsParams);\n $tickets = $client->toSimpleObjectList($result->entry_list);\n\n return $tickets; \n }", "public function tickets(){\n return $this -> hasMany(Ticket::class);\n }", "public function getTickets()\n {\n return $this->tickets;\n }", "public function ticket() {\n $return = array();\n \n foreach($alletickets as $ticket){\n \n } \n \n }", "public function tickets(){ //un cliente puede tener muchos tickets\n return $this->hasMany(Ticket::class);\n }", "public function openTickets() {\n \n $sql = \"SELECT idTicket FROM STATUS_WIJZIGING WHERE Status != 'opgelost' OR Status != 'afgemeld' GROUP BY idTicket\";\n $alleOpentickets = $this->select(NULL, NULL, $sql);\n $return = array();\n \n foreach ($alleOpentickets as $openticket){\n \n //Alle data uit Ticket wordt gehaald\n \n $this->db_table = \"TICKET\";\n \n $return[$ticket]['IncidentType'] = $this->select(array(\"IncidentType\"), array(\"idTicket\" => $ticket));\n $return[$ticket]['ProbleemStelling'] = $this->select(array(\"ProbleemStelling\"), array(\"idTicket\" => $ticket));\n \n //Alle data uit STATUS_WIJZIGING wordt gehaald\n \n $this->db_table = \"STATUS_WIJZIGING\";\n $return[$ticket]['HuidigeStatus'] = $this->select(NULL, NULL, \"SELECT Status FROM STATUS_WIJZIGING WHERE idTicket = \" . $ticket . \" ORDER BY idStatus DESC LIMIT 1\");\n $return[$ticket]['GeopendOp'] = $this->select(NULL, NULL, \"SELECT DatumTijd FROM STATUS_WIJZIGING WHERE idTicket = \" . $ticket . \" ORDER BY idStatus ASC LIMIT 1\");\n \n //Deze SQL moet uit STATUS_WIJZIGING GEHAALD worden voor bedrijf\n $idBedrijf = $this->select(NULL, NULL, \"SELECT idBedrijf FROM STATUS_WIJZIGING WHERE idTicket = \" . $ticket . \" ORDER BY idStatus ASC LIMIT 1\");\n \n //Alle data uit BEDRIJF wordt gehaald\n \n $this->db_table = \"BEDRIJF\";\n $return[$ticket][\"Bedrijf\"] = $this->select(array(\"BedrijfsNaam\"), array(\"idBedrijf\" => $idBedrijf));\n }\n \n return $return;\n }", "public function ticket();", "public function getTickets_paged($startIndex, $numItems, $idCla, $username, $estado) {\n\t\t$opt = '';\n\t\tif($username != ''){\n\t\t\t$opt = \"AND soporte = '\" . $username . \"'\";\n\t\t}\n\t\t\n\t\tif($estado != 'Todos'){\n\t\t\t$opt .= \" AND estado = '\" . $estado . \"'\";\n\t\t}\n\t\t//return \"SELECT * FROM $this->tablename where idClasificacion = \" . $idCla . \" \" . $opt . \" order by fecha desc limit $startIndex, $numItems\";\n\t\t$stmt = mysqli_prepare($this->connection, \"SELECT t.*, (SELECT max(comentario) \n FROM comentarios_solucion c \n where c.idreporte = t.id\n group by c.fecha, c.hora \n having c.fecha = max(c.fecha) \n AND c.hora = max(c.hora)) comentario_solucion \n\t\t\t\tFROM $this->tablename t \n\t\t\t\twhere idClasificacion = \" . $idCla . \" \" . $opt . \" order by fecha desc limit $startIndex, $numItems\");\t\t\n\t\t$this->throwExceptionOnError();\n\t\t$msg = $this->throwExceptionOnError();\n\t\tif($msg != ''){\n\t\t\treturn $msg;\n\t\t}\n\t\t\n\t\tmysqli_stmt_execute($stmt);\n\t\t$this->throwExceptionOnError();\n\t\t$msg = $this->throwExceptionOnError();\n\t\tif($msg != ''){\n\t\t\treturn $msg;\n\t\t}\n\t\t\n\t\t$rows = array();\n\t\t$row = new TicketVO();\n\t\t\n\t\tmysqli_stmt_bind_result($stmt, $row-> id, $row->tipo_solucion, $row->problema, $row->sub_problema, $row->rotulo, $row->dir_ip, $row->cliente_rut, $row->fecha, $row->hora, $row->soporte, $row->estado, $row->descripcion, $row->hora_cierre, $row->fecha_cierre, $row->asignado_por, $row->comentario_cierre, $row->problema_e, $row->sub_problema_e, $row->solucion_dada_por, $row->idClasificacion, $row->idDescripcion, $row->tiempoSolucion, $row->administracionRemota, $row->tipoNivel, $row->reporteSolucionado, $row->fechaSolucion, $row->horaSolucion, $row->solucionadoPor, $row->clasificacionCierre, $row->categoriaCierre, $row->subcategoriaCierre, $row->descripcionCierre, $row->creadoPor, $row->notificacion, $row->comentario_solucion);\n\t\t\n\t\t//$data = $row->id;\n\t\t$msg = $this->throwExceptionOnError();\n\t\tif($msg != ''){\n\t\t\treturn $msg;\n\t\t}\n\t\t\n\t while (mysqli_stmt_fetch($stmt)) {\n\t $rows[] = $row;\n\t\t $row = new TicketVO();\n\t mysqli_stmt_bind_result($stmt, $row-> id, $row->tipo_solucion, $row->problema, $row->sub_problema, $row->rotulo, $row->dir_ip, $row->cliente_rut, $row->fecha, $row->hora, $row->soporte, $row->estado, $row->descripcion, $row->hora_cierre, $row->fecha_cierre, $row->asignado_por, $row->comentario_cierre, $row->problema_e, $row->sub_problema_e, $row->solucion_dada_por, $row->idClasificacion, $row->idDescripcion, $row->tiempoSolucion, $row->administracionRemota, $row->tipoNivel, $row->reporteSolucionado, $row->fechaSolucion, $row->horaSolucion, $row->solucionadoPor, $row->clasificacionCierre, $row->categoriaCierre, $row->subcategoriaCierre, $row->descripcionCierre, $row->creadoPor, $row->notificacion, $row->comentario_solucion);\n\t }\n\t\t\n\t\tmysqli_stmt_free_result($stmt);\n\t mysqli_close($this->connection);\n\t\t\n\t\treturn $rows;\n\t}", "public function index()\n {\n// $tickets = Ticket::with('category','priority','lastResponse');\n// $tickets = Ticket::with('category','priority','lastResponse')->orderBy('id','desc')->paginate(10);\n $pending_count = Auth::user()->tickets()->where('status_id','1')->count();\n $open_count = Auth::user()->tickets()->where('status_id','2')->count();\n $solved_count = Auth::user()->tickets()->where('status_id','3')->count();\n\n $tickets = Auth::user()->tickets()->with('category','priority','lastResponse');\n\n if (!empty($this->request->status))\n {\n// dd($this->request->status);\n $tickets = $tickets->whereStatusId($this->request->status);\n }\n\n $tickets = $tickets->orderBy('id','desc')->paginate(10);\n\n return view('tickets.index',compact('tickets','pending_count','open_count','solved_count'));\n }", "public function tickets()\n\t{\n\t\treturn $this->hasMany(Ticket::class);\n\t}", "public function ticket()\n {\n return $this->hasMany('App\\Ticket', 'id_tck_type');\n }", "public function tickets(){\n return $this->hasMany('App\\Models\\Tic_ticket');\n }", "public function tickets(){\n return $this->hasMany('App\\Models\\Tickets','idTipoTicket', 'idTipoTicket');\n }", "public function index()\n\t{\n\t\t// Si on est connecté en tant que RSSI\n\t\tif (Session::isConnected()) {\n\t\t\t// on recupère tous les tickets et on les affiche\n\t\t\t$tickets = $this->_db->getTickets();\n\t\t\tView::make('tickets.twig', array('tickets' => $tickets, 'filtered' => 'Tous les tickets'));\n\t\t} else {\n\t\t\t// sinon on recupère les tickets de l'utilisateur correspondant à notre cookie\n\t\t\tif (Session::get('user_tickets')) {\n\t\t\t\t// sinon on recupère les tickets de l'utilisateur correspondant à notre cookie\n\t\t\t\t$id = Session::get('user_tickets');\n\t\t\t} else {\n\t\t\t\t$id = 0;\n\t\t\t}\n\t\t\t$this->filterByUser(array('id' => $id), 'Mes tickets');\n\t\t}\n\t}", "public function __construct($tickets)\n {\n $this->tickets = $tickets;\n }", "public function getType(){\n return '\\Dlin\\Zendesk\\Entity\\Ticket';\n }", "public static function single_ticket(){\n\n events::show_events();\n\n $ticket = new ticket((int)$_GET['id']);\n $ticket->mark_ticket_seen();\n $ticket->mark_messages_seen();\n\n \n\n $messages = '';\n foreach($ticket->get_conversation() as $message){\n $messages .= elements\\raw::ticket_message($message, $ticket);\n }\n\n $params = array();\n $params['title-bar'] = elements\\panels::ticket_title_bar($ticket->get_model()->get_id(), $ticket->get_model()->get_status());\n $params['conversation'] = elements\\panels::ticket_conversation($messages, $ticket);\n $params['user'] = elements\\panels::user_info($ticket->get_model()->get_user_id());\n $params['other_tickets_table'] = elements\\panels::user_tickets_table($ticket->get_model()->get_user_id());\n\n if($ticket->get_model()->get_kind() == 'order'){\n $order = wc_get_order($ticket->get_model()->get_element_id());\n $params['order'] = elements\\panels::ticket_order_details($order);\n }\n \n renderer::render('containers/backend-settings-container', $params);\n }", "public function index() {\n\t\t$tickets = $this->Ticket->find('all');\n\t\t$this->set(array(\n\t\t\t'tickets' => $tickets,\n\t\t\t'_serialize' => array('tickets')\n\t\t));\n\t}" ]
[ "0.6070684", "0.5811023", "0.5794128", "0.57756203", "0.57729125", "0.57534945", "0.5750497", "0.5688669", "0.56387943", "0.56304073", "0.5623873", "0.56218106", "0.5600424", "0.55685", "0.5555747", "0.55323064", "0.55301195", "0.55126595", "0.55055994", "0.54925", "0.54794556", "0.547877", "0.5472939", "0.546562", "0.5460943", "0.54488534", "0.5442927", "0.54314363", "0.5422402", "0.5417443" ]
0.640553
0
Funzione per cambiare il formato della data
function datareformat ($data) { $aa=substr($data, 0, 4); $mm=substr($data, 5, 2); $gg=substr($data, -2, 2); $datareformat= $gg."/".$mm."/".$aa; return $datareformat; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function format($data);", "public static function format($data);", "function dataformat ($data_grezza) {\n\t//elaboro da data\n\t$day_grezzo = substr($data_grezza,0,2);\n\t$day = (int) $day_grezzo;\n\t$month_grezzo = substr($data_grezza,3,2);\n\t$month = (int) $month_grezzo;\n\t$year_grezzo = substr($data_grezza,-4,4);\n\t$year = (int) $year_grezzo;\n\t// Controllo la variabile data\n\tif ($day<=31 && $month<=12) {\n\t\tif ($day<10) {$day_ok = \"0\".$day;}\n\t\telse {$day_ok = $day;}\n\t\t\n\t\tif ($month<10) {$month_ok = \"0\".$month;}\n\t\telse {$month_ok = $month;}\n\t\t$data_app = $year.$month_ok.$day_ok;\n\t}\n\telse {$data_app = \"err\";} \n\t\treturn $data_app;\n}", "public function format(array $data);", "function formata_data($data_hora, $formato=\"%c\") {\n $mapping = array(\n\t '%c' => '%d/%m/%Y %H:%M.%S',\n\t '%X' => '%H:%M.%S',\n\t '%x' => '%d/%m/%Y',\n \t);\n\n\t //Substitui\n $formato = str_replace(\n \t array_keys($mapping),\n\t array_values($mapping),\n \t $formato\n\t );\n\n //Retorna a data formatada\n return ($data_hora ? iconv('ISO-8859-1', 'UTF-8', strftime($formato, strtotime($data_hora))) : \"\");\n }", "public abstract function format();", "abstract public function recordFormat();", "protected function format($data) {\n\t \n\t\tswitch($this->format) {\n\t\t\tcase MODEL_DATA_FORMAT_PHP:\n\t\t\t\t// don't do anything\n\t\t\t\t$return_data = $data;\n\t\t\t\tbreak;\n\t\t\tcase MODEL_DATA_FORMAT_JSON:\n\t\t\t\t$return_data = json_encode($data);\n\t\t\t\tbreak;\n\t\t\tcase MODEL_DATA_FORMAT_SERIALPHP:\n\t\t\t\t$return_data = serialize($data);\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t// don't do anything\n\t\t\t\t$return_data = $data;\n\t\t}\n\t\treturn $return_data;\n\t}", "public function toData();", "public function getDataFormat() {\n\t\treturn $this->format;\n\t}", "public static function format($data) {\n return $data['_source'];\n }", "abstract public function toData();", "function formataData($DATA, $somenteHora = false, $somenteData = false) {\n if ($DATA and $DATA <> \"0000-00-00\") {\n if(strstr($DATA, '-')){\n $data = explode(\"-\", $DATA);\n if (strstr($data[2], \" \") == True) {\n $Data = explode(\" \", $data[2]);\n if($somenteHora){\n $hora = explode(':', $Data[1]);\n return $hora[0].':'.$hora[1];\n }elseif($somenteData){\n return $Data[0] . \"/\" . $data[1] . \"/\" . $data[0];\n }else{\n return $Data[0] . \"/\" . $data[1] . \"/\" . $data[0] . \" \" . $Data[1];\n }\n\n } else {\n return $data[2] . \"/\" . $data[1] . \"/\" . $data[0];\n }\n }else{\n return $DATA;\n }\n } else {\n return null;\n }\n}", "function getFormat();", "public function getDataFormat()\n {\n return $this->data_format;\n }", "protected function rawFormat($data)\n {\n return $data;\n }", "protected function formatData(){\n $out=array();\n\n for($i=0, $imax=count($this->data); $i<=$imax-1; $i++){\n $row=array();\n\n for($j=0, $jmax=count($this->columns); $j<=$jmax-1; $j++){\n $column=$this->columns[$j];\n\n if(isset($column['formatter'])){\n // Execute formatter callback\n $row[$column['index']]=$column['formatter']($this->data[$i][$column['name']], $this->data[$i]);\n }\n else{\n $row[$column['index']]=$this->data[$i][$column['name']];\n }\n }\n\n $out[]=$row;\n }\n\n return $out;\n }", "public function inverterData($data){\r\n\t\t\r\n $data = substr($data,0,4) . \"/\" . substr($data,4,2) . \"/\" . substr($data,6,2);\r\n \r\n $nova_data = date('d/m/Y', strtotime($data));\r\n \r\n return $nova_data;\r\n }", "public function getOriginalFormat();", "public function getDataNascimento_format()\n {\n return $this->dataNascimento_format;\n }", "public function formatDataFromDb($databaseRow){\n\n }", "public function getFormat () {}", "private function changeDataFormat($data){\n if($data)\n if($data[2] != '/'){\n $date = date_create($data);\n return date_format($date, 'd/m/Y');\n }\n return $data;\n }", "public function formatData()\n\t{\n\t\tif ($this->dataObject instanceof UsageData && ($this->paramInstance->getValue('jsonheader'))) {\n\t\t\t$this->formatUsageData();\n\t\t}\n\t\telse {\n\t\t\t$this->formatArrayData();\n\t\t}\n\t}", "static function dataPT($data)\n {\n $data = explode(\" \", $data);\n $data = explode(\"-\", $data[0]);\n $meses = [1 => 'Janeiro', 2 => 'Fevereiro', 3 => 'Março', 4 => 'Abril', 5 => 'Maio', 6 => 'Junho', 7 => 'Julho', 8 => 'Agosto', 9 => 'Setembro', 10 => 'Outubro', 11 => 'Novembro', 12 => 'Dezembro'];\n //$semana = [0 => 'Domingo',1 => 'Segunda-Feira',2 => 'Terça-Feira',3 => 'Quarta-Feira',4 => 'Quinta-Feira',5 => 'Sexta-Feira',6 => 'Sábado']; \n //$semana[$dia_semana].\", \".\n return $data[2] . \" de \" . $meses[intval($data[1])] . \" de \" . $data[0];\n\n // setlocale(LC_ALL, 'pt_BR', 'pt_BR.utf-8', 'pt_BR.utf-8', 'portuguese');\n // date_default_timezone_set('America/Sao_Paulo');\n // return strftime('%A, %d de %B de %Y', strtotime($data));\n }", "protected function _formatData() {\n $data = $this->formatData();\n\n $data = trim($data);\n \n $this->formattedData = $data;\n }", "private function formatArrayData()\n\t{\n\t\t$json = json_encode($this->dataObject->getData(), JSON_NUMERIC_CHECK | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT);\n\n\t return $this->formattedData = $json;\n\t}", "public function getFormat();", "public function getFormat();", "function radius_cvt_string($data)\n{\n}" ]
[ "0.7322457", "0.70310175", "0.6863824", "0.66779506", "0.6673276", "0.6659956", "0.6553325", "0.6415295", "0.6383845", "0.62959003", "0.62712306", "0.6265276", "0.6262056", "0.62475884", "0.62087095", "0.6202581", "0.6193887", "0.6135603", "0.6134361", "0.6134061", "0.6107509", "0.61067206", "0.610294", "0.6097216", "0.6062574", "0.60470355", "0.6021781", "0.60193324", "0.60193324", "0.60010326" ]
0.7033596
1
Check if the sitemap is statically generated.
private function checkIfStatic() { if ( isset( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_rewrite'] ) && empty( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_rewrite'] ) ) { $deprecatedOptions = aioseo()->internalOptions->internal->deprecatedOptions; array_push( $deprecatedOptions, 'staticVideoSitemap' ); aioseo()->internalOptions->internal->deprecatedOptions = $deprecatedOptions; aioseo()->options->deprecated->sitemap->video->advancedSettings->dynamic = false; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function isStatic()\n {\n return (Page::TYPE_STATIC === $this->_type);\n }", "public function isStatic()\n {\n return $this->getBackendType() == self::TYPE_STATIC || $this->getBackendType() == '';\n }", "public function is_static() {\n\t\treturn false;\n\t}", "public static function isStatic(){\n ECache::staticCache();\n }", "public function isStatic(): bool\n {\n return false;\n }", "public function isStatic(): bool\n {\n return $this->static;\n }", "public function isStatic(): bool;", "public function isStatic(): bool;", "public function isStatic(): bool\n {\n return $this->isStatic;\n }", "public function isSite(): bool\n {\n return false;\n }", "function odiogo_is_wp_page_static ($id) {\r\n\treturn (in_array( $id, get_all_page_ids() ));\r\n}", "function osc_has_static_pages() {\n if ( !View::newInstance()->_exists('pages') ) {\n View::newInstance()->_exportVariableToView('pages', Page::newInstance()->listAll(false, 1) );\n }\n\n $page = View::newInstance()->_next('pages');\n View::newInstance()->_exportVariableToView('page_meta', json_decode($page['s_meta'], true));\n return $page;\n }", "protected function _isAllowed()\n {\n return $this->_authorization->isAllowed('Siteimprove_Magento::siteimprove_sitemap');\n }", "function is_home_static_page() {\n return ( is_front_page() && 'page' == get_option( 'show_on_front' ) && is_page( get_option( 'page_on_front' ) ) );\n }", "public function isStatic()\n {\n return $this->isStatic;\n }", "public function getIsStatic() : bool\n {\n return $this->isStatic;\n }", "public function isStatic()\n {\n if (is_callable($this->action) AND is_array($this->action))\n {\n $class = is_string($this->action[0])? $this->action[0]: get_class($this->action[0]);\n $method = $this->action[1];\n \n if (method_exists($class, $method))\n {\n $rm = new ReflectionMethod( $class, $method );\n return $rm-> isStatic ();\n }\n else\n {\n return FALSE;\n }\n }\n return FALSE;\n }", "function CallCheckForManualBuild() {\r\r\n\t\tif(GoogleSitemapGeneratorLoader::LoadPlugin()) {\r\r\n\t\t\t$gs = &GoogleSitemapGenerator::GetInstance();\r\r\n\t\t\t$gs->CheckForManualBuild();\r\r\n\t\t}\r\r\n\t}", "public function isStatic()\n {\n return $this->getReflectionProperty()->isStatic();\n }", "private function needsToUpdateTypoScriptTemplates() {\n\t\t$row = tx_oelib_db::selectSingle(\n\t\t\t'COUNT(*) as count', 'sys_template',\n\t\t\t'include_static_file LIKE \\'%EXT:seminars/static/%\\''\n\t\t);\n\n\t\treturn ($row['count'] > 0);\n\t}", "public function belongsOnSiteMap()\n {\n if (substr($this->link, 0, 1) == '#' || $this->status == 'hidden') {\n return false;\n } else {\n return true;\n }\n }", "protected function hasSiteRoot() {\n return !is_null($this->siteRoot);\n }", "protected function hasSiteRoot() {\n return !is_null($this->siteRoot);\n }", "function sitemap($generate) {\n\tglobal $set, $pagenum, $langmessage;\n\tif($generate)\n\t\treturn '<a href=\"?do=sitemap\" rel=\"nofollow\">'.$langmessage[88].'</a>';\n\telse\n\t\treturn '<a href=\"'.$set['indexfile'].'?page='.$pagenum.'&amp;do=sitemap\" rel=\"nofollow\">'.$langmessage[88].'</a>';\n}", "public static function action_generate() {\n\t\t$sitemap_create_in_progress = (bool) get_option( 'msm_sitemap_create_in_progress' );\n\t\tself::generate_full_sitemap();\n\n\t\tif ( false !== get_option( 'msm_sitemap_create_in_progress', false ) ) {\n\t\t\tupdate_option( 'msm_sitemap_create_in_progress', true );\n\t\t} else {\n\t\t\tadd_option( 'msm_sitemap_create_in_progress', true, '', 'no' );\n\t\t}\n\n\t\tif ( empty( $sitemap_create_in_progress ) ) {\n\t\t\tMetro_Sitemap::show_action_message( __( 'Starting sitemap generation...', 'metro-sitemaps' ) );\n\t\t} else {\n\t\t\tMetro_Sitemap::show_action_message( __( 'Resuming sitemap creation', 'metro-sitemaps' ) );\n\t\t}\n\t}", "function getSitemapTemplate();", "protected function isSitemapEmpty($sitemapFileName) {\n\t\t$result = TRUE;\n\n\t\t$fileDescriptor = @fopen(PATH_site . $sitemapFileName, 'rt');\n\t\tif ($fileDescriptor) {\n\t\t\t$chunkSizeToCheck = 10240;\n\t\t\t$testString = fread($fileDescriptor, $chunkSizeToCheck);\n\t\t\tfclose($fileDescriptor);\n\t\t\t$result = (strpos($testString, '<url>') === FALSE);\n\t\t}\n\n\t\treturn $result;\n\t}", "public function getIsPage() {\n if ($this->getHolder()->getKey() == \"SiteConfig\") \n return false;\n $parts = explode('.', $this->path);\n return ($parts[sizeof($parts) - 4] == \"PageTypes\");\n }", "function runSitemapper(){\n print \"runSitemapper(): started\".NL;\n $result = Sitemapper::generate() && Sitemapper::pingSearchEngines();\n print 'runSitemapper(): finished'.NL;\n return $result;\n}", "protected function _urlCheckUnique(){\n\n $result = true;\n\n $arUrls = [];\n foreach ($this->arMenu as $key => $itemFirstLevel) {\n if(isset( $arUrls[$itemFirstLevel['url']] )){\n $result = false;\n break;\n }else{\n $arUrls[$itemFirstLevel['url']] = 1; // mark\n }\n\n if(isset($itemFirstLevel['children'])){\n foreach ($itemFirstLevel['children'] as $subkey => $itemSecondLevel) {\n if(isset( $arUrls[$itemSecondLevel['url']] )){\n $result = false;\n break;\n }else{\n $arUrls[$itemSecondLevel['url']] = 1; // mark\n }\n }\n }\n\n }\n\n return $result;\n }" ]
[ "0.6955908", "0.6656986", "0.6605175", "0.6513657", "0.6406837", "0.63644874", "0.61949205", "0.61949205", "0.6136444", "0.6121981", "0.61209905", "0.60841006", "0.5978429", "0.59331864", "0.5915411", "0.5897756", "0.5873722", "0.58435667", "0.5828084", "0.5811718", "0.57273394", "0.56970334", "0.56970334", "0.5691565", "0.5682139", "0.56814516", "0.5625358", "0.56209666", "0.55053234", "0.55030495" ]
0.75993073
0
Migrates the amount of links per sitemap index.
private function migrateLinksPerIndex() { if ( ! empty( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_max_posts'] ) ) { $value = intval( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_max_posts'] ); if ( ! $value ) { return; } $value = $value > 50000 ? 50000 : $value; aioseo()->options->sitemap->video->linksPerIndex = $value; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function updateLinks() {\r\n $changed_ids = $this->getChanges();\r\n $directlinks= $this->createLinkList();\r\n if ($changed_ids != '') {\r\n var_dump($changed_ids);\r\n foreach ($changed_ids as $id) {\r\n $this->removeLink($id);\r\n }\r\n $this->getTree($directlinks,$changed_ids);\r\n }\r\n }", "function rebuildLinks() {\r\n\t $this->deleteLinkList();\r\n\t\t$directlinks = $this->createLinkList();\r\n\t\tforeach ($directlinks as $key => $value) {\r\n\t\t $startids[] = $key;\r\n\t\t }\r\n\t\t $this->getTree($directlinks,$startids);\r\n }", "function do_206_migration() {\n\tflush_rewrite_rules( true );\n}", "static function updateUrls() {\n $userUrl = Request::capture()->url();\n $urlObject = DBHelper::allWhere('analytics_urls', [\n 'name' => $userUrl,\n 'ip_addr' => serverValue('REMOTE_ADDR')\n ]);\n if (count($urlObject) > 0)\n {\n DBHelper::updateRecord('analytics_urls', [\n 'name' => $userUrl,\n 'ip_addr' => serverValue('REMOTE_ADDR')\n ],[\n 'visits' => $urlObject->first()->visits+1\n ]);\n } else {\n DBHelper::insertToTable('analytics_urls', [\n 'visits' => 1,\n 'name' => $userUrl,\n 'ip_addr' => serverValue('REMOTE_ADDR')\n ]);\n }\n }", "public function execute() {\n\t\t$this->sitemapUrls[] = $this->prepareSitemapRecord('');\n\n\t\t// Get phone numbers\n\t\ttry {\n\t\t\t$sth = $this->db->prepare('SELECT COUNT(*) AS `cnt` FROM `' . $this->dbPrefix . 'phones`');\n\n\t\t\t$sth->execute();\n\n\t\t\t$result = $sth->fetch(PDO::FETCH_OBJ);\n\n\t\t\t// Total number of pages in sitemap\n\t\t\t$totalCount = $result->cnt + count($this->sitemapUrls);\n\n\t\t\t// SQL limit offset value \n\t\t\t$limitOffset = 0;\n\n\t\t\t// SQL limit count value \n\t\t\t$limitCount = 50000 - count($this->sitemapUrls);\n\n\t\t\tfor ($i = 0; $i <= $totalCount; $i += 50000) {\n\t\t\t\ttry {\n\t\t\t\t\t$sth = $this->db->prepare('\n\t\t\t\t\t\tSELECT `phone_number`\n\t\t\t\t\t\tFROM `' . $this->dbPrefix . 'phones`\n\t\t\t\t\t\tORDER BY `phone_number`\n\t\t\t\t\t\tLIMIT ' . $limitOffset . ', ' . $limitCount\n\t\t\t\t\t);\n\n\t\t\t\t\t$limitOffset += $limitCount;\n\t\t\t\t\t$limitCount = 50000;\n\n\t\t\t\t\t$sth->execute();\n\n\t\t\t\t\t$results = $sth->fetchAll(PDO::FETCH_OBJ);\n\n\t\t\t\t\t// Make sitemap files\n\t\t\t\t\tforeach ($results as $row) {\n\t\t\t\t\t\t$this->sitemapUrls[] = $this->prepareSitemapRecord($row->phone_number);\n\t\t\t\t\t}\n\n\t\t\t\t\t$this->makeSitemap();\n\n\t\t\t\t} catch (PDOException $e) {\n\t\t\t\t\techo 'Error: ' . $e->getMessage() . '<br>';\n\t\t\t\t\tvar_dump($e->getTrace());\n\t\t\t\t\texit;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Make sitemap index file\n\t\t\t$this->makeSitemapIndex();\n\n\t\t\techo 'Total pages in sitemaps: ' . $limitOffset . '<br>';\n\t\t\techo 'Ready!';\n\t\t\t\n\t\t} catch (PDOException $e) {\n\t\t\techo 'Error: ' . $e->getMessage() . '<br>';\n\t\t\tvar_dump($e->getTrace());\n\t\t\texit;\n\t\t}\n\t}", "function plugin_statssummary_links2()\n{\n global $LANG_LINKS_STATS;\n\n list($total_links, $total_clicks) = LINKS_countLinksAndClicks ();\n\n $item_count = COM_NumberFormat ($total_links)\n . ' (' . COM_NumberFormat ($total_clicks) . ')';\n\n\n return array ($LANG_LINKS_STATS['links'], $item_count);\n}", "public function updateStaticVersions()\n {\n // rip changes to feed urls\n $rss = new FeedMe();\n $siteDirectory =\n $this->directory . '/' . $this->manifest->metadata->siteName . '/';\n @file_put_contents($siteDirectory . 'rss.xml', $rss->getRSSFeed($this));\n @file_put_contents(\n $siteDirectory . 'atom.xml',\n $rss->getAtomFeed($this)\n );\n // build a sitemap if we have a domain, kinda required...\n if (isset($this->manifest->metadata->domain)) {\n $domain = $this->manifest->metadata->domain;\n $generator = new \\Icamys\\SitemapGenerator\\SitemapGenerator(\n $domain,\n $siteDirectory\n );\n // will create also compressed (gzipped) sitemap\n $generator->createGZipFile = true;\n // determine how many urls should be put into one file\n // according to standard protocol 50000 is maximum value (see http://www.sitemaps.org/protocol.html)\n $generator->maxURLsPerSitemap = 50000;\n // sitemap file name\n $generator->sitemapFileName = \"sitemap.xml\";\n // sitemap index file name\n $generator->sitemapIndexFileName = \"sitemap-index.xml\";\n // adding url `loc`, `lastmodified`, `changefreq`, `priority`\n foreach ($this->manifest->items as $key => $item) {\n if ($item->parent == null) {\n $priority = '1.0';\n } elseif ($item->indent == 2) {\n $priority = '0.7';\n } else {\n $priority = '0.5';\n }\n $generator->addUrl(\n $domain .\n '/' .\n str_replace(\n 'pages/',\n '',\n str_replace('/index.html', '', $item->location)\n ),\n date(\\DateTime::ATOM, $item->metadata->updated),\n 'daily',\n $priority\n );\n }\n // generating internally a sitemap\n $generator->createSitemap();\n // writing early generated sitemap to file\n $generator->writeSitemap();\n }\n // now generate a static list of links. This is so we can have legacy fail-back iframe mode in tact\n @file_put_contents(\n $siteDirectory . 'legacy-outline.html',\n '<!DOCTYPE html><html lang=\"en\"><head></head><body>' .\n $this->treeToNodes($this->manifest->items) .\n '</body></html>'\n );\n // now generate the search index\n @file_put_contents(\n $siteDirectory . 'lunrSearchIndex.json',\n json_encode($this->lunrSearchIndex($this->manifest->items))\n );\n }", "public static function upgrade() {\n\t\t$db = Loader::db();\n\t\t$relativeLinkType = BlockType::getByHandle('clov_relative_link');\n\t\t$relativeLinkRows = $db->getAll('select bID from Blocks where btID = ?', array($relativeLinkType->getBlockTypeID()));\n\t\tforeach($relativeLinkRows as $relativeLinkRow) {\n\t\t\t$relativeLink = Block::getByID($relativeLinkRow['bID']);\n\t\t\tself::convertRelativeLinkActionToLegacyRoute($relativeLink);\n\t\t}\n\t}", "private function extendSitemap()\n\t{\n\t\t// If we haven't extended this sitemap yet\n\t\tif($this->aCurrSitemap['count'] == 0) {\n\t\t\t$this->aCurrSitemap['count']\t= 1;\n\t\t}\n\n\t\t// Store the info for the next sitemap\n\t\t$aNextSitemap\t= array(\n\t\t\t'items' => array(),\n\t\t\t'name'\t=> $this->aCurrSitemap['name'],\n\t\t\t'count' => $this->aCurrSitemap['count'] + 1,\n\t\t\t'size'\t=> 0,\n\t\t\t'head'\t=> array(\n\t\t\t\t'types' => $this->aCurrSitemap['head']['types'],\n\t\t\t\t'size'\t=> $this->aCurrSitemap['head']['size']\n\t\t\t)\n\t\t);\n\n\t\t// Close the existing sitemap\n\t\t$this->closeSitemap();\n\n\t\t// Start the new one\n\t\t$this->aCurrSitemap = $aNextSitemap;\n\t}", "function updateLinks($old, $new) {\n\t\tif(class_exists('Subsite')) Subsite::disable_subsite_filter(true);\n\t\n\t\t$pages = $this->owner->BackLinkTracking();\n\n\t\t$summary = \"\";\n\t\tif($pages) {\n\t\t\tforeach($pages as $page) $page->rewriteFileURL($old,$new);\n\t\t}\n\t\t\n\t\tif(class_exists('Subsite')) Subsite::disable_subsite_filter(false);\n\t}", "public function createSitemapIndex()\n {\n if ($this->writer) {\n $this->endSitemap(); // close the last generated sitemap @Todo find another way to do this\n }\n\n $this->startSitemapIndex();\n\n for ($index = 0; $index <= $this->getCurrentSitemap(); $index++) {\n $indexLoc = $this->getFilename($index);\n $this->addIndexItem($indexLoc);\n }\n\n $this->endSitemap();\n }", "public function rebuild_urls($id_article = NULL)\n\t{\n\t\t$nb = 0;\n\n\t\tif ( ! is_null($id_article))\n\t\t{\n\t\t\t$nb = $this->save_urls($id_article);\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$articles = $this->get_list();\n\t\t\t\n\t\t\tforeach($articles as $article)\n\t\t\t{\n\t\t\t\t$nb += $this->save_urls($article['id_article']);\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $nb;\n\t}", "public function getMaxUrlsPerSitemap() {\n\t\treturn $this->maxUrlsPerSitemap;\n\t}", "public function updateForwardLinks()\n {\n $doi = $this->getDoi();\n\n if ($doi) {\n $citation = new Citation(get_the_title($this->id), $doi);\n $xmlElement = $citation->getCitedByXml();\n\n if ($xmlElement) {\n $citations = $this->getForwardLinkCitations($xmlElement);\n\n if (!empty($citations)) {\n $count = count($citations);\n\n if ($this->getCitedByCount() != $count) {\n delete_post_meta($this->id, '_sb-citedby-auto');\n foreach ($citations as $citation) {\n add_post_meta($this->id, '_sb-citedby-auto', $citation);\n }\n update_post_meta($this->id, '_sb-citedby-count', $count);\n }\n } else {\n return;\n }\n }\n }\n }", "function wp_update_network_site_counts() {\n\tglobal $wpdb;\n\n\t$count = $wpdb->get_var( $wpdb->prepare(\"SELECT COUNT(blog_id) as c FROM $wpdb->blogs WHERE site_id = %d AND spam = '0' AND deleted = '0' and archived = '0'\", $wpdb->siteid) );\n\tupdate_site_option( 'blog_count', $count );\n}", "public function countLinks()\n\t{\n\t\t$sql = \"SELECT COUNT(*) AS total from url\";\n\t\t$result = $this->cnx->executeQuery($sql)->fetch();\n\t\t\n\t\treturn $result['total'];\n\t}", "private function publishSitemap(): void\n {\n $this->clearPreviousSitemaps();\n Directory::checkDirectory($this->getSitemapsDirectory());\n $dir = new RecursiveDirectoryIterator($this->getTempDirectory());\n $iterator = new RecursiveIteratorIterator($dir);\n $files = new RegexIterator(\n $iterator,\n \"/^(?'path'(([a-zA-Z]:)|((\\\\\\\\|\\\\/){1,2}\\\\w+)?)((\\\\\\\\|\\\\/)(\\\\w[\\\\w ]*.*))+({$this->getExt()}){1})$/\",\n RegexIterator::GET_MATCH\n );\n $fileList = [];\n\n foreach ($files as $file) {\n if (isset($file['path'])) {\n $fileList[] = $file['path'];\n }\n }\n\n $currentFile = 0;\n\n foreach ($fileList as $file) {\n if (file_exists($file)) {\n ++$currentFile;\n $destination = str_replace($this->getTempDirectory(), $this->getPublicDirectory(), $file);\n rename($file, $destination);\n } else {\n Directory::removeDir($this->getTempDirectory());\n throw new Exception('Couldn\\'t find generated sitemap file.');\n }\n }\n\n Directory::removeDir($this->getTempDirectory());\n }", "public static function processLinks()\n {\n # Let's start by truncating the BrokenLinks table\n BrokenLink::truncate();\n $brokenLinks = [];\n $settings = Settings::instance();\n foreach($settings->modelators as $el) {\n list($modelName, $field) = explode('::', $el['modelator']);\n $models = $modelName::whereNotNull($field)->get();\n foreach($models as $model){\n $urls = Helper::scanForUrls($model->$field);\n $modelParts = explode('\\\\', $modelName);\n foreach($urls as $url){\n $status = BrokenLink::isBrokenLink($url);\n if($status)\n $brokenLinks[] = [\n 'status' => $status,\n 'plugin' => $modelParts[1] . '.' . $modelParts[2],\n 'model' => array_pop($modelParts),\n 'model_id' => $model->id,\n 'field' => $field,\n 'context' => $model->$field,\n 'url' => $url\n ];\n }\n }\n }\n\n /**\n * Go process the current theme\n */\n $theme = Theme::getActiveTheme();\n $theme->getPath();\n\n /**\n * Should we process theme pages?\n */\n if($settings['checkCMS'] == '1')\n foreach(File::directories($theme->getPath()) as $themeSubDir){\n # Skip the assets folder\n if(basename($themeSubDir) == 'assets')\n continue;\n\n foreach(File::allFiles($themeSubDir) as $filePath){\n $urls = Helper::scanForUrls(file_get_contents($filePath));\n foreach($urls as $url){\n $status = BrokenLink::isBrokenLink($url);\n if($status)\n $brokenLinks[] = [\n 'status' => $status,\n 'plugin' => 'CMS',\n 'model' => str_replace($theme->getPath() . DIRECTORY_SEPARATOR, '', $filePath),\n 'url' => $url\n ];\n }\n }\n }\n\n /**\n * Lets seed the BrokenLink table with any and all found links.\n */\n foreach($brokenLinks as $brokenLink)\n BrokenLink::create($brokenLink);\n\n return count($brokenLinks);\n }", "private function parseUrls()\n\t{\n\t\tforeach ($this->urls as $url) {\n\t\t\t$urlEntity = $url->url;\n\t\t\tif ($urlEntity['isIndex'] && !$urlEntity['hideInSitemap'] && !empty($this->localesWebsites[$urlEntity['locale']])) {\n\t\t\t\t$entity = $url->entity;\n\t\t\t\t$entityObject = $url->entityObject;\n\t\t\t\t$interface = $url->interface;\n\t\t\t\tif (!empty($interface['classname']) && $interface['classname'] === Page::class && !$entity['isIndex']) {\n\t\t\t\t\t$this->setPage($entity, $url);\n\t\t\t\t} elseif (!empty($interface['classname']) && $interface['classname'] !== Page::class) {\n\t\t\t\t\t$this->setAsCard($entity, $entityObject, $interface, $url);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "function fixImportantPagesNumbering()\n\t{\n\t\tglobal $ilDB;\n\n\t\t$ipages = ilObjWiki::_lookupImportantPagesList($this->getId());\n\n\t\t// fix indentation: no 2 is allowed after a 0\n\t\t$c_indent = 0;\n\t\t$fixed = false;\n\t\tforeach ($ipages as $k => $v)\n\t\t{\n\t\t\tif ($ipages[$k][\"indent\"] == 2 && $c_indent == 0)\n\t\t\t{\n\t\t\t\t$ipages[$k][\"indent\"] = 1;\n\t\t\t\t$fixed = true;\n\t\t\t}\n\t\t\t$c_indent = $ipages[$k][\"indent\"];\n\t\t}\n\n\t\t$ord = 10;\n\t\tforeach ($ipages as $k => $v)\n\t\t{\n\t\t\t$ilDB->manipulate($q = \"UPDATE il_wiki_imp_pages SET \".\n\t\t\t\t\" ord = \".$ilDB->quote($ord, \"integer\").\n\t\t\t\t\", indent = \".$ilDB->quote($v[\"indent\"], \"integer\").\n\t\t\t\t\" WHERE wiki_id = \".$ilDB->quote($v[\"wiki_id\"], \"integer\").\n\t\t\t\t\" AND page_id = \".$ilDB->quote($v[\"page_id\"], \"integer\")\n\t\t\t\t);\n\t\t\t$ord+=10;\n\t\t}\n\n\t}", "function re_rewrite_rules() {\n global $wp_rewrite;\n $wp_rewrite->pagination_base = 'trang';\n $wp_rewrite->flush_rules();\n}", "function plugin_upgrade_links2()\n{\n global $_TABLES, $_CONF, $_LI_CONF;\n\n if ( @file_exists($_CONF['path'].'plugins/links/upgrade.php') ) {\n require_once $_CONF['path'].'plugins/links/upgrade.php';\n return links_upgrade();\n } else {\n // upgrades are done by the install script - return a generic error\n COM_errorLog(\"Links plugin upgrade function not implemented\");\n return 3001;\n }\n}", "function wp_update_network_counts() {\n\twp_update_network_user_counts();\n\twp_update_network_site_counts();\n}", "private function updateLinkModels() {\n foreach ($this->models as $model) {\n $this->registerLinkModels($model);\n }\n }", "public function createSitemap() {\n if (!isset( $this->urls )) {\n throw new BadMethodCallException(\"To create sitemap, call addUrl or addUrls function first.\");\n }\n if ($this->maxURLsPerSitemap > 50000) {\n throw new InvalidArgumentException(\"More than 50,000 URLs per single sitemap is not allowed.\");\n }\n\n $generatorInfo = ' Generated on ' . Helper::getDateString() . ' ';\n\n foreach (array_chunk($this->urls,\n $this->maxURLsPerSitemap) as $sitemap) {\n $sitemapDocument = new DomDocument('1.0',\n 'UTF-8');\n $sitemapDocument->formatOutput = true;\n $sitemapDocument->preserveWhiteSpace = false;\n $comment = $sitemapDocument->createComment($generatorInfo);\n $sitemapDocument->appendChild($comment);\n $root = $sitemapDocument->createElement('urlset');\n $root->setAttribute('xmlns',\n 'http://www.sitemaps.org/schemas/sitemap/0.9');\n $root = $sitemapDocument->appendChild($root);\n\n foreach ($sitemap as $url) {\n if ($url instanceof SitemapUrl) {\n $urlElement = $sitemapDocument->createElement('url');\n $row = $root->appendChild($urlElement);\n\n $locElement = $sitemapDocument->createElement('loc',\n htmlspecialchars($url->getLocation(),\n ENT_QUOTES,\n 'UTF-8'));\n $row->appendChild($locElement);\n\n if ($url->getLastModification() !== null) {\n $lastModElement = $sitemapDocument->createElement('lastmod',\n $url->getLastModification());\n $row->appendChild($lastModElement);\n }\n if ($url->getChangeFrequency() !== null) {\n $changeFreqElement = $sitemapDocument->createElement('changefreq',\n $url->getChangeFrequency());\n $row->appendChild($changeFreqElement);\n }\n if ($url->getPriority() !== null) {\n $priorityElement = $sitemapDocument->createElement('priority',\n $url->getPriority());\n $row->appendChild($priorityElement);\n }\n }\n }\n if (strlen($sitemapDocument->saveXML()) > 10485760) {\n throw new LengthException(\"Sitemap size is more than 10MB (10,485,760), please decrease maxURLsPerSitemap variable.\");\n }\n $sitemap = new Sitemap();\n $sitemap->setSitemapContent($sitemapDocument->saveXML());\n $this->sitemaps[] = $sitemap;\n\n }\n if (sizeof($this->sitemaps) > 1000) {\n throw new LengthException(\"Sitemap index can contains 1000 single sitemaps. Perhaps You trying to submit too many URLs.\");\n }\n if (sizeof($this->sitemaps) > 1) {\n for ($i = 0; $i < sizeof($this->sitemaps); $i++) {\n $sitemap = $this->sitemaps[$i];\n if ($sitemap instanceof Sitemap) {\n $sitemap->setFileName(str_replace(\".xml\",\n ( $i + 1 ) . \".xml.gz\",\n $this->sitemapFileName));\n }\n }\n\n $sitemapIndexDocument = new DomDocument('1.0',\n 'UTF-8');\n $sitemapIndexDocument->formatOutput = true;\n $sitemapIndexDocument->preserveWhiteSpace = false;\n\n $comment = $sitemapIndexDocument->createComment($generatorInfo);\n $sitemapIndexDocument->appendChild($comment);\n\n $root = $sitemapIndexDocument->createElement('sitemapindex');\n $root->setAttribute('xmlns',\n 'http://www.sitemaps.org/schemas/sitemap/0.9');\n\n $root = $sitemapIndexDocument->appendChild($root);\n\n foreach ($this->sitemaps as $sitemap) {\n if ($sitemap instanceof Sitemap) {\n $sitemapElement = $sitemapIndexDocument->createElement('sitemap');\n $row = $root->appendChild($sitemapElement);\n\n $locElement = $sitemapIndexDocument->createElement('loc',\n $this->baseURL . HttpClient::HTTP_PATH_SEPARATOR . htmlentities($sitemap->getFileName()));\n $row->appendChild($locElement);\n\n $lastModElement = $sitemapIndexDocument->createElement('lastmod',\n Helper::getDateString());\n $row->appendChild($lastModElement);\n\n }\n }\n $this->sitemapFullURL = $this->baseURL . HttpClient::HTTP_PATH_SEPARATOR . $this->sitemapIndexFileName;\n $this->sitemapIndex = new Sitemap($this->sitemapIndexFileName,\n $sitemapIndexDocument->saveXML());\n }\n else {\n if ($this->createGZipFile) {\n $this->sitemapFullURL = $this->baseURL . HttpClient::HTTP_PATH_SEPARATOR . $this->sitemapFileName . \".gz\";\n }\n else {\n $this->sitemapFullURL = $this->baseURL . HttpClient::HTTP_PATH_SEPARATOR . $this->sitemapFileName;\n }\n $sitemap = $this->sitemaps[0];\n if ($sitemap instanceof Sitemap) {\n $sitemap->setFileName($this->sitemapFileName);\n }\n }\n }", "private function setUpGapsNumber()\n\t{\n\t\t$is_no_gaps_needed = ($this->items_number % $this->columns_number !== 0);\n\t\t\n\t\t$this->gaps_number = ($is_no_gaps_needed) ? $this->columns_number - ($this->items_number % $this->columns_number) : 0;\n\t}", "public function index()\n\t{\n\t\t$lastModTime = gmdate('Y-m-d\\TH:i:s+00:00', time() - 3600);\n\t\t$noOfPagesForAds = Advertisement::where('is_active', 'active')->count()/env(\"MAX_ADS_PER_PAGE_SITEMAP\");\n\n\t\t$setUrls\t=\t[\n\t\t\t\t\t\t\t[\n\t\t\t\t\t\t\t\t'set_name' \t\t=>\t\"public pages\",\n\t\t\t\t\t\t\t\t'loc'\t\t\t=>\troute('sitemap.public'),\n\t\t\t\t\t\t\t\t\"lastmod\"\t\t=>\t$lastModTime,\n\t\t\t\t\t\t\t\t\"changefreq\"\t=>\t\"hourly\",\n\t\t\t\t\t\t\t\t\"priority\"\t\t=>\t1.0\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t];\n\n\t\tif($noOfPagesForAds>1)\n\t\t{\n\t\t\tfor ($x = 0; $x < $noOfPagesForAds; $x++)\n\t\t\t{\n\t\t\t\tarray_push($setUrls,\t[\n\t\t\t\t\t\t\t\t\t\t'set_name' \t\t=>\t\"listing items \".$x+1,\n\t\t\t\t\t\t\t\t\t\t'loc'\t\t\t=>\troute('sitemap.listing', ['page_index' => $x]),\n\t\t\t\t\t\t\t\t\t\t\"lastmod\"\t\t=>\t$lastModTime,\n\t\t\t\t\t\t\t\t\t\t\"changefreq\"\t=>\t\"hourly\",\n\t\t\t\t\t\t\t\t\t\t\"priority\"\t\t=>\t1.0\n\t\t\t\t\t\t\t\t\t]);\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\tarray_push($setUrls,\t[\n\t\t\t\t\t\t\t\t\t\t'set_name' \t\t=>\t\"listing items\",\n\t\t\t\t\t\t\t\t\t\t'loc'\t\t\t=>\troute('sitemap.listing'),\n\t\t\t\t\t\t\t\t\t\t\"lastmod\"\t\t=>\t$lastModTime,\n\t\t\t\t\t\t\t\t\t\t\"changefreq\"\t=>\t\"hourly\",\n\t\t\t\t\t\t\t\t\t\t\"priority\"\t\t=>\t0.9\n\t\t\t\t\t\t\t\t\t]);\n\t\t}\n\n\t\t$content = View::make('sitemap.index')\n\t\t\t\t\t\t->with('setUrls', $setUrls);\n\t\treturn Response::make($content, '200')\n\t\t\t\t\t->header('Content-Type', 'text/xml');\n\t}", "function update_332012() { \n\n\t\t/* Clean Up Indexes */\n\n\t\t// Prevent the script from timing out\n\t\tset_time_limit(0);\n\n\t\t// Access List\n\t\t$sql = \"ALTER TABLE `access_list` DROP INDEX `ip`\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `access_list` ADD INDEX `start` (`start`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\t\t\n\t\t$sql = \"ALTER TABLE `access_list` ADD INDEX `end` (`end`)\"; \n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `access_list` ADD INDEX `level` (`level`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `access_list` ADD `type` VARCHAR( 64 ) NOT NULL DEFAULT 'interface' AFTER `level`\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// Album Table\n\t\t$sql = \"ALTER TABLE `album` DROP INDEX `id`\";\n\t\t$db_results = mysql_query($sql, dbh());\n\t\n\t\t$sql = \"ALTER TABLE `album` ADD INDEX `year` (`year`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// Artist Table\n\t\t$sql = \"ALTER TABLE `artist` DROP INDEX `id`\";\n\t\t$db_results = mysql_query($sql, dbh()); \n\n\t\t// Flagged\n\t\t$sql = \"ALTER TABLE `flagged` ADD INDEX `object_id` (`object_id`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `flagged` ADD INDEX `object_type` (`object_type`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `flagged` ADD INDEX `user` (`user`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// Genre\n\t\t$sql = \"ALTER TABLE `genre` ADD INDEX `name` (`name`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// IP Tracking\n\t\t$sql = \"ALTER TABLE `ip_history` ADD INDEX `ip` (`ip`)\";\n\t\t$db_results = mysql_query($sql,dbh());\n\n\t\t$sql = \"ALTER TABLE `ip_history` CHANGE `username` `user` VARCHAR( 128 ) NULL DEFAULT NULL\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `ip_history` ADD `id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `ip_history` DROP `connections`\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\n\t\t// Live Stream\n\t\t$sql = \"ALTER TABLE `live_stream` ADD INDEX `name` (`name`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `live_stream` ADD INDEX `genre` (`genre`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `live_stream` ADD INDEX `catalog` (`catalog`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// Object_count\n\t\t$sql = \"ALTER TABLE `object_count` CHANGE `object_type` `object_type` ENUM( 'album', 'artist', 'song', 'playlist', 'genre', 'catalog', 'live_stream', 'video' ) NOT NULL DEFAULT 'song'\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// Playlist\n\t\t$sql = \"ALTER TABLE `playlist` DROP INDEX `id`\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `playlist` ADD INDEX `type` (`type`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// Preferences\n\t\t$sql = \"ALTER TABLE `preferences` ADD INDEX `catagory` (`catagory`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `preferences` ADD INDEX `name` (`name`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// Session\n\t\t$sql = \"ALTER TABLE `session` ADD INDEX `expire` (`expire`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// Song\n\t\t$sql = \"ALTER TABLE `song` DROP INDEX `id`\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// User_catalog\n\t\t$sql = \"ALTER TABLE `user_catalog` ADD `id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `user_catalog` ADD INDEX `user` (`user`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `user_catalog` ADD INDEX `catalog` (`catalog`)\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// User_preference\n\t\t$sql = \"ALTER TABLE `user_preference` DROP INDEX `user_2`\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"ALTER TABLE `user_preference` DROP INDEX `preference_2`\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t// Preferences, remove colors,font,font-size\n\t\t$sql = \"DELETE FROM preferences WHERE `catagory`='theme' AND `name` !='theme_name'\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n\t\t$sql = \"UPDATE preferences SET `catagory`='interface' WHERE `catagory`='theme'\";\n\t\t$db_results = mysql_query($sql, dbh());\n\n /* Fix every users preferences */\n $sql = \"SELECT * FROM user\";\n $db_results = mysql_query($sql, dbh());\n\n $user = new User();\n $user->fix_preferences('-1');\n\n while ($r = mysql_fetch_assoc($db_results)) {\n $user->username_fix_preferences($r['username']);\n } // while results\n\n\t\t$this->set_version('db_version','332012');\n\n\t}", "public function index()\n {\n $sitemap = \\App::make('sitemap');\n\n // set cache key (string), duration in minutes (Carbon|Datetime|int), turn on/off (boolean)\n // by default cache is disabled\n $sitemap->setCache('laravel.sitemap', 60);\n\n // check if there is cached sitemap and build new only if is not\n if (!$sitemap->isCached()) {\n // listing pages\n $sitemap->add(route('index'), now(), '0.9', 'daily');\n $sitemap->add(route('addons.index'), now(), '0.8', 'weekly');\n $sitemap->add(route('pages.index'), now(), '0.3', 'monthly');\n $sitemap->add(route('announces.index'), now(), '0.3', 'monthly');\n\n // articles\n foreach (Article::active()->cursor() as $article) {\n $sitemap->add(\n route('articles.show', $article->slug), $article->updated_at,\n self::PRIORITIES[$article->post_type] ?? '0.5',\n 'monthly'\n );\n }\n\n // users\n foreach (UserAddonCount::cursor() as $user_addon) {\n $latest = Article::active()->where('user_id', $user_addon->user_id)->first();\n $sitemap->add(\n route('user', $user_addon->user_id), $latest->updated_at,\n '0.3',\n 'weekly'\n );\n }\n\n // pak/addons\n foreach (PakAddonCount::cursor() as $pak_addon) {\n $latest = Article::active()\n ->whereHas('categories', function($query) use ($pak_addon) {\n $query->where('type', 'pak')->where('slug', $pak_addon->pak_slug);\n })\n ->whereHas('categories', function($query) use ($pak_addon) {\n $query->where('type', 'addon')->where('slug', $pak_addon->addon_slug);\n })\n ->first();\n $sitemap->add(\n route('category.pak.addon', [$pak_addon->pak_slug, $pak_addon->addon_slug]), $latest->updated_at,\n '0.3',\n 'weekly'\n );\n }\n }\n\n // show your sitemap (options: 'xml' (default), 'html', 'txt', 'ror-rss', 'ror-rdf')\n return $sitemap->render('xml');\n }", "function RunUpgrade()\n\t{\n\t\tif ($this->IndexExists('links', 'url')) {\n\t\t\t$status = $this->Db->Query('ALTER TABLE ' . SENDSTUDIO_TABLEPREFIX . 'links DROP INDEX ' . SENDSTUDIO_TABLEPREFIX . 'links_url_idx');\n if ($status === false) {\n return false;\n }\n\t\t}\n\n $status = $this->Db->Query('ALTER TABLE ' . SENDSTUDIO_TABLEPREFIX . 'links CHANGE url url TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL');\n\t\tif ($status === false) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t}" ]
[ "0.589505", "0.58107764", "0.56609184", "0.55968916", "0.5479719", "0.54405016", "0.5310883", "0.53069717", "0.5285729", "0.52707607", "0.52343667", "0.5221715", "0.5184398", "0.51754653", "0.516382", "0.5118726", "0.5113717", "0.5085534", "0.507528", "0.50624466", "0.49695355", "0.494465", "0.49444303", "0.4917659", "0.49087727", "0.48845008", "0.48715883", "0.4865764", "0.48524413", "0.4850559" ]
0.799566
0
Migrates the excluded object settings.
protected function migrateExcludedPages() { if ( empty( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_excl_pages'] ) ) { return; } $excludedPosts = aioseo()->options->sitemap->video->advancedSettings->excludePosts; if ( ! empty( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_excl_pages'] ) ) { $pages = explode( ',', $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_excl_pages'] ); if ( count( $pages ) ) { foreach ( $pages as $page ) { $page = trim( $page ); $id = intval( $page ); if ( ! $id ) { $post = get_page_by_path( $page, OBJECT, aioseo()->helpers->getPublicPostTypes( true ) ); if ( $post && is_object( $post ) ) { $id = $post->ID; } } if ( $id ) { $post = get_post( $id ); if ( ! is_object( $post ) ) { continue; } $excludedPost = new \stdClass(); $excludedPost->value = $id; $excludedPost->type = $post->post_type; $excludedPost->label = $post->post_name; $excludedPost->link = get_permalink( $id ); array_push( $excludedPosts, wp_json_encode( $excludedPost ) ); } } } } aioseo()->options->sitemap->video->advancedSettings->excludePosts = $excludedPosts; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function migrateIncludedObjects() {\n\t\tif ( ! isset( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_posttypes'] ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t$publicPostTypes = aioseo()->helpers->getPublicPostTypes( true );\n\n\t\tif ( in_array( 'all', $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_posttypes'], true ) ) {\n\t\t\taioseo()->options->sitemap->video->postTypes->all = true;\n\t\t\taioseo()->options->sitemap->video->postTypes->included = array_values( $publicPostTypes );\n\t\t} else {\n\t\t\taioseo()->options->sitemap->video->postTypes->all = false;\n\t\t\taioseo()->options->sitemap->video->postTypes->included =\n\t\t\t\tarray_values( array_intersect( $publicPostTypes, $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_posttypes'] ) );\n\t\t}\n\t}", "function ot_maybe_migrate_settings() {\n $settings_id = apply_filters( 'ot_migrate_settings_id', '' );\n \n // Attempt to migrate Settings \n if ( ! empty( $settings_id ) && get_option( ot_settings_id() ) === false && ot_settings_id() !== $settings_id ) {\n \n // Old settings\n $settings = get_option( $settings_id );\n \n // Check for array keys\n if ( isset( $settings['sections'] ) && isset( $settings['settings'] ) ) {\n \n update_option( ot_settings_id(), $settings );\n \n }\n \n }\n\n }", "public static function ignoreMigrations(): void\n {\n self::$runsMigrations = false;\n }", "public function filterExclude($excludedFields = [])\n {\n array_push($excludedFields, 'primary_key_id_name');\n array_push($excludedFields, 'pk');\n array_push($excludedFields, 'session');\n array_push($excludedFields, 'database');\n\n foreach ($this as $field => $value) {\n if (in_array($field, $excludedFields)) {\n unset($this->$field);\n }\n }\n\n// $this->removeStaticFields();\n }", "function ignoreAll(){\n\t\t$this->loadDefinitions($this->classes);\n\t\t$this->installed = $this->versions;\n\t\t$this->saveInstalled();\n\t}", "private function migrateKnowledgeGraphSettings() {\n\t\tif ( ! empty( $this->options['company_or_person'] ) ) {\n\t\t\taioseo()->options->searchAppearance->global->schema->siteRepresents =\n\t\t\t\t'company' === $this->options['company_or_person'] ? 'organization' : 'person';\n\t\t}\n\n\t\t$settings = [\n\t\t\t'company_or_person_user_id' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', 'person' ] ],\n\t\t\t'person_logo' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', 'personLogo' ] ],\n\t\t\t'person_name' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', 'personName' ] ],\n\t\t\t'company_name' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', 'organizationName' ] ],\n\t\t\t'company_logo' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', 'organizationLogo' ] ],\n\t\t];\n\n\t\taioseo()->importExport->yoastSeo->helpers->mapOldToNew( $settings, $this->options );\n\t}", "public function removePropsNotInDatabase() {\n $databaseProps = static::fetchDatabaseFields();\n\n $filterFn = function($value, $prop) use ($databaseProps) { return in_array($prop, $databaseProps); };\n\n return $this->setAll(\n Collection::instance($this->getAll())->filter($filterFn)->toArray()\n );\n }", "public function cleanEmconf() {\n\t\t$arrayAdditionalEmconf = $this->getArrayAdditionalEmconf();\n\n\t\tforeach ($arrayAdditionalEmconf as $emconfKey => $value) {\n\t\t\tif (in_array($emconfKey, $this->getDeprecatedEmconfKeys())) {\n\t\t\t\tunset($arrayAdditionalEmconf[$emconfKey]);\n\t\t\t}\n\t\t}\n\t\t$this->setArrayAdditionalEmconf($arrayAdditionalEmconf);\n\n\t}", "public function cleanupConfig()\n {\n $this->configRepository->save('app.enable_legacy_src_namespace', false);\n $this->configRepository->set(CONFIG_ORM_METADATA_APPLICATION, '');\n }", "public function saved_values_ignore() {\n\t\t\t\t$this->saved_values_ignore = true;\n\t\t\t}", "private function filter_nonmigrated_files() {\n if($this->is_table_exist()) {\n $migrated_version_list = $this->get_migrated_version_list();\n $this->_non_migrated_files = array_diff($this->_all_migration_files, $migrated_version_list);\n } else {\n // no version in db, all files add need to migrate\n $this->_non_migrated_files = $this->_all_migration_files;\n }\n\n }", "function drush_deconfig_remove_hidden() {\n $storage = Drupal::service('config.storage.sync');\n if (!$storage instanceof DeconfigStorage) {\n drush_set_error('BAD_STORAGE', \"config.storage.sync is not Deconfig. Someone's messed with it?\");\n return;\n }\n\n // Loop through all config items in all collections and rewrite them (which\n // removes hidden configuration) if loading failed.\n $collections = [StorageInterface::DEFAULT_COLLECTION] + $storage->getAllCollectionNames();\n foreach ($collections as $collection) {\n $storage = $storage->createCollection($collection);\n foreach ($storage->listAll() as $name) {\n try {\n $storage->read($name);\n }\n catch (FoundHiddenConfigurationError $e) {\n $storage->write($name, $storage->readRaw($name));\n drush_log('Removed hidden configuration from \"' . $name . '\"', LogLevel::OK);\n }\n }\n }\n}", "static function dropTablesFromConfig(): void\n\t{\n\t\t$classList = $_SERVER['config']('migration');\n\t\t$migrateTool = MetaTable::createImmutable(DBFacade::getImmutableDBConnection());\n\n\t\t$migrateTool->doDeleteTableFromMigrateAble($classList);\n\t}", "public function ignoreUnmappedProperties()\n {\n $this->verifyAllPropertiesMapped = false;\n }", "public function setExclude(array $exclude): void;", "protected function resolveAuditExclusions()\n {\n $this->excludedAttributes = $this->getAuditExclude();\n\n // When in strict mode, hidden and non visible attributes are excluded\n if ($this->getAuditStrict()) {\n // Hidden attributes\n $this->excludedAttributes = array_merge($this->excludedAttributes, $this->hidden);\n\n // Non visible attributes\n if ($this->visible) {\n $invisible = array_diff(array_keys($this->attributes), $this->visible);\n\n $this->excludedAttributes = array_merge($this->excludedAttributes, $invisible);\n }\n }\n\n // Exclude Timestamps\n if (!$this->getAuditTimestamps()) {\n if ($this->getCreatedAtColumn()) {\n $this->excludedAttributes[] = $this->getCreatedAtColumn();\n }\n if ($this->getUpdatedAtColumn()) {\n $this->excludedAttributes[] = $this->getUpdatedAtColumn();\n }\n if (in_array(SoftDeletes::class, class_uses_recursive(get_class($this)))) {\n $this->excludedAttributes[] = $this->getDeletedAtColumn();\n }\n }\n\n // Valid attributes are all those that made it out of the exclusion array\n $attributes = Arr::except($this->attributes, $this->excludedAttributes);\n\n foreach ($attributes as $attribute => $value) {\n // Apart from null, non scalar values will be excluded\n if (\n is_array($value) ||\n (is_object($value) &&\n !method_exists($value, '__toString') &&\n !($value instanceof \\UnitEnum))\n ) {\n $this->excludedAttributes[] = $attribute;\n }\n }\n }", "private function getExcludedFields()\n {\n //List of all the section names to be excluded\n return [\"Theme\", \"Storage\", \"Core\", \"Logs\", \"Hidden\", \"Memcached\", \"Redis\", \"AWS\", \"Pusher\", \"Mix Pusher\", \"HiddenDb\", \"Mail\", \"Stripe\"];\n }", "function leadin_unpunt_migration ()\n{\n update_option('leadin_puntMigration', 'false');\n}", "private function migrateNoindexSettings() {\n\t\tif ( ! empty( $this->options['noindex-author-wpseo'] ) ) {\n\t\t\taioseo()->options->searchAppearance->archives->author->show = false;\n\t\t\taioseo()->options->searchAppearance->archives->author->advanced->robotsMeta->default = false;\n\t\t\taioseo()->options->searchAppearance->archives->author->advanced->robotsMeta->noindex = true;\n\t\t} else {\n\t\t\taioseo()->options->searchAppearance->archives->author->show = true;\n\t\t}\n\n\t\tif ( ! empty( $this->options['noindex-archive-wpseo'] ) ) {\n\t\t\taioseo()->options->searchAppearance->archives->date->show = false;\n\t\t\taioseo()->options->searchAppearance->archives->date->advanced->robotsMeta->default = false;\n\t\t\taioseo()->options->searchAppearance->archives->date->advanced->robotsMeta->noindex = true;\n\t\t} else {\n\t\t\taioseo()->options->searchAppearance->archives->date->show = true;\n\t\t}\n\t}", "public function wash()\n {\n foreach ($this->getDirty() as $name) {\n if (isset($this->settings[$name])) {\n $this->setting->updateOrCreate(\n ['name' => $name],\n ['value' => $this->settings[$name]]\n );\n } else {\n $this->setting->destroyByName($name);\n }\n }\n\n if ($this->dirtyCount) {\n $this->event->fire(new SettingsSaved);\n $this->dirty = [];\n }\n\n $this->dirtyCount = 0;\n }", "public function setExcludeAll()\n {\n $this->setExclusionPolicy(EntityConfig::EXCLUSION_POLICY_ALL);\n }", "function handle_migrations(){\n\t\t$migrations = apply_filters( 'siteorigin_settings_migrated_settings', array( ) );\n\t\tif( empty( $migrations ) ) return;\n\n\t\t$migration_key = md5( serialize( $migrations ) );\n\t\tif( $migration_key !== get_theme_mod( 'migration_key' ) ) {\n\t\t\tforeach( $migrations as $to => $from ) {\n\t\t\t\t$raw_to = get_theme_mod( 'theme_settings_' . $to, null );\n\t\t\t\t$raw_from = get_theme_mod( 'theme_settings_' . $from, null );\n\n\t\t\t\tif( is_null( $raw_to ) && ! is_null( $raw_from ) ) {\n\t\t\t\t\tset_theme_mod( 'theme_settings_' . $to, $raw_from );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tset_theme_mod( 'migration_key', $migration_key );\n\t\t}\n\t}", "public function safeUp()\r\n {\r\n $this->insert('settings', array(\r\n 'id' => 1\r\n ));\r\n }", "public function afterInit() {\r\n\t\r\n\t // add available public custom post types to settings\r\n\t foreach ( get_post_types( array( 'public' => true, '_builtin' => false ), 'objects' ) as $post_type ) {\r\n\t\t\r\n\t\t // skip product post type when WC is active\r\n\t\t if ( isWooCommerceActive() && $post_type->name == 'product' ) {\r\n\t\t\t continue;\r\n\t\t }\r\n\t\t\r\n\t\t // skip download post type when EDD is active\r\n\t\t if ( isEddActive() && $post_type->name == 'download' ) {\r\n\t\t\t continue;\r\n\t\t }\r\n\t\t\r\n\t\t $this->addOption( 'general_event_on_' . $post_type->name . '_enabled', 'checkbox', false );\r\n\t\t\r\n\t }\r\n\t\r\n\t maybeMigrate();\r\n\t \r\n }", "public function ignoreUpgrade()\n {\n $result = $this->loadModel('setting')->setItems('system.common.global', array('ignoreUpgrade' => true), 'all');\n if($result) $this->send(array('result' => 'success', 'locate' => inlink('index')));\n $this->send(array('result' => 'fail', 'message' => $this->lang->fail));\n }", "public static function ignoreMigrations(): static\n {\n static::$runsMigrations = false;\n\n return new static;\n }", "public function setExcludes(array $excludes);", "public static function ignoreMigrations(): static\n {\n static::$runsMigrations = false;\n\n return new static();\n }", "private function v1711_upgrades() {\n\n\t\t$settings = affiliate_wp()->settings->get_all();\n\n\t\t// Ensures settings are not lost if the duplicate email/subject fields were used before they were removed\n\t\tif( ! empty( $settings['rejected_email'] ) && empty( $settings['rejection_email'] ) ) {\n\t\t\t$settings['rejection_email'] = $settings['rejected_email'];\n\t\t\tunset( $settings['rejected_email'] );\n\t\t}\n\n\t\tif( ! empty( $settings['rejected_subject'] ) && empty( $settings['rejection_subject'] ) ) {\n\t\t\t$settings['rejection_subject'] = $settings['rejected_subject'];\n\t\t\tunset( $settings['rejected_subject'] );\n\t\t}\n\n\t\t// Update settings.\n\t\taffiliate_wp()->settings->set( $settings, $save = true );\n\n\t\t$this->upgraded = true;\n\n\t}", "public function setExcluded(?bool $exclude = true): void\n {\n $this->exclude = $exclude;\n }" ]
[ "0.59189713", "0.5681815", "0.5565045", "0.5464177", "0.53895676", "0.53147995", "0.52970827", "0.52791", "0.52754015", "0.52663255", "0.5250198", "0.52410644", "0.52376485", "0.5188685", "0.5185304", "0.5163938", "0.5145246", "0.50838864", "0.50718284", "0.50389045", "0.50284445", "0.5028081", "0.50173336", "0.49943608", "0.49168342", "0.49163494", "0.48898536", "0.48688763", "0.48615822", "0.48396093" ]
0.5878641
1
Migrates the objects that are included in the video sitemap.
protected function migrateIncludedObjects() { if ( ! isset( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_posttypes'] ) ) { return; } $publicPostTypes = aioseo()->helpers->getPublicPostTypes( true ); if ( in_array( 'all', $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_posttypes'], true ) ) { aioseo()->options->sitemap->video->postTypes->all = true; aioseo()->options->sitemap->video->postTypes->included = array_values( $publicPostTypes ); } else { aioseo()->options->sitemap->video->postTypes->all = false; aioseo()->options->sitemap->video->postTypes->included = array_values( array_intersect( $publicPostTypes, $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_posttypes'] ) ); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function migrateExcludedPages() {\n\t\tif ( empty( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_excl_pages'] ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t$excludedPosts = aioseo()->options->sitemap->video->advancedSettings->excludePosts;\n\t\tif ( ! empty( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_excl_pages'] ) ) {\n\t\t\t$pages = explode( ',', $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_excl_pages'] );\n\t\t\tif ( count( $pages ) ) {\n\t\t\t\tforeach ( $pages as $page ) {\n\t\t\t\t\t$page = trim( $page );\n\t\t\t\t\t$id = intval( $page );\n\t\t\t\t\tif ( ! $id ) {\n\t\t\t\t\t\t$post = get_page_by_path( $page, OBJECT, aioseo()->helpers->getPublicPostTypes( true ) );\n\t\t\t\t\t\tif ( $post && is_object( $post ) ) {\n\t\t\t\t\t\t\t$id = $post->ID;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( $id ) {\n\t\t\t\t\t\t$post = get_post( $id );\n\t\t\t\t\t\tif ( ! is_object( $post ) ) {\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t$excludedPost = new \\stdClass();\n\t\t\t\t\t\t$excludedPost->value = $id;\n\t\t\t\t\t\t$excludedPost->type = $post->post_type;\n\t\t\t\t\t\t$excludedPost->label = $post->post_name;\n\t\t\t\t\t\t$excludedPost->link = get_permalink( $id );\n\n\t\t\t\t\t\tarray_push( $excludedPosts, wp_json_encode( $excludedPost ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\taioseo()->options->sitemap->video->advancedSettings->excludePosts = $excludedPosts;\n\t}", "private function regenerateSitemap() {\n\t\tif (\n\t\t\tisset( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_rewrite'] ) &&\n\t\t\tempty( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_rewrite'] )\n\t\t) {\n\t\t\t$files = aioseo()->sitemap->file->files();\n\t\t\t$detectedFiles = [];\n\t\t\tforeach ( $files as $filename ) {\n\t\t\t\t// We don't want to delete the video sitemap here at all.\n\t\t\t\t$isVideoSitemap = preg_match( '#.*video.*#', $filename ) ? true : false;\n\t\t\t\tif ( $isVideoSitemap ) {\n\t\t\t\t\t$detectedFiles[] = $filename;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$wpfs = aioseo()->helpers->wpfs();\n\t\t\tif ( count( $detectedFiles ) && is_object( $wpfs ) ) {\n\t\t\t\tforeach ( $detectedFiles as $file ) {\n\t\t\t\t\t@$wpfs->delete( $file, false, 'f' );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$sitemapAddons = aioseo()->sitemap->addons;\n\t\t\t$videoAddon = aioseo()->addons->getAddon( 'aioseo-video-sitemap' );\n\t\t\tif ( empty( $sitemapAddons ) && aioseo()->license->isActive() && $videoAddon->isActive ) {\n\t\t\t\ttry {\n\t\t\t\t\tif ( ! as_next_scheduled_action( 'aioseo_regenerate_video_sitemap' ) ) {\n\t\t\t\t\t\tas_schedule_single_action( time() + 5, 'aioseo_regenerate_video_sitemap', [], 'aioseo' );\n\t\t\t\t\t}\n\t\t\t\t} catch ( \\Exception $e ) {\n\t\t\t\t\t// Do nothing.\n\t\t\t\t}\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\taioseo()->sitemap->file->generate( true );\n\t\t}\n\t}", "private function migrateLinksPerIndex() {\n\t\tif ( ! empty( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_max_posts'] ) ) {\n\t\t\t$value = intval( $this->oldOptions['modules']['aiosp_video_sitemap_options']['aiosp_video_sitemap_max_posts'] );\n\t\t\tif ( ! $value ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t$value = $value > 50000 ? 50000 : $value;\n\t\t\taioseo()->options->sitemap->video->linksPerIndex = $value;\n\t\t}\n\t}", "function perform_post_migration_activities() {\n\t//After applying all the DB Changes,Here we clear the Smarty cache files\n\tclear_smarty_cache();\n\t//Writing tab data in flat file\n\tcreate_tab_data_file();\n\tcreate_parenttab_data_file();\n}", "public static function maybe_migrate() {\n\t\t$migrator_instance = static::get_migrator_instance();\n\n\t\tif ( ! $migrator_instance->is_finished() ) {\n\t\t\tstatic::insert_default_categories();\n\n\t\t\t$old_categories = static::get_old_categories();\n\t\t\t$migrator_instance->migrate_x_items( count( $old_categories ) );\n\t\t\t$templates = Template::get_old_templates();\n\n\t\t\t/* update the id_category for the templates */\n\t\t\tforeach ( $templates as $index => $template ) {\n\t\t\t\tif ( ! empty( static::$migration_replacement_map[ $template['id_category'] ] ) ) {\n\t\t\t\t\t$templates[ $index ]['id_category'] = static::$migration_replacement_map[ $template['id_category'] ];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tTemplate::save_old_templates( $templates );\n\t\t\tstatic::save_old_categories( [] );\n\n\t\t\t$migrator_instance->finish();\n\t\t}\n\t}", "private function publishSitemap(): void\n {\n $this->clearPreviousSitemaps();\n Directory::checkDirectory($this->getSitemapsDirectory());\n $dir = new RecursiveDirectoryIterator($this->getTempDirectory());\n $iterator = new RecursiveIteratorIterator($dir);\n $files = new RegexIterator(\n $iterator,\n \"/^(?'path'(([a-zA-Z]:)|((\\\\\\\\|\\\\/){1,2}\\\\w+)?)((\\\\\\\\|\\\\/)(\\\\w[\\\\w ]*.*))+({$this->getExt()}){1})$/\",\n RegexIterator::GET_MATCH\n );\n $fileList = [];\n\n foreach ($files as $file) {\n if (isset($file['path'])) {\n $fileList[] = $file['path'];\n }\n }\n\n $currentFile = 0;\n\n foreach ($fileList as $file) {\n if (file_exists($file)) {\n ++$currentFile;\n $destination = str_replace($this->getTempDirectory(), $this->getPublicDirectory(), $file);\n rename($file, $destination);\n } else {\n Directory::removeDir($this->getTempDirectory());\n throw new Exception('Couldn\\'t find generated sitemap file.');\n }\n }\n\n Directory::removeDir($this->getTempDirectory());\n }", "public function updateVideos()\n\t{\t\t\n\t\t$this->updateObject(\n\t\t\tarray(\n\t\t\t\t\"table_name\" => \"facebook_videos\",\n\t\t\t\t\"likes\" => true,\n\t\t\t\t\"date_field\" => \"created_time\",\n\t\t\t\t\"keys\" => array(\n\t\t\t\t\t\"from_name\" => array(\"from\", \"name\"),\n\t\t\t\t\t\"name\" => \"name\",\n\t\t\t\t\t\"description\" => \"description\",\n\t\t\t\t\t\"picture\" => \"picture\",\n\t\t\t\t\t\"embed_html\" => \"embed_html\"\n\t\t\t\t)\n\t\t\t),\n\t\t\t\"/me/videos\"\n\t\t);\n\t}", "function upgrade_100beta2()\n\t{\t\tif ( ! isset($this->db->limit(1)->get('pages')->row()->js))\n\t\t{\n\t\t\t$this->_output .= 'Adding missing pages.js field.<br />';\n\n\t\t\t$this->db->query(\"ALTER TABLE `pages` ADD `js` TEXT CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL AFTER `css`\");\n\n\t\t\t// pages.js was previously ignored from the upgrade\n\t\t\t$pages = $this->db->get('pages_old')->result();\n\n\t\t\tforeach ($pages as $page)\n\t\t\t{\n\t\t\t\tif ($page->js)\n\t\t\t\t{\n\t\t\t\t\t$this->db\n\t\t\t\t\t\t->where('js', '')\n\t\t\t\t\t\t->where('id', $page->id)\n\t\t\t\t\t\t->update('pages', array('js' => $page->js));\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$this->_output .= 'Clearing page cache.<br/>';\n\t\t\t$this->pyrocache->delete_all('pages_m');\n\t\t}\n\n\t\t$this->_output .= 'Moving Google Tracking code from Comments to Integration.<br/>';\n\n\t\t$this->db\n\t\t\t->where('slug', 'ga_tracking')\n\t\t\t->update('settings', array('module' => 'integration'));\n\n\t\t// ------------- Assets conversion ------------------\n\t\tif ($this->db->table_exists('asset_folder'))\n\t\t{\n\t\t\t$this->_output .= 'Moving assets images to Files';\n\n\t\t\t$asset_folder = $this->db->get('asset_folder')->row();\n\n\t\t\t//insert the folder record\n\t\t\t$folder = $this->db->insert('file_folders', array(\n\t\t\t\t'slug' => 'assets-images',\n\t\t\t\t'name' => 'Assets Images',\n\t\t\t\t'date_added' => strtotime($asset_folder->dateadded)\n\t\t\t));\n\n\t\t\t//get all the images and put them in the files table\n\t\t\t$asset_images = $this->db->get('asset')->result();\n\n\t\t\tforeach ($asset_images as $image)\n\t\t\t{\n\t\t\t\t$this->db->insert('files', array(\n\t\t\t\t\t'folder_id' \t=> $folder,\n\t\t\t\t\t'user_id' \t=> $image->user_id,\n\t\t\t\t\t'type'\t\t=> 'i',\n\t\t\t\t\t'name'\t\t=> $image->name,\n\t\t\t\t\t'filename'\t=> $image->filename,\n\t\t\t\t\t'description'\t=> $image->description,\n\t\t\t\t\t'extension'\t=> $image->extension,\n\t\t\t\t\t'mimetype'\t=> $image->mimetype,\n\t\t\t\t\t'width'\t\t=> $image->width,\n\t\t\t\t\t'height'\t=> $image->height,\n\t\t\t\t\t'filesize'\t=> $image->filesize,\n\t\t\t\t\t'date_added'\t=> strtotime($image->dateadded)\n\t\t\t\t));\n\n\t\t\t\t//copy image to files folder\n\t\t\t\tcopy('./uploads/assets/'.$image->id.$image->extension, './uploads/files/'.$image->filename);\n\n\t\t\t}\n\t\t\t//all good, drop the old assets tables\n\t\t\t$this->dbforge->drop_table('asset');\n\t\t\t$this->dbforge->drop_table('asset_folder');\n\n $this->_output .= '<span style=\"color:#339999\"> -- Assets images were successfully moved to Files but you will need to re-insert all images in your pages using the wysiwyg editor.</span><br/>';\n\t\t}\n\t\t// ------------End Assets conversion ----------------\n\n\t\treturn TRUE;\n\t}", "public function migrate() {\n\t\t$end_num = $this->offset + ( $this->amount - 1 );\n\n\t\tfor ( $i = $this->offset; $i <= $end_num; $i++ ) {\n\t\t\t// phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.get_posts_get_posts -- We do not want to use cached results for this process and require current data at time of request.\n\t\t\t$posts = get_posts(\n\t\t\t\t[\n\t\t\t\t\t'numberposts' => 1,\n\t\t\t\t\t'offset' => $i,\n\t\t\t\t\t'include' => $this->include,\n\t\t\t\t\t'post_type' => $this->post_type,\n\t\t\t\t]\n\t\t\t);\n\n\t\t\t$post = isset( $posts[0] ) ? $posts[0] : false;\n\n\t\t\tif ( ! $post ) {\n\t\t\t\tWP_CLI::line( WP_CLI::colorize( '%yNo Post matching get_posts query.%n' ) );\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t$this->process_post( $post );\n\n\t\t\tif ( $this->publish && 'product' !== $this->post_type ) {\n\t\t\t\t$this->deploy_post( $post );\n\t\t\t}\n\t\t}\n\t}", "private static function save()\n\t{\n\t\tself::$sitemap->asXml(self::$sitemapName);\n\t}", "private function updateLinkModels() {\n foreach ($this->models as $model) {\n $this->registerLinkModels($model);\n }\n }", "public function saveObjects()\n {\n foreach ($this->_map AS $index => $League) {\n $this->_League->create();\n if (!isset($League[$this->_FKF['_tmp']])) {\n $leagueData = array($this->name => $this->getInsertFields($League));\n } else {\n $leagueData = array($this->name => $this->getUpdateFields($League));\n }\n\n if (!empty($leagueData[$this->name])) {\n $dbData = $this->_League->save($leagueData);\n $this->_map[$index][$this->_FKF['_tmp']] = $dbData[$this->name][\"id\"];\n }\n }\n }", "private function migrateArticleTags() {\n\t\taioseo()->options->social->facebook->advanced->enable = true;\n\t\taioseo()->options->social->facebook->advanced->generateArticleTags = true;\n\t\taioseo()->options->social->facebook->advanced->usePostTagsInTags = true;\n\t\taioseo()->options->social->facebook->advanced->useKeywordsInTags = false;\n\t\taioseo()->options->social->facebook->advanced->useCategoriesInTags = false;\n\t}", "private function migrateDefaultObjectTypes() {\n\t\tforeach ( aioseo()->helpers->getPublicPostTypes( true ) as $postType ) {\n\t\t\t$settingName = \"aiosp_opengraph_{$postType}_fb_object_type\";\n\t\t\tif ( ! in_array( $settingName, array_keys( $this->oldOptions['modules']['aiosp_opengraph_options'] ), true ) ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t$options = aioseo()->options->noConflict();\n\t\t\tif ( $options->social->facebook->general->dynamic->postTypes->has( $postType ) ) {\n\t\t\t\taioseo()->options->social->facebook->general->dynamic->postTypes->$postType->objectType =\n\t\t\t\t\taioseo()->helpers->sanitizeOption( $this->oldOptions['modules']['aiosp_opengraph_options'][ $settingName ] );\n\t\t\t}\n\n\t\t\tif ( 'post' === $postType ) {\n\t\t\t\taioseo()->options->social->facebook->homePage->objectType =\n\t\t\t\t\taioseo()->helpers->sanitizeOption( $this->oldOptions['modules']['aiosp_opengraph_options'][ $settingName ] );\n\t\t\t}\n\t\t}\n\t}", "public function convert_sermon_manager() {\n\n\t\tif ( ! isset( $_POST['sixtenpresssermonsmigrate_go'] ) && ! isset( $_POST['sixtenpresssermonsmigrate_test'] ) && ! isset( $_POST['sixtenpresssermonsmigrate_copy'] ) ) {\n\t\t\treturn;\n\t\t}\n\t\tif ( ! check_admin_referer( $this->key . '_metanonce', $this->key . '_metanonce' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t$method = 'migrate';\n\t\t$number = isset( $_POST['sixtenpresssermonsmigrate_test'] ) ? 1 : 25;\n\t\tif ( isset( $_POST['sixtenpresssermonsmigrate_copy'] ) ) {\n\t\t\t$method = 'insert';\n\t\t\t$number = -1;\n\t\t}\n\t\t$items = $this->get_old_sermons( $number );\n\t\tif ( ! $items ) {\n\t\t\tupdate_option( $this->key, 1 );\n\t\t\t$this->do_description( __( 'Could not find any sermons to convert.', 'sixtenpress-sermons' ), 'error' );\n\n\t\t\treturn;\n\t\t}\n\n\t\tforeach ( $items as $post ) {\n\t\t\t$do = $method . '_posts';\n\t\t\t$this->$do( $post );\n\t\t}\n\n\t\t$this->do_description( __( 'Sermons converted, thank you!', 'sixtenpress-sermons' ), 'updated' );\n\t}", "public function executeUpdate()\n {\n $this->initImporter();\n Transform\\Transformers\\Transformer::unSerializeMappings();\n EntityPopulator::populateEntities($this->parser);\n $this->serializeLastCreatedIds();\n $this->checkForErrors();\n Transform\\Transformers\\Transformer::serializeMappings();\n }", "function do_206_migration() {\n\tflush_rewrite_rules( true );\n}", "public function node_migration_video() {\n $domain_name = 'http://devnt-americad8.pantheonsite.io/sites/default/files/old_files_11012017/'; //Get Domain Name\n\n $query = \\Drupal::database()->select('z_old_d7_node__video', 'n_v');\n $query->fields('n_v', ['nid', 'vid', 'title', 'language', 'type', 'uid', 'STATUS', 'created', 'changed', 'body_value', 'body_summary', 'body_format', 'field_op_author_nid', 'field_op_video_embed_video_url', 'field_op_section_term_tid', 'field_op_related_nref_nid', 'move_status']);\n $query->condition('move_status', '0', '='); //This record is ready to process and Status - 0\n $query->orderBy('nid', 'ASC');\n $query->range(0, 30);\n $z_results = $query->execute()->fetchAll();\n\n$fp = fopen(\"video.txt\",\"a+\");\n fwrite($fp, PHP_EOL.\"\\n\".\"\\r\\n\");\n fwrite($fp, \"Start-------------\".date(\"Y-m-d H:i:s\").\"-----------------\");\n fwrite($fp, PHP_EOL.\"\\n\".\"\\r\\n\");\n\n\n foreach ($z_results as $z_result) {\n //Update Status - This record is inprocess and Set - Status - 1\n $upd1 = \\Drupal::database()->update('z_old_d7_node__video');\n $upd1->fields(['move_status' =>1,]);\n $upd1->condition('nid', $z_result->nid, '=');\n $upd1->execute();\n\n\tif ($z_result->body_summary == null || $z_result->body_summary == ''){\n\t $summary_value =\ttrim(substr(strip_tags($z_result->body_value), 0, 300));\n } else {\n\t $summary_value = $z_result->body_summary;\n }\n\nfwrite($fp, PHP_EOL.\"\\n\".\"\\r\\n\");\n fwrite($fp, \"--\");\n fwrite($fp, $z_result->nid);\n fwrite($fp, \"--\");\n fwrite($fp, PHP_EOL.\"\\n\".\"\\r\\n\");\n\n\n\t$node = Node::create([\n 'type' => 'video',\n\t\t 'nid' => $z_result->nid,\n\t\t 'vid' => $z_result->vid,\n 'langcode' => $z_result->language,\n 'uid' => $z_result->uid,\n 'status' => $z_result->STATUS,\n 'created' => $z_result->created,\n 'changed' => $z_result->changed,\n 'title' => $z_result->title,\n //Extra fields\n 'body' => array('summary' => $summary_value, 'value' => $z_result->body_value, 'format' => $z_result->body_format,),\n 'field_op_video_embed' => $z_result->field_op_video_embed_video_url,\n 'field_by_author' => $z_result->field_op_author_nid,\n 'field_op_related_nref' => $z_result->field_op_related_nref_nid,\n 'field_section' => $z_result->field_op_section_term_tid,\n 'field_old_d7_nid' => $z_result->nid,\n ]);\n\t $node->save();\n //Update Status - This record has been processed and Set - Status - 2\n\t $upd = \\Drupal::database()->update('z_old_d7_node__video');\n $upd->fields(['move_status' =>2,]);\n $upd->condition('nid', $z_result->nid, '=');\n $upd->execute();\n }//end for loop\n\nfwrite($fp, PHP_EOL.\"\\n\".\"\\r\\n\");\n fwrite($fp, \"END-------------\".date(\"Y-m-d H:i:s\").\"-----------------\").PHP_EOL;\n fclose($fp);\n\n return array('#title' => \"Content Type - Video Page Migration\",'#markup' => \"Records has been Processed!\",);\n}", "private function _migrate_data($scenario)\n\t{\n\t\t$this->EE = get_instance();\n\t\t$db = $this->EE->db;\n\t\t$this->EE->load->library('assets_lib');\n\n\t\tclearstatcache();\n\n\t\tswitch ($scenario)\n\t\t{\n\t\t\tcase '<2 -> 2.0':\n\t\t\t\trequire_once(PATH_THIRD . 'assets/sources/ee/source.ee.php');\n\t\t\t\t$filedirs = array();\n\t\t\t\t$folder_list = array();\n\n\t\t\t\t// load upload preferences and store them in table for Assets\n\t\t\t\t$rows = $db->get('upload_prefs')->result();\n\t\t\t\tforeach ($rows as $filedir)\n\t\t\t\t{\n\t\t\t\t\t$filedirs[$filedir->id] = Assets_ee_source::apply_filedir_overrides($filedir);\n\t\t\t\t}\n\n\t\t\t\t// load physical folder structure\n\t\t\t\tforeach ($filedirs as $id => $filedir)\n\t\t\t\t{\n\t\t\t\t\t$filedir->server_path = Assets_ee_source::resolve_server_path($filedir->server_path);\n\n\t\t\t\t\t$folder_list[$id][] = $filedir->server_path;\n\t\t\t\t\t$this->_load_folder_structure($filedir->server_path, $folder_list[$id]);\n\t\t\t\t}\n\n\t\t\t\t// store the folder structure in database\n\t\t\t\t$subfolders = array();\n\t\t\t\tforeach ($folder_list as $filedir_id => $folders)\n\t\t\t\t{\n\t\t\t\t\t$filedir = $filedirs[$filedir_id];\n\t\t\t\t\tforeach ($folders as $folder)\n\t\t\t\t\t{\n\t\t\t\t\t\t$subpath = substr($folder, strlen($filedir->server_path));\n\t\t\t\t\t\tif (empty($subpath))\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$folder_name = $filedir->name;\n\t\t\t\t\t\t\t$parent_id = NULL;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$path_parts = explode('/', $subpath);\n\t\t\t\t\t\t\t$folder_name = array_pop($path_parts);\n\t\t\t\t\t\t\t$parent_key = $filedir_id . ':' . rtrim(join('/', $path_parts), '/');\n\t\t\t\t\t\t\t$parent_id = isset($subfolders[$parent_key]) ? $subfolders[$parent_key] : 0;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// in case false was returned earlier\n\t\t\t\t\t\t$subpath = $subpath ? rtrim($subpath, '/') . '/' : '';\n\n\t\t\t\t\t\t$folder_entry = array(\n\t\t\t\t\t\t\t'source_type' => 'ee',\n\t\t\t\t\t\t\t'filedir_id' => $filedir_id,\n\t\t\t\t\t\t\t'folder_name' => $folder_name,\n\t\t\t\t\t\t\t'full_path' => $subpath\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\tif ( ! is_null($parent_id))\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$folder_entry['parent_id'] = $parent_id;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t$this->EE->db->insert('assets_folders', $folder_entry);\n\t\t\t\t\t\t$subfolders[$filedir_id . ':' . rtrim($subpath, '/')] = $this->EE->db->insert_id();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// bring up the list of existing assets and update the entries\n\t\t\t\t$rows = $db->get('assets_files')->result();\n\t\t\t\t$pattern = '/\\{filedir_(?P<filedir_id>[0-9]+)\\}(?P<path>.*)/';\n\t\t\t\tforeach ($rows as $asset)\n\t\t\t\t{\n\t\t\t\t\t$asset->connector = 'ee';\n\t\t\t\t\tif (preg_match($pattern, $asset->file_name, $matches))\n\t\t\t\t\t{\n\t\t\t\t\t\tif (isset($filedirs[$matches['filedir_id']]))\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$filedir = $filedirs[$matches['filedir_id']];\n\n\t\t\t\t\t\t\t$full_path = str_replace('{filedir_' . $filedir->id . '}', $filedir->server_path, $asset->file_name);\n\t\t\t\t\t\t\t$subpath = substr($full_path, strlen($filedir->server_path));\n\t\t\t\t\t\t\t$path_parts = explode('/', $subpath);\n\t\t\t\t\t\t\t$file = array_pop($path_parts);\n\t\t\t\t\t\t\t$subpath = join('/', $path_parts);\n\n\t\t\t\t\t\t\t$folder_key = $matches['filedir_id'] . ':' . $subpath;\n\t\t\t\t\t\t\tif (isset($subfolders[$folder_key]))\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$folder_id = $subfolders[$folder_key];\n\n\t\t\t\t\t\t\t\t$kind = Assets_helper::get_kind($full_path);\n\t\t\t\t\t\t\t\t$data = array(\n\t\t\t\t\t\t\t\t\t'source_type' => 'ee',\n\t\t\t\t\t\t\t\t\t'filedir_id' => $filedir->id,\n\t\t\t\t\t\t\t\t\t'folder_id' => $folder_id,\n\t\t\t\t\t\t\t\t\t'file_name' => $file,\n\t\t\t\t\t\t\t\t\t'kind' => $kind,\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\tif (file_exists($full_path))\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$data['size'] = filesize($full_path);\n\t\t\t\t\t\t\t\t\t$data['date_modified'] = filemtime($full_path);\n\t\t\t\t\t\t\t\t\tif ($kind == 'image')\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tlist ($width, $height) = getimagesize($full_path);\n\t\t\t\t\t\t\t\t\t\t$data['width'] = $width;\n\t\t\t\t\t\t\t\t\t\t$data['height'] = $height;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t$this->EE->db->update('assets_files', $data, array('file_id' => $asset->file_id));\n\t\t\t\t\t\t\t\t$this->EE->assets_lib->update_file_search_keywords($asset->file_id);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// celebrate\n\t\t\t\tbreak;\n\t\t\tcase '2.0b1 -> 2.0b2':\n\n\t\t\t\t// get S3 credentials if any\n\t\t\t\t$query = $this->EE->db->select('settings')\n\t\t\t\t\t->where('name', 'assets')\n\t\t\t\t\t->get('fieldtypes');\n\n\t\t\t\t$settings = unserialize(base64_decode($query->row('settings')));\n\t\t\t\t$settings = array_merge(array('license_key' => '', 's3_access_key_id' => '', 's3_secret_access_key' => ''), $settings);\n\n\t\t\t\t//if we have s3 settings, let's convert the \"folder_prefs\" way to \"sources\" way\n\t\t\t\tif (!empty($settings['s3_access_key_id']) && !empty($settings['s3_secret_access_key']))\n\t\t\t\t{\n\t\t\t\t\t$old_sources = $this->EE->db->get('assets_sources')->result();\n\t\t\t\t\tforeach ($old_sources as $source)\n\t\t\t\t\t{\n\t\t\t\t\t\t$previous_settings = json_decode($source->settings);\n\t\t\t\t\t\t$new_settings = (object) array(\n\t\t\t\t\t\t\t'access_key_id' => $settings['s3_access_key_id'],\n\t\t\t\t\t\t\t'secret_access_key' => $settings['s3_secret_access_key'],\n\t\t\t\t\t\t\t'bucket' => $previous_settings->name,\n\t\t\t\t\t\t\t'url_prefix' => $previous_settings->url_prefix,\n\t\t\t\t\t\t\t'location' => $previous_settings->location\n\t\t\t\t\t\t);\n\t\t\t\t\t\t$data = array(\n\t\t\t\t\t\t\t'name' => $previous_settings->name,\n\t\t\t\t\t\t\t'settings' => Assets_helper::get_json($new_settings)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t$this->EE->db->update('assets_sources', $data, array('source_id' => $source->source_id));\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// modify folder data and also keep a list of who's who\n\t\t\t\t$folders = $this->EE->db->get('assets_folders')->result();\n\t\t\t\t$folder_sources = array();\n\t\t\t\tforeach ($folders as $row)\n\t\t\t\t{\n\t\t\t\t\tif ($row->source_type == 'ee')\n\t\t\t\t\t{\n\t\t\t\t\t\t$row->filedir_id = $row->source_id;\n\t\t\t\t\t\t$row->source_id = NULL;\n\t\t\t\t\t\t$this->EE->db->update('assets_folders', $row, array('folder_id' => $row->folder_id));\n\t\t\t\t\t\t$folder_sources[$row->folder_id] = $row->filedir_id;\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t$folder_sources[$row->folder_id] = $row->source_id;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// add some data for file entries and we're done!\n\t\t\t\t$files = $this->EE->db->get('assets_files')->result();\n\t\t\t\tforeach ($files as $row)\n\t\t\t\t{\n\t\t\t\t\tif ($row->source_type == 'ee' && isset($folder_sources[$row->folder_id]))\n\t\t\t\t\t{\n\t\t\t\t\t\t$row->source_id = NULL;\n\t\t\t\t\t\t$row->filedir_id = $folder_sources[$row->folder_id];\n\t\t\t\t\t\t$this->EE->db->update('assets_files', $row, array('file_id' => $row->file_id));\n\t\t\t\t\t}\n\t\t\t\t\telse if (isset($folder_sources[$row->folder_id]))\n\t\t\t\t\t{\n\t\t\t\t\t\t$row->source_id = $folder_sources[$row->folder_id];\n\t\t\t\t\t\t$row->filedir_id = NULL;\n\t\t\t\t\t\t$this->EE->db->update('assets_files', $row, array('file_id' => $row->file_id));\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// party!\n\t\t\t\tbreak;\n\t\t}\n\t}", "protected function migration_process() {\n\n\t\t$this->migrate_nav_typography_settings();\n\t\t$this->migrate_mobile_menu_typography_settings();\n\t\t$this->migrate_sliding_bar_settings();\n\t\t$this->migrate_portfolio_meta_font_size();\n\t\t$this->migrate_grid_separator_options();\n\t\t$this->migrate_flyout_menu_options();\n\t\t$this->migrate_page_title_bar_options();\n\n\t\tadd_action( 'init', [ $this, 'migrate_shop_page_options' ] );\n\n\t}", "abstract public function migrate();", "public function updateStaticVersions()\n {\n // rip changes to feed urls\n $rss = new FeedMe();\n $siteDirectory =\n $this->directory . '/' . $this->manifest->metadata->siteName . '/';\n @file_put_contents($siteDirectory . 'rss.xml', $rss->getRSSFeed($this));\n @file_put_contents(\n $siteDirectory . 'atom.xml',\n $rss->getAtomFeed($this)\n );\n // build a sitemap if we have a domain, kinda required...\n if (isset($this->manifest->metadata->domain)) {\n $domain = $this->manifest->metadata->domain;\n $generator = new \\Icamys\\SitemapGenerator\\SitemapGenerator(\n $domain,\n $siteDirectory\n );\n // will create also compressed (gzipped) sitemap\n $generator->createGZipFile = true;\n // determine how many urls should be put into one file\n // according to standard protocol 50000 is maximum value (see http://www.sitemaps.org/protocol.html)\n $generator->maxURLsPerSitemap = 50000;\n // sitemap file name\n $generator->sitemapFileName = \"sitemap.xml\";\n // sitemap index file name\n $generator->sitemapIndexFileName = \"sitemap-index.xml\";\n // adding url `loc`, `lastmodified`, `changefreq`, `priority`\n foreach ($this->manifest->items as $key => $item) {\n if ($item->parent == null) {\n $priority = '1.0';\n } elseif ($item->indent == 2) {\n $priority = '0.7';\n } else {\n $priority = '0.5';\n }\n $generator->addUrl(\n $domain .\n '/' .\n str_replace(\n 'pages/',\n '',\n str_replace('/index.html', '', $item->location)\n ),\n date(\\DateTime::ATOM, $item->metadata->updated),\n 'daily',\n $priority\n );\n }\n // generating internally a sitemap\n $generator->createSitemap();\n // writing early generated sitemap to file\n $generator->writeSitemap();\n }\n // now generate a static list of links. This is so we can have legacy fail-back iframe mode in tact\n @file_put_contents(\n $siteDirectory . 'legacy-outline.html',\n '<!DOCTYPE html><html lang=\"en\"><head></head><body>' .\n $this->treeToNodes($this->manifest->items) .\n '</body></html>'\n );\n // now generate the search index\n @file_put_contents(\n $siteDirectory . 'lunrSearchIndex.json',\n json_encode($this->lunrSearchIndex($this->manifest->items))\n );\n }", "public function automap() {\n $map = array();\n\n // Shallow copy.\n $collectionfrom = $this->get_collection_from();\n $collectionto = $this->get_collection_to();\n\n // Find mappings.\n foreach ($collectionfrom as $keyfrom => $compfrom) {\n foreach ($collectionto as $keyto => $compto) {\n if ($compfrom->get('idnumber') == $compto->get('idnumber')) {\n $map[$compfrom->get('id')] = $compto->get('id');\n unset($collectionfrom[$keyfrom]);\n unset($collectionto[$keyto]);\n break;\n }\n }\n }\n\n $this->mappings = $map;\n }", "public static function upgrade() {\n\t\t$db = Loader::db();\n\t\t$relativeLinkType = BlockType::getByHandle('clov_relative_link');\n\t\t$relativeLinkRows = $db->getAll('select bID from Blocks where btID = ?', array($relativeLinkType->getBlockTypeID()));\n\t\tforeach($relativeLinkRows as $relativeLinkRow) {\n\t\t\t$relativeLink = Block::getByID($relativeLinkRow['bID']);\n\t\t\tself::convertRelativeLinkActionToLegacyRoute($relativeLink);\n\t\t}\n\t}", "private function extendSitemap()\n\t{\n\t\t// If we haven't extended this sitemap yet\n\t\tif($this->aCurrSitemap['count'] == 0) {\n\t\t\t$this->aCurrSitemap['count']\t= 1;\n\t\t}\n\n\t\t// Store the info for the next sitemap\n\t\t$aNextSitemap\t= array(\n\t\t\t'items' => array(),\n\t\t\t'name'\t=> $this->aCurrSitemap['name'],\n\t\t\t'count' => $this->aCurrSitemap['count'] + 1,\n\t\t\t'size'\t=> 0,\n\t\t\t'head'\t=> array(\n\t\t\t\t'types' => $this->aCurrSitemap['head']['types'],\n\t\t\t\t'size'\t=> $this->aCurrSitemap['head']['size']\n\t\t\t)\n\t\t);\n\n\t\t// Close the existing sitemap\n\t\t$this->closeSitemap();\n\n\t\t// Start the new one\n\t\t$this->aCurrSitemap = $aNextSitemap;\n\t}", "private function syncMilestones()\n\t{\n\t\t$this->sourceMilestones = $this->getMilestones($this->sourceProject);\n\t\t$this->destinationMilestones = $this->getMilestones($this->destinationProject);\n\n\t\t$this->deleteOrphanedMilestones();\n\t\t$this->matchMilestones();\n\t\t$this->copyMilestones();\n\t}", "public function moveUp()\n {\n $db = new PHPWS_DB('controlpanel_link');\n $db->setIndexBy('link_order');\n $db->addWhere('tab', $this->tab);\n $db->addOrder('link_order');\n $allLinks = $db->getObjects('PHPWS_Panel_Link');\n\n $current_order = $this->getLinkOrder();\n if ($current_order == 1){\n unset($allLinks[1]);\n $allLinks[] = $this;\n } else {\n $tempObj = $allLinks[$current_order - 1];\n $allLinks[$current_order] = $tempObj;\n $allLinks[$current_order - 1] = $this;\n }\n\n\n $count = 1;\n foreach ($allLinks as $link){\n $link->setLinkOrder($count);\n $link->save();\n $count++;\n }\n }", "public function move_extensions_to_object(midcom_core_dbaobject $object)\n {\n // Validate Privileges\n $object->require_do('midgard:update');\n $object->require_do('midgard:privileges');\n $object->require_do('midgard:parameters');\n $object->require_do('midgard:attachments');\n\n // Copy parameters from temporary object\n $parameters = $this->list_parameters();\n\n foreach ($parameters as $domain => $array) {\n foreach ($array as $name => $value) {\n $object->set_parameter($domain, $name, $value);\n }\n }\n\n // Move attachments from temporary object\n $attachments = $this->list_attachments();\n foreach ($attachments as $attachment) {\n $attachment->parentguid = $object->guid;\n $attachment->update();\n }\n\n // Privileges are moved using the DBA API as well.\n if ($privileges = $this->get_privileges()) {\n foreach ($privileges as $privilege) {\n $privilege->set_object($object);\n $privilege->store();\n }\n }\n }", "function updateLinks() {\r\n $changed_ids = $this->getChanges();\r\n $directlinks= $this->createLinkList();\r\n if ($changed_ids != '') {\r\n var_dump($changed_ids);\r\n foreach ($changed_ids as $id) {\r\n $this->removeLink($id);\r\n }\r\n $this->getTree($directlinks,$changed_ids);\r\n }\r\n }", "public function processUpdate()\n {\n $old_object = parent::loadObject();\n if ($obj = parent::processUpdate()) {\n $this->saveCustomJsAndCss($obj->position.$obj->position_key, $old_object->position.$obj->position_key);\n }\n }" ]
[ "0.6219291", "0.60978514", "0.5401965", "0.5334521", "0.5332971", "0.527303", "0.5241458", "0.5228235", "0.5162717", "0.51499814", "0.5074134", "0.5027925", "0.5014227", "0.49935877", "0.49808374", "0.49661362", "0.49637192", "0.49607638", "0.49536628", "0.49324793", "0.49304855", "0.49293303", "0.4916614", "0.49024826", "0.48928064", "0.48854387", "0.4866253", "0.48642656", "0.48625943", "0.4856915" ]
0.6970857
0
Required. Identifier of the album to be shared. This `albumId` must belong to an album created by the developer. Generated from protobuf field string album_id = 1 [(.google.api.field_behavior) = REQUIRED];
public function getAlbumId() { return $this->album_id; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setAlbumId($var)\n {\n GPBUtil::checkString($var, True);\n $this->album_id = $var;\n\n return $this;\n }", "public function setAlbumId($albumID);", "public function getIdAlbum() {\n\t\treturn $this->idAlbum;\n\t}", "public function getAlbumId();", "public function getAlbumId(){\n return $this->albumId;\n }", "public function setIdAlbum($idAlbum) {\n\t\t$this->idAlbum = $idAlbum;\n\t}", "public function getAlbum($album_id){\n $results = $this->getAlbumsByColumn(\"id\", $album_id);\n return (sizeof($results) >= 1) ? $results[0] : false;\n }", "private function deleteAlbum($albumId) {\n\t\t//var_dump($isSuccessfull);\n\t\t//die($isSuccessfull);\n\t\tif ($this->model->deleteAlbum ( $albumId )) {\n\t\t\t$this->slimApp->response ()->setStatus ( HTTPSTATUS_OK );\n\t\t\t$Message = array (\n\t\t\t\t\tGENERAL_MESSAGE_LABEL => GENERAL_RESOURCE_DELETED \n\t\t\t);\n\t\t\t$this->model->apiResponse = $Message;\n\t\t} else {\n\t\t\t$this->slimApp->response ()->setStatus ( HTTPSTATUS_BADREQUEST );\n\t\t\t$Message = array (\n\t\t\t\t\tGENERAL_MESSAGE_LABEL => GENERAL_ERROR_MESSAGE \n\t\t\t);\n\t\t\t$this->model->apiResponse = $Message;\n\t\t}\n\t}", "public function setAlbumID($AlbumID){\n return $this->albumID = $AlbumID;\n }", "public function deleteAlbum($album_id){\n return $this->deleteAlbumsByColumn(\"id\", $album_id);\n\t\t}", "protected function upsertAlbum($album) {\n db_merge('cfas_albums')\n ->key(array('album_url' => $this->album_url))\n ->fields($album)\n ->execute();\n }", "public static function createAlbum($albumName, $ownerId) {\n\t\tif (empty($albumName) || empty($ownerId)) {\n\t\t\tdie('Name and userID cannot be empty!');\n\t\t}\n\n\t\t/*\n\t\t * We must check if that user already has album with this name... don't wanna any collisions!\n\t\t */\n\n\t\t$escapedName = Album::parseInput($albumName);\n\t\t$escapedOwnerId = Album::parseInput($ownerId);\n\t\t$insertQuery = \"INSERT INTO albums(name, userid) VALUES('$escapedName', '$escapedOwnerId')\";\n\n\t\tmysqli_query($GLOBALS['mysqli'], $insertQuery) or die(mysqli_error($GLOBALS['mysqli']));\n\n\t\t$query = \"SELECT `id` FROM `albums` WHERE `name`='$escapedName' AND `userid`='$escapedOwnerId'\";\n\t\t$result = $GLOBALS['mysqli'] -> query($query) or die(mysqli_error($GLOBALS['mysqli']));\n\t\t$id = $result -> fetch_assoc()['id'];\n\n //if (!file_exists(\"uploads/$ownerId/$id\")) {\n // mkdir(\"uploads/$ownerId/$id\");\n //}\n\t\tmkdir(\"uploads/$ownerId/$id\", 0777, true);\n\t}", "public function getAlbumById(): GetAlbumById\n {\n return new GetAlbumById($this->_provider);\n }", "public function getAlbum($id)\n {\n $album = Organization::find($id)->album;\n return response()->json(compact('album'),200);\n }", "public function getAlbumID(){\n return $this->albumID; \n }", "public function GetAlbum($album_id)\r\n\t{\r\n\t\t$this->CheckToken();\r\n\r\n\t\t$album = $this->api->getAlbum($album_id);\r\n\t\treturn $album;\r\n\t}", "public function saveAlbums($data, $artist = null, $albumId = null)\n {\n if (isset($data['albums']) && count($data['albums'])) {\n $b = $this->prepareAlbumBindings($data['albums'], $artist, $albumId);\n $this->saveOrUpdate($b['values'], $b['bindings'], 'albums');\n }\n }", "public function delete_albums_by_album_id($album_id)\n {\n $this->db->delete($this->join_table_name, array(\"album_id\" => $album_id));\n }", "public function setSharedAlbumOptions($var)\n {\n GPBUtil::checkMessage($var, \\Google\\Photos\\Types\\SharedAlbumOptions::class);\n $this->shared_album_options = $var;\n\n return $this;\n }", "public function it_can_add_an_image_to_an_album_using_an_image_id()\n {\n $image = factory(Image::class)->create();\n $this->album->addImage($image->id);\n\n $albumImages = $this->album->images()->get();\n\n $this->assertEquals(1, count($albumImages));\n }", "public function verify_is_album($albumId){\n\t\t\n\t\tif (!$this->user)\n\t\t\theader('location: '. PUBLIC_BASE_URL);\n\t\t\n\t\t$album_ids = $this->user->get_all_albums_ids();\n\t\tif(!isset($album_ids[$albumId])){\n\t\t\theader('location: '. PUBLIC_404_URL);\n\t\t}\t\t\n\t}", "public function getAlbum();", "public function deleteAlbum($idAlbum){\n\n $this->authHelper->esAdmin();\n $this->model->delete($idAlbum);\n\n header(\"Location: ../ver\");\n }", "public function testGetAlbum()\n\t{\n\t\t$this->http->expects($this->once())->method('get')->will($this->returnCallback('picasaAlbumCallback'));\n\t\t$result = $this->object->getAlbum('https://picasaweb.google.com/data/entry/api/user/12345678901234567890/albumid/0123456789012345678');\n\t\t$this->assertEquals(get_class($result), 'JGoogleDataPicasaAlbum');\n\t\t$this->assertEquals($result->getTitle(), 'Album 2');\n\t}", "public function testCreateAlbum()\n\t{\n\t\t$this->http->expects($this->once())->method('post')->will($this->returnCallback('dataPicasaAlbumCallback'));\n\t\t$result = $this->object->createAlbum('userID', 'New Title', 'private');\n\t\t$this->assertEquals(get_class($result), 'JGoogleDataPicasaAlbum');\n\t\t$this->assertEquals($result->getTitle(), 'New Title');\n\t}", "public function album($album_id)\n {\n $data = array();\n $current_album = $this->album_model->find_by_id($album_id);\n $prev_album = $this->album_model->find_prev_album($current_album->created_at);\n $next_album = $this->album_model->find_next_album($current_album->created_at);\n $data['current_album'] = $current_album;\n $data['prev_url'] = empty($prev_album) ? base_url() : base_url() . 'show/album/' . $prev_album->id;\n $data['next_url'] = empty($next_album) ? base_url() : base_url() . 'show/album/' . $next_album->id;;\n $data['images'] = $this->image_model->get_images_by_album_id($album_id);\n $this->load->view('show/gallery', $data);\n }", "public function deleteAlbumAction($album_id){\n if ( $this->get('security.context')->isGranted('ROLE_SUPER_ADMIN') or\n ( $this->get('security.context')->isGranted('ROLE_ADMIN') and $this->currentUserCreatedAlbum($album_id) )\n ) {\n $album = $this->getDoctrine()\n ->getRepository('AppBundle:Gallery')\n ->find($album_id);\n $em = $this->getDoctrine()->getEntityManager();\n $em->remove($album);\n $em->flush();\n } else {\n return new Response(\"You are not authorized to delete this album.\");\n }\n return new Response(\"Deleted album with id \" . $album_id);\n }", "public function __construct($id)\n {\n $this->albumId = $id;\n }", "public function mapAlbumId($id, $default = null)\n\t{\n\t\t$ids = $this->_getImportModel()->getImportContentMap('xengallery_album', $id);\n\t\treturn ($ids ? reset($ids) : $default);\n\t}", "public function delete_album_resource($album_id)\r\n {\r\n $query = $this->db_slave->select('collection_id')->where('id',$album_id)->get(TBL_COLLECTION_ITEM);\r\n $res = get_row_array($query);\r\n $collection_id = element('collection_id',$res,null);\r\n\r\n $this->db_master->where('id', $album_id)->delete(TBL_COLLECTION_ITEM);\r\n if($this->db_master->affected_rows() > 0){\r\n\r\n if(!empty($collection_id)){\r\n $this->cache->delete(self::_mem_key_collection_info($collection_id));\r\n }\r\n\r\n return DB_OPERATION_OK;\r\n }\r\n return DB_OPERATION_FAIL;\r\n }" ]
[ "0.7827989", "0.72704875", "0.72167563", "0.71730494", "0.7121384", "0.6692965", "0.64144075", "0.6238528", "0.6222247", "0.6128683", "0.6049021", "0.60300773", "0.60262424", "0.6019611", "0.60117096", "0.5988677", "0.592938", "0.5920408", "0.5849478", "0.57908326", "0.5750498", "0.5741421", "0.5739808", "0.5728279", "0.57272774", "0.5670631", "0.56686926", "0.5651357", "0.5642725", "0.5621643" ]
0.737392
1
Required. Identifier of the album to be shared. This `albumId` must belong to an album created by the developer. Generated from protobuf field string album_id = 1 [(.google.api.field_behavior) = REQUIRED];
public function setAlbumId($var) { GPBUtil::checkString($var, True); $this->album_id = $var; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getAlbumId()\n {\n return $this->album_id;\n }", "public function setAlbumId($albumID);", "public function getIdAlbum() {\n\t\treturn $this->idAlbum;\n\t}", "public function getAlbumId();", "public function getAlbumId(){\n return $this->albumId;\n }", "public function setIdAlbum($idAlbum) {\n\t\t$this->idAlbum = $idAlbum;\n\t}", "public function getAlbum($album_id){\n $results = $this->getAlbumsByColumn(\"id\", $album_id);\n return (sizeof($results) >= 1) ? $results[0] : false;\n }", "private function deleteAlbum($albumId) {\n\t\t//var_dump($isSuccessfull);\n\t\t//die($isSuccessfull);\n\t\tif ($this->model->deleteAlbum ( $albumId )) {\n\t\t\t$this->slimApp->response ()->setStatus ( HTTPSTATUS_OK );\n\t\t\t$Message = array (\n\t\t\t\t\tGENERAL_MESSAGE_LABEL => GENERAL_RESOURCE_DELETED \n\t\t\t);\n\t\t\t$this->model->apiResponse = $Message;\n\t\t} else {\n\t\t\t$this->slimApp->response ()->setStatus ( HTTPSTATUS_BADREQUEST );\n\t\t\t$Message = array (\n\t\t\t\t\tGENERAL_MESSAGE_LABEL => GENERAL_ERROR_MESSAGE \n\t\t\t);\n\t\t\t$this->model->apiResponse = $Message;\n\t\t}\n\t}", "public function setAlbumID($AlbumID){\n return $this->albumID = $AlbumID;\n }", "public function deleteAlbum($album_id){\n return $this->deleteAlbumsByColumn(\"id\", $album_id);\n\t\t}", "protected function upsertAlbum($album) {\n db_merge('cfas_albums')\n ->key(array('album_url' => $this->album_url))\n ->fields($album)\n ->execute();\n }", "public static function createAlbum($albumName, $ownerId) {\n\t\tif (empty($albumName) || empty($ownerId)) {\n\t\t\tdie('Name and userID cannot be empty!');\n\t\t}\n\n\t\t/*\n\t\t * We must check if that user already has album with this name... don't wanna any collisions!\n\t\t */\n\n\t\t$escapedName = Album::parseInput($albumName);\n\t\t$escapedOwnerId = Album::parseInput($ownerId);\n\t\t$insertQuery = \"INSERT INTO albums(name, userid) VALUES('$escapedName', '$escapedOwnerId')\";\n\n\t\tmysqli_query($GLOBALS['mysqli'], $insertQuery) or die(mysqli_error($GLOBALS['mysqli']));\n\n\t\t$query = \"SELECT `id` FROM `albums` WHERE `name`='$escapedName' AND `userid`='$escapedOwnerId'\";\n\t\t$result = $GLOBALS['mysqli'] -> query($query) or die(mysqli_error($GLOBALS['mysqli']));\n\t\t$id = $result -> fetch_assoc()['id'];\n\n //if (!file_exists(\"uploads/$ownerId/$id\")) {\n // mkdir(\"uploads/$ownerId/$id\");\n //}\n\t\tmkdir(\"uploads/$ownerId/$id\", 0777, true);\n\t}", "public function getAlbumById(): GetAlbumById\n {\n return new GetAlbumById($this->_provider);\n }", "public function getAlbum($id)\n {\n $album = Organization::find($id)->album;\n return response()->json(compact('album'),200);\n }", "public function getAlbumID(){\n return $this->albumID; \n }", "public function GetAlbum($album_id)\r\n\t{\r\n\t\t$this->CheckToken();\r\n\r\n\t\t$album = $this->api->getAlbum($album_id);\r\n\t\treturn $album;\r\n\t}", "public function saveAlbums($data, $artist = null, $albumId = null)\n {\n if (isset($data['albums']) && count($data['albums'])) {\n $b = $this->prepareAlbumBindings($data['albums'], $artist, $albumId);\n $this->saveOrUpdate($b['values'], $b['bindings'], 'albums');\n }\n }", "public function delete_albums_by_album_id($album_id)\n {\n $this->db->delete($this->join_table_name, array(\"album_id\" => $album_id));\n }", "public function setSharedAlbumOptions($var)\n {\n GPBUtil::checkMessage($var, \\Google\\Photos\\Types\\SharedAlbumOptions::class);\n $this->shared_album_options = $var;\n\n return $this;\n }", "public function it_can_add_an_image_to_an_album_using_an_image_id()\n {\n $image = factory(Image::class)->create();\n $this->album->addImage($image->id);\n\n $albumImages = $this->album->images()->get();\n\n $this->assertEquals(1, count($albumImages));\n }", "public function verify_is_album($albumId){\n\t\t\n\t\tif (!$this->user)\n\t\t\theader('location: '. PUBLIC_BASE_URL);\n\t\t\n\t\t$album_ids = $this->user->get_all_albums_ids();\n\t\tif(!isset($album_ids[$albumId])){\n\t\t\theader('location: '. PUBLIC_404_URL);\n\t\t}\t\t\n\t}", "public function getAlbum();", "public function deleteAlbum($idAlbum){\n\n $this->authHelper->esAdmin();\n $this->model->delete($idAlbum);\n\n header(\"Location: ../ver\");\n }", "public function testGetAlbum()\n\t{\n\t\t$this->http->expects($this->once())->method('get')->will($this->returnCallback('picasaAlbumCallback'));\n\t\t$result = $this->object->getAlbum('https://picasaweb.google.com/data/entry/api/user/12345678901234567890/albumid/0123456789012345678');\n\t\t$this->assertEquals(get_class($result), 'JGoogleDataPicasaAlbum');\n\t\t$this->assertEquals($result->getTitle(), 'Album 2');\n\t}", "public function testCreateAlbum()\n\t{\n\t\t$this->http->expects($this->once())->method('post')->will($this->returnCallback('dataPicasaAlbumCallback'));\n\t\t$result = $this->object->createAlbum('userID', 'New Title', 'private');\n\t\t$this->assertEquals(get_class($result), 'JGoogleDataPicasaAlbum');\n\t\t$this->assertEquals($result->getTitle(), 'New Title');\n\t}", "public function album($album_id)\n {\n $data = array();\n $current_album = $this->album_model->find_by_id($album_id);\n $prev_album = $this->album_model->find_prev_album($current_album->created_at);\n $next_album = $this->album_model->find_next_album($current_album->created_at);\n $data['current_album'] = $current_album;\n $data['prev_url'] = empty($prev_album) ? base_url() : base_url() . 'show/album/' . $prev_album->id;\n $data['next_url'] = empty($next_album) ? base_url() : base_url() . 'show/album/' . $next_album->id;;\n $data['images'] = $this->image_model->get_images_by_album_id($album_id);\n $this->load->view('show/gallery', $data);\n }", "public function deleteAlbumAction($album_id){\n if ( $this->get('security.context')->isGranted('ROLE_SUPER_ADMIN') or\n ( $this->get('security.context')->isGranted('ROLE_ADMIN') and $this->currentUserCreatedAlbum($album_id) )\n ) {\n $album = $this->getDoctrine()\n ->getRepository('AppBundle:Gallery')\n ->find($album_id);\n $em = $this->getDoctrine()->getEntityManager();\n $em->remove($album);\n $em->flush();\n } else {\n return new Response(\"You are not authorized to delete this album.\");\n }\n return new Response(\"Deleted album with id \" . $album_id);\n }", "public function __construct($id)\n {\n $this->albumId = $id;\n }", "public function mapAlbumId($id, $default = null)\n\t{\n\t\t$ids = $this->_getImportModel()->getImportContentMap('xengallery_album', $id);\n\t\treturn ($ids ? reset($ids) : $default);\n\t}", "public function delete_album_resource($album_id)\r\n {\r\n $query = $this->db_slave->select('collection_id')->where('id',$album_id)->get(TBL_COLLECTION_ITEM);\r\n $res = get_row_array($query);\r\n $collection_id = element('collection_id',$res,null);\r\n\r\n $this->db_master->where('id', $album_id)->delete(TBL_COLLECTION_ITEM);\r\n if($this->db_master->affected_rows() > 0){\r\n\r\n if(!empty($collection_id)){\r\n $this->cache->delete(self::_mem_key_collection_info($collection_id));\r\n }\r\n\r\n return DB_OPERATION_OK;\r\n }\r\n return DB_OPERATION_FAIL;\r\n }" ]
[ "0.7373419", "0.7270194", "0.72166294", "0.7173041", "0.71209675", "0.6693113", "0.64143384", "0.6238083", "0.62224036", "0.61277324", "0.6047555", "0.6029319", "0.6025715", "0.60186857", "0.60110265", "0.5988385", "0.59283805", "0.5919333", "0.5848575", "0.57904905", "0.57497203", "0.5739642", "0.57388306", "0.57261896", "0.5724951", "0.5669553", "0.56678504", "0.5651379", "0.5642382", "0.5620963" ]
0.7828739
0
Options to be set when converting the album to a shared album. Generated from protobuf field .google.photos.types.SharedAlbumOptions shared_album_options = 2;
public function getSharedAlbumOptions() { return isset($this->shared_album_options) ? $this->shared_album_options : null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setSharedAlbumOptions($var)\n {\n GPBUtil::checkMessage($var, \\Google\\Photos\\Types\\SharedAlbumOptions::class);\n $this->shared_album_options = $var;\n\n return $this;\n }", "function gdata_album($pwa_options, $test=0) {\r\n\r\n/*\t\t\tif (!empty($pwa_pro)) {\r\n\t\t\t\t//$pwa_options = pwa_pro::cache_xml($pwa_options);\r\n\t\t\t\t$album = pwa_pro::gdata_album_pro($pwa_options, $test);\r\n\t\t\t\treturn $album;\r\n\t\t\t}*/\r\n\r\n\t\t\t$GDATA_TOKEN = get_option(c_pwa_gdata_token);\r\n\t\t\t$temp_file=$pwa_options['FILE'];\r\n\t\t\tif (self::Public_Only() == \"FALSE\") $temp_file .= \"&access_token=\". $GDATA_TOKEN;\r\n\t\t\t$file = (array_key_exists('SAVEFILE',$pwa_options)) ? $pwa_options['SAVEFILE'] : $temp_file;\r\n\t\t\t$feed = simplexml_load_file($file);\r\n\t\t\t$namespaces = $feed->getNamespaces(true);\r\n\t\t\t$album = array();\r\n\t\t\t$i=0;\r\n\t\t\t$opensearch = $feed->children($namespaces['openSearch']);\r\n\t\t\t$total = $opensearch->totalResults;\r\n\r\n\t\t\tforeach ($feed->entry as $entry) {\r\n\t\t\t\t$access\t= trim($entry->rights);\r\n\t\t\t\t$public = strrpos(get_option(c_pwa_access), 'public');\r\n\t\t\t\t$protected = strrpos(get_option(c_pwa_access), 'protected');\r\n\t\t\t\t$private = strrpos(get_option(c_pwa_access), 'private');\r\n\r\n\t\t\t\tif ((($public !== false) && ($access == 'public')) ||\r\n\t\t\t\t\t(($protected !== false) && ($access == 'protected')) ||\r\n\t\t\t\t\t(($private !== false) && ($access == 'private'))) {\r\n\r\n\t\t\t\t\t$album[$i]['total'] = $total;\r\n\t\t\t\t\t$album[$i]['id'] = trim($entry->id);\r\n\t\t\t\t\t$album[$i]['published'] = trim($entry->published);\r\n\t\t\t\t\t$album[$i]['updated'] = trim($entry->updated);\r\n\t\t\t\t\t$album[$i]['title'] = trim($entry->title);\r\n\t\t\t\t\t$album[$i]['summary'] = trim($entry->summary);\r\n\t\t\t\t\t$album[$i]['rights'] = $access;\r\n\t\t\t\t\t$album[$i]['link'] = trim($entry->link->attributes()->href);\r\n\r\n\t\t\t\t\t# Gphoto\r\n\t\t\t\t\t$gphoto = $entry->children($namespaces['gphoto']);\r\n\t\t\t\t\t$album[$i]['gphoto:name'] = trim($gphoto->name);\r\n\t\t\t\t\t$album[$i]['gphoto:location'] = trim($gphoto->location);\r\n\t\t\t\t\t$album[$i]['gphoto:access'] = trim($gphoto->access);\r\n\t\t\t\t\t$album[$i]['gphoto:timestamp'] = trim($gphoto->timestamp);\r\n\t\t\t\t\t$album[$i]['gphoto:numphotos'] = trim($gphoto->numphotos);\r\n\r\n\t\t\t\t\t# Media:Group\r\n\t\t\t\t\t$media = $entry->children($namespaces['media'])\r\n\t\t\t\t\t\t->group\r\n\t\t\t\t\t\t->children($namespaces['media']);\r\n\t\t\t\t\t$album[$i]['media:description'] = trim($media->description);\r\n\t\t\t\t\t$album[$i]['media:thumbnail'] = trim($media->thumbnail->attributes()->url);\r\n\t\t\t\t\t$album[$i]['media:title'] = trim($media->title);\r\n\t\t\t\t\t$i++;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\tif ($test==1) { echo \"File: $file<br>\"; self::test_xml($album); }\r\n\t\t\treturn $album;\r\n\t\t}", "function GetAlbums( $ar = NULL) {\r\n addLog(\"mpd->GetAlbums()\");\r\n if ( is_null($resp = $this->SendCommand(MPD_CMD_TABLE, MPD_TBL_ALBUM, $ar ))) return NULL;\r\n $alArray = array();\r\n $alLine = strtok($resp,\"\\n\");\r\n $alName = \"\";\r\n $alCounter = -1;\r\n while ( $alLine ) {\r\n list ( $element, $value ) = explode(\": \",$alLine);\r\n if ( $element == \"Album\" ) {\r\n $alCounter++;\r\n $alName = $value;\r\n $alArray[$alCounter] = $alName;\r\n }\r\n $alLine = strtok(\"\\n\");\r\n }\r\n addLog(\"mpd->GetAlbums()\");\r\n return $alArray;\r\n }", "public function getAlbumId()\n {\n return $this->album_id;\n }", "public function doPushCloudMessagePhotoAlbum($aData)\n {\n /**\n * @var int\n */\n $iAlbumId = isset($aData['iItemId']) ? (int) $aData['iItemId'] : 0;\n /**\n * @var bool\n */\n $bIsUserProfile = isset($aData['bIsUserProfile']) ? (bool) $aData['bIsUserProfile'] : false;\n if ($bIsUserProfile)\n {\n $aAlbum = Phpfox::getService('photo.album')->getForProfileView($iAlbumId);\n }\n else\n {\n // Get the current album we are trying to view\n $aAlbum = Phpfox::getService('photo.album')->getForView($iAlbumId);\n }\n \n if (isset($aAlbum['user_id']) && $aAlbum['user_id'] != Phpfox::getUserId())\n {\n /**\n * @var int\n */\n $iPushId = Phpfox::getService('mfox.push')->savePush($aData, $aAlbum['user_id']);\n // Push cloud message.\n Phpfox::getService('mfox.cloudmessage')->send(array('message' => 'notification', 'iPushId' => $iPushId), $aAlbum['user_id']);\n }\n }", "public function getAlbumId(){\n return $this->albumId;\n }", "public function myalbum($aData)\n {\n $aData['view'] = 'my';\n $aData['iUserId'] = Phpfox::getUserId();\n\n return $this->getAlbum($aData);\n }", "public function setShared($shared);", "function singlePhoto($ALBUM,$overrides_array) {\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# CONFIGURATION\r\n\t\t\t#------------------------------------------------------\r\n\t\t\tglobal $pwa_pro;\r\n\t\t\t$pwa_options['PLUGIN_URI']\t= plugin_dir_path( __FILE__ );\r\n\t\t\t$pwa_options['PLUGIN_URL']\t= plugin_dir_url( __FILE__ );\r\n\t\t\t$pwa_options \t\t\t= self::setup_variables($pwa_options);\r\n\t\t\t$pwa_options['ALBUM'] \t\t= $specific_album = $ALBUM;\r\n\t\t\t$specific_photo \t\t= (isset($overrides_array[\"specific_photo\"])) ? \r\n\t\t\t\t\t\t\t\t$overrides_array[\"specific_photo\"] : 'none';\r\n\t\t\t$pwa_options['OVERRIDE_SIZE']\t\t= (isset($overrides_array[\"thumbnail_size\"])) ? \r\n\t\t\t\t\t\t\t$overrides_array[\"thumbnail_size\"] : $pwa_options['PHOTO_THUMBSIZE'];\r\n\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# Load Language File \r\n\t\t\t#------------------------------------------------------\r\n\t\t\trequire(PWA_DIR.\"/lang/\". get_option(c_pwa_language) .\".php\");\r\n\r\n\t\t\t$album_array = array();\r\n\t\t\t$photo_array = array();\r\n\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# Check for required variables from config file\r\n\t\t\t#------------------------------------------------------\r\n\t\t\tif (!isset($pwa_options['GDATA_TOKEN'], $pwa_options['PICASAWEB_USER'], \r\n\t\t\t\t$pwa_options['IMGMAX'], $pwa_options['USE_LIGHTBOX'], \r\n\t\t\t\t$pwa_options['OVERRIDE_SIZE'])) {\r\n\t\t\t\t$out = \"<h1>\" . $LANG_MISSING_VAR_H1 . \"</h1><h3>\" . $LANG_MISSING_VAR_H3 . \"</h3>\";\r\n\t\t\t\treturn($out);\r\n\t\t\t}\r\n\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# The Albums\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# Get the Album XML\r\n\t\t\t$pwa_options['FILE'] = \"http://picasaweb.google.com/data/feed/api/user/\" . \r\n\t\t\t$pwa_options['PICASAWEB_USER'] . \"?kind=album\";\r\n\r\n\t\t\t# Store XML in Album Array\r\n\t\t\t$album_array=self::gdata_album($pwa_options);\r\n\r\n\t\t\t# If has album array, count number of albums\r\n\t\t\tif (isset($album_array)) $album_count=count($album_array); \r\n\r\n\t\t\t# Check if $Album is in Array\r\n\t\t\tif (self::in_arrayr($specific_album, $album_array)) { $ALBUM=$specific_album; }\r\n\t\t\tif ($pwa_options['ALBUM'] == '') {\r\n\t\t\t\t$out='<font color=red>Album not found</font>';\r\n\t\t\t\treturn $out;\r\n\t\t\t}\r\n\r\n\t\t\t$cache_path = $pwa_options['PLUGIN_URL'] . \"cache/\" . \r\n\t\t\tmd5($pwa_options['PICASAWEB_USER']) . \"/\" . $pwa_options['ALBUM'] . \r\n\t\t\t\"/\" . $pwa_options['OVERRIDE_SIZE'] . \"/\";\r\n\r\n\t\t\t# Check if cache dir exists and mkdir if not\r\n\t\t\tif (isset($overrides_array[\"thumbnail_size\"])) {\r\n\t\t\t\t$pwa_options['CACHE_THUMBNAILS']='FALSE';\r\n\t\t\t} else {\r\n\t\t\t\tif (!empty($pwa_pro)) $pwa_options = $pwa_pro::check_cache_dir($pwa_options);\r\n\t\t\t}\r\n\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# The Photos\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# Get the Photo XML\r\n\t\t\t$pwa_options['FILE'] = \"http://picasaweb.google.com/data/feed/api/user/\" . \r\n\t\t\t$pwa_options['PICASAWEB_USER'] . \"/album/\" . $pwa_options['ALBUM'] . \r\n\t\t\t\"?kind=photo&thumbsize=\" . $pwa_options['OVERRIDE_SIZE'] . \"c&imgmax=\" . \r\n\t\t\t$pwa_options['IMGMAX'];\r\n\r\n\t\t\t# Store XML in Photo Array\r\n\t\t\t$photo_array=self::gdata_photo($pwa_options);\r\n\r\n\t\t\t# Store photo array in vars when specific photo found\r\n\t\t\tfor ($i = 0; $i < count($photo_array); $i++) {\r\n\t\t\t\t$href=$photo_array[$i]['media:content'];\r\n\t\t\t\t$thumb=$photo_array[$i]['media:thumbnail'];\r\n\t\t\t\t$picasa_title=$photo_array[$i]['media:title'];\r\n\t\t\t\t$text = $photo_array[$i]['summary'];\r\n\t\t\t\tif (strpos($href,$specific_photo)) $i = count($photo_array);\r\n\t\t\t}\r\n\r\n\t\t\t# If specific photo was not found, output error\r\n\t\t\tif (!strpos($href,$specific_photo)) {\r\n\t\t\t\t$out='<font color=red>Photo not found</font><br>';\r\n\t\t\t\treturn $out;\r\n\t\t\t}\r\n\r\n\t\t\t# Cache thumbnails\r\n\t\t\tif (!empty($pwa_pro) && $pwa_options['CACHE_THUMBNAILS'] =='TRUE') {\r\n\t\t\t\t\t$nthumb = $pwa_pro::cacheThumbnails($pwa_options,$thumb);\r\n\t\t\t\t\tif ($nthumb != '') { $thumb = $nthumb; }\r\n\t\t\t}\r\n\r\n\t\t\t# Rob - fix for missing photos. Displays an included photo to prevent breaking layout.\r\n\t\t\tif (($href==\"\") || ($thumb==\"\")) {\r\n\t\t\t\techo 'Broken '. $random_int .' | '. $pwa_options['ALBUM'] .' | ' .\r\n\t\t\t\t$random_image .' | '. $picasa_title .'<BR>'; \r\n\t\t\t\t$href=plugin_dir_url(__FILE__) .'images/missing.jpg';\r\n\t\t\t\t$thumb=plugin_dir_url(__FILE__) .'images/missing.jpg';\r\n\t\t\t\t$picasa_title=\"Missing Photo\";\r\n\t\t\t}\r\n\r\n\t\t\t# Rob - Add styling for first and last\r\n\t\t\t$out = \"<div class='thumbnail'>\"; \r\n\t\t\t$lightboxGroup = 'Single';\r\n\r\n\t\t\tif ($pwa_options['USE_LIGHTBOX'] == \"TRUE\") {\r\n\t\t\t\t$text = addslashes($text);\r\n\t\t\t\tlist($AT) = explode('_',$picasa_title);\r\n\t\t\t\tif($text != \"\") {\r\n\t\t\t\t\t$out .= \"<a href=\\\"$href\\\" class=\\\"lightbox\\\" rel=\\\"lightbox[$lightboxGroup]\\\" title=\\\"$text\\\"><img class='pwaimg' src='$thumb' alt='image_from_picasa'></img></a>\\n\";\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$out .= \"<a href=\\\"$href\\\" class=\\\"lightbox\\\" rel=\\\"lightbox[$lightboxGroup]\\\" title=\\\"$AT\\\"><img class='pwaimg' src='$thumb' alt='image_from_picasa'></img></a>\\n\";\r\n\t\t\t\t}\r\n\t\t\t} \r\n\r\n\t\t\t$out .= \"</div>\";\r\n\t\t\t$out .= \"<div style='clear: right;'></div>\";\r\n\t\t\treturn($out);\r\n\t\t}", "public function getSectionsToAlbumsExport()\n\t{\n\t\t$sectionsToExport = array();\n\t\t$sectionsAliases = array();\n\n\t\tforeach ($this->mappedSections as $mappedSection)\n\t\t{\n\t\t\t$params = $mappedSection[\"PARAMS\"];\n\t\t\t$parentParams = $params[\"PARENT_SETTINGS\"];\n\n//\t\t\tnot inherit - check pur params\n\t\t\tif (!$params[\"INHERIT\"] && $params[\"ENABLE\"])\n\t\t\t{\n\t\t\t\t$sectionsToExport[$params[\"TO_ALBUM\"]] = $params[\"TO_ALBUM\"];\n//\t\t\t\talias get from settings. If not set - do nothing (will be used default name)\n\t\t\t\tif ($params[\"TO_ALBUM_ALIAS\"])\n\t\t\t\t\t$sectionsAliases[$params[\"TO_ALBUM\"]] = $params[\"TO_ALBUM_ALIAS\"];\n\t\t\t}\n\t\t\t\n//\t\t\tinherit - get params from parent. If not include child - import in self album\n\t\t\telseif($params[\"INHERIT\"] && $parentParams && $parentParams[\"ENABLE\"] && !$parentParams[\"INCLUDE_CHILDS\"])\n\t\t\t{\n\t\t\t\t$sectionsToExport[$mappedSection[\"BX_ID\"]] = $mappedSection[\"BX_ID\"];\n//\t\t\t\talias get from settings. If not set - do nothing (will be used default name)\n\t\t\t\tif ($parentParams[\"TO_ALBUM_ALIAS\"])\n\t\t\t\t\t$sectionsAliases[$parentParams[\"TO_ALBUM\"]] = $parentParams[\"TO_ALBUM_ALIAS\"];\n\t\t\t}\n\n//\t\t\tif INHERIT and parent section included childs - put section to parent to_album\n\t\t\telseif ($params[\"INHERIT\"] && $parentParams && $parentParams[\"ENABLE\"] && $parentParams[\"INCLUDE_CHILDS\"])\n\t\t\t{\n\t\t\t\t$sectionsToExport[$parentParams[\"TO_ALBUM\"]] = $parentParams[\"TO_ALBUM\"];\n//\t\t\t\t\talias get from settings. If not set - do nothing (will be used default name)\n\t\t\t\tif ($parentParams[\"TO_ALBUM_ALIAS\"])\n\t\t\t\t\t$sectionsAliases[$parentParams[\"TO_ALBUM\"]] = $parentParams[\"TO_ALBUM_ALIAS\"];\n\t\t\t}\n\t\t}\n\n\t\treturn array(\"SECTIONS\" => $sectionsToExport, \"ALIASES\" => $sectionsAliases);\n\t}", "public function setAlbumId($albumID);", "public function shareWith(AlbumShareForm $albumShareForm, Request $request)\n {\n\n $albumShareForm->validate($request->only('shareWith'));\n\n $album = $this->albumRepo->shareAlbumWith($request->except('_token'));\n\n flash()->success('Album shared', 'Album ' . $album->name . ' shared with your friends.');\n\n return back();\n }", "public function GetAlbums()\r\n\t{\r\n\t\terror_log(\"inicio GetAlbums \\n\",3,'/mnt/var/log/registro.log');\r\n\t\t\r\n\t\t$this->CheckToken();\r\n\r\n\t\t$albums = $this->api->getMySavedAlbums();\r\n\r\n\t\treturn $albums;\r\n\t}", "public function profilealbum($aData)\n {\n $aData['bIsUserProfile'] = 'true';\n \n return $this->getAlbum($aData);\n }", "public function getAlbums();", "public function getAlbum();", "public function share($sk, $api_sig, $recipient, $track, $artist, $public = null, $message = null)\n {\n return $this->getClient()->call('track.share', array(\n 'sk' => $sk,\n 'api_sig' => $api_sig,\n 'recipient' => $recipient,\n 'track' => $track,\n 'artist' => $artist,\n 'public' => $public,\n 'message' => $message,\n ));\n }", "function parse_options() {\n global $artist,$album;\n\n $shortopts = 'a:b:';\n $longopts = array(\n 'artist:',\n 'album:',\n );\n\n $opts = getopt($shortopts, $longopts);\n\n if (isset($opts['a'])) {\n $artist = $opts['a'];\n }\n else if (isset($opts['artist'])) {\n $artist = $opts['artist'];\n }\n else {\n usage(); // required\n }\n\n if (isset($opts['b'])) {\n $album = $opts['b'];\n }\n else if (isset($opts['album'])) {\n $album = $opts['album'];\n }\n else {\n usage(); // required\n }\n}", "public function getAlbums( $ar = null) {\n $this->debug(\"mpd->getAlbums()\");\n if ( is_null($resp = $this->sendCommand(self::CMD_TABLE, self::TBL_ALBUM, $ar ))) return null;\n $alArray = array();\n\n $alLine = strtok($resp,\"\\n\");\n $alName = \"\";\n $alCounter = -1;\n while ( $alLine ) {\n list ( $element, $value ) = explode(\": \",$alLine);\n if ( $element == \"Album\" ) {\n $alCounter++;\n $alName = $value;\n $alArray[$alCounter] = $alName;\n }\n\n $alLine = strtok(\"\\n\");\n }\n $this->debug(\"mpd->getAlbums()\");\n return $alArray;\n }", "protected function syncSharedFolders()\n\t{\n\t\t$shared = (array) $this->rocketeer->getOption('remote.shared');\n\t\tforeach ($shared as $file) {\n\t\t\t$this->share($file);\n\t\t}\n\t}", "function se_album($user_id = 0) {\n\n\t $this->user_id = $user_id;\n\n\t}", "public function constructAlbumSettings(): AlbumSettings\n\t{\n\t\treturn new AlbumSettings($this->urlGenerator,\n\t\t\t$this->baseURL,\n\t\t\t$this->baseDir,\n\t\t\t$this->thumbnailWidth,\n\t\t\t$this->thumbnailHeight,\n\t\t\t$this->pictureWidth,\n\t\t\t$this->pictureHeight,\n\t\t\t$this->filePermissions,\n\t\t\t$this->dirPermissions,\n\t\t\t$this->displayAnchors,\n\t\t\t$this->iconsPath,\n\t\t\t$this->pictureAnchorPrefix,\n\t\t\t$this->albumLabels,\n\t\t\t$this->pictureLabels,\n\t\t\t$this->albumEditorSettings,\n\t\t\t$this->pictureEditorSettings,\n\t\t\t$this->albumPageSize,\n\t\t\t$this->thumbnailsTable,\n\t\t\t$this->picturesTable,\n\t\t\t$this->operationParam);\n\t}", "function get_profile_album($fb_user_id=null) {\r\n\t\tif($fb_user_id===null){\r\n\t\t\t$fb_user_id = $this->get_user(); // if no user ID passed, set it to current user\r\n\t\t}\r\n\t\t\r\n\t\t$q = 'SELECT aid, object_id, owner, visible, owner, can_upload FROM album WHERE type=\"profile\" AND owner=\"' . $fb_user_id . '\"';\r\n\t\t\r\n\t\t$response = $this->api(\"fql?q=\" . urlencode($q));\r\n\t\t\r\n\t\tif(!empty($response['data'][0])) {\r\n\t\t\treturn $response['data'][0];\t\r\n\t\t}\r\n\t\t\r\n\t\treturn null;\r\n\t}", "public function getIdAlbum() {\n\t\treturn $this->idAlbum;\n\t}", "public function getAlbumId();", "public function myAlbumsContains(string|array $albums): array\n {\n $albums = $this->uriToId($albums, 'album');\n $albums = $this->toCommaString($albums);\n\n $options = [\n 'ids' => $albums,\n ];\n\n $uri = '/v1/me/albums/contains';\n\n $this->lastResponse = $this->sendRequest('GET', $uri, $options);\n\n return $this->lastResponse['body'];\n }", "public function sharedLinksAddRequest($shared_link, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)\n {\n // verify the required parameter 'shared_link' is set\n if ($shared_link === null || (is_array($shared_link) && count($shared_link) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $shared_link when calling sharedLinksAdd'\n );\n }\n\n $resourcePath = '/file-storage/shared-links';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n // query params\n if ($raw !== null) {\n if('form' === 'form' && is_array($raw)) {\n foreach($raw as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['raw'] = $raw;\n }\n }\n\n // header params\n if ($x_apideck_consumer_id !== null) {\n $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);\n }\n // header params\n if ($x_apideck_app_id !== null) {\n $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);\n }\n // header params\n if ($x_apideck_service_id !== null) {\n $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);\n }\n\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($shared_link)) {\n if ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode(ObjectSerializer::sanitizeForSerialization($shared_link));\n } else {\n $httpBody = $shared_link;\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('Authorization');\n if ($apiKey !== null) {\n $headers['Authorization'] = $apiKey;\n }\n\n $defaultHeaders = $this->config->getDefaultHeaders();\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'POST',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "protected function upsertAlbum($album) {\n db_merge('cfas_albums')\n ->key(array('album_url' => $this->album_url))\n ->fields($album)\n ->execute();\n }", "public function share(bool $share = true)\n {\n // cannot be shared\n }", "public function addMyAlbums(string|array $albums): bool\n {\n $albums = $this->uriToId($albums, 'album');\n $albums = json_encode((array) $albums);\n\n $headers = [\n 'Content-Type' => 'application/json',\n ];\n\n $uri = '/v1/me/albums';\n\n $this->lastResponse = $this->sendRequest('PUT', $uri, $albums, $headers);\n\n return $this->lastResponse['status'] == 200;\n }" ]
[ "0.823006", "0.4849717", "0.4765483", "0.47294006", "0.47001114", "0.4698282", "0.46960342", "0.46867386", "0.46816105", "0.46799424", "0.46679032", "0.4660326", "0.46327072", "0.4610268", "0.46069798", "0.4598337", "0.4593997", "0.4566876", "0.45655552", "0.45144105", "0.45084786", "0.4507781", "0.4477779", "0.4472309", "0.44657815", "0.44258463", "0.4396086", "0.4374161", "0.4366587", "0.43605503" ]
0.7580012
1
Options to be set when converting the album to a shared album. Generated from protobuf field .google.photos.types.SharedAlbumOptions shared_album_options = 2;
public function setSharedAlbumOptions($var) { GPBUtil::checkMessage($var, \Google\Photos\Types\SharedAlbumOptions::class); $this->shared_album_options = $var; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getSharedAlbumOptions()\n {\n return isset($this->shared_album_options) ? $this->shared_album_options : null;\n }", "function gdata_album($pwa_options, $test=0) {\r\n\r\n/*\t\t\tif (!empty($pwa_pro)) {\r\n\t\t\t\t//$pwa_options = pwa_pro::cache_xml($pwa_options);\r\n\t\t\t\t$album = pwa_pro::gdata_album_pro($pwa_options, $test);\r\n\t\t\t\treturn $album;\r\n\t\t\t}*/\r\n\r\n\t\t\t$GDATA_TOKEN = get_option(c_pwa_gdata_token);\r\n\t\t\t$temp_file=$pwa_options['FILE'];\r\n\t\t\tif (self::Public_Only() == \"FALSE\") $temp_file .= \"&access_token=\". $GDATA_TOKEN;\r\n\t\t\t$file = (array_key_exists('SAVEFILE',$pwa_options)) ? $pwa_options['SAVEFILE'] : $temp_file;\r\n\t\t\t$feed = simplexml_load_file($file);\r\n\t\t\t$namespaces = $feed->getNamespaces(true);\r\n\t\t\t$album = array();\r\n\t\t\t$i=0;\r\n\t\t\t$opensearch = $feed->children($namespaces['openSearch']);\r\n\t\t\t$total = $opensearch->totalResults;\r\n\r\n\t\t\tforeach ($feed->entry as $entry) {\r\n\t\t\t\t$access\t= trim($entry->rights);\r\n\t\t\t\t$public = strrpos(get_option(c_pwa_access), 'public');\r\n\t\t\t\t$protected = strrpos(get_option(c_pwa_access), 'protected');\r\n\t\t\t\t$private = strrpos(get_option(c_pwa_access), 'private');\r\n\r\n\t\t\t\tif ((($public !== false) && ($access == 'public')) ||\r\n\t\t\t\t\t(($protected !== false) && ($access == 'protected')) ||\r\n\t\t\t\t\t(($private !== false) && ($access == 'private'))) {\r\n\r\n\t\t\t\t\t$album[$i]['total'] = $total;\r\n\t\t\t\t\t$album[$i]['id'] = trim($entry->id);\r\n\t\t\t\t\t$album[$i]['published'] = trim($entry->published);\r\n\t\t\t\t\t$album[$i]['updated'] = trim($entry->updated);\r\n\t\t\t\t\t$album[$i]['title'] = trim($entry->title);\r\n\t\t\t\t\t$album[$i]['summary'] = trim($entry->summary);\r\n\t\t\t\t\t$album[$i]['rights'] = $access;\r\n\t\t\t\t\t$album[$i]['link'] = trim($entry->link->attributes()->href);\r\n\r\n\t\t\t\t\t# Gphoto\r\n\t\t\t\t\t$gphoto = $entry->children($namespaces['gphoto']);\r\n\t\t\t\t\t$album[$i]['gphoto:name'] = trim($gphoto->name);\r\n\t\t\t\t\t$album[$i]['gphoto:location'] = trim($gphoto->location);\r\n\t\t\t\t\t$album[$i]['gphoto:access'] = trim($gphoto->access);\r\n\t\t\t\t\t$album[$i]['gphoto:timestamp'] = trim($gphoto->timestamp);\r\n\t\t\t\t\t$album[$i]['gphoto:numphotos'] = trim($gphoto->numphotos);\r\n\r\n\t\t\t\t\t# Media:Group\r\n\t\t\t\t\t$media = $entry->children($namespaces['media'])\r\n\t\t\t\t\t\t->group\r\n\t\t\t\t\t\t->children($namespaces['media']);\r\n\t\t\t\t\t$album[$i]['media:description'] = trim($media->description);\r\n\t\t\t\t\t$album[$i]['media:thumbnail'] = trim($media->thumbnail->attributes()->url);\r\n\t\t\t\t\t$album[$i]['media:title'] = trim($media->title);\r\n\t\t\t\t\t$i++;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\tif ($test==1) { echo \"File: $file<br>\"; self::test_xml($album); }\r\n\t\t\treturn $album;\r\n\t\t}", "function GetAlbums( $ar = NULL) {\r\n addLog(\"mpd->GetAlbums()\");\r\n if ( is_null($resp = $this->SendCommand(MPD_CMD_TABLE, MPD_TBL_ALBUM, $ar ))) return NULL;\r\n $alArray = array();\r\n $alLine = strtok($resp,\"\\n\");\r\n $alName = \"\";\r\n $alCounter = -1;\r\n while ( $alLine ) {\r\n list ( $element, $value ) = explode(\": \",$alLine);\r\n if ( $element == \"Album\" ) {\r\n $alCounter++;\r\n $alName = $value;\r\n $alArray[$alCounter] = $alName;\r\n }\r\n $alLine = strtok(\"\\n\");\r\n }\r\n addLog(\"mpd->GetAlbums()\");\r\n return $alArray;\r\n }", "public function getAlbumId()\n {\n return $this->album_id;\n }", "public function doPushCloudMessagePhotoAlbum($aData)\n {\n /**\n * @var int\n */\n $iAlbumId = isset($aData['iItemId']) ? (int) $aData['iItemId'] : 0;\n /**\n * @var bool\n */\n $bIsUserProfile = isset($aData['bIsUserProfile']) ? (bool) $aData['bIsUserProfile'] : false;\n if ($bIsUserProfile)\n {\n $aAlbum = Phpfox::getService('photo.album')->getForProfileView($iAlbumId);\n }\n else\n {\n // Get the current album we are trying to view\n $aAlbum = Phpfox::getService('photo.album')->getForView($iAlbumId);\n }\n \n if (isset($aAlbum['user_id']) && $aAlbum['user_id'] != Phpfox::getUserId())\n {\n /**\n * @var int\n */\n $iPushId = Phpfox::getService('mfox.push')->savePush($aData, $aAlbum['user_id']);\n // Push cloud message.\n Phpfox::getService('mfox.cloudmessage')->send(array('message' => 'notification', 'iPushId' => $iPushId), $aAlbum['user_id']);\n }\n }", "public function getAlbumId(){\n return $this->albumId;\n }", "public function myalbum($aData)\n {\n $aData['view'] = 'my';\n $aData['iUserId'] = Phpfox::getUserId();\n\n return $this->getAlbum($aData);\n }", "public function setShared($shared);", "function singlePhoto($ALBUM,$overrides_array) {\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# CONFIGURATION\r\n\t\t\t#------------------------------------------------------\r\n\t\t\tglobal $pwa_pro;\r\n\t\t\t$pwa_options['PLUGIN_URI']\t= plugin_dir_path( __FILE__ );\r\n\t\t\t$pwa_options['PLUGIN_URL']\t= plugin_dir_url( __FILE__ );\r\n\t\t\t$pwa_options \t\t\t= self::setup_variables($pwa_options);\r\n\t\t\t$pwa_options['ALBUM'] \t\t= $specific_album = $ALBUM;\r\n\t\t\t$specific_photo \t\t= (isset($overrides_array[\"specific_photo\"])) ? \r\n\t\t\t\t\t\t\t\t$overrides_array[\"specific_photo\"] : 'none';\r\n\t\t\t$pwa_options['OVERRIDE_SIZE']\t\t= (isset($overrides_array[\"thumbnail_size\"])) ? \r\n\t\t\t\t\t\t\t$overrides_array[\"thumbnail_size\"] : $pwa_options['PHOTO_THUMBSIZE'];\r\n\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# Load Language File \r\n\t\t\t#------------------------------------------------------\r\n\t\t\trequire(PWA_DIR.\"/lang/\". get_option(c_pwa_language) .\".php\");\r\n\r\n\t\t\t$album_array = array();\r\n\t\t\t$photo_array = array();\r\n\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# Check for required variables from config file\r\n\t\t\t#------------------------------------------------------\r\n\t\t\tif (!isset($pwa_options['GDATA_TOKEN'], $pwa_options['PICASAWEB_USER'], \r\n\t\t\t\t$pwa_options['IMGMAX'], $pwa_options['USE_LIGHTBOX'], \r\n\t\t\t\t$pwa_options['OVERRIDE_SIZE'])) {\r\n\t\t\t\t$out = \"<h1>\" . $LANG_MISSING_VAR_H1 . \"</h1><h3>\" . $LANG_MISSING_VAR_H3 . \"</h3>\";\r\n\t\t\t\treturn($out);\r\n\t\t\t}\r\n\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# The Albums\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# Get the Album XML\r\n\t\t\t$pwa_options['FILE'] = \"http://picasaweb.google.com/data/feed/api/user/\" . \r\n\t\t\t$pwa_options['PICASAWEB_USER'] . \"?kind=album\";\r\n\r\n\t\t\t# Store XML in Album Array\r\n\t\t\t$album_array=self::gdata_album($pwa_options);\r\n\r\n\t\t\t# If has album array, count number of albums\r\n\t\t\tif (isset($album_array)) $album_count=count($album_array); \r\n\r\n\t\t\t# Check if $Album is in Array\r\n\t\t\tif (self::in_arrayr($specific_album, $album_array)) { $ALBUM=$specific_album; }\r\n\t\t\tif ($pwa_options['ALBUM'] == '') {\r\n\t\t\t\t$out='<font color=red>Album not found</font>';\r\n\t\t\t\treturn $out;\r\n\t\t\t}\r\n\r\n\t\t\t$cache_path = $pwa_options['PLUGIN_URL'] . \"cache/\" . \r\n\t\t\tmd5($pwa_options['PICASAWEB_USER']) . \"/\" . $pwa_options['ALBUM'] . \r\n\t\t\t\"/\" . $pwa_options['OVERRIDE_SIZE'] . \"/\";\r\n\r\n\t\t\t# Check if cache dir exists and mkdir if not\r\n\t\t\tif (isset($overrides_array[\"thumbnail_size\"])) {\r\n\t\t\t\t$pwa_options['CACHE_THUMBNAILS']='FALSE';\r\n\t\t\t} else {\r\n\t\t\t\tif (!empty($pwa_pro)) $pwa_options = $pwa_pro::check_cache_dir($pwa_options);\r\n\t\t\t}\r\n\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# The Photos\r\n\t\t\t#------------------------------------------------------\r\n\t\t\t# Get the Photo XML\r\n\t\t\t$pwa_options['FILE'] = \"http://picasaweb.google.com/data/feed/api/user/\" . \r\n\t\t\t$pwa_options['PICASAWEB_USER'] . \"/album/\" . $pwa_options['ALBUM'] . \r\n\t\t\t\"?kind=photo&thumbsize=\" . $pwa_options['OVERRIDE_SIZE'] . \"c&imgmax=\" . \r\n\t\t\t$pwa_options['IMGMAX'];\r\n\r\n\t\t\t# Store XML in Photo Array\r\n\t\t\t$photo_array=self::gdata_photo($pwa_options);\r\n\r\n\t\t\t# Store photo array in vars when specific photo found\r\n\t\t\tfor ($i = 0; $i < count($photo_array); $i++) {\r\n\t\t\t\t$href=$photo_array[$i]['media:content'];\r\n\t\t\t\t$thumb=$photo_array[$i]['media:thumbnail'];\r\n\t\t\t\t$picasa_title=$photo_array[$i]['media:title'];\r\n\t\t\t\t$text = $photo_array[$i]['summary'];\r\n\t\t\t\tif (strpos($href,$specific_photo)) $i = count($photo_array);\r\n\t\t\t}\r\n\r\n\t\t\t# If specific photo was not found, output error\r\n\t\t\tif (!strpos($href,$specific_photo)) {\r\n\t\t\t\t$out='<font color=red>Photo not found</font><br>';\r\n\t\t\t\treturn $out;\r\n\t\t\t}\r\n\r\n\t\t\t# Cache thumbnails\r\n\t\t\tif (!empty($pwa_pro) && $pwa_options['CACHE_THUMBNAILS'] =='TRUE') {\r\n\t\t\t\t\t$nthumb = $pwa_pro::cacheThumbnails($pwa_options,$thumb);\r\n\t\t\t\t\tif ($nthumb != '') { $thumb = $nthumb; }\r\n\t\t\t}\r\n\r\n\t\t\t# Rob - fix for missing photos. Displays an included photo to prevent breaking layout.\r\n\t\t\tif (($href==\"\") || ($thumb==\"\")) {\r\n\t\t\t\techo 'Broken '. $random_int .' | '. $pwa_options['ALBUM'] .' | ' .\r\n\t\t\t\t$random_image .' | '. $picasa_title .'<BR>'; \r\n\t\t\t\t$href=plugin_dir_url(__FILE__) .'images/missing.jpg';\r\n\t\t\t\t$thumb=plugin_dir_url(__FILE__) .'images/missing.jpg';\r\n\t\t\t\t$picasa_title=\"Missing Photo\";\r\n\t\t\t}\r\n\r\n\t\t\t# Rob - Add styling for first and last\r\n\t\t\t$out = \"<div class='thumbnail'>\"; \r\n\t\t\t$lightboxGroup = 'Single';\r\n\r\n\t\t\tif ($pwa_options['USE_LIGHTBOX'] == \"TRUE\") {\r\n\t\t\t\t$text = addslashes($text);\r\n\t\t\t\tlist($AT) = explode('_',$picasa_title);\r\n\t\t\t\tif($text != \"\") {\r\n\t\t\t\t\t$out .= \"<a href=\\\"$href\\\" class=\\\"lightbox\\\" rel=\\\"lightbox[$lightboxGroup]\\\" title=\\\"$text\\\"><img class='pwaimg' src='$thumb' alt='image_from_picasa'></img></a>\\n\";\r\n\t\t\t\t} else {\r\n\t\t\t\t\t$out .= \"<a href=\\\"$href\\\" class=\\\"lightbox\\\" rel=\\\"lightbox[$lightboxGroup]\\\" title=\\\"$AT\\\"><img class='pwaimg' src='$thumb' alt='image_from_picasa'></img></a>\\n\";\r\n\t\t\t\t}\r\n\t\t\t} \r\n\r\n\t\t\t$out .= \"</div>\";\r\n\t\t\t$out .= \"<div style='clear: right;'></div>\";\r\n\t\t\treturn($out);\r\n\t\t}", "public function getSectionsToAlbumsExport()\n\t{\n\t\t$sectionsToExport = array();\n\t\t$sectionsAliases = array();\n\n\t\tforeach ($this->mappedSections as $mappedSection)\n\t\t{\n\t\t\t$params = $mappedSection[\"PARAMS\"];\n\t\t\t$parentParams = $params[\"PARENT_SETTINGS\"];\n\n//\t\t\tnot inherit - check pur params\n\t\t\tif (!$params[\"INHERIT\"] && $params[\"ENABLE\"])\n\t\t\t{\n\t\t\t\t$sectionsToExport[$params[\"TO_ALBUM\"]] = $params[\"TO_ALBUM\"];\n//\t\t\t\talias get from settings. If not set - do nothing (will be used default name)\n\t\t\t\tif ($params[\"TO_ALBUM_ALIAS\"])\n\t\t\t\t\t$sectionsAliases[$params[\"TO_ALBUM\"]] = $params[\"TO_ALBUM_ALIAS\"];\n\t\t\t}\n\t\t\t\n//\t\t\tinherit - get params from parent. If not include child - import in self album\n\t\t\telseif($params[\"INHERIT\"] && $parentParams && $parentParams[\"ENABLE\"] && !$parentParams[\"INCLUDE_CHILDS\"])\n\t\t\t{\n\t\t\t\t$sectionsToExport[$mappedSection[\"BX_ID\"]] = $mappedSection[\"BX_ID\"];\n//\t\t\t\talias get from settings. If not set - do nothing (will be used default name)\n\t\t\t\tif ($parentParams[\"TO_ALBUM_ALIAS\"])\n\t\t\t\t\t$sectionsAliases[$parentParams[\"TO_ALBUM\"]] = $parentParams[\"TO_ALBUM_ALIAS\"];\n\t\t\t}\n\n//\t\t\tif INHERIT and parent section included childs - put section to parent to_album\n\t\t\telseif ($params[\"INHERIT\"] && $parentParams && $parentParams[\"ENABLE\"] && $parentParams[\"INCLUDE_CHILDS\"])\n\t\t\t{\n\t\t\t\t$sectionsToExport[$parentParams[\"TO_ALBUM\"]] = $parentParams[\"TO_ALBUM\"];\n//\t\t\t\t\talias get from settings. If not set - do nothing (will be used default name)\n\t\t\t\tif ($parentParams[\"TO_ALBUM_ALIAS\"])\n\t\t\t\t\t$sectionsAliases[$parentParams[\"TO_ALBUM\"]] = $parentParams[\"TO_ALBUM_ALIAS\"];\n\t\t\t}\n\t\t}\n\n\t\treturn array(\"SECTIONS\" => $sectionsToExport, \"ALIASES\" => $sectionsAliases);\n\t}", "public function setAlbumId($albumID);", "public function shareWith(AlbumShareForm $albumShareForm, Request $request)\n {\n\n $albumShareForm->validate($request->only('shareWith'));\n\n $album = $this->albumRepo->shareAlbumWith($request->except('_token'));\n\n flash()->success('Album shared', 'Album ' . $album->name . ' shared with your friends.');\n\n return back();\n }", "public function GetAlbums()\r\n\t{\r\n\t\terror_log(\"inicio GetAlbums \\n\",3,'/mnt/var/log/registro.log');\r\n\t\t\r\n\t\t$this->CheckToken();\r\n\r\n\t\t$albums = $this->api->getMySavedAlbums();\r\n\r\n\t\treturn $albums;\r\n\t}", "public function profilealbum($aData)\n {\n $aData['bIsUserProfile'] = 'true';\n \n return $this->getAlbum($aData);\n }", "public function getAlbums();", "public function getAlbum();", "public function share($sk, $api_sig, $recipient, $track, $artist, $public = null, $message = null)\n {\n return $this->getClient()->call('track.share', array(\n 'sk' => $sk,\n 'api_sig' => $api_sig,\n 'recipient' => $recipient,\n 'track' => $track,\n 'artist' => $artist,\n 'public' => $public,\n 'message' => $message,\n ));\n }", "function parse_options() {\n global $artist,$album;\n\n $shortopts = 'a:b:';\n $longopts = array(\n 'artist:',\n 'album:',\n );\n\n $opts = getopt($shortopts, $longopts);\n\n if (isset($opts['a'])) {\n $artist = $opts['a'];\n }\n else if (isset($opts['artist'])) {\n $artist = $opts['artist'];\n }\n else {\n usage(); // required\n }\n\n if (isset($opts['b'])) {\n $album = $opts['b'];\n }\n else if (isset($opts['album'])) {\n $album = $opts['album'];\n }\n else {\n usage(); // required\n }\n}", "public function getAlbums( $ar = null) {\n $this->debug(\"mpd->getAlbums()\");\n if ( is_null($resp = $this->sendCommand(self::CMD_TABLE, self::TBL_ALBUM, $ar ))) return null;\n $alArray = array();\n\n $alLine = strtok($resp,\"\\n\");\n $alName = \"\";\n $alCounter = -1;\n while ( $alLine ) {\n list ( $element, $value ) = explode(\": \",$alLine);\n if ( $element == \"Album\" ) {\n $alCounter++;\n $alName = $value;\n $alArray[$alCounter] = $alName;\n }\n\n $alLine = strtok(\"\\n\");\n }\n $this->debug(\"mpd->getAlbums()\");\n return $alArray;\n }", "protected function syncSharedFolders()\n\t{\n\t\t$shared = (array) $this->rocketeer->getOption('remote.shared');\n\t\tforeach ($shared as $file) {\n\t\t\t$this->share($file);\n\t\t}\n\t}", "function se_album($user_id = 0) {\n\n\t $this->user_id = $user_id;\n\n\t}", "public function constructAlbumSettings(): AlbumSettings\n\t{\n\t\treturn new AlbumSettings($this->urlGenerator,\n\t\t\t$this->baseURL,\n\t\t\t$this->baseDir,\n\t\t\t$this->thumbnailWidth,\n\t\t\t$this->thumbnailHeight,\n\t\t\t$this->pictureWidth,\n\t\t\t$this->pictureHeight,\n\t\t\t$this->filePermissions,\n\t\t\t$this->dirPermissions,\n\t\t\t$this->displayAnchors,\n\t\t\t$this->iconsPath,\n\t\t\t$this->pictureAnchorPrefix,\n\t\t\t$this->albumLabels,\n\t\t\t$this->pictureLabels,\n\t\t\t$this->albumEditorSettings,\n\t\t\t$this->pictureEditorSettings,\n\t\t\t$this->albumPageSize,\n\t\t\t$this->thumbnailsTable,\n\t\t\t$this->picturesTable,\n\t\t\t$this->operationParam);\n\t}", "function get_profile_album($fb_user_id=null) {\r\n\t\tif($fb_user_id===null){\r\n\t\t\t$fb_user_id = $this->get_user(); // if no user ID passed, set it to current user\r\n\t\t}\r\n\t\t\r\n\t\t$q = 'SELECT aid, object_id, owner, visible, owner, can_upload FROM album WHERE type=\"profile\" AND owner=\"' . $fb_user_id . '\"';\r\n\t\t\r\n\t\t$response = $this->api(\"fql?q=\" . urlencode($q));\r\n\t\t\r\n\t\tif(!empty($response['data'][0])) {\r\n\t\t\treturn $response['data'][0];\t\r\n\t\t}\r\n\t\t\r\n\t\treturn null;\r\n\t}", "public function getIdAlbum() {\n\t\treturn $this->idAlbum;\n\t}", "public function getAlbumId();", "public function myAlbumsContains(string|array $albums): array\n {\n $albums = $this->uriToId($albums, 'album');\n $albums = $this->toCommaString($albums);\n\n $options = [\n 'ids' => $albums,\n ];\n\n $uri = '/v1/me/albums/contains';\n\n $this->lastResponse = $this->sendRequest('GET', $uri, $options);\n\n return $this->lastResponse['body'];\n }", "public function sharedLinksAddRequest($shared_link, $raw = false, $x_apideck_consumer_id = null, $x_apideck_app_id = null, $x_apideck_service_id = null)\n {\n // verify the required parameter 'shared_link' is set\n if ($shared_link === null || (is_array($shared_link) && count($shared_link) === 0)) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $shared_link when calling sharedLinksAdd'\n );\n }\n\n $resourcePath = '/file-storage/shared-links';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n // query params\n if ($raw !== null) {\n if('form' === 'form' && is_array($raw)) {\n foreach($raw as $key => $value) {\n $queryParams[$key] = $value;\n }\n }\n else {\n $queryParams['raw'] = $raw;\n }\n }\n\n // header params\n if ($x_apideck_consumer_id !== null) {\n $headerParams['x-apideck-consumer-id'] = ObjectSerializer::toHeaderValue($x_apideck_consumer_id);\n }\n // header params\n if ($x_apideck_app_id !== null) {\n $headerParams['x-apideck-app-id'] = ObjectSerializer::toHeaderValue($x_apideck_app_id);\n }\n // header params\n if ($x_apideck_service_id !== null) {\n $headerParams['x-apideck-service-id'] = ObjectSerializer::toHeaderValue($x_apideck_service_id);\n }\n\n\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($shared_link)) {\n if ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode(ObjectSerializer::sanitizeForSerialization($shared_link));\n } else {\n $httpBody = $shared_link;\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $formParamValueItems = is_array($formParamValue) ? $formParamValue : [$formParamValue];\n foreach ($formParamValueItems as $formParamValueItem) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValueItem\n ];\n }\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\Query::build($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('Authorization');\n if ($apiKey !== null) {\n $headers['Authorization'] = $apiKey;\n }\n\n $defaultHeaders = $this->config->getDefaultHeaders();\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\Query::build($queryParams);\n return new Request(\n 'POST',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "protected function upsertAlbum($album) {\n db_merge('cfas_albums')\n ->key(array('album_url' => $this->album_url))\n ->fields($album)\n ->execute();\n }", "public function share(bool $share = true)\n {\n // cannot be shared\n }", "public function addMyAlbums(string|array $albums): bool\n {\n $albums = $this->uriToId($albums, 'album');\n $albums = json_encode((array) $albums);\n\n $headers = [\n 'Content-Type' => 'application/json',\n ];\n\n $uri = '/v1/me/albums';\n\n $this->lastResponse = $this->sendRequest('PUT', $uri, $albums, $headers);\n\n return $this->lastResponse['status'] == 200;\n }" ]
[ "0.7579755", "0.48493218", "0.47643647", "0.4726842", "0.46983624", "0.46958527", "0.469524", "0.46882567", "0.46827322", "0.46792233", "0.4665845", "0.4660221", "0.46315122", "0.4609135", "0.46051207", "0.45970693", "0.45943025", "0.45667434", "0.4564341", "0.45149595", "0.45068768", "0.45059863", "0.44766045", "0.4470174", "0.4464418", "0.44247502", "0.43974903", "0.43727326", "0.43682837", "0.43592647" ]
0.8229298
0
Transform the \WifiConfig entity
public function transform(WifiConfig $model) { $data = [ 'id' => $model->_id, 'bssid' => $model->bssid, 'ssid' => $model->ssid, 'name' => $model->name, 'branch' => [], 'dep' => [] ]; $branch = $model->branch(); $dep = $model->dep(); if (!empty($branch)) { $data['branch'] = $branch->transform(); } if (!empty($dep)) { $data['dep'] = $dep->transform(); } return $data; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getAttributeMapTranslatorConfig(): TranslatorConfigTransfer;", "public function getAttributeMapMapperConfig(): MapperConfigTransfer;", "public function getAttributeMapPreparationMapperConfig(): MapperConfigTransfer;", "public function toConfig()\n {\n $node = [];\n $node['driver'] = $this->getDriver();\n\n // Copy the configuration from DSN to node config\n if ($host = $this->getHost()) {\n $node['host'] = $host;\n }\n\n if ($port = $this->getPort()) {\n $node['port'] = $port;\n }\n if ($socket = $this->getUnixSocket()) {\n $node['unix_socket'] = $socket;\n }\n // MySQL/PgSQL only attribute\n if ($dbname = $this->getAttribute('dbname')) {\n $node['database'] = $dbname;\n }\n\n switch ($this->getDriver()) {\n case 'mysql':\n // $this->logger->debug('Setting connection options: PDO::MYSQL_ATTR_INIT_COMMAND');\n $node['connection_options'] = [PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'];\n break;\n }\n\n return $node;\n }", "public function getWifiList(){\n return $this->_get(2);\n }", "public function getNormalizedConfig();", "function wconfig() {\n\t\t$cflink = &get_reference_to_me_in_config($this->GetLink());\n\t\tif (!is_array($cflink)) {\n\t\t\t$cflink = array();\n\t\t}\n\t\t$cflink['interface'] = $this->GetInterface();\n\t\t$cflink['name'] = $this->GetQname();\n\t\t$cflink['scheduler'] = $this->GetScheduler();\n\t\t$cflink['bandwidth'] = $this->GetBandwidth();\n\t\t$cflink['bandwidthtype'] = $this->GetBwscale();\n\t\t$cflink['qlimit'] = trim($this->GetQlimit());\n\t\tif (empty($cflink['qlimit'])) {\n\t\t\tunset($cflink['qlimit']);\n\t\t}\n\t\t$cflink['tbrconfig'] = trim($this->GetTbrConfig());\n\t\tif (empty($cflink['tbrconfig'])) {\n\t\t\tunset($cflink['tbrconfig']);\n\t\t}\n\t\t$cflink['enabled'] = $this->GetEnabled();\n\t\tif (empty($cflink['enabled'])) {\n\t\t\tunset($cflink['enabled']);\n\t\t}\n\t}", "function get_SourceConfiguration() {\n\t return array (\n\t // -------------------------------------------------------------------------------------------------------\n\t\t\tc_Room_LivingRoom => array(\n\t\t\t\t0 \t=> array(\n\t\t\t\t\tc_Property_Name \t=> 'NetRadio',\n\t\t\t\t\tc_Property_Input\t=> array(c_Property_Device \t=> c_Device_Yamaha_NetRadio),\n\t\t \t\t\tc_Property_Output\t=> \tarray(\n\t\t\t\t\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_YamahaMain,\n\t\t\t\t\t\t\t\t\t\t\t\t\tc_Property_CommSrc\t=> array(c_Comm_Yamaha, array('INP' => ya_NET_RADIO, 'VOL' => -45)),\n\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_SubwooferBack,\n\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t\t1 \t=> array(\n\t\t\t\t\tc_Property_Name \t=> 'TV',\n\t\t\t\t\tc_Property_Input\t=> array(\n\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_SamsungTV,\n\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t \t\t\tc_Property_Output\t=> array(\n\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_YamahaMain,\n\t\t\t\t\t\t\t\t\t\t\tc_Property_CommSrc\t=> array(c_Comm_Yamaha, array('INP' => ya_AUDIO1, 'VOL' => -40))\n\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t\t2 \t=> array(\n\t\t\t\t\tc_Property_Name \t=> 'BluRay',\n\t\t \t\t\tc_Property_Switch\t=> array(\n\t\t\t\t\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_YamahaMain,\n\t\t\t\t\t\t\t\t\t\t\t\t\tc_Property_CommSrc\t=> array(c_Comm_Yamaha, array('INP' => ya_AV1, 'VOL' => -37))\n\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_SubwooferBack,\n\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\tc_Property_Output\t=> array(\n\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_SamsungTV,\n\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t\t3 \t=> array(\n\t\t\t\t\tc_Property_Name \t=> 'AppleTV',\n\t\t \t\t\tc_Property_Switch\t=> array(\n\t\t\t\t\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_YamahaMain,\n\t\t\t\t\t\t\t\t\t\t\t\t\tc_Property_CommSrc\t=> array(c_Comm_Yamaha, array('INP' => ya_AV2, 'VOL' => -35))\n\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_SubwooferBack,\n\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\tc_Property_Output\t=> array(\n\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_SamsungTV,\n\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t\t4 \t=> array(\n\t\t\t\t\tc_Property_Name \t=> 'AppleSound',\n\t\t \t\t\tc_Property_Switch\t=> array(\n\t\t\t\t\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_SubwooferBack,\n\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\tc_Property_Output\t=> array(\n\t\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_YamahaMain,\n\t\t\t\t\t\t\t\t\t\t\t\tc_Property_CommSrc\t=> array(c_Comm_Yamaha, array('INP' => ya_AV2, 'VOL' => -35))\n\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t),\n\t // -------------------------------------------------------------------------------------------------------\n\t\t c_Room_Kitchen => array(\n\t\t\t\t0 \t=> array(\n\t\t\t\t\tc_Property_Name \t=> 'NetRadio',\n\t\t\t\t\tc_Property_Input\t=> array(c_Property_Device \t=> c_Device_Yamaha_NetRadio),\n\t\t \t\t\tc_Property_Output\t=> array(\n\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_YamahaZone2,\n\t\t\t\t\t\t\t\t\t\t\tc_Property_CommSrc\t=> array(c_Comm_Yamaha, array('INP' => ya_NET_RADIO, 'VOL' => -5), 'ZONE2')\n\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t\t1 \t=> array(\n\t\t\t\t\tc_Property_Name \t=> 'TV',\n\t\t\t\t\tc_Property_Input\t=> array(c_Property_Device \t=> c_Device_SamsungTV),\n\t\t\t\t\tc_Property_Output\t=> array(\n\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_YamahaZone2,\n\t\t\t\t\t\t\t\t\t\t\tc_Property_CommSrc\t=> array(c_Comm_Yamaha, array('INP' => ya_AUDIO1, 'VOL' => 0), 'ZONE2')\n\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t\t2 \t=> array(\n\t\t\t\t\tc_Property_Name \t=> 'BluRay',\n\t\t\t\t\t//c_Property_Switch\t=> array(c_Property_Device \t=> c_Device_SamsungTV),\n\t\t\t\t\tc_Property_Output\t=> array(\n\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_YamahaZone2,\n\t\t\t\t\t\t\t\t\t\t\tc_Property_CommSrc\t=> array(c_Comm_Yamaha, array('INP' => ya_AV1, 'VOL' => -3), 'ZONE2')\n\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t\t3 \t=> array(\n\t\t\t\t\tc_Property_Name \t=> 'AppleTV',\n\t\t\t\t\t//c_Property_Switch\t=> array(c_Property_Device \t=> c_Device_SamsungTV),\n\t\t\t\t\tc_Property_Output\t=> array(\n\t\t\t\t\t\t\t\t\t\t\tc_Property_Device \t=> c_Device_YamahaZone2,\n\t\t\t\t\t\t\t\t\t\t\tc_Property_CommSrc\t=> array(c_Comm_Yamaha, array('INP' => ya_AV2, 'VOL' => -5), 'ZONE2')\n\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t),\n\t // -------------------------------------------------------------------------------------------------------\n\t\t);\n\t}", "public function transform(AdapterNetworkConnection $model)\n {\n return [\n 'id' => (int) $model->id,\n\n /* place your other model properties here */\n\n 'created_at' => $model->created_at,\n 'updated_at' => $model->updated_at\n ];\n }", "public function getOriginalConfig();", "private function makeConfig()\n {\n return array(\n 'ip' => $this->getPublicIp(),\n 'name' => $this->getDeviceName(),\n 'uuid' => $this->generateUuid(),\n 'key' => $this->generateKey()\n );\n }", "function get_DeviceConfiguration () {\n\t\treturn array (\n\t // -------------------------------------------------------------------------------------------------------\n\t\t\tc_Device_YamahaMain \t=> array(\n\t\t\t\tc_Control_DevicePower \t=> array(\n\t\t\t\t\tc_Property_Name \t\t\t=> 'Power',\n\t\t\t\t\tc_Property_PowerDelay\t\t=> 150,\n\t\t\t\t\tc_Property_CommPower\t\t=> array(c_Comm_Yamaha, 'PWR', '?'),\n\t\t\t\t\tc_Property_CommPowerOff\t\t=> array(c_Comm_Yamaha, 'PWR', 'OFF'),\n\t\t\t\t\tc_Property_CommPowerOn\t\t=> array(c_Comm_Yamaha, 'PWR', 'ON'),\n\t\t\t\t),\n\t\t\t\tc_Control_Volume\t\t=> array(\n\t\t\t\t\tc_Property_Name\t\t\t\t=> 'Volume',\n\t\t\t\t\tc_Property_CommVol\t\t\t=> array(c_Comm_Yamaha, 'VOL', c_Template_Value),\n\t\t\t\t\tc_Property_MinValue\t\t\t=> -60,\n\t\t\t\t\tc_Property_MaxValue\t\t\t=> -15,\n\t\t\t\t),\n\t\t\t\tc_Control_RemoteVolume \t=> array(\n\t\t\t\t\tc_Property_Name \t\t=> 'Volume Control',\n\t\t\t\t\tc_Property_Names \t=> array('src=\"../user/Entertainment/Remote_YamahaVolume.php\" height=38px'),\n\t\t\t\t),\n\t\t\t\tc_Control_RemoteSource\t=> array(\n\t\t\t\t\tc_Property_Name \t\t\t=> 'Source Control',\n\t\t\t\t\tc_Property_Names \t\t=> array('src=\"../user/Entertainment/Remote_YamahaEmpty.php\" height=10px'),\n\t\t\t\t),\n\t\t\t\tc_Control_Muting \t\t\t=> array(\n\t\t\t\t\tc_Property_Name \t\t\t=> 'Mute',\n\t\t\t\t\tc_Property_CommMuteOn \t\t=> array(c_Comm_Yamaha, 'MUTE', 'ON'),\n\t\t\t\t\tc_Property_CommMuteOff \t\t=> array(c_Comm_Yamaha, 'MUTE', 'OFF'),\n\t\t\t\t),\n\t\t\t),\n\t\t\t// -------------------------------------------------------------------------------------------------------\n\t\t\tc_Device_YamahaZone2 \t=> array(\n\t\t\t\tc_Control_DevicePower \t=> array(\n\t\t\t\t\tc_Property_Name \t\t\t=> 'Power',\n\t\t\t\t\tc_Property_PowerDelay\t\t=> 150,\n\t\t\t\t\tc_Property_CommPowerOff\t=> array(c_Comm_Yamaha, 'PWR', 'OFF', 'ZONE2'),\n\t\t\t\t\tc_Property_CommPowerOn\t=> array(c_Comm_Yamaha, 'PWR', 'ON', 'ZONE2'),\n\t\t\t\t),\n\t\t\t\tc_Control_Volume\t\t=> array(\n\t\t\t\t\tc_Property_Name\t\t\t\t=> 'Volume',\n\t\t\t\t\tc_Property_CommVol\t\t\t=> array(c_Comm_Yamaha, 'VOL', c_Template_Value, 'ZONE2'),\n\t\t\t\t\tc_Property_MinValue\t\t\t=> -20,\n\t\t\t\t\tc_Property_MaxValue\t\t\t=> 10,\n\t\t\t\t),\n\t\t\t\tc_Control_Muting \t\t\t=> array(\n\t\t\t\t\tc_Property_Name \t\t\t=> 'Mute',\n\t\t\t\t\tc_Property_CommMuteOn \t\t=> array(c_Comm_Yamaha, 'MUTE', 'ON', 'ZONE2'),\n\t\t\t\t\tc_Property_CommMuteOff \t\t=> array(c_Comm_Yamaha, 'MUTE', 'OFF', 'ZONE2'),\n\t\t\t\t),\n\t\t\t),\n\t // -------------------------------------------------------------------------------------------------------\n\t\t\tc_Device_Yamaha_NetRadio \t=> array(\n\t\t\t\tc_Property_PowerDelay\t=> c_Device_YamahaMain,\n\t\t\t\tc_Control_RemoteSource\t=> array(\n\t\t\t\t\tc_Property_Name \t\t\t=> 'Source Control',\n\t\t\t\t\tc_Property_Names \t\t=> array('src=\"../user/Entertainment/Remote_YamahaNetRadio.php\" height=150px'),\n\t\t\t\t),\n\t\t\t\tc_Control_iRemoteSource \t=> array(\n\t\t\t\t\tc_Property_Name \t\t\t=> 'iPhone Source Control',\n\t\t\t\t\tc_Property_Names \t\t=> array('src=\"../user/Entertainment/iRemote_YamahaNetRadio.php\"'),\n\t\t\t\t),\n\t\t\t\tc_Control_Program \t=> array(\n\t\t\t\t\tc_Property_Name \t\t\t=> 'Program',\n\t\t\t\t\tc_Property_CommPrg\t\t\t=> array(c_Comm_Yamaha, 'CHAN', c_Template_Code),\n\t\t\t\t\tc_Property_CommPrgPrev\t\t=> array(c_Comm_Yamaha, 'CHAN', 'prev'),\n\t\t\t\t\tc_Property_CommPrgNext\t\t=> array(c_Comm_Yamaha, 'CHAN', 'next'),\n\t\t\t\t\tc_Property_Codes\t\t\t=> array('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13'),\n\t\t\t\t\tc_Property_Names\t\t\t=> array('NDR2', 'Technobase FM', '104.6 RTL', 'The End 107.9FM', 'NRJ Berlin', 'Fritz','1.fm Top 40','KISS FM 102.7','Ambient Meditation Music','Calm Radio - Sleep','Nirvana Radio Relaxation','Chroma Radio Nature','Healing Music Radio'),\n\t\t\t\t),\n\t\t\t),\n\t\t\t// -------------------------------------------------------------------------------------------------------\n\t\t\tc_Device_SubwooferBack \t=> array(\n\t\t\t\tc_Control_DevicePower \t=> array(\n\t\t\t\t\tc_Property_Name \t\t\t=> 'Power',\n\t\t\t\t\tc_Property_PowerDelay\t\t=> 150,\n\t\t\t\t\tc_Property_CommPowerOff\t\t=> array(c_Comm_HomeMaticSwitch, c_Device_SubwooferBack_ID, 'PWR', 'OFF'),\n\t\t\t\t\tc_Property_CommPowerOn\t\t=> array(c_Comm_HomeMaticSwitch, c_Device_SubwooferBack_ID, 'PWR', 'ON'),\n\t\t\t\t),\n\t\t\t),\n\t\t\t// -------------------------------------------------------------------------------------------------------\n\t\t\tc_Device_SamsungTV \t\t=> array(\n\t\t\t\tc_Control_DevicePower \t=> array(\n\t\t\t\t\tc_Property_Name \t\t\t=> 'Power',\n\t\t\t\t\tc_Property_PowerDelay\t\t=>150,\n\t\t\t\t\tc_Property_CommPowerOn\t\t=> array(c_Comm_NetIO230, c_Device_SamsungTV_ID, 'PWR', 'ON'),\n\t\t\t\t\tc_Property_CommPowerOff\t\t=> array(c_Comm_NetIO230, c_Device_SamsungTV_ID, 'PWR', 'OFF'),\n\t\t\t\t),\n\t\t\t),\n\t // -------------------------------------------------------------------------------------------------------\n\t\t);\n\t}", "private function getConfigData()\n\t{\n\t\tarray_filter(\n\t\t\t$this->config,\n\t\t\tfunction ($k) {\n\t\t\t\tif ($this->isImageProcessorKey($k))\n\t\t\t\t\t$this->classConfig[$k] = $this->config[$k];\n\t\t\t},\n\t\t\tARRAY_FILTER_USE_KEY\n\t\t);\n }", "public function getProductModelImportMapperConfig(): MapperConfigTransfer;", "abstract public function getConfigEntity();", "public function network()\n {\n return $this->belongsTo('App\\NetworkConfig');\n }", "public function getCategoryImportMapperConfig(): MapperConfigTransfer;", "public function saveRemoteConfig()\n {\n $path = $this->getConfigPath();\n\n \t$result = Mage::getModel('tiramizoo/api', array('api_token' => $this->_apiToken))\n \t->getRemoteConfiguration();\n\n if ($result['http_status'] != 200) {\n throw new Exception(\"Can't connect to Tiramizoo API\", 1);\n }\n\n if (isset($result['response'])) {\n Mage::getModel('core/config')->saveConfig($path, json_encode($result['response']));\n $this->_config = json_encode($result['response']);\n }\n\n return $this;\n }", "function convertMgmtConfigVars()\n{\n\tglobal $dbxlink;\n\t$ret = array();\n\tforeach (array ('telnet' => 'TELNET_OBJS_LISTSRC', 'ssh' => 'SSH_OBJS_LISTSRC', 'rdp' => 'RDP_OBJS_LISTSRC') as $proto => $varname)\n\t{\n\t\t$result = $dbxlink->prepare (\"SELECT varvalue FROM Config WHERE varname = ?\");\n\t\t$result->execute (array ($varname));\n\t\tif ($row = $result->fetch (PDO::FETCH_ASSOC))\n\t\t\tif ($row['varvalue'] != 'false' && $row['varvalue'] != '')\n\t\t\t\t$ret[] = \"$proto: \" . $row['varvalue'];\n\t\tunset ($result);\n\t}\n\treturn implode (',', $ret);\n}", "public function getRawConfig()\n {\n return $this->rawConfig;\n }", "public function getProductImportMapperConfig(): MapperConfigTransfer;", "public function transform(array $config): string\n {\n $writer = new \\XMLWriter();\n $writer->openMemory();\n $writer->setIndent(true);\n $writer->setIndentString(\\str_repeat(' ', 4));\n $writer->startDocument('1.0', 'UTF-8');\n $writer->startElement('config');\n\n foreach ($config as $nodeName => $nodeData) {\n $nodeName = \\is_numeric($nodeName) ? 'num__'.$nodeName : $nodeName;\n\n if (\\is_array($nodeData)) {\n $this->addChildNode($nodeName, $nodeData, $writer);\n } elseif (\\is_bool($nodeData)) {\n $writer->writeElement($nodeName, $nodeData === true ? 'true' : 'false');\n } else {\n $writer->writeElement($nodeName, (string)$nodeData);\n }\n }\n\n $writer->endElement();\n $writer->endDocument();\n return $writer->outputMemory();\n }", "function SiteConfig() {\n\n $jsonRecord = array();\n $retVal = $this->LookUp->getSiteConfig();\n $jsonRecord['RoundingRule'] = \"0\";\n $jsonRecord['MedHold'] = \"0\";\n if (empty($retVal)){\n }\n else {\n foreach ($retVal as $record) {\n $temp = json_encode($record);\n $name = $record[\"Name\"];\n $value = $record[\"Description\"];\n $jsonRecord[$name] = $value;\n }\n }\n\n $jsonRecord['success'] = true;\n $this->set('jsonRecord', $jsonRecord);\n }", "private function setConfig()\n {\n if( !empty( $this->CONFIG ) )\n {\n if( \\PHP_DDNS\\Core\\PHP_DDNS_Helper::arrayKeysExist( array( 'ip', 'uuid', 'name', 'key', 'hook' ), $this->CONFIG ) )\n {\n file_put_contents( PHP_DDNS_ROOT . \".device\", json_encode( $this->CONFIG ) );\n }\n else\n {\n throw new \\PHP_DDNS\\Core\\PHP_DDNS_Pinger_Exception( \"\\nDevice details incomplete! This may require manual intervention.\\n\\n\" );\n }\n }\n else\n {\n throw new \\PHP_DDNS\\Core\\PHP_DDNS_Pinger_Exception( \"\\nDevice details not generated!\\n\\n\" );\n }\n }", "private function migrateKnowledgeGraphSettings() {\n\t\tif ( ! empty( $this->options['company_or_person'] ) ) {\n\t\t\taioseo()->options->searchAppearance->global->schema->siteRepresents =\n\t\t\t\t'company' === $this->options['company_or_person'] ? 'organization' : 'person';\n\t\t}\n\n\t\t$settings = [\n\t\t\t'company_or_person_user_id' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', 'person' ] ],\n\t\t\t'person_logo' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', 'personLogo' ] ],\n\t\t\t'person_name' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', 'personName' ] ],\n\t\t\t'company_name' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', 'organizationName' ] ],\n\t\t\t'company_logo' => [ 'type' => 'string', 'newOption' => [ 'searchAppearance', 'global', 'schema', 'organizationLogo' ] ],\n\t\t];\n\n\t\taioseo()->importExport->yoastSeo->helpers->mapOldToNew( $settings, $this->options );\n\t}", "public function processConfiguration();", "public function transform(User $model)\n {\n $setting = $model->setting;\n $setting = collect($setting)->map(function ($item, $key) {\n return (isset($item) ? $item : '');\n })->all();\n\n return collect([\n 'id' => (int) $model->id,\n 'uid' => $model->uid,\n 'account' => $model->account,\n 'password' => $model->password,\n 'phone' => $model->phone,\n 'email' => $model->email,\n 'name' => $model->name,\n 'nickname' => $model->nickname,\n 'setting' => $setting,\n 'status' => $model->status,\n\n /* place your other model properties here */\n \n /* Timezone datetime */\n 'agreed_at' => $model->agreed_at,\n 'created_at' => $model->created_at,\n 'updated_at' => $model->updated_at\n ])->map(function ($item, $key) {\n return (isset($item) ? $item : '');\n })->all();\n }", "protected function prepareConfiguration()\n {\n array_walk_recursive($this->configuration, function(&$value, $key, $context){\n if (is_string($value))\n {\n if (0 === strpos($value, 'resource://'))\n $value = $context->resolveResourcePath($value);\n }\n }, $this);\n\n //extend configurations\n foreach ($this->configuration as $index => $subConfiguration)\n $this->configuration[$index] = $this->extendConfiguration($index, $subConfiguration);\n }", "public function getNetworkingConfig()\n {\n return $this->networking_config;\n }", "public function getConfigAdapter();" ]
[ "0.49154449", "0.48653698", "0.4823403", "0.4729382", "0.47125736", "0.47120214", "0.47043756", "0.4692795", "0.46910572", "0.45952502", "0.45420668", "0.4509335", "0.4414457", "0.4382681", "0.4341853", "0.43407086", "0.43165463", "0.43015647", "0.4286409", "0.42544466", "0.42486417", "0.41968095", "0.41797101", "0.41795233", "0.41726232", "0.41543424", "0.4154309", "0.4097748", "0.40956435", "0.409294" ]
0.6657406
0
Link a metadata type to a strategy that can create a resource for it.
public function addStrategy(string $metadataType, $strategy): void { if ( ! class_exists($metadataType) || ! in_array(AbstractMetadata::class, class_parents($metadataType), true) ) { throw Exception\UnknownMetadataTypeException::forInvalidMetadataClass($metadataType); } if ( is_string($strategy) && ( ! class_exists($strategy) || ! in_array(StrategyInterface::class, class_implements($strategy), true) ) ) { throw Exception\InvalidStrategyException::forType($strategy); } if (is_string($strategy)) { $strategy = new $strategy(); } if (! $strategy instanceof StrategyInterface) { throw Exception\InvalidStrategyException::forInstance($strategy); } $this->strategies[$metadataType] = $strategy; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function addResourceByType($type, $resource){ }", "public function defineLinkTypeRequirements();", "public function create($type, $params){\n $methods = new Methods($this->container);\n\n $params['type'] = $this->container->get('relations')[$type];\n return $methods->create('metadata',$params);\n }", "public function getLinkTypeRepository();", "abstract protected function createResource();", "public function metadata($type);", "abstract public function _create($type=null);", "protected function _setTypeId()\n {\n $this->registry->register(\n 'entityType',\n $this->productFactory->create()->getResource()->getTypeId()\n );\n }", "public function meta($resource);", "public function addLink(string $type, string $name, string $value): void;", "public function createResource()\n {\n $this->call('make:resource', [\n 'name' => $this->singular() . \"Resource\",\n ]);\n }", "public function __construct($typeClass) {\n $linkClass = get_class($this);\n $args = array_slice(func_get_args(), 1);\n $linkable = call_user_func_array(array($typeClass, 'get' . substr($linkClass, 0, -9) . 'LinkData'), $args);\n assert($linkable instanceof Linkable);\n $this->linkable = $linkable;\n }", "function register($type, ConcreteFactoryInterface $factory);", "protected function createDefinition($metadata)\n {\n $this->generator\n ->multiComment(array('\"' . $metadata->entity . '\" database entity class'))\n ->defClass($this->className, '\\\\' . \\samsonframework\\orm\\Record::class);\n }", "public function getResource($type) {\n\t}", "public function getLinkType();", "abstract public function get_meta_type();", "public function register_relationship_meta() {\n\t\tregister_post_meta(\n\t\t\t$this->object_post_type->options['type'],\n\t\t\tWPM_PREFIX . 'child_objects',\n\t\t\t[\n\t\t\t\t'type' => 'object',\n\t\t\t\t'description' => 'Child objects',\n\t\t\t\t'single' => true,\n\t\t\t\t'show_in_rest' => [\n\t\t\t\t\t'schema' => [\n\t\t\t\t\t\t'type' => 'object',\n\t\t\t\t\t\t'properties' => [],\n\t\t\t\t\t\t'additionalProperties' => [\n\t\t\t\t\t\t\t'type' => 'array',\n\t\t\t\t\t\t\t'items' => [\n\t\t\t\t\t\t\t\t'type' => 'number',\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t],\n\t\t\t\t\t],\n\t\t\t\t],\n\t\t\t\t'auth_callback' => function() {\n\t\t\t\t\treturn current_user_can( 'edit_posts' );\n\t\t\t\t},\n\t\t\t]\n\t\t);\n\n\t\tregister_post_meta(\n\t\t\t$this->object_post_type->options['type'],\n\t\t\tWPM_PREFIX . 'child_objects_str',\n\t\t\t[\n\t\t\t\t'type' => 'string',\n\t\t\t\t'description' => 'Child objects',\n\t\t\t\t'single' => true,\n\t\t\t\t'show_in_rest' => true,\n\t\t\t\t'auth_callback' => function() {\n\t\t\t\t\treturn current_user_can( 'edit_posts' );\n\t\t\t\t},\n\t\t\t]\n\t\t);\n\n\t\tregister_post_meta(\n\t\t\t$this->object_post_type->options['type'],\n\t\t\t'wpm_parent_object',\n\t\t\t[\n\t\t\t\t'type' => 'number',\n\t\t\t\t'description' => 'Parent post',\n\t\t\t\t'single' => true,\n\t\t\t\t'show_in_rest' => true,\n\t\t\t\t'auth_callback' => function () {\n\t\t\t\t\treturn current_user_can( 'edit_posts' );\n\t\t\t\t},\n\t\t\t]\n\t\t);\n\t}", "public function addLink($refId, $link, $type, $storage, $confidentiality, $description)\n {\n\n $orm = $this->getOrm();\n\n $fileNode = $orm->newEntity(\"WbfsysFile\");\n $fileNode->link = $link;\n $fileNode->id_type = $type;\n $fileNode->id_storage = $storage;\n $fileNode->id_confidentiality = $confidentiality;\n $fileNode->description = $description;\n $fileNode = $orm->insert($fileNode);\n\n $attachmentNode = $orm->newEntity(\"WbfsysEntityAttachment\");\n $attachmentNode->vid = $refId;\n $attachmentNode->id_file = $fileNode;\n\n $attachmentNode = $orm->insert($attachmentNode);\n\n return $attachmentNode;\n\n }", "public function fromMetadata(MetadataInterface $object);", "public function supports($resource, $type = null);", "protected function _setupMetadata() {\n $this->_referenceMap = array(\n 'categories' => array(\n 'columns' => 'category',\n 'refTableClass' => 'application_models_categories',\n 'refColumn' => 'id'\n )\n );\n parent::_setupMetadata();\n }", "protected function morphResource($item,$resource_type)\n {\n\t\t$class = $this->class_name($resource_type);\n\t\t$transformer = \"\\\\App\\\\Http\\\\Resources\\\\\".ucfirst($class);\n return new $transformer($this->whenLoaded($item));\n }", "private function set_type_and_link() {\n $results = $this->DB->run('\n SELECT bat.title AS type\n FROM buyer_accounts ba\n JOIN buyer_account_types bat\n ON bat.id = ba.buyer_account_type_id\n WHERE ba.id = :id\n LIMIT 1\n ', [\n 'id' => $this->id\n ]);\n\n if (!isset($results[0])) {\n return false;\n } else {\n $this->type = $results[0]['type'];\n $this->link = ($this->type == 'individual' || $this->type == 'other' ? 'buyer' : $this->type) . '/' . $this->slug;\n }\n }", "public function relationship($class, $type, $name, array $config = array()) {\n\t\tif(isset($config['to'])){\n\t\t\t$config['to'] = Libraries::locate('models', $config['to']);\n\t\t}\n\t\treturn parent::relationship($class, $type, $name, $config);\n\t}", "public static function getResource ($type) {}", "public function register_metadata_type( $class_name ) {\n\n\t\t// TODO: we shoud not allow registration of metadatum types of retricted core metadatum types (e.g. compound, term) by plugins\n\n\t\tif ( is_object( $class_name ) ) {\n\t\t\t$class_name = get_class( $class_name );\n\t\t}\n\n\t\tif ( ! in_array( $class_name, $this->metadata_types ) ) {\n\t\t\t$this->metadata_types[] = $class_name;\n\t\t}\n\t}", "public function create(object $model): JsonApiResource;", "public function createObjectType($type, array $data = array());", "public function test_create_plan_with_metadata(){\n $planType = $this->createPlanType();\n $plan = $this->createPlan('test_plan', $planType, false, [\n 'foo'=>'foo',\n 'bar'=>'bar'\n ]);\n\n $this->assertArrayHasKey('foo', $plan->metadata);\n $this->assertArrayHasKey('bar', $plan->metadata);\n }" ]
[ "0.59317523", "0.5756095", "0.55016905", "0.52380335", "0.51956546", "0.51951027", "0.51240855", "0.49713087", "0.49198112", "0.49102053", "0.48885602", "0.48283693", "0.47988552", "0.47928387", "0.47609526", "0.47254142", "0.47141582", "0.47130176", "0.47006387", "0.46948335", "0.46820766", "0.46771297", "0.46346855", "0.4633403", "0.46239868", "0.461371", "0.45985308", "0.45893323", "0.4581112", "0.4569754" ]
0.5819239
1
Returns the registered strategies.
public function getStrategies(): array { return $this->strategies; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getStrategies()\n {\n return $this->strategies;\n }", "public static function getStrategies()\n\t{\n\n\t\treturn array(\n\t\t\tself::STRATEGY_BASIC,\n\t\t);\n\n\t}", "public function strategyProvider()\n {\n return array(\n array(new Hash()),\n array(new Microtime()),\n array(new General()),\n array(new Ukrainian()),\n array(new Russian()),\n array(new Hungarian()),\n array(new Portuguese()),\n array(new German())\n );\n }", "public function get_avaliable_strategies() {\n return $this->AVAILABLE_STRATEGIES;\n }", "public function getAvailableImportStrategies(): array;", "public function getDrivers()\n {\n $result = [];\n foreach ($this->config['connections'] as $name => $config) {\n $result[] = $this->driver($name);\n }\n\n return $result;\n }", "public function getFactories(): array;", "public static function getDrivers()\n {\n //Method inherited from \\Illuminate\\Support\\Manager \n /** @var \\Illuminate\\Hashing\\HashManager $instance */\n return $instance->getDrivers();\n }", "public function getDefinitions()\n {\n return [\n StrategyInterface::class => $this->getStrategy(),\n RouteCollection::class => $this->getRouter(),\n 'router' => new Reference(RouteCollection::class),\n ];\n }", "static public function getEngines()\n {\n if (sfConfig::get('app_a_get_engines_method'))\n {\n $method = sfConfig::get('app_a_get_engines_method');\n\n return call_user_func($method);\n }\n return sfConfig::get('app_a_engines', array(\n '' => 'Template-Based'));\n }", "public function testStrategies() {\n return $this->morphToMany('Spark\\Models\\TestStrategy', 'strategizable');\n }", "public function getFactories(): array\n {\n return [\n // Configuration holders\n FFMpegConfigInterface::class => FFMpegConfigFactory::class,\n FFProbeConfigInterface::class => FFProbeConfigFactory::class,\n\n // Services classes\n VideoConverterInterface::class => VideoConverterFactory::class,\n VideoInfoReaderInterface::class => VideoInfoReaderFactory::class,\n VideoAnalyzerInterface::class => VideoAnalyzerFactory::class,\n VideoThumbGeneratorInterface::class => VideoThumbGeneratorFactory::class,\n\n // Infrastructure\n LoggerInterface::class => NullLoggerFactory::class,\n CacheInterface::class => NullCacheFactory::class,\n ];\n }", "public function getServices()\n {\n return [\n self::INFLECTOR => function () { return Inflector::get('en');},\n self::APPLICATION_RUNTIME => function () { return new ApplicationRuntime();},\n self::CONFIG_FACTORY => function () { return new ConfigFactory();}\n ];\n }", "public function get_providers() {\n\t\treturn $this->apply_filters(\n\t\t\t'miusage_get_service_providers',\n\t\t\t[\n\t\t\t\t'admin_menu' => AdminMenu::class,\n\t\t\t\t'user_loader' => UserLoader::class,\n\t\t\t\t'short_code' => ShortCode::class,\n\t\t\t\t'template' => Template::class,\n\t\t\t\t'cli' => CLI::class,\n\t\t\t]\n\t\t);\n\t}", "public function getEngines();", "public function all()\n {\n return $this->providers;\n }", "public function providers()\n {\n return $this->config('providers');\n }", "public function provides()\n {\n return [\n AlertServiceProvider::class,\n WidgetServiceProvider::class,\n DashboardProvider::class,\n RouteServiceProvider::class,\n ConsoleServiceProvider::class,\n PermissionServiceProvider::class,\n EventServiceProvider::class,\n MenuServiceProvider::class,\n ];\n }", "public function getKnownBots()\n {\n return array(\n 'googlebot' => ['googlebot'],\n 'bingbot' => ['bingbot'],\n 'msnbot' => ['msnbot'],\n 'yahoobot' => ['yahoobot'],\n 'yandexbot' => ['yandex\\w+'],\n 'baidubot' => ['baiduspider\\w*'],\n 'facebookbot' => ['facebookexternalhit'],\n 'flamecore *' => ['flamecore (\\w+)']\n );\n }", "public function getRegisteredPlugins();", "public function getHandlers(): array\n {\n if (!$this->handlers) {\n $handlerClasses = Config::inst()->get(__CLASS__, 'handlers');\n foreach ($handlerClasses as $handlerClass) {\n $this->handlers[] = Injector::inst()->create(\n $handlerClass,\n $this->repository,\n $this->nameContext\n );\n }\n }\n return $this->handlers;\n }", "public function getFactories()\n {\n\n\n return [\n AuthorizationMiddleware::class => function (AuthorizationInterface $authorization) {\n return new AuthorizationMiddleware($authorization);\n },\n\n AuthorizationInterface::class => function (Rbac $rbac) {\n return new RbacAuthorization($rbac);\n },\n\n Rbac::class => function (\\Psr\\Container\\ContainerInterface $c) {\n $config = $c->get(self::RBAC_CONFIG_NAME);\n\n $rbac = new Rbac();\n $rbac->setCreateMissingRoles(true);\n\n // roles and parents\n foreach ($config['roles'] as $role => $parents) {\n $rbac->addRole($role, $parents);\n }\n\n // permissions\n foreach ($config['permissions'] as $role => $permissions) {\n foreach ($permissions as $perm) {\n $rbac->getRole($role)->addPermission($perm);\n }\n }\n\n return $rbac;\n },\n\n 'viewExtensions' => [\n PlatesEngineExtension::class => function (ContainerInterface $c) {\n return new PlatesEngineExtension($c->get(Rbac::class));\n },\n ],\n\n\n ];\n }", "public function provides()\n {\n return [\n CerebroProvider::class,\n TramiteProvider::class,\n /*\n * Package Service Providers...\n */\n TinkerServiceProvider::class,\n \n /*\n * BotMan Service Providers...\n */\n BotManServiceProvider::class,\n StudioServiceProvider::class,\n ];\n }", "public function providers(): array\n {\n return $this->manager->getProviders();\n }", "public static function get_services(){\n\n return [\n Pages\\Admin::class,\n Base\\Enqueue::class,\n Base\\SettingsLinks::class\n ];\n }", "public function getKnownEngines()\n {\n return array(\n 'webkit' => ['webkit'],\n 'gecko' => ['gecko'],\n 'trident' => ['trident'],\n 'presto' => ['presto'],\n 'khtml' => ['khtml']\n );\n }", "public static function get_services()\n {\n return [\n Pages\\Admin :: class,\n Base\\Enqueue :: class ,\n Settings\\LinkSettings :: class\n ];\n }", "public function get_enabled_drivers()\n\t{\n\t\tif (self::$enabled_drivers === false)\n\t\t{\n\t\t\t$this->load_enabled_drivers();\n\t\t}\n\n\t\treturn self::$enabled_drivers;\n\t}", "public function get_payment_gateways() {\n\t\t$gateways = $this->gateways;\n\n\t\t$gateways = apply_filters( 'wpems_payment_gateways', $gateways );\n\n\t\t$available = array();\n\t\tforeach ( $gateways as $id => $gateway ) {\n\t\t\tif ( $gateway->is_available() ) {\n\t\t\t\t$available[$id] = $gateway;\n\t\t\t}\n\t\t}\n\t\treturn $available;\n\t}", "public function scheduleFactories()\n {\n return $this->schedule_factory_methods;\n }" ]
[ "0.8403962", "0.7955095", "0.7304042", "0.67863816", "0.6024015", "0.5937659", "0.59311527", "0.5919936", "0.586225", "0.5790078", "0.5769843", "0.5755331", "0.57500243", "0.5725775", "0.57101536", "0.57041997", "0.5701839", "0.5699171", "0.5694412", "0.5687723", "0.5662583", "0.5653034", "0.5635692", "0.56232035", "0.5617442", "0.56151503", "0.5614901", "0.5608608", "0.56074226", "0.55987424" ]
0.8420942
0
Attempt to login with argument data ($name and $password), with a cookie, or with a password hash ($hash).
function login($name = false, $password = false, $hash = false) { global $config; // Are we already logged in? if (isset($_SESSION["user"])) return true; // If a raw password was passed, convert it into a hash. if ($name and $password) $hash = md5($config["salt"] . $password); // Otherwise attempt to get the member ID and password hash from a cookie. elseif ($hash === false) { $cookie = @$_COOKIE[$config["cookieName"]]; $memberId = substr($cookie, 0, strlen($cookie) - 32); $hash = substr($cookie, -32); } // If we successfully have a name or member ID, and a hash, then we attempt to login. if (($name or $memberId = (int)$memberId) and $hash !== false) { // Construct the query components to select user data from the members table. $components = array( "select" => array("*"), "from" => array("{$config["tablePrefix"]}members"), "where" => array($name ? "name='" . $this->db->escape($name) . "'" : "memberId=$memberId", "password='" . $this->db->escape($hash) . "'") ); // Get the user's IP address, and validate it against the cookie IP address if they're logging in via cookie. // Do some back-and-forth conversion so we only use the first three parts of the IP (the last will be 0.) $ip = long2ip(ip2long($_SESSION["ip"])); $ip = sprintf("%u", ip2long(substr($ip, 0, strrpos($ip, ".")) . ".0")); if (isset($cookie)) $components["where"][] = "cookieIP=" . ($ip ? $ip : "0"); $this->callHook("beforeLogin", array(&$components)); // Run the query and get the data if there is a matching user. $result = $this->db->query($this->db->constructSelectQuery($components)); if ($data = $this->db->fetchAssoc($result)) { $this->callHook("afterLogin", array(&$data)); // If their account is unvalidated, show a message with a link to resend a verification email. if ($data["account"] == "Unvalidated") { $this->message("accountNotYetVerified", false, makeLink("join", "sendVerification", $data["memberId"])); return false; } // Assign the user data to a SESSION variable, and as a property of the esoTalk class. $_SESSION["user"] = $this->user = $data; // Regenerate the session ID and token. session_regenerate_id(); regenerateToken(); // If the "remember me" box was checked, set a cookie, and set the cookieIP field in the database. if (@$_POST["login"]["rememberMe"]) { $this->esoTalk->db->query("UPDATE {$config["tablePrefix"]}members SET cookieIP=$ip WHERE memberId={$_SESSION["user"]["memberId"]}"); setcookie($config["cookieName"], $_SESSION["user"]["memberId"] . sanitizeForHTTP($hash), time() + $config["cookieExpire"], "/", $config["cookieDomain"]); } if (!defined("AJAX_REQUEST")) refresh(); return true; } // If the user was intentionally logging in but it didn't work, show an incorrect login details error. if (!isset($cookie)) $this->message("incorrectLogin", false); } // Didn't completely fill out the login form? Return an error. elseif ($name or $password) $this->message("incorrectLogin", false); return false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function login( $name, $password );", "public function login($uname, $pass);", "public function tryLogin($username, $type, $data);", "public function login($name, $setcookie, $password, $db){\n\t\t\n\t\t$userpassword = $db->get_user_password($name);\n\t\t\n\t\tif($this->hash_it($password) === $userpassword){\n\t\t\t\n\t\t\t$userid = $db->get_user_id($name);\n\t\t\t$_SESSION['userid'] = $userid;\n\t\t\t$_SESSION['code'] = $this->code();\n\t\t\t\n\t\t\tif($setcookie){\n\t\t\t\t$array = array(\"code\" => $this->code(_COOKIEHASH), \"userid\" => $userid);\n\t\t\t\t\n\t\t\t\t//Sets the cookie for the cookie duration\n\t\t\t\tsetcookie(_LOGINCOOKIE, json_encode($array), (time() + _COOKIE_DURATION) );\n\t\t\t}\n\t\t\t\n\t\t\treturn true;\n\t\t\t\n\t\t}else{\n\t\t\t//sleep(3);\n\t\t\treturn false;\n\t\t}\t\n\t}", "function login() {\n $sName = CSE3241::getRequestParam('loginName');\n $sPass = CSE3241::getRequestParam('loginPass');\n\n // If the user didn't specify both their username and password\n // Return a 400 error and tell them to enter both\n if (is_null($sName) || is_null($sPass)) {\n CSE3241::failBadRequest(\"Please enter both your username and password\");\n return;\n }\n\n // Get the user's password hash\n $aRow = CSE3241::database()->select(\"password_hash, id\")->from('user')->where('login_name = ?', $sName)->execute('getRow');\n if (is_null($aRow)) {\n CSE3241::failBadAuth(\"Invalid username or password\");\n return;\n }\n\n // Check to see if their password is wrong\n if (!password_verify($sPass, $aRow['password_hash'])) {\n CSE3241::failBadAuth(\"Invalid username or password\");\n return;\n }\n\n // They succeeded, set their user id in the session so we can identify them later\n CSE3241::setSessionValue(CSE3241::getConf('session', 'user_id'), $aRow['id']);\n CSE3241::success();\n return;\n}", "function login( $username=false, $password=false ) {\n\t\tif( !$username || !$password ) return; //If called on construct\n\t\t$validation = $this->validateHash( $username, $password );\n\t\tif( $validation[\"status\"] != LOGIN_HASH_VALIDATION_OK ) {\n\t\t\t$this->error = $validation[\"status\"];\n\t\t\treturn False;\n\t\t}\n\t\t$this->user = $username;\n\t\t/*if( !$this->clearTokens( $validation[\"user\"] ) ) {\n\t\t\t$this->error = LOGIN_SQL_ERROR;\n\t\t\treturn false;\n\t\t}*/\n\t\tif( ( $usr = Login::checkUser() ) ) {\n\t\t\t$this->refreshToken( $usr[\"token\"] );\n\t\t\treturn;\n\t\t}\n\t\t$token = $this->createToken( $validation[\"user\"] );\n\t\tif( $token[\"status\"] == LOGIN_SQL_ERROR ) {\n\t\t\t$this->error = $token[\"status\"];\n\t\t\treturn false;\n\t\t}\n\t\tsetCookie( \"login\", $token[\"value\"], time()+365*24*60*60, \"/\" );\n\t}", "private function loginWithCookie()\n {\n }", "abstract public function processLogin($data, &$remember);", "function login($username, $password) {\n\t$results = getUser($username);\n\n\tif ($results == null) {\n\t\theader(\"HTTP/1.1 404 Not Found\");\n \t\texit;\n\t}\n\n\tif ($results[\"facebookId\"]) {\n\t\theader(\"HTTP/1.1 403 Forbidden: Please use facebook login\");\n \t\texit;\n\t}\n\n\t$storedPassword = $results[\"password\"];\n\n\tif (password_verify($password, $storedPassword)) {\n\t\t$authID = password_hash(\"cookie-\".$username.$storedPassword.AUTH_SALT, PASSWORD_DEFAULT);\n\n\t\tsetcookie('collegepartyauth[user]', $username, 0, '/');\n\t\tsetcookie('collegepartyauth[authID]', $authID, 0, '/');\n\n\t\treturn \"Successfully Logged In\";\n\t} else {\n\t\theader(\"HTTP/1.1 403 Forbidden\");\n \t\texit;\n\t}\n\n}", "public function login( $username, $password );", "public function login($user, $password);", "public function login($name, $password) {\r\n\t\t$post = array(\"action\" => \"\", \"offer\" => \"\", \"sign-in-email\" => $name, \"sign-in-password\" => $password);\r\n\t\t\t\t\r\n\t\t$this->_post(\"https://hubic.com/home/logcheck.php\", $post);\r\n\t}", "protected function _login($username, $password, $remember)\n\t{\n\t\t\n\t}", "public function login() {\n\t\t//@todo: sanitize variables\n\t\t$username = isset($_POST['username']);\n\t\t$password = isset($_POST['password']);\n\t\t\n\t\tUser::login($_POST['username'], $_POST['password']);\n\t}", "function login( $username=null,$passwd=null )\n\t{\n\t\tglobal $database, $acl;\n\n\t\tif (!$username || !$passwd) {\n\t\t\t$username \t= $database->getEscaped( trim( mosGetParam( $_POST, 'username', '' ) ) );\n\t\t\t$passwd \t= $database->getEscaped( trim( mosGetParam( $_POST, 'passwd', '' ) ) );\n\t\t\t$bypost \t= 1;\n\t\t}\n\n\t\tif (!$username || !$passwd) {\n\t\t\t// Error check if still no username or password values\n\t\t\techo \"<script> alert(\\\"\". JText::_( 'LOGIN_INCOMPLETE', true ) .\"\\\"); </script>\\n\";\n\t\t\tjosRedirect( mosGetParam( $_POST, 'return', '/' ) );\n\t\t\texit();\n\t\t} else {\n\n\t\t\t// Build the credentials array\n\t\t\t$credentials['username'] = $username;\n\t\t\t$credentials['password'] = $passwd;\n\n\t\t\t// Get the global JAuthenticate object\n\t\t\t$auth = & JAuthenticate::getInstance();\n\n\t\t\treturn $auth->login($credentials);\n\t\t}\n\t}", "public function login($uid, $password);", "function login()\n {\n global $cfg;\n \n $user = isset($_POST['user']) ? $_POST['user'] : null;\n $pass = isset($_POST['pass']) ? $_POST['pass'] : null;\n \n // Check the username\n if (!$user || !preg_match('/^[a-zA-Z0-9]{4,30}$/', $user)) \n {\n throw new Exception(\"Invalid username\");\n }\n \n if (!($user = $this->user->login($user, sha1($pass))))\n {\n throw new Exception(\"Invalid username/password!\");\n }\n \n $this->redirect('');\n }", "public function p_login(){\n $_POST = DB::instance(DB_NAME)->sanitize($_POST);\n\n # Hash submitted password so we can compare it agains db\n $_POST['password'] = sha1(PASSWORD_SALT.$_POST['password']);\n\n # Search the db for this email and password\n # Grab token, if it's there\n $token = Token::look_for_token($_POST['email'], $_POST['password']);\n\n # If we don't find a token, login fails\n if (!$token){\n Router::redirect(\"/users/signin/errorLogin\");\n\n # Otherwise, login\n } else {\n setcookie(\"token\", $token, strtotime('+1 year'), '/');\n\n # Send them to the main page - or wherever\n Router::redirect(\"/users/profile\"); \n }\n }", "abstract public function attemptLogin($username, $password, $site = null);", "public function login($username, $password) {\r\n\t\t global $_whomp_database;\r\n\t\t \r\n\t\t // check if we already have the user's information\r\n\t\t if ($username != $this->username) {\r\n\t\t\t // if not, get the information from the database\r\n\t\t\t try {\r\n\t\t\t\t $queryValues = array($username);\r\n\t\t\t\t $query = 'SELECT * FROM `#__users` WHERE `username` = %s;';\r\n\t\t\t\t $_whomp_database->setQuery($query, $queryValues);\r\n\t\t\t\t $_whomp_database->query();\r\n\t\t\t\t $current_user_options = $_whomp_database->loadRow();\r\n\t\t\t\t // call the parent constructor with the new options\r\n\t\t\t\t parent::__construct($current_user_options);\r\n\t\t\t\t // set the user id cookie\r\n\t\t\t\t setcookie('whomp_id', md5($this->id));\r\n\t\t\t } catch (Exception $e) {\r\n\t\t\t\t whomp_ouput_exception($e, true);\r\n\t\t\t } // end try\r\n\t\t } // end if\t \r\n\t\t // check if the password supplied is correct\r\n\t\t if (md5($password) == $this->_password) {\r\n\t\t\t // if so, set user to logged in\r\n\t\t\t $this->_logged_in = true;\r\n\t\t } else {\r\n\t\t\t // if not, throw an exception\r\n\t\t\t throw new Exception('The supplied password was incorrect.');\r\n\t\t } // end if\r\n\t }", "function do_login($username, $password) {\n\t$login_response = false;\n\tif($username == 'canvas' && $password == 'testing123') {\n\t\t$expiry = time() + 24 * 60 * 60; //Log in for 24 hours\n\t\treturn array( 'expiry' => $expiry, 'token' => hash('sha256', 'saltynuts'.$username.$expiry) );\n\t}\n\treturn false;\n}", "public static function login_user($form_data)\n\t{ \n\t\treturn UserLogin::do_user_login($form_data);\n\t}", "public function loginAuthenticate($username, $password, $fallback = false, array $params = []);", "public function authenticate(string $login, string $password);", "function login($username, $password) {\n\t}", "function login($mail = FALSE, $pass = FALSE, $cook = FALSE) {\n\t\tdebugLog(\"Tries to login\", \"Trying to login\");\n\t\tif($mail && $pass) {\n\t\t\tif($cook === FALSE) {\n\t\t\t\treturn $this->_login($mail,$pass);\n\t\t\t} else {\n\t\t\t\tif($this->_login($mail,$pass) == LOGIN_SUCCESS) {\n\t\t\t\t\t$this->_saveLogin();\n\t\t\t\t\treturn LOGIN_CKSUCCESS;\n\t\t\t\t} else {\n\t\t\t\t\treturn LOGIN_FAILED;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tif(isset($_SESSION['logged']) && $_SESSION['logged'] != \"\") {\n\t\t\t\t$this->logged = true; $this->_ID = $_SESSION['logged'];\n\t\t\t\treturn LOGIN_SUCCESS;\n\t\t\t} elseif(isset($_COOKIE['m8slogin']) && $_COOKIE['m8slogin'] != \"\") {\n\t\t\t\treturn $this->_remeberLogin();\n\t\t\t}\n\t\t}\n }", "public function login()\n {\n $user = $_POST['user']; \n $password = $_POST['password'];\n \n // > find 'user' in users table, with core/model(parent) class function and put return in result var;\n $result = $this->mysql('SELECT * FROM users WHERE user = :user', [\n 'user' => $user\n ]);\n \n \n // > if returned empty row, generate error message\n if(empty($result[0]))\n {\n return \"Error: wrong username\";\n }\n \n $result = $result[0];\n\n // > if in returned row dont have a good passwor, generate error message\n if($result['password'] != $password)\n {\n return \"Error: wrong password\";\n }\n \n\n // > if 'user' and 'password' good, generate cookies\n $cookie = md5($user.$password.time());\n \n // > put cookies in DB\n $this->mysql('UPDATE users SET session = :cookie WHERE user = :user', [\n 'cookie' => $cookie,\n 'user' => $user\n ]);\n\n // > set cookies in user browser\n setcookie('auth', $cookie, time()+3600, \"/\");\n\n return;\n }", "public function authenticate($credentials, $remember = false, $login = true);", "public function login($username, $password)\n {\n }", "function loginUser($ID, $password) {\r\n if (!(empty($ID) | empty($password))) {\r\n $query = \"select password from users where regno = '$ID'\";\r\n $link = getDefaultDBConnection();\r\n $result = mysqli_query($link, $query);\r\n if ($result) {\r\n $row = mysqli_fetch_array($result);\r\n $password = sha1($password);\r\n $match = strcasecmp($password, $row['password']);\r\n return $match === 0 ? setUserCookies($ID, $password) : false;\r\n }\r\n }\r\n return false;\r\n}" ]
[ "0.7360429", "0.7014766", "0.6928942", "0.6850902", "0.6838772", "0.67788506", "0.6763014", "0.6758647", "0.66886497", "0.66690534", "0.66029024", "0.6524273", "0.6521862", "0.6500338", "0.6462039", "0.6455687", "0.6389034", "0.6384368", "0.63751245", "0.6348717", "0.6316527", "0.6279515", "0.62492853", "0.6245664", "0.6245417", "0.624259", "0.6211391", "0.6208217", "0.6207554", "0.62053645" ]
0.76820457
0
Validate $token against the actual token, $_SESSION["token"]. If it's incorrect, show a message.
function validateToken($token) { if ($token != $_SESSION["token"]) { $this->message("noPermission"); return false; } else return true; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function valid_token($token){\n\t\treturn isset($_SESSION['token']) && $token == $_SESSION['token'];\t\n\t}", "public function validateToken($token=\"\")\n { if ($this->input->method() == 'post')\n {\n // Is the token field set and valid?\n return $isValid = (empty($token) || ($token != get_session(\"session_token\"))) ? false : true;\n\t\t\t}\n\t\t\telse{\n\t\t\t \treturn false;\n\t\t\t}\n\t\t}", "public static function validateToken()\n\t{\n\t\treturn Token::check(Input::get(Config::get('session/token_name')));\n\t}", "public function validate($token)\n {\n return \\Examinr\\Security\\compare($this->get(), $token);\n }", "public function checkToken(string $token);", "public function validate($token)\n {\n return $token === $this->getToken();\n }", "private static function checkFormTokens()\n {\n \n if (!isset($_SESSION['token']) || !isset($_POST['f_token'])) {\n die(View::render('errors/bad-tokens.view'));\n } else {\n // if ($_SESSION['token'] != $_POST['f_token']) {\n // \n // if (!self::ajax()) {\n // die(View::render('errors/bad-tokens.view'));\n // } else {\n return json_encode([\n 'success' => false,\n 'message' => \"Formulier verlopen, refresh en probeer opnieuw.\",\n ]);\n }\n }", "private function check_token() {\n\n $this -> load -> library('encrypt');\n $this -> post_data = $this -> get_post_data();\n $token = $this -> post_data[\"token\"];\n $key = $this -> token_generator_key;\n\n $ok = $this -> encrypt -> hash($key) === $token;\n if ( $ok ) {\n unset($this -> post_data[\"token\"]);\n $this -> load -> model(\"DataModel\");\n } else {\n $this -> json = array(\n 'status' => 'INVALID_TOKEN',\n 'token' => $this -> post_data['token'],\n 'key' => $this -> encrypt -> hash($key)\n );\n exit;\n }\n }", "function is_valid_token()\n\t{\n\t\tif( !isset($_SESSION['token']) || !isset($_SESSION['token_time']) || !isset($this->post['token']) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif( $_SESSION['token'] != $this->post['token'] ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t$age = $this->time - $_SESSION['token_time'];\n\n\t\tif( $age > 7200 )\n\t\t\treturn false;\n\n\t\treturn true;\n\t}", "public function checkToken()\r\r\n {\r\r\n $token = Tools::getValue('token');\r\r\n\r\r\n return (!empty($token) && $token === $this->token);\r\r\n }", "public static function is_valid_token($token)\n {\n if (session_status() == 1) {\n session_start();\n }\n\n if (isset($_SESSION['ply_key'])) {\n if ($_SESSION['ply_key'] == $token) {\n return true;\n }\n }\n return false;\n }", "protected function verifyToken() {\n return $_POST[\"form_token\"] === $this->token();\n }", "function verifyToken($token)\n {\n if (!isset($_SESSION[$this->_sessionKey]))\n return false;\n\n $sessiontoken = $_SESSION[$this->_sessionKey];\n if (!is_string($sessiontoken))\n return false;\n\n // Clear session token\n unset($_SESSION[$this->_sessionKey]);\n\n // Return true if token matches session token \n return $sessiontoken == $token; \n }", "function validateToken($token){\n if(Token::validate($token, $this->vsbridge_module_secret_key)){\n return true;\n }else{\n $this->fail('Failed to validate the JWT token.');\n }\n }", "private function checkTokenExpired($token) {\n $this->_user->checkTokenExpired($token);\n if ($this->_user->isTokenExpired() == true) {\n $this->_session->flash('message', '<p class=\"error\">Token is invalid or has been expired!</p>');\n $this->_registry->redirectTo();\n }\n }", "public function validate($token) {\n\t\tif($this->checkTokenConfigs()) {\n\t\t\t$token = $this->decodeToken($token);\n\t\t\tif(isset($token['auth']['t'])) {\n\t\t\t\t$sig = sha1($this->prefix.':'.$this->secret.':'.$token['auth']['t']);\n\n\t\t\t\tif(isset($token['auth']['s']) && $sig === $token['auth']['s']) {\n\t\t\t\t\t$today = date('Y:m:d H:i:s');\n\n\t\t\t\t\tif($today < $token['auth']['t']) {\n\t\t\t\t\t return $token;\n\t\t\t\t\t} \n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} else {\n\t\t\tthrow new Exception('Check token secret and or prefix in configs', 404);\n\t\t}\n\t}", "function validateToken(string $token, string $action): bool {\n\t\t\t$check = $this->hashToken($action);\n\t\t\treturn ($token == $check);\n\t\t}", "public function checkCsrfToken($token) {\n $sessionToken = $this->_session->get('token');\n if ($token !== $sessionToken) {\n $this->_registry->getObject('session')->flash('message', '<p class=\"error\">An error occured.We apologize for any inconvenience.</p>');\n $this->deleteTokenFromSession();\n $this->_registry->redirectTo(); \n }\n }", "public static function check($token)\n\t{\n\t\tself::validateStructure($token);\n\t}", "public function checkToken()\n\t{\n\t\t$token = Tools::getValue('token');\n\t\treturn (!empty($token) AND $token === $this->token);\n\t}", "public function _verify_token($token) {\n $result = $this->common_model->getsingle(USERS, array('user_token' => $token));\n if (!empty($result)) {\n return TRUE;\n } else {\n $this->form_validation->set_message('_verify_token', 'Invalid user token');\n return FALSE;\n }\n }", "public function tokenValid($token)\n {\n return Hash::check($token, $this->token);\n }", "function checkToken( $token ) {\n\t\tif( !($db = new DB() ) ) return False;\n\t\tif(!($result = $db->query( \"SELECT * FROM `login_tokens` WHERE `token` Like '§0'\",[$token] ) ) ) return False;\n\t\tif( $result->num_rows == 0 ) return False;\n\t\t$result = $result->fetch_array(MYSQL_ASSOC);\n\t\tif( strtotime( $result[\"expires\"] ) < strtotime( \"now\" ) ) {\n\t\t\t$result[\"token\"] = $this->refreshToken( $token );\n\t\t}\n\t\tunset($result[\"expires\"]);\n\t\treturn $result;\n\t}", "public function validate ($token) {\n\t\tif (!$this->app['request']->headers->get(ApihostPlugin::HEADER_KEY_TOKEN)) {\n\t\t\treturn parent::validate($token);\n\t\t}\n\t\treturn true;\n\t}", "public static function validatePasswordToken()\n {\n $token = $_POST['token'];\n $sql = \"SELECT * FROM admin_password_tokens WHERE token = '$token' AND active = true\";\n $result = mysqli_query(DB::connect(), $sql);\n if(mysqli_num_rows($result) === 0){\n return trigger_error('Token is invalid');\n }\n $row = mysqli_fetch_assoc($result);\n $timestamp = DB::timestamp();\n if($row['expiry'] < $timestamp){\n self::deactivateToken($token);\n return trigger_error('This token has expired');\n } else {\n return null;\n }\n }", "public static function verify($token){\n if(isset($_SESSION['token']) && $token === $_SESSION['token']){\n unset($_SESSION['token']);\n return true;\n }\n return false;\n }", "function check_token($token){\n\n return true;\n }", "public static function validate( $token ) {\n\t\tif(strtolower($token) !== self::createToken()) {\n\t\t\tthrow new Exception('Wrong authentication token!');\n\t\t}\n\t}", "function validate_form_token($token, $id) {\n global $user;\n \n $site_token = store_get('site-token');\n \n if ($user == NULL) {\n return ($token == md5($id . $site_token));\n } else {\n return ($token == md5(session_id() . $id . $site_token));\n }\n}", "function checkRequestToken($slug, $token)\n {\n if (empty($_SESSION['horde_form_secrets'][$token])) {\n return PEAR::raiseError(_(\"We cannot verify that this request was really sent by you. It could be a malicious request. If you intended to perform this action, you can retry it now.\"));\n }\n\n if (($_SESSION['horde_form_secrets'][$token] + $GLOBALS['conf']['urls']['token_lifetime'] * 60) < time()) {\n return PEAR::raiseError(sprintf(_(\"This request cannot be completed because the link you followed or the form you submitted was only valid for %s minutes. Please try again now.\"), $GLOBALS['conf']['urls']['token_lifetime']));\n }\n\n return true;\n }" ]
[ "0.8136148", "0.77851", "0.75665176", "0.7459257", "0.7457258", "0.7443625", "0.74286884", "0.7297816", "0.72964555", "0.72751284", "0.7264036", "0.72613007", "0.72500116", "0.72459036", "0.72398466", "0.72123367", "0.7195407", "0.7189546", "0.7168712", "0.7146214", "0.71350056", "0.7134854", "0.71273935", "0.7116937", "0.7113227", "0.70783126", "0.70431024", "0.70401263", "0.70252395", "0.7013203" ]
0.8356138
0
Fetch forum statistics, returning them in an array of key => statistic_text.
function getStatistics() { global $config, $language; $result = $this->db->query("SELECT (SELECT COUNT(*) FROM {$config["tablePrefix"]}posts), (SELECT COUNT(*) FROM {$config["tablePrefix"]}conversations), (SELECT COUNT(*) FROM {$config["tablePrefix"]}members WHERE UNIX_TIMESTAMP()-{$config["userOnlineExpire"]}<lastSeen)"); list($posts, $conversations, $membersOnline) = $this->db->fetchRow($result); $result = array( "posts" => number_format($posts) . " {$language["posts"]}", "conversations" => number_format($conversations) . " {$language["conversations"]}", "membersOnline" => number_format($membersOnline) . " " . $language[$membersOnline == 1 ? "member online" : "members online"] ); $this->callHook("getStatistics", array(&$result)); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function show_text_stats()\n\t{\n\t\t$stats_users =\t$this->get_simple_stats('total_users');\n\t\t$stats_topics =\t$this->get_simple_stats('total_topics');\n\t\t$stats_posts =\t$this->get_simple_stats('total_posts');\n\t\t$stats_smiley =\t$this->get_memory_stats(SMILEY_PATH);\n\t\t$stats_avatar =\t$this->get_memory_stats(AVATAR_PATH);\n\t\t$stats_rank =\t$this->get_memory_stats(RANK_PATH);\n\t\t$stats_upload =\t$this->get_memory_stats(ROOT . 'upload/');\n\t\t$stats_sql =\t$this->get_sql_stats();\n\n\t\tFsb::$tpl->set_switch('stats_forum');\n\t\tFsb::$tpl->set_vars(array(\n\t\t\t'OS_TYPE' =>\t\t\tPHP_OS,\n\t\t\t'PHP_VERSION' =>\t\tphpversion(),\n\t\t\t'SGBD_TYPE' =>\t\t\t$stats_sql['sgbd_type'],\n\t\t\t'SGBD_VERSION' =>\t\t$stats_sql['sgbd_version'],\n\t\t\t'TOTAL_USERS' =>\t\t$stats_users['total'],\n\t\t\t'AVERAGE_USERS' =>\t\t$stats_users['average'],\n\t\t\t'TOTAL_TOPICS' =>\t\t$stats_topics['total'],\n\t\t\t'AVERAGE_TOPICS' =>\t\t$stats_topics['average'],\n\t\t\t'TOTAL_POSTS' =>\t\t$stats_posts['total'],\n\t\t\t'AVERAGE_POSTS' =>\t\t$stats_posts['average'],\n\t\t\t'TOTAL_SQL' =>\t\t\t$stats_sql['total'],\n\t\t\t'SIZE_SQL' =>\t\t\tconvert_size($stats_sql['size']),\n\t\t\t'TOTAL_SMILEY' =>\t\t$stats_smiley['total'],\n\t\t\t'SIZE_SMILEY' =>\t\tconvert_size($stats_smiley['size']),\n\t\t\t'TOTAL_AVATAR' =>\t\t$stats_avatar['total'],\n\t\t\t'SIZE_AVATAR' =>\t\tconvert_size($stats_avatar['size']),\n\t\t\t'TOTAL_RANK' =>\t\t\t$stats_rank['total'],\n\t\t\t'SIZE_RANK' =>\t\t\tconvert_size($stats_rank['size']),\n\t\t\t'TOTAL_UPLOAD' =>\t\t$stats_upload['total'],\n\t\t\t'SIZE_UPLOAD' =>\t\tconvert_size($stats_upload['size']),\n\t\t\t'FSB_CREATE' =>\t\t\tFsb::$session->print_date(Fsb::$cfg->get('register_time')),\n\t\t\t'CACHE_SYSTEM' =>\t\tFsb::$db->cache->cache_type,\n\n\t\t\t'U_PHP_VERSION' =>\t\tsid('index.' . PHPEXT . '?p=tools_stats&amp;mode=phpinfo'),\n\t\t));\n\t}", "public function getStatistics()\n {\n $uri = \"messages-stats\";\n try {\n $response = $this->httpClient->get($uri, $this->params());\n\n return $this->getResponse($response);\n } catch (\\Exception $exception) {\n $this->handleException($exception);\n }\n }", "public function forumStats(){\t\tif(!$this->cache->get('core_forumStats',$this->config['whatsgoingon_cache'])){\r\n\t\t\t// Set todays date\r\n\t\t\t$lo = strtotime(\"-1 day\");\r\n\t\t\t// Get all users...\r\n\t\t\t$uq = \"SELECT time,uid FROM `user_session` WHERE time > '$lo' ORDER BY time DESC\";\r\n\t\t\t$uq = $this->DB->query($uq);\r\n\t\t\t// get template\r\n\t\t\t$template['path'] = core::getCurrentThemeLocation();\r\n\t\t\t$template['container_p'] = $template['path'].'container.html';\r\n\t\t\t$template['container'] = file_get_contents($template['container_p']);\r\n\t\t\t$template['container_p1'] = $template['path'].'core_whats_going_on.html';\r\n\t\t\t$template['container1'] = file_get_contents($template['container_p1']);\r\n\t\t\t// how many online?\r\n\t\t\t$online = $uq->num_rows;\r\n\t\t\t// users currentlyt active\r\n\t\t\twhile($ur = $uq->fetch_assoc()){\r\n\t\t\t\tif($num != 0){\r\n\t\t\t\t\t$c = ', ';\r\n\t\t\t\t}else{\r\n\t\t\t\t\t$c = '';\r\n\t\t\t\t}\r\n\t\t\t\t$num ++;\r\n\t\t\t\t$gid = $ur['group'];\r\n\t\t\t\t// set username\r\n\t\t\t\t$username = core::getUsername($ur['uid']);\r\n\t\t\t\t// add\r\n\t\t\t\t$active .= $c.' <a title=\"Last active: '.date(\"j F Y, G:i\",$ur['time']).'\" style=\"text-decoration:none;\" href=\"'.core::generateUrl('index.php?profile='.$ur['uid'],'user',$ur['uid'],strip_tags($username),NULL).'\">'.$username.'</a>';\r\n\t\t\t}\r\n\t\t\tif($online == 0){\r\n\t\t\t\t$active = '<em>Nobody has been online today</em>';\r\n\t\t\t}\r\n\t\t\t// Now, we show some stats\r\n\t\t\t// Number of posts\r\n\t\t\t$pq = \"SELECT count(id) AS num_posts FROM `posts` WHERE deleted='0'\";\r\n\t\t\t$pq = $this->DB->query($pq);\r\n\t\t\t$pr = $pq->fetch_assoc();\r\n\t\t\t// Number of topics\r\n\t\t\t$tq = \"SELECT count(id) AS num_topics FROM `topics` WHERE deleted='0'\";\r\n\t\t\t$tq = $this->DB->query($tq);\r\n\t\t\t$tr = $tq->fetch_assoc();\r\n\t\t\t// Newest member\r\n\t\t\t$lq = \"SELECT id,username,`group` FROM `users` ORDER BY `id` DESC LIMIT 1\";\r\n\t\t\t$lq = $this->DB->query($lq);\r\n\t\t\t$lr = $lq->fetch_assoc();\r\n\t\t\t$gid = $lr['group'];\r\n\t\t\t// Number of members\r\n\t\t\t$mq = \"SELECT count(id) AS num_users FROM `users`\";\r\n\t\t\t$mq = $this->DB->query($mq);\r\n\t\t\t$mr = $mq->fetch_assoc();\r\n\t\t\t// Newset member\r\n\t\t\t$url = core::generateUrl('index.php?profile='.$lr['id'],'user',$lr['id'],$lr['username'],NULL);\r\n\t\t\t$user = core::getUsername($lr['id']);\r\n\t\t\t// replacements\r\n\t\t\t$content = $template['container1'];\r\n\t\t\t$content = str_replace('{online_users_count}',$online,$content);\r\n\t\t\t$content = str_replace('{currently_active}',$active,$content);\r\n\t\t\t$content = str_replace('{num_posts}',$pr['num_posts'],$content);\r\n\t\t\t$content = str_replace('{num_topics}',$tr['num_topics'],$content);\r\n\t\t\t$content = str_replace('{num_users}',$mr['num_users'],$content);\r\n\t\t\t$content = str_replace('{profile_url}',$url,$content);\r\n\t\t\t$content = str_replace('{newest_user}',$user,$content);\r\n\t\t\t// container\r\n\t\t\t$content = str_replace('{content}',$content,$template['container']);\r\n\t\t\t$content = str_replace('{header_title}','What&#39;s going on?',$content);\r\n\t\t\t// set the cache\r\n\t\t\t$this->cache->set('core_forumStats',$content);\r\n\t\t}else{\r\n\t\t\t$content = $this->cache->get('core_forumStats',$this->config['whatsgoingon_cache']) . '<!-- Loaded from cache -->';\r\n\t\t}\r\n\t\treturn $content;\r\n\t}", "function plugin_showstats_forum($showsitestats)\n{\n global $_CONF, $_TABLES, $LANG_GF00,$LANG_GF01, $CONF_FORUM;\n\n $stat_templates = new Template($_CONF['path_layout'] . 'stats');\n $stat_templates->set_file(array('itemstats'=>'itemstatistics.thtml',\n 'statrow'=>'singlestat.thtml'));\n $stat_templates->set_var ('xhtml', XHTML);\n $retval='';\n if ($showsitestats == 1) {\n // This shows in the summary box\n $total_pages = DB_count($_TABLES['gf_topic']); // Total number of Forum Posts\n $summary_label = $LANG_GF00['statslabel']; // Label to display\n\n $retval = \"<table border='0' width='100%' cellspacing='0' cellpadding='0'>\";\n $retval .= \"<tr><td>$summary_label</td>\";\n $retval .= \"<td align='right'>\" . $total_pages . \"&nbsp;&nbsp;</td></tr></table>\";\n } else {\n $header_arr = array(\n array('text' => $LANG_GF01['TOPICSUBJECT'], 'field' => 'topicsubject'),\n array('text' => $LANG_GF01['VIEWS'], 'field' => 'views'),\n );\n $data_arr = array();\n $text_arr = array('has_menu' => false,\n 'title' => $LANG_GF00['statsheading1'],\n );\n $result = DB_query(\"SELECT forum,subject,views,id FROM {$_TABLES['gf_topic']} where pid='0' ORDER BY views desc\");\n $nrows = DB_numRows($result);\n if ($nrows > 0) {\n $displaycount = 0;\n while (list ($forum,$subject, $views,$id) = DB_fetchARRAY($result)) {\n $forum_id = DB_getItem($_TABLES['gf_topic'],'forum',\"id='$id'\");\n $grp_id = DB_getItem($_TABLES['gf_forums'],'grp_id',\"forum_id='$forum_id'\");\n $groupname = DB_getItem($_TABLES['groups'],'grp_name',\"grp_id='$grp_id'\");\n if (SEC_inGroup($groupname) OR $grp_id == 2) {\n $url = $_CONF['site_url']. \"/forum/viewtopic.php?showtopic=$id\";\n $S['topicsubject'] = '<a href=\"' . $url . '\">' . $subject . '</a>';\n $S['views'] = $views;\n $data_arr[$displaycount] = $S;\n $displaycount++;\n if ($displaycount > 10) {\n break;\n }\n }\n }\n $retval .= ADMIN_simpleList(\"\", $header_arr, $text_arr, $data_arr);\n } else {\n $retval .= $LANG_GF00['statsheading3'];\n }\n $header_arr = array(\n array('text' => $LANG_GF01['TOPICSUBJECT'], 'field' => 'topicsubject'),\n array('text' => $LANG_GF01['REPLIES'], 'field' => 'replies'),\n );\n $data_arr = array();\n $text_arr = array('has_menu' => false,\n 'title' => $LANG_GF00['statsheading2'],\n );\n $result = DB_query(\"SELECT forum,subject,replies,id FROM {$_TABLES['gf_topic']} where pid='0' ORDER BY replies desc\");\n $nrows = DB_numRows($result);\n if ($nrows > 0) {\n $stat_templates->set_var('item_label',$LANG_GF01['TOPICSUBJECT']);\n $stat_templates->set_var('stat_name',$LANG_GF01['REPLIES']);\n $displaycount=0;\n while (list ($forum,$subject, $replies,$id) = DB_fetchARRAY($result)) {\n $forum_id = DB_getItem($_TABLES['gf_topic'],'forum',\"id='$id'\");\n $grp_id = DB_getItem($_TABLES['gf_forums'],'grp_id',\"forum_id='$forum_id'\");\n $groupname = DB_getItem($_TABLES['groups'],'grp_name',\"grp_id='$grp_id'\");\n if (SEC_inGroup($groupname) OR $grp_id == 2) {\n $url = $_CONF['site_url']. \"/forum/viewtopic.php?showtopic=$id\";\n $url = $_CONF['site_url']. \"/forum/viewtopic.php?showtopic=$id\";\n $S['topicsubject'] = '<a href=\"' . $url . '\">' . $subject . '</a>';\n $S['replies'] = $replies;\n $data_arr[$displaycount] = $S;\n $displaycount++;\n if ($displaycount > 10) {\n break;\n }\n }\n }\n $retval .= ADMIN_simpleList(\"\", $header_arr, $text_arr, $data_arr);\n } else {\n $retval .= $LANG_GF00['statsheading3'];\n }\n }\n return $retval;\n}", "public function getMailingStatistics()\n {\n $query = $this->em->createQuery('\n SELECT\n m.id AS messageId, COUNT(u.viewed) AS views, COUNT(u.status) AS total,\n m.subject, m.sent, m.bounceCount AS bounceCount, (COUNT(u.viewed) / COUNT(u.status) * 100) AS rate\n FROM\n IdeupPhplistBundle:PhplistUserMessage u\n JOIN\n u.message m\n GROUP BY u.newsletterId\n ORDER BY m.sent DESC\n ');\n return $query->getResult();\n }", "public function GetStatistics()\n {\n $this->ResetError();\n if (!$this->IsConnected()) {\n return $this->SetError('No connection', -1);\n } else {\n $result = mysql_stat($this->mysql_link);\n if (empty($result)) {\n $this->SetError('Failed to obtain database statistics', -1); // do NOT return to caller yet!\n return array('Query Count' => $this->query_count);\n }\n\n $tot_count = preg_match_all('/([a-z ]+):\\s*([0-9.]+)/i', $result, $matches);\n\n $info = array('Query Count' => $this->query_count);\n for ($i = 0; $i < $tot_count; $i++) {\n $info[$matches[1][$i]] = $matches[2][$i];\n }\n return $info;\n }\n }", "function index_stats()\n\t{\n\t\tglobal $user;\n\n\t\tif (empty($this->stats))\n\t\t{\n\t\t\t$this->get_stats();\n\t\t}\n\n\t\t$user->add_lang('mods/fulltext_sphinx');\n\n\t\treturn array(\n\t\t\t$user->lang['FULLTEXT_SPHINX_MAIN_POSTS']\t\t\t=> ($this->index_created()) ? $this->stats['main_posts'] : 0,\n\t\t\t$user->lang['FULLTEXT_SPHINX_DELTA_POSTS']\t\t\t=> ($this->index_created()) ? $this->stats['total_posts'] - $this->stats['main_posts'] : 0,\n\t\t\t$user->lang['FULLTEXT_MYSQL_TOTAL_POSTS']\t\t\t=> ($this->index_created()) ? $this->stats['total_posts'] : 0,\n\t\t\t$user->lang['FULLTEXT_SPHINX_LAST_SEARCHES']\t\t=> nl2br($this->stats['last_searches']),\n\t\t);\n\t}", "function bbp_get_public_forum_statuses()\n{\n}", "public static function getAll()\n {\n $forums = array();\n\n $query = 'select f.ID, f.NAME, f.DESCRIPTION, ' . \n\t\t\t\t' COUNT(m.ID) as MESSAGE_COUNT, ' .\n\t\t\t\t' UNIX_TIMESTAMP(MIN(m.MESSAGE_DATE)) as LATEST_DATE ' .\n\t\t\t\t' from FORUM f ' .\n\t\t\t\t' left join MESSAGE m ' .\n\t\t\t\t' on f.ID = m.FORUM_ID ' .\n\t\t\t\t' group by f.ID, f.NAME, f.DESCRIPTION ' .\n\t\t\t\t' order by COUNT(m.ID) desc'; \n $result = mysql_query($query, $GLOBALS['DB']);\n\t\t\n if (mysql_num_rows($result))\n {\n\t\t\twhile ($row = mysql_fetch_assoc($result))\n\t\t\t{\t\n\t\t\t\t$f = new Forum();\n\t\t\t\tForum::setValuesFromDB($f, $row);\n\t\t\t\t// add the question to the list, using its id as a key\n\t\t\t\tarray_push($forums, $f);\n\t\t\t}\n\t\t}\n\t\tmysql_free_result($result);\n return $forums;\t\t\n }", "public function getStats();", "function plugin_getfeednames_forum ()\n{\n global $_TABLES;\n\n $feeds = array ();\n $result = DB_query (\"SELECT forum_id,forum_name FROM {$_TABLES['gf_forums']} ORDER BY forum_order\");\n $num = DB_numRows ($result);\n\n if ($num > 0) {\n $feeds[] = array ('id' => '0', 'name' => 'all forums');\n }\n\n for ($i = 0; $i < $num; $i++) {\n $A = DB_fetchArray ($result);\n $feeds[] = array ('id' => $A['forum_id'], 'name' => $A['forum_name']);\n }\n\n return $feeds;\n}", "public function getStatistics() {\n $this->debug(\"mpd->getStatistics()\");\n $stats = $this->sendCommand(self::CMD_STATISTICS);\n if ( !$stats ) {\n return null;\n } else {\n $statsArray = array();\n $statsLine = strtok($stats,\"\\n\");\n while ( $statsLine ) {\n list ( $element, $value ) = explode(\": \",$statsLine);\n $statsArray[$element] = $value;\n $statsLine = strtok(\"\\n\");\n }\n }\n $this->debug(\"mpd->getStatistics() / return: \" . print_r($statsArray));\n return $statsArray;\n }", "public function getStats() {}", "function bbp_get_forum_statuses($forum_id = 0)\n{\n}", "public function mostActiveForum()\n {\n $sth = Database::getInstance()->prepare('SELECT u.username, u.avatar, u.date, COUNT(*) AS count FROM forum_messages AS fm INNER JOIN users AS u ON u.id = fm.id_users GROUP BY u.id LIMIT 10');\n if ($sth->execute()) {\n return $sth->fetchAll(PDO::FETCH_OBJ);\n }\n }", "public function fetch_statistics() {\r\n $query1 = $this->db->query(\"SELECT COUNT(*) AS db_rows FROM users\")->result();\r\n $query2 = $this->db->query(\"SELECT COUNT(*) AS act_rows FROM users WHERE status = 'Active'\")->result();\r\n $query3 = $this->db->query(\"SELECT COUNT(*) AS jee_all_user1 FROM users WHERE course = 'JEE' AND duration = '1'\")->result();\r\n $query4 = $this->db->query(\"SELECT COUNT(*) AS jee_active_user1 FROM users WHERE course = 'JEE' AND duration = '1' AND status = 'Active'\")->result();\r\n $query5 = $this->db->query(\"SELECT COUNT(*) AS jee_all_user2 FROM users WHERE course = 'JEE' AND duration = '2'\")->result();\r\n $query6 = $this->db->query(\"SELECT COUNT(*) AS jee_active_user2 FROM users WHERE course = 'JEE' AND duration = '2' AND status = 'Active'\")->result();\r\n $query7 = $this->db->query(\"SELECT COUNT(*) AS neet_all_user FROM users WHERE course = 'NEET'\")->result();\r\n $query8 = $this->db->query(\"SELECT COUNT(*) AS neet_active_user FROM users WHERE course = 'NEET' AND status = 'Active'\")->result();\r\n return array(\r\n \"all_students\" => $query1,\r\n \"active_students\" => $query2,\r\n \"jee_all_student1\" => $query3,\r\n \"jee_active_student1\" => $query4,\r\n \"jee_all_student2\" => $query5,\r\n \"jee_active_student2\" => $query6,\r\n \"neet_all_student\" => $query7,\r\n \"neet_active_student\" => $query8\r\n );\r\n }", "function read_stats() {\n include(\"stats.php\");\n return array($r, $f);\n }", "public function getStatistics()\n {\n return array();\n }", "function _statistics()\n {\n \t$object = new JObject();\n \t// returns an array of objects with ->title and ->value\n \t$model = JModel::getInstance( 'Newsletters', 'PhplistModel' );\n \t$model->setState( 'order', 'tbl.name' );\n \t$list = $model->getList();\n \t$this->assign('newsletters', $list);\n }", "public function getStats() {\n $data = [\n 'active_lists' => $this->_getActiveLists(),\n 'active_users' => $this->_getActiveUsers(),\n 'active_users_by_day' => $this->_getActiveUsersPerDay(),\n 'user_syncs_by_day' => $this->_getUserSyncsPerDay(),\n 'activities_by_day' => $this->_getActiviesPerDay(),\n 'items_by_day' => $this->_getItemUpdatesPerDay(),\n 'list_item_counts' => $this->_getItemCountsPerList(),\n 'user_alerts_by_day' => $this->_getUserAlertsPerDay()\n ];\n $this->set('data', $data);\n }", "function get_forum_list() {\n\t\treturn $this->call('get_forum_list');\n\t}", "public function stats() {\n $total = ReportData::all()->count();\n\n $lastHour = ReportData::updatedSince(new \\DateInterval('PT1H'))->count();\n $lastDay = ReportData::updatedSince(new \\DateInterval('P1D'))->count();\n $lastWeek = ReportData::updatedSince(new \\DateInterval('P1W'))->count();\n $lastMonth = ReportData::updatedSince(new \\DateInterval('P1M'))->count();\n\n $inactiveWeek = ReportData::updatedBetween(new \\DateInterval('P1W'), new \\DateInterval('P1M'))->count();\n $inactiveMonth = ReportData::updatedBetween(new \\DateInterval('P1M'), new \\DateInterval('P3M'))->count();\n $inactiveThreeMonth = ReportData::notUpdatedFor(new \\DateInterval('P3M'))->count();\n\n return [\n 'total' => $total,\n 'seen_last_hour' => $lastHour,\n 'seen_last_day' => $lastDay,\n 'seen_last_week' => $lastWeek,\n 'seen_last_month' => $lastMonth,\n 'inactive_week' => $inactiveWeek,\n 'inactive_month' => $inactiveMonth,\n 'inactive_three_months' => $inactiveThreeMonth\n ];\n }", "public function get_statistics($num) {\n \n // Verify if session exists and if the user is admin\n $this->if_session_exists($this->user_role,1);\n \n // This function get statistics by $num\n $statistics = generate_admin_statstics($num, $this->user->get_last_users($num));\n \n if ( $statistics ) {\n \n echo json_encode($statistics);\n \n }\n \n }", "public function stats()\n\t{\n\t\treturn array();\n\t}", "function bim_get_question_response_stats( $questions ) {\n global $DB;\n if ( empty($questions)) {\n return null;\n }\n\n foreach ($questions as $question) {\n // get count of student posts in each status for this question\n $sql = \"select status,count(id) as x from {bim_marking} where \" .\n \"question=$question->id and status!='Unallocated' \" .\n \"group by status\";\n $marking_details = $DB->get_records_sql( $sql );\n\n // get ready to update $question->status with information\n $question->status = array();\n $status = array( \"Unallocated\", \"Submitted\", \"Released\", \"Marked\",\n \"Suspended\" );\n\n foreach ($status as $field) {\n // if there was a post in that status, update $question->status\n if ( isset( $marking_details[$field] ) ) {\n $question->status[$field] = $marking_details[$field]->x;\n } else {\n $question->status[$field] = 0;\n }\n }\n }\n return $questions;\n}", "protected function getStatistics() {\n\t\t$data = [];\n\n\t\t$sessionuserID = $_SESSION['ID'];\n\n\t\t// Schnellstest Spiel\n\t\t$sql = \"SELECT MIN(totaltime) as min FROM `result` WHERE F_userID = '$sessionuserID'\";\n\t\t$row = $this->fetch_object($this->query($sql));\n\t\t$data['fastest'] = $row->min;\n\n\t\t// Anzahl Spiele\n\t\t$sql = \"SELECT COUNT(F_userID) AS Anzahl FROM `result` WHERE F_userID = '$sessionuserID'\";\n\t\t$row = $this->fetch_object($this->query($sql));\n\t\t$data['countGames'] = $row->Anzahl;\n\n\t\t// Alle Spiele\n\t\t$sql = \"SELECT date, totaltime, TIME_TO_SEC(totaltime) / 60 as timeMinutes, flips FROM `result` WHERE F_userID = '$sessionuserID' ORDER By date asc\";\n\t\t$ergebnistabellerow = $this->query($sql);\n\t\t$data['games'] = [];\n\t\t\t\n\t\t// Daten aufbereiten\n\t\twhile ( $row = $this->fetch_object ( $ergebnistabellerow ) ) {\n\t\t\t$tmpDate = new DateTime ( $row->date );\n\t\t\t$data ['games'] [] = [\n\t\t\t\t\t// Datum des Spieles im deutschen Format\n\t\t\t\t\t'date' => $tmpDate->format ( 'd.m.Y' ),\n\t\t\t\t\t// Benötigte Zeit\n\t\t\t\t\t'time' => $row->totaltime,\n\t\t\t\t\t// Benötigte Zeit auf Minuten gerundet\n\t\t\t\t\t'timeMinutes' => $row->timeMinutes,\n\t\t\t\t\t// Datum des Spieles\n\t\t\t\t\t'dateObj' => $tmpDate,\n\t\t\t\t\t// Anzahl der benötigten Versuche\n\t\t\t\t\t'flips' => $row->flips\n\t\t\t];\n\t\t}\n\n\t\treturn $data;\n\t}", "function wpu_phpbb_stats($args='') {\n\techo get_wpu_phpbb_stats($args);\n}", "public function getStats()\n {\n // Making the stats if it's the first time\n if ($this->_stats === null) {\n $this->_stats = array();\n\n // Making the array of the stats\n foreach ($this->_data as $data) {\n $this->_stats[$data[0]] = array(\n 'time_idle' => $data[2],\n 'timeout_active' => $data[3],\n 'timeout_idle' => $data[4],\n 'time_average' => $data[5]\n );\n }\n }\n\n return $this->_stats;\n }", "public function statistics($token)\n {\n if (!Token::check($token)){\n return response()->json(\"unauthorized token\", 401);\n }\n $messages = DB::table('messages')->select(DB::raw('left(created_at,10) as create_date, count(*) as number') )->groupBy('create_date')->orderByDesc('create_date')->limit(7)->get();\n\n return response()->json($messages, 201);\n }", "public function getStats()\n {\n return msg_stat_queue($this->queueRessource);\n }" ]
[ "0.63455564", "0.62809074", "0.61080956", "0.6028697", "0.5962348", "0.5925725", "0.5831619", "0.58188343", "0.5754685", "0.56999284", "0.56809586", "0.5680718", "0.5623462", "0.5613981", "0.56070495", "0.553836", "0.5494916", "0.54786927", "0.5456178", "0.5450971", "0.5419335", "0.54184717", "0.5411821", "0.5407496", "0.54020095", "0.53968513", "0.5391148", "0.5386443", "0.53740144", "0.53417426" ]
0.66246027
0
Check for updates to the esoTalk software.
function checkForUpdates() { if (defined("AJAX_REQUEST")) return; // Write this as the latest update check time, so that another update check will not be performed for 24 hours. writeConfigFile("config/lastUpdateCheck.php", '$lastUpdateCheck', time()); // Get the latest version from get.esotalk.com. if (($handle = @fopen("http://get.esotalk.com/latestVersion.txt", "r")) === false) return; $latestVersion = fread($handle, 8192); fclose($handle); // Compare the installed version and the latest version. Show a message if there is a new version. if (version_compare(ESOTALK_VERSION, $latestVersion) == -1) $this->message("updatesAvailable", false, $latestVersion); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function check_updates() {\n\t\t// Retrieve license key\n\t\t$license_key = trim( get_option( 'ratesync_license_key' ) ); \n\t\t\n\t\t// Instantiate updater\n\t\t$edd_updater = new EDD_SL_Plugin_Updater( RS_SL_STORE_URL, __FILE__, array(\n\t\t\t'version' => $this->version,\n\t\t\t'license' => $license_key,\n\t\t\t'item_id' => RS_SL_ITEM_ID,\n\t\t\t'author' => 'WC RateSync',\n\t\t\t'url'\t => home_url(),\n\t\t 'beta' => false,\n\t\t) );\n\t}", "private function checkForUpdates()\n\n\t{\n\n\t\tif (version_compare(_PS_VERSION_, '1.5', '<') && self::isInstalled($this->name))\n\n\t\t\tforeach (array('1.4.8', '1.4.11') as $version)\n\n\t\t\t{\n\n\t\t\t\t$file = dirname(__FILE__).'/upgrade/install-'.$version.'.php';\n\n\t\t\t\tif (Configuration::get('SKYBANK_AIM') < $version && file_exists($file))\n\n\t\t\t\t{\n\n\t\t\t\t\tinclude_once($file);\n\n\t\t\t\t\tcall_user_func('upgrade_module_'.str_replace('.', '_', $version), $this);\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t}", "private function _checkUpdates()\n {\n $feedUrl = str_replace('{id}', strval(time()), Mage::getStoreConfig('hubshoply/support/feed_url'));\n $data = (array) Mage::helper('core')->jsonDecode(@file_get_contents($feedUrl));\n \n if ( !empty($data) && !empty($data['hubshoply']) && !empty($data['hubshoply']['magento']) ) {\n $update = $data['hubshoply']['magento'];\n $latest = empty($update['latest']) ? $this->getVersion() : $update['latest']['version'];\n\n if ( version_compare($this->getVersion(), $latest) < 0 ) {\n $this->setData('update', new Varien_Object($update['latest']));\n }\n }\n }", "public function action_update_check()\n\t{\n\t \tUpdate::add( 'Silencer', 'fdb7e18c-f883-4456-a55d-b8e5c8c9ffaa', $this->info->version );\n\t}", "public function check_update() {\n \n // Verify if session exists and if the user is admin\n $this->if_session_exists($this->user_role,1);\n \n $l_version = '';\n \n if ( file_exists('update.json') ) {\n \n $get_last = file_get_contents('update.json');\n $from = json_decode($get_last, true);\n unset($decode);\n $l_version = $from ['version'];\n \n }\n \n // Check if the update file is available\n $update_url = 'https://update.midrub.com/';\n \n $context = stream_context_create(array(\n 'http' => array(\n 'method' => 'GET',\n 'timeout' => 30\n )\n ));\n \n $update_down = @file_get_contents($update_url, 0, $context);\n \n $new_update = '';\n \n if ( $update_down ) {\n \n $from = json_decode($update_down, true);\n \n unset($update_down);\n \n // Check if the last version is equal to the current version\n if ( $from ['version'] != $l_version ) {\n \n // Set update option available. In this way the script will not check if an update available every time when will be loaded a page.\n if ( $this->options->check_enabled('update') == false ) {\n \n $this->options->enable_or_disable_network('update');\n \n }\n \n // Return update information\n return $from;\n \n }\n \n }\n \n return false;\n \n }", "public function checkUpdate() {\n $this->log('Checking for a new update. . .');\n\n if( $this->licensekey != null ) {\n $updateFile = $this->updateUrl.'/'.$this->updateIni.'?license-key='.urlencode($this->licensekey).'&domain='.urlencode(site_url()).'&channel='.urlencode($this->updateChannel);\n } else {\n $updateFile = $this->updateUrl.'/'.$this->updateIni;\n }\n\n //$update = @file_get_contents($updateFile);\n $update = $this->_file_get_contents_curl($updateFile);\n if ($update === false) {\n $this->log('Could not retrieve update file `'.$updateFile.'`!');\n return false;\n } else {\n\n if( !function_exists('parse_ini_string') ) {\n $this->log('parse_ini_string is not supported your PHP Version is '.phpversion());\n return false;\n }\n\n $versions = parse_ini_string($update, true);\n if (is_array($versions)) {\n $keyOld = 0;\n $latest = 0;\n $update = '';\n $changelog = null;\n\n foreach ($versions as $key => $version) {\n if ($key > $keyOld) {\n $keyOld = $key;\n $latest = $version['version'];\n $update = $version['url'];\n $changelog = $version['changelog'];\n }\n }\n\n $this->log('New version found `'.$latest.'`.');\n $this->latestVersion = $keyOld;\n $this->latestVersionName = $latest;\n $this->latestUpdate = $update;\n $this->latestChangelog = $changelog;\n\n return $keyOld;\n }\n else {\n $this->log('Unable to parse update file!');\n return false;\n }\n }\n }", "public function action_update_check()\n\t{\n\t \tUpdate::add( $this->info->name, $this->info->guid, $this->info->version );\n\t}", "public function action_update_check()\n\t{\n\t\tUpdate::add( 'YouTubeSilo', '59423325-783e-4d76-84aa-292e3dbf42c8', $this->info->version );\n\t}", "public function checkForUpdates()\n {\n $latest = getLatestRevision();\n if ($latest && ($latest != getCurrentRevision())) {\n dumpCache();\n setCurrentRevision($latest);\n }\n }", "function update_check() {\n global $wp_version, $wpdb;\n\n require_once ABSPATH . '/wp-admin/includes/plugin.php';\n\n $plugin_data = get_plugin_data( __FILE__ );\n\n $plugin_name = $plugin_data['Name'];\n $plugin_version = $plugin_data['Version'];\n\n $version = get_transient( $this->plugin_slug . '_update_plugin' );\n $duration = 60 * 60 * 12; //every 12 hours\n\n if ( $version === false ) {\n\n if ( is_multisite() ) {\n $wp_install = network_site_url();\n } else {\n $wp_install = home_url( '/' );\n }\n\n $params = array(\n 'timeout' => 20,\n 'user-agent' => 'WordPress/' . $wp_version . '; ' . home_url( '/' ),\n 'body' => array(\n 'name' => $plugin_name,\n 'slug' => $this->plugin_slug,\n 'type' => 'plugin',\n 'version' => $plugin_version,\n 'site_url' => $wp_install\n )\n );\n\n $url = 'http://wedevs.com/?action=wedevs_update_check';\n $response = wp_remote_post( $url, $params );\n $update = wp_remote_retrieve_body( $response );\n\n if ( is_wp_error( $response ) || $response['response']['code'] != 200 ) {\n return false;\n }\n\n $json = json_decode( trim( $update ) );\n $version = array(\n 'name' => $json->name,\n 'latest' => $json->latest,\n 'msg' => $json->msg\n );\n\n set_site_transient( $this->plugin_slug . '_update_plugin', $version, $duration );\n }\n\n if ( version_compare( $plugin_version, $version['latest'], '<' ) ) {\n return true;\n }\n\n return false;\n }", "function update_check()\n\t{\n\t\tglobal $config;\n\t\tif ($config[\"automatic_update_check\"] == 1) {\n\t\t\t$current_version = $config['version'];\n\t\t\tif (ini_get(\"allow_url_fopen\") == 1) {\n\t\t\t\t$lastest_version = @file_get_contents(\"http://www.open-realty.org/release/version.txt\");\n\t\t\t\t$check = version_compare($current_version, $lastest_version, \">=\");\n\t\t\t\tif ($check == 1) {\n\t\t\t\t\treturn false;\n\t\t\t\t} else {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\treturn 'php_error';\n\t\t\t}\n\t\t} else {\n\t\t\treturn 'php_error';\n\t\t}\n\t}", "public function checkForUpdates()\n {\n \n // Run a call back to the PizzaBoxSoftware site to check for current versions \n $xml = simplexml_load_file(\"http://www.pizzaboxsoftware.co.uk/kongreg8os2/updates/current.xml\");\n\n print $xml->getName() . \"<br />\";\n\n foreach($xml->children() as $child)\n {\n print $child->getName() . \": \" . $child . \"<br/>\";\n if($child->getName() == \"version\")\n {\n $myversion = $child;\n }\n }\n return $myversion;\n \n \n }", "public function action_update_check()\n\t{\n\t\t Update::add( 'Simple Tag List', 'da67e437-e3b9-4d7a-bad8-5ab55b6d801b', $this->info->version );\n\t}", "private static function _checkUpdates()\n {\n $theme = WPop_Theme::instance();\n \n // Check for updates\n $api = WPop_API::instance();\n add_filter( 'pre_set_site_transient_update_themes', array( $api, 'getThemeUpdates' ) );\n add_filter( 'pre_set_transient_update_themes', array( $api, 'getThemeUpdates' ) );\n add_filter( 'site_transient_update_themes', array( $api, 'getThemeUpdates' ) );\n add_filter( 'transient_update_themes', array( $api, 'getThemeUpdates' ) );\n\n // Show notification if updates available\n $wpop_updates = get_site_transient( 'wpop_updates' );\n if ( is_object( $wpop_updates ) && isset( $wpop_updates->response ) ) {\n $slug = basename( TEMPLATEPATH );\n if ( isset( $wpop_updates->response[$slug] ) ) {\n $info = $wpop_updates->response[$slug];\n if ( version_compare( WPOP_THEME_VERSION, $info['new_version'], 'lt' ) ) {\n $theme_link = sprintf( '<a href=\"http://wordspop.com/themes/%s\">%s</a> %s', WPOP_THEME_SLUG, WPOP_THEME_NAME, $info['new_version'] );\n if ( $info['license'] == 'Free' ) {\n $message = $theme_link .' ' . __( 'is available!', WPOP_THEME_SLUG ) . ' ' .\n sprintf( '<a href=\"%supdate-core.php\">' . __( 'Please update now' ) . '</a>.<br />', get_admin_url() );\n } else {\n $message = $theme_link .' ' . __( 'is available! Please follow the instruction how to update.', WPOP_THEME_SLUG );\n }\n $theme->notification( $message );\n }\n }\n }\n }", "function update_available() {\n\n\t// Do we have an update?\n\tif ( '0' != blog_setting( 'update_available' ) ) {\n\n\t\treturn true;\n\n\t}\n\n\treturn false;\n\n}", "function checkUpdate(){\n\t\t$url = 'https://github.com/pluck-cms/pluck/releases/latest';\n\n\t\t// Initialize session and set URL.\n\t\t$geturl = curl_init();\n\t\tcurl_setopt($geturl, CURLOPT_URL, $url);\n\t\t// Dont check ssl certifical issue #4\n\t\t//curl_setopt($geturl, CURLOPT_SSL_VERIFYPEER, false);\n\t\t// Go redirect\n\t\tcurl_setopt($geturl, CURLOPT_FOLLOWLOCATION, true);\n\t\t// Return data\n\t\tcurl_setopt($geturl, CURLOPT_RETURNTRANSFER, true);\n\t\t\t\n\t\t// Get the response and close the channel.\n\t\t$response = curl_exec($geturl);\n\t\tcurl_close($geturl);\n\t\t// Find latest release\n\t\t// <span class\\=\\\"css-truncate-target\\\" style=\"max-width: 125px\">4.7.11</span>\n\t\tpreg_match('/\\<span class\\=\\\"css-truncate-target\\\" style\\=\\\"max-width: 125px\\\"\\>(.*)\\<\\/span\\>/', $response, $match);\n\t\t// Current latest release string\n\t\t$update_available = strip_tags($match[0]);\n\t\n\t\t// Remove v char if we are using normal releases\n\t\t$update_available = str_replace('v', '', $update_available);\n\t\t\n\n\t\treturn $update_available;\n\n}", "public function isUpdateAvailable()\n {\n return version_compare(STATAMIC_VERSION, $this->getLatestVersion(), '<');\n }", "public function action_update_check()\n\t{\n\t \tUpdate::add( 'Habmin Bar', '1db4ce60-3ca2-11dd-ae16-0800200c9a66', $this->info->version );\n\t}", "public function checkForAnydvdUpdates()\r\n\t{\r\n\t\t$settings = Setting::getInstance();\r\n\t\t\t\t\r\n\t\t$result = new AnydvdUpdateResponse() ;\r\n\t\t$result->version = '0';\r\n\t\t$result->action = 0; \r\n\t\t$criteria = new CDbCriteria();\r\n\t\t$criteria->order = 'Id DESC'; \r\n\t\t$anydvdVersion = AnydvdVersion::model()->findByAttributes(array('downloaded'=>1,'installed'=>0),$criteria);\r\n\t\tif(isset($anydvdVersion))\r\n\t\t{\r\n\t\t\t$result->action = 1; \r\n\t\t\t$result->version = $anydvdVersion->version;\r\n\t\t\t$result->file_name = $anydvdVersion->file_name;\r\n\t\t\t$result->url = Yii::app()->request->getHostInfo().'/'.Yii::app()->baseUrl.'/'.$settings->path_anydvd_download.$anydvdVersion->file_name;\r\n\t\t}\r\n\t\treturn $result;\r\n\t}", "function check_update_version()\n\t{\n\t\tlog_write(\"debug\", \"api_namedmanager\", \"Executing check_update_version()\");\n\n\n\t\tif ($this->auth_online)\n\t\t{\n\t\t\t$obj_server\t\t= New name_server;\n\t\t\t$obj_server->id\t\t= $this->auth_server;\n\n\t\t\t$obj_server->load_data();\n\n\t\t\tif (isset($obj_server->data[\"sync_status_config\"]))\n\t\t\t{\n\t\t\t\tlog_write(\"debug\", \"api_namedmanager\", \"Configuration is OUT OF SYNC!\");\n\n\t\t\t\treturn sql_get_singlevalue(\"SELECT value FROM config WHERE name='SYNC_STATUS_CONFIG' LIMIT 1\");\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tlog_write(\"debug\", \"api_namedmanager\", \"Configuration is all up-to-date\");\n\n\t\t\t\treturn 0;\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\tthrow new SoapFault(\"Sender\", \"ACCESS_DENIED\");\n\t\t}\n\n\t}", "public function action_update_check()\n\t{\n\t \tUpdate::add('Google Code Prettify', 'dc7d7984-ff24-46ea-b37a-1c26a6f17938', $this->info->version);\n\t}", "function check_for_plugin_update($checked_data){\n\t\tif ( ! defined( 'ETHEME_API' ) ) return $checked_data;\n\n\t\t$activated_data = get_option( 'etheme_activated_data' );\n\t\t$update_info = get_option( 'xstore-update-info', false );\n\t\t$key \t\t\t= $activated_data['api_key'];\n\t\t$plugins_dir \t= 'https://dl.ariawp.com/themes/xstore/updates/';\n\t\t$token \t\t\t= '?token=' . $key;\n\t\t$plugin_ver \t= ( isset( $update_info->plugin_version ) && ! empty( $update_info->plugin_version ) ) ? $update_info->plugin_version : false;\n\n\t\tif ( version_compare( ET_CORE_VERSION, $plugin_ver, '<' ) ) {\n\t\t\t$plugins_dir \t= 'https://dl.ariawp.com/themes/xstore/updates/';\n\t\t\t$plugins_dir . 'et-core-plugin.zip';\n\n\t\t\t$plugin = new \\stdClass();\n\t\t\t$plugin->slug = 'et-core-plugin';\n\t\t\t$plugin->plugin = 'et-core-plugin/et-core-plugin.php';\n\t\t\t$plugin->new_version = $plugin_ver;\n\t\t\t$plugin->url = 'http://8theme.com/demo/xstore/change-log.php';\n\t\t\t$plugin->package = apply_filters( 'etheme_plugin_url', $plugins_dir . 'et-core-plugin.zip' . $token );\n\t\t\t$plugin->tested = '5.4';\n\t\t\t$plugin->icons = Array(\n\t\t\t\t'2x' =>esc_url( ET_CORE_URL . 'packages/st-woo-swatches/public/images/256x256.png' ),\n\t\t\t\t'1x' =>esc_url( ET_CORE_URL . 'packages/st-woo-swatches/public/images/128x128.png' )\n\t\t\t);\n\t\t\t$checked_data->response['et-core-plugin/et-core-plugin.php'] = $plugin;\n\t\t}\n\n\t\treturn $checked_data;\n\t}", "public function update_check() {\n\t\tif ( ! current_user_can( 'edit_theme_options' ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t$last_update_time = get_site_option( 'the7_demo_content_last_update' );\n\t\t$cur_time = time();\n\n\t\tif ( ( $cur_time - $last_update_time ) <= MINUTE_IN_SECONDS ) {\n\t\t\treturn;\n\t\t}\n\n\t\t$the7_remote_api = new The7_demo_Content_Remote_Server_API();\n\n\t\t$new_list = $the7_remote_api->get_items_list();\n\t\tif ( is_wp_error( $new_list ) || ! $new_list ) {\n\t\t\treturn;\n\t\t}\n\n\t\tupdate_site_option( 'the7_demo_content_items_list', $new_list );\n\t\tupdate_site_option( 'the7_demo_content_last_update', $cur_time );\n\t}", "public function check() {\n\t\t$latest = $this->get_latest_version();\n\t\t//we get error when getting the update packages information\n\t\tif ( $latest == false ) {\n\t\t\treturn new WP_Error( 'cant_check_updates', __( \"An error occurred, please try again\", wp_defender()->domain ) );\n\t\t}\n\n\t\tif ( version_compare( $this->wp_version, $this->get_latest_version() ) == - 1 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t}", "public function sendNotificationIfUpdateAvailable()\n {\n if (!$this->isNewVersionAvailable()) {\n return;\n }\n\n if ($this->hasNotificationAlreadyReceived()) {\n return;\n }\n\n $this->setHasLatestUpdateNotificationReceived();\n $this->sendNotifications();\n }", "private function is_update_available() {\n if ($package = $this->fetch_latest_package()) {\n if (version_compare($package->version, $this->theme_data->Version, '>')) {\n return true;\n }\n }\n return false;\n }", "protected function checkUpgrade()\n {\n $apps = Yii::app()->apps;\n if (!in_array($apps->getCurrentAppName(), array('backend', 'customer', 'frontend'))) {\n return;\n }\n \n $options = Yii::app()->options;\n $fileVersion = MW_VERSION;\n $dbVersion = $options->get('system.common.version');\n \n if (!version_compare($fileVersion, $dbVersion, '>')) {\n return;\n }\n\n $siteStatus = $options->get('system.common.site_status', 'online');\n if ($siteStatus == 'online') {\n $options->set('system.common.site_status', 'offline');\n }\n \n // only if the user is logged in\n if (Yii::app()->hasComponent('user') && Yii::app()->user->getId() > 0) {\n $appName = $apps->getCurrentAppName();\n Yii::app()->hooks->addAction($appName . '_controller_init', array($this, '_setRedirectToUpdatePage')); \n }\n }", "public function is_update_available() {\n $license_info = $this->get_license_info();\n if ($this->is_api_error($license_info)) {\n return false;\n }\n\n if (version_compare($license_info->version, $this->get_local_version(), '>')) {\n return $license_info;\n }\n\n return false;\n }", "public function do_updates() {\n\t\t$installed_version = get_option( 'rank_math_version', '1.0.0' );\n\n\t\t// Maybe it's the first install.\n\t\tif ( ! $installed_version ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( version_compare( $installed_version, rank_math()->version, '<' ) ) {\n\t\t\t$this->perform_updates();\n\t\t}\n\t}", "function myplugin_update_db_check()\n\t{\n\t\tglobal $ek_notes_version;\n\t\t\n\t\tif ( get_option( 'ek_notes_version' )< $ek_notes_version )\n\t\t{\n\n\t\t\t// Update version op\n\t\t\tupdate_option( 'ek_notes_version', $ek_notes_version );\n\t\t\t$this->installDB();\n\t\t}\n\t}" ]
[ "0.7475939", "0.7162309", "0.70681614", "0.697814", "0.6920508", "0.6871077", "0.6819478", "0.67417985", "0.6722646", "0.65872085", "0.6521704", "0.6479226", "0.64404106", "0.6428456", "0.6411148", "0.6404429", "0.6318109", "0.62884134", "0.6280186", "0.62732273", "0.62472856", "0.62280273", "0.6215051", "0.6198223", "0.6173513", "0.6155619", "0.6152331", "0.6109037", "0.6108735", "0.61067724" ]
0.76305276
0
Add a definition to the language array, but only if it has not already been defined.
function addLanguage($key, $value) { global $language; $definition =& $language; foreach ((array)$key as $k) $definition =& $definition[$k]; if (isset($definition)) return false; $definition = $value; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function addDefinition(LibraryDefinitionInterface $definition);", "function addLanguage()\n {\n global $_ARRAYLANG, $objDatabase;\n\n if (empty($_POST['name']) || empty($_POST['shortName']) || empty($_POST['charset'])) {\n return false;\n }\n $shortName = mysql_escape_string($_POST['shortName']);\n $name = mysql_escape_string($_POST['name']);\n $charset = mysql_escape_string($_POST['charset']);\n\n $objResult = $objDatabase->Execute(\"\n SELECT lang\n FROM \".DBPREFIX.\"languages\n WHERE lang='$shortName'\n \");\n if (!$objResult) {\n $this->strErrMessage = $_ARRAYLANG['TXT_DATABASE_QUERY_ERROR'];\n return false;\n }\n if ($objResult->RecordCount() > 0) {\n // Language exists already.\n// TODO: Add a more suitable error message here.\n $this->strErrMessage = $_ARRAYLANG['TXT_DATABASE_QUERY_ERROR'];\n return false;\n }\n $objDatabase->Execute(\"\n INSERT INTO \".DBPREFIX.\"languages\n SET lang='\".contrexx_addslashes($shortName).\"',\n name='\".contrexx_addslashes($name).\"',\n charset='\".contrexx_addslashes($charset).\"',\n is_default='false'\n \");\n $newLanguageId = $objDatabase->Insert_ID();\n\n $objResult = $objDatabase->SelectLimit(\"\n SELECT id FROM \".DBPREFIX.\"languages\n WHERE is_default='true'\", 1\n );\n if ($objResult) {\n while (!$objResult->EOF) {\n $defaultLanguageId = $objResult->fields['id'];\n $objResult->MoveNext();\n }\n }\n $objResult = $objDatabase->Execute(\"\n SELECT varid,content\n FROM \".DBPREFIX.\"language_variable_content\n WHERE lang_id=$defaultLanguageId\n \");\n if ($objResult) {\n while (!$objResult->EOF) {\n $arrContent[$objResult->fields['varid']] = $objResult->fields['content'];\n $objResult->MoveNext();\n }\n }\n foreach ($arrContent as $key => $content) {\n $objDatabase->Execute(\"\n INSERT INTO \".DBPREFIX.\"language_variable_content\n SET varid=$key,\n content='\".addslashes($content).\"',\n lang_id=$newLanguageId,\n status=0\n \");\n }\n $objResult = $objDatabase->Execute(\"\n SELECT gallery_id, name, value\n FROM \".DBPREFIX.\"module_gallery_language\n WHERE lang_id=$defaultLanguageId\n \");\n if ($objResult) {\n while (!$objResult->EOF) {\n $objDatabase->Execute(\"\n INSERT INTO \".DBPREFIX.\"module_gallery_language\n SET gallery_id=\".$objResult->fields['gallery_id'].\",\n lang_id=$newLanguageId,\n name='\".$objResult->fields['name'].\"',\n value='\".$objResult->fields['value'].\"'\n \");\n $objResult->MoveNext();\n }\n }\n $objResult = $objDatabase->Execute(\"\n SELECT picture_id, name, `desc`\n FROM \".DBPREFIX.\"module_gallery_language_pics\n WHERE lang_id=$defaultLanguageId\n \");\n if ($objResult) {\n while (!$objResult->EOF) {\n $objDatabase->Execute(\"\n INSERT INTO \".DBPREFIX.\"module_gallery_language_pics\n SET picture_id=\".$objResult->fields['picture_id'].\",\n lang_id=$newLanguageId,\n name='\".$objResult->fields['name'].\"',\n `desc`='\".$objResult->fields['desc'].\"'\n \");\n $objResult->MoveNext();\n }\n }\n $this->strOkMessage = $_ARRAYLANG['TXT_NEW_LANGUAGE_ADDED_SUCCESSFUL'];\n return true;\n }", "function addLanguageToJS()\n{\n\tglobal $language;\n\t$args = func_get_args();\n\tforeach ($args as $key) {\n\t\t$definition =& $language;\n\t\tforeach ((array)$key as $k) $definition =& $definition[$k];\n\t\t$this->jsLanguage[$k] =& $definition;\n\t}\n}", "public function addDefinition(Definition $definition) {\n\t\t$this->definitions[$definition->getOriginal()] = $definition;\n\t}", "function addWord( $word, $definition )\n {\n $this->connection->connect();\n \n \n \n // check if the word is in the dictionary \n $sql = \"SELECT id \" . \"\\n\"\n . \"FROM `\".$this->tableList['glossary_words'].\"` \" . \"\\n\"\n . \"WHERE name = '\".addslashes( $word ).\"'\" . \"\\n\"\n ; \n \n $result = $this->connection->getRowFromQuery( $sql );\n \n if ( $this->connection->hasError() )\n {\n return false;\n }\n \n $wordId = isset( $result['id'] )\n ? (int) $result['id']\n : null\n ;\n \n // word not in dictionary\n if ( is_null( $wordId ) )\n {\n $sql = \"INSERT INTO `\" . $this->tableList['glossary_words'] . \"`\\n\"\n .\" SET name = '\". addslashes( $word ) . \"'\" . \"\\n\"\n ;\n $this->connection->executeQuery( $sql );\n \n if ( $this->connection->hasError() )\n {\n return false;\n }\n \n $wordId = $this->connection->getLastInsertId();\n }\n \n if ( $this->connection->hasError() )\n {\n return false;\n }\n \n // check if the definition is in the dictionary \n $sql = \"SELECT id \" . \"\\n\"\n . \"FROM `\".$this->tableList['glossary_definitions'].\"` \" . \"\\n\"\n . \"WHERE definition = '\".addslashes( $definition ).\"'\" . \"\\n\"\n ; \n \n $result = $this->connection->getRowFromQuery( $sql );\n \n if ( $this->connection->hasError() )\n {\n return false;\n }\n \n $defId = isset( $result['id'] )\n ? (int) $result['id']\n : null\n ;\n \n if ( is_null( $defId ) )\n {\n $sql = \"INSERT INTO `\" . $this->tableList['glossary_definitions'] . \"`\\n\"\n . \" SET definition = '\" . addslashes( $definition ) . \"'\" . \"\\n\"\n ;\n $this->connection->executeQuery( $sql );\n \n if ( $this->connection->hasError() )\n {\n echo $this->connection->getError();\n return false;\n }\n \n $defId = $this->connection->getLastInsertId();\n }\n \n $sql = \"SELECT id \" . \"\\n\"\n . \"FROM `\".$this->tableList['glossary_word_definitions'].\"` \" . \"\\n\"\n . \"WHERE definitionId = \" . (int) $defId . \" \" . \"\\n\"\n . \"AND wordId = \" . (int) $wordId . \"\\n\"\n ;\n \n $sql .= ( is_null( $this->dictionaryId ) ) \n ? ''\n : \" AND dictionaryId = \". (int) $this->dictionaryId\n ; \n \n // var_dump( $sql );\n \n $result = $this->connection->getRowFromQuery( $sql );\n \n if ( $this->connection->hasError() )\n {\n return false;\n }\n \n $wdId = isset( $result['id'] )\n ? (int) $result['id']\n : null\n ;\n \n if ( is_null( $wdId ) )\n {\n $sql = \"INSERT INTO `\".$this->tableList['glossary_word_definitions'].\"` \" . \"\\n\"\n . \"SET wordId = \". (int) $wordId . \", \" . \"\\n\"\n . \"definitionId = \". (int) $defId . \"\\n\"\n ;\n \n $sql .= ( is_null( $this->dictionaryId ) ) \n ? ''\n : \", dictionaryId = \". (int) $this->dictionaryId . \"\\n\"\n ;\n \n $this->connection->executeQuery( $sql );\n \n if ( $this->connection->hasError() )\n {\n return false;\n }\n }\n \n return $wordId;\n }", "public function add($word)\n {\n if (!$this->has($word)) {\n $this->words[] = $word;\n }\n }", "function language($language)\n {\n $GLOBALS[\"config_language\"][] = $language;\n }", "public function __construct(array $definition = [], $add_empty = true) {\n $this->definition = $definition;\n $this->addEmpty = $add_empty;\n }", "private function langcorrectdeforder()\n {\n $fileName = $this->easyLanguage->getFileName('en-GB', $this->scope, $this->project);\n\n $this->default_language = $this->easyLanguage->parseFile($fileName);\n\n $this->setLayout('orderdefault');\n }", "function translations_AddLanguages ($WORD_ARRAY)\n {\n $ERRORLIST = '';\n foreach ($WORD_ARRAY as $key => $value)\n {\n if (strpos($key, '::') != false) #a valid language tranlsation will have a :: character in its key\n {\n $PARTS = explode('::', $key);\n $IDENTIFIER = $PARTS[1];\n $LANG_NAME = $value;\n $this->translations_db_AddLanguageColumn ($LANG_NAME);\n }\n }\n }", "function addWord( $word )\n {\n if ( in_array( $word, $this->wordList ) )\n {\n return false;\n }\n else\n {\n $this->wordList[] = $word;\n return true;\n }\n }", "function addUserLanguageTypeSetting($postedArray){\n\t\tglobal $db;\n\t\textract($postedArray);\t\t\n\t\t$language_type_setting_str\t= (!empty($language_type_setting))?implode(',',$language_type_setting):'1';\t\t\n\t\t$user_id\t = (isset($user_id))?trim($user_id):'0';\t\t\n\n\t\tif($user_id){\n\t\t\t$sql = \"UPDATE `user_privacy_settings` SET `language_type_setting`='\".mysql_real_escape_string($language_type_setting_str).\"', `update_on`='\".CURRENT_DATE.\"' WHERE `user_id` = '\".trim($user_id).\"' \";\n\t\t\treturn $insertResult = $db->insert($sql, $db->conn);\n\t\t}\n\t}", "function lingotek_add_target_language($lingotek_locale, $call_api = TRUE) {\n LingotekConfigSet::markLidsNotCurrent('all');\n if (is_null($lingotek_locale)) {\n return FALSE;\n }\n lingotek_add_missing_locales(FALSE); // fills in any missing lingotek_locale values to the languages table\n $language = lingotek_lookup_language_by_locale($lingotek_locale);\n\n if ($language) {\n // ALREADY EXISTS IN LANGUAGE TABLE\n // If already in the languages table then just tack on the lingotek_locale and enable it\n $drupal_language_code = $language->language;\n }\n else {\n // DOES NOT EXIST, INSERT NEW INTO LANGUAGE TABLE\n // If not add it to the languages table first and then tack on the lingotek_locale and enable it\n $drupal_language_code = Lingotek::convertLingotek2Drupal($lingotek_locale, FALSE);\n if (lingotek_lookup_locale_exists($drupal_language_code)) { // drupal code is already being used, generate another\n $errors = array($drupal_language_code);\n $drupal_language_code = strtolower(str_replace(\"_\", \"-\", $lingotek_locale));\n if (lingotek_lookup_locale_exists($drupal_language_code)) {\n $errors[] = $drupal_language_code;\n LingotekLog::error(\"Cannot add language code. Attempted language codes already being used: !errors\", array('!errors' => $errors));\n return FALSE; // do not add the language.\n }\n }\n\n $name = isset($_POST['language']) ? $_POST['language'] : NULL;\n $native = isset($_POST['native']) ? $_POST['native'] : NULL;\n $direction = isset($_POST['direction']) && (strcasecmp('RTL', $_POST['direction']) == 0 ) ? LANGUAGE_RTL : LANGUAGE_LTR;\n $domain = '';\n $prefix = '';\n locale_add_language($drupal_language_code, $name, $native, $direction, $domain, $prefix); // Function from the Locale module.\n }\n\n return lingotek_set_target_language($drupal_language_code, 1, $lingotek_locale, $call_api);\n}", "abstract public function definition() : array;", "protected function addJSDef()\n {\n foreach (array_keys($this->module_settings) as $name) {\n if (!is_array($this->module_settings[$name])) {\n Media::addJsDefL($name, Configuration::get($name));\n }\n }\n }", "public function processDefinition(array &$definition, $plugin_id);", "function drush_btranslator_btr_vocabulary_add($name, $lng) {\n // Check the language.\n _btranslator_drush_check_params(NULL, NULL, $lng);\n\n // Add the vocabulary.\n btr::vocabulary_add($name, $lng);\n foreach(btr::messages() as $msg) drush_log($msg[0], $msg[1]);\n}", "protected function setDefLangFirst($a_def_language, $a_languages)\n\t{\n\t\tif (is_array($a_languages) && $a_def_language != \"\")\n\t\t{\n\t\t\t$languages = array();\n\t\t\t$languages[] = $a_def_language;\n\n\t\t\tforeach ($a_languages as $val)\n\t\t\t{\n\t\t\t\tif (!in_array($val, $languages))\n\t\t\t\t{\n\t\t\t\t\t$languages[] = $val;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn $languages;\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn array();\n\t\t}\n\t}", "public function setDefinition($name, $definition) {}", "public static function define($name, $definition)\n {\n static::$defined[$name] = $definition;\n }", "function def($name, $definition, $default = null) {\n \n $this->globalDefinitions[$name] = array($definition, $default);\n return $this;\n \n }", "public function addSlang(DictStore $dictStore, $slang = null, $definition = null, $example = null)\n {\n if ($this->find($dictStore, $slang)) {\n return 'Slang already exists';\n } else {\n $dictStore = $this->populateDictionary($dictStore, $slang, $definition, $example);\n return $dictStore;\n }\n }", "public function addWord($word)\n {\n $this->dictionary->addWord($word);\n }", "abstract protected function define();", "public function add_lang($lang) {\r\n $this->langs[] = strtolower($lang);\r\n }", "function apiLoadLanguage($definition = 'help', $language = 'english')\n\t{\n\t\tif (!empty($language)) $language = _API_LANGUAGE_DEFAULT;\n\t\tif (file_exists($file = __DIR__ . DIRECTORY_SEPARATOR . 'language' . DIRECTORY_SEPARATOR . $language . DIRECTORY_SEPARATOR . \"$definition.php\"))\n\t\t{\n\t\t\treturn include_once($file);\n\t\t}\n\t\treturn false;\n\t}", "public function add($id = null)\n {\n $language = $id ? $this->Languages->get($id) : $this->Languages->newEntity();\n if ($this->request->is(['patch', 'post', 'put'])) {\n $language = $this->Languages->patchEntity($language, $this->request->data);\n if ($this->Languages->save($language)) {\n $this->Flash->success(__('The language has been saved'));\n return $this->redirect(['action' => 'index']);\n } else {\n $this->Flash->error(__('The language could not be saved'));\n }\n }\n $this->set(compact('language'));\n $this->set('_serialize', ['language']);\n }", "function of_title($add) {\n global $of_title_ar;\n\n if (!in_array($add, $of_title_ar)) {\n $of_title_ar[] = $add;\n }\n}", "function of_legend($add) {\n global $of_legend_ar;\n if (!in_array($add, $of_legend_ar)) {\n $of_legend_ar[] = $add;\n }\n}", "public function addFunction($name, $definition){ }" ]
[ "0.57119954", "0.5679676", "0.56728023", "0.56252384", "0.5611115", "0.53821224", "0.5363477", "0.53392226", "0.5206538", "0.5193962", "0.51602566", "0.51530737", "0.5110188", "0.5092892", "0.5073978", "0.5072294", "0.50534004", "0.5032842", "0.50327116", "0.5024303", "0.49772686", "0.4976063", "0.49547815", "0.49478447", "0.49428737", "0.49283725", "0.49141398", "0.48991117", "0.48854896", "0.4878485" ]
0.64110744
0
Set a language definition(s) to be accessible by JavaScript code on the page.
function addLanguageToJS() { global $language; $args = func_get_args(); foreach ($args as $key) { $definition =& $language; foreach ((array)$key as $k) $definition =& $definition[$k]; $this->jsLanguage[$k] =& $definition; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function setLanguage($language);", "public static function setLang(){\n $langCode = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);\n if(!empty($_REQUEST[LANG_CTRL_VAR]) && file_exists(PATH_ENGINE_LANG.$langCode.'.php')){\n $langCode = $_REQUEST[LANG_CTRL_VAR];\n if(ThisUser::islogged()){\n $User = Usuario::find(ThisUser::get(\"id_user\"));\n $User->lang = $_REQUEST[LANG_CTRL_VAR];\n $User->save();\n ThisUser::set(\"lang\",$_REQUEST[LANG_CTRL_VAR]);\n }\n }else{\n if(ThisUser::islogged() && ThisUser::get(\"lang\") != \"\"){\n $langCode = ThisUser::get(\"lang\");\n }\n }\n\n if(file_exists(PATH_ENGINE_LANG.$langCode.'.php')){\n Lang::load($langCode.'.php');\n }else{\n Lang::load(Sys::get('config')->lang_default.'.php');\n }\n }", "function language($language)\n {\n $GLOBALS[\"config_language\"][] = $language;\n }", "public function setLanguage()\n {\n if(!$this->language){\n $this->language = substr(Yii::$app->language,0,2);\n }\n\n $this->data = ArrayHelper::merge($this->data,\n [\n 'language' => $this->language,\n 'tabs' => $this->tabs,\n 'type' => $this->tab,\n 'cronExpression' => $this->value\n ]\n );\n }", "private function _setLanguage() \r\n {\r\n //write the Config.language with the value from the Cookie\r\n if ($this->Cookie->read('lang') && !$this->Session->check('Config.language')) {\r\n $this->Session->write('Config.language', $this->Cookie->read('lang'));\r\n } else if (isset($this->params['language']) && ($this->params['language'] != $this->Session->read('Config.language'))) {\r\n //then update the value in Session and the one in Cookie\r\n $this->Session->write('Config.language', $this->params['language']);\r\n $this->Cookie->write('lang', $this->params['language'], false, '20 days');\r\n }\r\n }", "protected function setLanguage()\n\t{\n\t\t$matches = array();\n\n\t\tif ($this->owner->user->hasState('__locale'))\n\t\t\t$language = $this->owner->user->getState('__locale');\n\t\telse if (preg_match('/^\\/([a-z]{2}(?:_[a-z]{2})?)\\//i',\n\t\t\t\tsubstr($this->owner->request->url, strlen($this->owner->baseUrl)), $matches) !== false\n\t\t\t\t&& isset($matches[1]) && in_array($matches[1], array_keys($this->owner->cms->languages)))\n\t\t\t$language = $matches[1];\n\t\telse\n\t\t\t$language = $this->owner->cms->defaultLocale;\n\n\t\t$this->owner->language = $language;\n\t}", "function set_cal_language($value = \"\"){\n\t\t$this->cal_language = $value;\n\t}", "public static function registerClientSideLanguage($view)\n {\n $view->registerJs('$.kalibao.core.app.language = \"'.Yii::$app->language.'\";');\n }", "function _set_languages()\r\n\t{\r\n\t\tif ((count($this->languages) == 0) AND isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) AND $_SERVER['HTTP_ACCEPT_LANGUAGE'] != '')\r\n\t\t{\r\n\t\t\t$languages = preg_replace('/(;q=.+)/i', '', trim($_SERVER['HTTP_ACCEPT_LANGUAGE']));\t\t\t\r\n\t\t\t$this->languages = explode(',', $languages);\r\n\t\t}\r\n\t\t\r\n\t\tif (count($this->languages) == 0)\r\n\t\t{\r\n\t\t\t$this->languages = array('Undefined');\r\n\t\t}\t\r\n\t}", "public function setLanguage($val) {\n $this->_language = $val;\n }", "public function language() {\n $strings = Cache::rememberForever('lang.js', function () {\n $lang = config('app.locale');\n \n $files = glob(resource_path('lang/' . $lang . '/*.php'));\n $strings = [];\n \n foreach ($files as $file) {\n $name = basename($file, '.php');\n $strings[$name] = require $file;\n }\n \n return $strings;\n });\n \n header('Content-Type: text/javascript');\n echo('window.i18n = ' . json_encode($strings) . ';');\n exit();\n }", "function setLangVars()\n\t{\n\t\tif(class_exists('LangVars'))\n\t\t{\n\t\t\t$this->langVars = new LangVars();\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$langVarsPath = str_replace('AjaxTableEditor.php','lang/LangVars-en.php',__file__);\n\t\t\tif(is_file($langVarsPath))\n\t\t\t{\n\t\t\t\trequire_once($langVarsPath);\n\t\t\t\t$this->langVars = new LangVars();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$this->warnings[] = 'The language file could not be found.';\n\t\t\t}\n\t\t}\n\t}", "private static function _set_languages()\n\t{\n\t\tif ((count(self::$languages) == 0) AND Request::server('HTTP_ACCEPT_LANGUAGE') AND Request::server('HTTP_ACCEPT_LANGUAGE') != '')\n\t\t{\n\t\t\t$languages = preg_replace('/(;q=[0-9\\.]+)/i', '', strtolower(trim(Request::server('HTTP_ACCEPT_LANGUAGE'))));\n\n\t\t\tself::$languages = explode(',', $languages);\n\t\t}\n\n\t\tif (count(self::$languages) == 0)\n\t\t{\n\t\t\tself::$languages = array('Undefined');\n\t\t}\n\t}", "public function setLang($l){\r\n $this->lang = $l;\r\n }", "function set_language($language)\r\n {\r\n $this->language = $language;\r\n }", "function el_installation_register_languages($strings = array()) {\n global $ElInstall;\n $ElInstall->langStrings = $strings;\n}", "public function registerJSVariables()\n {\n $object = json_encode($this->localizationData());\n\n $this->app['hook.factory']->action('wp_head', function () use ($object) {\n echo \"<script>var Assely = {$object};</script>\";\n })->dispatch();\n }", "private function setLanguagesList()\n {\n $languagesList = File::directories($this->paths['lang']);\n\n foreach ($languagesList as $key => $language) {\n $this->languagesList[$key] = substr(str_replace($this->paths['lang'], '', $language), 1);\n }\n }", "protected function setLanguageKeys()\n {\n self::$languageKey = 'default';\n self::$alternativeLanguageKey = '';\n if (isset($GLOBALS['TSFE']->config['config']['language'])) {\n self::$languageKey = $GLOBALS['TSFE']->config['config']['language'];\n if (isset($GLOBALS['TSFE']->config['config']['language_alt'])) {\n self::$alternativeLanguageKey = $GLOBALS['TSFE']->config['config']['language_alt'];\n }\n }\n }", "private static function setLanguage()\n\t\t{\n\t\t\tif(!isset($_GET['lang']) || !$_GET['lang'] || !\\config\\Configuration::isAllowedLanguage($_GET['lang']))\n\t\t\t{\n\t\t\t\tself::$language = \\config\\Configuration::$vars['locale']['default_language'];\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tself::$language = $_GET['lang'];\n\t\t\t}\n\n\t\t\tself::$locality = \\config\\Configuration::getLocality(self::$language);\n\t\t}", "public static function setLanguage($daysExpires = 100)\n {\n if (Yii::app()->request->getPost('languagePicker') !== null && in_array($_POST['languagePicker'], self::getLanguages(), true)) {\n Yii::app()->setLanguage($_POST['languagePicker']);\n $cookie = new CHttpCookie('language', $_POST['languagePicker']);\n $cookie->expire = time() + 60 * 60 * 24 * $daysExpires;\n Yii::app()->request->cookies['language'] = $cookie;\n } else if (isset(Yii::app()->request->cookies['language']) && in_array(Yii::app()->request->cookies['language']->value, self::getLanguages(), true)) {\n Yii::app()->setLanguage(Yii::app()->request->cookies['language']->value);\n } else if (isset(Yii::app()->request->cookies['language'])) {\n unset(Yii::app()->request->cookies['language']);\n } else {\n $preferredLang = explode('_', Yii::app()->getRequest()->getPreferredLanguage());\n if (in_array($preferredLang[0], self::getLanguages(), true))\n Yii::app()->setLanguage($preferredLang[0]);\n }\n }", "public function setCurrentLanguage($strLanguage);", "function InitializeLanguages() {\r\n // Languages as a string separated by ',' while the different translations are separated as follows: English|Bulgarian\r\n\r\n $languages = \"Afrikaans|африкански,Albanian|албански,Arabic|арабски,Azerbaijani|азерски,Basque|баски,Belarusian|беларуски,Bengali|бенгалски,Bosnian|босненски,Bulgarian|български,Cantonese|кантонски,Catalan|каталонски,Chinese|китайски,Croatian|хърватски,Czech|чешки,Danish|датски,Dutch|холандски,English|английски,Estonian|естонски,Filipino|филипински,Finnish|фински,French|френски,Georgian|грузински,German|немски,Greek|гръцки,Gujarati|гуджаратски,Hebrew|иврит,Hindi|хинди,Hungarian|унгарски,Icelandic|исландски,Indonesian|индонезийски,Irish|ирландски,Italian|италиански,Japanese|японски,Kazakh|казахски,Cambodian|камбоджански,Korean|корейски,Lao|лаоски,Latin|латински,Latvian|латвийски,Lithuanian|литовски,Malay|малайски,Marathi|маратхи,Mongolian|монголски,Nepali|непалски,Norwegian|норвежки,Pashto|пущунски,Persian|персийски,Polish|полски,Portuguese|португалски,Punjabi|панджаби,Romanian|румънски,Russian|руски,Scottish|шотландски,Serbian|сръбски,Slovak|словашки,Slovenian|словенски,Somali|сомалийски,Spanish|испански,Swahili|суахили,Swedish|шведски,Tagalog|тагалски,Tamil|тамилски,Telugu|телугу,Thai|тайвански,Turkish|турски,Ukrainian|украински,Urdu|урду,Uzbek|узбекски,Vietnamese|виетнамски,Welsh|уелски,Zulu|зулу\";\r\n\r\n $arr = explode(',', $languages);\r\n\r\n // Loop through the capture groups and add them to the DB\r\n $i = 0;\r\n foreach ($arr as $value) {\r\n $row['type_id'] = 3;\r\n $row['item_id'] = $i;\r\n $language = explode('|', $value);\r\n $row['en'] = $language[0];\r\n $row['bg'] = $language[1];\r\n AddTranslation($row);\r\n $i++;\r\n }\r\n\r\n}", "function SetLang($lang) {\n if (is_dir('lang/' . $lang)) {\n $key = IBC1_PREFIX . '_Language';\n $GLOBALS[$key] = $lang;\n setcookie($key, $lang, time() + 7 * 24 * 60 * 60);\n }\n}", "protected function set_locale() {\n\t\t$objLanguage = new language();\n\n\t\tif ($objLanguage->CheckLocale($this->locale,false) == false) {\n\t\t\t$this->locale = 'en';\n\t\t}\n\t\t$this->showpage();\n\t}", "public static function setLanguage($y_language) {\n\t\t//--\n\t\tglobal $configs;\n\t\t//--\n\t\t$result = false;\n\t\t//--\n\t\t$all_languages = (array) self::getSafeLanguagesArr();\n\t\t//--\n\t\t$tmp_lang = (string) strtolower((string)SmartUnicode::utf8_to_iso((string)$y_language));\n\t\t//--\n\t\tif(is_array($configs)) {\n\t\t\tif(strlen((string)$tmp_lang) == 2) { // if language id have only 2 characters\n\t\t\t\tif(preg_match('/^[a-z]+$/', (string)$tmp_lang)) { // language id must contain only a..z characters (iso-8859-1)\n\t\t\t\t\tif(is_array($all_languages)) {\n\t\t\t\t\t\tif($all_languages[(string)$tmp_lang]) { // if that lang is set in languages array\n\t\t\t\t\t\t\tif((string)$tmp_lang != (string)$configs['regional']['language-id']) { // if it is the same, don't make sense to set it again !\n\t\t\t\t\t\t\t\t$configs['regional']['language-id'] = (string) $tmp_lang;\n\t\t\t\t\t\t\t\tif(Smart::array_size($all_languages[(string)$tmp_lang]) > 0) {\n\t\t\t\t\t\t\t\t\t// set also the rest of regional params if available and set custom for that language ...\n\t\t\t\t\t\t\t\t\tforeach($all_languages[(string)$tmp_lang] as $k => $v) {\n\t\t\t\t\t\t\t\t\t\tif(array_key_exists((string)$k, (array)$configs['regional'])) {\n\t\t\t\t\t\t\t\t\t\t\t//Smart::log_notice('Setting Regional Key for Language: '.$tmp_lang.' as @ '.$k.'='.$v);\n\t\t\t\t\t\t\t\t\t\t\t$configs['regional'][(string)$k] = (string) $v;\n\t\t\t\t\t\t\t\t\t\t} //end if\n\t\t\t\t\t\t\t\t\t} //end foreach\n\t\t\t\t\t\t\t\t} //end if\n\t\t\t\t\t\t\t\tself::$cache['#LANGUAGE#'] = (string) $tmp_lang;\n\t\t\t\t\t\t\t\t$result = true;\n\t\t\t\t\t\t\t\tif(SmartFrameworkRuntime::ifInternalDebug()) {\n\t\t\t\t\t\t\t\t\tif(SmartFrameworkRuntime::ifDebug()) {\n\t\t\t\t\t\t\t\t\t\tSmartFrameworkRegistry::setDebugMsg('extra', '***REGIONAL-TEXTS***', [\n\t\t\t\t\t\t\t\t\t\t\t'title' => 'Set Language in Configs and Internal Cache',\n\t\t\t\t\t\t\t\t\t\t\t'data' => 'Content: '.$the_lang\n\t\t\t\t\t\t\t\t\t\t]);\n\t\t\t\t\t\t\t\t\t} //end if\n\t\t\t\t\t\t\t\t} //end if\n\t\t\t\t\t\t\t} //end if\n\t\t\t\t\t\t} //end if\n\t\t\t\t\t} //end if\n\t\t\t\t} //end if\n\t\t\t} //end if\n\t\t} //end if\n\t\t//--\n\t\treturn (bool) $result;\n\t\t//--\n\t}", "public static function setCookieLanguage($cookie = null)\n {\n }", "function initLang()\n {\n // #61520, 140911, dwildt, 1-\n //require_once(PATH_typo3 . 'sysext/lang/lang.php');\n // #61520, 140911, dwildt, 1+\n $this->init_typo3version();\n\n // #61520, 140911, dwildt, 6+\n if ( $this->typo3Version < 6002000 )\n {\n require_once(PATH_typo3 . 'sysext/lang/lang.php');\n }\n\n $this->pObj->lang = t3lib_div::makeInstance( 'language' );\n $this->pObj->lang->init( $GLOBALS[ 'TSFE' ]->lang );\n if ( $this->pObj->b_drs_localisation )\n {\n t3lib_div::devlog( '[INFO/LOCALISATION] Init a language object.', $this->pObj->extKey, 0 );\n t3lib_div::devlog( '[INFO/LOCALISATION] Value of $GLOBALS[TSFE]->lang :' . $GLOBALS[ 'TSFE' ]->lang, $this->pObj->extKey, 0 );\n }\n }", "function setLanguage($lang) {\r\n\r\n $this->lang = $lang;\r\n }", "function setCalendarLanguage (&$aCalendar)\n{\n global $LANG_WEEK, $LANG_MONTH, $LANG_CAL_2;\n\n $lang_days = array ('sunday' => $LANG_WEEK[1],\n 'monday' => $LANG_WEEK[2],\n 'tuesday' => $LANG_WEEK[3],\n 'wednesday' => $LANG_WEEK[4],\n 'thursday' => $LANG_WEEK[5],\n 'friday' => $LANG_WEEK[6],\n 'saturday' => $LANG_WEEK[7]);\n $lang_months = array ('january' => $LANG_MONTH[1],\n 'february' => $LANG_MONTH[2],\n 'march' => $LANG_MONTH[3],\n 'april' => $LANG_MONTH[4],\n 'may' => $LANG_MONTH[5],\n 'june' => $LANG_MONTH[6],\n 'july' => $LANG_MONTH[7],\n 'august' => $LANG_MONTH[8],\n 'september' => $LANG_MONTH[9],\n 'october' => $LANG_MONTH[10],\n 'november' => $LANG_MONTH[11],\n 'december' => $LANG_MONTH[12]);\n $aCalendar->setLanguage ($lang_days, $lang_months);\n}" ]
[ "0.6739544", "0.63588154", "0.63157517", "0.6301466", "0.6215252", "0.6181063", "0.6165259", "0.61492485", "0.6106414", "0.61019355", "0.60974395", "0.6096908", "0.60547626", "0.6040384", "0.60206133", "0.5952755", "0.5945324", "0.5922699", "0.59092593", "0.58701634", "0.5862908", "0.58484626", "0.5829416", "0.58253676", "0.5820484", "0.5812254", "0.58083594", "0.5790195", "0.5774974", "0.5774466" ]
0.71221185
0
Add a string of HTML to the bar.
function addToBar($side, $html, $position = false) { addToArray($this->bar[$side], $html, $position); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function appendHtml($append) {}", "function addHTML($_code) \n\t{\n\t\t$this->html .= $_code;\t\t\n\t}", "protected function addHtml($string)\n\t{\n\t\t$this->checkIfReady();\n\t\t$this->html .= $string;\n\t}", "public function append(string $html): void ;", "function sc_progress_bars( $attr, $content = null )\n{\n\textract(shortcode_atts(array(\n\t\t'title' => '',\n\t), $attr));\n\n\n\t$output = '<div class=\"progress_bars_wrapper\">';\n\t\tif( $title ) $output .= '<h4 class=\"title\">'. $title .'</h4>';\n\t\t$output .= '<ul class=\"bars_list\">';\n\t\t\t$output .= do_shortcode( $content );\n\t\t$output .= '</ul>';\n\t$output .= '</div>'.\"\\n\";\n\n\treturn $output;\n}", "public function setHtml($value){\n $this->_html = TPropertyValue::ensureString($value);\n }", "public function appendHtml($html){\n $this->htmlAfter = $html;\n }", "public static function bar($width = 0, $htmlOptions = array())\n {\n\n $htmlOptions = self::addClassName('bar', $htmlOptions);\n $style = self::popOption('style', $htmlOptions);\n if (isset($style) && in_array($style, self::$progressStyles)) {\n $htmlOptions = self::addClassName('bar-' . $style, $htmlOptions);\n }\n if ($width < 0) {\n $width = 0;\n }\n if ($width > 100) {\n $width = 100;\n }\n $htmlOptions = self::addStyles(\"width: {$width}%;\", $htmlOptions);\n $content = self::popOption('content', $htmlOptions, '');\n return CHtml::tag('div', $htmlOptions, $content);\n }", "public function setHtml($value = null)\r\n\t{\r\n\t\t$this->content = array();\r\n\t\treturn $this->addHtml($value);\r\n\t}", "public function addCustomHeadTag( $html ) {\n\t\t$this->_head['custom'][] = trim( $html );\n\t}", "public function setHTML($html);", "public function setHtml($var) {\n\t\tdie ('Implement setHtml-method');\n\t}", "public function setTextHtml(string $value)\n {\n $this->textHtml = $value;\n }", "public function formatHtml()\n {\n // convert to an array\n $this->description = json_decode(json_encode($this->description), true);\n\n // replace placeholders\n array_walk_recursive($this->description, function (&$value, $index){\n $value = str_ireplace(\n ['--START_SPAN', '__ENDSPAN__', '--', \"<SoftHyphen/>\", \"<Indent/>\"],\n ['<span', '</span>', '>', null, null],\n $value\n );\n });\n }", "public function display_bar() {\n\t\tif( is_admin() ) return false;\n\n\t\t$is_visible = get_option($this->_token.'notify_visible');\n\t\t\n\t\tif($is_visible) :\n\t\t\t\n\t\t\t$html .= '\n\t\t\t\t<div id=\"mildNotify-bar\">\n\t\t\t\t\t'.get_option($this->_token.'notify_content').'\n\t\t\t\t</div>\n\t\t\t';\n\t\t\t\n\t\t\techo $html;\n\n\t\tendif;\n\t}", "public function surround($html){\n return \"{$this->surrond}>{$html}</{$this->surrond}\";\n}", "function bbm_label_button_html_override( $html ) {\n\t$new_html\t = '<a class=\"bbm-label-button\" title=\"Add/Create Label\" href=\"javascript:void(0)\">';\n\t$new_html\t .= '<span class=\"hida\"><i class=\"fa fa-tag\"></i></span>';\n\t$new_html\t .= '<p class=\"multiSel\"></p></a>';\n\n\treturn $new_html;\n}", "public function getToolbarHTML();", "public function addHeadContent($str)\n\t\t{\n\t\t\tParameter::check(array(\n\t\t\t\t\t\"string\" \t=> $str\n\t\t\t\t), __METHOD__);\n\t\t\t\t\n\t\t\t$this->headExtraContent .= $str;\n\t\t}", "public static function stackedProgressBar($bars, $htmlOptions = array())\n {\n\n if (is_array($bars) && !empty($bars)) {\n $htmlOptions = self::addClassName('progress', $htmlOptions);\n ob_start();\n echo CHtml::openTag('div', $htmlOptions);\n foreach ($bars as $barOptions) {\n $options = self::popOption('htmlOptions', $barOptions, array());\n if (!empty($options)) {\n $barOptions = self::mergeOptions($options, $barOptions);\n }\n $width = self::popOption('width', $barOptions, 0);\n echo self::bar($width, $barOptions);\n }\n echo '</div>';\n return ob_get_clean();\n }\n return '';\n }", "public function append($html)\n {\n $this->title .= $html;\n\n return $this;\n }", "public function addHtml($child)\n\t{\n\t\treturn $this->insert(null, $child);\n\t}", "protected function addText($string)\n\t{\n\t\t$this->checkIfReady();\n\t\t$this->html .= htmlspecialchars($string);\n\t}", "public function addHtml($value)\r\n\t{\r\n\t\tif (!empty($value) || $value == 0)\r\n\t\t\t$this->content[] = $value;\r\n\r\n\t\treturn $this;\r\n\t}", "public function setContent(string $html);", "function add($text)\n\t{\n\t\t$this->xecho($text);\n\t}", "public function append_html() {\n\t\trequire_once ( dirname( __DIR__ ) . '/views/frontend.php' );\n\n\t\twp_enqueue_script( 'wp-to-top', plugins_url( 'wp-to-top/js/wp-to-top.js' ), array( 'jquery' ) );\n\t\twp_localize_script( 'wp-to-top', 'wpToTopVars', array( \n\t\t\t\t'scrollDuration' => esc_attr( get_option( 'wp_to_top_scroll_duration' ) ), \n\t\t) );\n\t}", "public function html($string);", "public function addCustomHtmlToHead(/*string */$html)/*: self*/\n {\n $html = backport_type_check('string', $html);\n\n $this->customHtmlHead .= $html;\n\n return $this;\n }", "function style() {\n\t?>\n\t\t<style type=\"text/css\">#wp-admin-bar-show-git-branch .ab-item:before { content: \"\\f237\"; top: 2px; }</style>\n\t<?php\n\n}" ]
[ "0.6367276", "0.62586534", "0.62545115", "0.6192573", "0.600114", "0.5879365", "0.5847948", "0.5806387", "0.57420105", "0.57085836", "0.56665283", "0.5639285", "0.5622708", "0.55925846", "0.5590123", "0.55100155", "0.54988503", "0.5483946", "0.5479379", "0.54614455", "0.5447532", "0.54373795", "0.5409366", "0.5400942", "0.5395812", "0.53886795", "0.53859", "0.5377487", "0.53751785", "0.53685534" ]
0.6856683
0
Update the user's last action.
function updateLastAction($action) { if (!$this->user) return false; $this->callHook("updateLastAction", array(&$action)); global $config; $action = $this->db->escape(substr($action, 0, 255)); $query = "UPDATE {$config["tablePrefix"]}members SET lastAction='$action', lastSeen=" . time() . " WHERE memberId={$this->user["memberId"]}"; $this->user["lastSeen"] = $_SESSION["user"]["lastSeen"] = time(); $this->user["lastAction"] = $_SESSION["user"]["lastAction"] = $action; $this->db->query($query); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function _update_last_action($user_id)\n {\n $this->cgit_auth_model->set_last_action($user_id);\n }", "public function updateLastActionTime()\n {\n \n $currentTime = time();\n $affectedRows = 0;\n \n $command = Yii::app()->db->createCommand('\n SELECT id \n FROM user_login \n WHERE user_id=?\n ');\n $rowId = $command->queryScalar(array(1=>$this->id));\n if ( $rowId ) {\n $command = Yii::app()->db->createCommand('\n UPDATE user_login \n SET last_action_time= :currentTime, user_agent= :userAgent\n WHERE user_id= :userId\n ');\n $affectedRows = $command->execute(array(\n 'userId' => $this->id,\n 'currentTime' => $currentTime,\n 'userAgent' => $_SERVER['HTTP_USER_AGENT'],\n ));\n } else {\n\n $command = Yii::app()->db->createCommand('\n INSERT INTO user_login (user_id,last_action_time,user_agent) \n VALUE (:userId, :currentTime, :userAgent)\n ');\n $affectedRows = $command->execute(array(\n 'userId' => $this->id,\n 'currentTime' => $currentTime,\n 'userAgent' => $_SERVER['HTTP_USER_AGENT'],\n ));\n }\n\n return $affectedRows;\n }", "function update_last_activity() {\n\t\t$update = new ElUser;\n\t\t$update->update_last_activity();\n}", "public function updateUserLastAccess()\n {\n $user = Doctrine::getTable('User')->find($this->getUserId());\n if ($user)\n {\n // not using the date formatter because this method can be called before the formatter exists\n $user->setLastAccessAt(date('Y-m-d H:i:s'));\n $user->save();\n }\n }", "public function updateLastAction($posted = null) {\n\t\t$posted = _elgg_services()->entityTable->updateLastAction($this, $posted);\n\t\tif ($posted) {\n\t\t\t$this->attributes['last_action'] = $posted;\n\t\t\t_elgg_services()->entityCache->set($this);\n\t\t\t$this->storeInPersistedCache(_elgg_get_memcache('new_entity_cache'));\n\t\t}\n\t\treturn $posted;\n\t}", "public function getLastActionByUserId()\n {\n if (array_key_exists(\"lastActionByUserId\", $this->_propDict)) {\n return $this->_propDict[\"lastActionByUserId\"];\n } else {\n return null;\n }\n }", "public function updateLastActive() {\n\t\t$this -> setData(\"lastActive\", date(\"Y-m-d H:i:s\"));\n\t}", "public function updateLastActivity($userId = null) {\n\t\tif (!empty($userId)) {\n\t\t\t$this->id = $userId;\n\t\t}\n\t\tif ($this->exists()) {\n\t\t\treturn $this->saveField('last_action', date('Y-m-d H:i:s', time()));\n\t\t}\n\t\treturn false;\n\t}", "public function update_activity_time () {\n # update\n try { $this->Database->updateObject(\"users\", array(\"lastActivity\"=>date(\"Y-m-d H:i:s\"), \"id\"=>$this->user->id)); }\n catch (Exception $e) { }\n }", "public function updateLastActive()\n\t{\n\t\t$this->lastActive = date('Y-m-d H:i:s');\n\t\t$this->save();\n\t}", "public function updateLastInteractionMoment();", "public function onAfterWrite() {\n\t\t$instance = $this->getWorkflowInstance();\n\t\tif ($instance && $instance->CurrentActionID) {\n\t\t\t$action = $instance->CurrentAction()->BaseAction()->targetUpdated($instance);\n\t\t}\n\t}", "public function lastUpdate()\n {\n DB::table('topics')\n ->where('topic_id', $this->id)\n ->update(['topic_last_reply' => time()]);\n }", "public function getLastAction() {\n\t\t$action = get_option( 'wpfc_sm_dates_last_action', SM_DATES_NONE );\n\n\t\tif ( $action !== SM_DATES_NONE ) {\n\t\t\tif ( ! is_numeric( $action ) ) {\n\t\t\t\treturn $this->getAction( $action );\n\t\t\t}\n\t\t}\n\n\t\treturn $action;\n\t}", "public function makeUnActive()\n {\n \n $command = Yii::app()->db->createCommand('\n UPDATE user_login \n SET last_action_time= :oldTime\n WHERE (user_id= :userId)\n ');\n return $command->execute(array(\n 'userId' => $this->id,\n 'oldTime' => 1,\n ));\n }", "public function lastAction()\n\t{\n\t\treturn null;\n\t}", "public function setLastActionByUserId($val)\n {\n $this->_propDict[\"lastActionByUserId\"] = $val;\n return $this;\n }", "public static function update_user_activity($request) {\n if ($request && $request->token && $request->token->token_type == \"access\") {\n Db::execute(\"\n update user set last_login=now()\n where user_id='\".Db::escape_string($request->token->user_id).\"'\n \");\n }\n }", "function bbp_update_user_last_posted($user_id = 0, $time = 0)\n{\n}", "public function requestedAction()\r\n\t{\r\n\t\treturn $this->m_last_action;\r\n\t}", "protected function afterAction($action)\n {\n // Remember last visited URL\n if (($this->getId() !== 'auth') && (!\\yii::app()->request->isAjaxRequest)) {\n \\yii::app()->user->setState('last-visited-url', \\yii::app()->request->url);\n }\n\n parent::afterAction($action);\n }", "public function getLastUpdate();", "function update_lastmod() {\n\t\tglobal $config;\n\t\t$config_name = $this->options['action_type'] . '_' . (!empty($this->options['module_main']) ? $this->options['module_main'] . '_' : '') . 'last_mod_time';\n\t\t$config_value = $this->outputs['last_mod_time'] > $config['board_startdate'] ? $this->outputs['last_mod_time'] : $this->outputs['time'];\n\t\tset_config($config_name, $config_value, 1);\n\n\t\treturn;\n\t}", "protected function postprocessSuccessActionUpdate()\n {\n \\XLite\\Core\\TopMessage::addInfo('Profile has been updated successfully');\n }", "function fua_force_last_activity_meta() {\nglobal $wpdb;\n\t\n\tif( !is_super_admin() )\n\t\treturn;\n\t\n\tif( isset($_GET['action']) && $_GET['action'] == 'force-active' ) {\n\n\t\t\n\t\t$sql = \"SELECT `ID` FROM {$wpdb->users}\";\n\t\t$fua_user_ids = $wpdb->get_col($sql);\n\t\n\t\tforeach($fua_user_ids as $fua_user_id){\n\t\n\t\t$last_activity_exists = BP_Core_User::get_last_activity( $fua_user_id );\n\n\t\n\t\t\tif( count($last_activity_exists) <= 1 ) {\n\t\t\t\tbp_update_user_last_activity($fua_user_id, date('Y-m-d H:i:s') );\n\t\t\t\t// Lets try and get a different time stamp for each entry\n\t\t\t\tsleep(2);\t\n\t\t\t} \n\t\t} // close foreach\n\t} // close get action\n\n}", "public function trackUserAction($action){\n\t\t$userObj = $this->getUserObj();\n\t\tif($userObj){\n\t\t\tnc_analytic::send(array(\n\t\t\t\t\"appname\"=>STATUS == \"live\" ? APP_NAMESPACE : APP_NAMESPACE.\"_staging\",\n\t\t\t\t\"method\"=>\"userAction\",\n\t\t\t\t\"param\"=>array(\n\t\t\t\t\t\"fbid\"=>$userObj[\"fbid\"],\n\t\t\t\t\t\"email\"=>$userObj[\"email\"],\n\t\t\t\t\t\"action\"=>$action\n\t\t\t\t)\n\t\t\t));\n\t\t}\n\t}", "public function setLastActionDateTime(?DateTime $value): void {\n $this->getBackingStore()->set('lastActionDateTime', $value);\n }", "public function update_user() {\r\n \r\n }", "protected function postUpdate() {\r\n\t\tparent::postUpdate();\r\n\t\t$loggedUser = Common::getLoggedUser();\r\n\t\tif ($loggedUser) {\r\n\t\t\tif (get_class($loggedUser) == \"User\")\r\n\t\t\t\t$this->forwardName = \"success\";\r\n\t\t\telse\r\n\t\t\t\t$this->forwardName = \"success-edit\";\r\n\t\t} else $this->performRegistration();\r\n\t}", "function afterFilter() {\n if ($this->Auth->user()) {\n $this->loadModel('User');\n $this->User->id = $this->Auth->user('id');\n $this->User->saveField('last_access', date('Y-m-d H:i:s'));\n }\n }" ]
[ "0.7966275", "0.75405794", "0.7196833", "0.7162736", "0.6699882", "0.6566463", "0.6512712", "0.64602154", "0.6369401", "0.6359141", "0.6348086", "0.6318296", "0.6247954", "0.61497176", "0.61252064", "0.6124012", "0.6121109", "0.6116442", "0.5996892", "0.596994", "0.59554315", "0.58677655", "0.586744", "0.5842649", "0.5820936", "0.57864606", "0.57730347", "0.57601464", "0.5737423", "0.57333887" ]
0.79552597
1
Change a member's group.
function changeMemberGroup($memberId, $newGroup, $currentGroup = false) { global $config; $memberId = (int)$memberId; // Make sure we have the member's current group (if it wasn't passed as an argument.) if (!$currentGroup) $currentGroup = $this->db->result($this->db->query("SELECT account FROM {$config["tablePrefix"]}members WHERE memberId=$memberId"), 0); // Determine which groups the member can be changed to. if (!($possibleGroups = $this->canChangeGroup($memberId, $currentGroup)) or !in_array($newGroup, $possibleGroups)) return false; $this->callHook("changeMemberGroup", array(&$newGroup)); // Change the group! $this->db->query("UPDATE {$config["tablePrefix"]}members SET account='$newGroup' WHERE memberId=$memberId"); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setGroup($group) {\n chgrp($this->__full_path, $group);\n }", "public function setGroup( Group $group ) {\n posix_setgid( $group->id );\n }", "public function setGroup($value) {}", "function set_group($name, $group)\n {\n clearos_profile(__METHOD__, __LINE__);\n\n Validation_Exception::is_valid($this->validate_group($group));\n\n $this->_set_parameter($name, 'ShareGroup', $group);\n }", "public static function setGroup($id, $group){\n global $db, $database;\n return $db->query('Update '.$database['tbl_prefix'].'dev_users SET groups = ? where id = ?', DBDriver::QUERY, array($group, $id));\n\t}", "function group($group){\n\t\t\t$this->group = $group;\n\t\t}", "public function setGroup($value)\n {\n $this->setProperty(\"Group\", $value, true);\n }", "function on_group_change( $id, $new_group )\n\t{\n\t\tglobal $DB, $std, $ibforums;\n\t\t\n\t\t//---- START\n\t\t\n\t\t\n\t\t//---- END\n\t}", "function setMemberToGroup($mysqli, $username, $groupName){\n //find userID\n $result = $mysqli->query(\"SELECT UID FROM User_ WHERE Username='\".$username.\"';\");\n $first_row = mysqli_fetch_row($result);\n\n if(is_bool($first_row[0])){\n return 'setMemberToGroup: User with username '.$username.' does not exist';\n }\n\n //find GroupID\n $result2 = $mysqli->query(\"SELECT GroupID FROM Group_ WHERE GroupName='\".$groupName.\"';\");\n $first_row_2 = mysqli_fetch_row($result2);\n\n if(is_bool($first_row_2[0])){\n return 'setMemberToGroup: Group with group name '.$groupName.' does not exist.';\n }\n\n $mysqli->query(\"UPDATE Is_Member_Group SET requestStatus='member' WHERE UID=\".$first_row[0].\" AND GroupID=\".$first_row_2[0].\";\");\n return 'setMemberToGroup: '.$mysqli->error;\n }", "public function setGroupId($newVal)\r\n {\r\n $this->_groupId = $newVal;\r\n return $this;\r\n }", "function change_identity_group_name($telegram_id, $group_name = NULL) {\n $group_name_db = is_null($group_name) ? 'NULL' : \"'\" . db_escape($group_name) . \"'\";\n\n return db_perform_action(\"UPDATE `identity` SET `group_name` = {$group_name_db} WHERE `identity`.`telegram_id` = {$telegram_id}\");\n}", "function setMemberToGroupID($mysqli, $username, $groupID){\n //find userID\n $result = $mysqli->query(\"SELECT UID FROM User_ WHERE Username='\".$username.\"';\");\n $first_row = mysqli_fetch_row($result);\n\n if(is_bool($first_row[0])){\n return 'setMemberToGroup: User with username '.$username.' does not exist';\n }\n\n $mysqli->query(\"UPDATE Is_Member_Group SET requestStatus='member' WHERE UID=\".$first_row[0].\" AND GroupID=\".$groupID.\";\");\n return 'setMemberToGroup: '.$mysqli->error;\n }", "public function setGroup(?Group $value): void {\n $this->getBackingStore()->set('group', $value);\n }", "public function setGroup(?Group $value): void {\n $this->getBackingStore()->set('group', $value);\n }", "function chgrp ($filename, $group) {}", "public function changeGroup(Permittable $permittable, $group='') : Bool\n\t{\n\t\tif (!function_exists('chgrp')) {\n\t\t\treturn false;\n\t\t}\n\n\t\tchgrp(\n\t\t\t$permittable->getPermitted(),\n\t\t\t$group\n\t\t);\n\n\t\treturn true;\n\t}", "public function updateGroup(Group $userGroup);", "public function changegroupmemberprivilegeAction() {\n if ($this->getRequest()->isPost()) {\n $userId = $_POST['userId'];\n $groupId = $_POST['groupId'];\n $privilege = $_POST['privilege'];\n $groupTable = $this->_helper->db->getTable(\"InciteGroup\");\n $groupsUsersTable = $this->_helper->db->getTable('InciteGroupsUsers');\n\n $group = $groupTable->findGroupById($groupId);\n $groupUser = $groupsUsersTable->findGroupUserByUserAndGroupIds($userId, $groupId);\n\n //prevent non group owners from changing people's privilege levels to banned or added\n if (($privilege == 0 || $privilege == -2) && $_SESSION['Incite']['USER_DATA']['id'] != $group['creator_id']) {\n echo false;\n return;\n }\n $groupUser->group_privilege = $privilege;\n $groupUser->save();\n\n echo json_encode('true');\n }\n }", "public function group(string $group);", "public function testUpdateGroupsOfUser()\n {\n }", "function group($group = '') {\n\t\t$this->_group = $group;\n\t\treturn $this;\n\t}", "public function setGroup($id);", "function xprofile_admin_manage_group( $group_id = null ) {\n\tglobal $message, $type;\n\n\t$group = new BP_XProfile_Group( $group_id );\n\n\tif ( isset( $_POST['save_group'] ) ) {\n\t\tif ( BP_XProfile_Group::admin_validate( $_POST ) ) {\n\t\t\t$group->name\t\t= wp_filter_kses( $_POST['group_name'] );\n\t\t\t$group->description\t= !empty( $_POST['group_description'] ) ? wp_filter_kses( $_POST['group_description'] ) : '';\n\n\t\t\tif ( !$group->save() ) {\n\t\t\t\t$message = __( 'There was an error saving the group. Please try again', 'buddypress' );\n\t\t\t\t$type = 'error';\n\t\t\t} else {\n\t\t\t\t$message = __( 'The group was saved successfully.', 'buddypress' );\n\t\t\t\t$type = 'success';\n\n\t\t\t\tif ( 1 == $group_id )\n\t\t\t\t\tbp_update_option( 'bp-xprofile-base-group-name', $group->name );\n\n\t\t\t\tdo_action( 'xprofile_groups_saved_group', $group );\n\t\t\t}\n\n\t\t\tunset( $_GET['mode'] );\n\t\t\txprofile_admin( $message, $type );\n\n\t\t} else {\n\t\t\t$group->render_admin_form( $message );\n\t\t}\n\t} else {\n\t\t$group->render_admin_form();\n\t}\n}", "public function manageGroup($group_id);", "public function setGroup($value)\n\t{\n\t\t$this->group = $value;\n\t\treturn $this;\n\t}", "public function addGroupMember($groupName, $uid);", "function setGroupPrivilege()\n {\n $groupPriv = RowManager_AccountAdminAccessManager::PRIVILEDGE_GROUP;\n $this->setValueByFieldName( 'accountadminaccess_privilege', $groupPriv);\n }", "public function group($group);", "function changeGroupName($mysqli, $groupID, $newGroupName){\n $mysqli->query(\"UPDATE Group_ SET GroupName='\".$newGroupName.\"' WHERE GroupID=\".$groupID.\";\");\n }", "public function setGroup($val)\n {\n $this->_propDict[\"group\"] = $val;\n return $this;\n }" ]
[ "0.70985", "0.6991506", "0.6893598", "0.6812862", "0.6672569", "0.664924", "0.66424763", "0.6577355", "0.6509977", "0.64665854", "0.64481866", "0.64119524", "0.638871", "0.638871", "0.63848877", "0.63526237", "0.63342315", "0.6289724", "0.6286185", "0.6282503", "0.6276453", "0.627623", "0.62700355", "0.62675464", "0.6224345", "0.62088466", "0.6207078", "0.6198593", "0.6190239", "0.6180656" ]
0.727571
0
To change $member's group $this>user must be an admin and $member != rootAdmin and $member != $this>user. If $this>user is a moderator and $member's $group is member or suspended, the group can be changed between member/suspended. This function will return an array of groups $member can be changed to.
function canChangeGroup($memberId, $group) { global $config; if (!$this->user or !$this->user["moderator"] or $memberId == $this->user["memberId"] or $memberId == $config["rootAdmin"]) return false; if ($this->user["admin"]) return $this->memberGroups; if ($this->user["moderator"] and ($group == "Member" or $group == "Suspended")) return array("Member", "Suspended"); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function _get_members_groups($member)\n {\n if ($member == $this->get_guest_id()) {\n return array($this->get_member_row_field($member, 'groupid'));\n }\n\n $groups = $this->connection->query_select('user2groups', array('groupid'), array('userid' => $member));\n $out = array();\n foreach ($groups as $group) {\n $out[] = $group['groupid'];\n }\n $p = $this->get_member_row_field($member, 'groupid');\n if (!in_array($p, $out)) {\n $out[] = $p;\n }\n\n return $out;\n }", "protected function _get_members_groups($member)\n {\n if ($member == $this->get_guest_id()) {\n return array(0);\n }\n\n $additional = $this->get_member_row_field($member, 'additionalGroups');\n if ($additional != '') {\n $usergroups = explode(',', $additional);\n } else {\n $usergroups = array();\n }\n $primary_group = $this->get_member_row_field($member, 'ID_GROUP');\n if ($primary_group != 0) {\n $usergroups[] = $primary_group;\n }\n $usergroups[] = $this->get_member_row_field($member, 'ID_POST_GROUP');\n return $usergroups;\n }", "function get_memeber_groups( $member_id ) {\r\n global $wpdb;\r\n $results = $wpdb->get_results( $wpdb->prepare( \"SELECT group_id FROM {$this->tb_prefix}enewsletter_member_group WHERE member_id = %d\", $member_id ), \"ARRAY_A\");\r\n foreach( $results as $group ){\r\n $groups[] = $group['group_id'];\r\n }\r\n return $groups;\r\n }", "function changeMemberGroup($memberId, $newGroup, $currentGroup = false)\n{\n\tglobal $config;\n\t$memberId = (int)$memberId;\n\t\n\t// Make sure we have the member's current group (if it wasn't passed as an argument.)\n\tif (!$currentGroup) $currentGroup = $this->db->result($this->db->query(\"SELECT account FROM {$config[\"tablePrefix\"]}members WHERE memberId=$memberId\"), 0);\n\t\n\t// Determine which groups the member can be changed to.\n\tif (!($possibleGroups = $this->canChangeGroup($memberId, $currentGroup)) or !in_array($newGroup, $possibleGroups)) return false;\n\t\n\t$this->callHook(\"changeMemberGroup\", array(&$newGroup));\n\t\n\t// Change the group!\n\t$this->db->query(\"UPDATE {$config[\"tablePrefix\"]}members SET account='$newGroup' WHERE memberId=$memberId\");\n}", "protected function _get_moderator_groups()\n {\n return collapse_1d_complexity('groupid', $this->connection->query('groups', array('groupid'), array('securitylevel' => 3)));\n }", "protected function _get_moderator_groups()\n {\n return array(2);\n }", "public function getGroups($uid){\n // get all group ids where the user is member\n $sqlGroupids = 'SELECT groupid FROM `'.$this->tableMember.'`\n WHERE `userid` = ?';\n $uidPara = array($uid);\n $result = $this->execute($sqlGroupids,$uidPara);\n \n $selectedGroupids=array();\n // extract groupid from the db query and save it\n while($row = $result->fetchRow()){\n if(!in_array($row['groupid'],$selectedGroupids)){\n array_push($selectedGroupids,$row['groupid']);\n }\n }\n // prepare sql state to get every group information\n $sql = 'SELECT * FROM `'.$this->tableGroup.'` \n WHERE `groupid` = ?';\n $group = array();\n // get each group with the extracted groupid\n foreach($selectedGroupids as $groupid){\n $params = array($groupid);\n $result = $this->execute($sql,$params);\n $resultRow = $result->fetchRow();\n //check if there is a group with this id\n //if there is one than great a group and add it to the group array\n if($resultRow['groupid']==$groupid){\n $entity = new Group($resultRow);\n $entity = $this->addMembersToGroup($entity); \n array_push($group,$entity);\n }\n }\n return $group;\n }", "public function getMemberProfileGroups() {\n\t\t$groupIds = array();\n\t\t$groups = $this->owner->Groups()->column('ID');\n\t\tif (!empty($groups)) {\n\t\t\tforeach ($groups as $groupId) {\n\t\t\t\t$groupIds[] = $groupId;\n\t\t\t}\n\t\t\treturn $groupIds;\n\t\t}\n\t\treturn false;\n\t}", "public function getClickBankMemberGroups() {\n\t\t$groupIds = array();\n\t\t$groups = $this->owner->ClickBankGroups()->column('ID');\n\t\tif (!empty($groups)) {\n\t\t\tforeach ($groups as $groupId) {\n\t\t\t\t$groupIds[] = $groupId;\n\t\t\t}\n\t\t\treturn $groupIds;\n\t\t}\n\t\treturn false;\t\t\n\t}", "public function validateGroups(Member $member = null)\n {\n // If groups are attached to the discount, check if valid\n if ($this->Groups()->exists()) {\n if (empty($member)) {\n return false;\n } else {\n $validGroups = $this->Groups()->column('ID');\n $groupMembers = Member::get()->filter('Groups.ID:ExactMatchMulti', $validGroups)->map('ID', 'Title');\n\n echo \"<pre>\";\n print_r($groupMembers);\n echo \"</pre>\";\n exit();\n }\n }\n\n return true;\n }", "public function remove_member_from_group($member, $group_id)\n {\n $additional = $this->get_member_row_field($member, 'additionalGroups');\n if ($additional != '') {\n $usergroups = explode(',', $additional);\n } else {\n $usergroups = array();\n }\n $usergroups = array_diff($usergroups, array(strval($group_id)));\n $this->connection->query_update('members', array('additionalGroups' => implode(',', $usergroups)), array('ID_MEMBER' => $member));\n }", "public static function getGrouped($group, $only_active = true, $order=['name' => 'ASC']) {\r\n \r\n $members = array();\r\n \r\n if(!in_array($group, self::$accepted_group_options)){\r\n $group = self::$accepted_group_options[0];\r\n }\r\n \r\n if($only_active){\r\n \t$members_array = self::getWhere(['status'=>'default'],$order);\r\n }else{\r\n \t$members_array = self::getAll($order);\r\n }\r\n \r\n foreach($members_array as $member){\r\n $members[$member->$group][] = $member;\r\n }\r\n \r\n return $members;\r\n }", "function group_members($groups) {\n if(!is_array($groups))\n $groups=explode(\";\", $groups);\n\n if(sizeof($groups)>1) {\n $ret=array();\n\n foreach($groups as $group) {\n\t$list = $this->group_members($group);\n\n\tif(is_array($list))\n\t $ret = array_merge($ret, $list);\n }\n\n return $ret;\n }\n\n $group = $groups[0];\n if(isset($this->config['groups']) &&\n isset($this->config['groups'][$group])) {\n $conf_group=$this->config['groups'][$group];\n\n if(is_string($conf_group)) {\n\treturn $this->group_members($conf_group);\n }\n\n if(is_array($conf_group)) {\n\t$ret=array();\n\tforeach($conf_group as $g)\n\t $ret=array_merge($ret, $this->group_members($g));\n\n\treturn $ret;\n }\n\n return array();\n }\n\n if(preg_match(\"/^&(.*)@(.*)$/\", $group, $m)) {\n foreach($this->domains() as $d=>$domain_object) {\n\tif(($m[2] === null) || ($d == $m[2])) {\n\t $members=$domain_object->group_members($m[1]);\n\n\t if(!$members)\n\t return array();\n\n\t foreach($members as $i=>$m)\n\t $members[$i]=\"{$m}@{$d}\";\n\n return $members;\n\t}\n }\n }\n\n if(preg_match(\"/^(.*)@(.*)$/\", $group, $m)) {\n if($m[1] == \"*\") {\n\tif(!array_key_exists($m[2], $this->domains))\n\t return array();\n\n\t$members = $this->domains[$m[2]]->users();\n\n\tif(!$members)\n\t return array();\n\n\tforeach($members as $i=>$member)\n\t $members[$i]=\"{$member}@{$m[2]}\";\n\n\treturn $members;\n }\n else\n\treturn array($group);\n }\n\n return array();\n }", "protected function _get_usergroup_list()\n {\n return array(0 => do_lang('GUESTS')) + collapse_2d_complexity('ID_GROUP', 'groupName', $this->connection->query_select('membergroups', array('ID_GROUP', 'groupName')));\n }", "protected function getUserGroups()\n {\n global $xoopsUser;\n\n $groups = $xoopsUser ? $xoopsUser->getGroups() : XOOPS_GROUP_ANONYMOUS;\n\n return $groups;\n }", "function permGetGroups()\n\t{\n\t\t$db = &singleton('database');\n\t\t$perms = array();\n\t\t\n\t\t$result = $db->query('SELECT g.group_id, g.group_name, g.group_access_mask, p.perm_access_mask '.\n\t\t'FROM '.DB_PREFIX.'groups g LEFT JOIN '.DB_PREFIX.'local_masks p '.\n\t\t'ON p.perm_page_id = '.$this->page['page_id'].' AND p.perm_group_id = g.group_id '.\n\t\t'ORDER BY g.group_id');\n\t\t\n\t\twhile($row = $db->fetch($result))\n\t\t{\n\t\t\t$row['group_name'] = htmlentities($row['group_name']);\n\t\t\t$perms[$row['group_id']] = $row;\n\t\t}\n\t\t\n\t\treturn $perms;\n\t}", "public function modify_instance_groups($opt = null)\n\t{\n\t\tif (!$opt) $opt = array();\n\n\t\t// Optional parameter\n\t\tif (isset($opt['InstanceGroups']))\n\t\t{\n\t\t\t$opt = array_merge($opt, CFComplexType::map(array(\n\t\t\t\t'InstanceGroups' => $opt['InstanceGroups']\n\t\t\t), 'member'));\n\t\t\tunset($opt['InstanceGroups']);\n\t\t}\n\n\t\treturn $this->authenticate('ModifyInstanceGroups', $opt, $this->hostname);\n\t}", "public function groups()\n {\n $result = array();\n foreach ($this->settings['groups'] as $group) {\n $value = $this->redis->get($this->settings['prefix'] . $group);\n if (!$value) {\n $value = 1;\n $this->redis->set($this->settings['prefix'] . $group, $value);\n }\n $result[] = $group . $value;\n }\n return $result;\n }", "private function getAllGroupGroups($group) {\r\n\t\treturn $this->getCNList($this->groupDN($group), 'member', 'groups');\r\n\t}", "function alterGroupsRun (&$db, &$u, &$arg, &$t ) {\n\t\t$this->presentor=\"debug\";\n\n\t\t$userList = lcUser::getListByPkey(array_keys($u->sessionvars['user_collection']));\n\n\t\t\twhile ( list($x, $user) = @each($userList) ) {\n\t\t\t\treset ($arg->postvars[groups]);\n\t\t\t\tunset($newGroups);\n\n\t\t\t\tif ($arg->postvars['groupAct'] == 'add') {\n\t\t\t\t\twhile ( list ($k,$v) = @each($arg->postvars[groups]) ) {\n\t\t\t\t\t\t$user->groups[] = $v;\n\t\t\t\t\t}\n\t\t\t\t\t$user->update();\n\t\t\t\t}\n\t\t\t\tif ($arg->postvars['groupAct'] == 'del') {\n\t\t\t\t\t$user->groups = array_diff($user->groups,$arg->postvars[groups]);\n\t\t\t\t\t$user->update();\n\t\t\t\t}\n\n\t\t\t}\n\t\t\n\t\tunset($u->sessionvars['user_collection']);\n\t\t$u->saveSession();\n\t\theader(\"Location: \"._APP_URL.\"users\");\n\t\texit();\n\t}", "public function GetGroups()\n {\n global $config;\n\n $authz = $this->GetAuthz();\n $result = [];\n\n if (!isset($authz['groups']))\n {\n return $result;\n }\n\n foreach($authz['groups'] as $group => $users)\n {\n if ($group == $config['svn_default_group'])\n {\n continue;\n }\n\n $g = new \\Models\\SvnGroup();\n $g->Name = $group;\n $g->Members = ($users != '' ? explode(',', $users) : []);\n\n ksort($g->Members);\n\n $result[] = $g;\n }\n\n return $result;\n }", "function get_grouplist(){\n\t\t$context = context_course::instance($this->courseid);\n\t\t$groups = groups_get_all_groups($this->courseid);\n\t\t//If they are an admin, let them see all the groups\n\t\tif($context && has_capability('block/homework:seeallgroups', $context) ){\n\t\t\treturn $groups;\n\t\t }else{\n\t\t\t//this user's groups\n\t\t\t$grouping = groups_get_user_groups($this->courseid, $this->userid);\n\t\t\tif($grouping && count($grouping)>0){\n\t\t\t\t$returngroups = array();\n\t\t\t\tforeach($grouping[0] as $gpid=>$gpval){\n\t\t\t\t\t$returngroups[] = $groups[$gpval];\n\t\t\t\t}\n\t\t\t\treturn $returngroups;\n\t\t\t\n\t\t\t}else{\n\t\t\t\treturn array();\n\t\t\t}\n\t\t}\n\t}", "public function getUserGroups( $uid ) {\n return array('group1', 'group2');\n }", "private function mutateGroup($group, $mutationBuilder)\n {\n if (\n ! $group->id\n || count($mutationBuilder->groups) == 0\n || ! array_key_exists($group->id, $mutationBuilder->groups)\n ) {\n return $group;\n }\n\n $groupsMutations = array_wrap($mutationBuilder->groups[$group->id]);\n\n foreach ($groupsMutations as $callback) {\n $callback($group);\n }\n\n return $group;\n }", "public function getUserGroups()\n {\n return $this->xoops()->isUser() ? $this->xoops()->user->getGroups() : XOOPS_GROUP_ANONYMOUS;\n }", "function manageMediawikiGroupsForUser(User $mediawiki_user, PFUser $tuleap_user, Group $group) {\n $groups_mapper = new MediawikiUserGroupsMapper(new MediawikiDao(), new User_ForgeUserGroupPermissionsDao());\n $mediawiki_groups = $groups_mapper->defineUserMediawikiGroups($tuleap_user, $group);\n\n foreach ($mediawiki_groups['removed'] as $group_to_remove) {\n $mediawiki_user->removeGroup($group_to_remove);\n }\n\n foreach ($mediawiki_groups['added'] as $group_to_add) {\n $mediawiki_user->addGroup($group_to_add);\n }\n\n return $mediawiki_user;\n}", "public function listAll($member = null)\n {\n if (!is_null($member)) {\n return $this->listGroups($member);\n }\n\n $attr = $this->_params['gid'];\n try {\n $search = $this->_ldap->search($this->_params['basedn'],\n $this->_filter,\n array($attr));\n } catch (Horde_Ldap_Exception $e) {\n throw new Horde_Group_Exception($e);\n }\n\n $entries = array();\n foreach ($search->sortedAsArray(array($attr)) as $entry) {\n $entries[$entry['dn']] = $entry[$attr][0];\n }\n return $entries;\n }", "public function modifyYearGroups($member)\n {\n $validRoles = $member->roles->filter(function (Role $role) {\n return $role->permissions->has(Permissions::PERMISSIONS['ADMINISTRATOR']);\n });\n\n if ($validRoles->count() === 0) {\n return false;\n }\n\n return true;\n }", "function getUgroupsAllowedForTable($groupId) {\n $res = ugroup_db_get_existing_ugroups($groupId, array($GLOBALS['UGROUP_PROJECT_MEMBERS'],\n $GLOBALS['UGROUP_PROJECT_ADMIN']));\n $ugroups = array();\n while($row = db_fetch_array($res)) {\n $r = array();\n $r['value'] = $row['ugroup_id'];\n $r['text'] = util_translate_name_ugroup($row['name']);\n $ugroups[] = $r;\n }\n\n return $ugroups;\n }", "protected function get_group_member_ids() {\n\t\tglobal $wpdb;\n\n\t\tif ( is_array( $this->group_member_ids ) ) {\n\t\t\treturn $this->group_member_ids;\n\t\t}\n\n\t\t$bp = buddypress();\n\t\t$sql = array(\n\t\t\t'select' => \"SELECT user_id FROM {$bp->groups->table_name_members}\",\n\t\t\t'where' => array(),\n\t\t\t'orderby' => '',\n\t\t\t'order' => '',\n\t\t\t'limit' => '',\n\t\t);\n\n\t\t/** WHERE clauses *****************************************************/\n\n\t\t// Group id\n\t\t$sql['where'][] = $wpdb->prepare( \"group_id = %d\", $this->query_vars['group_id'] );\n\n\t\tif ( false === $this->query_vars['is_confirmed'] ) {\n\t\t\t$sql['where'][] = $wpdb->prepare( \"is_confirmed = %d\", (int) $this->query_vars['is_confirmed'] );\n\t\t}\n\n\t\t// Join the query part\n\t\t$sql['where'] = ! empty( $sql['where'] ) ? 'WHERE ' . implode( ' AND ', $sql['where'] ) : '';\n\n\t\t/** ORDER BY clause ***************************************************/\n\t\t$sql['orderby'] = \"ORDER BY date_modified\";\n\t\t$sql['order'] = \"DESC\";\n\n\t\t/** LIMIT clause ******************************************************/\n\t\t$this->group_member_ids = $wpdb->get_col( \"{$sql['select']} {$sql['where']} {$sql['orderby']} {$sql['order']} {$sql['limit']}\" );\n\n\t\treturn $this->group_member_ids;\n\t}" ]
[ "0.69673264", "0.67245793", "0.6477474", "0.6247637", "0.61651284", "0.60751665", "0.59242356", "0.5866127", "0.5816783", "0.5761448", "0.5713848", "0.5611651", "0.5605887", "0.55816627", "0.5482594", "0.54520345", "0.5444551", "0.54251266", "0.53855824", "0.537243", "0.5367838", "0.5359396", "0.53304034", "0.5322982", "0.5316905", "0.53047615", "0.52796644", "0.52714616", "0.526186", "0.52528703" ]
0.71920186
0
Returns whether or not the logged in user is suspended.
function isSuspended() { global $config; if (!$this->user) return false; // If the user's suspension is unknown, get it from the database and cache it for later. if ($this->user["suspended"] !== true and $this->user["suspended"] !== false) { $account = $this->db->result("SELECT account FROM {$config["tablePrefix"]}members WHERE memberId={$this->user["memberId"]}", 0); $this->user["account"] = $_SESSION["user"]["account"] = $account; $this->user["suspended"] = $account == "Suspended"; } return $this->user["suspended"]; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function isSuspended()\n {\n return BackendAuth::findThrottleByUserId($this->id)->checkSuspended();\n }", "public function isSuspended(): bool\n {\n return Conversion::toBool($this->getConfig('suspended'));\n }", "public function isSuspended()\n\t\t{\n\t\t\treturn $this->getStatus() === Status::SUSPENDED;\n\t\t}", "public function isSuspended()\n {\n return $this->isSuspended;\n }", "public function getIsSuspended(): bool {\r\n return $this->isSuspended;\r\n }", "public function isSuspended(): bool;", "public function getSuspended()\n {\n return $this->suspended;\n }", "public function getSuspended()\n {\n return $this->Suspended;\n }", "public function isUserActive() {\n\t\treturn $this->isSessionuserActive();\n\t}", "private function isActived(){\n $user = $this->getUser();\n return $user->activedMe ? true : false;\n }", "public static function getCheckUseSuspend() \n\t{ \n\t\treturn (boolean)self::get('check_use_suspend');\n\t}", "function suspended() {\n return ccephp_suspended($this->handle);\n }", "public function activeUser() {\n $inactive = isset($this->current_record['deactivate___1']) && $this->current_record['deactivate___1'] == '1';\n return !$inactive;\n }", "public static function isPaused()\n {\n return self::$isPaused;\n }", "public function user_suspended($email = ''){\n\t\t\t\n\t\t\tif($email != '' && $email != null){\n\t\t\t\t$this->db->where('LOWER(email_address)', strtolower($email));\n\t\t\t}\n\t\t\t$this->db->where('status', '1');\n\t\t\t\n\t\t\t$query = $this->db->get($this->table);\n\t\t\t\n\t\t\tif ($query->num_rows() == 1){\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t\n\t\t}", "public function setSuspended($var)\n {\n GPBUtil::checkBool($var);\n $this->suspended = $var;\n\n return $this;\n }", "public static function isSessionActive(){\n return (!Session::has('id') && Session::get('role_id') != '1')? TRUE: FALSE;\n }", "private function hasUserEnabled()\n {\n return Yii::$app->adminuser->isGuest ? false : Yii::$app->adminuser->identity->is_request_logger_enabled;\n }", "public function checkSuspended(UserModel $user)\n {\n $id = $user->getId();\n $query = $this->ini[\"SuspendedUsers\"][\"select.id\"];\n $statement = $this->conn->prepare($query);\n $statement->bindParam(\":id\", $id);\n try {\n $statement->execute();\n return $statement->rowCount() > 0;\n } catch (PDOException $e) {\n throw new PDOException(\"Exception in SuspendDAO::reactivate\\n\" . $e->getMessage());\n }\n }", "static function is_logined() {\r\n\t\treturn $GLOBALS['user']->uid ? true : false;\r\n\t}", "public static function isUserLogined() {\n\t\tif(isset(self::$current_user) && self::$current_user->len == 1){\n\t\t\treturn true;\n\t\t}else{\n\t\t\treturn false;\n\t\t}\n\t}", "public function getIsGuestUser()\n {\n return $this->getProperty(\"IsGuestUser\");\n }", "public function is_active() {\n\t\treturn (bool) $this->consent->get();\n\t}", "public function isUser()\n {\n $user = $this->getCurrentUser();\n return $user!=null;\n }", "public function getIsActive(){\n \n // Implementation currently based on sfGuardUser's \"is_active\" flag\n $sf_guard_user = $this->getsfGuardUser();\n \n return $sf_guard_user->getIsActive();\n \n }", "public function isLoggedInUser()\n {\n return $this->customerSession->isLoggedIn();\n }", "protected function _suspend()\n {\n return true;\n }", "public function hasLoggedInUser() {\n\t\treturn $GLOBALS['TSFE']->loginUser;\n\t}", "public function hasUserInSession() {\n return $this->session->exists($this->key());\n }", "public static function isUnderDev()\n {\n if (Yii::$app->user->isGuest) return false;\n /** @var $user IdentityInterface|YicmsUserInterface */\n $user = Yii::$app->user->identity;\n return $user->isThisDev();\n }" ]
[ "0.7785188", "0.76491916", "0.7450838", "0.7375454", "0.7233661", "0.6811983", "0.6675539", "0.6413377", "0.62820274", "0.6211122", "0.620871", "0.62086976", "0.60924494", "0.60864186", "0.6081496", "0.6066048", "0.5961411", "0.58999187", "0.5838008", "0.58091635", "0.57923853", "0.579236", "0.5752852", "0.5709931", "0.5682789", "0.5665832", "0.5647118", "0.561227", "0.5602762", "0.559261" ]
0.82624847
0
Mark test to be executed for SOAP adapter only.
protected function _markTestAsSoapOnly($message = null) { if (TESTS_WEB_API_ADAPTER != self::ADAPTER_SOAP) { $this->markTestSkipped($message ? $message : "The test is intended to be executed for SOAP adapter only."); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testIsDisabled() {\n }", "public function allowSingleTest();", "public function dontStub() {\n $this->setStubbed(false);\n }", "public function testSetSkipVouchersChecking()\n {\n $oBasket = $this->getProxyClass( \"oxBasket\" );\n\n $oBasket->setSkipVouchersChecking( true );\n $this->assertTrue( $oBasket->getNonPublicVar( '_blSkipVouchersAvailabilityChecking' ));\n\n $oBasket->setSkipVouchersChecking( false );\n $this->assertFalse( $oBasket->getNonPublicVar( '_blSkipVouchersAvailabilityChecking' ));\n }", "protected function _markTestAsRestOnly($message = null)\n {\n if (TESTS_WEB_API_ADAPTER != self::ADAPTER_REST) {\n $this->markTestSkipped($message ? $message : \"The test is intended to be executed for REST adapter only.\");\n }\n }", "protected function skip_api_integration_test() {\n\n\t\tif ( ! $this->is_api_integration_var_set() && $this->is_api_integration_test() ) {\n\t\t\t$this->markTestSkipped( 'API Integration tests skipped in this environment.' );\n\t\t}\n\n\t}", "public function testComleteTestSupport()\n {\n if (version_compare(PHP_VERSION, \"5.2.11\", '<')) {\n $this->markTestSkipped();\n\n }\n }", "function enableTesting(){\n\t\t$this->testingMode = 1;\n\t}", "public function testSetRequire()\n {\n $this->todo('stub');\n }", "public function testDisableInventoryLocation()\n {\n }", "public static function setAsUnitTested()\n {\n define('UNIT_TEST_YOUR_APPLICATION_TEST_SUITE', 'yes');\n }", "public function dontExpectRequestsInRemoteService(): void {\n $this->getScenario()->runStep(new \\Codeception\\Step\\Action('dontExpectRequestsInRemoteService', func_get_args()));\n }", "public function testPostLicenseToggle()\n {\n }", "public function testOptOutListings()\n {\n\n }", "protected function stub(){\n\n }", "public function testWithIntentionalRisky(): void\n {\n }", "public function setUp()\n {\n $_SERVER['StubBaseController@setupFilters'] = false;\n }", "public function testSkipDataSet(): void\n {\n if ($this->dataName() === 'first_data_set') {\n $this->fail('This test should be skipped via override config in data set node');\n }\n }", "public function testRunner() {\n\t\t$this->markTestIncomplete();\n\t}", "protected function checkSoap(){\n if (empty($this->soap)) {\n $this->soap = new SoapCurl($this->certificate);\n }\n }", "public function testHideService()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testExecuteSepaDirectDebit()\r\n {\r\n }", "public function testSilenceDirectNotifications()\n {\n }", "public function testEnableInventoryLocation()\n {\n }", "public function testExecute()\n {\n }", "public function runBare() {\n\t\t\\PHPUnit_Framework_Error_Warning::$enabled = FALSE;\n\t\tparent::runBare();\n\t}", "protected function runningUnitTests()\n {\n return false;\n }", "public function setUp() {\n static::$additionalShutdownCallbackCalled = false;\n }", "public function testSetup()\n {\n $this->todo('stub');\n }", "public function doesNotExecute()\n {\n $calls = 0;\n\n DI::set('dontCall', function () use (&$calls) {\n $calls = $calls + 1;\n });\n\n self::assertSame(0, $calls);\n }" ]
[ "0.5842548", "0.57720035", "0.5748307", "0.5736565", "0.5729152", "0.5557621", "0.5552886", "0.5552878", "0.55356354", "0.55244815", "0.5514473", "0.5478337", "0.54705834", "0.54582185", "0.54428715", "0.5428563", "0.5419639", "0.53696156", "0.5343163", "0.5331803", "0.53081363", "0.52968234", "0.5289349", "0.52878326", "0.52808213", "0.52717894", "0.5257764", "0.5248579", "0.523778", "0.52347344" ]
0.7157676
0
Mark test to be executed for REST adapter only.
protected function _markTestAsRestOnly($message = null) { if (TESTS_WEB_API_ADAPTER != self::ADAPTER_REST) { $this->markTestSkipped($message ? $message : "The test is intended to be executed for REST adapter only."); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function allowSingleTest();", "public function setUp()\n {\n $_SERVER['StubBaseController@setupFilters'] = false;\n }", "public function can_test() {\n\t\treturn false;\n\t}", "protected function skip_api_integration_test() {\n\n\t\tif ( ! $this->is_api_integration_var_set() && $this->is_api_integration_test() ) {\n\t\t\t$this->markTestSkipped( 'API Integration tests skipped in this environment.' );\n\t\t}\n\n\t}", "public function testSetRequire()\n {\n $this->todo('stub');\n }", "public function testItems()\n {\n $this->_markTestAsRestOnly();\n $serviceInfo = [\n 'rest' => [\n 'resourcePath' => $this->_restResourcePath,\n 'httpMethod' => \\Magento\\Framework\\Webapi\\Rest\\Request::HTTP_METHOD_GET\n ],\n ];\n $this->_assertNoRestRouteException($serviceInfo);\n }", "public function testAllowMethod()\n {\n $env = array(\n 'QUERY_STRING'=>'v=12111'\n );\n $methods = [\"PUT\",\"POST\",\"PATCH\",\"DELETE\"];\n foreach($methods as $method)\n {\n $response = $this->request($method,$this->uri,$env);\n $this->assertSame($response->getStatusCode(), HTTP_CODE_METHOD_NOT_ALLOWED, $method.\"--\". $response->getBody());\n }\n }", "public function testRequireAuth()\n {\n $this->json('POST', '/api/v1/android_apps')->assertStatus(401);\n $this->json('GET', '/api/v1/android_apps')->assertStatus(401);\n $this->json('GET', '/api/v1/android_apps/1')->assertStatus(401);\n $this->json('PATCH', '/api/v1/android_apps/1')->assertStatus(401);\n $this->json('DELETE', '/api/v1/android_apps/1')->assertStatus(401);\n\n $this->json('POST', '/api/v1/android_apps/1/avatar')->assertStatus(401);\n $this->json('GET', '/api/v1/android_apps/1/avatar')->assertStatus(401);\n\n $this->json('POST', '/api/v1/android_apps/1/file')->assertStatus(401);\n $this->json('GET', '/api/v1/android_apps/1/file')->assertStatus(401);\n }", "public function testRunner() {\n\t\t$this->markTestIncomplete();\n\t}", "public function testBeforeRenderNotApi() {\n\t\t$Request = $this->getMock('CakeRequest', array('is'));\n\t\t$Request\n\t\t\t->expects($this->once())\n\t\t\t->method('is')\n\t\t\t->with('api')\n\t\t\t->will($this->returnValue(false));\n\n\t\t$Crud = $this->getMock('stdClass', array('action'));\n\t\t$Crud\n\t\t\t->expects($this->never())\n\t\t\t->method('action');\n\n\t\t$Instance = new ApiPaginationListener(new CrudSubject(array('request' => $Request, 'crud' => $Crud)));\n\t\t$Instance->beforeRender(new CakeEvent('something'));\n\t}", "public function testIsDisabled() {\n }", "public function testTaskGet()\n {\n\n }", "public function test_GET_collection_is_disabled()\n {\n $this->client->request('GET', $this->urlApi);\n $this->assertHttpMethodNotAllowed405('GET', $this->urlApi, ['POST']);\n }", "public static function setAsUnitTested()\n {\n define('UNIT_TEST_YOUR_APPLICATION_TEST_SUITE', 'yes');\n }", "public function testClientIsDumb(){\n $response = $this->call('GET','/full/bars/1'); \n $response->assertStatus(400);\n }", "public function testAvailableTenantResourceOperations()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testExample()\n {\n $response = $this->call('GET', 'localhost:8086/api/admin/login');\n $this->assertEquals(200, $response->status());\n $response = $this->call('GET', '/api/admin/logout');\n $this->assertEquals(200, $response->status());\n $response = $this->call('GET', '/api/admin/check');\n $this->assertEquals(200, $response->status());\n \n\n $response = $this->call('GET', '/api/activity/add');\n $this->assertEquals(200, $response->status());\n $response = $this->call('GET', '/api/activity/update');\n $this->assertEquals(200, $response->status());\n\n $response = $this->call('GET', '/api/activity/read');\n $this->assertEquals(200, $response->status());\n $response = $this->call('GET', '/api/activity/remove');\n $this->assertEquals(200, $response->status());\n\n\n\n $response = $this->call('GET', '/api/comment/add');\n $this->assertEquals(200, $response->status());\n $response = $this->call('GET', '/api/comment/read');\n $this->assertEquals(200, $response->status());\n \n }", "public function testReplaceHTTPRequestRule()\n {\n }", "function test_prepare_response() {\n\t\t$this->markTestIncomplete('Missing test implementation.');\n\t}", "public function myTestRule() {\n\t\treturn false;\n\t}", "public function testOptOutListings()\n {\n\n }", "public function setUp()\n {\n $this->infrastructure = CloudFactory::getAdapter(array(\n CloudFactory::INFRASTRUCTURE_ADAPTER_KEY => 'ZendCloud\\Infrastructure\\Adapter\\Rackspace',\n Rackspace::RACKSPACE_USER => 'test',\n Rackspace::RACKSPACE_KEY => 'test',\n Rackspace::RACKSPACE_REGION => 'USA'\n ));\n\n $this->httpClientAdapterTest = new HttpTest();\n\n $this->infrastructure->getAdapter()\n ->getHttpClient()\n ->setAdapter($this->httpClientAdapterTest);\n\n $shortClassName = 'RackspaceTest';\n // load the HTTP response (from a file)\n $filename= dirname(__FILE__) . '/_files/' . $shortClassName . '_'. $this->getName().'.response';\n\n if (file_exists($filename)) {\n // authentication (from file)\n $content = file_get_contents(dirname(__FILE__) . '/_files/'.$shortClassName . '_testAuthenticate.response');\n $this->httpClientAdapterTest->setResponse($content);\n $this->assertTrue($this->infrastructure->getAdapter()->authenticate(),'Authentication failed');\n // set the specific API response\n $content = file_get_contents($filename);\n $this->httpClientAdapterTest->setResponse($content);\n }\n\n }", "function enableTesting(){\n\t\t$this->testingMode = 1;\n\t}", "public function testSubresource()\n\t{\n\t\t$result = $this->captureOB($this, function() {\n\t\t\t$this->postAction->run(1, 'posts', 1);\n\t\t});\n\t\t$this->assertInstanceOf('Exception', $result);\n\t\t$this->assertExceptionHasMessage('Method Not Allowed', $result);\n\t}", "public function testFetchNew()\n {\n $this->skip('abstract method');\n }", "public function testPostWebInterfaceNotAllowed()\n {\n $response = $this->runApp('POST', '/', ['test']);\n\n $this->assertEquals(405, $response->getStatusCode());\n $this->assertContains('Method not allowed', (string)$response->getBody());\n }", "public function testTaskList()\n {\n\n }", "public function dontExpectRequestsInRemoteService(): void {\n $this->getScenario()->runStep(new \\Codeception\\Step\\Action('dontExpectRequestsInRemoteService', func_get_args()));\n }", "protected function before() {}", "protected function before() {}" ]
[ "0.6031124", "0.5819844", "0.57691634", "0.5655524", "0.56502086", "0.56462884", "0.5632202", "0.5595563", "0.55497783", "0.55179465", "0.5471095", "0.5444356", "0.54365635", "0.5417899", "0.5416666", "0.53890747", "0.5381009", "0.5370764", "0.53667724", "0.53637385", "0.53538334", "0.5334333", "0.53279513", "0.53205395", "0.5313332", "0.53123856", "0.5304905", "0.530173", "0.52969474", "0.52969474" ]
0.6859263
0