Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Match everything enclosed
    (?:...)
  • Capture everything enclosed
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression
No Match

r"
"
g

Test String

Code Generator

Generated Code

$re = '/\[(?P<timelog>\d*:\d*)]\W*"(?P<name>.*) \(-*(?P<ID>\d+)\W.*(?P<longtime>\w{3}.\w{3}.[0-9 :]*)\./'; $str = 'Session Start (ntphat691): Mon Oct 06 09:57:40 2014 0700 [09:57] *** Checking session key... [09:57] *** Creating connection "ntphat691". [09:57] *** TLS established using ECDHE-RSA-DES-CBC3-SHA (TLSv1/SSLv3). [09:57] *** Bound to resource -100001071227775@chat.facebook.com/NTP-PC. [09:57] *** You are now set as "online". [09:57] *** You have successfully connected to Facebook. [09:57] *** "WOn Best Rurn (-100001076636722@chat.facebook.com)" signed on at Mon Oct 06 09:57:54 2014. [09:57] *** "Ryn Queen (-100003085447324@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Phat Quy (-100001276104877@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Hang Nguyen (-100001572713619@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Lê Khánh (-100001829094507@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Đinh Hồng Châu (-100000695635825@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Bùi Lê Kha (-100001533624519@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Văn Võ (-100001644264472@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Hieu Soldat (-100001390114308@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Mai Ly Tạ (-100000427850181@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Phạm Lê Phú (-100001150671628@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Uyên Hoàng (-100001200720909@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Đạt Quốc Trần (-100000189265478@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Mèo Nhơn (-100005904606032@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Le Thuy (-100001700844807@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Nguyễn Văn Kiệt (-100001209780455@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Tran Van Truong (-100001899968334@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Mèo Meo (-100001538712025@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Nguyễn Ngọc Ánh Minh (-100001866017895@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Trang Nguyễn (-100002950261718@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Dương Nguyễn (-100000993988185@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Hồng Phượng (-100001743049679@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Lực Lạng Lách (-100003591606008@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Tổ Chức (-1664666724@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Dai Luong (-100000466067184@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Bảo Chí (-100000108873370@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Ngô Tấn Phát (-100000243600285@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Nguyen Nhu (-100001572075089@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Anh Nguyen (-1564360342@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [09:57] *** "Nguyễn Hoàng Duy (-100000337269057@chat.facebook.com)" signed on at Mon Oct 06 09:57:55 2014. [10:00] *** "Mèo Nhơn (-100005904606032@chat.facebook.com)" signed off at Mon Oct 06 10:00:19 2014. [10:00] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed off at Mon Oct 06 10:00:19 2014. [10:00] *** "Thương Nguyễn (-100005793421534@chat.facebook.com)" signed on at Mon Oct 06 10:00:19 2014. [10:00] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed on at Mon Oct 06 10:00:19 2014. [10:00] *** "Hang Nguyen (-100001572713619@chat.facebook.com)" signed off at Mon Oct 06 10:00:19 2014. [10:00] *** "Thanh Nguyên (-1673454664@chat.facebook.com)" signed on at Mon Oct 06 10:00:19 2014. [10:00] *** "Bùi Lê Kha (-100001533624519@chat.facebook.com)" signed off at Mon Oct 06 10:00:19 2014. [10:00] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 10:00:19 2014. [10:00] *** "Mai Ly Tạ (-100000427850181@chat.facebook.com)" signed off at Mon Oct 06 10:00:19 2014. [10:00] *** "Uyên Hoàng (-100001200720909@chat.facebook.com)" signed off at Mon Oct 06 10:00:19 2014. [10:00] *** "Nguyen Nhu (-100001572075089@chat.facebook.com)" signed off at Mon Oct 06 10:00:20 2014. [10:00] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed on at Mon Oct 06 10:00:20 2014. [10:02] *** "Quang Vinh Bui (-100000585413612@chat.facebook.com)" signed on at Mon Oct 06 10:02:19 2014. [10:02] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed off at Mon Oct 06 10:02:49 2014. [10:02] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed on at Mon Oct 06 10:02:49 2014. [10:02] *** "Đinh Hồng Châu (-100000695635825@chat.facebook.com)" signed off at Mon Oct 06 10:02:49 2014. [10:02] *** "Bảo Chí (-100000108873370@chat.facebook.com)" signed off at Mon Oct 06 10:02:49 2014. [10:02] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed on at Mon Oct 06 10:02:49 2014. [10:02] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed off at Mon Oct 06 10:02:49 2014. [10:02] *** "Mèo Meo (-100001538712025@chat.facebook.com)" signed off at Mon Oct 06 10:02:49 2014. [10:02] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed off at Mon Oct 06 10:02:49 2014. [10:02] *** "Anh Nguyen (-1564360342@chat.facebook.com)" signed off at Mon Oct 06 10:02:49 2014. [10:02] *** "Phan Phat Thuan (-100001678820611@chat.facebook.com)" signed on at Mon Oct 06 10:02:49 2014. [10:02] *** "Thương Nguyễn (-100005793421534@chat.facebook.com)" signed off at Mon Oct 06 10:02:49 2014. [10:03] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed on at Mon Oct 06 10:03:37 2014. [10:05] *** "Hòa Nguyễn (-100004120425211@chat.facebook.com)" signed on at Mon Oct 06 10:05:20 2014. [10:05] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed off at Mon Oct 06 10:05:20 2014. [10:05] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed on at Mon Oct 06 10:05:20 2014. [10:05] *** "NG Doan (-100000058670304@chat.facebook.com)" signed on at Mon Oct 06 10:05:20 2014. [10:05] *** "Tran Van Truong (-100001899968334@chat.facebook.com)" signed off at Mon Oct 06 10:05:20 2014. [10:05] *** "Thu Phạm (-100001771115757@chat.facebook.com)" signed on at Mon Oct 06 10:05:20 2014. [10:05] *** "Trang Nguyễn (-100002950261718@chat.facebook.com)" signed off at Mon Oct 06 10:05:20 2014. [10:05] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed off at Mon Oct 06 10:05:20 2014. [10:05] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed on at Mon Oct 06 10:05:20 2014. [10:05] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed off at Mon Oct 06 10:05:20 2014. [10:05] *** "Linh Tran Trong (-100001288539586@chat.facebook.com)" signed on at Mon Oct 06 10:05:20 2014. [10:05] *** "Ngô Tấn Phát (-100000243600285@chat.facebook.com)" signed off at Mon Oct 06 10:05:20 2014. [10:05] *** "Văn Võ (-100001644264472@chat.facebook.com)" signed off at Mon Oct 06 10:05:20 2014. [10:05] *** "Luân Nguyễn (-100001233600287@chat.facebook.com)" signed on at Mon Oct 06 10:05:20 2014. [10:05] *** "Viet Nguyen (-1376517978@chat.facebook.com)" signed on at Mon Oct 06 10:05:20 2014. [10:05] *** "Anh Nguyen (-1564360342@chat.facebook.com)" signed on at Mon Oct 06 10:05:20 2014. [10:05] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed on at Mon Oct 06 10:05:21 2014. [10:05] *** "Quang Vinh Bui (-100000585413612@chat.facebook.com)" signed off at Mon Oct 06 10:05:49 2014. [10:06] *** "Tua Nhoc (-100002913811660@chat.facebook.com)" signed on at Mon Oct 06 10:06:14 2014. [10:07] *** "Huỳnh Xuân Phương Nguyễn (-100001286160404@chat.facebook.com)" signed on at Mon Oct 06 10:07:51 2014. [10:07] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed off at Mon Oct 06 10:07:51 2014. [10:07] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed on at Mon Oct 06 10:07:51 2014. [10:07] *** "Ryn Queen (-100003085447324@chat.facebook.com)" signed off at Mon Oct 06 10:07:51 2014. [10:07] *** "Thu Phạm (-100001771115757@chat.facebook.com)" signed off at Mon Oct 06 10:07:51 2014. [10:07] *** "Dương Nguyễn (-100000993988185@chat.facebook.com)" signed off at Mon Oct 06 10:07:51 2014. [10:07] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed off at Mon Oct 06 10:07:51 2014. [10:07] *** "Lê Khánh (-100001829094507@chat.facebook.com)" signed off at Mon Oct 06 10:07:51 2014. [10:07] *** "Tổ Chức (-1664666724@chat.facebook.com)" signed off at Mon Oct 06 10:07:51 2014. [10:07] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 10:07:51 2014. [10:07] *** "Văn Võ (-100001644264472@chat.facebook.com)" signed on at Mon Oct 06 10:07:51 2014. [10:07] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed off at Mon Oct 06 10:07:52 2014. [10:07] *** "Hậu Hào Hoa (-100000266701352@chat.facebook.com)" signed on at Mon Oct 06 10:07:52 2014. [10:07] *** "Hoàng Phương (-100001288956181@chat.facebook.com)" signed on at Mon Oct 06 10:07:52 2014. [10:08] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed off at Mon Oct 06 10:08:37 2014. [10:09] *** "Hoàng Phương (-100001288956181@chat.facebook.com)" signed off at Mon Oct 06 10:09:54 2014. [10:10] *** "Mèo Nhơn (-100005904606032@chat.facebook.com)" signed on at Mon Oct 06 10:10:22 2014. [10:10] *** "Huỳnh Xuân Phương Nguyễn (-100001286160404@chat.facebook.com)" signed off at Mon Oct 06 10:10:22 2014. [10:10] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed on at Mon Oct 06 10:10:22 2014. [10:10] *** "NG Doan (-100000058670304@chat.facebook.com)" signed off at Mon Oct 06 10:10:22 2014. [10:10] *** "Võ Huỳnh Anh Huy (-1177642878@chat.facebook.com)" signed on at Mon Oct 06 10:10:22 2014. [10:10] *** "Phan Phat Thuan (-100001678820611@chat.facebook.com)" signed off at Mon Oct 06 10:10:22 2014. [10:10] *** "Trần Trọng Lộc (-100001631501881@chat.facebook.com)" signed on at Mon Oct 06 10:10:22 2014. [10:10] *** "Hồng Phượng (-100001743049679@chat.facebook.com)" signed off at Mon Oct 06 10:10:22 2014. [10:10] *** "Lê Khánh (-100001829094507@chat.facebook.com)" signed on at Mon Oct 06 10:10:22 2014. [10:10] *** "Lực Lạng Lách (-100003591606008@chat.facebook.com)" signed off at Mon Oct 06 10:10:22 2014. [10:10] *** "Đinh Hồng Châu (-100000695635825@chat.facebook.com)" signed on at Mon Oct 06 10:10:22 2014. [10:10] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 10:10:22 2014. [10:10] *** "Luân Nguyễn (-100001233600287@chat.facebook.com)" signed off at Mon Oct 06 10:10:22 2014. [10:10] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed off at Mon Oct 06 10:10:22 2014. [10:11] *** "Hòa Nguyễn (-100004120425211@chat.facebook.com)" signed off at Mon Oct 06 10:11:32 2014. [10:11] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed on at Mon Oct 06 10:11:52 2014. [10:12] *** "Le Thuy (-100001700844807@chat.facebook.com)" signed off at Mon Oct 06 10:12:53 2014. [10:12] *** "Tua Nhoc (-100002913811660@chat.facebook.com)" signed off at Mon Oct 06 10:12:53 2014. [10:12] *** "Võ Huỳnh Anh Huy (-1177642878@chat.facebook.com)" signed off at Mon Oct 06 10:12:53 2014. [10:12] *** "Phan Phat Thuan (-100001678820611@chat.facebook.com)" signed on at Mon Oct 06 10:12:53 2014. [10:12] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed on at Mon Oct 06 10:12:54 2014. [10:12] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed on at Mon Oct 06 10:12:54 2014. [10:12] *** "Lực Lạng Lách (-100003591606008@chat.facebook.com)" signed on at Mon Oct 06 10:12:54 2014. [10:12] *** "Tổ Chức (-1664666724@chat.facebook.com)" signed on at Mon Oct 06 10:12:54 2014. [10:12] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed on at Mon Oct 06 10:12:54 2014. [10:12] *** "Văn Võ (-100001644264472@chat.facebook.com)" signed off at Mon Oct 06 10:12:54 2014. [10:12] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 10:12:54 2014. [10:12] *** "Sun Làng (-100001049230752@chat.facebook.com)" signed on at Mon Oct 06 10:12:54 2014. [10:13] *** "Hòa Nguyễn (-100004120425211@chat.facebook.com)" signed on at Mon Oct 06 10:13:29 2014. [10:13] *** "Heo Quay Sữa (-100002917495476@chat.facebook.com)" signed on at Mon Oct 06 10:13:51 2014. [10:14] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed off at Mon Oct 06 10:14:37 2014. [10:14] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed off at Mon Oct 06 10:14:52 2014. [10:14] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed on at Mon Oct 06 10:14:52 2014. [10:15] *** "Mèo Nhơn (-100005904606032@chat.facebook.com)" signed off at Mon Oct 06 10:15:24 2014. [10:15] *** "Ken Tran (-1172647459@chat.facebook.com)" signed on at Mon Oct 06 10:15:24 2014. [10:15] *** "Phan Phat Thuan (-100001678820611@chat.facebook.com)" signed off at Mon Oct 06 10:15:24 2014. [10:15] *** "Trần Trọng Lộc (-100001631501881@chat.facebook.com)" signed off at Mon Oct 06 10:15:24 2014. [10:15] *** "Lê Khánh (-100001829094507@chat.facebook.com)" signed off at Mon Oct 06 10:15:24 2014. [10:15] *** "Lực Lạng Lách (-100003591606008@chat.facebook.com)" signed off at Mon Oct 06 10:15:24 2014. [10:15] *** "Kute Bột Mỳ (-100000806547705@chat.facebook.com)" signed on at Mon Oct 06 10:15:24 2014. [10:15] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 10:15:24 2014. [10:15] *** "Mai Ly Tạ (-100000427850181@chat.facebook.com)" signed on at Mon Oct 06 10:15:24 2014. [10:15] *** "Sun Làng (-100001049230752@chat.facebook.com)" signed off at Mon Oct 06 10:15:24 2014. [10:15] *** "Viet Nguyen (-1376517978@chat.facebook.com)" signed off at Mon Oct 06 10:15:24 2014. [10:15] *** "Anh Nguyen (-1564360342@chat.facebook.com)" signed off at Mon Oct 06 10:15:24 2014. [10:15] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed on at Mon Oct 06 10:15:24 2014. [10:17] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed on at Mon Oct 06 10:17:26 2014. [10:17] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed off at Mon Oct 06 10:17:55 2014. [10:17] *** "Anh Lã (-1751248307@chat.facebook.com)" signed on at Mon Oct 06 10:17:55 2014. [10:17] *** "Lực Lạng Lách (-100003591606008@chat.facebook.com)" signed on at Mon Oct 06 10:17:55 2014. [10:17] *** "Ha Na (-100000564507060@chat.facebook.com)" signed on at Mon Oct 06 10:17:55 2014. [10:17] *** "Thanh Nguyên (-1673454664@chat.facebook.com)" signed off at Mon Oct 06 10:17:55 2014. [10:17] *** "Dinh Cao (-100001578579479@chat.facebook.com)" signed on at Mon Oct 06 10:17:55 2014. [10:17] *** "Mai Ly Tạ (-100000427850181@chat.facebook.com)" signed off at Mon Oct 06 10:17:55 2014. [10:17] *** "Viet Nguyen (-1376517978@chat.facebook.com)" signed on at Mon Oct 06 10:17:55 2014. [10:17] *** "Phan Phat Thuan (-100001678820611@chat.facebook.com)" signed on at Mon Oct 06 10:17:55 2014. [10:17] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed off at Mon Oct 06 10:17:55 2014. [10:18] *** "Ngân Nguyễn (-100006158045924@chat.facebook.com)" signed on at Mon Oct 06 10:18:13 2014. [10:19] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed off at Mon Oct 06 10:19:52 2014. [10:20] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed off at Mon Oct 06 10:20:25 2014. [10:20] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed on at Mon Oct 06 10:20:26 2014. [10:20] *** "Võ Huỳnh Anh Huy (-1177642878@chat.facebook.com)" signed on at Mon Oct 06 10:20:26 2014. [10:20] *** "Phan Phat Thuan (-100001678820611@chat.facebook.com)" signed off at Mon Oct 06 10:20:26 2014. [10:20] *** "Trần Trọng Lộc (-100001631501881@chat.facebook.com)" signed on at Mon Oct 06 10:20:26 2014. [10:20] *** "Hang Nguyen (-100001572713619@chat.facebook.com)" signed on at Mon Oct 06 10:20:26 2014. [10:20] *** "Lê Khánh (-100001829094507@chat.facebook.com)" signed on at Mon Oct 06 10:20:26 2014. [10:20] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed off at Mon Oct 06 10:20:26 2014. [10:20] *** "Đinh Hồng Châu (-100000695635825@chat.facebook.com)" signed off at Mon Oct 06 10:20:26 2014. [10:20] *** "Văn Võ (-100001644264472@chat.facebook.com)" signed on at Mon Oct 06 10:20:26 2014. [10:20] *** "Bùi Lê Kha (-100001533624519@chat.facebook.com)" signed on at Mon Oct 06 10:20:26 2014. [10:20] *** "Hậu Hào Hoa (-100000266701352@chat.facebook.com)" signed off at Mon Oct 06 10:20:26 2014. [10:20] *** "Khoa Mac Tu (-100000435470742@chat.facebook.com)" signed on at Mon Oct 06 10:20:26 2014. [10:20] *** "Mai Ly Tạ (-100000427850181@chat.facebook.com)" signed on at Mon Oct 06 10:20:26 2014. [10:21] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed on at Mon Oct 06 10:21:57 2014. [10:22] *** "Dinh Cao (-100001578579479@chat.facebook.com)" signed off at Mon Oct 06 10:22:57 2014. [10:22] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed off at Mon Oct 06 10:22:57 2014. [10:22] *** "Võ Huỳnh Anh Huy (-1177642878@chat.facebook.com)" signed off at Mon Oct 06 10:22:58 2014. [10:22] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed on at Mon Oct 06 10:22:58 2014. [10:22] *** "Lê Khánh (-100001829094507@chat.facebook.com)" signed off at Mon Oct 06 10:22:58 2014. [10:22] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed on at Mon Oct 06 10:22:58 2014. [10:22] *** "Ha Na (-100000564507060@chat.facebook.com)" signed off at Mon Oct 06 10:22:58 2014. [10:22] *** "Dung Huynh (-100001876085653@chat.facebook.com)" signed on at Mon Oct 06 10:22:58 2014. [10:22] *** "Linh Tran Trong (-100001288539586@chat.facebook.com)" signed off at Mon Oct 06 10:22:58 2014. [10:22] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 10:22:58 2014. [10:22] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed on at Mon Oct 06 10:22:58 2014. [10:22] *** "Khoa Mac Tu (-100000435470742@chat.facebook.com)" signed off at Mon Oct 06 10:22:58 2014. [10:24] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed on at Mon Oct 06 10:24:12 2014. [10:25] *** "Anh Lã (-1751248307@chat.facebook.com)" signed off at Mon Oct 06 10:25:28 2014. [10:25] *** "Ken Tran (-1172647459@chat.facebook.com)" signed off at Mon Oct 06 10:25:28 2014. [10:25] *** "Ryn Queen (-100003085447324@chat.facebook.com)" signed on at Mon Oct 06 10:25:28 2014. [10:25] *** "Hạ Hà (-100004508080284@chat.facebook.com)" signed on at Mon Oct 06 10:25:28 2014. [10:25] *** "Jenny Yen (-100000398293481@chat.facebook.com)" signed on at Mon Oct 06 10:25:28 2014. [10:25] *** "Thu Phạm (-100001771115757@chat.facebook.com)" signed on at Mon Oct 06 10:25:29 2014. [10:25] *** "Trần Trọng Lộc (-100001631501881@chat.facebook.com)" signed off at Mon Oct 06 10:25:29 2014. [10:25] *** "Trang Nguyễn (-100002950261718@chat.facebook.com)" signed on at Mon Oct 06 10:25:29 2014. [10:25] *** "Kute Bột Mỳ (-100000806547705@chat.facebook.com)" signed off at Mon Oct 06 10:25:29 2014. [10:25] *** "Heo Quay Sữa (-100002917495476@chat.facebook.com)" signed off at Mon Oct 06 10:25:29 2014. [10:25] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed on at Mon Oct 06 10:25:29 2014. [10:25] *** "Ngô Tấn Phát (-100000243600285@chat.facebook.com)" signed on at Mon Oct 06 10:25:29 2014. [10:25] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 10:25:29 2014. [10:25] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed off at Mon Oct 06 10:25:29 2014. [10:25] *** "Mai Ly Tạ (-100000427850181@chat.facebook.com)" signed off at Mon Oct 06 10:25:29 2014. [10:25] *** "Anh Nguyen (-1564360342@chat.facebook.com)" signed on at Mon Oct 06 10:25:29 2014. [10:27] *** "Trung Nguyen (-100001657239024@chat.facebook.com)" signed on at Mon Oct 06 10:27:59 2014. [10:27] *** "Tổ Chức (-1664666724@chat.facebook.com)" signed off at Mon Oct 06 10:27:59 2014. [10:27] *** "Ngô Tấn Phát (-100000243600285@chat.facebook.com)" signed off at Mon Oct 06 10:27:59 2014. [10:27] *** "Dansan Nguyen (-100000494668722@chat.facebook.com)" signed on at Mon Oct 06 10:27:59 2014. [10:27] *** "Bùi Lê Kha (-100001533624519@chat.facebook.com)" signed off at Mon Oct 06 10:27:59 2014. [10:27] *** "Mèo Meo (-100001538712025@chat.facebook.com)" signed on at Mon Oct 06 10:27:59 2014. [10:27] *** "Thu Phạm (-100001771115757@chat.facebook.com)" signed off at Mon Oct 06 10:27:59 2014. [10:27] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed off at Mon Oct 06 10:27:59 2014. [10:27] *** "Phan Phat Thuan (-100001678820611@chat.facebook.com)" signed on at Mon Oct 06 10:27:59 2014. [10:28] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed off at Mon Oct 06 10:28:55 2014. [10:30] *** "NG Doan (-100000058670304@chat.facebook.com)" signed on at Mon Oct 06 10:30:30 2014. [10:30] *** "Dansan Nguyen (-100000494668722@chat.facebook.com)" signed off at Mon Oct 06 10:30:30 2014. [10:30] *** "Võ Huỳnh Anh Huy (-1177642878@chat.facebook.com)" signed on at Mon Oct 06 10:30:30 2014. [10:30] *** "Thu Phạm (-100001771115757@chat.facebook.com)" signed on at Mon Oct 06 10:30:30 2014. [10:30] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed on at Mon Oct 06 10:30:30 2014. [10:30] *** "Hang Nguyen (-100001572713619@chat.facebook.com)" signed off at Mon Oct 06 10:30:30 2014. [10:30] *** "Trung Nguyen (-100001657239024@chat.facebook.com)" signed off at Mon Oct 06 10:30:30 2014. [10:30] *** "Lê Khánh (-100001829094507@chat.facebook.com)" signed on at Mon Oct 06 10:30:30 2014. [10:30] *** "Dung Huynh (-100001876085653@chat.facebook.com)" signed off at Mon Oct 06 10:30:30 2014. [10:30] *** "Tran Ngan (-100002455243513@chat.facebook.com)" signed on at Mon Oct 06 10:30:30 2014. [10:30] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 10:30:30 2014. [10:30] *** "Viet Nguyen (-1376517978@chat.facebook.com)" signed off at Mon Oct 06 10:30:30 2014. [10:30] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed on at Mon Oct 06 10:30:30 2014. [10:31] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed off at Mon Oct 06 10:31:26 2014. [10:31] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed on at Mon Oct 06 10:31:54 2014. [10:31] *** "Hoàng Phương (-100001288956181@chat.facebook.com)" signed on at Mon Oct 06 10:31:54 2014. [10:33] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed off at Mon Oct 06 10:33:01 2014. [10:33] *** "NG Doan (-100000058670304@chat.facebook.com)" signed off at Mon Oct 06 10:33:01 2014. [10:33] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed off at Mon Oct 06 10:33:01 2014. [10:33] *** "Hạ Hà (-100004508080284@chat.facebook.com)" signed off at Mon Oct 06 10:33:01 2014. [10:33] *** "Dansan Nguyen (-100000494668722@chat.facebook.com)" signed on at Mon Oct 06 10:33:01 2014. [10:33] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 10:33:01 2014. [10:33] *** "Mèo Meo (-100001538712025@chat.facebook.com)" signed off at Mon Oct 06 10:33:01 2014. [10:33] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed off at Mon Oct 06 10:33:01 2014. [10:33] *** "Tay Nicotine (-100002220791233@chat.facebook.com)" signed on at Mon Oct 06 10:33:01 2014. [10:33] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed off at Mon Oct 06 10:33:55 2014. [10:35] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed off at Mon Oct 06 10:35:32 2014. [10:35] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed off at Mon Oct 06 10:35:32 2014. [10:35] *** "Hạ Hà (-100004508080284@chat.facebook.com)" signed on at Mon Oct 06 10:35:32 2014. [10:35] *** "Hung Thần (-100001159478722@chat.facebook.com)" signed on at Mon Oct 06 10:35:32 2014. [10:35] *** "Phan Phat Thuan (-100001678820611@chat.facebook.com)" signed off at Mon Oct 06 10:35:32 2014. [10:35] *** "Trần Trọng Lộc (-100001631501881@chat.facebook.com)" signed on at Mon Oct 06 10:35:32 2014. [10:35] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed on at Mon Oct 06 10:35:32 2014. [10:35] *** "Lực Lạng Lách (-100003591606008@chat.facebook.com)" signed off at Mon Oct 06 10:35:32 2014. [10:35] *** "Tổ Chức (-1664666724@chat.facebook.com)" signed on at Mon Oct 06 10:35:32 2014. [10:35] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed off at Mon Oct 06 10:35:32 2014. [10:35] *** "Ha Na (-100000564507060@chat.facebook.com)" signed on at Mon Oct 06 10:35:32 2014. [10:35] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 10:35:32 2014. [10:35] *** "Khoa Mac Tu (-100000435470742@chat.facebook.com)" signed on at Mon Oct 06 10:35:32 2014. [10:35] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed on at Mon Oct 06 10:35:32 2014. [10:35] *** "Tay Nicotine (-100002220791233@chat.facebook.com)" signed off at Mon Oct 06 10:35:32 2014. [10:38] *** "Ken Tran (-1172647459@chat.facebook.com)" signed on at Mon Oct 06 10:38:03 2014. [10:38] *** "Ryn Queen (-100003085447324@chat.facebook.com)" signed off at Mon Oct 06 10:38:03 2014. [10:38] *** "Khoa Doan (-100002816835548@chat.facebook.com)" signed on at Mon Oct 06 10:38:03 2014. [10:38] *** "Đinh Hồng Châu (-100000695635825@chat.facebook.com)" signed on at Mon Oct 06 10:38:03 2014. [10:38] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 10:38:03 2014. [10:38] *** "Khoa Mac Tu (-100000435470742@chat.facebook.com)" signed off at Mon Oct 06 10:38:03 2014. [10:38] *** "Võ Huỳnh Anh Huy (-1177642878@chat.facebook.com)" signed off at Mon Oct 06 10:38:03 2014. [10:38] *** "Thu Phạm (-100001771115757@chat.facebook.com)" signed off at Mon Oct 06 10:38:03 2014. [10:38] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed off at Mon Oct 06 10:38:03 2014. [10:38] *** "Anh Nguyen (-1564360342@chat.facebook.com)" signed off at Mon Oct 06 10:38:03 2014. [10:38] *** "Hoàng Phương (-100001288956181@chat.facebook.com)" signed off at Mon Oct 06 10:38:24 2014. [10:38] *** "Ngân Nguyễn (-100006158045924@chat.facebook.com)" signed off at Mon Oct 06 10:38:41 2014. [10:40] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed on at Mon Oct 06 10:40:46 2014. [10:40] *** "Ken Tran (-1172647459@chat.facebook.com)" signed off at Mon Oct 06 10:40:46 2014. [10:40] *** "Dansan Nguyen (-100000494668722@chat.facebook.com)" signed off at Mon Oct 06 10:40:46 2014. [10:40] *** "Nhu Van (-100001107098635@chat.facebook.com)" signed on at Mon Oct 06 10:40:47 2014. [10:40] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed on at Mon Oct 06 10:40:47 2014. [10:40] *** "Võ Huỳnh Anh Huy (-1177642878@chat.facebook.com)" signed on at Mon Oct 06 10:40:47 2014. [10:40] *** "Jenny Yen (-100000398293481@chat.facebook.com)" signed off at Mon Oct 06 10:40:48 2014. [10:40] *** "Hung Thần (-100001159478722@chat.facebook.com)" signed off at Mon Oct 06 10:40:48 2014. [10:40] *** "Trần Trọng Lộc (-100001631501881@chat.facebook.com)" signed off at Mon Oct 06 10:40:48 2014. [10:40] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed off at Mon Oct 06 10:40:48 2014. [10:40] *** "Thương Nguyễn (-100005793421534@chat.facebook.com)" signed on at Mon Oct 06 10:40:48 2014. [10:40] *** "Lực Lạng Lách (-100003591606008@chat.facebook.com)" signed on at Mon Oct 06 10:40:48 2014. [10:40] *** "Ha Na (-100000564507060@chat.facebook.com)" signed off at Mon Oct 06 10:40:48 2014. [10:40] *** "Anh Nguyen (-1564360342@chat.facebook.com)" signed on at Mon Oct 06 10:40:48 2014. [10:41] *** "Hoàng Phương (-100001288956181@chat.facebook.com)" signed on at Mon Oct 06 10:41:39 2014. [10:43] *** "Ryn Queen (-100003085447324@chat.facebook.com)" signed on at Mon Oct 06 10:43:54 2014. [10:43] *** "Võ Huỳnh Anh Huy (-1177642878@chat.facebook.com)" signed off at Mon Oct 06 10:43:55 2014. [10:43] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed on at Mon Oct 06 10:43:55 2014. [10:43] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed on at Mon Oct 06 10:43:55 2014. [10:43] *** "Thương Nguyễn (-100005793421534@chat.facebook.com)" signed off at Mon Oct 06 10:43:55 2014. [10:43] *** "Lê Khánh (-100001829094507@chat.facebook.com)" signed off at Mon Oct 06 10:43:55 2014. [10:43] *** "Lực Lạng Lách (-100003591606008@chat.facebook.com)" signed off at Mon Oct 06 10:43:55 2014. [10:43] *** "Khoa Doan (-100002816835548@chat.facebook.com)" signed off at Mon Oct 06 10:43:55 2014. [10:43] *** "Đinh Hồng Châu (-100000695635825@chat.facebook.com)" signed off at Mon Oct 06 10:43:55 2014. [10:43] *** "Văn Võ (-100001644264472@chat.facebook.com)" signed off at Mon Oct 06 10:43:55 2014. [10:43] *** "Khoa Mac Tu (-100000435470742@chat.facebook.com)" signed on at Mon Oct 06 10:43:55 2014. [10:43] *** "Viet Nguyen (-1376517978@chat.facebook.com)" signed on at Mon Oct 06 10:43:55 2014. [10:44] *** "Quang Vinh Bui (-100000585413612@chat.facebook.com)" signed on at Mon Oct 06 10:44:08 2014. [10:44] *** "Kim Yến (-100008180195456@chat.facebook.com)" signed on at Mon Oct 06 10:44:44 2014. [10:45] *** "Hoàng Phương (-100001288956181@chat.facebook.com)" signed off at Mon Oct 06 10:45:09 2014. [10:45] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed off at Mon Oct 06 10:45:36 2014. [10:45] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed off at Mon Oct 06 10:45:36 2014. [10:45] *** "Phan Thiết Mũi Né (-100000290936157@chat.facebook.com)" signed on at Mon Oct 06 10:45:36 2014. [10:45] *** "Tổ Chức (-1664666724@chat.facebook.com)" signed off at Mon Oct 06 10:45:36 2014. [10:45] *** "Le Thuy (-100001700844807@chat.facebook.com)" signed on at Mon Oct 06 10:45:36 2014. [10:45] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 10:45:36 2014. [10:45] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed on at Mon Oct 06 10:45:36 2014. [10:45] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed off at Mon Oct 06 10:45:36 2014. [10:45] *** "Khoa Mac Tu (-100000435470742@chat.facebook.com)" signed off at Mon Oct 06 10:45:36 2014. [10:45] *** "Thảo Vi (-100002008129225@chat.facebook.com)" signed on at Mon Oct 06 10:45:36 2014. [10:45] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed off at Mon Oct 06 10:45:37 2014. [10:47] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed on at Mon Oct 06 10:47:26 2014. [10:48] *** "Huỳnh Xuân Phương Nguyễn (-100001286160404@chat.facebook.com)" signed on at Mon Oct 06 10:48:07 2014. [10:48] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed on at Mon Oct 06 10:48:07 2014. [10:48] *** "Phan Thiết Mũi Né (-100000290936157@chat.facebook.com)" signed off at Mon Oct 06 10:48:07 2014. [10:48] *** "Dinh Cao (-100001578579479@chat.facebook.com)" signed on at Mon Oct 06 10:48:07 2014. [10:48] *** "Hạ Hà (-100004508080284@chat.facebook.com)" signed off at Mon Oct 06 10:48:07 2014. [10:48] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed on at Mon Oct 06 10:48:07 2014. [10:48] *** "Tran Van Truong (-100001899968334@chat.facebook.com)" signed on at Mon Oct 06 10:48:07 2014. [10:48] *** "Thu Phạm (-100001771115757@chat.facebook.com)" signed on at Mon Oct 06 10:48:07 2014. [10:48] *** "Jenny Yen (-100000398293481@chat.facebook.com)" signed on at Mon Oct 06 10:48:07 2014. [10:48] *** "Trang Nguyễn (-100002950261718@chat.facebook.com)" signed off at Mon Oct 06 10:48:07 2014. [10:48] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed on at Mon Oct 06 10:48:07 2014. [10:48] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed on at Mon Oct 06 10:48:07 2014. [10:48] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 10:48:07 2014. [10:48] *** "Văn Võ (-100001644264472@chat.facebook.com)" signed on at Mon Oct 06 10:48:08 2014. [10:48] *** "Khoa Mac Tu (-100000435470742@chat.facebook.com)" signed on at Mon Oct 06 10:48:08 2014. [10:49] *** "Quang Vinh Bui (-100000585413612@chat.facebook.com)" signed off at Mon Oct 06 10:49:53 2014. [10:50] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed off at Mon Oct 06 10:50:26 2014. [10:50] *** "Mèo Nhơn (-100005904606032@chat.facebook.com)" signed on at Mon Oct 06 10:50:39 2014. [10:50] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed off at Mon Oct 06 10:50:39 2014. [10:50] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed on at Mon Oct 06 10:50:39 2014. [10:50] *** "KeoDang Hd (-100001200371522@chat.facebook.com)" signed on at Mon Oct 06 10:50:39 2014. [10:50] *** "Dinh Cao (-100001578579479@chat.facebook.com)" signed off at Mon Oct 06 10:50:40 2014. [10:50] *** "Hạ Hà (-100004508080284@chat.facebook.com)" signed on at Mon Oct 06 10:50:40 2014. [10:50] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed off at Mon Oct 06 10:50:40 2014. [10:50] *** "Nhu Van (-100001107098635@chat.facebook.com)" signed off at Mon Oct 06 10:50:41 2014. [10:50] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed on at Mon Oct 06 10:50:41 2014. [10:50] *** "Thương Nguyễn (-100005793421534@chat.facebook.com)" signed on at Mon Oct 06 10:50:41 2014. [10:50] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed off at Mon Oct 06 10:50:41 2014. [10:50] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed off at Mon Oct 06 10:50:41 2014. [10:50] *** "Khánh Mã (-553157102@chat.facebook.com)" signed on at Mon Oct 06 10:50:41 2014. [10:50] *** "Văn Võ (-100001644264472@chat.facebook.com)" signed off at Mon Oct 06 10:50:41 2014. [10:50] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 10:50:41 2014. [10:50] *** "Khoa Mac Tu (-100000435470742@chat.facebook.com)" signed off at Mon Oct 06 10:50:41 2014. [10:50] *** "Thảo Vi (-100002008129225@chat.facebook.com)" signed off at Mon Oct 06 10:50:41 2014. [10:50] *** "Viet Nguyen (-1376517978@chat.facebook.com)" signed off at Mon Oct 06 10:50:41 2014. [10:50] *** "Nguyễn Hoàng Duy (-100000337269057@chat.facebook.com)" signed off at Mon Oct 06 10:50:41 2014. [10:50] *** "Thao Nguyen Truong (-100002004616401@chat.facebook.com)" signed on at Mon Oct 06 10:50:41 2014. [10:51] *** "Hòa Nguyễn (-100004120425211@chat.facebook.com)" signed off at Mon Oct 06 10:51:29 2014. [10:52] *** "Hoàng Phương (-100001288956181@chat.facebook.com)" signed on at Mon Oct 06 10:52:10 2014. [10:53] *** "Huỳnh Xuân Phương Nguyễn (-100001286160404@chat.facebook.com)" signed off at Mon Oct 06 10:53:09 2014. [10:53] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed off at Mon Oct 06 10:53:09 2014. [10:53] *** "Dansan Nguyen (-100000494668722@chat.facebook.com)" signed on at Mon Oct 06 10:53:10 2014. [10:53] *** "Nguyễn Văn Kiệt (-100001209780455@chat.facebook.com)" signed off at Mon Oct 06 10:53:10 2014. [10:53] *** "Nhu Van (-100001107098635@chat.facebook.com)" signed on at Mon Oct 06 10:53:10 2014. [10:53] *** "Tran Van Truong (-100001899968334@chat.facebook.com)" signed off at Mon Oct 06 10:53:10 2014. [10:53] *** "Thu Phạm (-100001771115757@chat.facebook.com)" signed off at Mon Oct 06 10:53:10 2014. [10:53] *** "Jenny Yen (-100000398293481@chat.facebook.com)" signed off at Mon Oct 06 10:53:10 2014. [10:53] *** "Trần Trọng Lộc (-100001631501881@chat.facebook.com)" signed on at Mon Oct 06 10:53:10 2014. [10:53] *** "Dương Nguyễn (-100000993988185@chat.facebook.com)" signed on at Mon Oct 06 10:53:10 2014. [10:53] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed on at Mon Oct 06 10:53:10 2014. [10:53] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed on at Mon Oct 06 10:53:10 2014. [10:53] *** "Khánh Mã (-553157102@chat.facebook.com)" signed off at Mon Oct 06 10:53:10 2014. [10:53] *** "Tran Ngan (-100002455243513@chat.facebook.com)" signed off at Mon Oct 06 10:53:10 2014. [10:53] *** "Ngô Tấn Phát (-100000243600285@chat.facebook.com)" signed on at Mon Oct 06 10:53:10 2014. [10:53] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 10:53:10 2014. [10:53] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed off at Mon Oct 06 10:53:10 2014. [10:53] *** "Khoa Mac Tu (-100000435470742@chat.facebook.com)" signed on at Mon Oct 06 10:53:10 2014. [10:53] *** "Nguyễn Hoàng Duy (-100000337269057@chat.facebook.com)" signed on at Mon Oct 06 10:53:10 2014. [10:55] *** "Nguyễn Hải Đăng (-100000885842946@chat.facebook.com)" signed on at Mon Oct 06 10:55:40 2014. [10:55] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed on at Mon Oct 06 10:55:40 2014. [10:55] *** "David Cook (-1795548626@chat.facebook.com)" signed on at Mon Oct 06 10:55:40 2014. [10:55] *** "Thu Phạm (-100001771115757@chat.facebook.com)" signed on at Mon Oct 06 10:55:40 2014. [10:55] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed off at Mon Oct 06 10:55:40 2014. [10:55] *** "Thương Nguyễn (-100005793421534@chat.facebook.com)" signed off at Mon Oct 06 10:55:40 2014. [10:55] *** "Lực Lạng Lách (-100003591606008@chat.facebook.com)" signed on at Mon Oct 06 10:55:40 2014. [10:55] *** "Bao Anh (-100001149981835@chat.facebook.com)" signed on at Mon Oct 06 10:55:40 2014. [10:55] *** "Ngô Tấn Phát (-100000243600285@chat.facebook.com)" signed off at Mon Oct 06 10:55:40 2014. [10:55] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 10:55:40 2014. [10:55] *** "Khoa Mac Tu (-100000435470742@chat.facebook.com)" signed off at Mon Oct 06 10:55:40 2014. [10:55] *** "Thao Nguyen Truong (-100002004616401@chat.facebook.com)" signed off at Mon Oct 06 10:55:40 2014. [10:56] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed on at Mon Oct 06 10:56:37 2014. [10:58] *** "Mèo Nhơn (-100005904606032@chat.facebook.com)" signed off at Mon Oct 06 10:58:11 2014. [10:58] *** "Nguyễn Hải Đăng (-100000885842946@chat.facebook.com)" signed off at Mon Oct 06 10:58:11 2014. [10:58] *** "Huỳnh Xuân Phương Nguyễn (-100001286160404@chat.facebook.com)" signed on at Mon Oct 06 10:58:11 2014. [10:58] *** "Phan Thiết Mũi Né (-100000290936157@chat.facebook.com)" signed on at Mon Oct 06 10:58:11 2014. [10:58] *** "Trần Trọng Lộc (-100001631501881@chat.facebook.com)" signed off at Mon Oct 06 10:58:11 2014. [10:58] *** "Thương Nguyễn (-100005793421534@chat.facebook.com)" signed on at Mon Oct 06 10:58:11 2014. [10:58] *** "Bao Anh (-100001149981835@chat.facebook.com)" signed off at Mon Oct 06 10:58:11 2014. [10:58] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed off at Mon Oct 06 10:58:11 2014. [10:58] *** "Bảo Chí (-100000108873370@chat.facebook.com)" signed on at Mon Oct 06 10:58:11 2014. [10:58] *** "Ngô Tấn Phát (-100000243600285@chat.facebook.com)" signed on at Mon Oct 06 10:58:11 2014. [10:58] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 10:58:11 2014. [10:58] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed on at Mon Oct 06 10:58:11 2014. [10:58] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed on at Mon Oct 06 10:58:11 2014. [11:00] *** "Nhi Lê (-100002923295960@chat.facebook.com)" signed on at Mon Oct 06 11:00:34 2014. [11:00] *** "Phạm Thanh Liêm (-100000450559214@chat.facebook.com)" signed on at Mon Oct 06 11:00:42 2014. [11:00] *** "Hạ Hà (-100004508080284@chat.facebook.com)" signed off at Mon Oct 06 11:00:42 2014. [11:00] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed on at Mon Oct 06 11:00:42 2014. [11:00] *** "Nguyễn Văn Kiệt (-100001209780455@chat.facebook.com)" signed on at Mon Oct 06 11:00:43 2014. [11:00] *** "Thu Phạm (-100001771115757@chat.facebook.com)" signed off at Mon Oct 06 11:00:43 2014. [11:00] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed on at Mon Oct 06 11:00:43 2014. [11:00] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed off at Mon Oct 06 11:00:43 2014. [11:00] *** "Thương Nguyễn (-100005793421534@chat.facebook.com)" signed off at Mon Oct 06 11:00:43 2014. [11:00] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed off at Mon Oct 06 11:00:43 2014. [11:00] *** "Lực Lạng Lách (-100003591606008@chat.facebook.com)" signed off at Mon Oct 06 11:00:43 2014. [11:00] *** "Khoa Doan (-100002816835548@chat.facebook.com)" signed on at Mon Oct 06 11:00:43 2014. [11:00] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 11:00:43 2014. [11:00] *** "Uyên Hoàng (-100001200720909@chat.facebook.com)" signed on at Mon Oct 06 11:00:43 2014. [11:00] *** "Nguyễn Hoàng Duy (-100000337269057@chat.facebook.com)" signed off at Mon Oct 06 11:00:43 2014. [11:00] *** "Thao Nguyen Truong (-100002004616401@chat.facebook.com)" signed on at Mon Oct 06 11:00:43 2014. [11:03] *** "Huỳnh Xuân Phương Nguyễn (-100001286160404@chat.facebook.com)" signed off at Mon Oct 06 11:03:58 2014. [11:03] *** "Phan Thiết Mũi Né (-100000290936157@chat.facebook.com)" signed off at Mon Oct 06 11:03:59 2014. [11:03] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed off at Mon Oct 06 11:03:59 2014. [11:03] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed off at Mon Oct 06 11:03:59 2014. [11:03] *** "Thương Nguyễn (-100005793421534@chat.facebook.com)" signed on at Mon Oct 06 11:03:59 2014. [11:03] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed on at Mon Oct 06 11:03:59 2014. [11:03] *** "Bảo Chí (-100000108873370@chat.facebook.com)" signed off at Mon Oct 06 11:03:59 2014. [11:03] *** "Ngô Tấn Phát (-100000243600285@chat.facebook.com)" signed off at Mon Oct 06 11:03:59 2014. [11:03] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed off at Mon Oct 06 11:03:59 2014. [11:04] *** "Viet Nguyen (-1376517978@chat.facebook.com)" signed on at Mon Oct 06 11:04:00 2014. [11:04] *** "Thao Nguyen Truong (-100002004616401@chat.facebook.com)" signed off at Mon Oct 06 11:04:00 2014. [11:04] *** "Nguyễn Hoàng Duy (-100000337269057@chat.facebook.com)" signed on at Mon Oct 06 11:04:00 2014. [11:04] *** "Nhi Lê (-100002923295960@chat.facebook.com)" signed off at Mon Oct 06 11:04:00 2014. [11:04] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed off at Mon Oct 06 11:04:41 2014. [11:05] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed on at Mon Oct 06 11:05:44 2014. [11:05] *** "Phan Thiết Mũi Né (-100000290936157@chat.facebook.com)" signed on at Mon Oct 06 11:05:44 2014. [11:05] *** "Dansan Nguyen (-100000494668722@chat.facebook.com)" signed off at Mon Oct 06 11:05:44 2014. [11:05] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed on at Mon Oct 06 11:05:44 2014. [11:05] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed on at Mon Oct 06 11:05:44 2014. [11:05] *** "Thương Nguyễn (-100005793421534@chat.facebook.com)" signed off at Mon Oct 06 11:05:44 2014. [11:05] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed on at Mon Oct 06 11:05:44 2014. [11:05] *** "Khoa Doan (-100002816835548@chat.facebook.com)" signed off at Mon Oct 06 11:05:44 2014. [11:05] *** "Khánh Mã (-553157102@chat.facebook.com)" signed on at Mon Oct 06 11:05:44 2014. [11:05] *** "Duyên Huỳnh (-100003827983403@chat.facebook.com)" signed on at Mon Oct 06 11:05:44 2014. [11:05] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed on at Mon Oct 06 11:05:45 2014. [11:05] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed on at Mon Oct 06 11:05:45 2014. [11:05] *** "My Nguyễn (-100005279832126@chat.facebook.com)" signed on at Mon Oct 06 11:05:45 2014. [11:05] *** "Anh Nguyen (-1564360342@chat.facebook.com)" signed off at Mon Oct 06 11:05:45 2014. [11:07] *** Connection to FACEBOOK has failed: system errorcode "10054". [11:07] *** You have been disconnected. [11:07] *** Attempting to reconnect in 42 seconds... [11:07] *** Attempting to reconnect in 39 seconds... [11:08] *** Reconnecting to FACEBOOK as "ntphat691". [11:08] *** Checking session key... [11:08] *** Reconnecting to Facebook as "ntphat691". [11:08] *** TLS established using ECDHE-RSA-DES-CBC3-SHA (TLSv1/SSLv3). [11:08] *** Bound to resource -100001071227775@chat.facebook.com/NTP-PC. [11:08] *** You are now set as "online". [11:08] *** You have successfully connected to Facebook. [11:08] *** "WOn Best Rurn (-100001076636722@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Phạm Thanh Liêm (-100000450559214@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Ryn Queen (-100003085447324@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "KeoDang Hd (-100001200371522@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Phat Quy (-100001276104877@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Duyên Huỳnh (-100003827983403@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Hieu Soldat (-100001390114308@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Phạm Lê Phú (-100001150671628@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Le Thuy (-100001700844807@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Nhu Van (-100001107098635@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Nguyễn Văn Kiệt (-100001209780455@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Nguyễn Ngọc Ánh Minh (-100001866017895@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Dương Nguyễn (-100000993988185@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Dai Luong (-100000466067184@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Nguyễn Hoàng Duy (-100000337269057@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:08] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed on at Mon Oct 06 11:08:43 2014. [11:09] *** "Ngân Nguyễn (-100006158045924@chat.facebook.com)" signed on at Mon Oct 06 11:09:27 2014. [11:10] *** "Hoàng Phương (-100001288956181@chat.facebook.com)" signed on at Mon Oct 06 11:10:55 2014. [11:11] *** "Phạm Thanh Liêm (-100000450559214@chat.facebook.com)" signed off at Mon Oct 06 11:11:08 2014. [11:11] *** "Trần Duy Khương (-100000919550487@chat.facebook.com)" signed on at Mon Oct 06 11:11:08 2014. [11:11] *** "Nhan Tran (-100000180776352@chat.facebook.com)" signed on at Mon Oct 06 11:11:08 2014. [11:11] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "Huu Nguyen (-100003005960466@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "Le Thuy (-100001700844807@chat.facebook.com)" signed off at Mon Oct 06 11:11:09 2014. [11:11] *** "Dansan Nguyen (-100000494668722@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "Võ Huỳnh Anh Huy (-1177642878@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "Tran Van Truong (-100001899968334@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed off at Mon Oct 06 11:11:09 2014. [11:11] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed off at Mon Oct 06 11:11:09 2014. [11:11] *** "Hang Nguyen (-100001572713619@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "Khoa Doan (-100002816835548@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "Luân Nguyễn (-100001233600287@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "Viet Nguyen (-1376517978@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:11] *** "My Nguyễn (-100005279832126@chat.facebook.com)" signed on at Mon Oct 06 11:11:09 2014. [11:12] *** "Đạt Quốc Trần (-100000189265478@chat.facebook.com)" signed on at Mon Oct 06 11:12:07 2014. [11:13] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed off at Mon Oct 06 11:13:39 2014. [11:13] *** "Phan Thiết Mũi Né (-100000290936157@chat.facebook.com)" signed on at Mon Oct 06 11:13:39 2014. [11:13] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed off at Mon Oct 06 11:13:39 2014. [11:13] *** "Le Thuy (-100001700844807@chat.facebook.com)" signed on at Mon Oct 06 11:13:39 2014. [11:13] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed off at Mon Oct 06 11:13:39 2014. [11:13] *** "Võ Huỳnh Anh Huy (-1177642878@chat.facebook.com)" signed off at Mon Oct 06 11:13:39 2014. [11:13] *** "My Nguyễn (-100005279832126@chat.facebook.com)" signed off at Mon Oct 06 11:13:39 2014. [11:13] *** "Nắng Chiều (-1123072013@chat.facebook.com)" signed off at Mon Oct 06 11:13:39 2014. [11:13] *** "Thao Nguyen Truong (-100002004616401@chat.facebook.com)" signed on at Mon Oct 06 11:13:53 2014. [11:13] *** "Storm Thane (-1119261800@chat.facebook.com)" signed on at Mon Oct 06 11:13:53 2014. [11:16] *** "Trần Duy Khương (-100000919550487@chat.facebook.com)" signed off at Mon Oct 06 11:16:10 2014. [11:16] *** "Phan Thiết Mũi Né (-100000290936157@chat.facebook.com)" signed off at Mon Oct 06 11:16:10 2014. [11:16] *** "Huu Nguyen (-100003005960466@chat.facebook.com)" signed off at Mon Oct 06 11:16:10 2014. [11:16] *** "Dansan Nguyen (-100000494668722@chat.facebook.com)" signed off at Mon Oct 06 11:16:10 2014. [11:16] *** "Bin Nguyen (-100001470843559@chat.facebook.com)" signed off at Mon Oct 06 11:16:11 2014. [11:16] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed on at Mon Oct 06 11:16:11 2014. [11:16] *** "Lê Minh Hiền (-100001325970319@chat.facebook.com)" signed on at Mon Oct 06 11:16:11 2014. [11:16] *** "Storm Thane (-1119261800@chat.facebook.com)" signed off at Mon Oct 06 11:16:11 2014. [11:16] *** "Đặng Phúc (-100000842239657@chat.facebook.com)" signed off at Mon Oct 06 11:16:11 2014. [11:16] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed on at Mon Oct 06 11:16:11 2014. [11:16] *** "Khoa Doan (-100002816835548@chat.facebook.com)" signed off at Mon Oct 06 11:16:11 2014. [11:16] *** "Hồ Duy Hải (-100001130651768@chat.facebook.com)" signed on at Mon Oct 06 11:16:11 2014. [11:16] *** "Bảo Chí (-100000108873370@chat.facebook.com)" signed on at Mon Oct 06 11:16:11 2014. [11:16] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed off at Mon Oct 06 11:16:11 2014. [11:16] *** "Luân Nguyễn (-100001233600287@chat.facebook.com)" signed off at Mon Oct 06 11:16:11 2014. [11:16] *** "Thao Nguyen Truong (-100002004616401@chat.facebook.com)" signed off at Mon Oct 06 11:16:11 2014. [11:18] *** "Nhu Van (-100001107098635@chat.facebook.com)" signed off at Mon Oct 06 11:18:41 2014. [11:18] *** "Lê Minh Hiền (-100001325970319@chat.facebook.com)" signed off at Mon Oct 06 11:18:41 2014. [11:18] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed off at Mon Oct 06 11:18:41 2014. [11:18] *** "LeVis Nguyen (-100000247538440@chat.facebook.com)" signed on at Mon Oct 06 11:18:41 2014. [11:18] *** "Duyên Huỳnh (-100003827983403@chat.facebook.com)" signed off at Mon Oct 06 11:18:41 2014. [11:18] *** "Khánh Mã (-553157102@chat.facebook.com)" signed on at Mon Oct 06 11:18:41 2014. [11:18] *** "Bảo Chí (-100000108873370@chat.facebook.com)" signed off at Mon Oct 06 11:18:41 2014. [11:18] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed on at Mon Oct 06 11:18:41 2014. [11:18] *** "Luân Nguyễn (-100001233600287@chat.facebook.com)" signed on at Mon Oct 06 11:18:41 2014. [11:18] *** "Hoàng Phương (-100001288956181@chat.facebook.com)" signed off at Mon Oct 06 11:18:41 2014. [11:18] *** "Anh Nguyen (-1564360342@chat.facebook.com)" signed on at Mon Oct 06 11:18:41 2014. [11:18] *** "Nguyen Nhu (-100001572075089@chat.facebook.com)" signed on at Mon Oct 06 11:18:41 2014. [11:19] *** "Hoàng Phương (-100001288956181@chat.facebook.com)" signed on at Mon Oct 06 11:19:55 2014. [11:20] *** "Ngân Nguyễn (-100006158045924@chat.facebook.com)" signed off at Mon Oct 06 11:20:43 2014. [11:20] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed on at Mon Oct 06 11:20:43 2014. [11:21] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed on at Mon Oct 06 11:21:16 2014. [11:21] *** "Ken Tran (-1172647459@chat.facebook.com)" signed on at Mon Oct 06 11:21:16 2014. [11:21] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed on at Mon Oct 06 11:21:16 2014. [11:21] *** "Khánh Mã (-553157102@chat.facebook.com)" signed off at Mon Oct 06 11:21:16 2014. [11:21] *** "Duyên Huỳnh (-100003827983403@chat.facebook.com)" signed on at Mon Oct 06 11:21:16 2014. [11:21] *** "Hồ Duy Hải (-100001130651768@chat.facebook.com)" signed off at Mon Oct 06 11:21:16 2014. [11:21] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 11:21:16 2014. [11:21] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed off at Mon Oct 06 11:21:16 2014. [11:21] *** "Luân Nguyễn (-100001233600287@chat.facebook.com)" signed off at Mon Oct 06 11:21:16 2014. [11:22] *** Connection to FACEBOOK has failed: system errorcode "10054". [11:22] *** You have been disconnected. [11:22] *** Attempting to reconnect in 39 seconds... [11:22] *** Attempting to reconnect in 30 seconds... [11:22] *** Reconnecting to FACEBOOK as "ntphat691". [11:22] *** Checking session key... [11:22] *** Reconnecting to Facebook as "ntphat691". [11:22] *** TLS established using ECDHE-RSA-DES-CBC3-SHA (TLSv1/SSLv3). [11:22] *** Bound to resource -100001071227775@chat.facebook.com/NTP-PC. [11:22] *** You are now set as "online". [11:22] *** You have successfully connected to Facebook. [11:23] *** "WOn Best Rurn (-100001076636722@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Nhan Tran (-100000180776352@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Ken Tran (-1172647459@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Ryn Queen (-100003085447324@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "KeoDang Hd (-100001200371522@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Phat Quy (-100001276104877@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Lê Huy (-100001473810242@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Hang Nguyen (-100001572713619@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "LeVis Nguyen (-100000247538440@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Duyên Huỳnh (-100003827983403@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Hieu Soldat (-100001390114308@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Phạm Lê Phú (-100001150671628@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Viet Nguyen (-1376517978@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Đạt Quốc Trần (-100000189265478@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Bánh Mập (-100005341093318@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Le Thuy (-100001700844807@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Nguyễn Văn Kiệt (-100001209780455@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Nguyễn Ngọc Ánh Minh (-100001866017895@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Dương Nguyễn (-100000993988185@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Dai Luong (-100000466067184@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Anh Nguyen (-1564360342@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Nguyễn Hoàng Duy (-100000337269057@chat.facebook.com)" signed on at Mon Oct 06 11:23:01 2014. [11:23] *** "Ngân Nguyễn (-100006158045924@chat.facebook.com)" signed on at Mon Oct 06 11:23:22 2014. [11:23] *** "LeVis Nguyen (-100000247538440@chat.facebook.com)" signed off at Mon Oct 06 11:23:43 2014. [11:24] *** "Phuocthanh Nguyen (-100007149521090@chat.facebook.com)" signed on at Mon Oct 06 11:24:56 2014. [11:25] *** "Hòa Nguyễn (-100004120425211@chat.facebook.com)" signed on at Mon Oct 06 11:25:26 2014. [11:25] *** "Lucky Beatbox How (-100004251401877@chat.facebook.com)" signed on at Mon Oct 06 11:25:27 2014. [11:25] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed off at Mon Oct 06 11:25:27 2014. [11:25] *** "Tổ Chức (-1664666724@chat.facebook.com)" signed on at Mon Oct 06 11:25:27 2014. [11:25] *** "Ken Tran (-1172647459@chat.facebook.com)" signed off at Mon Oct 06 11:25:27 2014. [11:25] *** "Tuan Dinh Nhu (-1401143295@chat.facebook.com)" signed off at Mon Oct 06 11:25:27 2014. [11:25] *** "Khánh Mã (-553157102@chat.facebook.com)" signed on at Mon Oct 06 11:25:27 2014. [11:25] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed off at Mon Oct 06 11:25:27 2014. [11:25] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed on at Mon Oct 06 11:25:27 2014. [11:25] *** "Nguyễn Thanh Phong (-100000560415353@chat.facebook.com)" signed on at Mon Oct 06 11:25:27 2014. [11:25] *** "Thao Nguyen Truong (-100002004616401@chat.facebook.com)" signed on at Mon Oct 06 11:25:27 2014. [11:27] *** "Nhan Tran (-100000180776352@chat.facebook.com)" signed off at Mon Oct 06 11:27:58 2014. [11:27] *** "Mai Ly (-100000898590146@chat.facebook.com)" signed on at Mon Oct 06 11:27:58 2014. [11:27] *** "Dinh Cao (-100001578579479@chat.facebook.com)" signed on at Mon Oct 06 11:27:58 2014. [11:27] *** "Thaitu Jim (-100001220220189@chat.facebook.com)" signed on at Mon Oct 06 11:27:58 2014. [11:27] *** "Khanh Duy (-100008337700164@chat.facebook.com)" signed off at Mon Oct 06 11:27:58 2014. [11:27] *** "Tổ Chức (-1664666724@chat.facebook.com)" signed off at Mon Oct 06 11:27:58 2014. [11:27] *** "Hồ Duy Hải (-100001130651768@chat.facebook.com)" signed on at Mon Oct 06 11:27:58 2014. [11:27] *** "Bảo Chí (-100000108873370@chat.facebook.com)" signed on at Mon Oct 06 11:27:58 2014. [11:27] *** "Văn Võ (-100001644264472@chat.facebook.com)" signed on at Mon Oct 06 11:27:58 2014. [11:27] *** "Nhat King Nguyen (-100001240951414@chat.facebook.com)" signed off at Mon Oct 06 11:27:58 2014. [11:27] *** "Nguyễn Thanh Phong (-100000560415353@chat.facebook.com)" signed off at Mon Oct 06 11:27:58 2014. [11:27] *** "Mỹ Dạ (-100000739592727@chat.facebook.com)" signed off at Mon Oct 06 11:27:58 2014. [11:27] *** "Thao Nguyen Truong (-100002004616401@chat.facebook.com)" signed off at Mon Oct 06 11:27:58 2014. [11:30] *** "Vũ Tuấn Dũng (-100001748690280@chat.facebook.com)" signed on at Mon Oct 06 11:30:23 2014. [11:30] *** "Nguyen Thanh Hung (-100000666832422@chat.facebook.com)" signed on at Mon Oct 06 11:30:29 2014. [11:30] *** "Rura Luna (-100000764038552@chat.facebook.com)" signed on at Mon Oct 06 11:30:29 2014. [11:30] *** "Mai Ly (-100000898590146@chat.facebook.com)" signed off at Mon Oct 06 11:30:29 2014. [11:30] *** "Dinh Cao (-100001578579479@chat.facebook.com)" signed off at Mon Oct 06 11:30:29 2014. [11:30] *** "Khánh Mã (-553157102@chat.facebook.com)" signed off at Mon Oct 06 11:30:29 2014. [11:30] *** "Duyên Huỳnh (-100003827983403@chat.facebook.com)" signed off at Mon Oct 06 11:30:29 2014. [11:30] *** "Ngô Tấn Phát (-100000243600285@chat.facebook.com)" signed on at Mon Oct 06 11:30:29 2014. [11:30] *** "Nguyễn Đắc Liêm (-100000155811164@chat.facebook.com)" signed on at Mon Oct 06 11:30:29 2014. [11:30] *** "Luân Nguyễn (-100001233600287@chat.facebook.com)" signed on at Mon Oct 06 11:30:29 2014. [11:30] *** "Viet Nguyen (-1376517978@chat.facebook.com)" signed off at Mon Oct 06 11:30:29 2014. [11:30] *** "Nguyễn Hoàng Duy (-100000337269057@chat.facebook.com)" signed off at Mon Oct 06 11:30:29 2014. [11:30] *** "Thao Nguyen Truong (-100002004616401@chat.facebook.com)" signed on at Mon Oct 06 11:30:29 2014. [11:31] *** "Ngân Nguyễn (-100006158045924@chat.facebook.com)" signed off at Mon Oct 06 11:31:51 2014. [11:31] *** "Đạt Quốc Trần (-100000189265478@chat.facebook.com)" signed off at Mon Oct 06 11:31:51 2014. '; preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0); // Print the entire match result var_dump($matches);

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for PHP, please visit: http://php.net/manual/en/ref.pcre.php