Page Time: 0.2075s

Memory: 5.2860 MB (Peak: 5.8845 MB)

Queries (30, time: 0.0451s, 21.7%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000263
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra,
    		IF(rate.count IS NULL, 0, rate.count) AS thread_rate_count, IF(rate.sum IS NULL, 0, rate.sum) AS thread_rate_sum, IF(rate.avg IS NULL, 0, rate.avg) AS thread_rate_avg
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN ns_threadrating_rate AS rate ON (rate.thread_id = thread.thread_id)
    WHERE thread.thread_id = ?
    Params: 7218
    Run Time: 0.001331
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLErateconstPRIMARYPRIMARY4const0Unique row not found
  3. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 45
    Run Time: 0.000828
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. SELECT post.*
    	,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE post.thread_id = ?
    	 AND (post.position >= 20 AND post.position < 40) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 7218
    Run Time: 0.003327
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 15Using index condition; Using where; Using filesort
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22user_nextstagerussia.post.user_id,func1Using where
  5. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
    FROM xf_attachment AS attachment
    INNER JOIN xf_attachment_data AS data ON
    	(data.data_id = attachment.data_id)
    WHERE attachment.content_type = ?
    	AND attachment.content_id IN (137710)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.001106
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const5Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4user_nextstagerussia.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 7218
    Run Time: 0.001197
  7. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=7218&page=2, 1715157497,
    Run Time: 0.000472
  8. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137310, a:1:{i:0;s:427:"А по теме Вобще то где-то слышал, что Playstation самый сильный бренд мира. По популярности превосходящий имя Иисуса Христа и тд... но это было в 2005 вроде как.... точно не скажу, уточню лишь что бренд Playstation был первым, а бренд Сони 7, то ли 17-м......";}, 1701116101, 1715157497
    Run Time: 0.000690
  9. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 200, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:42:"http://profile.mygamercard.net/RCSDuenyrGS";s:8:"original";a:2:{i:0;s:48:"[url=http://profile.mygamercard.net/RCSDuenyrGS]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[img]";i:1;s:6:"[/img]";}s:8:"children";a:1:{i:0;s:46:"http://card.mygamercard.net/RU/RCSDuenyrGS.png";}}}}}, 1701116101, 1715157497
    Run Time: 0.000824
  10. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137612, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:22:"plumber2, post: 137173";s:8:"original";a:2:{i:0;s:32:"[quote="plumber2, post: 137173"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:2856:"Как и говорил- Телек смотрю… Toshiba называется (но хочу либо Sharp либо новый Philips ). .Музыку слушаю – ресивер Denon, акустика B&W (фронты), «surround» - Pioneer (комплект)(модельки достаточно бюджетные- в общем мейнстрим, я не меломан ) Насчет портативных плейеров- сейчас не использую (возраст не тот), а в свое время был даже минидиск (разумеется Pioneer, а не Sony) Сына тоже приучаю к хорошим вещам (ipod, уже 2 года как, второй по счету) Телефоны у всей семьи Nokia (сын и жена меняют достаточно часто (у жены были еще и Samsungи ), а я консерватор, хожу до сих пор с 6100 ( есть и корпоративный телефон 6230- на работе выдали), но думаю в ближайшее время купить себе личный 6300 (к лету, пусть пока цена упадет немного). Даже если бы мне телефон Sony просто подарили, ходить бы я с ним не стал. Фото и видео камеры- Canonы. Бытовую технику описывать не буду, но поверь – не Sony, Эх, вот если бы Sony выпускала щетки для унитаза, то тогда обязательно бы купил именно от Sony (но пока таковых не видел, к сожалению – пользуюсь китайским «no name» )…. Что касается статьи.. Sony в США марка узнаваемая и даже популярная, но, все равно, большинство американцев (казуалов) не готовы платить $600 за игровую консоль. Согласен. Но, нельзя недооценивать патриотизм американцев – Microsoft- это все-таки свое, родное, звездно полосатое…. (так что дело не толко в цене)… А еще же у нас Nintendo есть (которая, к моему величайшему удовольствию, кладет Sony по продажам на обе лопатки по всему миру, несмотря на то что она телевизоров не выпускает и киностудиями не владеет) (здесь 100% формула успеха - бренд пользуется мега-доверием и цена соответствует качеству)!";}}i:1;s:607:" а айпод-это что качественный портатив?))) сотовые самсунги имхо фигня,особенно раскладушки, сони намного лучше.думаю,отношение к их мобильникам у вас предвзятое. а,что сони разве делает бытовую технику?)) по поводу домашнего аудио-тут придратья не к чему. да, и о минидиске-не забывайте кому мир обязан этому замечательному формату)";}, 1701116101, 1715157497
    Run Time: 0.000338
  11. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 2891, a:3:{i:0;s:277:"BB Pack SCPH-50000 MB/NH + DMS4 Pro SE + Seagate ST3400820A 400GB, SCPH-7708, HKT-3000, USG-S-FTWDXF(JPN),CECHH00 MG, PSP1000k, HST-0014, DOL-S-MGOTO, SCPH-100, RVL-S-GL-USZ, XBOX 360 jasper [NTSC-J], XBOX 360 Slim 250Gb [PAL], PSVita 1108 EUR + 32gb card, PS4 500gb ИГРЫ";i:1;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"3";s:8:"original";a:2:{i:0;s:8:"[SIZE=3]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:1:" ";}}}}i:2;s:30:"are available only on consoles";}, 1701116101, 1715157497
    Run Time: 0.000554
  12. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137614, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:25:"Darth Revan, post: 137195";s:8:"original";a:2:{i:0;s:35:"[quote="Darth Revan, post: 137195"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:2:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:8:"plumber2";}}i:1;s:456:", Честно говоря, Кирилл, у Вас очень странная позиция. Можно, например, объективно не любить бренд "Автоваз" или, скажем, "Клинское", но нормальных причин для неприятия фирмы, которая дала миру такие культовые вещи как walkman и playstation просто не существует..";}}i:1;s:190:" Первый электронный транзисторный радиоприемник, магнитная лента, видеокамера, дискеты компьютерные :)";}, 1701116101, 1715157497
    Run Time: 0.000684
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 2108, a:2:{i:0;s:81:"Непредвзятый Мультиплатформенный Ценитель ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:52:"http://www.playfire.com/a/widget_click/2/Rasterzator";s:8:"original";a:2:{i:0;s:60:"[URL="http://www.playfire.com/a/widget_click/2/Rasterzator"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:1:" ";}}}, 1701116101, 1715157497
    Run Time: 0.000493
  14. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137615, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:25:"Darth Revan, post: 137201";s:8:"original";a:2:{i:0;s:35:"[quote="Darth Revan, post: 137201"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:466:"Да, и насчет, телевизоров - в эпоху ЭЛТ - Sony заслуженно была номером 1. Даже говорили - "если ТВ Sony включился, то он уже не сломается". На рынке LCD только в этом году Bravia начала серьезно отвоевывать утраченные позиции, принося огромную прибыль. Дело за будущим.";}}i:1;s:270:" точно. у меня до сих пор стоит 29-дюймовый трубчатый тринитрон, работает этот аппарат уже 8 или 9 лет и хоть бы хны- все параметры за 50% еле-еле выходят.";}, 1701116101, 1715157497
    Run Time: 0.000593
  15. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137625, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:18:"Jekk, post: 137614";s:8:"original";a:2:{i:0;s:28:"[quote="Jekk, post: 137614"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:188:"Первый электронный транзисторный радиоприемник, магнитная лента, видеокамера, дискеты компьютерные :)";}}i:1;s:753:" не забуть про такие вещи как: walkman-занесен в книгу рекордов гиннеса,как самое продаваемое электронное устройство. DAT-один из лучших аудио-форматов в 80-е годы, minidisc-бесспорно лучший формат портативного аудио, UMD(само сабой)) ой да куча ещё всего:Betacam,всем известные MODы, СD и DVD (совместно с филипс и тошиба),первая CCD-матрица, SACD-по мнению многих самый лучший на сегодня формат цифрового аудио. все больше в лом писать))";}, 1701116101, 1715157497
    Run Time: 0.000630
  16. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137630, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:10:"Флэки";s:8:"original";a:2:{i:0;s:18:"[QUOTE=Флэки]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:903:"plumber2, ага, только вот мой друг, казуал, особо не парится по поводу игр и прочего...слыша название Nintendo он выдает фразу "Эээ...это что-то очень старое, да?..." и не более того. Я ничуть не хочу приумалить заслуги большой N, но...Не знаю. Бренд может тоже популярен. Но среди кого? Среди геймеров. Да вот только чтоб твое название знали геймеры особого ума не надо, они сами узнаю чего и как им надо. А вот так чтоб вообще левый чел сказал "О, Sony, конечно знаю!" это надо хорошо попеариться и зарекомендовать себя. ";}}i:1;s:209:" Ну Россия не показатель. В Америке и Японии Nintendo это сила. Компания действительно старая, основана вроде в 1897 году.";}, 1701116101, 1715157497
    Run Time: 0.000982
  17. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137670, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:26:"pharmchemist, post: 137612";s:8:"original";a:2:{i:0;s:36:"[quote="pharmchemist, post: 137612"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:605:"а айпод-это что качественный портатив?))) сотовые самсунги имхо фигня,особенно раскладушки, сони намного лучше.думаю,отношение к их мобильникам у вас предвзятое. а,что сони разве делает бытовую технику?)) по поводу домашнего аудио-тут придратья не к чему. да, и о минидиске-не забывайте кому мир обязан этому замечательному формату)";}}i:1;s:330:" Айпод к качеству не имеет никакого отношения. Просто модное веение с удобной эргономикой. Сам купил такой - а теперь жалею. Можно на тьюбе поискать слова "ipod broken" - будет куча видео.";}, 1701116101, 1715157497
    Run Time: 0.000615
  18. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 1699, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:47:"http://eu.playstation.com/psn/profile/bannikov/";s:8:"original";a:2:{i:0;s:53:"[url=http://eu.playstation.com/psn/profile/bannikov/]";i:1;s:6:"[/url]";}s:8:"children";a:3:{i:0;s:1:" ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[img]";i:1;s:6:"[/img]";}s:8:"children";a:1:{i:0;s:56:"http://mypsn.eu.playstation.com/psn/profile/bannikov.png";}}i:2;s:1:" ";}}}, 1701116101, 1715157497
    Run Time: 0.000424
  19. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137710, a:2:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:11:"Darth Revan";}}i:1;s:117:", зато ipod породил очень модное движение в арте. Так называемый iArt";}, 1701116101, 1715157497
    Run Time: 0.001832
  20. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 1161, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:49:"http://eu.playstation.com/psn/profile/Ares_Ahiro/";s:8:"original";a:2:{i:0;s:55:"[url=http://eu.playstation.com/psn/profile/Ares_Ahiro/]";i:1;s:6:"[/url]";}s:8:"children";a:3:{i:0;s:1:" ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[img]";i:1;s:6:"[/img]";}s:8:"children";a:1:{i:0;s:58:"http://mypsn.eu.playstation.com/psn/profile/Ares_Ahiro.png";}}i:2;s:1:" ";}}}, 1701116101, 1715157497
    Run Time: 0.010892
  21. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137712, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"Monster, post: 137630";s:8:"original";a:2:{i:0;s:31:"[quote="Monster, post: 137630"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:208:"Ну Россия не показатель. В Америке и Японии Nintendo это сила. Компания действительно старая, основана вроде в 1897 году.";}}i:1;s:311:" Основана:23 сентября, 1889 - "Marufuku" В 1907 году компания поменяла свое название на Nintendo Koppai В 1963 году Nintendo Playing Card Company Limited была переименована в Nintendo Company, Limited. ......для справки";}, 1701116101, 1715157497
    Run Time: 0.000396
  22. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 250, a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:3:"Red";s:8:"original";a:2:{i:0;s:13:"[COLOR="Red"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"4";s:8:"original";a:2:{i:0;s:10:"[SIZE="4"]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:97:" Победитель в номинации "автор самых бесполезных тем"";}}}}}, 1701116101, 1715157497
    Run Time: 0.000304
  23. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137721, a:3:{i:0;s:2276:"History In 1945, after World War II, Masaru Ibuka started a radio repair shop in a bombed-out building in Tokyo. The next year he was joined by his colleague Akio Morita, and they founded a company called Tokyo Tsushin Kogyo K.K. which translates in English to Tokyo Telecommunications Engineering Corporation. The company built Japan's first tape recorder called the Type-G. In the early 1950s, Ibuka traveled in the United States and heard about Bell Labs' invention of the transistor. He convinced Bell to license the transistor technology to his Japanese company. While most American companies were researching the transistor for its military applications, Ibuka looked to apply it to communications. While the American companies Regency and Texas Instruments built transistor radios first, it was Ibuka's company that made the first commercially successful transistor radios. In August 1955, Sony produced its first coat-pocket sized transistor radio they registered as the TR-55 model. In 1956, Sony reportedly manufactured about 40,000 of its Model TR-72 box-like portable transistor radios and exported the model to North America, the Netherlands and Germany. That same year they made the TR-6, a coat pocket radio which was used by the company to create its "SONY boy" advertising character. The following year, 1957, Sony came out with the TR-63 model, then the smallest (112 × 71 × 32 mm) transistor radio in commercial production. It was a worldwide commercial success. University of Arizona professor Michael Brian Schiffer, Ph.D., says, "Sony was not first, but its transistor radio was the most successful. The TR-63 of 1957 cracked open the U.S. market and launched the new industry of consumer microelectronics." By the mid 1950s, American teens had begun buying portable transistor radios in huge numbers, helping to propel the fledgling industry from an estimated 100,000 units in 1955 to 5,000,000 units by the end of 1958. However, this huge growth in portable transistor radio sales that saw Sony rise to be the dominant player in the consumer electronics field was not because of the consumers who had bought the earlier generation of tube radio consoles, but was driven by a distinctly new American phenomenon at the time called Rock and Roll. ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[url]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:33:"http://en.wikipedia.org/wiki/Sony";}}i:2;s:115:" Русская страничка википедии маленькая, неточная и с ошибками.";}, 1701116101, 1715157497
    Run Time: 0.000548
  24. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137729, a:5:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:23:"List of Sony trademarks";}}i:1;s:5:" ... ";i:2;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:1:"D";}}i:3;s:311:" ... Dream Machine (the development codename for the PlayStation) (рабочее название первой плейстейшн) ... Dual Axis (возможно первый вариант названия Sixaxis, мои догадки) ... Список торговых марок впечатляет: ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[url]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:52:"http://en.wikipedia.org/wiki/List_of_Sony_trademarks";}}}, 1701116101, 1715157497
    Run Time: 0.003377
  25. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 137740, a:1:{i:0;s:102:"Сони - великая компания. Разве в этом можно сомневаться?!";}, 1701116101, 1715157497
    Run Time: 0.000403
  26. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 35, a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:4:"gray";s:8:"original";a:2:{i:0;s:14:"[COLOR="gray"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:5:{i:0;s:25:"Запись в клуб ";i:1;a:4:{s:3:"tag";s:1:"u";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[U]";i:1;s:4:"[/U]";}s:8:"children";a:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:64:"http://nextstage.ru/showthread.php/18928-ЭЛИТНЫЙ-КЛУБ";s:8:"original";a:2:{i:0;s:70:"[url=http://nextstage.ru/showthread.php/18928-ЭЛИТНЫЙ-КЛУБ]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:16:"окончена";}}i:1;s:1:".";}}i:2;s:4:" ";i:3;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:85:"Мобилы для дебилов — у меня спутниковая рация!";}}i:4;s:2:" ";}}}, 1701116101, 1715157497
    Run Time: 0.000328
  27. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 146122, a:8:{i:0;s:224:"Пять дней назад Magic Box опубликовал новость о том, что в 4 квартале прошедшего финансового года потери компании Sony составили ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:5:"113.4";}}i:2;s:1:" ";i:3;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:19:"миллиарда ";}}i:4;s:83:"йен в связи с затратами на запуск PS3 и отзывом ";i:5;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:57:"9.6 миллионов дефектных батарей ";}}i:6;s:241:"для лэптопов…:( Sony posted an operating loss of 113.4 billion yen for the 4th quarter of pass business year, which due to losses in launching PlayStation 3 and recalling 9.6 million units of defective laptop batteries. ";i:7;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[url]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:38:"http://www.the-magicbox.com/gaming.htm";}}}, 1701116101, 1715157497
    Run Time: 0.001664
  28. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 210, a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:25:"Vox Clamantis in Deserto!";}}}, 1701116101, 1715157497
    Run Time: 0.009418
  29. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 146128, a:1:{i:0;s:60:"Каким боком это относится к теме?";}, 1701116101, 1715157497
    Run Time: 0.000343
  30. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 146274, a:1:{i:0;s:127:"Сила бренда скоро ослабеет. В Америке Apple победит, в Японии Нинтендо.:)";}, 1701116101, 1715157497
    Run Time: 0.000242

Included Files (113, XenForo Classes: 63)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Cache.php
  19. library/Zend/Cache/Backend/Memcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/NextStage/Feature/Listener/Feature.php
  29. library/XenForo/Router.php
  30. library/XenForo/Route/Filter.php
  31. library/XenForo/Route/Interface.php
  32. library/XenForo/Route/ResponseSuffix.php
  33. library/XenForo/Route/Prefix.php
  34. library/XenForo/Route/Prefix/Threads.php
  35. library/XenForo/RouteMatch.php
  36. library/XenForo/ControllerPublic/Thread.php
  37. library/XenForo/ControllerPublic/Abstract.php
  38. library/XenForo/Controller.php
  39. library/NextStage/ThreadRating/Listener/Class.php
  40. library/NextStage/TaigaChat/Listener.php
  41. library/NextStage/XenForo/Listener/XenForo.php
  42. library/Tapatalk/Listener/LoadClassModel.php
  43. library/NextStage/ThreadRating/ControllerPublic/Thread.php
  44. library/NextStage/XenForo/ControllerPublic/XenForo.php
  45. library/NextStage/XenForo/ControllerPublic/Thread.php
  46. library/XenForo/Input.php
  47. library/XenForo/Session.php
  48. library/Zend/Db.php
  49. library/Zend/Db/Adapter/Mysqli.php
  50. library/Zend/Db/Adapter/Abstract.php
  51. library/Zend/Db/Select.php
  52. library/Zend/Db/Expr.php
  53. library/Zend/Db/Profiler.php
  54. library/Zend/Db/Statement/Mysqli.php
  55. library/Zend/Db/Statement.php
  56. library/Zend/Db/Statement/Interface.php
  57. library/XenForo/Helper/Ip.php
  58. library/XenForo/Visitor.php
  59. library/XenForo/Model/User.php
  60. library/Dark/TaigaChat/EventListener/Listener.php
  61. library/Zend/Db/Profiler/Query.php
  62. library/XenForo/Permission.php
  63. library/XenForo/Helper/Php.php
  64. library/XenForo/Phrase.php
  65. library/XenForo/Locale.php
  66. library/XenForo/ControllerHelper/ForumThreadPost.php
  67. library/XenForo/ControllerHelper/Abstract.php
  68. library/XenForo/Model/Thread.php
  69. library/NextStage/ThreadRating/Model/Thread.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Helper/Discussion.php
  73. library/XenForo/Model/Post.php
  74. library/NextStage/Feature/Model/Post.php
  75. library/XenForo/Model/Attachment.php
  76. library/XenForo/Route/Prefix/Attachments.php
  77. library/NextStage/Feature/Model/Feature.php
  78. library/XenForo/Model/Node.php
  79. library/Tapatalk/Model/Node.php
  80. library/XenForo/Route/Prefix/Categories.php
  81. library/XenForo/Route/Prefix/Forums.php
  82. library/XenForo/ControllerResponse/View.php
  83. library/XenForo/ControllerResponse/Abstract.php
  84. library/XenForo/Helper/Cookie.php
  85. library/Tapatalk/Listener/ControllerPostDispatch.php
  86. library/XenForo/ViewRenderer/HtmlPublic.php
  87. library/XenForo/ViewRenderer/Abstract.php
  88. library/XenForo/Template/Public.php
  89. library/XenForo/Template/Abstract.php
  90. library/XenForo/ViewPublic/Thread/View.php
  91. library/XenForo/ViewPublic/Base.php
  92. library/XenForo/View.php
  93. library/XenForo/BbCode/Parser.php
  94. library/XenForo/BbCode/Formatter/Base.php
  95. library/XenForo/ViewPublic/Helper/Message.php
  96. library/XenForo/BbCode/TextWrapper.php
  97. library/XenForo/Route/Prefix/Members.php
  98. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  99. library/NextStage/ThreadRating/Listener/Template.php
  100. library/XenForo/Template/FileHandler.php
  101. library/XenForo/Helper/File.php
  102. internal_data/templates/S.1,L.1,thread_view.php
  103. library/Tapatalk/EventListener/Hook.php
  104. internal_data/templates/S.1,L.1,page_nav.php
  105. library/Tapatalk/Listener/TemplatePostRender.php
  106. library/XenForo/Route/Prefix/Posts.php
  107. internal_data/templates/S.1,L.1,nextstage_feature_post_private_controls.php
  108. library/XenForo/Model/Avatar.php
  109. internal_data/templates/S.1,L.1,bb_code_tag_quote.php
  110. library/XenForo/Debug.php
  111. internal_data/templates/S.1,L.1,PAGE_CONTAINER.php
  112. mobiquo/smartbanner/head.inc.php
  113. library/XenForo/ViewRenderer/Json.php