diff --git a/.gitignore b/.gitignore index f5edbac..93a7b46 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ target eclipse-classes project/boot lib_managed +workspace diff --git a/bin/benchmark-activemq b/bin/benchmark-activemq new file mode 100755 index 0000000..a2bccba --- /dev/null +++ b/bin/benchmark-activemq @@ -0,0 +1,59 @@ +#!/bin/bash +# +# This shell script automates running the stomp-benchmark [1] against the +# Apache ActiveMQ project [2]. +# +# [1]: http://github.com/chirino/stomp-benchmark +# [2]: http://activemq.apache.org +# + +true \ +${ACTIVEMQ_VERSION:=5.5.1} \ +${ACTIVEMQ_DOWNLOAD:="http://archive.apache.org/dist/activemq/apache-activemq/${ACTIVEMQ_VERSION}/apache-activemq-${ACTIVEMQ_VERSION}-bin.tar.gz"} +BASEDIR=`dirname "$0"`/.. ; cd "${BASEDIR}" ; BASEDIR=`pwd` ; cd - > /dev/null +. ${BASEDIR}/bin/benchmark-setup + +# +# Install the apollo distro +# +ACTIVEMQ_HOME="${WORKSPACE}/apache-activemq-${ACTIVEMQ_VERSION}" +if [ ! -d "${ACTIVEMQ_HOME}" ]; then + cd "${WORKSPACE}" + wget "$ACTIVEMQ_DOWNLOAD" + tar -zxvf apache-activemq-${ACTIVEMQ_VERSION}-bin.tar.gz + rm -rf apache-activemq-${ACTIVEMQ_VERSION}-bin.tar.gz +fi + + +# +# Cleanup preious executions. +killall -9 java erl epmd apollo > /dev/null 2>&1 +rm -rf ${ACTIVEMQ_HOME}/data/* + +# +# Configuration +export ACTIVEMQ_OPTS="-Xmx4G -Xms1G -Dorg.apache.activemq.UseDedicatedTaskRunner=true -Djava.util.logging.config.file=logging.properties" + +# +# Start the broker +# +CONSOLE_LOG="${REPORTS_HOME}/activemq-${ACTIVEMQ_VERSION}.log" +"${ACTIVEMQ_HOME}/bin/activemq" console "xbean:file:${ACTIVEMQ_HOME}/conf/activemq.xml" > "${CONSOLE_LOG}" 2>&1 & +ACTIVEMQ_PID=$! +echo "Started ActiveMQ with PID: ${ACTIVEMQ_PID}" +sleep 5 +cat ${CONSOLE_LOG} + +# +# Run the benchmark +# +cd "${BASEDIR}/jms-benchmark-activemq" +export CLASSPATH=`mvn dependency:build-classpath | grep -v "\["` +export CLASSPATH="${CLASSPATH}:target/classes" +benchmark --provider activemq --display-errors --url tcp://localhost:61616 "${REPORTS_HOME}/activemq-${ACTIVEMQ_VERSION}-openwire.json" + +# Kill the broker +kill -9 ${ACTIVEMQ_PID} + +# Create a report. +"${BASEDIR}/bin/benchmark-report" $* diff --git a/bin/benchmark-all b/bin/benchmark-all new file mode 100755 index 0000000..48a14ef --- /dev/null +++ b/bin/benchmark-all @@ -0,0 +1,12 @@ +#!/bin/bash +# Runs all the benchmarks. +# + +BASEDIR=`dirname "$0"`/.. ; cd "${BASEDIR}" ; BASEDIR=`pwd` ; cd - > /dev/null +export SKIP_REPORT="true" +"${BASEDIR}/bin/benchmark-activemq" $* +"${BASEDIR}/bin/benchmark-apollo" $* +"${BASEDIR}/bin/benchmark-hornetq" $* +"${BASEDIR}/bin/benchmark-rabbitmq" $* +export SKIP_REPORT= +"${BASEDIR}/bin/benchmark-report" $* diff --git a/bin/benchmark-apollo b/bin/benchmark-apollo new file mode 100755 index 0000000..48b16af --- /dev/null +++ b/bin/benchmark-apollo @@ -0,0 +1,67 @@ +#!/bin/bash +# +# This shell script automates running the jms-benchmark [1] against the +# Apache Apollo project [2]. +# +# [1]: http://github.com/chirino/stomp-benchmark +# [2]: http://activemq.apache.org/apollo +# + +true \ +${APOLLO_VERSION:=1.0-beta6} \ +${APOLLO_DOWNLOAD:="http://archive.apache.org/dist/activemq/activemq-apollo/${APOLLO_VERSION}/apache-apollo-${APOLLO_VERSION}-unix-distro.tar.gz"} + +BASEDIR=`dirname "$0"`/.. ; cd "${BASEDIR}" ; BASEDIR=`pwd` ; cd - > /dev/null +. ${BASEDIR}/bin/benchmark-setup + +# +# Install the apollo distro +# +APOLLO_HOME="${WORKSPACE}/apache-apollo-${APOLLO_VERSION}" +if [ ! -d "${APOLLO_HOME}" ]; then + cd ${WORKSPACE} + wget "$APOLLO_DOWNLOAD" + tar -zxvf apache-apollo-*.tar.gz + rm -rf apache-apollo-*.tar.gz +fi + +APOLLO_BASE="${WORKSPACE}/apollo-${APOLLO_VERSION}" +if [ ! -d "${APOLLO_BASE}" ]; then + cd "${WORKSPACE}" + "${APOLLO_HOME}/bin/apollo" create "apollo-${APOLLO_VERSION}" +fi + +# +# Cleanup preious executions. +killall -9 java erl epmd apollo > /dev/null 2>&1 +rm -rf ${APOLLO_BASE}/data/* ${APOLLO_BASE}/tmp/* ${APOLLO_BASE}/log/* + +# +# Configuration +export JVM_FLAGS="-server -Xmx4G -Xms1G" + +# +# Start the server +CONSOLE_LOG="${REPORTS_HOME}/apollo-${APOLLO_VERSION}.log" +"${APOLLO_BASE}/bin/apollo-broker" run > "${CONSOLE_LOG}" 2>&1 & +APOLLO_PID=$! +echo "Started Apollo with PID: ${APOLLO_PID}" +sleep 5 +cat "${CONSOLE_LOG}" + +# +# Run the benchmark +# +cd "${BASEDIR}/jms-benchmark-stomp" +export CLASSPATH=`mvn dependency:build-classpath | grep -v "\["` +export CLASSPATH="${CLASSPATH}:target/classes" +benchmark --provider stomp --display-errors --url tcp://localhost:61613 --user-name admin --password password "${REPORTS_HOME}/apollo-${APOLLO_VERSION}-stomp.json" +echo ${BENCHMARK_COMMAND} +${BENCHMARK_COMMAND} + +# +# Kill the server +kill -9 ${APOLLO_PID} + +# Create a report. +"${BASEDIR}/bin/benchmark-report" $* diff --git a/bin/benchmark-hornetq b/bin/benchmark-hornetq new file mode 100755 index 0000000..9cf60de --- /dev/null +++ b/bin/benchmark-hornetq @@ -0,0 +1,87 @@ +#!/bin/bash +# +# This shell script automates running the stomp-benchmark [1] against the +# HornetQ project [2]. +# +# [1]: http://github.com/chirino/stomp-benchmark +# [2]: http://www.jboss.org/hornetq +# + +true \ +${HORNETQ_VERSION:=2.2.5.Final} \ +${HORNETQ_DOWNLOAD:="http://downloads.jboss.org/hornetq/hornetq-${HORNETQ_VERSION}.tar.gz"} + +BASEDIR=`dirname "$0"`/.. ; cd "${BASEDIR}" ; BASEDIR=`pwd` ; cd - > /dev/null +. ${BASEDIR}/bin/benchmark-setup + +# +# Install the distro +# +HORNETQ_HOME="${WORKSPACE}/hornetq-${HORNETQ_VERSION}" +if [ ! -d "${HORNETQ_HOME}" ]; then + cd ${WORKSPACE} + wget "$HORNETQ_DOWNLOAD" + tar -zxvf hornetq-${HORNETQ_VERSION}.tar.gz + rm -rf hornetq-${HORNETQ_VERSION}.tar.gz + + # Adjust the start script so that it execs java. + perl -pi -e 's|^java|exec java|' "${HORNETQ_HOME}/bin/run.sh" + perl -pi -e 's|-Xms512M -Xmx1024M|-Xmx4G -Xms1G|' "${HORNETQ_HOME}/bin/run.sh" + + # + # Add the stomp connector to the configuration. + perl -pi -e 's| <\/acceptors>| + org.hornetq.core.remoting.impl.netty.NettyAcceptorFactory + + + + +<\/acceptors>|' "${HORNETQ_HOME}/config/stand-alone/non-clustered/hornetq-configuration.xml" + + # + # Add the destinations that the benchmark will be using. + DESTINATION_CONFIGS="" + for (( i=0; i < 10 ; i++)) ; do + DESTINATION_CONFIGS="${DESTINATION_CONFIGS} + " + done + for (( i=0; i < 10 ; i++)) ; do + DESTINATION_CONFIGS="${DESTINATION_CONFIGS} + " + done + perl -pi -e "s|^|${DESTINATION_CONFIGS}|" "${HORNETQ_HOME}/config/stand-alone/non-clustered/hornetq-jms.xml" + +fi + +# +# Cleanup preious executions. +killall -9 java erl epmd apollo > /dev/null 2>&1 +rm -rf "${HORNETQ_HOME}/data/*" "${HORNETQ_HOME}/logs/*" + +# +# Start the server +# +CONSOLE_LOG="${REPORTS_HOME}/hornetq-${HORNETQ_VERSION}.log" +rm "${CONSOLE_LOG}" 2> /dev/null +cd "${HORNETQ_HOME}/bin" +./run.sh > "${CONSOLE_LOG}" 2>&1 & +HORNETQ_PID=$! +echo "Started HornetQ with PID: ${HORNETQ_PID}" +sleep 5 +cat "${CONSOLE_LOG}" + +# +# Run the benchmark +# +cd "${BASEDIR}/jms-benchmark-hornetq" +export CLASSPATH=`mvn dependency:build-classpath | grep -v "\["` +export CLASSPATH="${CLASSPATH}:target/classes" +benchmark --provider org.fusesource.jmsbenchmark.HornetQScenario --display-errors --url tcp://localhost:5445 "${REPORTS_HOME}/hornetq-${HORNETQ_VERSION}-core.json" +echo ${BENCHMARK_COMMAND} +${BENCHMARK_COMMAND} + +# Kill the server +kill -9 ${HORNETQ_PID} + +# Create a report. +"${BASEDIR}/bin/benchmark-report" $* diff --git a/bin/benchmark-rabbitmq b/bin/benchmark-rabbitmq new file mode 100755 index 0000000..ef325d2 --- /dev/null +++ b/bin/benchmark-rabbitmq @@ -0,0 +1,103 @@ +#!/bin/bash +# +# This shell script automates running the stomp-benchmark [1] against the +# RabbitMQ project [2]. +# +# [1]: http://github.com/chirino/stomp-benchmark +# [2]: http://www.rabbitmq.com/ +# + +echo ================================================================== +echo A JMS benchmark has not been setup of RabbitMQ yet as it does not +echo officially support JMS. Perhaps we should benchmark it with the +echo qpid or openamq JMS over AMQP clients. +echo ================================================================== +exit 0 + +true \ +${RABBITMQ_VERSION:=2.7.0} \ +${RABBITMQ_DOWNLOAD:="http://www.rabbitmq.com/releases/rabbitmq-server/v${RABBITMQ_VERSION}/rabbitmq-server-generic-unix-${RABBITMQ_VERSION}.tar.gz"} + +BASEDIR=`dirname "$0"`/.. ; cd "${BASEDIR}" ; BASEDIR=`pwd` ; cd - > /dev/null +. ${BASEDIR}/bin/benchmark-setup + +which erl > /dev/null +if [ $? -ne 0 ] ; then + cd "${WORKSPACE}" + which erl > /dev/null + if [ $? -ne 0 ] ; then + # Lets install erlang.. + if [ ! -f "${WORKSPACE}/erlang/bin/erl" ] ; then + # Download it... + if [ ! -d "${WORKSPACE}/otp_src_R14B04" ] ; then + wget http://www.erlang.org/download/otp_src_R14B04.tar.gz + tar -zxvf otp_src_R14B04.tar.gz + rm otp_src_R14B04.tar.gz + fi + + # Need the GCC toolchain to build erlang + which yum > /dev/null && sudo yum -y install make gcc gcc-c++ kernel-devel m4 ncurses-devel openssl-devel + which apt-get > /dev/null && sudo apt-get install -y build-essential ncurses-dev libssl-dev + + cd "${WORKSPACE}/otp_src_R14B04" + ./configure --with-ssl --prefix="${WORKSPACE}/erlang" + make install + fi + export PATH="${WORKSPACE}/erlang/bin:${PATH}" + fi +fi + +# +# Install the distro +# +RABBITMQ_HOME="${WORKSPACE}/rabbitmq_server-${RABBITMQ_VERSION}" +if [ ! -d "${RABBITMQ_HOME}" ]; then + cd ${WORKSPACE} + wget "$RABBITMQ_DOWNLOAD" + tar -zxvf rabbitmq-server-generic-unix-${RABBITMQ_VERSION}.tar.gz + rm -rf rabbitmq-server-generic-unix-${RABBITMQ_VERSION}.tar.gz +fi + +RABBITMQ_BASE="${WORKSPACE}/rabbitmq-${RABBITMQ_VERSION}" +mkdir -p "${RABBITMQ_BASE}" + +# +# Cleanup preious executions. +killall -9 java erl epmd apollo > /dev/null 2>&1 +rm -rf "${RABBITMQ_BASE}/*" + +# +# Rabbit config +export RABBITMQ_NODENAME=rabbit +export RABBITMQ_SERVER_ERL_ARGS= +export RABBITMQ_CONFIG_FILE="${RABBITMQ_BASE}/config" +export RABBITMQ_LOG_BASE="${RABBITMQ_BASE}/logs" +export RABBITMQ_MNESIA_BASE="${RABBITMQ_BASE}/mnesia" +export RABBITMQ_ENABLED_PLUGINS_FILE="${RABBITMQ_BASE}/plugins" +export RABBITMQ_SERVER_START_ARGS= + +# +# Start the server +#s +CONSOLE_LOG="${REPORTS_HOME}/rabbitmq-${RABBITMQ_VERSION}.log" +"${RABBITMQ_HOME}/sbin/rabbitmq-plugins" enable rabbitmq_stomp +"${RABBITMQ_HOME}/sbin/rabbitmq-server" > "${CONSOLE_LOG}" 2>&1 & +RABBITMQ_PID=$! +echo "Started RabbitMQ with PID: ${RABBITMQ_PID}" +sleep 5 +cat "${CONSOLE_LOG}" + +# +# Run the benchmark +# +cd "${BASEDIR}/jms-benchmark-stomp" +export CLASSPATH=`mvn dependency:build-classpath | grep -v "\["` +export CLASSPATH="${CLASSPATH}:target/classes" +benchmark --provider stomp --display-errors --url tcp://localhost:61613 --login guest --passcode guest "${REPORTS_HOME}/rabbitmq-${RABBITMQ_VERSION}.json" + +# Kill the server +kill -9 ${RABBITMQ_PID} +killall -9 epmd + +# Create a report. +"${BASEDIR}/bin/benchmark-report" $* diff --git a/bin/benchmark-report b/bin/benchmark-report new file mode 100755 index 0000000..f67fb70 --- /dev/null +++ b/bin/benchmark-report @@ -0,0 +1,83 @@ +#!/bin/bash +# +# This shell script creates the html index file which displays +# results of the benchmarks. +# +if [ -z "${SKIP_REPORT}" ] ; then +BASEDIR=`dirname "$0"`/.. ; cd "${BASEDIR}" ; BASEDIR=`pwd` ; cd - > /dev/null +. ${BASEDIR}/bin/benchmark-setup + +# Get a list of the log and json files. +cd "${REPORTS_HOME}" +LOG_FILES=`ls *.log 2> /dev/null` +JSON_FILES=`ls *.json | sed 's|.json|",|' | sed 's|^|"|'` +JSON_FILES=`echo $JSON_FILES | sed 's|,$||'` #trim the trailing comma +cd - > /dev/null + +LOGS_HTML="" +if [ ! -z "${LOG_FILES}" ] ; then + LOGS_HTML=" +

Console logs of the benchmarked servers

+ " +fi + +mkdir -p "${REPORTS_HOME}/resources" +cat "${BASEDIR}/src/main/html/template.html" | sed "s|PRODUCT_LIST|$JSON_FILES|" | perl -pi -e "s|LOGS_HTML|$LOGS_HTML|" > "${REPORTS_HOME}/index.html" +cp "${BASEDIR}/src/main/html/resources/"* "${REPORTS_HOME}/resources" + +# +# Only create it if it does not exist as it may get +# customized by hand later. +if [ ! -f "${REPORTS_HOME}/server-info.html" ] ; then + + cat > "${REPORTS_HOME}/server-info.html" < +

Machine Details

+
$(uname -a)
+EOF + + DATA=`lsb_release -sd 2>&1` + if [ $? -eq 0 ] ; then + echo "
${DATA}
" >> "${REPORTS_HOME}/server-info.html" + fi + + DATA=`free -m 2>&1` + if [ $? -eq 0 ] ; then + echo "
${DATA}
" >> "${REPORTS_HOME}/server-info.html" + fi + + DATA=`cat /proc/cpuinfo 2>&1` + if [ $? -eq 0 ] ; then + echo "
${DATA}
" >> "${REPORTS_HOME}/server-info.html" + fi + + DATA=`java -version 2>&1` + if [ $? -eq 0 ] ; then + echo "
${DATA}
" >> "${REPORTS_HOME}/server-info.html" + fi + + which erl > /dev/null + if [ $? -eq 0 ] ; then + DATA=`erl -version 2>&1` + else + DATA=`${WORKSPACE}/erlang/bin/erl -version 2>&1` + fi + if [ $? -eq 0 ] ; then + echo "
" >> "${REPORTS_HOME}/server-info.html" 
+    echo "${DATA}" >> "${REPORTS_HOME}/server-info.html" 
+    echo "
" >> "${REPORTS_HOME}/server-info.html" + fi + +fi + +echo "==========================================================================" +echo "Results stored under: ${REPORTS_HOME}" +echo "==========================================================================" + +fi \ No newline at end of file diff --git a/bin/benchmark-setup b/bin/benchmark-setup new file mode 100755 index 0000000..b0c66cc --- /dev/null +++ b/bin/benchmark-setup @@ -0,0 +1,41 @@ +#!/bin/bash + +true \ +${REPORTS_HOME:=$1} \ +${REPORTS_HOME:=`pwd`/reports/`hostname`} +WORKSPACE="${BASEDIR}/workspace" + +function benchmark { + echo CLASSPATH=${CLASSPATH} + echo java -server -Xmx2G org.fusesource.jmsbenchmark.Benchmark $* + java -server -Xmx2G org.fusesource.jmsbenchmark.Benchmark $* +} + +mkdir -p ${WORKSPACE} +mkdir -p ${REPORTS_HOME} +cd "${REPORTS_HOME}" ; REPORTS_HOME=`pwd` ; cd - > /dev/null + +true \ +${MAVEN_VERSION:=3.0.3} \ +${MAVEN_DOWNLOAD:="http://archive.apache.org/dist/maven/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz"} + +export MAVEN_HOME="${WORKSPACE}/apache-maven-${MAVEN_VERSION}" +export MVN="${MAVEN_HOME}/bin/mvn" + +# +# Install Maven +# +if [ ! -f "${MVN}" ] ; then + cd ${WORKSPACE} + wget "${MAVEN_DOWNLOAD}" + tar -zxvf apache-maven-${MAVEN_VERSION}-bin.tar.gz + rm -rf apache-maven-${MAVEN_VERSION}-bin.tar.gz +fi + +# +# Build the jms-benchmark-hornetq if needed. +# +if [ ! -d "${BASEDIR}/jms-benchmark-hornetq/target/classes" ] ; then + cd "${BASEDIR}" + mvn clean install +fi diff --git a/readme.md b/readme.md index de12741..d3f7759 100644 --- a/readme.md +++ b/readme.md @@ -1,51 +1,42 @@ # JMS Benchmark -A benchmarking tool for [JMS](http://en.wikipedia.org/wiki/Java_Message_Service) servers. +A benchmarking tool for [JMS 1.1](http://en.wikipedia.org/wiki/Java_Message_Service) servers. +The benchmark covers a wide variety of common usage scenarios. -## Build Prep +## Servers Currently Benchmarked -* Install maven - -* run: mvn install +* Apache ActiveMQ +* Apache ActiveMQ Apollo +* RabbitMQ + -## Updating the Report +## Running the Benchmark -The `reports/report.html` file can load and display the results of multiple benchmark runs. -You can updated which benchmark results are displayed by the report.html by editing -it and updating to the line which defines the `products` variable (around line 34). +Just run: - var products = [ - 'apollo-1.0-SNAPSHOT', - 'activemq-5.4.2' - ]; - -### Running against Apollo 1.0-beta2 - -[Apache Apollo](http://activemq.apache.org/apollo) is a new Stomp based -message server from good folks at the [Apache ActiveMQ](http://activemq.apache.org/) -project. - -1. Follow the [getting started guide](http://activemq.apache.org/apollo/versions/1.0-beta1/website/documentation/getting-started.html) -to install, setup, and start the server. - -2. Run the benchmark with the admin credentials. Example: + ./bin/benchmark-all + +or one of the server specific benchmark scripts like: - cd jms-benchmark-stomp - mvn exec:java -Dbox=mbp-2-core -Dserver=apollo-1.0-SNAPSHOT + ./bin/benchmark-activemq -### Running against ActiveMQ 5.6-SNAPSHOT +Tested to work on: -[Apache ActiveMQ](http://activemq.apache.org) is the most popular open source JMS provider. +* Ubuntu 11.10 +* Amazon Linux +* OS X -1. Once installed, start the server by running: +The benchmark report will be stored in the `reports/$(hostname)` directory. - cd ${ACTIVEMQ_HOME} - export ACTIVEMQ_OPTS_MEMORY="-Xmx2g -XX:+UseLargePages" - ./bin/activemq console xbean:conf/activemq-specjms.xml +## Running the Benchmark on an EC2 Amazon Linux 64 bit AMI -2. Run the benchmark: +If you want to run the benchmark on EC2, we recommend using at least the +c1.xlarge instance type. Once you have the instance started just execute +the following commands on the instance: - cd jms-benchmark-activemq - mvn exec:java -Dbox=boxname -Dserver=activemq-5.6-SNAPSHOT - + sudo yum install -y screen + curl https://nodeload.github.com/chirino/jms-benchmark/tarball/master | tar -zxv + mv chirino-jms-benchmark-* jms-benchmark + screen ./jms-benchmark/bin/benchmark-all +The results will be stored in the ~/reports directory. diff --git a/reports/index.html b/reports/index.html deleted file mode 100644 index 51c9b4e..0000000 --- a/reports/index.html +++ /dev/null @@ -1,744 +0,0 @@ - - - - - - - - - - - - - - - - -
- -
-

Table of Contents

-
    -
  1. Throughput to an Unsubscribed Topic
  2. -
  3. Queue Load/Unload
  4. -
  5. Partitioned Load Scenarios
  6. -
  7. Fan In/Out Load Scenarios
  8. -
- -

Overview

-

- This report was generated using the JMS-benchmark tool. It - provides a comparative benchmark of messaging servers that implement the JMS 1.1 - specification. It covers a wide variety of common usage scenarios. Each scenario is warmed up for 3 seconds before - the performance samples are taken. -

- -
- Show data for the JMS 1.1 server run on: - -
- -
- - - -
- The benchmark load generator and JMS 1.1 server was run on a machine with: -
    -
  • Mac Pro Model: MacPro3,1
  • -
  • CPU: 2 x 3 GHz Quad-Core Intel Xeon
  • -
  • Memory: 8 GB 800 MHz DDR2
  • -
  • OS: Mac OS X 10.6.6
  • -
  • Disk: SATA 7200 RPM
  • -
  • Java: 64-Bit 1.6.0_22
  • -
-
- - -
- -

Throughput to an Unsubscribed Topic

-

- A single producer sending non-persistent messages to a topic that does not have an consumers attached. -

-
- NOTE: hover over the graphs to see the legends. -
- - - - -
-

With a 20 b Playload

-
-
-

With a 1 k Playload

-
-
-

With a 256 k Playload

-
-
- -

Queue Load/Unload

- - - - -
-

Non Persistent Load

-

- A producer sending non-persistent messages with 20 byte payloads to a queue without any attached consumers. -

-
-
-

Persistent Load

-

- A producer sending persistent messages with 20 byte payloads to a queue without any attached consumers. Each - send requests a receipt to achieve guaranteed delivery. -

-
-
-

Unload

-

- A consumer receiving the messages previously sent to the queue but without any attached producers. -

-
-
- -

Partitioned Load Scenarios

-

- These scenarios sample performance as partitioned load is applied. - Each destination only has 1 and only 1 producer and consumer attached. -

- The graphs below display the results of all the following scenario combinations: -

    -
  • Queue: The point to point messaging domain
  • -
  • Topic: The publish subscribe messaging domain
  • -
  • Persistent: Messages are sent persistent and with a receipt request to achieve guaranteed delivery.
  • -
  • Non Persistent: Messages are sent non-persistent and without a receipt request
  • -
  • 20 b Message: Messages payloads are 20 bytes in size
  • -
  • 1 k Message: Messages payloads are 1 kilobytes in size
  • -
  • 256 k Message: Messages payloads are 256 kilobytes in size
  • -
  • 1x1x1: 1 producer, 1 destination, 1 consumer
  • -
  • 5x5x5: 5 producers, 5 destinations, 5 consumers
  • -
  • 10x10x10: 10 producers, 10 destinations, 10 consumers
  • -
-

- - - - - -
 Non PersistentPersistent
Queue
- - - - - -
 20 b Message1 k Message256 k Message
1x1x1
-
-
-
-
-
-
-
-
-
5x5x5
-
-
-
-
-
-
-
-
-
10x10x10
-
-
-
-
-
-
-
-
-
-
- - - - - -
 20 b Message1 k Message256 k Message
1x1x1
-
-
-
-
-
-
-
-
-
5x5x5
-
-
-
-
-
-
-
-
-
10x10x10
-
-
-
-
-
-
-
-
-
-
Topic
- - - - - -
 20 b Message1 k Message256 k Message
1x1x1
-
-
-
-
-
-
-
-
-
5x5x5
-
-
-
-
-
-
-
-
-
10x10x10
-
-
-
-
-
-
-
-
-
-
- - - - - -
 20 b Message1 k Message256 k Message
1x1x1
-
-
-
-
-
-
-
-
-
5x5x5
-
-
-
-
-
-
-
-
-
10x10x10
-
-
-
-
-
-
-
-
-
-
- -

Fan In/Out Load Scenarios

-

- These scenarios multiple consumers and producers communicate via one shared destination. All messages sent have - a 20 byte payload. -

- The graphs below display the results of all the following scenario combinations: -

    -
  • Queue: The point to point messaging domain
  • -
  • Topic: The publish subscribe messaging domain
  • -
  • Persistent: Messages are sent persistent and with a receipt request to achieve guaranteed delivery.
  • -
  • Non Persistent: Messages are sent non-persistent and without a receipt request
  • -
-

- - - - - -
 Non PersistentPersistent
Queue
- - - - - -
 1 Producer5 Producers10 Producers
1 Consumer
- - -
-
-
-
-
-
5 Consumers
-
-
-
-
-
-
-
-
-
10 Consumers
-
-
-
-
-
-
-
-
-
-
- - - - - -
 1 Producer5 Producers10 Producers
1 Consumer
- - -
-
-
-
-
-
5 Consumers
-
-
-
-
-
-
-
-
-
10 Consumers
-
-
-
-
-
-
-
-
-
-
Topic
- - - - - -
 1 Producer5 Producers10 Producers
1 Consumer
- - -
-
-
-
-
-
5 Consumers
-
-
-
-
-
-
-
-
-
10 Consumers
-
-
-
-
-
-
-
-
-
-
- - - - - -
 1 Producer5 Producers10 Producers
1 Consumer
- - -
-
-
-
-
-
5 Consumers
-
-
-
-
-
-
-
-
-
10 Consumers
-
-
-
-
-
-
-
-
-
-
- -
-
- - - diff --git a/reports/mbp-2-core/activemq-5.6-SNAPSHOT.json b/reports/mbp-2-core/activemq-5.6-SNAPSHOT.json deleted file mode 100644 index 36730bc..0000000 --- a/reports/mbp-2-core/activemq-5.6-SNAPSHOT.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "benchmark_settings": { - "broker_name": "Apache ActiveMQ 5.6-SNAPSHOT", - "url": "tcp://localhost:61616", - "sample_count": 15, - "sample_interval": 1000, - "warm_up_count": 3, - "scenario_connection_scale_rate": 50 - }, - "e_20b_5a_1topic_5": [ [1305812188625,0],[1305812189626,0],[1305812190627,0],[1305812191627,0],[1305812192628,0],[1305812193628,0],[1305812194629,0],[1305812195631,0],[1305812196632,0],[1305812197632,0],[1305812198633,0],[1305812199634,0],[1305812200635,0],[1305812201635,0],[1305812202636,0] ], - "c_1k_10a_10topic_10": [ [1305811290701,29995],[1305811291701,25814],[1305811292702,27733],[1305811293710,29747],[1305811294725,28656],[1305811295726,26114],[1305811296726,30469],[1305811297727,27966],[1305811298728,27492],[1305811299729,27371],[1305811300749,32749],[1305811301750,27010],[1305811302751,31300],[1305811303752,28126],[1305811304752,28537] ], - "e_20b_1p_1queue_0": [ [1305812690214,0],[1305812691215,0],[1305812692215,0],[1305812693216,0],[1305812694217,0],[1305812695217,0],[1305812696218,0],[1305812697219,0],[1305812698219,0],[1305812699220,0],[1305812700221,0],[1305812701221,0],[1305812702222,0],[1305812703223,0],[1305812704224,0],[1305812705224,0],[1305812706225,0],[1305812707226,0],[1305812708226,0],[1305812709227,0],[1305812710228,0],[1305812711228,0],[1305812712229,0],[1305812713230,0],[1305812714230,0],[1305812715231,0],[1305812716232,0],[1305812717232,0],[1305812718233,0],[1305812719234,0] ], - "e_1k_1a_1queue_1": [ [1305811050917,0],[1305811051917,0],[1305811052918,0],[1305811053919,0],[1305811054920,0],[1305811055920,0],[1305811056921,0],[1305811057922,0],[1305811058922,0],[1305811059923,0],[1305811060926,0],[1305811061927,0],[1305811062928,0],[1305811063928,0],[1305811064929,0] ], - "e_256k_1p_1queue_1": [ [1305811501368,0],[1305811502369,0],[1305811503369,0],[1305811504370,0],[1305811505371,0],[1305811506372,0],[1305811507372,0],[1305811508373,0],[1305811509374,0],[1305811510374,0],[1305811511375,0],[1305811512376,0],[1305811513376,0],[1305811514377,0],[1305811515378,0] ], - "c_20b_1p_1queue_5": [ [1305812329072,2230],[1305812330073,2212],[1305812331073,2283],[1305812332074,2187],[1305812333075,2234],[1305812334075,2251],[1305812335076,2222],[1305812336076,2252],[1305812337077,2188],[1305812338078,2277],[1305812339078,2201],[1305812340079,2271],[1305812341080,2189],[1305812342081,2274],[1305812343081,2282] ], - "c_256k_5p_5queue_5": [ [1305811525408,619],[1305811526409,623],[1305811527410,635],[1305811528410,630],[1305811529411,640],[1305811530412,627],[1305811531413,621],[1305811532413,635],[1305811533414,603],[1305811534415,463],[1305811535415,467],[1305811536416,513],[1305811537417,587],[1305811538418,591],[1305811539418,600] ], - "p_20b_10a_1topic_10": [ [1305812262430,27764],[1305812263431,25637],[1305812264432,25622],[1305812265432,23346],[1305812266433,29969],[1305812267434,34819],[1305812268436,28185],[1305812269437,18878],[1305812270462,28345],[1305812271462,25952],[1305812272463,26815],[1305812273518,20190],[1305812274519,29374],[1305812275520,24127],[1305812276520,23273] ], - "e_1k_10a_10topic_10": [ [1305811290701,0],[1305811291701,0],[1305811292702,0],[1305811293710,0],[1305811294725,0],[1305811295726,0],[1305811296726,0],[1305811297727,0],[1305811298728,0],[1305811299729,0],[1305811300749,0],[1305811301750,0],[1305811302751,0],[1305811303752,0],[1305811304752,0] ], - "p_20b_1a_1topic_0": [ [1305812603046,68829],[1305812604046,69643],[1305812605047,69979],[1305812606048,69074],[1305812607051,68254],[1305812608052,69987],[1305812609053,68587],[1305812610053,69819],[1305812611054,67660],[1305812612055,69417],[1305812613055,70572],[1305812614056,66429],[1305812615057,69310],[1305812616057,70599],[1305812617059,68070] ], - "e_1k_5p_5queue_5": [ [1305811453235,0],[1305811454236,0],[1305811455237,0],[1305811456237,0],[1305811457238,0],[1305811458239,0],[1305811459239,0],[1305811460240,0],[1305811461241,0],[1305811462241,0],[1305811463242,0],[1305811464243,0],[1305811465243,0],[1305811466244,0],[1305811467245,0] ], - "c_20b_5p_5queue_5": [ [1305811387101,8848],[1305811388102,8923],[1305811389102,8852],[1305811390103,9024],[1305811391104,8897],[1305811392104,8827],[1305811393105,8840],[1305811394106,8723],[1305811395106,8971],[1305811396107,8784],[1305811397108,8924],[1305811398108,8810],[1305811399109,8866],[1305811400110,9022],[1305811401110,8817] ], - "e_256k_1a_1topic_1": [ [1305811308805,0],[1305811309806,0],[1305811310807,0],[1305811311807,0],[1305811312808,0],[1305811313809,0],[1305811314809,0],[1305811315810,0],[1305811316811,0],[1305811317812,0],[1305811318812,0],[1305811319815,0],[1305811320818,0],[1305811321819,0],[1305811322820,0] ], - "c_256k_10a_10topic_10": [ [1305811345010,382],[1305811346010,407],[1305811347011,442],[1305811348012,419],[1305811349014,401],[1305811350017,351],[1305811351018,412],[1305811352018,362],[1305811353019,356],[1305811354024,502],[1305811355025,318],[1305811356025,266],[1305811357026,285],[1305811358027,412],[1305811359028,371] ], - "c_1k_5a_5queue_5": [ [1305811074998,16989],[1305811075999,22943],[1305811077000,23734],[1305811078001,22331],[1305811079001,21857],[1305811080002,20809],[1305811081003,22353],[1305811082030,23316],[1305811083031,19762],[1305811084032,19409],[1305811085033,24175],[1305811086033,20882],[1305811087034,23156],[1305811088035,20545],[1305811089036,20115] ], - "p_20b_10p_1topic_10": [ [1305812584643,3905],[1305812585644,3969],[1305812586644,3906],[1305812587645,3940],[1305812588646,3942],[1305812589646,4037],[1305812590647,3870],[1305812591648,3947],[1305812592648,3952],[1305812593649,3927],[1305812594650,3962],[1305812595651,3993],[1305812596651,3964],[1305812597652,3889],[1305812598653,3961] ], - "e_20b_10p_1topic_5": [ [1305812530488,0],[1305812531488,0],[1305812532489,0],[1305812533490,0],[1305812534490,0],[1305812535491,0],[1305812536492,0],[1305812537492,0],[1305812538493,0],[1305812539494,0],[1305812540494,0],[1305812541495,0],[1305812542496,0],[1305812543496,0],[1305812544497,0] ], - "c_1k_10a_10queue_10": [ [1305811102225,22901],[1305811103225,22262],[1305811104226,23595],[1305811105227,23144],[1305811106229,24840],[1305811107230,24502],[1305811108230,25187],[1305811109231,25193],[1305811110232,27307],[1305811111233,23887],[1305811112234,25341],[1305811113234,24349],[1305811114235,26420],[1305811115239,25681],[1305811116240,26610] ], - "p_20b_1p_1topic_5": [ [1305812494404,4893],[1305812495405,4857],[1305812496406,4796],[1305812497408,4880],[1305812498408,4908],[1305812499409,4844],[1305812500410,4886],[1305812501410,4937],[1305812502411,4829],[1305812503412,4870],[1305812504412,4359],[1305812505413,4222],[1305812506414,4295],[1305812507414,4791],[1305812508415,4803] ], - "e_20b_5a_5topic_5": [ [1305811217318,0],[1305811218320,0],[1305811219348,0],[1305811220349,0],[1305811221350,0],[1305811222351,0],[1305811223351,0],[1305811224352,0],[1305811225353,0],[1305811226353,0],[1305811227354,0],[1305811228355,0],[1305811229355,0],[1305811230356,0],[1305811231357,0] ], - "c_1k_1p_1queue_1": [ [1305811432209,1883],[1305811433210,1913],[1305811434210,1846],[1305811435211,1415],[1305811436212,1921],[1305811437212,1875],[1305811438213,1853],[1305811439214,1874],[1305811440214,1971],[1305811441215,1878],[1305811442216,1853],[1305811443216,1861],[1305811444217,1876],[1305811445218,1951],[1305811446218,1886] ], - "e_20b_10p_10queue_10": [ [1305811411157,0],[1305811412158,0],[1305811413159,0],[1305811414159,0],[1305811415160,0],[1305811416161,0],[1305811417161,0],[1305811418162,0],[1305811419163,0],[1305811420163,0],[1305811421164,0],[1305811422165,0],[1305811423165,0],[1305811424166,0],[1305811425167,0] ], - "e_20b_5p_1topic_1": [ [1305812458350,0],[1305812459351,0],[1305812460352,0],[1305812461352,0],[1305812462353,0],[1305812463354,0],[1305812464354,0],[1305812465355,0],[1305812466356,0],[1305812467357,0],[1305812468358,0],[1305812469358,0],[1305812470359,0],[1305812471360,0],[1305812472360,0] ], - "p_20b_10p_10queue_10": [ [1305811411157,9136],[1305811412158,9420],[1305811413159,9684],[1305811414159,9245],[1305811415160,9459],[1305811416161,9307],[1305811417161,9378],[1305811418162,9330],[1305811419163,9424],[1305811420163,9344],[1305811421164,9392],[1305811422165,9420],[1305811423165,9382],[1305811424166,9299],[1305811425167,9507] ], - "p_20b_5p_5topic_5": [ [1305811591571,17073],[1305811592571,16973],[1305811593572,17107],[1305811594573,17063],[1305811595573,16978],[1305811596574,17134],[1305811597575,16853],[1305811598575,16981],[1305811599576,16836],[1305811600577,17196],[1305811601577,17010],[1305811602578,16659],[1305811603579,17055],[1305811604579,16995],[1305811605580,17100] ], - "c_20b_1a_1topic_5": [ [1305812170511,33738],[1305812171513,35324],[1305812172513,35602],[1305812173514,36302],[1305812174515,34320],[1305812175515,33883],[1305812176516,34664],[1305812177517,31069],[1305812178517,35608],[1305812179518,36219],[1305812180519,33718],[1305812181519,34203],[1305812182520,32353],[1305812183521,34344],[1305812184521,33013] ], - "e_20b_5p_1topic_10": [ [1305812566554,0],[1305812567555,0],[1305812568556,0],[1305812569556,0],[1305812570557,0],[1305812571558,0],[1305812572558,0],[1305812573559,0],[1305812574560,0],[1305812575560,0],[1305812576561,0],[1305812577562,0],[1305812578562,0],[1305812579563,0],[1305812580564,0] ], - "p_256k_10a_10topic_10": [ [1305811345010,594],[1305811346010,655],[1305811347011,641],[1305811348012,621],[1305811349014,621],[1305811350017,654],[1305811351018,604],[1305811352018,622],[1305811353019,642],[1305811354024,511],[1305811355025,562],[1305811356025,461],[1305811357026,576],[1305811358027,678],[1305811359028,678] ], - "e_256k_1a_1queue_1": [ [1305811126415,0],[1305811127416,0],[1305811128416,0],[1305811129417,0],[1305811130418,0],[1305811131418,0],[1305811132419,0],[1305811133420,0],[1305811134420,0],[1305811135421,0],[1305811136423,0],[1305811137424,0],[1305811138424,0],[1305811139425,0],[1305811140426,0] ], - "c_256k_5a_5queue_5": [ [1305811150487,602],[1305811151487,374],[1305811152488,573],[1305811153489,514],[1305811154490,625],[1305811155494,693],[1305811156495,576],[1305811157496,688],[1305811158496,531],[1305811159499,549],[1305811160500,822],[1305811161500,371],[1305811162501,603],[1305811163502,476],[1305811164503,504] ], - "e_256k_10a_10queue_10": [ [1305811174663,0],[1305811175671,0],[1305811176676,0],[1305811177676,0],[1305811178677,0],[1305811179678,0],[1305811180679,0],[1305811181680,0],[1305811182705,0],[1305811183706,0],[1305811184707,0],[1305811185708,0],[1305811186708,0],[1305811187709,0],[1305811188710,0] ], - "c_256k_10a_10queue_10": [ [1305811174663,411],[1305811175671,378],[1305811176676,366],[1305811177676,536],[1305811178677,539],[1305811179678,455],[1305811180679,556],[1305811181680,384],[1305811182705,657],[1305811183706,348],[1305811184707,356],[1305811185708,528],[1305811186708,591],[1305811187709,400],[1305811188710,547] ], - "e_1k_1a_1topic_0": [ [1305812621067,0],[1305812622068,0],[1305812623068,0],[1305812624069,0],[1305812625071,0],[1305812626072,0],[1305812627072,0],[1305812628073,0],[1305812629074,0],[1305812630074,0],[1305812631077,0],[1305812632078,0],[1305812633080,0],[1305812634081,0],[1305812635081,0] ], - "p_20b_1a_1queue_1": [ [1305810938869,29624],[1305810939898,35295],[1305810940899,42456],[1305810941899,42892],[1305810942900,42725],[1305810943901,45323],[1305810944901,46738],[1305810945902,47236],[1305810946903,42545],[1305810947904,41532],[1305810948904,40278],[1305810949905,45597],[1305810950906,46891],[1305810951906,44252],[1305810952907,43524] ], - "c_20b_5p_1topic_1": [ [1305812458350,19544],[1305812459351,19499],[1305812460352,19615],[1305812461352,19275],[1305812462353,19525],[1305812463354,19406],[1305812464354,19299],[1305812465355,19407],[1305812466356,19100],[1305812467357,19273],[1305812468358,19521],[1305812469358,19261],[1305812470359,19495],[1305812471360,19374],[1305812472360,19743] ], - "c_20b_5a_5queue_5": [ [1305810975022,16478],[1305810976023,17372],[1305810977023,21437],[1305810978024,14851],[1305810979025,19801],[1305810980027,21145],[1305810981028,14131],[1305810982028,18920],[1305810983030,13318],[1305810984032,13560],[1305810985033,16315],[1305810986034,17314],[1305810987034,22660],[1305810988035,17116],[1305810989036,11787] ], - "e_20b_1a_1queue_1": [ [1305810938869,0],[1305810939898,0],[1305810940899,0],[1305810941899,0],[1305810942900,0],[1305810943901,0],[1305810944901,0],[1305810945902,0],[1305810946903,0],[1305810947904,0],[1305810948904,0],[1305810949905,0],[1305810950906,0],[1305810951906,0],[1305810952907,0] ], - "p_20b_10p_1queue_10": [ [1305812437310,9221],[1305812438311,9088],[1305812439312,9054],[1305812440312,9264],[1305812441313,8983],[1305812442314,9138],[1305812443315,9058],[1305812444315,9235],[1305812445316,9279],[1305812446317,8896],[1305812447317,9136],[1305812448318,8996],[1305812449319,9069],[1305812450319,9354],[1305812451320,9197] ], - "c_20b_5p_1queue_1": [ [1305812280999,2955],[1305812282000,3140],[1305812283001,3173],[1305812284001,3088],[1305812285002,2916],[1305812286003,2931],[1305812287003,2926],[1305812288004,3046],[1305812289005,3029],[1305812290005,3153],[1305812291006,3185],[1305812292007,3128],[1305812293007,3153],[1305812294008,3173],[1305812295009,3018] ], - "p_1k_5p_5topic_5": [ [1305811645779,15921],[1305811646779,15742],[1305811647780,16130],[1305811648781,15888],[1305811649781,16159],[1305811650782,15975],[1305811651783,15889],[1305811652783,15996],[1305811653784,15873],[1305811654785,16056],[1305811655785,16034],[1305811656786,15800],[1305811657787,15783],[1305811658787,16181],[1305811659788,16177] ], - "e_20b_10p_10topic_10": [ [1305811609716,0],[1305811610717,0],[1305811611718,0],[1305811612718,0],[1305811613719,0],[1305811614720,0],[1305811615720,0],[1305811616721,0],[1305811617722,0],[1305811618722,0],[1305811619723,0],[1305811620723,0],[1305811621727,0],[1305811622728,0],[1305811623729,0] ], - "p_1k_5p_5queue_5": [ [1305811453235,8641],[1305811454236,8692],[1305811455237,8875],[1305811456237,8514],[1305811457238,8856],[1305811458239,8724],[1305811459239,8711],[1305811460240,8718],[1305811461241,8756],[1305811462241,8726],[1305811463242,8905],[1305811464243,8662],[1305811465243,8647],[1305811466244,8621],[1305811467245,8847] ], - "c_20b_1p_1topic_5": [ [1305812494404,24468],[1305812495405,24284],[1305812496406,23973],[1305812497408,24405],[1305812498408,24537],[1305812499409,24216],[1305812500410,24428],[1305812501410,24696],[1305812502411,24139],[1305812503412,24348],[1305812504412,21799],[1305812505413,21102],[1305812506414,21476],[1305812507414,23965],[1305812508415,24012] ], - "c_20b_10p_10queue_10": [ [1305811411157,9139],[1305811412158,9420],[1305811413159,9682],[1305811414159,9247],[1305811415160,9459],[1305811416161,9306],[1305811417161,9376],[1305811418162,9332],[1305811419163,9425],[1305811420163,9343],[1305811421164,9393],[1305811422165,9419],[1305811423165,9382],[1305811424166,9299],[1305811425167,9505] ], - "c_256k_1p_1topic_1": [ [1305811681888,525],[1305811682889,525],[1305811683890,522],[1305811684891,528],[1305811685891,525],[1305811686892,528],[1305811687893,524],[1305811688893,527],[1305811689894,527],[1305811690895,521],[1305811691896,528],[1305811692898,526],[1305811693898,527],[1305811694899,528],[1305811695902,531] ], - "c_20b_5p_1queue_5": [ [1305812350109,8194],[1305812351110,7935],[1305812352111,7857],[1305812353111,8160],[1305812354112,7745],[1305812355113,7802],[1305812356114,7930],[1305812357114,8045],[1305812358115,7807],[1305812359116,7682],[1305812360116,8019],[1305812361117,7945],[1305812362118,7724],[1305812363118,7883],[1305812364119,8067] ], - "c_1k_10p_10topic_10": [ [1305811663858,17304],[1305811664858,17530],[1305811665859,17705],[1305811666860,17294],[1305811667860,17642],[1305811668861,17578],[1305811669862,17553],[1305811670863,17633],[1305811671863,17408],[1305811672864,17520],[1305811673865,17378],[1305811674865,17652],[1305811675866,17456],[1305811676867,16861],[1305811677867,17719] ], - "p_20b_5a_1topic_1": [ [1305812133933,68911],[1305812134934,71378],[1305812135934,75169],[1305812136935,75742],[1305812137936,73199],[1305812138936,71757],[1305812139937,69865],[1305812140938,72244],[1305812141938,73677],[1305812142939,72173],[1305812143940,69376],[1305812144940,75645],[1305812145941,76039],[1305812146948,74167],[1305812147950,74650] ], - "e_20b_1p_1topic_1": [ [1305811573546,0],[1305811574547,0],[1305811575547,0],[1305811576548,0],[1305811577549,0],[1305811578549,0],[1305811579550,0],[1305811580551,0],[1305811581551,0],[1305811582552,0],[1305811583553,0],[1305811584553,0],[1305811585554,0],[1305811586555,0],[1305811587555,0] ], - "c_20b_1p_1topic_1": [ [1305811573546,9081],[1305811574547,9126],[1305811575547,9150],[1305811576548,9003],[1305811577549,9129],[1305811578549,9112],[1305811579550,9104],[1305811580551,9034],[1305811581551,9124],[1305811582552,9081],[1305811583553,9127],[1305811584553,8975],[1305811585554,9059],[1305811586555,9119],[1305811587555,9079] ], - "p_20b_5a_5topic_5": [ [1305811217318,60719],[1305811218320,73085],[1305811219348,62874],[1305811220349,65716],[1305811221350,69049],[1305811222351,63227],[1305811223351,60487],[1305811224352,66013],[1305811225353,57266],[1305811226353,65706],[1305811227354,57786],[1305811228355,55669],[1305811229355,57751],[1305811230356,55314],[1305811231357,68274] ], - "e_20b_1p_1queue_1": [ [1305811363068,0],[1305811364069,0],[1305811365070,0],[1305811366070,0],[1305811367071,0],[1305811368072,0],[1305811369072,0],[1305811370073,0],[1305811371074,0],[1305811372074,0],[1305811373075,0],[1305811374076,0],[1305811375076,0],[1305811376077,0],[1305811377078,0] ], - "p_20b_5p_1topic_1": [ [1305812458350,19539],[1305812459351,19511],[1305812460352,19598],[1305812461352,19278],[1305812462353,19529],[1305812463354,19405],[1305812464354,19295],[1305812465355,19426],[1305812466356,19081],[1305812467357,19277],[1305812468358,19519],[1305812469358,19271],[1305812470359,19502],[1305812471360,19356],[1305812472360,19763] ], - "p_1k_10a_10queue_10": [ [1305811102225,23878],[1305811103225,23010],[1305811104226,20458],[1305811105227,27743],[1305811106229,21263],[1305811107230,22056],[1305811108230,20664],[1305811109231,23326],[1305811110232,26895],[1305811111233,29299],[1305811112234,23554],[1305811113234,28108],[1305811114235,21563],[1305811115239,28305],[1305811116240,26430] ], - "p_1k_1a_1topic_0": [ [1305812621067,46448],[1305812622068,46228],[1305812623068,47027],[1305812624069,45913],[1305812625071,46903],[1305812626072,46483],[1305812627072,46513],[1305812628073,46958],[1305812629074,46629],[1305812630074,45853],[1305812631077,46117],[1305812632078,46843],[1305812633080,46533],[1305812634081,47023],[1305812635081,46561] ], - "e_1k_10p_10topic_10": [ [1305811663858,0],[1305811664858,0],[1305811665859,0],[1305811666860,0],[1305811667860,0],[1305811668861,0],[1305811669862,0],[1305811670863,0],[1305811671863,0],[1305811672864,0],[1305811673865,0],[1305811674865,0],[1305811675866,0],[1305811676867,0],[1305811677867,0] ], - "p_20b_10p_1queue_1": [ [1305812305041,2928],[1305812306042,2989],[1305812307042,3161],[1305812308043,3097],[1305812309044,3157],[1305812310044,3091],[1305812311045,3126],[1305812312046,3176],[1305812313046,3085],[1305812314047,2790],[1305812315048,2691],[1305812316049,2601],[1305812317049,2611],[1305812318050,2880],[1305812319051,2837] ], - "e_20b_1p_1queue_10": [ [1305812395193,0],[1305812396194,0],[1305812397195,0],[1305812398196,0],[1305812399196,0],[1305812400197,0],[1305812401198,0],[1305812402198,0],[1305812403199,0],[1305812404200,0],[1305812405200,0],[1305812406201,0],[1305812407202,0],[1305812408202,0],[1305812409203,0] ], - "e_20b_1p_1queue_5": [ [1305812329072,0],[1305812330073,0],[1305812331073,0],[1305812332074,0],[1305812333075,0],[1305812334075,0],[1305812335076,0],[1305812336076,0],[1305812337077,0],[1305812338078,0],[1305812339078,0],[1305812340079,0],[1305812341080,0],[1305812342081,0],[1305812343081,0] ], - "e_20b_1a_1queue_10": [ [1305812001176,0],[1305812002177,0],[1305812003178,0],[1305812004178,0],[1305812005179,0],[1305812006180,0],[1305812007180,0],[1305812008181,0],[1305812009182,0],[1305812010182,0],[1305812011183,0],[1305812012184,0],[1305812013184,0],[1305812014185,0],[1305812015186,0] ], - "e_20b_5p_1queue_10": [ [1305812416247,0],[1305812417248,0],[1305812418249,0],[1305812419249,0],[1305812420250,0],[1305812421251,0],[1305812422251,0],[1305812423252,0],[1305812424253,0],[1305812425253,0],[1305812426254,0],[1305812427255,0],[1305812428255,0],[1305812429256,0],[1305812430257,0] ], - "e_256k_10p_10queue_10": [ [1305811549477,0],[1305811550478,0],[1305811551479,0],[1305811552480,0],[1305811553480,0],[1305811554486,0],[1305811555488,0],[1305811556489,0],[1305811557489,0],[1305811558490,0],[1305811559491,0],[1305811560492,0],[1305811561493,0],[1305811562494,0],[1305811563495,0] ], - "p_1k_5a_5topic_5": [ [1305811272559,40099],[1305811273560,44329],[1305811274568,38043],[1305811275568,32805],[1305811276569,38264],[1305811277570,40493],[1305811278570,39746],[1305811279571,39857],[1305811280572,43797],[1305811281573,42282],[1305811282573,44846],[1305811283574,42693],[1305811284575,39701],[1305811285576,42277],[1305811286577,48719] ], - "p_20b_10p_1queue_5": [ [1305812371153,8846],[1305812372156,9199],[1305812373156,9082],[1305812374157,9176],[1305812375158,8602],[1305812376158,9281],[1305812377159,9054],[1305812378160,9281],[1305812379160,8912],[1305812380161,9271],[1305812381162,8985],[1305812382162,9220],[1305812383163,8878],[1305812384164,8936],[1305812385164,9187] ], - "c_20b_1p_1queue_1": [ [1305811363068,1789],[1305811364069,1991],[1305811365070,1996],[1305811366070,2187],[1305811367071,2193],[1305811368072,2307],[1305811369072,2234],[1305811370073,2342],[1305811371074,2248],[1305811372074,2331],[1305811373075,2275],[1305811374076,2224],[1305811375076,2027],[1305811376077,2337],[1305811377078,2317] ], - "p_256k_5p_5queue_5": [ [1305811525408,619],[1305811526409,622],[1305811527410,636],[1305811528410,630],[1305811529411,640],[1305811530412,627],[1305811531413,622],[1305811532413,634],[1305811533414,604],[1305811534415,463],[1305811535415,467],[1305811536416,513],[1305811537417,586],[1305811538418,591],[1305811539418,600] ], - "c_20b_1a_1queue_10": [ [1305812001176,21820],[1305812002177,21149],[1305812003178,21302],[1305812004178,21686],[1305812005179,21467],[1305812006180,21583],[1305812007180,21541],[1305812008181,21061],[1305812009182,21289],[1305812010182,21523],[1305812011183,20745],[1305812012184,21224],[1305812013184,21034],[1305812014185,21900],[1305812015186,22057] ], - "c_1k_10p_10queue_10": [ [1305811477303,8980],[1305811478304,9058],[1305811479305,8981],[1305811480305,8887],[1305811481306,9004],[1305811482307,9052],[1305811483307,8877],[1305811484308,8994],[1305811485309,9085],[1305811486309,8939],[1305811487310,9063],[1305811488311,8937],[1305811489311,8982],[1305811490312,8846],[1305811491313,9022] ], - "p_1k_5a_5queue_5": [ [1305811074998,35987],[1305811075999,26109],[1305811077000,24535],[1305811078001,30002],[1305811079001,29058],[1305811080002,32675],[1305811081003,25981],[1305811082030,29088],[1305811083031,29832],[1305811084032,31373],[1305811085033,24111],[1305811086033,29841],[1305811087034,29212],[1305811088035,30018],[1305811089036,32515] ], - "c_1k_1a_1queue_1": [ [1305811050917,26268],[1305811051917,26879],[1305811052918,26669],[1305811053919,26840],[1305811054920,25053],[1305811055920,26201],[1305811056921,25803],[1305811057922,26042],[1305811058922,25320],[1305811059923,24451],[1305811060926,26371],[1305811061927,25712],[1305811062928,26366],[1305811063928,26300],[1305811064929,25848] ], - "e_20b_0_1queue_1": [ [1305812723295,0],[1305812724296,0],[1305812725296,0],[1305812726297,0],[1305812727298,0],[1305812728298,0],[1305812729299,0],[1305812730300,0],[1305812731301,0],[1305812732301,0],[1305812733302,0],[1305812734303,0],[1305812735303,0],[1305812736304,0],[1305812737305,0],[1305812738305,0],[1305812739306,0],[1305812740307,0],[1305812741308,0],[1305812742308,0],[1305812743309,0],[1305812744310,0],[1305812745312,0],[1305812746314,0],[1305812747315,0],[1305812748321,0],[1305812749322,0],[1305812750323,0],[1305812751324,0],[1305812752325,0] ], - "c_256k_1a_1topic_1": [ [1305811308805,0],[1305811309806,0],[1305811310807,311],[1305811311807,536],[1305811312808,545],[1305811313809,537],[1305811314809,546],[1305811315810,545],[1305811316811,544],[1305811317812,542],[1305811318812,549],[1305811319815,547],[1305811320818,546],[1305811321819,547],[1305811322820,549] ], - "c_20b_10a_1topic_1": [ [1305812152231,20813],[1305812153232,19152],[1305812154232,20099],[1305812155237,17922],[1305812156238,17254],[1305812157239,16671],[1305812158239,14999],[1305812159240,13601],[1305812160241,16049],[1305812161241,13741],[1305812162243,13341],[1305812163243,17623],[1305812164244,11057],[1305812165245,15539],[1305812166245,15604] ], - "c_20b_1a_1topic_1": [ [1305811199197,21326],[1305811200197,21568],[1305811201198,22482],[1305811202199,22725],[1305811203199,22561],[1305811204200,21088],[1305811205201,23009],[1305811206201,21621],[1305811207202,20883],[1305811208203,19368],[1305811209203,20563],[1305811210204,22572],[1305811211205,20641],[1305811212205,20474],[1305811213206,22992] ], - "p_20b_1p_1queue_10": [ [1305812395193,2188],[1305812396194,2249],[1305812397195,2162],[1305812398196,2273],[1305812399196,2207],[1305812400197,2200],[1305812401198,2224],[1305812402198,2214],[1305812403199,2264],[1305812404200,2187],[1305812405200,1963],[1305812406201,2102],[1305812407202,2189],[1305812408202,2276],[1305812409203,2239] ], - "e_20b_5a_1queue_5": [ [1305811892981,0],[1305811893982,0],[1305811894983,0],[1305811895984,0],[1305811896985,0],[1305811897985,0],[1305811898986,0],[1305811899987,0],[1305811900987,0],[1305811901988,0],[1305811902989,0],[1305811903989,0],[1305811904990,0],[1305811905991,0],[1305811906991,0] ], - "p_20b_1a_1queue_10": [ [1305812001176,21614],[1305812002177,21325],[1305812003178,21251],[1305812004178,21673],[1305812005179,21528],[1305812006180,21600],[1305812007180,21563],[1305812008181,21050],[1305812009182,21259],[1305812010182,21554],[1305812011183,20806],[1305812012184,21139],[1305812013184,21060],[1305812014185,21980],[1305812015186,21899] ], - "p_1k_1p_1topic_1": [ [1305811627752,8476],[1305811628753,8380],[1305811629753,8446],[1305811630754,8463],[1305811631755,8392],[1305811632755,8417],[1305811633756,8423],[1305811634757,8392],[1305811635757,8459],[1305811636758,8424],[1305811637759,8372],[1305811638759,8400],[1305811639760,8375],[1305811640761,8324],[1305811641761,8394] ], - "p_20b_10a_1queue_1": [ [1305811802727,96758],[1305811803728,94026],[1305811804729,88974],[1305811805730,93096],[1305811806730,91093],[1305811807733,91294],[1305811808733,95018],[1305811809734,86933],[1305811810736,89208],[1305811811737,90215],[1305811812738,98695],[1305811813739,99137],[1305811814742,98872],[1305811815742,95482],[1305811816743,98619] ], - "c_20b_10p_1topic_1": [ [1305812476381,19137],[1305812477382,18935],[1305812478383,19021],[1305812479383,18954],[1305812480384,18962],[1305812481385,18965],[1305812482385,18924],[1305812483386,18934],[1305812484387,18871],[1305812485387,18745],[1305812486388,18911],[1305812487389,19115],[1305812488389,18508],[1305812489390,18784],[1305812490391,18751] ], - "p_20b_1p_1queue_1": [ [1305811363068,1790],[1305811364069,1990],[1305811365070,1997],[1305811366070,2187],[1305811367071,2193],[1305811368072,2306],[1305811369072,2234],[1305811370073,2342],[1305811371074,2248],[1305811372074,2332],[1305811373075,2274],[1305811374076,2224],[1305811375076,2028],[1305811376077,2337],[1305811377078,2317] ], - "c_20b_10a_1topic_10": [ [1305812262430,36804],[1305812263431,37517],[1305812264432,36190],[1305812265432,41142],[1305812266433,36605],[1305812267434,31974],[1305812268436,34137],[1305812269437,41996],[1305812270462,35034],[1305812271462,34084],[1305812272463,37459],[1305812273518,36627],[1305812274519,38720],[1305812275520,36982],[1305812276520,35349] ], - "e_1k_5a_5topic_5": [ [1305811272559,0],[1305811273560,0],[1305811274568,0],[1305811275568,0],[1305811276569,0],[1305811277570,0],[1305811278570,0],[1305811279571,0],[1305811280572,0],[1305811281573,0],[1305811282573,0],[1305811283574,0],[1305811284575,0],[1305811285576,0],[1305811286577,0] ], - "e_1k_10a_10queue_10": [ [1305811102225,0],[1305811103225,0],[1305811104226,0],[1305811105227,0],[1305811106229,0],[1305811107230,0],[1305811108230,0],[1305811109231,0],[1305811110232,0],[1305811111233,0],[1305811112234,0],[1305811113234,0],[1305811114235,0],[1305811115239,0],[1305811116240,0] ], - "c_20b_1a_1topic_10": [ [1305812225485,42850],[1305812226486,43761],[1305812227486,35241],[1305812228487,46832],[1305812229488,39829],[1305812230488,42376],[1305812231489,39189],[1305812232490,37011],[1305812233490,40935],[1305812234491,35011],[1305812235492,41911],[1305812236493,31828],[1305812237493,38451],[1305812238494,35491],[1305812239495,39660] ], - "p_20b_10a_1queue_5": [ [1305811943978,83117],[1305811944978,80401],[1305811945979,77341],[1305811946980,80999],[1305811947980,82732],[1305811948983,90269],[1305811949984,81348],[1305811950985,77934],[1305811951985,83147],[1305811952986,87574],[1305811953987,87876],[1305811954988,93463],[1305811955988,91686],[1305811956989,89219],[1305811957990,97480] ], - "c_20b_5a_1topic_10": [ [1305812243860,39588],[1305812244860,38127],[1305812245861,39339],[1305812246867,35641],[1305812247867,41776],[1305812248868,34518],[1305812249869,31681],[1305812250869,40971],[1305812251870,37632],[1305812252871,41054],[1305812253871,38033],[1305812254872,39082],[1305812255873,40925],[1305812256873,37113],[1305812257874,38285] ], - "p_256k_5p_5topic_5": [ [1305811699921,660],[1305811700922,658],[1305811701926,691],[1305811702927,654],[1305811703931,671],[1305811704932,612],[1305811705933,622],[1305811706934,650],[1305811707934,602],[1305811708935,626],[1305811709936,623],[1305811710937,632],[1305811711937,711],[1305811712938,597],[1305811713942,622] ], - "c_20b_5p_1topic_5": [ [1305812512435,35507],[1305812513436,35545],[1305812514436,35435],[1305812515437,35667],[1305812516438,35303],[1305812517438,35636],[1305812518439,35369],[1305812519440,35196],[1305812520440,35547],[1305812521441,35185],[1305812522442,35562],[1305812523442,35478],[1305812524443,35307],[1305812525444,35701],[1305812526444,34717] ], - "e_20b_1a_1queue_0": [ [1305812657123,0],[1305812658124,0],[1305812659125,0],[1305812660125,0],[1305812661126,0],[1305812662127,0],[1305812663127,0],[1305812664128,0],[1305812665129,0],[1305812666129,0],[1305812667130,0],[1305812668131,0],[1305812669131,0],[1305812670132,0],[1305812671133,0],[1305812672133,0],[1305812673134,0],[1305812674135,0],[1305812675135,0],[1305812676136,0],[1305812677137,0],[1305812678138,0],[1305812679138,0],[1305812680140,0],[1305812681141,0],[1305812682142,0],[1305812683146,0],[1305812684147,0],[1305812685147,0],[1305812686148,0] ], - "c_1k_1a_1topic_1": [ [1305811254528,31091],[1305811255529,30798],[1305811256529,30787],[1305811257530,31152],[1305811258531,30296],[1305811259531,31059],[1305811260532,30658],[1305811261533,30943],[1305811262533,31164],[1305811263534,30343],[1305811264535,30941],[1305811265535,30845],[1305811266536,30720],[1305811267537,30277],[1305811268538,30977] ], - "e_20b_10a_1topic_10": [ [1305812262430,0],[1305812263431,0],[1305812264432,0],[1305812265432,0],[1305812266433,0],[1305812267434,0],[1305812268436,0],[1305812269437,0],[1305812270462,0],[1305812271462,0],[1305812272463,0],[1305812273518,0],[1305812274519,0],[1305812275520,0],[1305812276520,0] ], - "p_20b_10p_1topic_1": [ [1305812476381,19269],[1305812477382,18694],[1305812478383,19336],[1305812479383,18829],[1305812480384,19159],[1305812481385,18596],[1305812482385,18905],[1305812483386,18981],[1305812484387,18894],[1305812485387,18799],[1305812486388,18955],[1305812487389,18947],[1305812488389,18642],[1305812489390,18853],[1305812490391,18862] ], - "p_20b_1p_1topic_10": [ [1305812548524,3196],[1305812549525,3056],[1305812550526,3234],[1305812551526,3019],[1305812552527,3117],[1305812553528,3140],[1305812554528,3104],[1305812555529,3241],[1305812556530,3034],[1305812557531,3157],[1305812558531,3097],[1305812559532,3299],[1305812560532,3111],[1305812561533,3089],[1305812562534,3128] ], - "p_256k_10p_10queue_10": [ [1305811549477,569],[1305811550478,571],[1305811551479,567],[1305811552480,571],[1305811553480,570],[1305811554486,571],[1305811555488,563],[1305811556489,557],[1305811557489,570],[1305811558490,570],[1305811559491,566],[1305811560492,552],[1305811561493,520],[1305811562494,558],[1305811563495,568] ], - "p_1k_1p_1queue_1": [ [1305811432209,1882],[1305811433210,1914],[1305811434210,1845],[1305811435211,1415],[1305811436212,1922],[1305811437212,1874],[1305811438213,1853],[1305811439214,1874],[1305811440214,1972],[1305811441215,1878],[1305811442216,1852],[1305811443216,1861],[1305811444217,1877],[1305811445218,1950],[1305811446218,1886] ], - "e_20b_10p_1queue_5": [ [1305812371153,0],[1305812372156,0],[1305812373156,0],[1305812374157,0],[1305812375158,0],[1305812376158,0],[1305812377159,0],[1305812378160,0],[1305812379160,0],[1305812380161,0],[1305812381162,0],[1305812382162,0],[1305812383163,0],[1305812384164,0],[1305812385164,0] ], - "p_20b_5p_1topic_10": [ [1305812566554,3885],[1305812567555,3988],[1305812568556,3976],[1305812569556,3973],[1305812570557,3914],[1305812571558,3949],[1305812572558,3959],[1305812573559,4020],[1305812574560,3952],[1305812575560,3972],[1305812576561,3968],[1305812577562,3982],[1305812578562,3955],[1305812579563,3931],[1305812580564,4028] ], - "e_256k_5p_5queue_5": [ [1305811525408,0],[1305811526409,0],[1305811527410,0],[1305811528410,0],[1305811529411,0],[1305811530412,0],[1305811531413,0],[1305811532413,0],[1305811533414,0],[1305811534415,0],[1305811535415,0],[1305811536416,0],[1305811537417,0],[1305811538418,0],[1305811539418,0] ], - "e_20b_5a_5queue_5": [ [1305810975022,0],[1305810976023,0],[1305810977023,0],[1305810978024,0],[1305810979025,0],[1305810980027,0],[1305810981028,0],[1305810982028,0],[1305810983030,0],[1305810984032,0],[1305810985033,0],[1305810986034,0],[1305810987034,0],[1305810988035,0],[1305810989036,0] ], - "e_20b_5p_1queue_1": [ [1305812280999,0],[1305812282000,0],[1305812283001,0],[1305812284001,0],[1305812285002,0],[1305812286003,0],[1305812287003,0],[1305812288004,0],[1305812289005,0],[1305812290005,0],[1305812291006,0],[1305812292007,0],[1305812293007,0],[1305812294008,0],[1305812295009,0] ], - "p_256k_10a_10queue_10": [ [1305811174663,668],[1305811175671,676],[1305811176676,699],[1305811177676,600],[1305811178677,601],[1305811179678,644],[1305811180679,615],[1305811181680,605],[1305811182705,527],[1305811183706,656],[1305811184707,678],[1305811185708,554],[1305811186708,598],[1305811187709,633],[1305811188710,573] ], - "p_20b_5a_1queue_5": [ [1305811892981,71597],[1305811893982,71342],[1305811894983,77308],[1305811895984,64314],[1305811896985,65099],[1305811897985,76849],[1305811898986,68306],[1305811899987,72287],[1305811900987,69499],[1305811901988,66611],[1305811902989,63538],[1305811903989,83151],[1305811904990,72069],[1305811905991,82360],[1305811906991,63445] ], - "c_20b_5a_1queue_10": [ [1305812025276,23960],[1305812026277,19384],[1305812027278,23629],[1305812028279,22149],[1305812029280,19027],[1305812030281,17634],[1305812031281,21171],[1305812032285,17546],[1305812033285,21457],[1305812034286,22237],[1305812035300,18842],[1305812036301,17982],[1305812037301,23484],[1305812038302,10210],[1305812039303,15032] ], - "p_20b_10p_10topic_10": [ [1305811609716,18876],[1305811610717,18384],[1305811611718,18792],[1305811612718,18509],[1305811613719,18620],[1305811614720,18584],[1305811615720,18485],[1305811616721,18031],[1305811617722,18700],[1305811618722,18293],[1305811619723,18600],[1305811620723,18424],[1305811621727,18681],[1305811622728,18780],[1305811623729,18493] ], - "p_20b_5p_1topic_5": [ [1305812512435,7100],[1305812513436,7107],[1305812514436,7087],[1305812515437,7136],[1305812516438,7068],[1305812517438,7145],[1305812518439,7099],[1305812519440,6993],[1305812520440,7122],[1305812521441,7037],[1305812522442,7136],[1305812523442,7062],[1305812524443,7077],[1305812525444,7128],[1305812526444,6932] ], - "c_20b_10p_1queue_10": [ [1305812437310,9222],[1305812438311,9091],[1305812439312,9051],[1305812440312,9265],[1305812441313,8983],[1305812442314,9136],[1305812443315,9060],[1305812444315,9236],[1305812445316,9278],[1305812446317,8896],[1305812447317,9134],[1305812448318,9000],[1305812449319,9066],[1305812450319,9353],[1305812451320,9197] ], - "e_20b_10a_1topic_1": [ [1305812152231,0],[1305812153232,0],[1305812154232,0],[1305812155237,0],[1305812156238,0],[1305812157239,0],[1305812158239,0],[1305812159240,0],[1305812160241,0],[1305812161241,0],[1305812162243,0],[1305812163243,0],[1305812164244,0],[1305812165245,0],[1305812166245,0] ], - "p_20b_5a_1queue_10": [ [1305812025276,60171],[1305812026277,72765],[1305812027278,62939],[1305812028279,56840],[1305812029280,63717],[1305812030281,71466],[1305812031281,60817],[1305812032285,75318],[1305812033285,58683],[1305812034286,67043],[1305812035300,66654],[1305812036301,66250],[1305812037301,54710],[1305812038302,67571],[1305812039303,68471] ], - "c_20b_10p_10topic_10": [ [1305811609716,18810],[1305811610717,18354],[1305811611718,18818],[1305811612718,18324],[1305811613719,18857],[1305811614720,18502],[1305811615720,18584],[1305811616721,17975],[1305811617722,18739],[1305811618722,18177],[1305811619723,18723],[1305811620723,18467],[1305811621727,18682],[1305811622728,18619],[1305811623729,18602] ], - "c_20b_5a_1topic_5": [ [1305812188625,34992],[1305812189626,31601],[1305812190627,36437],[1305812191627,36476],[1305812192628,24084],[1305812193628,32038],[1305812194629,32036],[1305812195631,34432],[1305812196632,34604],[1305812197632,31599],[1305812198633,35696],[1305812199634,35043],[1305812200635,31652],[1305812201635,30816],[1305812202636,29761] ], - "c_20b_5p_1queue_10": [ [1305812416247,8254],[1305812417248,8707],[1305812418249,8442],[1305812419249,8407],[1305812420250,8629],[1305812421251,8402],[1305812422251,8404],[1305812423252,8433],[1305812424253,8632],[1305812425253,8288],[1305812426254,7761],[1305812427255,8641],[1305812428255,8337],[1305812429256,8079],[1305812430257,8629] ], - "e_20b_10a_1topic_5": [ [1305812207002,0],[1305812208004,0],[1305812209005,0],[1305812210006,0],[1305812211007,0],[1305812212012,0],[1305812213013,0],[1305812214015,0],[1305812215016,0],[1305812216016,0],[1305812217017,0],[1305812218018,0],[1305812219067,0],[1305812220068,0],[1305812221068,0] ], - "c_256k_10p_10queue_10": [ [1305811549477,568],[1305811550478,571],[1305811551479,569],[1305811552480,572],[1305811553480,568],[1305811554486,571],[1305811555488,564],[1305811556489,557],[1305811557489,570],[1305811558490,569],[1305811559491,566],[1305811560492,552],[1305811561493,520],[1305811562494,558],[1305811563495,569] ], - "e_20b_10a_1queue_5": [ [1305811943978,0],[1305811944978,0],[1305811945979,0],[1305811946980,0],[1305811947980,0],[1305811948983,0],[1305811949984,0],[1305811950985,0],[1305811951985,0],[1305811952986,0],[1305811953987,0],[1305811954988,0],[1305811955988,0],[1305811956989,0],[1305811957990,0] ], - "e_256k_5a_5queue_5": [ [1305811150487,0],[1305811151487,0],[1305811152488,0],[1305811153489,0],[1305811154490,0],[1305811155494,0],[1305811156495,0],[1305811157496,0],[1305811158496,0],[1305811159499,0],[1305811160500,0],[1305811161500,0],[1305811162501,0],[1305811163502,0],[1305811164503,0] ], - "e_20b_5a_1topic_1": [ [1305812133933,0],[1305812134934,0],[1305812135934,0],[1305812136935,0],[1305812137936,0],[1305812138936,0],[1305812139937,0],[1305812140938,0],[1305812141938,0],[1305812142939,0],[1305812143940,0],[1305812144940,0],[1305812145941,0],[1305812146948,0],[1305812147950,0] ], - "e_256k_5p_5topic_5": [ [1305811699921,0],[1305811700922,0],[1305811701926,0],[1305811702927,0],[1305811703931,0],[1305811704932,0],[1305811705933,0],[1305811706934,0],[1305811707934,0],[1305811708935,0],[1305811709936,0],[1305811710937,0],[1305811711937,0],[1305811712938,0],[1305811713942,0] ], - "e_20b_5a_1queue_1": [ [1305811736593,0],[1305811737594,0],[1305811738594,0],[1305811739595,0],[1305811740596,0],[1305811741596,0],[1305811742597,0],[1305811743598,0],[1305811744598,0],[1305811745599,0],[1305811746600,0],[1305811747600,0],[1305811748601,0],[1305811749602,0],[1305811750604,0] ], - "e_20b_10p_1topic_1": [ [1305812476381,0],[1305812477382,0],[1305812478383,0],[1305812479383,0],[1305812480384,0],[1305812481385,0],[1305812482385,0],[1305812483386,0],[1305812484387,0],[1305812485387,0],[1305812486388,0],[1305812487389,0],[1305812488389,0],[1305812489390,0],[1305812490391,0] ], - "e_20b_1p_1topic_10": [ [1305812548524,0],[1305812549525,0],[1305812550526,0],[1305812551526,0],[1305812552527,0],[1305812553528,0],[1305812554528,0],[1305812555529,0],[1305812556530,0],[1305812557531,0],[1305812558531,0],[1305812559532,0],[1305812560532,0],[1305812561533,0],[1305812562534,0] ], - "e_20b_1a_1topic_0": [ [1305812603046,0],[1305812604046,0],[1305812605047,0],[1305812606048,0],[1305812607051,0],[1305812608052,0],[1305812609053,0],[1305812610053,0],[1305812611054,0],[1305812612055,0],[1305812613055,0],[1305812614056,0],[1305812615057,0],[1305812616057,0],[1305812617059,0] ], - "p_20b_5a_5queue_5": [ [1305810975022,59946],[1305810976023,62921],[1305810977023,55397],[1305810978024,67502],[1305810979025,51006],[1305810980027,43395],[1305810981028,70280],[1305810982028,56136],[1305810983030,71578],[1305810984032,63168],[1305810985033,53351],[1305810986034,50205],[1305810987034,41411],[1305810988035,54676],[1305810989036,56932] ], - "e_20b_1a_1topic_5": [ [1305812170511,0],[1305812171513,0],[1305812172513,0],[1305812173514,0],[1305812174515,0],[1305812175515,0],[1305812176516,0],[1305812177517,0],[1305812178517,0],[1305812179518,0],[1305812180519,0],[1305812181519,0],[1305812182520,0],[1305812183521,0],[1305812184521,0] ], - "c_20b_5a_1queue_5": [ [1305811892981,23043],[1305811893982,19474],[1305811894983,16089],[1305811895984,21507],[1305811896985,21768],[1305811897985,19478],[1305811898986,21754],[1305811899987,18593],[1305811900987,20966],[1305811901988,19330],[1305811902989,26040],[1305811903989,16821],[1305811904990,18843],[1305811905991,19387],[1305811906991,19732] ], - "c_20b_0_1queue_1": [ [1305812723295,35040],[1305812724296,35275],[1305812725296,32856],[1305812726297,35218],[1305812727298,32762],[1305812728298,34878],[1305812729299,35093],[1305812730300,34174],[1305812731301,33699],[1305812732301,34066],[1305812733302,34155],[1305812734303,35076],[1305812735303,33020],[1305812736304,33478],[1305812737305,34007],[1305812738305,33471],[1305812739306,34720],[1305812740307,32528],[1305812741308,33354],[1305812742308,33715],[1305812743309,34522],[1305812744310,34763],[1305812745312,35151],[1305812746314,32782],[1305812747315,32691],[1305812748321,30594],[1305812749322,31719],[1305812750323,32757],[1305812751324,26672],[1305812752325,29954] ], - "e_1k_10p_10queue_10": [ [1305811477303,0],[1305811478304,0],[1305811479305,0],[1305811480305,0],[1305811481306,0],[1305811482307,0],[1305811483307,0],[1305811484308,0],[1305811485309,0],[1305811486309,0],[1305811487310,0],[1305811488311,0],[1305811489311,0],[1305811490312,0],[1305811491313,0] ], - "p_20b_10a_1topic_5": [ [1305812207002,47137],[1305812208004,45676],[1305812209005,49012],[1305812210006,43745],[1305812211007,46852],[1305812212012,44156],[1305812213013,52937],[1305812214015,36261],[1305812215016,29272],[1305812216016,36870],[1305812217017,40495],[1305812218018,40429],[1305812219067,51930],[1305812220068,45917],[1305812221068,47971] ], - "e_1k_1a_1topic_1": [ [1305811254528,0],[1305811255529,0],[1305811256529,0],[1305811257530,0],[1305811258531,0],[1305811259531,0],[1305811260532,0],[1305811261533,0],[1305811262533,0],[1305811263534,0],[1305811264535,0],[1305811265535,0],[1305811266536,0],[1305811267537,0],[1305811268538,0] ], - "p_256k_5a_5topic_5": [ [1305811326837,621],[1305811327838,566],[1305811328839,551],[1305811329840,600],[1305811330841,619],[1305811331842,623],[1305811332842,534],[1305811333843,641],[1305811334844,679],[1305811335845,689],[1305811336864,697],[1305811337864,672],[1305811338866,672],[1305811339866,591],[1305811340879,565] ], - "c_20b_10p_1topic_5": [ [1305812530488,34966],[1305812531488,34858],[1305812532489,36034],[1305812533490,34693],[1305812534490,35357],[1305812535491,35278],[1305812536492,35346],[1305812537492,35552],[1305812538493,35131],[1305812539494,35276],[1305812540494,34922],[1305812541495,35212],[1305812542496,36000],[1305812543496,34957],[1305812544497,35211] ], - "p_20b_10a_1queue_10": [ [1305812073757,80361],[1305812074758,83945],[1305812075759,89897],[1305812076760,87831],[1305812077761,78219],[1305812078761,66895],[1305812079762,81519],[1305812080763,72191],[1305812081771,76146],[1305812082771,92801],[1305812083772,81840],[1305812084773,75521],[1305812085782,84473],[1305812086783,85972],[1305812087784,88102] ], - "p_20b_1p_1queue_0": [ [1305812690214,1860],[1305812691215,1950],[1305812692215,1988],[1305812693216,1977],[1305812694217,1980],[1305812695217,2021],[1305812696218,1962],[1305812697219,1970],[1305812698219,1903],[1305812699220,1941],[1305812700221,2007],[1305812701221,1984],[1305812702222,1960],[1305812703223,2006],[1305812704224,1158],[1305812705224,1808],[1305812706225,1949],[1305812707226,1764],[1305812708226,1786],[1305812709227,1948],[1305812710228,2016],[1305812711228,1927],[1305812712229,1966],[1305812713230,1782],[1305812714230,1932],[1305812715231,1998],[1305812716232,1929],[1305812717232,1945],[1305812718233,2003],[1305812719234,1922] ], - "c_20b_5a_5topic_5": [ [1305811217318,22753],[1305811218320,16790],[1305811219348,27030],[1305811220349,24206],[1305811221350,24217],[1305811222351,21810],[1305811223351,24707],[1305811224352,19866],[1305811225353,26760],[1305811226353,22366],[1305811227354,27635],[1305811228355,27522],[1305811229355,25964],[1305811230356,27746],[1305811231357,21741] ], - "c_20b_5a_1queue_1": [ [1305811736593,6859],[1305811737594,9350],[1305811738594,7463],[1305811739595,7248],[1305811740596,6526],[1305811741596,9761],[1305811742597,8804],[1305811743598,7307],[1305811744598,10026],[1305811745599,10634],[1305811746600,15593],[1305811747600,9256],[1305811748601,12853],[1305811749602,9794],[1305811750604,7635] ], - "c_256k_5p_5topic_5": [ [1305811699921,453],[1305811700922,438],[1305811701926,463],[1305811702927,421],[1305811703931,477],[1305811704932,553],[1305811705933,457],[1305811706934,367],[1305811707934,422],[1305811708935,405],[1305811709936,358],[1305811710937,406],[1305811711937,461],[1305811712938,724],[1305811713942,731] ], - "c_20b_5p_5topic_5": [ [1305811591571,17077],[1305811592571,16988],[1305811593572,17088],[1305811594573,17080],[1305811595573,16979],[1305811596574,17137],[1305811597575,16854],[1305811598575,16978],[1305811599576,16794],[1305811600577,17240],[1305811601577,17005],[1305811602578,16665],[1305811603579,17047],[1305811604579,16991],[1305811605580,17114] ], - "e_20b_10p_1queue_1": [ [1305812305041,0],[1305812306042,0],[1305812307042,0],[1305812308043,0],[1305812309044,0],[1305812310044,0],[1305812311045,0],[1305812312046,0],[1305812313046,0],[1305812314047,0],[1305812315048,0],[1305812316049,0],[1305812317049,0],[1305812318050,0],[1305812319051,0] ], - "p_20b_5p_5queue_5": [ [1305811387101,8846],[1305811388102,8927],[1305811389102,8851],[1305811390103,9024],[1305811391104,8897],[1305811392104,8826],[1305811393105,8838],[1305811394106,8727],[1305811395106,8969],[1305811396107,8785],[1305811397108,8922],[1305811398108,8811],[1305811399109,8867],[1305811400110,9021],[1305811401110,8816] ], - "c_20b_1a_1queue_5": [ [1305811868911,22362],[1305811869912,22463],[1305811870912,21222],[1305811871913,23210],[1305811872914,21862],[1305811873914,23667],[1305811874915,23772],[1305811875916,23083],[1305811876916,22634],[1305811877917,24492],[1305811878918,22184],[1305811879918,21582],[1305811880919,20870],[1305811881920,20830],[1305811882920,20694] ], - "e_20b_5p_5queue_5": [ [1305811387101,0],[1305811388102,0],[1305811389102,0],[1305811390103,0],[1305811391104,0],[1305811392104,0],[1305811393105,0],[1305811394106,0],[1305811395106,0],[1305811396107,0],[1305811397108,0],[1305811398108,0],[1305811399109,0],[1305811400110,0],[1305811401110,0] ], - "e_256k_10p_10topic_10": [ [1305811718113,0],[1305811719114,0],[1305811720114,0],[1305811721115,0],[1305811722116,0],[1305811723117,0],[1305811724117,0],[1305811725118,0],[1305811726124,0],[1305811727125,0],[1305811728127,0],[1305811729128,0],[1305811730134,0],[1305811731136,0],[1305811732140,0] ], - "e_20b_5p_1queue_5": [ [1305812350109,0],[1305812351110,0],[1305812352111,0],[1305812353111,0],[1305812354112,0],[1305812355113,0],[1305812356114,0],[1305812357114,0],[1305812358115,0],[1305812359116,0],[1305812360116,0],[1305812361117,0],[1305812362118,0],[1305812363118,0],[1305812364119,0] ], - "c_256k_10p_10topic_10": [ [1305811718113,389],[1305811719114,551],[1305811720114,384],[1305811721115,358],[1305811722116,363],[1305811723117,396],[1305811724117,355],[1305811725118,381],[1305811726124,338],[1305811727125,414],[1305811728127,401],[1305811729128,415],[1305811730134,452],[1305811731136,403],[1305811732140,402] ], - "c_20b_10p_1queue_5": [ [1305812371153,8845],[1305812372156,9194],[1305812373156,9087],[1305812374157,9177],[1305812375158,8602],[1305812376158,9278],[1305812377159,9058],[1305812378160,9281],[1305812379160,8911],[1305812380161,9272],[1305812381162,8986],[1305812382162,9219],[1305812383163,8878],[1305812384164,8933],[1305812385164,9190] ], - "e_1k_5a_5queue_5": [ [1305811074998,0],[1305811075999,0],[1305811077000,0],[1305811078001,0],[1305811079001,0],[1305811080002,0],[1305811081003,0],[1305811082030,0],[1305811083031,0],[1305811084032,0],[1305811085033,0],[1305811086033,0],[1305811087034,0],[1305811088035,0],[1305811089036,0] ], - "e_1k_5p_5topic_5": [ [1305811645779,0],[1305811646779,0],[1305811647780,0],[1305811648781,0],[1305811649781,0],[1305811650782,0],[1305811651783,0],[1305811652783,0],[1305811653784,0],[1305811654785,0],[1305811655785,0],[1305811656786,0],[1305811657787,0],[1305811658787,0],[1305811659788,0] ], - "p_20b_5a_1queue_1": [ [1305811736593,87700],[1305811737594,91579],[1305811738594,93689],[1305811739595,91335],[1305811740596,91095],[1305811741596,85039],[1305811742597,87734],[1305811743598,87507],[1305811744598,90628],[1305811745599,88612],[1305811746600,86322],[1305811747600,93784],[1305811748601,94560],[1305811749602,84399],[1305811750604,93130] ], - "p_20b_1a_1topic_5": [ [1305812170511,14134],[1305812171513,12552],[1305812172513,12817],[1305812173514,12205],[1305812174515,11566],[1305812175515,10155],[1305812176516,15060],[1305812177517,11320],[1305812178517,14781],[1305812179518,15457],[1305812180519,12441],[1305812181519,13012],[1305812182520,11649],[1305812183521,14010],[1305812184521,13045] ], - "c_20b_10a_1topic_5": [ [1305812207002,36588],[1305812208004,32033],[1305812209005,34479],[1305812210006,27780],[1305812211007,34514],[1305812212012,33899],[1305812213013,28911],[1305812214015,34948],[1305812215016,42075],[1305812216016,35247],[1305812217017,29899],[1305812218018,28556],[1305812219067,30712],[1305812220068,28430],[1305812221068,29093] ], - "p_20b_1a_1queue_0": [ [1305812657123,54348],[1305812658124,55242],[1305812659125,55978],[1305812660125,54269],[1305812661126,55398],[1305812662127,53699],[1305812663127,54338],[1305812664128,55582],[1305812665129,55098],[1305812666129,54998],[1305812667130,53974],[1305812668131,54796],[1305812669131,54354],[1305812670132,54295],[1305812671133,53573],[1305812672133,54790],[1305812673134,54671],[1305812674135,55503],[1305812675135,54749],[1305812676136,54367],[1305812677137,55050],[1305812678138,54100],[1305812679138,54627],[1305812680140,55276],[1305812681141,53865],[1305812682142,54281],[1305812683146,56531],[1305812684147,53777],[1305812685147,52905],[1305812686148,55269] ], - "p_20b_1a_1queue_5": [ [1305811868911,22302],[1305811869912,22529],[1305811870912,21103],[1305811871913,23290],[1305811872914,21931],[1305811873914,23617],[1305811874915,23930],[1305811875916,22954],[1305811876916,22678],[1305811877917,24256],[1305811878918,22426],[1305811879918,21525],[1305811880919,20871],[1305811881920,20811],[1305811882920,20763] ], - "c_1k_5p_5topic_5": [ [1305811645779,15920],[1305811646779,15747],[1305811647780,16121],[1305811648781,15900],[1305811649781,16159],[1305811650782,15972],[1305811651783,15883],[1305811652783,15994],[1305811653784,15884],[1305811654785,16047],[1305811655785,16034],[1305811656786,15808],[1305811657787,15769],[1305811658787,16174],[1305811659788,16176] ], - "c_256k_5a_5topic_5": [ [1305811326837,377],[1305811327838,524],[1305811328839,452],[1305811329840,414],[1305811330841,345],[1305811331842,342],[1305811332842,386],[1305811333843,351],[1305811334844,408],[1305811335845,394],[1305811336864,354],[1305811337864,364],[1305811338866,336],[1305811339866,269],[1305811340879,511] ], - "c_20b_5a_1topic_1": [ [1305812133933,6713],[1305812134934,5923],[1305812135934,7772],[1305812136935,7049],[1305812137936,6637],[1305812138936,6799],[1305812139937,6260],[1305812140938,7921],[1305812141938,7345],[1305812142939,7895],[1305812143940,7426],[1305812144940,7387],[1305812145941,6410],[1305812146948,7105],[1305812147950,6547] ], - "e_1k_1p_1queue_1": [ [1305811432209,0],[1305811433210,0],[1305811434210,0],[1305811435211,0],[1305811436212,0],[1305811437212,0],[1305811438213,0],[1305811439214,0],[1305811440214,0],[1305811441215,0],[1305811442216,0],[1305811443216,0],[1305811444217,0],[1305811445218,0],[1305811446218,0] ], - "p_20b_5p_1queue_1": [ [1305812280999,2956],[1305812282000,3139],[1305812283001,3173],[1305812284001,3088],[1305812285002,2916],[1305812286003,2932],[1305812287003,2925],[1305812288004,3046],[1305812289005,3029],[1305812290005,3154],[1305812291006,3184],[1305812292007,3128],[1305812293007,3153],[1305812294008,3173],[1305812295009,3018] ], - "e_20b_10p_1queue_10": [ [1305812437310,0],[1305812438311,0],[1305812439312,0],[1305812440312,0],[1305812441313,0],[1305812442314,0],[1305812443315,0],[1305812444315,0],[1305812445316,0],[1305812446317,0],[1305812447317,0],[1305812448318,0],[1305812449319,0],[1305812450319,0],[1305812451320,0] ], - "c_20b_10a_1queue_5": [ [1305811943978,17727],[1305811944978,21465],[1305811945979,19707],[1305811946980,20884],[1305811947980,19045],[1305811948983,13525],[1305811949984,18677],[1305811950985,19397],[1305811951985,18995],[1305811952986,17962],[1305811953987,19100],[1305811954988,15891],[1305811955988,17212],[1305811956989,16567],[1305811957990,14702] ], - "e_256k_1p_1topic_1": [ [1305811681888,0],[1305811682889,0],[1305811683890,0],[1305811684891,0],[1305811685891,0],[1305811686892,0],[1305811687893,0],[1305811688893,0],[1305811689894,0],[1305811690895,0],[1305811691896,0],[1305811692898,0],[1305811693898,0],[1305811694899,0],[1305811695902,0] ], - "p_256k_1a_1topic_1": [ [1305811308805,0],[1305811309806,0],[1305811310807,311],[1305811311807,537],[1305811312808,545],[1305811313809,537],[1305811314809,545],[1305811315810,545],[1305811316811,544],[1305811317812,542],[1305811318812,550],[1305811319815,547],[1305811320818,546],[1305811321819,547],[1305811322820,548] ], - "e_20b_1a_1topic_1": [ [1305811199197,0],[1305811200197,0],[1305811201198,0],[1305811202199,0],[1305811203199,0],[1305811204200,0],[1305811205201,0],[1305811206201,0],[1305811207202,0],[1305811208203,0],[1305811209203,0],[1305811210204,0],[1305811211205,0],[1305811212205,0],[1305811213206,0] ], - "p_1k_10a_10topic_10": [ [1305811290701,37706],[1305811291701,39337],[1305811292702,37670],[1305811293710,32365],[1305811294725,43378],[1305811295726,42492],[1305811296726,41319],[1305811297727,40541],[1305811298728,43304],[1305811299729,41474],[1305811300749,35041],[1305811301750,38627],[1305811302751,38958],[1305811303752,41733],[1305811304752,39245] ], - "p_20b_5p_1queue_5": [ [1305812350109,8193],[1305812351110,7934],[1305812352111,7855],[1305812353111,8163],[1305812354112,7743],[1305812355113,7804],[1305812356114,7929],[1305812357114,8047],[1305812358115,7805],[1305812359116,7684],[1305812360116,8018],[1305812361117,7945],[1305812362118,7721],[1305812363118,7887],[1305812364119,8067] ], - "p_20b_10a_1topic_1": [ [1305812152231,96483],[1305812153232,88134],[1305812154232,92242],[1305812155237,86462],[1305812156238,84393],[1305812157239,78755],[1305812158239,97505],[1305812159240,90858],[1305812160241,79312],[1305812161241,93346],[1305812162243,85999],[1305812163243,84507],[1305812164244,96076],[1305812165245,95951],[1305812166245,94815] ], - "p_256k_1a_1topic_0": [ [1305812639091,627],[1305812640092,621],[1305812641093,623],[1305812642093,619],[1305812643094,617],[1305812644095,622],[1305812645095,623],[1305812646096,619],[1305812647097,622],[1305812648097,623],[1305812649098,620],[1305812650099,625],[1305812651099,618],[1305812652100,623],[1305812653101,624] ], - "p_20b_1p_1topic_1": [ [1305811573546,9080],[1305811574547,9126],[1305811575547,9150],[1305811576548,9003],[1305811577549,9130],[1305811578549,9112],[1305811579550,9104],[1305811580551,9033],[1305811581551,9124],[1305811582552,9081],[1305811583553,9128],[1305811584553,8974],[1305811585554,9060],[1305811586555,9119],[1305811587555,9079] ], - "c_20b_10a_1queue_1": [ [1305811802727,12747],[1305811803728,13838],[1305811804729,12847],[1305811805730,9450],[1305811806730,9541],[1305811807733,9099],[1305811808733,10373],[1305811809734,11161],[1305811810736,13341],[1305811811737,15804],[1305811812738,12515],[1305811813739,12268],[1305811814742,12174],[1305811815742,13808],[1305811816743,13660] ], - "c_256k_1a_1queue_1": [ [1305811126415,596],[1305811127416,593],[1305811128416,595],[1305811129417,594],[1305811130418,589],[1305811131418,592],[1305811132419,596],[1305811133420,594],[1305811134420,596],[1305811135421,592],[1305811136423,79],[1305811137424,0],[1305811138424,0],[1305811139425,0],[1305811140426,468] ], - "c_1k_5a_5topic_5": [ [1305811272559,29181],[1305811273560,25572],[1305811274568,26941],[1305811275568,30250],[1305811276569,24614],[1305811277570,24624],[1305811278570,24920],[1305811279571,27293],[1305811280572,25646],[1305811281573,22575],[1305811282573,21930],[1305811283574,22218],[1305811284575,24762],[1305811285576,22646],[1305811286577,17850] ], - "p_256k_1a_1queue_1": [ [1305811126415,595],[1305811127416,593],[1305811128416,596],[1305811129417,593],[1305811130418,589],[1305811131418,592],[1305811132419,596],[1305811133420,595],[1305811134420,595],[1305811135421,592],[1305811136423,601],[1305811137424,597],[1305811138424,567],[1305811139425,564],[1305811140426,504] ], - "c_20b_1a_1queue_1": [ [1305810938869,3286],[1305810939898,8718],[1305810940899,17110],[1305810941899,20660],[1305810942900,20384],[1305810943901,19964],[1305810944901,19633],[1305810945902,19022],[1305810946903,20594],[1305810947904,16551],[1305810948904,18805],[1305810949905,22111],[1305810950906,19618],[1305810951906,18775],[1305810952907,17535] ], - "p_20b_1p_1queue_5": [ [1305812329072,2230],[1305812330073,2212],[1305812331073,2284],[1305812332074,2186],[1305812333075,2234],[1305812334075,2252],[1305812335076,2222],[1305812336076,2251],[1305812337077,2189],[1305812338078,2276],[1305812339078,2201],[1305812340079,2272],[1305812341080,2188],[1305812342081,2275],[1305812343081,2282] ], - "p_256k_5a_5queue_5": [ [1305811150487,640],[1305811151487,661],[1305811152488,621],[1305811153489,658],[1305811154490,624],[1305811155494,597],[1305811156495,694],[1305811157496,608],[1305811158496,688],[1305811159499,655],[1305811160500,562],[1305811161500,678],[1305811162501,622],[1305811163502,658],[1305811164503,646] ], - "c_256k_1p_1queue_1": [ [1305811501368,91],[1305811502369,101],[1305811503369,106],[1305811504370,104],[1305811505371,105],[1305811506372,107],[1305811507372,99],[1305811508373,105],[1305811509374,109],[1305811510374,106],[1305811511375,108],[1305811512376,103],[1305811513376,106],[1305811514377,104],[1305811515378,106] ], - "p_20b_1a_1topic_10": [ [1305812225485,7108],[1305812226486,10781],[1305812227486,11809],[1305812228487,7472],[1305812229488,9153],[1305812230488,5126],[1305812231489,8729],[1305812232490,7886],[1305812233490,7536],[1305812234491,6662],[1305812235492,8648],[1305812236493,6191],[1305812237493,7471],[1305812238494,5504],[1305812239495,9417] ], - "c_20b_1p_1topic_10": [ [1305812548524,31963],[1305812549525,30569],[1305812550526,32332],[1305812551526,30198],[1305812552527,31158],[1305812553528,31414],[1305812554528,31019],[1305812555529,32426],[1305812556530,30323],[1305812557531,31568],[1305812558531,30980],[1305812559532,32985],[1305812560532,31125],[1305812561533,30887],[1305812562534,31282] ], - "p_20b_5a_1topic_10": [ [1305812243860,22187],[1305812244860,23011],[1305812245861,23695],[1305812246867,22826],[1305812247867,23286],[1305812248868,22657],[1305812249869,31441],[1305812250869,27450],[1305812251870,21441],[1305812252871,18172],[1305812253871,25030],[1305812254872,26115],[1305812255873,27970],[1305812256873,23297],[1305812257874,19442] ], - "c_20b_10p_1queue_1": [ [1305812305041,2928],[1305812306042,2990],[1305812307042,3161],[1305812308043,3096],[1305812309044,3157],[1305812310044,3092],[1305812311045,3125],[1305812312046,3177],[1305812313046,3085],[1305812314047,2790],[1305812315048,2690],[1305812316049,2601],[1305812317049,2612],[1305812318050,2880],[1305812319051,2837] ], - "c_20b_5p_1topic_10": [ [1305812566554,39280],[1305812567555,39931],[1305812568556,39751],[1305812569556,39271],[1305812570557,39588],[1305812571558,39406],[1305812572558,39695],[1305812573559,40025],[1305812574560,39588],[1305812575560,39591],[1305812576561,39860],[1305812577562,39331],[1305812578562,39795],[1305812579563,39505],[1305812580564,40108] ], - "e_20b_5a_1queue_10": [ [1305812025276,0],[1305812026277,0],[1305812027278,0],[1305812028279,0],[1305812029280,0],[1305812030281,0],[1305812031281,0],[1305812032285,0],[1305812033285,0],[1305812034286,0],[1305812035300,0],[1305812036301,0],[1305812037301,0],[1305812038302,0],[1305812039303,0] ], - "e_20b_10p_1topic_10": [ [1305812584643,0],[1305812585644,0],[1305812586644,0],[1305812587645,0],[1305812588646,0],[1305812589646,0],[1305812590647,0],[1305812591648,0],[1305812592648,0],[1305812593649,0],[1305812594650,0],[1305812595651,0],[1305812596651,0],[1305812597652,0],[1305812598653,0] ], - "e_1k_1p_1topic_1": [ [1305811627752,0],[1305811628753,0],[1305811629753,0],[1305811630754,0],[1305811631755,0],[1305811632755,0],[1305811633756,0],[1305811634757,0],[1305811635757,0],[1305811636758,0],[1305811637759,0],[1305811638759,0],[1305811639760,0],[1305811640761,0],[1305811641761,0] ], - "e_20b_10a_10topic_10": [ [1305811235908,0],[1305811236909,0],[1305811237910,0],[1305811238918,0],[1305811239919,0],[1305811240920,0],[1305811241921,0],[1305811242927,0],[1305811243927,0],[1305811244928,0],[1305811245929,0],[1305811246930,0],[1305811247930,0],[1305811248931,0],[1305811249932,0] ], - "p_20b_1a_1topic_1": [ [1305811199197,37340],[1305811200197,37937],[1305811201198,37684],[1305811202199,36793],[1305811203199,37752],[1305811204200,37145],[1305811205201,38857],[1305811206201,37700],[1305811207202,38919],[1305811208203,40037],[1305811209203,37492],[1305811210204,38574],[1305811211205,38855],[1305811212205,36958],[1305811213206,37164] ], - "p_20b_10a_10topic_10": [ [1305811235908,65483],[1305811236909,79406],[1305811237910,69212],[1305811238918,60693],[1305811239919,69191],[1305811240920,60569],[1305811241921,61747],[1305811242927,60208],[1305811243927,65688],[1305811244928,62542],[1305811245929,67329],[1305811246930,45906],[1305811247930,68089],[1305811248931,59053],[1305811249932,62926] ], - "c_1k_1p_1topic_1": [ [1305811627752,8475],[1305811628753,8381],[1305811629753,8445],[1305811630754,8464],[1305811631755,8392],[1305811632755,8417],[1305811633756,8423],[1305811634757,8391],[1305811635757,8459],[1305811636758,8425],[1305811637759,8372],[1305811638759,8400],[1305811639760,8375],[1305811640761,8324],[1305811641761,8394] ], - "e_256k_1a_1topic_0": [ [1305812639091,0],[1305812640092,0],[1305812641093,0],[1305812642093,0],[1305812643094,0],[1305812644095,0],[1305812645095,0],[1305812646096,0],[1305812647097,0],[1305812648097,0],[1305812649098,0],[1305812650099,0],[1305812651099,0],[1305812652100,0],[1305812653101,0] ], - "c_20b_1p_1queue_10": [ [1305812395193,2187],[1305812396194,2249],[1305812397195,2162],[1305812398196,2274],[1305812399196,2207],[1305812400197,2200],[1305812401198,2224],[1305812402198,2213],[1305812403199,2264],[1305812404200,2188],[1305812405200,1963],[1305812406201,2102],[1305812407202,2189],[1305812408202,2276],[1305812409203,2239] ], - "p_256k_10p_10topic_10": [ [1305811718113,644],[1305811719114,616],[1305811720114,678],[1305811721115,650],[1305811722116,641],[1305811723117,655],[1305811724117,661],[1305811725118,647],[1305811726124,624],[1305811727125,578],[1305811728127,656],[1305811729128,664],[1305811730134,651],[1305811731136,623],[1305811732140,610] ], - "c_20b_10a_1queue_10": [ [1305812073757,13897],[1305812074758,14740],[1305812075759,12404],[1305812076760,11369],[1305812077761,15697],[1305812078761,21273],[1305812079762,12403],[1305812080763,17278],[1305812081771,15538],[1305812082771,8095],[1305812083772,14982],[1305812084773,21037],[1305812085782,12097],[1305812086783,14407],[1305812087784,15486] ], - "p_1k_1a_1topic_1": [ [1305811254528,30889],[1305811255529,30755],[1305811256529,31114],[1305811257530,30832],[1305811258531,31125],[1305811259531,30981],[1305811260532,30193],[1305811261533,30973],[1305811262533,30913],[1305811263534,30266],[1305811264535,30988],[1305811265535,30950],[1305811266536,30733],[1305811267537,30344],[1305811268538,30898] ], - "p_256k_1p_1queue_1": [ [1305811501368,91],[1305811502369,101],[1305811503369,106],[1305811504370,105],[1305811505371,105],[1305811506372,106],[1305811507372,99],[1305811508373,105],[1305811509374,109],[1305811510374,106],[1305811511375,108],[1305811512376,103],[1305811513376,106],[1305811514377,104],[1305811515378,106] ], - "p_1k_1a_1queue_1": [ [1305811050917,27384],[1305811051917,27206],[1305811052918,27179],[1305811053919,26448],[1305811054920,27791],[1305811055920,26908],[1305811056921,26170],[1305811057922,26817],[1305811058922,26688],[1305811059923,25577],[1305811060926,26333],[1305811061927,29480],[1305811062928,27812],[1305811063928,26448],[1305811064929,28133] ], - "p_1k_10p_10topic_10": [ [1305811663858,17227],[1305811664858,17524],[1305811665859,17750],[1305811666860,17376],[1305811667860,17484],[1305811668861,17644],[1305811669862,17706],[1305811670863,17444],[1305811671863,17415],[1305811672864,17507],[1305811673865,17509],[1305811674865,17489],[1305811675866,17640],[1305811676867,16862],[1305811677867,17544] ], - "e_256k_5a_5topic_5": [ [1305811326837,0],[1305811327838,0],[1305811328839,0],[1305811329840,0],[1305811330841,0],[1305811331842,0],[1305811332842,0],[1305811333843,0],[1305811334844,0],[1305811335845,0],[1305811336864,0],[1305811337864,0],[1305811338866,0],[1305811339866,0],[1305811340879,0] ], - "p_20b_5p_1queue_10": [ [1305812416247,8255],[1305812417248,8705],[1305812418249,8443],[1305812419249,8407],[1305812420250,8629],[1305812421251,8399],[1305812422251,8407],[1305812423252,8432],[1305812424253,8633],[1305812425253,8287],[1305812426254,7760],[1305812427255,8642],[1305812428255,8337],[1305812429256,8080],[1305812430257,8628] ], - "e_20b_10a_10queue_10": [ [1305811020358,0],[1305811021359,0],[1305811022360,0],[1305811023361,0],[1305811024362,0],[1305811025365,0],[1305811026366,0],[1305811027367,0],[1305811028371,0],[1305811029386,0],[1305811030387,0],[1305811031387,0],[1305811032388,0],[1305811033389,0],[1305811034390,0] ], - "e_20b_5p_1topic_5": [ [1305812512435,0],[1305812513436,0],[1305812514436,0],[1305812515437,0],[1305812516438,0],[1305812517438,0],[1305812518439,0],[1305812519440,0],[1305812520440,0],[1305812521441,0],[1305812522442,0],[1305812523442,0],[1305812524443,0],[1305812525444,0],[1305812526444,0] ], - "e_20b_1a_1topic_10": [ [1305812225485,0],[1305812226486,0],[1305812227486,0],[1305812228487,0],[1305812229488,0],[1305812230488,0],[1305812231489,0],[1305812232490,0],[1305812233490,0],[1305812234491,0],[1305812235492,0],[1305812236493,0],[1305812237493,0],[1305812238494,0],[1305812239495,0] ], - "e_20b_10a_1queue_10": [ [1305812073757,0],[1305812074758,0],[1305812075759,0],[1305812076760,0],[1305812077761,0],[1305812078761,0],[1305812079762,0],[1305812080763,0],[1305812081771,0],[1305812082771,0],[1305812083772,0],[1305812084773,0],[1305812085782,0],[1305812086783,0],[1305812087784,0] ], - "c_20b_10a_10topic_10": [ [1305811235908,24596],[1305811236909,25081],[1305811237910,26366],[1305811238918,32296],[1305811239919,25553],[1305811240920,29375],[1305811241921,30552],[1305811242927,27902],[1305811243927,25346],[1305811244928,31298],[1305811245929,25442],[1305811246930,33970],[1305811247930,26281],[1305811248931,28609],[1305811249932,27481] ], - "e_20b_10a_1queue_1": [ [1305811802727,0],[1305811803728,0],[1305811804729,0],[1305811805730,0],[1305811806730,0],[1305811807733,0],[1305811808733,0],[1305811809734,0],[1305811810736,0],[1305811811737,0],[1305811812738,0],[1305811813739,0],[1305811814742,0],[1305811815742,0],[1305811816743,0] ], - "e_20b_5a_1topic_10": [ [1305812243860,0],[1305812244860,0],[1305812245861,0],[1305812246867,0],[1305812247867,0],[1305812248868,0],[1305812249869,0],[1305812250869,0],[1305812251870,0],[1305812252871,0],[1305812253871,0],[1305812254872,0],[1305812255873,0],[1305812256873,0],[1305812257874,0] ], - "c_1k_5p_5queue_5": [ [1305811453235,8642],[1305811454236,8692],[1305811455237,8876],[1305811456237,8511],[1305811457238,8859],[1305811458239,8723],[1305811459239,8711],[1305811460240,8717],[1305811461241,8758],[1305811462241,8725],[1305811463242,8905],[1305811464243,8662],[1305811465243,8648],[1305811466244,8621],[1305811467245,8846] ], - "c_20b_10p_1topic_10": [ [1305812584643,39197],[1305812585644,39668],[1305812586644,39011],[1305812587645,39470],[1305812588646,39348],[1305812589646,39160],[1305812590647,39877],[1305812591648,39509],[1305812592648,39526],[1305812593649,39260],[1305812594650,39451],[1305812595651,39529],[1305812596651,40223],[1305812597652,38968],[1305812598653,39545] ], - "p_20b_10p_1topic_5": [ [1305812530488,6989],[1305812531488,7038],[1305812532489,7143],[1305812533490,6991],[1305812534490,7056],[1305812535491,7110],[1305812536492,7137],[1305812537492,6968],[1305812538493,7003],[1305812539494,7155],[1305812540494,6898],[1305812541495,7106],[1305812542496,7123],[1305812543496,7021],[1305812544497,7017] ], - "e_20b_1a_1queue_5": [ [1305811868911,0],[1305811869912,0],[1305811870912,0],[1305811871913,0],[1305811872914,0],[1305811873914,0],[1305811874915,0],[1305811875916,0],[1305811876916,0],[1305811877917,0],[1305811878918,0],[1305811879918,0],[1305811880919,0],[1305811881920,0],[1305811882920,0] ], - "e_20b_1p_1topic_5": [ [1305812494404,0],[1305812495405,0],[1305812496406,0],[1305812497408,0],[1305812498408,0],[1305812499409,0],[1305812500410,0],[1305812501410,0],[1305812502411,0],[1305812503412,0],[1305812504412,0],[1305812505413,0],[1305812506414,0],[1305812507414,0],[1305812508415,0] ], - "p_1k_10p_10queue_10": [ [1305811477303,8980],[1305811478304,9059],[1305811479305,8981],[1305811480305,8887],[1305811481306,9003],[1305811482307,9055],[1305811483307,8874],[1305811484308,8996],[1305811485309,9084],[1305811486309,8939],[1305811487310,9064],[1305811488311,8936],[1305811489311,8981],[1305811490312,8846],[1305811491313,9023] ], - "p_20b_10a_10queue_10": [ [1305811020358,29981],[1305811021359,34982],[1305811022360,30989],[1305811023361,36938],[1305811024362,42681],[1305811025365,30395],[1305811026366,25197],[1305811027367,37959],[1305811028371,29366],[1305811029386,29731],[1305811030387,23388],[1305811031387,30210],[1305811032388,18243],[1305811033389,31854],[1305811034390,36487] ], - "e_256k_10a_10topic_10": [ [1305811345010,0],[1305811346010,0],[1305811347011,0],[1305811348012,0],[1305811349014,0],[1305811350017,0],[1305811351018,0],[1305811352018,0],[1305811353019,0],[1305811354024,0],[1305811355025,0],[1305811356025,0],[1305811357026,0],[1305811358027,0],[1305811359028,0] ], - "p_256k_1p_1topic_1": [ [1305811681888,525],[1305811682889,526],[1305811683890,521],[1305811684891,528],[1305811685891,525],[1305811686892,529],[1305811687893,524],[1305811688893,526],[1305811689894,527],[1305811690895,522],[1305811691896,528],[1305811692898,526],[1305811693898,527],[1305811694899,527],[1305811695902,532] ], - "e_20b_5p_5topic_5": [ [1305811591571,0],[1305811592571,0],[1305811593572,0],[1305811594573,0],[1305811595573,0],[1305811596574,0],[1305811597575,0],[1305811598575,0],[1305811599576,0],[1305811600577,0],[1305811601577,0],[1305811602578,0],[1305811603579,0],[1305811604579,0],[1305811605580,0] ], - "c_20b_10a_10queue_10": [ [1305811020358,23255],[1305811021359,22873],[1305811022360,22719],[1305811023361,22286],[1305811024362,20883],[1305811025365,24326],[1305811026366,25338],[1305811027367,21433],[1305811028371,26593],[1305811029386,23950],[1305811030387,28919],[1305811031387,25319],[1305811032388,27808],[1305811033389,23947],[1305811034390,25640] ], - "p_20b_5a_1topic_5": [ [1305812188625,41506],[1305812189626,43317],[1305812190627,37069],[1305812191627,43542],[1305812192628,48620],[1305812193628,40999],[1305812194629,42997],[1305812195631,41339],[1305812196632,39629],[1305812197632,43607],[1305812198633,37406],[1305812199634,42613],[1305812200635,43788],[1305812201635,39224],[1305812202636,49831] ] -} diff --git a/reports/mbp-2-core/apollo-1.0-SNAPSHOT.json b/reports/mbp-2-core/apollo-1.0-SNAPSHOT.json deleted file mode 100644 index de4ca9e..0000000 --- a/reports/mbp-2-core/apollo-1.0-SNAPSHOT.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "benchmark_settings": { - "broker_name": "apollo-1.0-SNAPSHOT", - "url": "tcp://localhost:61613", - "sample_count": 15, - "sample_interval": 1000, - "warm_up_count": 3, - "scenario_connection_scale_rate": 50 - }, - "p_20b_5p_1queue_1": [ [1310957931901,8145],[1310957932901,8000],[1310957933901,8214],[1310957934902,7911],[1310957935902,8291],[1310957936902,7957],[1310957937906,8203],[1310957938907,7973],[1310957939907,8200],[1310957940907,7987],[1310957941907,8167],[1310957942907,7890],[1310957943908,8123],[1310957944908,7918],[1310957945908,8288] ], - "p_20b_10a_10queue_10": [ [1310956867027,90877],[1310956868027,81386],[1310956869045,81266],[1310956870045,83663],[1310956871045,67568],[1310956872045,89152],[1310956873048,83306],[1310956874054,58285],[1310956875055,88163],[1310956876055,76333],[1310956877059,79953],[1310956878086,94284],[1310956879087,61975],[1310956880094,91800],[1310956881103,86949] ], - "e_256k_1p_1queue_1": [ [1310957346250,0],[1310957347250,0],[1310957348251,0],[1310957349251,0],[1310957350252,0],[1310957351252,0],[1310957352255,0],[1310957353257,0],[1310957354257,0],[1310957355257,0],[1310957356257,0],[1310957357257,0],[1310957358258,0],[1310957359258,0],[1310957360258,0] ], - "p_20b_1a_1queue_0": [ [1310958315027,38014],[1310958316028,34438],[1310958317028,37246],[1310958318028,42035],[1310958319028,33578],[1310958320029,37548],[1310958321029,38275],[1310958322029,38011],[1310958323030,37949],[1310958324030,37795],[1310958325030,37752],[1310958326030,38023],[1310958327030,33826],[1310958328031,37822],[1310958329031,37784],[1310958330031,37966],[1310958331032,37862],[1310958332032,25593],[1310958333032,21368],[1310958334032,37873],[1310958335033,37733],[1310958336033,38010],[1310958337033,37849],[1310958338033,37907],[1310958339034,37426],[1310958340034,37688],[1310958341034,33661],[1310958342034,33736],[1310958343035,37359],[1310958344035,33408] ], - "p_20b_1a_1queue_5": [ [1310957635819,117734],[1310957636819,121903],[1310957637820,117853],[1310957638820,122240],[1310957639820,118405],[1310957640821,121634],[1310957641821,117677],[1310957642821,121940],[1310957643821,116394],[1310957644823,122609],[1310957645824,118707],[1310957646828,117736],[1310957647828,119706],[1310957648828,120864],[1310957649829,120110] ], - "p_256k_1p_1queue_1": [ [1310957346250,269],[1310957347250,272],[1310957348251,271],[1310957349251,273],[1310957350252,267],[1310957351252,272],[1310957352255,270],[1310957353257,272],[1310957354257,269],[1310957355257,272],[1310957356257,269],[1310957357257,268],[1310957358258,270],[1310957359258,239],[1310957360258,245] ], - "e_20b_10p_10queue_10": [ [1310957251134,0],[1310957252134,0],[1310957253135,0],[1310957254135,0],[1310957255135,0],[1310957256135,0],[1310957257136,0],[1310957258136,0],[1310957259136,0],[1310957260136,0],[1310957261136,0],[1310957262137,0],[1310957263137,0],[1310957264137,0],[1310957265137,0] ], - "p_20b_5p_5topic_5": [ [1310957438398,10576],[1310957439398,10503],[1310957440398,10578],[1310957441399,10552],[1310957442399,10650],[1310957443399,10326],[1310957444399,10626],[1310957445400,10463],[1310957446400,10481],[1310957447400,10465],[1310957448400,10640],[1310957449400,10534],[1310957450401,10594],[1310957451401,10094],[1310957452401,10464] ], - "e_20b_1a_1topic_10": [ [1310957876358,0],[1310957877359,0],[1310957878359,0],[1310957879361,0],[1310957880361,0],[1310957881366,0],[1310957882366,0],[1310957883366,0],[1310957884367,0],[1310957885367,0],[1310957886373,0],[1310957887373,0],[1310957888376,0],[1310957889376,0],[1310957890376,0] ], - "e_20b_1p_1queue_10": [ [1310958045498,0],[1310958046498,0],[1310958047498,0],[1310958048499,0],[1310958049499,0],[1310958050499,0],[1310958051499,0],[1310958052499,0],[1310958053500,0],[1310958054500,0],[1310958055500,0],[1310958056500,0],[1310958057500,0],[1310958058501,0],[1310958059501,0] ], - "c_20b_10p_1topic_1": [ [1310958131576,16309],[1310958132576,16670],[1310958133576,16546],[1310958134577,16443],[1310958135577,16330],[1310958136577,16325],[1310958137577,16607],[1310958138577,16403],[1310958139578,16441],[1310958140578,16480],[1310958141578,16494],[1310958142578,16356],[1310958143579,16159],[1310958144579,16318],[1310958145579,16396] ], - "e_20b_1a_1queue_10": [ [1310957710028,0],[1310957711029,0],[1310957712029,0],[1310957713029,0],[1310957714029,0],[1310957715030,0],[1310957716030,0],[1310957717030,0],[1310957718032,0],[1310957719032,0],[1310957720033,0],[1310957721033,0],[1310957722033,0],[1310957723033,0],[1310957724033,0] ], - "c_1k_1a_1topic_1": [ [1310957094866,67728],[1310957095866,67775],[1310957096866,67437],[1310957097867,66797],[1310957098867,67793],[1310957099867,68249],[1310957100869,66181],[1310957101870,66700],[1310957102871,66950],[1310957103871,67610],[1310957104871,67574],[1310957105874,67619],[1310957106874,67937],[1310957107874,67456],[1310957108875,67314] ], - "p_20b_1a_1topic_10": [ [1310957876358,24562],[1310957877359,27657],[1310957878359,27820],[1310957879361,27229],[1310957880361,24902],[1310957881366,29690],[1310957882366,22894],[1310957883366,28765],[1310957884367,27895],[1310957885367,27813],[1310957886373,28839],[1310957887373,31600],[1310957888376,29947],[1310957889376,23613],[1310957890376,28830] ], - "p_256k_5p_5topic_5": [ [1310957549525,337],[1310957550527,339],[1310957551527,328],[1310957552533,358],[1310957553534,337],[1310957554534,336],[1310957555534,342],[1310957556535,318],[1310957557536,356],[1310957558536,344],[1310957559538,329],[1310957560540,351],[1310957561540,333],[1310957562541,333],[1310957563541,354] ], - "e_256k_10p_10topic_10": [ [1310957568071,0],[1310957569071,0],[1310957570074,0],[1310957571076,0],[1310957572076,0],[1310957573077,0],[1310957574081,0],[1310957575081,0],[1310957576082,0],[1310957577082,0],[1310957578082,0],[1310957579083,0],[1310957580091,0],[1310957581098,0],[1310957582099,0] ], - "c_1k_1p_1topic_1": [ [1310957475426,5460],[1310957476426,5477],[1310957477427,5478],[1310957478428,5464],[1310957479428,5488],[1310957480430,5492],[1310957481430,5483],[1310957482433,5498],[1310957483436,5496],[1310957484437,5484],[1310957485437,5459],[1310957486437,5470],[1310957487437,5485],[1310957488438,5490],[1310957489438,5477] ], - "c_20b_1a_1topic_1": [ [1310957039727,123730],[1310957040727,131124],[1310957041727,128226],[1310957042732,130019],[1310957043732,128680],[1310957044732,129100],[1310957045733,127004],[1310957046733,131641],[1310957047733,116622],[1310957048733,130476],[1310957049733,129208],[1310957050734,130771],[1310957051734,128342],[1310957052734,132005],[1310957053735,127735] ], - "c_20b_5p_1topic_5": [ [1310958168100,36204],[1310958169100,34664],[1310958170100,35326],[1310958171101,33341],[1310958172101,35559],[1310958173101,35223],[1310958174101,34673],[1310958175101,34591],[1310958176102,35669],[1310958177102,34556],[1310958178102,34922],[1310958179102,34216],[1310958180103,35816],[1310958181103,34898],[1310958182103,35366] ], - "p_1k_1p_1queue_1": [ [1310957275663,2360],[1310957276663,2384],[1310957277664,2363],[1310957278664,2296],[1310957279664,2335],[1310957280664,2095],[1310957281664,2060],[1310957282665,2257],[1310957283665,2281],[1310957284665,2316],[1310957285665,2333],[1310957286665,2403],[1310957287666,2390],[1310957288666,2394],[1310957289666,2381] ], - "e_1k_10a_10queue_10": [ [1310956940911,0],[1310956941912,0],[1310956942912,0],[1310956943914,0],[1310956944914,0],[1310956945915,0],[1310956946915,0],[1310956947915,0],[1310956948915,0],[1310956949916,0],[1310956950916,0],[1310956951916,0],[1310956952917,0],[1310956953917,0],[1310956954919,0] ], - "c_256k_5p_5topic_5": [ [1310957549525,338],[1310957550527,340],[1310957551527,327],[1310957552533,360],[1310957553534,337],[1310957554534,334],[1310957555534,342],[1310957556535,316],[1310957557536,359],[1310957558536,344],[1310957559538,328],[1310957560540,353],[1310957561540,331],[1310957562541,333],[1310957563541,356] ], - "p_20b_1p_1queue_10": [ [1310958045498,2515],[1310958046498,2510],[1310958047498,2505],[1310958048499,2496],[1310958049499,2502],[1310958050499,2508],[1310958051499,2379],[1310958052499,2489],[1310958053500,2484],[1310958054500,2513],[1310958055500,2502],[1310958056500,2495],[1310958057500,2504],[1310958058501,2513],[1310958059501,2500] ], - "p_20b_10p_1topic_10": [ [1310958242178,6862],[1310958243178,6802],[1310958244178,6933],[1310958245178,6899],[1310958246179,6928],[1310958247179,6771],[1310958248179,7011],[1310958249179,6892],[1310958250180,6954],[1310958251180,6913],[1310958252180,7205],[1310958253181,6958],[1310958254181,7010],[1310958255181,6955],[1310958256181,6894] ], - "p_1k_1p_1topic_1": [ [1310957475426,5461],[1310957476426,5476],[1310957477427,5478],[1310957478428,5464],[1310957479428,5488],[1310957480430,5492],[1310957481430,5483],[1310957482433,5498],[1310957483436,5496],[1310957484437,5485],[1310957485437,5458],[1310957486437,5470],[1310957487437,5485],[1310957488438,5491],[1310957489438,5476] ], - "e_20b_10a_10queue_10": [ [1310956867027,0],[1310956868027,0],[1310956869045,0],[1310956870045,0],[1310956871045,0],[1310956872045,0],[1310956873048,0],[1310956874054,0],[1310956875055,0],[1310956876055,0],[1310956877059,0],[1310956878086,0],[1310956879087,0],[1310956880094,0],[1310956881103,0] ], - "p_256k_10a_10topic_10": [ [1310957187036,329],[1310957188043,314],[1310957189043,313],[1310957190044,332],[1310957191044,316],[1310957192046,301],[1310957193052,301],[1310957194053,315],[1310957195067,327],[1310957196068,334],[1310957197068,317],[1310957198068,323],[1310957199069,329],[1310957200070,314],[1310957201072,327] ], - "p_256k_1p_1topic_1": [ [1310957530985,349],[1310957531987,341],[1310957532988,342],[1310957533990,338],[1310957534992,340],[1310957535996,340],[1310957536997,339],[1310957538002,336],[1310957539002,334],[1310957540007,334],[1310957541008,329],[1310957542008,326],[1310957543009,324],[1310957544013,319],[1310957545013,317] ], - "e_256k_10a_10topic_10": [ [1310957187036,0],[1310957188043,0],[1310957189043,0],[1310957190044,0],[1310957191044,0],[1310957192046,0],[1310957193052,0],[1310957194053,0],[1310957195067,0],[1310957196068,0],[1310957197068,0],[1310957198068,0],[1310957199069,0],[1310957200070,0],[1310957201072,0] ], - "e_20b_10a_1queue_5": [ [1310957685182,0],[1310957686182,0],[1310957687182,0],[1310957688188,0],[1310957689189,0],[1310957690189,0],[1310957691191,0],[1310957692191,0],[1310957693191,0],[1310957694191,0],[1310957695192,0],[1310957696208,0],[1310957697209,0],[1310957698209,0],[1310957699209,0] ], - "p_1k_10p_10queue_10": [ [1310957321725,7115],[1310957322725,7080],[1310957323726,6974],[1310957324726,6612],[1310957325726,7080],[1310957326726,7358],[1310957327727,7205],[1310957328727,7068],[1310957329727,6085],[1310957330727,6189],[1310957331728,6310],[1310957332728,6499],[1310957333728,6339],[1310957334730,6555],[1310957335730,6410] ], - "e_20b_5a_1queue_1": [ [1310957586606,0],[1310957587606,0],[1310957588607,0],[1310957589607,0],[1310957590607,0],[1310957591607,0],[1310957592608,0],[1310957593608,0],[1310957594608,0],[1310957595608,0],[1310957596609,0],[1310957597609,0],[1310957598609,0],[1310957599609,0],[1310957600610,0] ], - "c_1k_5a_5queue_5": [ [1310956916303,66358],[1310956917303,58904],[1310956918306,65042],[1310956919306,67399],[1310956920306,72091],[1310956921307,65873],[1310956922307,64891],[1310956923309,64159],[1310956924309,62926],[1310956925309,68021],[1310956926312,56734],[1310956927312,67812],[1310956928312,72406],[1310956929313,65441],[1310956930313,71270] ], - "c_20b_1a_1queue_1": [ [1310956817439,59601],[1310956818452,107028],[1310956819452,112218],[1310956820452,117276],[1310956821454,117504],[1310956822454,119647],[1310956823454,119910],[1310956824454,118656],[1310956825455,117453],[1310956826455,120865],[1310956827456,123168],[1310956828456,122407],[1310956829456,122645],[1310956830456,121197],[1310956831457,117496] ], - "p_20b_1a_1queue_1": [ [1310956817439,57539],[1310956818452,110854],[1310956819452,110963],[1310956820452,114908],[1310956821454,119691],[1310956822454,119237],[1310956823454,119944],[1310956824454,119674],[1310956825455,114727],[1310956826455,121012],[1310956827456,125008],[1310956828456,119052],[1310956829456,123553],[1310956830456,122217],[1310956831457,119146] ], - "c_20b_5p_1topic_1": [ [1310958113059,13644],[1310958114060,13765],[1310958115060,13666],[1310958116060,13770],[1310958117060,13407],[1310958118060,13893],[1310958119061,13554],[1310958120061,13798],[1310958121061,13801],[1310958122061,13769],[1310958123061,13636],[1310958124066,14094],[1310958125066,13638],[1310958126067,13869],[1310958127067,13497] ], - "e_20b_0_1queue_1": [ [1310958381045,0],[1310958382046,0],[1310958383046,0],[1310958384046,0],[1310958385046,0],[1310958386047,0],[1310958387047,0],[1310958388047,0],[1310958389047,0],[1310958390047,0],[1310958391048,0],[1310958392048,0],[1310958393048,0],[1310958394048,0],[1310958395049,0],[1310958396049,0],[1310958397049,0],[1310958398049,0],[1310958399050,0],[1310958400050,0],[1310958401050,0],[1310958402050,0],[1310958403051,0],[1310958404051,0],[1310958405051,0],[1310958406051,0],[1310958407052,0],[1310958408052,0],[1310958409052,0],[1310958410052,0] ], - "e_20b_10a_1queue_1": [ [1310957611402,0],[1310957612402,0],[1310957613402,0],[1310957614403,0],[1310957615403,0],[1310957616403,0],[1310957617403,0],[1310957618404,0],[1310957619404,0],[1310957620411,0],[1310957621412,0],[1310957622412,0],[1310957623412,0],[1310957624412,0],[1310957625413,0] ], - "e_1k_5p_5topic_5": [ [1310957493948,0],[1310957494948,0],[1310957495949,0],[1310957496949,0],[1310957497949,0],[1310957498949,0],[1310957499950,0],[1310957500950,0],[1310957501950,0],[1310957502950,0],[1310957503951,0],[1310957504951,0],[1310957505951,0],[1310957506951,0],[1310957507952,0] ], - "c_20b_5p_1topic_10": [ [1310958223654,53389],[1310958224654,53609],[1310958225654,53667],[1310958226655,54333],[1310958227655,52686],[1310958228655,54430],[1310958229655,52422],[1310958230656,55777],[1310958231656,55633],[1310958232656,55070],[1310958233656,53661],[1310958234657,52143],[1310958235657,53139],[1310958236659,54054],[1310958237659,53216] ], - "p_20b_5p_1queue_10": [ [1310958067020,6637],[1310958068020,6828],[1310958069020,6637],[1310958070021,6854],[1310958071021,6608],[1310958072021,6813],[1310958073021,6605],[1310958074022,6734],[1310958075022,6646],[1310958076022,6824],[1310958077022,6629],[1310958078022,6777],[1310958079023,6579],[1310958080023,6788],[1310958081023,6622] ], - "p_256k_10a_10queue_10": [ [1310957014758,264],[1310957015759,283],[1310957016764,330],[1310957017770,296],[1310957018770,323],[1310957019771,310],[1310957020778,319],[1310957021785,309],[1310957022786,293],[1310957023791,248],[1310957024791,318],[1310957025795,296],[1310957026795,319],[1310957027796,309],[1310957028796,307] ], - "p_1k_5p_5topic_5": [ [1310957493948,10065],[1310957494948,10088],[1310957495949,10038],[1310957496949,10016],[1310957497949,10052],[1310957498949,10062],[1310957499950,10091],[1310957500950,10005],[1310957501950,9969],[1310957502950,9969],[1310957503951,10135],[1310957504951,10086],[1310957505951,10054],[1310957506951,9981],[1310957507952,10183] ], - "p_20b_10p_1queue_5": [ [1310958020973,8041],[1310958021974,8266],[1310958022974,7990],[1310958023978,8332],[1310958024978,8022],[1310958025978,8254],[1310958026979,8005],[1310958027979,8290],[1310958028979,8038],[1310958029979,8318],[1310958030979,7967],[1310958031980,8309],[1310958032980,8007],[1310958033980,8293],[1310958034980,8066] ], - "c_20b_10p_10topic_10": [ [1310957456920,11210],[1310957457920,11378],[1310957458920,11166],[1310957459921,11438],[1310957460921,11103],[1310957461921,11250],[1310957462921,11192],[1310957463921,11211],[1310957464922,11344],[1310957465922,11385],[1310957466922,11123],[1310957467923,11285],[1310957468923,11148],[1310957469923,11255],[1310957470923,11277] ], - "p_20b_5p_1topic_10": [ [1310958223654,5344],[1310958224654,5357],[1310958225654,5364],[1310958226655,5438],[1310958227655,5267],[1310958228655,5456],[1310958229655,5228],[1310958230656,5575],[1310958231656,5563],[1310958232656,5513],[1310958233656,5363],[1310958234657,5210],[1310958235657,5328],[1310958236659,5404],[1310958237659,5335] ], - "p_20b_5p_1topic_5": [ [1310958168100,7242],[1310958169100,6935],[1310958170100,7063],[1310958171101,6668],[1310958172101,7112],[1310958173101,7044],[1310958174101,6939],[1310958175101,6916],[1310958176102,7132],[1310958177102,6910],[1310958178102,6987],[1310958179102,6844],[1310958180103,7162],[1310958181103,6981],[1310958182103,7071] ], - "c_20b_10p_1topic_5": [ [1310958186620,44719],[1310958187620,44984],[1310958188620,45355],[1310958189621,45641],[1310958190621,45560],[1310958191621,44983],[1310958192621,45571],[1310958193622,45490],[1310958194622,46366],[1310958195622,44420],[1310958196622,44294],[1310958197623,45600],[1310958198623,44767],[1310958199623,44562],[1310958200623,44607] ], - "c_256k_10a_10topic_10": [ [1310957187036,330],[1310957188043,313],[1310957189043,315],[1310957190044,326],[1310957191044,319],[1310957192046,297],[1310957193052,306],[1310957194053,321],[1310957195067,322],[1310957196068,330],[1310957197068,321],[1310957198068,327],[1310957199069,322],[1310957200070,322],[1310957201072,319] ], - "e_1k_1a_1topic_1": [ [1310957094866,0],[1310957095866,0],[1310957096866,0],[1310957097867,0],[1310957098867,0],[1310957099867,0],[1310957100869,0],[1310957101870,0],[1310957102871,0],[1310957103871,0],[1310957104871,0],[1310957105874,0],[1310957106874,0],[1310957107874,0],[1310957108875,0] ], - "c_256k_10p_10topic_10": [ [1310957568071,329],[1310957569071,312],[1310957570074,325],[1310957571076,302],[1310957572076,335],[1310957573077,313],[1310957574081,322],[1310957575081,316],[1310957576082,331],[1310957577082,313],[1310957578082,325],[1310957579083,318],[1310957580091,321],[1310957581098,317],[1310957582099,314] ], - "c_20b_10a_1topic_5": [ [1310957857823,257196],[1310957858824,241204],[1310957859824,252154],[1310957860832,255696],[1310957861833,254136],[1310957862833,256768],[1310957863833,252823],[1310957864833,249085],[1310957865834,245701],[1310957866834,233809],[1310957867834,219951],[1310957868834,229912],[1310957869834,256241],[1310957870835,253515],[1310957871835,257322] ], - "c_1k_10a_10queue_10": [ [1310956940911,66099],[1310956941912,62843],[1310956942912,63249],[1310956943914,64352],[1310956944914,65207],[1310956945915,52354],[1310956946915,62991],[1310956947915,63051],[1310956948915,64838],[1310956949916,61838],[1310956950916,65813],[1310956951916,65275],[1310956952917,52579],[1310956953917,63194],[1310956954919,65048] ], - "p_20b_1a_1topic_1": [ [1310957039727,127200],[1310957040727,128831],[1310957041727,130099],[1310957042732,127061],[1310957043732,129825],[1310957044732,130481],[1310957045733,125998],[1310957046733,130816],[1310957047733,117147],[1310957048733,128978],[1310957049733,130926],[1310957050734,131506],[1310957051734,127753],[1310957052734,132332],[1310957053735,126706] ], - "e_1k_10p_10topic_10": [ [1310957512473,0],[1310957513473,0],[1310957514474,0],[1310957515474,0],[1310957516474,0],[1310957517474,0],[1310957518475,0],[1310957519475,0],[1310957520475,0],[1310957521475,0],[1310957522476,0],[1310957523476,0],[1310957524476,0],[1310957525476,0],[1310957526477,0] ], - "c_20b_10p_1queue_10": [ [1310958088546,8037],[1310958089546,7974],[1310958090546,8071],[1310958091547,7961],[1310958092547,7955],[1310958093547,8069],[1310958094547,8016],[1310958095548,8005],[1310958096548,7977],[1310958097548,8009],[1310958098548,8090],[1310958099549,7927],[1310958100549,7985],[1310958101549,7984],[1310958102549,8026] ], - "e_20b_1a_1topic_0": [ [1310958260682,0],[1310958261682,0],[1310958262682,0],[1310958263683,0],[1310958264683,0],[1310958265683,0],[1310958266683,0],[1310958267684,0],[1310958268684,0],[1310958269684,0],[1310958270684,0],[1310958271685,0],[1310958272685,0],[1310958273685,0],[1310958274685,0] ], - "p_1k_5a_5topic_5": [ [1310957112890,80488],[1310957113890,74675],[1310957114890,72506],[1310957115891,81174],[1310957116894,79356],[1310957117894,78963],[1310957118895,76456],[1310957119895,76384],[1310957120895,77006],[1310957121900,76239],[1310957122900,72295],[1310957123901,74193],[1310957124905,66390],[1310957125905,61997],[1310957126905,69041] ], - "p_20b_1p_1topic_10": [ [1310958205137,1878],[1310958206137,1965],[1310958207137,1904],[1310958208138,1949],[1310958209138,1989],[1310958210138,1934],[1310958211142,1875],[1310958212142,1921],[1310958213142,1885],[1310958214142,1927],[1310958215143,1892],[1310958216143,1915],[1310958217143,1903],[1310958218143,1945],[1310958219144,1900] ], - "p_20b_1a_1queue_10": [ [1310957710028,110435],[1310957711029,109766],[1310957712029,110616],[1310957713029,109090],[1310957714029,109806],[1310957715030,110430],[1310957716030,113544],[1310957717030,104106],[1310957718032,112466],[1310957719032,110051],[1310957720033,108517],[1310957721033,108940],[1310957722033,109281],[1310957723033,108534],[1310957724033,110214] ], - "e_20b_5a_1queue_10": [ [1310957734637,0],[1310957735638,0],[1310957736638,0],[1310957737650,0],[1310957738650,0],[1310957739651,0],[1310957740651,0],[1310957741654,0],[1310957742654,0],[1310957743654,0],[1310957744654,0],[1310957745655,0],[1310957746660,0],[1310957747660,0],[1310957748673,0] ], - "c_256k_10p_10queue_10": [ [1310957395328,298],[1310957396334,318],[1310957397338,296],[1310957398339,316],[1310957399341,298],[1310957400343,316],[1310957401344,297],[1310957402344,316],[1310957403344,297],[1310957404345,319],[1310957405345,302],[1310957406346,322],[1310957407349,297],[1310957408349,320],[1310957409355,299] ], - "p_1k_1a_1queue_1": [ [1310956891746,52922],[1310956892746,52158],[1310956893747,58452],[1310956894747,52309],[1310956895747,48642],[1310956896748,62185],[1310956897748,53878],[1310956898748,61047],[1310956899749,48883],[1310956900749,63530],[1310956901749,48409],[1310956902749,60047],[1310956903749,52055],[1310956904750,59306],[1310956905750,50937] ], - "e_20b_1a_1topic_1": [ [1310957039727,0],[1310957040727,0],[1310957041727,0],[1310957042732,0],[1310957043732,0],[1310957044732,0],[1310957045733,0],[1310957046733,0],[1310957047733,0],[1310957048733,0],[1310957049733,0],[1310957050734,0],[1310957051734,0],[1310957052734,0],[1310957053735,0] ], - "p_1k_5a_5queue_5": [ [1310956916303,65804],[1310956917303,59470],[1310956918306,64919],[1310956919306,67406],[1310956920306,72153],[1310956921307,65749],[1310956922307,65083],[1310956923309,64210],[1310956924309,62668],[1310956925309,68235],[1310956926312,56641],[1310956927312,67932],[1310956928312,72258],[1310956929313,65203],[1310956930313,71340] ], - "c_20b_5p_1queue_1": [ [1310957931901,8144],[1310957932901,8002],[1310957933901,8212],[1310957934902,7913],[1310957935902,8290],[1310957936902,7956],[1310957937906,8204],[1310957938907,7975],[1310957939907,8197],[1310957940907,7986],[1310957941907,8167],[1310957942907,7891],[1310957943908,8122],[1310957944908,7920],[1310957945908,8289] ], - "c_20b_10p_1queue_1": [ [1310957953421,10625],[1310957954421,10578],[1310957955422,10724],[1310957956422,10630],[1310957957422,10609],[1310957958422,10538],[1310957959423,10583],[1310957960423,10510],[1310957961423,10629],[1310957962423,10514],[1310957963423,10618],[1310957964424,10566],[1310957965424,10634],[1310957966424,10501],[1310957967424,10526] ], - "c_256k_1a_1queue_1": [ [1310956965610,401],[1310956966610,400],[1310956967610,386],[1310956968611,393],[1310956969611,378],[1310956970611,370],[1310956971615,367],[1310956972617,398],[1310956973618,392],[1310956974618,397],[1310956975618,390],[1310956976619,390],[1310956977619,379],[1310956978619,390],[1310956979620,380] ], - "e_20b_1p_1topic_5": [ [1310958149591,0],[1310958150592,0],[1310958151592,0],[1310958152592,0],[1310958153592,0],[1310958154593,0],[1310958155593,0],[1310958156593,0],[1310958157593,0],[1310958158593,0],[1310958159594,0],[1310958160594,0],[1310958161594,0],[1310958162594,0],[1310958163595,0] ], - "e_1k_10a_10topic_10": [ [1310957131426,0],[1310957132426,0],[1310957133431,0],[1310957134431,0],[1310957135432,0],[1310957136432,0],[1310957137436,0],[1310957138436,0],[1310957139444,0],[1310957140449,0],[1310957141450,0],[1310957142453,0],[1310957143458,0],[1310957144458,0],[1310957145459,0] ], - "p_20b_5a_1topic_1": [ [1310957784189,116193],[1310957785189,111737],[1310957786190,120456],[1310957787190,116265],[1310957788190,116982],[1310957789190,115322],[1310957790190,119460],[1310957791191,118203],[1310957792191,116961],[1310957793191,117052],[1310957794191,118272],[1310957795192,115953],[1310957796192,119393],[1310957797192,115813],[1310957798194,118032] ], - "c_20b_10a_10queue_10": [ [1310956867027,93168],[1310956868027,77089],[1310956869045,85966],[1310956870045,81699],[1310956871045,66285],[1310956872045,88069],[1310956873048,84478],[1310956874054,61493],[1310956875055,83886],[1310956876055,80451],[1310956877059,81986],[1310956878086,91868],[1310956879087,63585],[1310956880094,91837],[1310956881103,86743] ], - "c_20b_5p_5queue_5": [ [1310957226598,6525],[1310957227598,6459],[1310957228599,6607],[1310957229599,6443],[1310957230599,6545],[1310957231599,6384],[1310957232599,6527],[1310957233600,6462],[1310957234600,6573],[1310957235600,6480],[1310957236600,6525],[1310957237601,6435],[1310957238601,6606],[1310957239601,6474],[1310957240601,6549] ], - "e_20b_5p_5queue_5": [ [1310957226598,0],[1310957227598,0],[1310957228599,0],[1310957229599,0],[1310957230599,0],[1310957231599,0],[1310957232599,0],[1310957233600,0],[1310957234600,0],[1310957235600,0],[1310957236600,0],[1310957237601,0],[1310957238601,0],[1310957239601,0],[1310957240601,0] ], - "c_20b_1a_1topic_5": [ [1310957820740,242596],[1310957821744,268055],[1310957822751,215474],[1310957823751,235778],[1310957824751,243808],[1310957825752,234592],[1310957826753,243415],[1310957827758,228704],[1310957828759,268403],[1310957829759,262860],[1310957830762,271182],[1310957831762,269020],[1310957832762,260540],[1310957833763,269069],[1310957834764,261792] ], - "e_256k_5p_5queue_5": [ [1310957370779,0],[1310957371780,0],[1310957372780,0],[1310957373787,0],[1310957374787,0],[1310957375788,0],[1310957376788,0],[1310957377791,0],[1310957378798,0],[1310957379799,0],[1310957380799,0],[1310957381799,0],[1310957382799,0],[1310957383800,0],[1310957384805,0] ], - "e_1k_5a_5queue_5": [ [1310956916303,0],[1310956917303,0],[1310956918306,0],[1310956919306,0],[1310956920306,0],[1310956921307,0],[1310956922307,0],[1310956923309,0],[1310956924309,0],[1310956925309,0],[1310956926312,0],[1310956927312,0],[1310956928312,0],[1310956929313,0],[1310956930313,0] ], - "e_20b_1p_1topic_10": [ [1310958205137,0],[1310958206137,0],[1310958207137,0],[1310958208138,0],[1310958209138,0],[1310958210138,0],[1310958211142,0],[1310958212142,0],[1310958213142,0],[1310958214142,0],[1310958215143,0],[1310958216143,0],[1310958217143,0],[1310958218143,0],[1310958219144,0] ], - "e_20b_1a_1queue_1": [ [1310956817439,0],[1310956818452,0],[1310956819452,0],[1310956820452,0],[1310956821454,0],[1310956822454,0],[1310956823454,0],[1310956824454,0],[1310956825455,0],[1310956826455,0],[1310956827456,0],[1310956828456,0],[1310956829456,0],[1310956830456,0],[1310956831457,0] ], - "p_20b_5a_1topic_10": [ [1310957894864,25248],[1310957895864,19656],[1310957896867,26459],[1310957897867,22133],[1310957898867,25436],[1310957899868,22398],[1310957900868,30501],[1310957901868,24844],[1310957902868,28542],[1310957903880,26052],[1310957904880,25803],[1310957905881,27630],[1310957906881,23218],[1310957907881,26539],[1310957908881,24104] ], - "e_20b_5p_1topic_1": [ [1310958113059,0],[1310958114060,0],[1310958115060,0],[1310958116060,0],[1310958117060,0],[1310958118060,0],[1310958119061,0],[1310958120061,0],[1310958121061,0],[1310958122061,0],[1310958123061,0],[1310958124066,0],[1310958125066,0],[1310958126067,0],[1310958127067,0] ], - "p_1k_1a_1topic_1": [ [1310957094866,67848],[1310957095866,67784],[1310957096866,67507],[1310957097867,66750],[1310957098867,67864],[1310957099867,68046],[1310957100869,66540],[1310957101870,66363],[1310957102871,67216],[1310957103871,67648],[1310957104871,67301],[1310957105874,67694],[1310957106874,67898],[1310957107874,67595],[1310957108875,67216] ], - "e_20b_10p_1queue_1": [ [1310957953421,0],[1310957954421,0],[1310957955422,0],[1310957956422,0],[1310957957422,0],[1310957958422,0],[1310957959423,0],[1310957960423,0],[1310957961423,0],[1310957962423,0],[1310957963423,0],[1310957964424,0],[1310957965424,0],[1310957966424,0],[1310957967424,0] ], - "e_20b_5a_1topic_5": [ [1310957839266,0],[1310957840271,0],[1310957841271,0],[1310957842271,0],[1310957843280,0],[1310957844286,0],[1310957845286,0],[1310957846287,0],[1310957847287,0],[1310957848291,0],[1310957849291,0],[1310957850298,0],[1310957851298,0],[1310957852298,0],[1310957853299,0] ], - "p_20b_1p_1topic_1": [ [1310957419883,5566],[1310957420883,5596],[1310957421883,5562],[1310957422884,5602],[1310957423884,5625],[1310957424884,5574],[1310957425884,5628],[1310957426885,5617],[1310957427885,5612],[1310957428885,5566],[1310957429885,5604],[1310957430885,5598],[1310957431886,5599],[1310957432886,5608],[1310957433886,5602] ], - "c_256k_1a_1topic_1": [ [1310957149951,377],[1310957150951,381],[1310957151953,374],[1310957152956,364],[1310957153956,330],[1310957154956,357],[1310957155957,363],[1310957156960,364],[1310957157960,359],[1310957158960,357],[1310957159961,364],[1310957160961,357],[1310957161966,348],[1310957162969,350],[1310957163970,338] ], - "p_20b_5p_1topic_1": [ [1310958113059,13646],[1310958114060,13765],[1310958115060,13666],[1310958116060,13769],[1310958117060,13406],[1310958118060,13899],[1310958119061,13550],[1310958120061,13799],[1310958121061,13800],[1310958122061,13767],[1310958123061,13635],[1310958124066,14097],[1310958125066,13639],[1310958126067,13868],[1310958127067,13498] ], - "p_20b_5p_1queue_5": [ [1310957999452,6823],[1310958000452,6787],[1310958001452,6815],[1310958002453,6780],[1310958003453,6830],[1310958004453,6836],[1310958005453,6788],[1310958006454,6811],[1310958007454,6766],[1310958008454,6857],[1310958009454,6822],[1310958010454,6825],[1310958011455,6829],[1310958012455,6746],[1310958013455,6832] ], - "p_20b_10p_10topic_10": [ [1310957456920,11214],[1310957457920,11375],[1310957458920,11166],[1310957459921,11439],[1310957460921,11103],[1310957461921,11245],[1310957462921,11196],[1310957463921,11210],[1310957464922,11340],[1310957465922,11390],[1310957466922,11124],[1310957467923,11281],[1310957468923,11155],[1310957469923,11253],[1310957470923,11274] ], - "e_20b_5a_5topic_5": [ [1310957057747,0],[1310957058747,0],[1310957059748,0],[1310957060748,0],[1310957061748,0],[1310957062748,0],[1310957063749,0],[1310957064753,0],[1310957065755,0],[1310957066755,0],[1310957067755,0],[1310957068770,0],[1310957069771,0],[1310957070771,0],[1310957071771,0] ], - "p_1k_10a_10queue_10": [ [1310956940911,66781],[1310956941912,62827],[1310956942912,63430],[1310956943914,64079],[1310956944914,65079],[1310956945915,52615],[1310956946915,63338],[1310956947915,62214],[1310956948915,65725],[1310956949916,61781],[1310956950916,66150],[1310956951916,64699],[1310956952917,52024],[1310956953917,63481],[1310956954919,65096] ], - "c_1k_10p_10topic_10": [ [1310957512473,11042],[1310957513473,10903],[1310957514474,11031],[1310957515474,10995],[1310957516474,10889],[1310957517474,10797],[1310957518475,10741],[1310957519475,10961],[1310957520475,11007],[1310957521475,11134],[1310957522476,11080],[1310957523476,11163],[1310957524476,10898],[1310957525476,11006],[1310957526477,10915] ], - "c_20b_5p_1queue_10": [ [1310958067020,6636],[1310958068020,6830],[1310958069020,6635],[1310958070021,6857],[1310958071021,6605],[1310958072021,6814],[1310958073021,6606],[1310958074022,6733],[1310958075022,6647],[1310958076022,6823],[1310958077022,6631],[1310958078022,6776],[1310958079023,6580],[1310958080023,6786],[1310958081023,6625] ], - "c_1k_1a_1queue_1": [ [1310956891746,53129],[1310956892746,51860],[1310956893747,58877],[1310956894747,52074],[1310956895747,48757],[1310956896748,61961],[1310956897748,54169],[1310956898748,60682],[1310956899749,49198],[1310956900749,63519],[1310956901749,48168],[1310956902749,60139],[1310956903749,51983],[1310956904750,59240],[1310956905750,51134] ], - "c_20b_10a_1topic_1": [ [1310957802711,122382],[1310957803711,118674],[1310957804714,122325],[1310957805714,122636],[1310957806714,120001],[1310957807715,118107],[1310957808715,122666],[1310957809715,120759],[1310957810715,114847],[1310957811716,121152],[1310957812716,120559],[1310957813716,121060],[1310957814716,114681],[1310957815717,118219],[1310957816717,111835] ], - "e_20b_10p_10topic_10": [ [1310957456920,0],[1310957457920,0],[1310957458920,0],[1310957459921,0],[1310957460921,0],[1310957461921,0],[1310957462921,0],[1310957463921,0],[1310957464922,0],[1310957465922,0],[1310957466922,0],[1310957467923,0],[1310957468923,0],[1310957469923,0],[1310957470923,0] ], - "e_20b_5p_1queue_1": [ [1310957931901,0],[1310957932901,0],[1310957933901,0],[1310957934902,0],[1310957935902,0],[1310957936902,0],[1310957937906,0],[1310957938907,0],[1310957939907,0],[1310957940907,0],[1310957941907,0],[1310957942907,0],[1310957943908,0],[1310957944908,0],[1310957945908,0] ], - "p_20b_10p_1topic_1": [ [1310958131576,16309],[1310958132576,16668],[1310958133576,16549],[1310958134577,16458],[1310958135577,16310],[1310958136577,16365],[1310958137577,16572],[1310958138577,16412],[1310958139578,16435],[1310958140578,16482],[1310958141578,16487],[1310958142578,16374],[1310958143579,16142],[1310958144579,16319],[1310958145579,16416] ], - "e_20b_1a_1queue_5": [ [1310957635819,0],[1310957636819,0],[1310957637820,0],[1310957638820,0],[1310957639820,0],[1310957640821,0],[1310957641821,0],[1310957642821,0],[1310957643821,0],[1310957644823,0],[1310957645824,0],[1310957646828,0],[1310957647828,0],[1310957648828,0],[1310957649829,0] ], - "e_20b_10a_1queue_10": [ [1310957759392,0],[1310957760392,0],[1310957761393,0],[1310957762400,0],[1310957763404,0],[1310957764404,0],[1310957765424,0],[1310957766427,0],[1310957767428,0],[1310957768428,0],[1310957769434,0],[1310957770436,0],[1310957771448,0],[1310957772454,0],[1310957773455,0] ], - "c_20b_5a_5topic_5": [ [1310957057747,146747],[1310957058747,133218],[1310957059748,145781],[1310957060748,153969],[1310957061748,147037],[1310957062748,148000],[1310957063749,126522],[1310957064753,145596],[1310957065755,147151],[1310957066755,150554],[1310957067755,149215],[1310957068770,146849],[1310957069771,120102],[1310957070771,150983],[1310957071771,143143] ], - "c_1k_5p_5topic_5": [ [1310957493948,10067],[1310957494948,10086],[1310957495949,10042],[1310957496949,10014],[1310957497949,10051],[1310957498949,10063],[1310957499950,10092],[1310957500950,9997],[1310957501950,9973],[1310957502950,9974],[1310957503951,10135],[1310957504951,10084],[1310957505951,10055],[1310957506951,9980],[1310957507952,10183] ], - "e_20b_1a_1queue_0": [ [1310958315027,0],[1310958316028,0],[1310958317028,0],[1310958318028,0],[1310958319028,0],[1310958320029,0],[1310958321029,0],[1310958322029,0],[1310958323030,0],[1310958324030,0],[1310958325030,0],[1310958326030,0],[1310958327030,0],[1310958328031,0],[1310958329031,0],[1310958330031,0],[1310958331032,0],[1310958332032,0],[1310958333032,0],[1310958334032,0],[1310958335033,0],[1310958336033,0],[1310958337033,0],[1310958338033,0],[1310958339034,0],[1310958340034,0],[1310958341034,0],[1310958342034,0],[1310958343035,0],[1310958344035,0] ], - "e_256k_10a_10queue_10": [ [1310957014758,0],[1310957015759,0],[1310957016764,0],[1310957017770,0],[1310957018770,0],[1310957019771,0],[1310957020778,0],[1310957021785,0],[1310957022786,0],[1310957023791,0],[1310957024791,0],[1310957025795,0],[1310957026795,0],[1310957027796,0],[1310957028796,0] ], - "c_20b_1p_1topic_5": [ [1310958149591,14582],[1310958150592,14654],[1310958151592,14504],[1310958152592,14486],[1310958153592,14495],[1310958154593,14691],[1310958155593,14554],[1310958156593,14620],[1310958157593,14455],[1310958158593,14633],[1310958159594,14573],[1310958160594,14624],[1310958161594,14445],[1310958162594,14386],[1310958163595,14480] ], - "e_20b_5a_1topic_10": [ [1310957894864,0],[1310957895864,0],[1310957896867,0],[1310957897867,0],[1310957898867,0],[1310957899868,0],[1310957900868,0],[1310957901868,0],[1310957902868,0],[1310957903880,0],[1310957904880,0],[1310957905881,0],[1310957906881,0],[1310957907881,0],[1310957908881,0] ], - "p_20b_10p_1queue_10": [ [1310958088546,8033],[1310958089546,7979],[1310958090546,8070],[1310958091547,7958],[1310958092547,7959],[1310958093547,8067],[1310958094547,8019],[1310958095548,8000],[1310958096548,7980],[1310958097548,8008],[1310958098548,8092],[1310958099549,7924],[1310958100549,7988],[1310958101549,7978],[1310958102549,8032] ], - "e_20b_10p_1topic_1": [ [1310958131576,0],[1310958132576,0],[1310958133576,0],[1310958134577,0],[1310958135577,0],[1310958136577,0],[1310958137577,0],[1310958138577,0],[1310958139578,0],[1310958140578,0],[1310958141578,0],[1310958142578,0],[1310958143579,0],[1310958144579,0],[1310958145579,0] ], - "c_20b_5p_1queue_5": [ [1310957999452,6822],[1310958000452,6788],[1310958001452,6816],[1310958002453,6779],[1310958003453,6830],[1310958004453,6834],[1310958005453,6787],[1310958006454,6812],[1310958007454,6766],[1310958008454,6859],[1310958009454,6819],[1310958010454,6828],[1310958011455,6829],[1310958012455,6744],[1310958013455,6831] ], - "p_20b_10a_1queue_1": [ [1310957611402,69411],[1310957612402,47612],[1310957613402,57763],[1310957614403,60174],[1310957615403,67477],[1310957616403,60233],[1310957617403,41888],[1310957618404,48636],[1310957619404,36157],[1310957620411,65929],[1310957621412,45585],[1310957622412,68410],[1310957623412,58946],[1310957624412,20223],[1310957625413,48021] ], - "c_20b_10a_10topic_10": [ [1310957076313,132446],[1310957077319,126586],[1310957078320,126700],[1310957079320,129740],[1310957080321,123805],[1310957081330,110647],[1310957082344,129526],[1310957083365,130163],[1310957084365,118411],[1310957085365,128508],[1310957086366,121032],[1310957087366,126829],[1310957088366,127809],[1310957089376,123846],[1310957090380,127851] ], - "e_20b_5p_5topic_5": [ [1310957438398,0],[1310957439398,0],[1310957440398,0],[1310957441399,0],[1310957442399,0],[1310957443399,0],[1310957444399,0],[1310957445400,0],[1310957446400,0],[1310957447400,0],[1310957448400,0],[1310957449400,0],[1310957450401,0],[1310957451401,0],[1310957452401,0] ], - "e_20b_5p_1topic_5": [ [1310958168100,0],[1310958169100,0],[1310958170100,0],[1310958171101,0],[1310958172101,0],[1310958173101,0],[1310958174101,0],[1310958175101,0],[1310958176102,0],[1310958177102,0],[1310958178102,0],[1310958179102,0],[1310958180103,0],[1310958181103,0],[1310958182103,0] ], - "e_20b_10p_1queue_10": [ [1310958088546,0],[1310958089546,0],[1310958090546,0],[1310958091547,0],[1310958092547,0],[1310958093547,0],[1310958094547,0],[1310958095548,0],[1310958096548,0],[1310958097548,0],[1310958098548,0],[1310958099549,0],[1310958100549,0],[1310958101549,0],[1310958102549,0] ], - "e_20b_5p_1queue_10": [ [1310958067020,0],[1310958068020,0],[1310958069020,0],[1310958070021,0],[1310958071021,0],[1310958072021,0],[1310958073021,0],[1310958074022,0],[1310958075022,0],[1310958076022,0],[1310958077022,0],[1310958078022,0],[1310958079023,0],[1310958080023,0],[1310958081023,0] ], - "c_20b_10a_1queue_10": [ [1310957759392,96670],[1310957760392,106542],[1310957761393,92433],[1310957762400,98179],[1310957763404,95248],[1310957764404,87500],[1310957765424,102932],[1310957766427,101670],[1310957767428,87731],[1310957768428,74715],[1310957769434,66915],[1310957770436,89679],[1310957771448,96553],[1310957772454,102847],[1310957773455,114610] ], - "c_20b_1a_1queue_10": [ [1310957710028,112491],[1310957711029,109837],[1310957712029,109895],[1310957713029,109327],[1310957714029,111156],[1310957715030,110053],[1310957716030,110212],[1310957717030,107820],[1310957718032,109602],[1310957719032,109766],[1310957720033,110973],[1310957721033,107847],[1310957722033,109410],[1310957723033,109410],[1310957724033,109946] ], - "c_20b_1p_1topic_10": [ [1310958205137,18782],[1310958206137,19651],[1310958207137,19030],[1310958208138,19499],[1310958209138,19888],[1310958210138,19343],[1310958211142,18756],[1310958212142,19205],[1310958213142,18848],[1310958214142,19274],[1310958215143,18917],[1310958216143,19145],[1310958217143,19028],[1310958218143,19449],[1310958219144,18997] ], - "c_20b_10a_1topic_10": [ [1310957913375,288435],[1310957914383,270794],[1310957915383,293256],[1310957916384,283831],[1310957917384,273233],[1310957918384,262854],[1310957919384,249038],[1310957920385,279081],[1310957921385,255971],[1310957922385,237295],[1310957923385,260147],[1310957924392,278714],[1310957925392,274940],[1310957926395,280374],[1310957927395,272238] ], - "c_20b_0_1queue_1": [ [1310958381045,19602],[1310958382046,0],[1310958383046,10395],[1310958384046,15583],[1310958385046,14414],[1310958386047,15107],[1310958387047,14890],[1310958388047,15048],[1310958389047,4950],[1310958390047,11652],[1310958391048,18345],[1310958392048,19998],[1310958393048,19998],[1310958394048,11057],[1310958395049,8941],[1310958396049,19268],[1310958397049,20728],[1310958398049,20373],[1310958399050,19623],[1310958400050,24213],[1310958401050,25782],[1310958402050,9999],[1310958403051,22080],[1310958404051,27915],[1310958405051,19998],[1310958406051,29997],[1310958407052,25201],[1310958408052,4796],[1310958409052,29997],[1310958410052,19998] ], - "c_256k_10a_10queue_10": [ [1310957014758,251],[1310957015759,288],[1310957016764,306],[1310957017770,289],[1310957018770,310],[1310957019771,303],[1310957020778,309],[1310957021785,287],[1310957022786,286],[1310957023791,240],[1310957024791,322],[1310957025795,307],[1310957026795,293],[1310957027796,293],[1310957028796,306] ], - "c_20b_10p_1topic_10": [ [1310958242178,68630],[1310958243178,67988],[1310958244178,69371],[1310958245178,68936],[1310958246179,69344],[1310958247179,67711],[1310958248179,70122],[1310958249179,68935],[1310958250180,69463],[1310958251180,69148],[1310958252180,72075],[1310958253181,69614],[1310958254181,70104],[1310958255181,69535],[1310958256181,68874] ], - "p_20b_5a_1queue_10": [ [1310957734637,81473],[1310957735638,94225],[1310957736638,111588],[1310957737650,111802],[1310957738650,109231],[1310957739651,115431],[1310957740651,109902],[1310957741654,111902],[1310957742654,114497],[1310957743654,115855],[1310957744654,102247],[1310957745655,88147],[1310957746660,102145],[1310957747660,111264],[1310957748673,104315] ], - "e_1k_5a_5topic_5": [ [1310957112890,0],[1310957113890,0],[1310957114890,0],[1310957115891,0],[1310957116894,0],[1310957117894,0],[1310957118895,0],[1310957119895,0],[1310957120895,0],[1310957121900,0],[1310957122900,0],[1310957123901,0],[1310957124905,0],[1310957125905,0],[1310957126905,0] ], - "p_1k_10p_10topic_10": [ [1310957512473,11047],[1310957513473,10898],[1310957514474,11033],[1310957515474,11003],[1310957516474,10879],[1310957517474,10800],[1310957518475,10739],[1310957519475,10978],[1310957520475,10991],[1310957521475,11133],[1310957522476,11080],[1310957523476,11165],[1310957524476,10897],[1310957525476,11007],[1310957526477,10911] ], - "c_1k_10a_10topic_10": [ [1310957131426,66299],[1310957132426,72804],[1310957133431,70742],[1310957134431,67933],[1310957135432,72314],[1310957136432,71957],[1310957137436,70382],[1310957138436,67872],[1310957139444,71688],[1310957140449,69611],[1310957141450,64330],[1310957142453,70476],[1310957143458,70303],[1310957144458,69202],[1310957145459,62844] ], - "c_20b_1a_1topic_10": [ [1310957876358,268966],[1310957877359,269262],[1310957878359,263621],[1310957879361,264183],[1310957880361,273756],[1310957881366,274475],[1310957882366,241601],[1310957883366,277710],[1310957884367,280971],[1310957885367,292065],[1310957886373,297897],[1310957887373,284811],[1310957888376,287123],[1310957889376,278042],[1310957890376,273660] ], - "e_20b_10p_1queue_5": [ [1310958020973,0],[1310958021974,0],[1310958022974,0],[1310958023978,0],[1310958024978,0],[1310958025978,0],[1310958026979,0],[1310958027979,0],[1310958028979,0],[1310958029979,0],[1310958030979,0],[1310958031980,0],[1310958032980,0],[1310958033980,0],[1310958034980,0] ], - "e_256k_10p_10queue_10": [ [1310957395328,0],[1310957396334,0],[1310957397338,0],[1310957398339,0],[1310957399341,0],[1310957400343,0],[1310957401344,0],[1310957402344,0],[1310957403344,0],[1310957404345,0],[1310957405345,0],[1310957406346,0],[1310957407349,0],[1310957408349,0],[1310957409355,0] ], - "c_1k_5p_5queue_5": [ [1310957297187,6327],[1310957298190,6415],[1310957299190,6304],[1310957300190,6350],[1310957301190,6476],[1310957302191,6357],[1310957303191,6435],[1310957304191,6363],[1310957305191,6382],[1310957306191,6106],[1310957307192,6196],[1310957308192,6223],[1310957309192,6029],[1310957310192,6377],[1310957311193,6440] ], - "e_20b_1p_1queue_5": [ [1310957977935,0],[1310957978936,0],[1310957979936,0],[1310957980936,0],[1310957981936,0],[1310957982936,0],[1310957983937,0],[1310957984937,0],[1310957985937,0],[1310957986937,0],[1310957987937,0],[1310957988938,0],[1310957989938,0],[1310957990938,0],[1310957991938,0] ], - "p_1k_10a_10topic_10": [ [1310957131426,66266],[1310957132426,72507],[1310957133431,70556],[1310957134431,68057],[1310957135432,72924],[1310957136432,71344],[1310957137436,70251],[1310957138436,68125],[1310957139444,71191],[1310957140449,69542],[1310957141450,64807],[1310957142453,70636],[1310957143458,70336],[1310957144458,68631],[1310957145459,63222] ], - "e_256k_1p_1topic_1": [ [1310957530985,0],[1310957531987,0],[1310957532988,0],[1310957533990,0],[1310957534992,0],[1310957535996,0],[1310957536997,0],[1310957538002,0],[1310957539002,0],[1310957540007,0],[1310957541008,0],[1310957542008,0],[1310957543009,0],[1310957544013,0],[1310957545013,0] ], - "c_20b_5a_1topic_5": [ [1310957839266,222239],[1310957840271,245142],[1310957841271,205048],[1310957842271,195170],[1310957843280,182056],[1310957844286,222816],[1310957845286,221875],[1310957846287,221004],[1310957847287,219789],[1310957848291,214903],[1310957849291,214210],[1310957850298,210042],[1310957851298,170723],[1310957852298,178218],[1310957853299,227449] ], - "e_20b_10a_1topic_10": [ [1310957913375,0],[1310957914383,0],[1310957915383,0],[1310957916384,0],[1310957917384,0],[1310957918384,0],[1310957919384,0],[1310957920385,0],[1310957921385,0],[1310957922385,0],[1310957923385,0],[1310957924392,0],[1310957925392,0],[1310957926395,0],[1310957927395,0] ], - "p_256k_1a_1topic_1": [ [1310957149951,378],[1310957150951,380],[1310957151953,376],[1310957152956,363],[1310957153956,331],[1310957154956,356],[1310957155957,362],[1310957156960,365],[1310957157960,359],[1310957158960,356],[1310957159961,365],[1310957160961,358],[1310957161966,345],[1310957162969,351],[1310957163970,339] ], - "c_20b_5a_1queue_10": [ [1310957734637,81355],[1310957735638,96420],[1310957736638,109883],[1310957737650,111784],[1310957738650,109751],[1310957739651,114342],[1310957740651,113573],[1310957741654,110914],[1310957742654,113214],[1310957743654,115690],[1310957744654,104736],[1310957745655,88395],[1310957746660,101538],[1310957747660,110066],[1310957748673,102313] ], - "p_256k_1a_1queue_1": [ [1310956965610,400],[1310956966610,401],[1310956967610,387],[1310956968611,392],[1310956969611,378],[1310956970611,370],[1310956971615,368],[1310956972617,398],[1310956973618,392],[1310956974618,398],[1310956975618,389],[1310956976619,389],[1310956977619,379],[1310956978619,390],[1310956979620,382] ], - "e_1k_1a_1queue_1": [ [1310956891746,0],[1310956892746,0],[1310956893747,0],[1310956894747,0],[1310956895747,0],[1310956896748,0],[1310956897748,0],[1310956898748,0],[1310956899749,0],[1310956900749,0],[1310956901749,0],[1310956902749,0],[1310956903749,0],[1310956904750,0],[1310956905750,0] ], - "e_20b_10a_1topic_5": [ [1310957857823,0],[1310957858824,0],[1310957859824,0],[1310957860832,0],[1310957861833,0],[1310957862833,0],[1310957863833,0],[1310957864833,0],[1310957865834,0],[1310957866834,0],[1310957867834,0],[1310957868834,0],[1310957869834,0],[1310957870835,0],[1310957871835,0] ], - "c_256k_1p_1queue_1": [ [1310957346250,269],[1310957347250,272],[1310957348251,271],[1310957349251,274],[1310957350252,266],[1310957351252,272],[1310957352255,270],[1310957353257,272],[1310957354257,269],[1310957355257,272],[1310957356257,269],[1310957357257,268],[1310957358258,270],[1310957359258,239],[1310957360258,245] ], - "e_20b_1p_1topic_1": [ [1310957419883,0],[1310957420883,0],[1310957421883,0],[1310957422884,0],[1310957423884,0],[1310957424884,0],[1310957425884,0],[1310957426885,0],[1310957427885,0],[1310957428885,0],[1310957429885,0],[1310957430885,0],[1310957431886,0],[1310957432886,0],[1310957433886,0] ], - "p_20b_1a_1topic_0": [ [1310958260682,328592],[1310958261682,328264],[1310958262682,326746],[1310958263683,329586],[1310958264683,328649],[1310958265683,329984],[1310958266683,328297],[1310958267684,332775],[1310958268684,327388],[1310958269684,331015],[1310958270684,330944],[1310958271685,327453],[1310958272685,328758],[1310958273685,327560],[1310958274685,327638] ], - "p_256k_1a_1topic_0": [ [1310958296703,873],[1310958297703,884],[1310958298703,878],[1310958299704,877],[1310958300704,882],[1310958301704,872],[1310958302704,878],[1310958303705,877],[1310958304705,878],[1310958305705,879],[1310958306706,880],[1310958307706,878],[1310958308706,880],[1310958309709,881],[1310958310709,882] ], - "c_20b_1p_1topic_1": [ [1310957419883,5566],[1310957420883,5596],[1310957421883,5562],[1310957422884,5602],[1310957423884,5625],[1310957424884,5574],[1310957425884,5627],[1310957426885,5617],[1310957427885,5613],[1310957428885,5566],[1310957429885,5604],[1310957430885,5598],[1310957431886,5599],[1310957432886,5608],[1310957433886,5602] ], - "p_20b_5p_5queue_5": [ [1310957226598,6525],[1310957227598,6460],[1310957228599,6607],[1310957229599,6443],[1310957230599,6543],[1310957231599,6385],[1310957232599,6528],[1310957233600,6460],[1310957234600,6574],[1310957235600,6479],[1310957236600,6525],[1310957237601,6435],[1310957238601,6605],[1310957239601,6476],[1310957240601,6548] ], - "e_1k_1a_1topic_0": [ [1310958278691,0],[1310958279691,0],[1310958280691,0],[1310958281691,0],[1310958282695,0],[1310958283695,0],[1310958284695,0],[1310958285696,0],[1310958286696,0],[1310958287696,0],[1310958288697,0],[1310958289697,0],[1310958290697,0],[1310958291697,0],[1310958292700,0] ], - "p_20b_5a_1queue_1": [ [1310957586606,50243],[1310957587606,52974],[1310957588607,71371],[1310957589607,70693],[1310957590607,70235],[1310957591607,58465],[1310957592608,71296],[1310957593608,69079],[1310957594608,62599],[1310957595608,44339],[1310957596609,79797],[1310957597609,71763],[1310957598609,27965],[1310957599609,54282],[1310957600610,49545] ], - "p_20b_10a_1queue_5": [ [1310957685182,91700],[1310957686182,75478],[1310957687182,56262],[1310957688188,86075],[1310957689189,82535],[1310957690189,89421],[1310957691191,67847],[1310957692191,75136],[1310957693191,86064],[1310957694191,67920],[1310957695192,94635],[1310957696208,84813],[1310957697209,84592],[1310957698209,107694],[1310957699209,90893] ], - "p_256k_5p_5queue_5": [ [1310957370779,347],[1310957371780,327],[1310957372780,336],[1310957373787,327],[1310957374787,329],[1310957375788,338],[1310957376788,322],[1310957377791,336],[1310957378798,330],[1310957379799,321],[1310957380799,330],[1310957381799,309],[1310957382799,345],[1310957383800,330],[1310957384805,333] ], - "c_20b_5a_1queue_1": [ [1310957586606,51004],[1310957587606,52140],[1310957588607,70910],[1310957589607,71477],[1310957590607,69876],[1310957591607,58820],[1310957592608,70237],[1310957593608,70762],[1310957594608,62543],[1310957595608,43827],[1310957596609,81314],[1310957597609,68076],[1310957598609,32515],[1310957599609,47775],[1310957600610,53781] ], - "e_20b_1a_1topic_5": [ [1310957820740,0],[1310957821744,0],[1310957822751,0],[1310957823751,0],[1310957824751,0],[1310957825752,0],[1310957826753,0],[1310957827758,0],[1310957828759,0],[1310957829759,0],[1310957830762,0],[1310957831762,0],[1310957832762,0],[1310957833763,0],[1310957834764,0] ], - "c_20b_10p_1queue_5": [ [1310958020973,8040],[1310958021974,8270],[1310958022974,7985],[1310958023978,8329],[1310958024978,8025],[1310958025978,8256],[1310958026979,8005],[1310958027979,8290],[1310958028979,8037],[1310958029979,8318],[1310958030979,7970],[1310958031980,8307],[1310958032980,8005],[1310958033980,8295],[1310958034980,8068] ], - "e_1k_1p_1queue_1": [ [1310957275663,0],[1310957276663,0],[1310957277664,0],[1310957278664,0],[1310957279664,0],[1310957280664,0],[1310957281664,0],[1310957282665,0],[1310957283665,0],[1310957284665,0],[1310957285665,0],[1310957286665,0],[1310957287666,0],[1310957288666,0],[1310957289666,0] ], - "e_256k_1a_1topic_0": [ [1310958296703,0],[1310958297703,0],[1310958298703,0],[1310958299704,0],[1310958300704,0],[1310958301704,0],[1310958302704,0],[1310958303705,0],[1310958304705,0],[1310958305705,0],[1310958306706,0],[1310958307706,0],[1310958308706,0],[1310958309709,0],[1310958310709,0] ], - "c_20b_10a_1queue_1": [ [1310957611402,67132],[1310957612402,51000],[1310957613402,54808],[1310957614403,62110],[1310957615403,68052],[1310957616403,51534],[1310957617403,51416],[1310957618404,45471],[1310957619404,33839],[1310957620411,65310],[1310957621412,50472],[1310957622412,66917],[1310957623412,60853],[1310957624412,17455],[1310957625413,50053] ], - "p_20b_10a_1topic_1": [ [1310957802711,119535],[1310957803711,120619],[1310957804714,124593],[1310957805714,122853],[1310957806714,120589],[1310957807715,117548],[1310957808715,120898],[1310957809715,120847],[1310957810715,118406],[1310957811716,118534],[1310957812716,120004],[1310957813716,121469],[1310957814716,117318],[1310957815717,114801],[1310957816717,112103] ], - "p_20b_5a_5topic_5": [ [1310957057747,145046],[1310957058747,135385],[1310957059748,143257],[1310957060748,154408],[1310957061748,149909],[1310957062748,146203],[1310957063749,126361],[1310957064753,145156],[1310957065755,145733],[1310957066755,154805],[1310957067755,146737],[1310957068770,147594],[1310957069771,118843],[1310957070771,153014],[1310957071771,139888] ], - "p_256k_10p_10topic_10": [ [1310957568071,330],[1310957569071,313],[1310957570074,324],[1310957571076,302],[1310957572076,333],[1310957573077,313],[1310957574081,324],[1310957575081,317],[1310957576082,330],[1310957577082,316],[1310957578082,318],[1310957579083,319],[1310957580091,325],[1310957581098,317],[1310957582099,312] ], - "e_20b_5a_5queue_5": [ [1310956842195,0],[1310956843195,0],[1310956844195,0],[1310956845208,0],[1310956846211,0],[1310956847218,0],[1310956848218,0],[1310956849225,0],[1310956850225,0],[1310956851226,0],[1310956852226,0],[1310956853233,0],[1310956854242,0],[1310956855243,0],[1310956856248,0] ], - "c_256k_5a_5topic_5": [ [1310957168489,329],[1310957169495,341],[1310957170496,326],[1310957171497,335],[1310957172498,292],[1310957173498,335],[1310957174499,322],[1310957175505,347],[1310957176505,330],[1310957177506,340],[1310957178507,333],[1310957179511,342],[1310957180511,299],[1310957181511,340],[1310957182512,330] ], - "p_20b_5a_1topic_5": [ [1310957839266,42621],[1310957840271,50678],[1310957841271,42443],[1310957842271,36170],[1310957843280,39411],[1310957844286,42183],[1310957845286,42975],[1310957846287,46306],[1310957847287,44099],[1310957848291,43178],[1310957849291,42026],[1310957850298,41893],[1310957851298,34121],[1310957852298,35179],[1310957853299,48161] ], - "p_256k_5a_5topic_5": [ [1310957168489,330],[1310957169495,340],[1310957170496,322],[1310957171497,337],[1310957172498,292],[1310957173498,339],[1310957174499,320],[1310957175505,347],[1310957176505,327],[1310957177506,344],[1310957178507,330],[1310957179511,348],[1310957180511,294],[1310957181511,343],[1310957182512,327] ], - "e_20b_5a_1queue_5": [ [1310957660463,0],[1310957661464,0],[1310957662465,0],[1310957663465,0],[1310957664465,0],[1310957665466,0],[1310957666474,0],[1310957667474,0],[1310957668475,0],[1310957669487,0],[1310957670498,0],[1310957671498,0],[1310957672499,0],[1310957673500,0],[1310957674500,0] ], - "c_20b_5a_5queue_5": [ [1310956842195,90296],[1310956843195,90306],[1310956844195,101827],[1310956845208,85979],[1310956846211,103938],[1310956847218,107324],[1310956848218,84522],[1310956849225,102503],[1310956850225,85050],[1310956851226,91954],[1310956852226,82150],[1310956853233,91107],[1310956854242,77856],[1310956855243,99641],[1310956856248,98927] ], - "c_20b_1p_1queue_10": [ [1310958045498,2516],[1310958046498,2510],[1310958047498,2505],[1310958048499,2496],[1310958049499,2502],[1310958050499,2507],[1310958051499,2379],[1310958052499,2490],[1310958053500,2483],[1310958054500,2513],[1310958055500,2502],[1310958056500,2495],[1310958057500,2504],[1310958058501,2513],[1310958059501,2500] ], - "e_20b_1p_1queue_1": [ [1310957205578,0],[1310957206581,0],[1310957207581,0],[1310957208581,0],[1310957209582,0],[1310957210582,0],[1310957211582,0],[1310957212583,0],[1310957213583,0],[1310957214583,0],[1310957215583,0],[1310957216583,0],[1310957217584,0],[1310957218584,0],[1310957219584,0] ], - "p_20b_10a_1topic_5": [ [1310957857823,55973],[1310957858824,47592],[1310957859824,51783],[1310957860832,50326],[1310957861833,47343],[1310957862833,55559],[1310957863833,49467],[1310957864833,52003],[1310957865834,49343],[1310957866834,46389],[1310957867834,40981],[1310957868834,45526],[1310957869834,55755],[1310957870835,47253],[1310957871835,50931] ], - "e_20b_5a_1topic_1": [ [1310957784189,0],[1310957785189,0],[1310957786190,0],[1310957787190,0],[1310957788190,0],[1310957789190,0],[1310957790190,0],[1310957791191,0],[1310957792191,0],[1310957793191,0],[1310957794191,0],[1310957795192,0],[1310957796192,0],[1310957797192,0],[1310957798194,0] ], - "c_20b_1p_1queue_1": [ [1310957205578,2299],[1310957206581,2158],[1310957207581,2576],[1310957208581,2661],[1310957209582,2627],[1310957210582,2567],[1310957211582,2596],[1310957212583,2660],[1310957213583,2655],[1310957214583,2627],[1310957215583,2652],[1310957216583,2657],[1310957217584,2660],[1310957218584,2665],[1310957219584,2623] ], - "p_256k_10p_10queue_10": [ [1310957395328,299],[1310957396334,318],[1310957397338,297],[1310957398339,317],[1310957399341,298],[1310957400343,317],[1310957401344,296],[1310957402344,316],[1310957403344,296],[1310957404345,319],[1310957405345,304],[1310957406346,321],[1310957407349,297],[1310957408349,320],[1310957409355,298] ], - "c_1k_5a_5topic_5": [ [1310957112890,80389],[1310957113890,74618],[1310957114890,72378],[1310957115891,81195],[1310957116894,79665],[1310957117894,78771],[1310957118895,76640],[1310957119895,76649],[1310957120895,76698],[1310957121900,75888],[1310957122900,72501],[1310957123901,74461],[1310957124905,66517],[1310957125905,61320],[1310957126905,69545] ], - "p_1k_5p_5queue_5": [ [1310957297187,6324],[1310957298190,6418],[1310957299190,6302],[1310957300190,6349],[1310957301190,6478],[1310957302191,6356],[1310957303191,6436],[1310957304191,6364],[1310957305191,6381],[1310957306191,6107],[1310957307192,6192],[1310957308192,6225],[1310957309192,6030],[1310957310192,6377],[1310957311193,6440] ], - "p_20b_5a_5queue_5": [ [1310956842195,84218],[1310956843195,91072],[1310956844195,107261],[1310956845208,81357],[1310956846211,107814],[1310956847218,103813],[1310956848218,83328],[1310956849225,105013],[1310956850225,85108],[1310956851226,93621],[1310956852226,80156],[1310956853233,91316],[1310956854242,76305],[1310956855243,97776],[1310956856248,102231] ], - "e_256k_1a_1topic_1": [ [1310957149951,0],[1310957150951,0],[1310957151953,0],[1310957152956,0],[1310957153956,0],[1310957154956,0],[1310957155957,0],[1310957156960,0],[1310957157960,0],[1310957158960,0],[1310957159961,0],[1310957160961,0],[1310957161966,0],[1310957162969,0],[1310957163970,0] ], - "e_256k_5p_5topic_5": [ [1310957549525,0],[1310957550527,0],[1310957551527,0],[1310957552533,0],[1310957553534,0],[1310957554534,0],[1310957555534,0],[1310957556535,0],[1310957557536,0],[1310957558536,0],[1310957559538,0],[1310957560540,0],[1310957561540,0],[1310957562541,0],[1310957563541,0] ], - "p_20b_1p_1topic_5": [ [1310958149591,2915],[1310958150592,2931],[1310958151592,2902],[1310958152592,2896],[1310958153592,2899],[1310958154593,2938],[1310958155593,2911],[1310958156593,2924],[1310958157593,2891],[1310958158593,2927],[1310958159594,2915],[1310958160594,2924],[1310958161594,2889],[1310958162594,2878],[1310958163595,2895] ], - "c_20b_5a_1queue_5": [ [1310957660463,110544],[1310957661464,102860],[1310957662465,111273],[1310957663465,109743],[1310957664465,95058],[1310957665466,99749],[1310957666474,102228],[1310957667474,94864],[1310957668475,68858],[1310957669487,105061],[1310957670498,97291],[1310957671498,88517],[1310957672499,107014],[1310957673500,98286],[1310957674500,111288] ], - "p_20b_10a_10topic_10": [ [1310957076313,130209],[1310957077319,123219],[1310957078320,130208],[1310957079320,125203],[1310957080321,123811],[1310957081330,116549],[1310957082344,121757],[1310957083365,134033],[1310957084365,115974],[1310957085365,129268],[1310957086366,124310],[1310957087366,127647],[1310957088366,125522],[1310957089376,123006],[1310957090380,126454] ], - "e_20b_10a_1topic_1": [ [1310957802711,0],[1310957803711,0],[1310957804714,0],[1310957805714,0],[1310957806714,0],[1310957807715,0],[1310957808715,0],[1310957809715,0],[1310957810715,0],[1310957811716,0],[1310957812716,0],[1310957813716,0],[1310957814716,0],[1310957815717,0],[1310957816717,0] ], - "p_20b_1a_1topic_5": [ [1310957820740,46602],[1310957821744,57017],[1310957822751,42855],[1310957823751,43958],[1310957824751,52216],[1310957825752,46648],[1310957826753,46309],[1310957827758,44555],[1310957828759,54459],[1310957829759,53465],[1310957830762,56545],[1310957831762,54248],[1310957832762,51532],[1310957833763,50757],[1310957834764,54305] ], - "c_256k_5p_5queue_5": [ [1310957370779,348],[1310957371780,326],[1310957372780,336],[1310957373787,329],[1310957374787,329],[1310957375788,337],[1310957376788,323],[1310957377791,335],[1310957378798,329],[1310957379799,322],[1310957380799,331],[1310957381799,308],[1310957382799,346],[1310957383800,330],[1310957384805,332] ], - "e_20b_10a_10topic_10": [ [1310957076313,0],[1310957077319,0],[1310957078320,0],[1310957079320,0],[1310957080321,0],[1310957081330,0],[1310957082344,0],[1310957083365,0],[1310957084365,0],[1310957085365,0],[1310957086366,0],[1310957087366,0],[1310957088366,0],[1310957089376,0],[1310957090380,0] ], - "p_1k_1a_1topic_0": [ [1310958278691,180235],[1310958279691,180106],[1310958280691,180854],[1310958281691,181207],[1310958282695,179800],[1310958283695,180183],[1310958284695,181255],[1310958285696,178304],[1310958286696,182283],[1310958287696,181336],[1310958288697,181879],[1310958289697,181384],[1310958290697,172542],[1310958291697,177911],[1310958292700,177983] ], - "e_256k_1a_1queue_1": [ [1310956965610,0],[1310956966610,0],[1310956967610,0],[1310956968611,0],[1310956969611,0],[1310956970611,0],[1310956971615,0],[1310956972617,0],[1310956973618,0],[1310956974618,0],[1310956975618,0],[1310956976619,0],[1310956977619,0],[1310956978619,0],[1310956979620,0] ], - "c_20b_10a_1queue_5": [ [1310957685182,91905],[1310957686182,74277],[1310957687182,54493],[1310957688188,82829],[1310957689189,88674],[1310957690189,85556],[1310957691191,68706],[1310957692191,79134],[1310957693191,75587],[1310957694191,75429],[1310957695192,91137],[1310957696208,86155],[1310957697209,81274],[1310957698209,110924],[1310957699209,89156] ], - "e_20b_10p_1topic_5": [ [1310958186620,0],[1310958187620,0],[1310958188620,0],[1310958189621,0],[1310958190621,0],[1310958191621,0],[1310958192621,0],[1310958193622,0],[1310958194622,0],[1310958195622,0],[1310958196622,0],[1310958197623,0],[1310958198623,0],[1310958199623,0],[1310958200623,0] ], - "e_20b_5p_1topic_10": [ [1310958223654,0],[1310958224654,0],[1310958225654,0],[1310958226655,0],[1310958227655,0],[1310958228655,0],[1310958229655,0],[1310958230656,0],[1310958231656,0],[1310958232656,0],[1310958233656,0],[1310958234657,0],[1310958235657,0],[1310958236659,0],[1310958237659,0] ], - "p_20b_10p_10queue_10": [ [1310957251134,7632],[1310957252134,7502],[1310957253135,7627],[1310957254135,7523],[1310957255135,7592],[1310957256135,7589],[1310957257136,7608],[1310957258136,7083],[1310957259136,7318],[1310957260136,7309],[1310957261136,7655],[1310957262137,7537],[1310957263137,7538],[1310957264137,7541],[1310957265137,7518] ], - "p_20b_1p_1queue_1": [ [1310957205578,2299],[1310957206581,2158],[1310957207581,2577],[1310957208581,2660],[1310957209582,2628],[1310957210582,2567],[1310957211582,2596],[1310957212583,2660],[1310957213583,2655],[1310957214583,2626],[1310957215583,2653],[1310957216583,2657],[1310957217584,2660],[1310957218584,2664],[1310957219584,2623] ], - "p_20b_10a_1queue_10": [ [1310957759392,104006],[1310957760392,108378],[1310957761393,91922],[1310957762400,97189],[1310957763404,95845],[1310957764404,86196],[1310957765424,103912],[1310957766427,94907],[1310957767428,91963],[1310957768428,75097],[1310957769434,63239],[1310957770436,93172],[1310957771448,103876],[1310957772454,102148],[1310957773455,105074] ], - "p_256k_5a_5queue_5": [ [1310956990153,347],[1310956991153,339],[1310956992159,326],[1310956993161,320],[1310956994166,328],[1310956995166,338],[1310956996168,298],[1310956997169,287],[1310956998169,304],[1310956999172,315],[1310957000172,348],[1310957001172,349],[1310957002174,348],[1310957003174,337],[1310957004174,335] ], - "c_20b_5a_1topic_10": [ [1310957894864,253745],[1310957895864,218958],[1310957896867,223507],[1310957897867,226815],[1310957898867,260638],[1310957899868,251013],[1310957900868,261748],[1310957901868,265813],[1310957902868,273990],[1310957903880,271519],[1310957904880,266719],[1310957905881,266990],[1310957906881,254340],[1310957907881,258229],[1310957908881,231589] ], - "p_20b_1p_1queue_0": [ [1310958348037,1206],[1310958349037,1329],[1310958350037,1374],[1310958351038,1424],[1310958352038,1416],[1310958353038,1349],[1310958354038,1362],[1310958355038,1411],[1310958356039,1292],[1310958357039,1237],[1310958358039,1263],[1310958359039,1262],[1310958360039,1280],[1310958361040,1306],[1310958362040,1287],[1310958363040,1270],[1310958364040,1280],[1310958365040,1406],[1310958366041,1384],[1310958367041,1392],[1310958368041,1497],[1310958369041,1283],[1310958370041,1277],[1310958371042,1260],[1310958372042,1251],[1310958373042,1221],[1310958374042,1204],[1310958375042,1225],[1310958376042,1222],[1310958377043,1222] ], - "e_1k_1p_1topic_1": [ [1310957475426,0],[1310957476426,0],[1310957477427,0],[1310957478428,0],[1310957479428,0],[1310957480430,0],[1310957481430,0],[1310957482433,0],[1310957483436,0],[1310957484437,0],[1310957485437,0],[1310957486437,0],[1310957487437,0],[1310957488438,0],[1310957489438,0] ], - "c_20b_10p_10queue_10": [ [1310957251134,7631],[1310957252134,7500],[1310957253135,7630],[1310957254135,7521],[1310957255135,7591],[1310957256135,7592],[1310957257136,7608],[1310957258136,7082],[1310957259136,7318],[1310957260136,7309],[1310957261136,7652],[1310957262137,7542],[1310957263137,7536],[1310957264137,7541],[1310957265137,7518] ], - "e_20b_10p_1topic_10": [ [1310958242178,0],[1310958243178,0],[1310958244178,0],[1310958245178,0],[1310958246179,0],[1310958247179,0],[1310958248179,0],[1310958249179,0],[1310958250180,0],[1310958251180,0],[1310958252180,0],[1310958253181,0],[1310958254181,0],[1310958255181,0],[1310958256181,0] ], - "c_1k_1p_1queue_1": [ [1310957275663,2359],[1310957276663,2384],[1310957277664,2364],[1310957278664,2295],[1310957279664,2335],[1310957280664,2095],[1310957281664,2061],[1310957282665,2256],[1310957283665,2282],[1310957284665,2316],[1310957285665,2333],[1310957286665,2403],[1310957287666,2389],[1310957288666,2395],[1310957289666,2380] ], - "p_20b_10p_1queue_1": [ [1310957953421,10623],[1310957954421,10586],[1310957955422,10719],[1310957956422,10632],[1310957957422,10602],[1310957958422,10547],[1310957959423,10579],[1310957960423,10510],[1310957961423,10633],[1310957962423,10509],[1310957963423,10623],[1310957964424,10565],[1310957965424,10633],[1310957966424,10498],[1310957967424,10523] ], - "p_20b_10p_1topic_5": [ [1310958186620,8929],[1310958187620,8997],[1310958188620,9076],[1310958189621,9129],[1310958190621,9118],[1310958191621,8999],[1310958192621,9116],[1310958193622,9088],[1310958194622,9285],[1310958195622,8875],[1310958196622,8863],[1310958197623,9111],[1310958198623,8983],[1310958199623,8890],[1310958200623,8919] ], - "p_20b_5a_1queue_5": [ [1310957660463,110085],[1310957661464,103912],[1310957662465,109674],[1310957663465,114316],[1310957664465,91834],[1310957665466,100107],[1310957666474,102949],[1310957667474,94390],[1310957668475,70420],[1310957669487,105152],[1310957670498,91640],[1310957671498,91108],[1310957672499,108968],[1310957673500,96961],[1310957674500,113937] ], - "e_1k_5p_5queue_5": [ [1310957297187,0],[1310957298190,0],[1310957299190,0],[1310957300190,0],[1310957301190,0],[1310957302191,0],[1310957303191,0],[1310957304191,0],[1310957305191,0],[1310957306191,0],[1310957307192,0],[1310957308192,0],[1310957309192,0],[1310957310192,0],[1310957311193,0] ], - "e_1k_10p_10queue_10": [ [1310957321725,0],[1310957322725,0],[1310957323726,0],[1310957324726,0],[1310957325726,0],[1310957326726,0],[1310957327727,0],[1310957328727,0],[1310957329727,0],[1310957330727,0],[1310957331728,0],[1310957332728,0],[1310957333728,0],[1310957334730,0],[1310957335730,0] ], - "c_20b_1p_1queue_5": [ [1310957977935,2718],[1310957978936,2677],[1310957979936,2714],[1310957980936,2679],[1310957981936,2714],[1310957982936,2679],[1310957983937,2718],[1310957984937,2676],[1310957985937,2713],[1310957986937,2673],[1310957987937,2720],[1310957988938,2670],[1310957989938,2718],[1310957990938,2655],[1310957991938,2704] ], - "e_256k_5a_5topic_5": [ [1310957168489,0],[1310957169495,0],[1310957170496,0],[1310957171497,0],[1310957172498,0],[1310957173498,0],[1310957174499,0],[1310957175505,0],[1310957176505,0],[1310957177506,0],[1310957178507,0],[1310957179511,0],[1310957180511,0],[1310957181511,0],[1310957182512,0] ], - "c_256k_5a_5queue_5": [ [1310956990153,349],[1310956991153,340],[1310956992159,321],[1310956993161,321],[1310956994166,327],[1310956995166,338],[1310956996168,297],[1310956997169,287],[1310956998169,306],[1310956999172,315],[1310957000172,353],[1310957001172,345],[1310957002174,349],[1310957003174,335],[1310957004174,336] ], - "c_20b_1a_1queue_5": [ [1310957635819,118555],[1310957636819,119700],[1310957637820,119700],[1310957638820,121800],[1310957639820,119640],[1310957640821,121130],[1310957641821,117351],[1310957642821,119830],[1310957643821,119830],[1310957644823,118788],[1310957645824,119830],[1310957646828,119322],[1310957647828,118775],[1310957648828,121914],[1310957649829,118267] ], - "p_20b_1p_1queue_5": [ [1310957977935,2718],[1310957978936,2677],[1310957979936,2715],[1310957980936,2678],[1310957981936,2714],[1310957982936,2680],[1310957983937,2718],[1310957984937,2676],[1310957985937,2713],[1310957986937,2672],[1310957987937,2721],[1310957988938,2670],[1310957989938,2717],[1310957990938,2656],[1310957991938,2703] ], - "c_20b_5a_1topic_1": [ [1310957784189,114314],[1310957785189,114729],[1310957786190,119453],[1310957787190,117163],[1310957788190,115620],[1310957789190,115314],[1310957790190,119248],[1310957791191,118460],[1310957792191,116654],[1310957793191,117943],[1310957794191,117492],[1310957795192,114630],[1310957796192,120435],[1310957797192,116847],[1310957798194,115964] ], - "c_1k_10p_10queue_10": [ [1310957321725,7116],[1310957322725,7079],[1310957323726,6975],[1310957324726,6609],[1310957325726,7083],[1310957326726,7359],[1310957327727,7204],[1310957328727,7066],[1310957329727,6084],[1310957330727,6190],[1310957331728,6310],[1310957332728,6498],[1310957333728,6344],[1310957334730,6552],[1310957335730,6409] ], - "e_20b_1p_1queue_0": [ [1310958348037,0],[1310958349037,0],[1310958350037,0],[1310958351038,0],[1310958352038,0],[1310958353038,0],[1310958354038,0],[1310958355038,0],[1310958356039,0],[1310958357039,0],[1310958358039,0],[1310958359039,0],[1310958360039,0],[1310958361040,0],[1310958362040,0],[1310958363040,0],[1310958364040,0],[1310958365040,0],[1310958366041,0],[1310958367041,0],[1310958368041,0],[1310958369041,0],[1310958370041,0],[1310958371042,0],[1310958372042,0],[1310958373042,0],[1310958374042,0],[1310958375042,0],[1310958376042,0],[1310958377043,0] ], - "p_20b_10a_1topic_10": [ [1310957913375,13819],[1310957914383,28939],[1310957915383,24358],[1310957916384,30722],[1310957917384,24248],[1310957918384,28078],[1310957919384,26836],[1310957920385,27077],[1310957921385,26380],[1310957922385,19555],[1310957923385,26811],[1310957924392,31312],[1310957925392,28225],[1310957926395,27196],[1310957927395,28299] ], - "e_20b_5p_1queue_5": [ [1310957999452,0],[1310958000452,0],[1310958001452,0],[1310958002453,0],[1310958003453,0],[1310958004453,0],[1310958005453,0],[1310958006454,0],[1310958007454,0],[1310958008454,0],[1310958009454,0],[1310958010454,0],[1310958011455,0],[1310958012455,0],[1310958013455,0] ], - "c_256k_1p_1topic_1": [ [1310957530985,350],[1310957531987,340],[1310957532988,342],[1310957533990,338],[1310957534992,340],[1310957535996,340],[1310957536997,339],[1310957538002,336],[1310957539002,334],[1310957540007,334],[1310957541008,329],[1310957542008,326],[1310957543009,324],[1310957544013,319],[1310957545013,317] ], - "c_20b_5p_5topic_5": [ [1310957438398,10580],[1310957439398,10504],[1310957440398,10576],[1310957441399,10552],[1310957442399,10651],[1310957443399,10327],[1310957444399,10624],[1310957445400,10463],[1310957446400,10482],[1310957447400,10465],[1310957448400,10638],[1310957449400,10536],[1310957450401,10592],[1310957451401,10091],[1310957452401,10472] ], - "e_256k_5a_5queue_5": [ [1310956990153,0],[1310956991153,0],[1310956992159,0],[1310956993161,0],[1310956994166,0],[1310956995166,0],[1310956996168,0],[1310956997169,0],[1310956998169,0],[1310956999172,0],[1310957000172,0],[1310957001172,0],[1310957002174,0],[1310957003174,0],[1310957004174,0] ] -} diff --git a/reports/osx-8-core/activemq-5.5.0.json b/reports/osx-8-core/activemq-5.5.0.json deleted file mode 100644 index 9dff4d1..0000000 --- a/reports/osx-8-core/activemq-5.5.0.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "benchmark_settings": { - "broker_name": "Apache ActiveMQ 5.5.0", - "url": "tcp://localhost:61616", - "sample_count": 15, - "sample_interval": 1000, - "warm_up_count": 3, - "scenario_connection_scale_rate": 50 - }, - "p_20b_5p_1queue_1": [ [1310524724388,2709],[1310524725388,2816],[1310524726388,2872],[1310524727388,2900],[1310524728389,2788],[1310524729389,2849],[1310524730389,2924],[1310524731389,2811],[1310524732389,2806],[1310524733390,2850],[1310524734390,2800],[1310524735390,2833],[1310524736390,2847],[1310524737391,2803],[1310524738391,2796] ], - "p_20b_10a_10queue_10": [ [1310523534058,52170],[1310523535058,50185],[1310523536059,52257],[1310523537059,51707],[1310523538061,53169],[1310523539061,50808],[1310523540062,47751],[1310523541062,49057],[1310523542063,51053],[1310523543063,56902],[1310523544064,46100],[1310523545065,55964],[1310523546065,48398],[1310523547065,53654],[1310523548065,55767] ], - "e_256k_1p_1queue_1": [ [1310524006207,0],[1310524007207,0],[1310524008207,0],[1310524009208,0],[1310524010208,0],[1310524011208,0],[1310524012208,0],[1310524013211,0],[1310524014211,0],[1310524015212,0],[1310524016212,0],[1310524017212,0],[1310524018212,0],[1310524019212,0],[1310524020213,0] ], - "p_20b_1a_1queue_0": [ [1310525099898,60726],[1310525100898,59588],[1310525101898,55846],[1310525102899,60226],[1310525103899,56030],[1310525104899,58497],[1310525105899,58104],[1310525106900,59411],[1310525107900,60963],[1310525108900,58432],[1310525109900,58531],[1310525110900,61078],[1310525111901,57245],[1310525112901,59629],[1310525113901,59507],[1310525114901,55557],[1310525115902,57879],[1310525116902,58205],[1310525117902,57982],[1310525118902,57712],[1310525119902,58652],[1310525120903,54711],[1310525121903,55328],[1310525122903,60801],[1310525123903,59970],[1310525124904,57218],[1310525125904,59773],[1310525126904,61144],[1310525127904,59675],[1310525128904,60952] ], - "p_20b_1a_1queue_5": [ [1310524370230,20881],[1310524371230,20888],[1310524372230,20764],[1310524373234,20918],[1310524374234,21017],[1310524375234,20833],[1310524376234,20802],[1310524377235,20799],[1310524378235,20992],[1310524379235,20870],[1310524380235,20794],[1310524381236,20856],[1310524382236,21037],[1310524383236,20883],[1310524384236,21388] ], - "p_256k_1p_1queue_1": [ [1310524006207,94],[1310524007207,94],[1310524008207,93],[1310524009208,94],[1310524010208,93],[1310524011208,90],[1310524012208,93],[1310524013211,91],[1310524014211,94],[1310524015212,88],[1310524016212,96],[1310524017212,96],[1310524018212,89],[1310524019212,94],[1310524020213,89] ], - "e_20b_10p_10queue_10": [ [1310523919047,0],[1310523920048,0],[1310523921048,0],[1310523922048,0],[1310523923048,0],[1310523924049,0],[1310523925049,0],[1310523926049,0],[1310523927049,0],[1310523928050,0],[1310523929050,0],[1310523930050,0],[1310523931050,0],[1310523932051,0],[1310523933051,0] ], - "p_20b_5p_5topic_5": [ [1310524093389,17475],[1310524094390,17262],[1310524095390,17271],[1310524096390,17416],[1310524097390,17394],[1310524098391,17257],[1310524099391,17425],[1310524100391,17353],[1310524101391,17317],[1310524102391,17268],[1310524103392,17294],[1310524104392,17171],[1310524105392,17445],[1310524106392,17173],[1310524107393,17321] ], - "e_20b_1a_1topic_10": [ [1310524668455,0],[1310524669455,0],[1310524670455,0],[1310524671455,0],[1310524672456,0],[1310524673456,0],[1310524674456,0],[1310524675456,0],[1310524676457,0],[1310524677457,0],[1310524678457,0],[1310524679457,0],[1310524680457,0],[1310524681458,0],[1310524682458,0] ], - "e_20b_1p_1queue_10": [ [1310524838527,0],[1310524839527,0],[1310524840527,0],[1310524841527,0],[1310524842528,0],[1310524843528,0],[1310524844528,0],[1310524845528,0],[1310524846528,0],[1310524847529,0],[1310524848529,0],[1310524849529,0],[1310524850529,0],[1310524851529,0],[1310524852530,0] ], - "c_20b_10p_1topic_1": [ [1310524919658,16770],[1310524920658,17018],[1310524921658,17172],[1310524922659,17038],[1310524923659,17033],[1310524924659,16998],[1310524925659,17060],[1310524926660,17012],[1310524927660,16763],[1310524928660,17211],[1310524929660,17081],[1310524930660,17182],[1310524931661,16890],[1310524932661,16957],[1310524933661,17046] ], - "e_20b_1a_1queue_10": [ [1310524487549,0],[1310524488549,0],[1310524489550,0],[1310524490550,0],[1310524491550,0],[1310524492550,0],[1310524493551,0],[1310524494551,0],[1310524495551,0],[1310524496551,0],[1310524497552,0],[1310524498552,0],[1310524499552,0],[1310524500552,0],[1310524501552,0] ], - "c_1k_1a_1topic_1": [ [1310523763436,21396],[1310523764436,21537],[1310523765436,21668],[1310523766437,22447],[1310523767437,22273],[1310523768437,22483],[1310523769437,21893],[1310523770438,21908],[1310523771438,22216],[1310523772438,21930],[1310523773438,22607],[1310523774438,22274],[1310523775439,21839],[1310523776439,22064],[1310523777439,21865] ], - "p_20b_1a_1topic_10": [ [1310524668455,8180],[1310524669455,10118],[1310524670455,9812],[1310524671455,6788],[1310524672456,9852],[1310524673456,8798],[1310524674456,7902],[1310524675456,8117],[1310524676457,9829],[1310524677457,9470],[1310524678457,7554],[1310524679457,10145],[1310524680457,8864],[1310524681458,7056],[1310524682458,8907] ], - "p_256k_5p_5topic_5": [ [1310524201546,816],[1310524202549,821],[1310524203550,812],[1310524204550,817],[1310524205554,812],[1310524206559,818],[1310524207559,808],[1310524208560,817],[1310524209560,803],[1310524210561,819],[1310524211561,825],[1310524212561,821],[1310524213565,822],[1310524214565,822],[1310524215565,792] ], - "e_256k_10p_10topic_10": [ [1310524219647,0],[1310524220647,0],[1310524221648,0],[1310524222648,0],[1310524223650,0],[1310524224650,0],[1310524225651,0],[1310524226652,0],[1310524227652,0],[1310524228656,0],[1310524229657,0],[1310524230659,0],[1310524231664,0],[1310524232664,0],[1310524233665,0] ], - "c_1k_1p_1topic_1": [ [1310524129455,6838],[1310524130456,6768],[1310524131456,6909],[1310524132456,6628],[1310524133456,6918],[1310524134457,6889],[1310524135457,6783],[1310524136457,6556],[1310524137457,6856],[1310524138458,6673],[1310524139458,6795],[1310524140458,6852],[1310524141458,6704],[1310524142459,6695],[1310524143459,6605] ], - "c_20b_1a_1topic_1": [ [1310523708778,22912],[1310523709778,22188],[1310523710778,24306],[1310523711779,22917],[1310523712779,24099],[1310523713779,22542],[1310523714779,22376],[1310523715780,22865],[1310523716780,23110],[1310523717780,22281],[1310523718780,22882],[1310523719781,23464],[1310523720781,23063],[1310523721781,21696],[1310523722781,23202] ], - "c_20b_5p_1topic_5": [ [1310524955699,29180],[1310524956700,29370],[1310524957700,29447],[1310524958700,29214],[1310524959700,29077],[1310524960701,28987],[1310524961701,29180],[1310524962701,29494],[1310524963701,29113],[1310524964701,29698],[1310524965702,29539],[1310524966702,29331],[1310524967703,29786],[1310524968703,29539],[1310524969703,29543] ], - "p_1k_1p_1queue_1": [ [1310523943092,1686],[1310523944092,1690],[1310523945092,1524],[1310523946093,1702],[1310523947093,1659],[1310523948093,1650],[1310523949093,1728],[1310523950093,1631],[1310523951094,1686],[1310523952094,1703],[1310523953094,1623],[1310523954094,1719],[1310523955095,1637],[1310523956095,1705],[1310523957095,1713] ], - "e_1k_10a_10queue_10": [ [1310523612352,0],[1310523613353,0],[1310523614353,0],[1310523615353,0],[1310523616353,0],[1310523617354,0],[1310523618354,0],[1310523619354,0],[1310523620354,0],[1310523621355,0],[1310523622355,0],[1310523623355,0],[1310523624355,0],[1310523625356,0],[1310523626356,0] ], - "c_256k_5p_5topic_5": [ [1310524201546,816],[1310524202549,821],[1310524203550,812],[1310524204550,816],[1310524205554,812],[1310524206559,820],[1310524207559,808],[1310524208560,814],[1310524209560,804],[1310524210561,821],[1310524211561,824],[1310524212561,820],[1310524213565,823],[1310524214565,821],[1310524215565,793] ], - "p_20b_1p_1queue_10": [ [1310524838527,2095],[1310524839527,2051],[1310524840527,2084],[1310524841527,2079],[1310524842528,2074],[1310524843528,2068],[1310524844528,2097],[1310524845528,2086],[1310524846528,2094],[1310524847529,2106],[1310524848529,2083],[1310524849529,2046],[1310524850529,2084],[1310524851529,2187],[1310524852530,2088] ], - "p_20b_10p_1topic_10": [ [1310525027830,3176],[1310525028830,3155],[1310525029830,3151],[1310525030830,3148],[1310525031830,3144],[1310525032831,3143],[1310525033831,3170],[1310525034831,3147],[1310525035831,3220],[1310525036832,3088],[1310525037832,3171],[1310525038832,3152],[1310525039832,3148],[1310525040833,3144],[1310525041833,3160] ], - "p_1k_1p_1topic_1": [ [1310524129455,6838],[1310524130456,6768],[1310524131456,6909],[1310524132456,6628],[1310524133456,6919],[1310524134457,6889],[1310524135457,6783],[1310524136457,6555],[1310524137457,6856],[1310524138458,6673],[1310524139458,6795],[1310524140458,6853],[1310524141458,6703],[1310524142459,6695],[1310524143459,6605] ], - "e_20b_10a_10queue_10": [ [1310523534058,0],[1310523535058,0],[1310523536059,0],[1310523537059,0],[1310523538061,0],[1310523539061,0],[1310523540062,0],[1310523541062,0],[1310523542063,0],[1310523543063,0],[1310523544064,0],[1310523545065,0],[1310523546065,0],[1310523547065,0],[1310523548065,0] ], - "p_256k_10a_10topic_10": [ [1310523853989,722],[1310523854990,722],[1310523855990,724],[1310523856991,730],[1310523857992,706],[1310523858993,738],[1310523859994,729],[1310523860994,747],[1310523861997,736],[1310523862997,731],[1310523863999,759],[1310523865000,767],[1310523866000,753],[1310523867007,764],[1310523868007,782] ], - "p_256k_1p_1topic_1": [ [1310524183525,490],[1310524184526,500],[1310524185527,476],[1310524186527,484],[1310524187527,498],[1310524188527,484],[1310524189528,489],[1310524190528,482],[1310524191528,487],[1310524192528,474],[1310524193529,486],[1310524194529,490],[1310524195529,501],[1310524196529,487],[1310524197529,491] ], - "e_256k_10a_10topic_10": [ [1310523853989,0],[1310523854990,0],[1310523855990,0],[1310523856991,0],[1310523857992,0],[1310523858993,0],[1310523859994,0],[1310523860994,0],[1310523861997,0],[1310523862997,0],[1310523863999,0],[1310523865000,0],[1310523866000,0],[1310523867007,0],[1310523868007,0] ], - "e_20b_10a_1queue_5": [ [1310524433386,0],[1310524434387,0],[1310524435387,0],[1310524436387,0],[1310524437387,0],[1310524438388,0],[1310524439388,0],[1310524440388,0],[1310524441388,0],[1310524442389,0],[1310524443389,0],[1310524444389,0],[1310524445389,0],[1310524446390,0],[1310524447390,0] ], - "p_1k_10p_10queue_10": [ [1310523985155,13652],[1310523986155,13210],[1310523987155,13578],[1310523988155,13316],[1310523989156,13587],[1310523990156,12891],[1310523991156,13315],[1310523992156,13400],[1310523993157,13450],[1310523994157,13136],[1310523995157,13699],[1310523996157,13327],[1310523997158,13099],[1310523998158,13268],[1310523999158,13100] ], - "e_20b_5a_1queue_1": [ [1310524237694,0],[1310524238694,0],[1310524239694,0],[1310524240695,0],[1310524241695,0],[1310524242695,0],[1310524243695,0],[1310524244696,0],[1310524245696,0],[1310524246696,0],[1310524247697,0],[1310524248697,0],[1310524249697,0],[1310524250702,0],[1310524251702,0] ], - "c_1k_5a_5queue_5": [ [1310523588285,33272],[1310523589285,32450],[1310523590285,33235],[1310523591286,31477],[1310523592286,31693],[1310523593286,31926],[1310523594286,30302],[1310523595287,32797],[1310523596287,36141],[1310523597287,35820],[1310523598287,34862],[1310523599288,32808],[1310523600288,33653],[1310523601288,32864],[1310523602288,32199] ], - "c_20b_1a_1queue_1": [ [1310523467855,23691],[1310523468864,25150],[1310523469864,23196],[1310523470864,22902],[1310523471865,24017],[1310523472865,24181],[1310523473865,23604],[1310523474865,23924],[1310523475865,23817],[1310523476866,24754],[1310523477866,23038],[1310523478866,24104],[1310523479866,21758],[1310523480867,24525],[1310523481867,22494] ], - "p_20b_1a_1queue_1": [ [1310523467855,45100],[1310523468864,44700],[1310523469864,43902],[1310523470864,44577],[1310523471865,45796],[1310523472865,44447],[1310523473865,44239],[1310523474865,45445],[1310523475865,45296],[1310523476866,46515],[1310523477866,45393],[1310523478866,46248],[1310523479866,45040],[1310523480867,44931],[1310523481867,44699] ], - "c_20b_5p_1topic_1": [ [1310524901642,17947],[1310524902642,17926],[1310524903642,17750],[1310524904642,17852],[1310524905642,17943],[1310524906643,17891],[1310524907643,17737],[1310524908643,18000],[1310524909643,17857],[1310524910644,17890],[1310524911644,17734],[1310524912644,17930],[1310524913644,17959],[1310524914644,17883],[1310524915645,17779] ], - "e_20b_0_1queue_1": [ [1310525165920,0],[1310525166920,0],[1310525167920,0],[1310525168920,0],[1310525169921,0],[1310525170921,0],[1310525171921,0],[1310525172921,0],[1310525173921,0],[1310525174922,0],[1310525175922,0],[1310525176922,0],[1310525177922,0],[1310525178923,0],[1310525179923,0],[1310525180923,0],[1310525181923,0],[1310525182924,0],[1310525183925,0],[1310525184925,0],[1310525185925,0],[1310525186925,0],[1310525187926,0],[1310525188926,0],[1310525189926,0],[1310525190926,0],[1310525191927,0],[1310525192927,0],[1310525193927,0],[1310525194927,0] ], - "e_20b_10a_1queue_1": [ [1310524312885,0],[1310524313885,0],[1310524314886,0],[1310524315886,0],[1310524316886,0],[1310524317886,0],[1310524318887,0],[1310524319887,0],[1310524320887,0],[1310524321887,0],[1310524322888,0],[1310524323888,0],[1310524324888,0],[1310524325888,0],[1310524326889,0] ], - "e_1k_5p_5topic_5": [ [1310524147468,0],[1310524148468,0],[1310524149468,0],[1310524150468,0],[1310524151469,0],[1310524152469,0],[1310524153469,0],[1310524154469,0],[1310524155470,0],[1310524156470,0],[1310524157470,0],[1310524158470,0],[1310524159471,0],[1310524160471,0],[1310524161471,0] ], - "c_20b_5p_1topic_10": [ [1310525009788,32783],[1310525010789,31657],[1310525011789,31166],[1310525012789,31294],[1310525013789,31470],[1310525014790,31039],[1310525015790,31821],[1310525016790,31720],[1310525017790,31328],[1310525018791,30955],[1310525019791,31478],[1310525020791,31369],[1310525021791,31560],[1310525022792,31640],[1310525023792,31615] ], - "p_20b_5p_1queue_10": [ [1310524859561,8887],[1310524860561,9923],[1310524861562,9839],[1310524862562,9930],[1310524863562,9798],[1310524864562,9863],[1310524865563,9911],[1310524866563,9830],[1310524867563,9959],[1310524868563,9859],[1310524869564,9939],[1310524870564,9837],[1310524871564,9935],[1310524872564,9859],[1310524873565,9951] ], - "p_256k_10a_10queue_10": [ [1310523684651,686],[1310523685664,728],[1310523686665,693],[1310523687666,727],[1310523688666,767],[1310523689668,788],[1310523690668,767],[1310523691668,725],[1310523692669,695],[1310523693670,597],[1310523694671,687],[1310523695671,663],[1310523696677,669],[1310523697678,650],[1310523698683,666] ], - "p_1k_5p_5topic_5": [ [1310524147468,16598],[1310524148468,16784],[1310524149468,16651],[1310524150468,16709],[1310524151469,16734],[1310524152469,16671],[1310524153469,16777],[1310524154469,16741],[1310524155470,16507],[1310524156470,16780],[1310524157470,16673],[1310524158470,16778],[1310524159471,16743],[1310524160471,16748],[1310524161471,16752] ], - "p_20b_10p_1queue_5": [ [1310524814488,13812],[1310524815488,13881],[1310524816488,12984],[1310524817489,13592],[1310524818489,14026],[1310524819489,13720],[1310524820489,13952],[1310524821490,13855],[1310524822490,14140],[1310524823490,13816],[1310524824490,14005],[1310524825491,13697],[1310524826491,14033],[1310524827491,14123],[1310524828491,10079] ], - "c_20b_10p_10topic_10": [ [1310524111432,17367],[1310524112433,17301],[1310524113433,17166],[1310524114433,17377],[1310524115433,17318],[1310524116434,17297],[1310524117434,17311],[1310524118434,17336],[1310524119434,17371],[1310524120434,17367],[1310524121435,17207],[1310524122435,17288],[1310524123435,17424],[1310524124435,17302],[1310524125436,17140] ], - "p_20b_5p_1topic_10": [ [1310525009788,3279],[1310525010789,3165],[1310525011789,3117],[1310525012789,3129],[1310525013789,3147],[1310525014790,3104],[1310525015790,3182],[1310525016790,3172],[1310525017790,3133],[1310525018791,3095],[1310525019791,3148],[1310525020791,3137],[1310525021791,3156],[1310525022792,3164],[1310525023792,3162] ], - "p_20b_5p_1topic_5": [ [1310524955699,5835],[1310524956700,5874],[1310524957700,5890],[1310524958700,5842],[1310524959700,5816],[1310524960701,5797],[1310524961701,5836],[1310524962701,5899],[1310524963701,5823],[1310524964701,5940],[1310524965702,5908],[1310524966702,5866],[1310524967703,5957],[1310524968703,5907],[1310524969703,5909] ], - "c_20b_10p_1topic_5": [ [1310524973731,29061],[1310524974732,29165],[1310524975732,29252],[1310524976732,28833],[1310524977732,29275],[1310524978733,29362],[1310524979733,29030],[1310524980733,29213],[1310524981733,28900],[1310524982734,28908],[1310524983734,29227],[1310524984734,29263],[1310524985734,29387],[1310524986734,29108],[1310524987735,29092] ], - "c_256k_10a_10topic_10": [ [1310523853989,719],[1310523854990,724],[1310523855990,720],[1310523856991,739],[1310523857992,699],[1310523858993,741],[1310523859994,725],[1310523860994,752],[1310523861997,726],[1310523862997,732],[1310523863999,707],[1310523865000,691],[1310523866000,675],[1310523867007,658],[1310523868007,638] ], - "e_1k_1a_1topic_1": [ [1310523763436,0],[1310523764436,0],[1310523765436,0],[1310523766437,0],[1310523767437,0],[1310523768437,0],[1310523769437,0],[1310523770438,0],[1310523771438,0],[1310523772438,0],[1310523773438,0],[1310523774438,0],[1310523775439,0],[1310523776439,0],[1310523777439,0] ], - "c_256k_10p_10topic_10": [ [1310524219647,786],[1310524220647,768],[1310524221648,794],[1310524222648,784],[1310524223650,782],[1310524224650,771],[1310524225651,800],[1310524226652,797],[1310524227652,778],[1310524228656,776],[1310524229657,759],[1310524230659,800],[1310524231664,795],[1310524232664,786],[1310524233665,773] ], - "c_20b_10a_1topic_5": [ [1310524648269,39623],[1310524649269,44718],[1310524650269,41789],[1310524651270,17122],[1310524652270,0],[1310524653270,0],[1310524654270,0],[1310524655271,0],[1310524656271,0],[1310524657271,0],[1310524658271,0],[1310524659271,0],[1310524660272,0],[1310524661272,0],[1310524662272,0] ], - "c_1k_10a_10queue_10": [ [1310523612352,32586],[1310523613353,32862],[1310523614353,30497],[1310523615353,32703],[1310523616353,33196],[1310523617354,31583],[1310523618354,34574],[1310523619354,30625],[1310523620354,31941],[1310523621355,31345],[1310523622355,35014],[1310523623355,31499],[1310523624355,31980],[1310523625356,33167],[1310523626356,32569] ], - "p_20b_1a_1topic_1": [ [1310523708778,38328],[1310523709778,38455],[1310523710778,41217],[1310523711779,39210],[1310523712779,41899],[1310523713779,39021],[1310523714779,40886],[1310523715780,40645],[1310523716780,41500],[1310523717780,40331],[1310523718780,39982],[1310523719781,38577],[1310523720781,42292],[1310523721781,41355],[1310523722781,42253] ], - "e_1k_10p_10topic_10": [ [1310524165501,0],[1310524166501,0],[1310524167501,0],[1310524168501,0],[1310524169502,0],[1310524170502,0],[1310524171502,0],[1310524172502,0],[1310524173503,0],[1310524174503,0],[1310524175503,0],[1310524176503,0],[1310524177504,0],[1310524178504,0],[1310524179504,0] ], - "c_20b_10p_1queue_10": [ [1310524880607,14494],[1310524881607,14512],[1310524882607,14504],[1310524883607,14513],[1310524884607,14499],[1310524885608,14541],[1310524886608,14291],[1310524887608,14493],[1310524888608,14609],[1310524889609,13643],[1310524890609,14296],[1310524891609,14649],[1310524892609,14545],[1310524893610,14470],[1310524894610,14414] ], - "e_20b_1a_1topic_0": [ [1310525045860,0],[1310525046861,0],[1310525047861,0],[1310525048861,0],[1310525049861,0],[1310525050861,0],[1310525051862,0],[1310525052862,0],[1310525053862,0],[1310525054862,0],[1310525055862,0],[1310525056863,0],[1310525057863,0],[1310525058863,0],[1310525059863,0] ], - "p_1k_5a_5topic_5": [ [1310523781471,27916],[1310523782472,28572],[1310523783472,28755],[1310523784473,27458],[1310523785473,27805],[1310523786473,28768],[1310523787473,29176],[1310523788474,26996],[1310523789474,29100],[1310523790474,26865],[1310523791474,28073],[1310523792475,27480],[1310523793475,28604],[1310523794475,27913],[1310523795475,27963] ], - "p_20b_1p_1topic_10": [ [1310524991759,3056],[1310524992759,3057],[1310524993759,3016],[1310524994759,3041],[1310524995760,3028],[1310524996760,3038],[1310524997760,3033],[1310524998760,3031],[1310524999761,3017],[1310525000761,3058],[1310525001761,2964],[1310525002761,3015],[1310525003762,2956],[1310525004762,3004],[1310525005762,2946] ], - "p_20b_1a_1queue_10": [ [1310524487549,23650],[1310524488549,23332],[1310524489550,24939],[1310524490550,23627],[1310524491550,23828],[1310524492550,23263],[1310524493551,23423],[1310524494551,22819],[1310524495551,23060],[1310524496551,23006],[1310524497552,23902],[1310524498552,23355],[1310524499552,24139],[1310524500552,24403],[1310524501552,24205] ], - "e_20b_5a_1queue_10": [ [1310524511603,0],[1310524512604,0],[1310524513604,0],[1310524514604,0],[1310524515604,0],[1310524516605,0],[1310524517605,0],[1310524518605,0],[1310524519605,0],[1310524520606,0],[1310524521606,0],[1310524522606,0],[1310524523606,0],[1310524524606,0],[1310524525607,0] ], - "c_256k_10p_10queue_10": [ [1310524051304,730],[1310524052305,722],[1310524053305,732],[1310524054305,723],[1310524055308,730],[1310524056313,728],[1310524057314,727],[1310524058314,721],[1310524059320,731],[1310524060320,722],[1310524061324,726],[1310524062324,726],[1310524063325,722],[1310524064328,729],[1310524065329,729] ], - "p_1k_1a_1queue_1": [ [1310523558259,27571],[1310523559259,27369],[1310523560259,28801],[1310523561260,27975],[1310523562260,29179],[1310523563260,27400],[1310523564260,28481],[1310523565261,28233],[1310523566261,28247],[1310523567261,27582],[1310523568261,29009],[1310523569262,27345],[1310523570262,27576],[1310523571262,28075],[1310523572264,28975] ], - "e_20b_1a_1topic_1": [ [1310523708778,0],[1310523709778,0],[1310523710778,0],[1310523711779,0],[1310523712779,0],[1310523713779,0],[1310523714779,0],[1310523715780,0],[1310523716780,0],[1310523717780,0],[1310523718780,0],[1310523719781,0],[1310523720781,0],[1310523721781,0],[1310523722781,0] ], - "p_1k_5a_5queue_5": [ [1310523588285,33414],[1310523589285,33051],[1310523590285,33476],[1310523591286,32346],[1310523592286,31917],[1310523593286,31571],[1310523594286,30765],[1310523595287,34652],[1310523596287,34557],[1310523597287,34924],[1310523598287,35316],[1310523599288,33291],[1310523600288,32305],[1310523601288,32828],[1310523602288,32649] ], - "c_20b_5p_1queue_1": [ [1310524724388,2709],[1310524725388,2816],[1310524726388,2872],[1310524727388,2900],[1310524728389,2787],[1310524729389,2849],[1310524730389,2925],[1310524731389,2810],[1310524732389,2806],[1310524733390,2851],[1310524734390,2800],[1310524735390,2833],[1310524736390,2846],[1310524737391,2804],[1310524738391,2796] ], - "c_20b_10p_1queue_1": [ [1310524748414,2913],[1310524749415,2992],[1310524750415,2849],[1310524751415,3099],[1310524752415,3146],[1310524753416,3157],[1310524754416,3177],[1310524755416,3119],[1310524756416,3112],[1310524757417,3146],[1310524758417,3140],[1310524759417,3125],[1310524760417,3156],[1310524761418,3159],[1310524762418,3155] ], - "c_256k_1a_1queue_1": [ [1310523636542,533],[1310523637542,539],[1310523638542,533],[1310523639542,541],[1310523640543,549],[1310523641543,535],[1310523642543,544],[1310523643543,531],[1310523644544,546],[1310523645544,541],[1310523646544,546],[1310523647544,550],[1310523648544,537],[1310523649545,542],[1310523650545,540] ], - "e_20b_1p_1topic_5": [ [1310524937676,0],[1310524938677,0],[1310524939677,0],[1310524940677,0],[1310524941677,0],[1310524942678,0],[1310524943678,0],[1310524944678,0],[1310524945678,0],[1310524946678,0],[1310524947679,0],[1310524948679,0],[1310524949679,0],[1310524950679,0],[1310524951680,0] ], - "e_1k_10a_10topic_10": [ [1310523799517,0],[1310523800518,0],[1310523801518,0],[1310523802518,0],[1310523803518,0],[1310523804518,0],[1310523805519,0],[1310523806522,0],[1310523807522,0],[1310523808522,0],[1310523809523,0],[1310523810523,0],[1310523811523,0],[1310523812523,0],[1310523813524,0] ], - "p_20b_5a_1topic_1": [ [1310524575072,52661],[1310524576073,51898],[1310524577073,57657],[1310524578073,54329],[1310524579073,53197],[1310524580080,56281],[1310524581080,68802],[1310524582080,66770],[1310524583080,56122],[1310524584081,74130],[1310524585081,63522],[1310524586081,66576],[1310524587081,60415],[1310524588082,61983],[1310524589082,59907] ], - "c_20b_10a_10queue_10": [ [1310523534058,48215],[1310523535058,55070],[1310523536059,49282],[1310523537059,53056],[1310523538061,52232],[1310523539061,51920],[1310523540062,50903],[1310523541062,49645],[1310523542063,52645],[1310523543063,49072],[1310523544064,51051],[1310523545065,52257],[1310523546065,52118],[1310523547065,51719],[1310523548065,51680] ], - "c_20b_5p_5queue_5": [ [1310523898010,9368],[1310523899010,9316],[1310523900011,9363],[1310523901011,9365],[1310523902011,9369],[1310523903011,9381],[1310523904012,9339],[1310523905012,9426],[1310523906012,9361],[1310523907012,9398],[1310523908013,9339],[1310523909013,9370],[1310523910013,9397],[1310523911013,9390],[1310523912014,9331] ], - "e_20b_5p_5queue_5": [ [1310523898010,0],[1310523899010,0],[1310523900011,0],[1310523901011,0],[1310523902011,0],[1310523903011,0],[1310523904012,0],[1310523905012,0],[1310523906012,0],[1310523907012,0],[1310523908013,0],[1310523909013,0],[1310523910013,0],[1310523911013,0],[1310523912014,0] ], - "c_20b_1a_1topic_5": [ [1310524611459,34544],[1310524612459,35116],[1310524613459,33829],[1310524614459,34697],[1310524615460,33806],[1310524616460,34290],[1310524617460,34757],[1310524618460,34903],[1310524619461,32240],[1310524620461,35841],[1310524621461,36330],[1310524622464,33975],[1310524623465,36334],[1310524624465,34303],[1310524625465,36626] ], - "e_256k_5p_5queue_5": [ [1310524027230,0],[1310524028230,0],[1310524029231,0],[1310524030231,0],[1310524031232,0],[1310524032232,0],[1310524033232,0],[1310524034234,0],[1310524035234,0],[1310524036234,0],[1310524037238,0],[1310524038240,0],[1310524039241,0],[1310524040243,0],[1310524041244,0] ], - "e_1k_5a_5queue_5": [ [1310523588285,0],[1310523589285,0],[1310523590285,0],[1310523591286,0],[1310523592286,0],[1310523593286,0],[1310523594286,0],[1310523595287,0],[1310523596287,0],[1310523597287,0],[1310523598287,0],[1310523599288,0],[1310523600288,0],[1310523601288,0],[1310523602288,0] ], - "e_20b_1p_1topic_10": [ [1310524991759,0],[1310524992759,0],[1310524993759,0],[1310524994759,0],[1310524995760,0],[1310524996760,0],[1310524997760,0],[1310524998760,0],[1310524999761,0],[1310525000761,0],[1310525001761,0],[1310525002761,0],[1310525003762,0],[1310525004762,0],[1310525005762,0] ], - "e_20b_1a_1queue_1": [ [1310523467855,0],[1310523468864,0],[1310523469864,0],[1310523470864,0],[1310523471865,0],[1310523472865,0],[1310523473865,0],[1310523474865,0],[1310523475865,0],[1310523476866,0],[1310523477866,0],[1310523478866,0],[1310523479866,0],[1310523480867,0],[1310523481867,0] ], - "p_20b_5a_1topic_10": [ [1310524686692,37726],[1310524687693,24677],[1310524688693,33844],[1310524689693,18400],[1310524690693,32633],[1310524691694,27080],[1310524692694,24218],[1310524693694,33887],[1310524694694,19122],[1310524695694,30093],[1310524696695,21775],[1310524697695,34222],[1310524698695,24524],[1310524699695,36571],[1310524700696,19877] ], - "e_20b_5p_1topic_1": [ [1310524901642,0],[1310524902642,0],[1310524903642,0],[1310524904642,0],[1310524905642,0],[1310524906643,0],[1310524907643,0],[1310524908643,0],[1310524909643,0],[1310524910644,0],[1310524911644,0],[1310524912644,0],[1310524913644,0],[1310524914644,0],[1310524915645,0] ], - "p_1k_1a_1topic_1": [ [1310523763436,26502],[1310523764436,27380],[1310523765436,27340],[1310523766437,26684],[1310523767437,28152],[1310523768437,27254],[1310523769437,26627],[1310523770438,26975],[1310523771438,27447],[1310523772438,25954],[1310523773438,27781],[1310523774438,26964],[1310523775439,26354],[1310523776439,26941],[1310523777439,27042] ], - "e_20b_10p_1queue_1": [ [1310524748414,0],[1310524749415,0],[1310524750415,0],[1310524751415,0],[1310524752415,0],[1310524753416,0],[1310524754416,0],[1310524755416,0],[1310524756416,0],[1310524757417,0],[1310524758417,0],[1310524759417,0],[1310524760417,0],[1310524761418,0],[1310524762418,0] ], - "e_20b_5a_1topic_5": [ [1310524629666,0],[1310524630667,0],[1310524631667,0],[1310524632667,0],[1310524633671,0],[1310524634671,0],[1310524635671,0],[1310524636671,0],[1310524637671,0],[1310524638672,0],[1310524639672,0],[1310524640672,0],[1310524641672,0],[1310524642673,0],[1310524643673,0] ], - "p_20b_1p_1topic_1": [ [1310524075376,7340],[1310524076376,7229],[1310524077377,7236],[1310524078377,7187],[1310524079377,7302],[1310524080377,7120],[1310524081378,7253],[1310524082378,7178],[1310524083378,7220],[1310524084378,7141],[1310524085379,7290],[1310524086379,7371],[1310524087379,7251],[1310524088379,7390],[1310524089380,7365] ], - "c_256k_1a_1topic_1": [ [1310523817899,501],[1310523818899,505],[1310523819900,506],[1310523820900,503],[1310523821900,503],[1310523822900,501],[1310523823901,500],[1310523824901,515],[1310523825901,510],[1310523826901,508],[1310523827902,513],[1310523828902,501],[1310523829902,492],[1310523830903,498],[1310523831903,511] ], - "p_20b_5p_1topic_1": [ [1310524901642,17947],[1310524902642,17927],[1310524903642,17750],[1310524904642,17851],[1310524905642,17943],[1310524906643,17891],[1310524907643,17738],[1310524908643,17999],[1310524909643,17859],[1310524910644,17888],[1310524911644,17738],[1310524912644,17926],[1310524913644,17959],[1310524914644,17883],[1310524915645,17779] ], - "p_20b_5p_1queue_5": [ [1310524793463,9023],[1310524794464,8993],[1310524795464,9093],[1310524796464,9045],[1310524797464,9017],[1310524798465,9062],[1310524799465,8466],[1310524800465,9115],[1310524801465,9058],[1310524802465,9123],[1310524803466,8592],[1310524804466,8981],[1310524805466,9056],[1310524806466,8483],[1310524807467,9081] ], - "p_20b_10p_10topic_10": [ [1310524111432,17365],[1310524112433,17303],[1310524113433,17164],[1310524114433,17377],[1310524115433,17319],[1310524116434,17296],[1310524117434,17311],[1310524118434,17338],[1310524119434,17370],[1310524120434,17368],[1310524121435,17208],[1310524122435,17287],[1310524123435,17429],[1310524124435,17297],[1310524125436,17140] ], - "e_20b_5a_5topic_5": [ [1310523726907,0],[1310523727907,0],[1310523728907,0],[1310523729908,0],[1310523730908,0],[1310523731908,0],[1310523732909,0],[1310523733909,0],[1310523734909,0],[1310523735909,0],[1310523736910,0],[1310523737910,0],[1310523738910,0],[1310523739910,0],[1310523740910,0] ], - "p_1k_10a_10queue_10": [ [1310523612352,31662],[1310523613353,32254],[1310523614353,32108],[1310523615353,33130],[1310523616353,31257],[1310523617354,33185],[1310523618354,33698],[1310523619354,30763],[1310523620354,32144],[1310523621355,33245],[1310523622355,34592],[1310523623355,30421],[1310523624355,32165],[1310523625356,32650],[1310523626356,32208] ], - "c_1k_10p_10topic_10": [ [1310524165501,16676],[1310524166501,16567],[1310524167501,16657],[1310524168501,16537],[1310524169502,16717],[1310524170502,16641],[1310524171502,16573],[1310524172502,16677],[1310524173503,16705],[1310524174503,16566],[1310524175503,16660],[1310524176503,16630],[1310524177504,16661],[1310524178504,16664],[1310524179504,16617] ], - "c_20b_5p_1queue_10": [ [1310524859561,8884],[1310524860561,9925],[1310524861562,9837],[1310524862562,9930],[1310524863562,9798],[1310524864562,9864],[1310524865563,9911],[1310524866563,9829],[1310524867563,9960],[1310524868563,9860],[1310524869564,9939],[1310524870564,9838],[1310524871564,9934],[1310524872564,9861],[1310524873565,9947] ], - "c_1k_1a_1queue_1": [ [1310523558259,19437],[1310523559259,19292],[1310523560259,19112],[1310523561260,19413],[1310523562260,19111],[1310523563260,19097],[1310523564260,19372],[1310523565261,19475],[1310523566261,18520],[1310523567261,18267],[1310523568261,18444],[1310523569262,17976],[1310523570262,17993],[1310523571262,17406],[1310523572264,19292] ], - "c_20b_10a_1topic_1": [ [1310524593302,41141],[1310524594303,42372],[1310524595303,40795],[1310524596303,41278],[1310524597303,42514],[1310524598304,40201],[1310524599304,40942],[1310524600304,42124],[1310524601304,40208],[1310524602305,41158],[1310524603305,41530],[1310524604305,39292],[1310524605305,43380],[1310524606306,39342],[1310524607306,40957] ], - "e_20b_10p_10topic_10": [ [1310524111432,0],[1310524112433,0],[1310524113433,0],[1310524114433,0],[1310524115433,0],[1310524116434,0],[1310524117434,0],[1310524118434,0],[1310524119434,0],[1310524120434,0],[1310524121435,0],[1310524122435,0],[1310524123435,0],[1310524124435,0],[1310524125436,0] ], - "e_20b_5p_1queue_1": [ [1310524724388,0],[1310524725388,0],[1310524726388,0],[1310524727388,0],[1310524728389,0],[1310524729389,0],[1310524730389,0],[1310524731389,0],[1310524732389,0],[1310524733390,0],[1310524734390,0],[1310524735390,0],[1310524736390,0],[1310524737391,0],[1310524738391,0] ], - "p_20b_10p_1topic_1": [ [1310524919658,16766],[1310524920658,17016],[1310524921658,17174],[1310524922659,17038],[1310524923659,17033],[1310524924659,16996],[1310524925659,17064],[1310524926660,17008],[1310524927660,16764],[1310524928660,17211],[1310524929660,17080],[1310524930660,17182],[1310524931661,16890],[1310524932661,16958],[1310524933661,17046] ], - "e_20b_1a_1queue_5": [ [1310524370230,0],[1310524371230,0],[1310524372230,0],[1310524373234,0],[1310524374234,0],[1310524375234,0],[1310524376234,0],[1310524377235,0],[1310524378235,0],[1310524379235,0],[1310524380235,0],[1310524381236,0],[1310524382236,0],[1310524383236,0],[1310524384236,0] ], - "e_20b_10a_1queue_10": [ [1310524535866,0],[1310524536866,0],[1310524537870,0],[1310524538870,0],[1310524539870,0],[1310524540870,0],[1310524541871,0],[1310524542871,0],[1310524543871,0],[1310524544871,0],[1310524545872,0],[1310524546872,0],[1310524547872,0],[1310524548872,0],[1310524549873,0] ], - "c_20b_5a_5topic_5": [ [1310523726907,26020],[1310523727907,24902],[1310523728907,21905],[1310523729908,22381],[1310523730908,22852],[1310523731908,26503],[1310523732909,24955],[1310523733909,24375],[1310523734909,23436],[1310523735909,24457],[1310523736910,23501],[1310523737910,21607],[1310523738910,25344],[1310523739910,24174],[1310523740910,24767] ], - "c_1k_5p_5topic_5": [ [1310524147468,16597],[1310524148468,16783],[1310524149468,16652],[1310524150468,16708],[1310524151469,16735],[1310524152469,16669],[1310524153469,16778],[1310524154469,16742],[1310524155470,16507],[1310524156470,16779],[1310524157470,16673],[1310524158470,16778],[1310524159471,16745],[1310524160471,16747],[1310524161471,16753] ], - "e_20b_1a_1queue_0": [ [1310525099898,0],[1310525100898,0],[1310525101898,0],[1310525102899,0],[1310525103899,0],[1310525104899,0],[1310525105899,0],[1310525106900,0],[1310525107900,0],[1310525108900,0],[1310525109900,0],[1310525110900,0],[1310525111901,0],[1310525112901,0],[1310525113901,0],[1310525114901,0],[1310525115902,0],[1310525116902,0],[1310525117902,0],[1310525118902,0],[1310525119902,0],[1310525120903,0],[1310525121903,0],[1310525122903,0],[1310525123903,0],[1310525124904,0],[1310525125904,0],[1310525126904,0],[1310525127904,0],[1310525128904,0] ], - "e_256k_10a_10queue_10": [ [1310523684651,0],[1310523685664,0],[1310523686665,0],[1310523687666,0],[1310523688666,0],[1310523689668,0],[1310523690668,0],[1310523691668,0],[1310523692669,0],[1310523693670,0],[1310523694671,0],[1310523695671,0],[1310523696677,0],[1310523697678,0],[1310523698683,0] ], - "c_20b_1p_1topic_5": [ [1310524937676,24075],[1310524938677,24165],[1310524939677,24175],[1310524940677,24163],[1310524941677,24047],[1310524942678,23975],[1310524943678,24105],[1310524944678,24111],[1310524945678,24146],[1310524946678,24178],[1310524947679,24182],[1310524948679,24313],[1310524949679,23815],[1310524950679,24045],[1310524951680,24280] ], - "e_20b_5a_1topic_10": [ [1310524686692,0],[1310524687693,0],[1310524688693,0],[1310524689693,0],[1310524690693,0],[1310524691694,0],[1310524692694,0],[1310524693694,0],[1310524694694,0],[1310524695694,0],[1310524696695,0],[1310524697695,0],[1310524698695,0],[1310524699695,0],[1310524700696,0] ], - "p_20b_10p_1queue_10": [ [1310524880607,14491],[1310524881607,14509],[1310524882607,14510],[1310524883607,14512],[1310524884607,14498],[1310524885608,14538],[1310524886608,14291],[1310524887608,14498],[1310524888608,14608],[1310524889609,13641],[1310524890609,14297],[1310524891609,14649],[1310524892609,14543],[1310524893610,14474],[1310524894610,14412] ], - "e_20b_10p_1topic_1": [ [1310524919658,0],[1310524920658,0],[1310524921658,0],[1310524922659,0],[1310524923659,0],[1310524924659,0],[1310524925659,0],[1310524926660,0],[1310524927660,0],[1310524928660,0],[1310524929660,0],[1310524930660,0],[1310524931661,0],[1310524932661,0],[1310524933661,0] ], - "c_20b_5p_1queue_5": [ [1310524793463,9023],[1310524794464,8994],[1310524795464,9093],[1310524796464,9044],[1310524797464,9019],[1310524798465,9064],[1310524799465,8466],[1310524800465,9111],[1310524801465,9061],[1310524802465,9123],[1310524803466,8590],[1310524804466,8984],[1310524805466,9055],[1310524806466,8481],[1310524807467,9081] ], - "p_20b_10a_1queue_1": [ [1310524312885,86289],[1310524313885,76742],[1310524314886,76768],[1310524315886,69655],[1310524316886,81307],[1310524317886,79478],[1310524318887,79110],[1310524319887,80739],[1310524320887,79947],[1310524321887,72611],[1310524322888,72632],[1310524323888,85430],[1310524324888,57862],[1310524325888,87821],[1310524326889,69324] ], - "c_20b_10a_10topic_10": [ [1310523745223,28204],[1310523746223,24854],[1310523747224,24130],[1310523748224,30362],[1310523749224,21573],[1310523750224,19857],[1310523751224,19056],[1310523752225,18641],[1310523753225,19522],[1310523754225,21725],[1310523755225,31831],[1310523756226,27710],[1310523757226,31664],[1310523758226,26634],[1310523759226,24200] ], - "e_20b_5p_5topic_5": [ [1310524093389,0],[1310524094390,0],[1310524095390,0],[1310524096390,0],[1310524097390,0],[1310524098391,0],[1310524099391,0],[1310524100391,0],[1310524101391,0],[1310524102391,0],[1310524103392,0],[1310524104392,0],[1310524105392,0],[1310524106392,0],[1310524107393,0] ], - "e_20b_5p_1topic_5": [ [1310524955699,0],[1310524956700,0],[1310524957700,0],[1310524958700,0],[1310524959700,0],[1310524960701,0],[1310524961701,0],[1310524962701,0],[1310524963701,0],[1310524964701,0],[1310524965702,0],[1310524966702,0],[1310524967703,0],[1310524968703,0],[1310524969703,0] ], - "e_20b_10p_1queue_10": [ [1310524880607,0],[1310524881607,0],[1310524882607,0],[1310524883607,0],[1310524884607,0],[1310524885608,0],[1310524886608,0],[1310524887608,0],[1310524888608,0],[1310524889609,0],[1310524890609,0],[1310524891609,0],[1310524892609,0],[1310524893610,0],[1310524894610,0] ], - "e_20b_5p_1queue_10": [ [1310524859561,0],[1310524860561,0],[1310524861562,0],[1310524862562,0],[1310524863562,0],[1310524864562,0],[1310524865563,0],[1310524866563,0],[1310524867563,0],[1310524868563,0],[1310524869564,0],[1310524870564,0],[1310524871564,0],[1310524872564,0],[1310524873565,0] ], - "c_20b_10a_1queue_10": [ [1310524535866,38920],[1310524536866,39992],[1310524537870,35928],[1310524538870,37145],[1310524539870,36826],[1310524540870,39824],[1310524541871,39597],[1310524542871,39471],[1310524543871,40226],[1310524544871,39202],[1310524545872,35413],[1310524546872,41381],[1310524547872,38357],[1310524548872,39524],[1310524549873,40919] ], - "c_20b_1a_1queue_10": [ [1310524487549,23650],[1310524488549,23333],[1310524489550,24940],[1310524490550,23610],[1310524491550,23840],[1310524492550,23267],[1310524493551,23420],[1310524494551,22822],[1310524495551,23067],[1310524496551,22998],[1310524497552,23903],[1310524498552,23352],[1310524499552,24140],[1310524500552,24603],[1310524501552,24040] ], - "c_20b_1p_1topic_10": [ [1310524991759,30560],[1310524992759,30573],[1310524993759,30162],[1310524994759,30400],[1310524995760,30285],[1310524996760,30386],[1310524997760,30324],[1310524998760,30315],[1310524999761,30162],[1310525000761,30585],[1310525001761,29642],[1310525002761,30148],[1310525003762,29558],[1310525004762,30039],[1310525005762,29458] ], - "c_20b_10a_1topic_10": [ [1310524705350,43532],[1310524706353,37855],[1310524707353,38413],[1310524708362,42054],[1310524709362,40140],[1310524710362,42616],[1310524711362,37821],[1310524712363,37563],[1310524713363,44121],[1310524714363,39012],[1310524715363,37612],[1310524716364,41718],[1310524717364,35594],[1310524718364,39204],[1310524719364,41089] ], - "c_20b_0_1queue_1": [ [1310525165920,30102],[1310525166920,30614],[1310525167920,31415],[1310525168920,30780],[1310525169921,30760],[1310525170921,29418],[1310525171921,28569],[1310525172921,29862],[1310525173921,28803],[1310525174922,28951],[1310525175922,29728],[1310525176922,30162],[1310525177922,30213],[1310525178923,30088],[1310525179923,29288],[1310525180923,29914],[1310525181923,30380],[1310525182924,29015],[1310525183925,30527],[1310525184925,30511],[1310525185925,29288],[1310525186925,29097],[1310525187926,29675],[1310525188926,28523],[1310525189926,28639],[1310525190926,28629],[1310525191927,29282],[1310525192927,29000],[1310525193927,28906],[1310525194927,30024] ], - "c_256k_10a_10queue_10": [ [1310523684651,683],[1310523685664,732],[1310523686665,626],[1310523687666,655],[1310523688666,627],[1310523689668,631],[1310523690668,662],[1310523691668,693],[1310523692669,666],[1310523693670,633],[1310523694671,732],[1310523695671,707],[1310523696677,715],[1310523697678,689],[1310523698683,708] ], - "c_20b_10p_1topic_10": [ [1310525027830,31768],[1310525028830,31550],[1310525029830,31508],[1310525030830,31482],[1310525031830,31442],[1310525032831,31428],[1310525033831,31700],[1310525034831,31469],[1310525035831,32204],[1310525036832,30869],[1310525037832,31714],[1310525038832,31527],[1310525039832,31473],[1310525040833,31438],[1310525041833,31606] ], - "p_20b_5a_1queue_10": [ [1310524511603,33320],[1310524512604,33909],[1310524513604,40475],[1310524514604,34154],[1310524515604,36006],[1310524516605,35604],[1310524517605,34659],[1310524518605,38938],[1310524519605,37743],[1310524520606,39426],[1310524521606,36863],[1310524522606,37725],[1310524523606,35938],[1310524524606,36143],[1310524525607,35974] ], - "e_1k_5a_5topic_5": [ [1310523781471,0],[1310523782472,0],[1310523783472,0],[1310523784473,0],[1310523785473,0],[1310523786473,0],[1310523787473,0],[1310523788474,0],[1310523789474,0],[1310523790474,0],[1310523791474,0],[1310523792475,0],[1310523793475,0],[1310523794475,0],[1310523795475,0] ], - "p_1k_10p_10topic_10": [ [1310524165501,16678],[1310524166501,16565],[1310524167501,16658],[1310524168501,16536],[1310524169502,16719],[1310524170502,16639],[1310524171502,16573],[1310524172502,16677],[1310524173503,16707],[1310524174503,16564],[1310524175503,16661],[1310524176503,16630],[1310524177504,16660],[1310524178504,16666],[1310524179504,16618] ], - "c_1k_10a_10topic_10": [ [1310523799517,28557],[1310523800518,28532],[1310523801518,29369],[1310523802518,28012],[1310523803518,27539],[1310523804518,27336],[1310523805519,26447],[1310523806522,27039],[1310523807522,27337],[1310523808522,27947],[1310523809523,26148],[1310523810523,26480],[1310523811523,27818],[1310523812523,26537],[1310523813524,25452] ], - "c_20b_1a_1topic_10": [ [1310524668455,36256],[1310524669455,38908],[1310524670455,41410],[1310524671455,37328],[1310524672456,41629],[1310524673456,38288],[1310524674456,37586],[1310524675456,38989],[1310524676457,41063],[1310524677457,39156],[1310524678457,38938],[1310524679457,40285],[1310524680457,39645],[1310524681458,37329],[1310524682458,38252] ], - "e_20b_10p_1queue_5": [ [1310524814488,0],[1310524815488,0],[1310524816488,0],[1310524817489,0],[1310524818489,0],[1310524819489,0],[1310524820489,0],[1310524821490,0],[1310524822490,0],[1310524823490,0],[1310524824490,0],[1310524825491,0],[1310524826491,0],[1310524827491,0],[1310524828491,0] ], - "e_256k_10p_10queue_10": [ [1310524051304,0],[1310524052305,0],[1310524053305,0],[1310524054305,0],[1310524055308,0],[1310524056313,0],[1310524057314,0],[1310524058314,0],[1310524059320,0],[1310524060320,0],[1310524061324,0],[1310524062324,0],[1310524063325,0],[1310524064328,0],[1310524065329,0] ], - "c_1k_5p_5queue_5": [ [1310523964109,9016],[1310523965109,8963],[1310523966110,8996],[1310523967110,8950],[1310523968110,9032],[1310523969110,8957],[1310523970111,9060],[1310523971111,9079],[1310523972111,8983],[1310523973111,9097],[1310523974112,8989],[1310523975112,8986],[1310523976112,9033],[1310523977112,9020],[1310523978113,8975] ], - "e_20b_1p_1queue_5": [ [1310524772437,0],[1310524773438,0],[1310524774438,0],[1310524775438,0],[1310524776438,0],[1310524777438,0],[1310524778439,0],[1310524779439,0],[1310524780439,0],[1310524781439,0],[1310524782440,0],[1310524783440,0],[1310524784440,0],[1310524785440,0],[1310524786440,0] ], - "p_1k_10a_10topic_10": [ [1310523799517,29097],[1310523800518,30078],[1310523801518,28622],[1310523802518,29551],[1310523803518,29421],[1310523804518,26305],[1310523805519,28888],[1310523806522,27166],[1310523807522,29789],[1310523808522,29072],[1310523809523,27087],[1310523810523,27447],[1310523811523,28344],[1310523812523,26794],[1310523813524,27550] ], - "e_256k_1p_1topic_1": [ [1310524183525,0],[1310524184526,0],[1310524185527,0],[1310524186527,0],[1310524187527,0],[1310524188527,0],[1310524189528,0],[1310524190528,0],[1310524191528,0],[1310524192528,0],[1310524193529,0],[1310524194529,0],[1310524195529,0],[1310524196529,0],[1310524197529,0] ], - "c_20b_5a_1topic_5": [ [1310524629666,35132],[1310524630667,34302],[1310524631667,36593],[1310524632667,31955],[1310524633671,35034],[1310524634671,38876],[1310524635671,34104],[1310524636671,36440],[1310524637671,35593],[1310524638672,21715],[1310524639672,31040],[1310524640672,20014],[1310524641672,26394],[1310524642673,29152],[1310524643673,22845] ], - "e_20b_10a_1topic_10": [ [1310524705350,0],[1310524706353,0],[1310524707353,0],[1310524708362,0],[1310524709362,0],[1310524710362,0],[1310524711362,0],[1310524712363,0],[1310524713363,0],[1310524714363,0],[1310524715363,0],[1310524716364,0],[1310524717364,0],[1310524718364,0],[1310524719364,0] ], - "p_256k_1a_1topic_1": [ [1310523817899,501],[1310523818899,506],[1310523819900,506],[1310523820900,502],[1310523821900,503],[1310523822900,501],[1310523823901,500],[1310523824901,516],[1310523825901,510],[1310523826901,507],[1310523827902,513],[1310523828902,501],[1310523829902,492],[1310523830903,499],[1310523831903,511] ], - "c_20b_5a_1queue_10": [ [1310524511603,27722],[1310524512604,29763],[1310524513604,34125],[1310524514604,33823],[1310524515604,37533],[1310524516605,35608],[1310524517605,36847],[1310524518605,38859],[1310524519605,36893],[1310524520606,38253],[1310524521606,32882],[1310524522606,38727],[1310524523606,36954],[1310524524606,30860],[1310524525607,39196] ], - "p_256k_1a_1queue_1": [ [1310523636542,533],[1310523637542,539],[1310523638542,533],[1310523639542,541],[1310523640543,549],[1310523641543,535],[1310523642543,544],[1310523643543,532],[1310523644544,545],[1310523645544,541],[1310523646544,547],[1310523647544,549],[1310523648544,538],[1310523649545,541],[1310523650545,540] ], - "e_1k_1a_1queue_1": [ [1310523558259,0],[1310523559259,0],[1310523560259,0],[1310523561260,0],[1310523562260,0],[1310523563260,0],[1310523564260,0],[1310523565261,0],[1310523566261,0],[1310523567261,0],[1310523568261,0],[1310523569262,0],[1310523570262,0],[1310523571262,0],[1310523572264,0] ], - "e_20b_10a_1topic_5": [ [1310524648269,0],[1310524649269,0],[1310524650269,0],[1310524651270,0],[1310524652270,0],[1310524653270,0],[1310524654270,0],[1310524655271,0],[1310524656271,0],[1310524657271,0],[1310524658271,0],[1310524659271,0],[1310524660272,0],[1310524661272,0],[1310524662272,0] ], - "c_256k_1p_1queue_1": [ [1310524006207,95],[1310524007207,94],[1310524008207,92],[1310524009208,95],[1310524010208,93],[1310524011208,90],[1310524012208,92],[1310524013211,91],[1310524014211,95],[1310524015212,88],[1310524016212,96],[1310524017212,95],[1310524018212,89],[1310524019212,94],[1310524020213,90] ], - "e_20b_1p_1topic_1": [ [1310524075376,0],[1310524076376,0],[1310524077377,0],[1310524078377,0],[1310524079377,0],[1310524080377,0],[1310524081378,0],[1310524082378,0],[1310524083378,0],[1310524084378,0],[1310524085379,0],[1310524086379,0],[1310524087379,0],[1310524088379,0],[1310524089380,0] ], - "p_20b_1a_1topic_0": [ [1310525045860,57895],[1310525046861,59035],[1310525047861,56695],[1310525048861,57877],[1310525049861,61482],[1310525050861,57423],[1310525051862,57101],[1310525052862,57028],[1310525053862,58204],[1310525054862,58774],[1310525055862,59952],[1310525056863,57953],[1310525057863,56892],[1310525058863,56964],[1310525059863,58791] ], - "p_256k_1a_1topic_0": [ [1310525081881,561],[1310525082881,555],[1310525083882,555],[1310525084882,561],[1310525085882,553],[1310525086882,559],[1310525087883,551],[1310525088884,562],[1310525089884,553],[1310525090887,553],[1310525091890,561],[1310525092890,545],[1310525093890,552],[1310525094890,559],[1310525095891,566] ], - "c_20b_1p_1topic_1": [ [1310524075376,7339],[1310524076376,7230],[1310524077377,7236],[1310524078377,7186],[1310524079377,7303],[1310524080377,7119],[1310524081378,7254],[1310524082378,7178],[1310524083378,7219],[1310524084378,7141],[1310524085379,7291],[1310524086379,7371],[1310524087379,7250],[1310524088379,7391],[1310524089380,7364] ], - "p_20b_5p_5queue_5": [ [1310523898010,9367],[1310523899010,9317],[1310523900011,9362],[1310523901011,9365],[1310523902011,9367],[1310523903011,9384],[1310523904012,9339],[1310523905012,9428],[1310523906012,9356],[1310523907012,9402],[1310523908013,9337],[1310523909013,9373],[1310523910013,9394],[1310523911013,9390],[1310523912014,9331] ], - "e_1k_1a_1topic_0": [ [1310525063867,0],[1310525064867,0],[1310525065871,0],[1310525066871,0],[1310525067871,0],[1310525068871,0],[1310525069872,0],[1310525070872,0],[1310525071872,0],[1310525072872,0],[1310525073873,0],[1310525074874,0],[1310525075875,0],[1310525076875,0],[1310525077878,0] ], - "p_20b_5a_1queue_1": [ [1310524237694,97628],[1310524238694,100146],[1310524239694,100701],[1310524240695,101144],[1310524241695,99025],[1310524242695,97461],[1310524243695,105512],[1310524244696,92981],[1310524245696,94003],[1310524246696,98614],[1310524247697,101399],[1310524248697,98536],[1310524249697,104084],[1310524250702,98591],[1310524251702,92155] ], - "p_20b_10a_1queue_5": [ [1310524433386,88197],[1310524434387,90057],[1310524435387,85993],[1310524436387,80194],[1310524437387,84700],[1310524438388,79483],[1310524439388,82153],[1310524440388,86132],[1310524441388,87786],[1310524442389,82401],[1310524443389,79252],[1310524444389,87697],[1310524445389,85925],[1310524446390,85959],[1310524447390,86234] ], - "p_256k_5p_5queue_5": [ [1310524027230,651],[1310524028230,655],[1310524029231,492],[1310524030231,754],[1310524031232,762],[1310524032232,756],[1310524033232,772],[1310524034234,786],[1310524035234,786],[1310524036234,765],[1310524037238,781],[1310524038240,777],[1310524039241,783],[1310524040243,668],[1310524041244,690] ], - "c_20b_5a_1queue_1": [ [1310524237694,24792],[1310524238694,24858],[1310524239694,25059],[1310524240695,24169],[1310524241695,25278],[1310524242695,24329],[1310524243695,24945],[1310524244696,23174],[1310524245696,23264],[1310524246696,24749],[1310524247697,25038],[1310524248697,24859],[1310524249697,25158],[1310524250702,23992],[1310524251702,24004] ], - "e_20b_1a_1topic_5": [ [1310524611459,0],[1310524612459,0],[1310524613459,0],[1310524614459,0],[1310524615460,0],[1310524616460,0],[1310524617460,0],[1310524618460,0],[1310524619461,0],[1310524620461,0],[1310524621461,0],[1310524622464,0],[1310524623465,0],[1310524624465,0],[1310524625465,0] ], - "c_20b_10p_1queue_5": [ [1310524814488,13813],[1310524815488,13880],[1310524816488,12981],[1310524817489,13592],[1310524818489,14030],[1310524819489,13720],[1310524820489,13950],[1310524821490,13857],[1310524822490,14136],[1310524823490,13820],[1310524824490,14002],[1310524825491,13699],[1310524826491,14033],[1310524827491,14122],[1310524828491,10077] ], - "e_1k_1p_1queue_1": [ [1310523943092,0],[1310523944092,0],[1310523945092,0],[1310523946093,0],[1310523947093,0],[1310523948093,0],[1310523949093,0],[1310523950093,0],[1310523951094,0],[1310523952094,0],[1310523953094,0],[1310523954094,0],[1310523955095,0],[1310523956095,0],[1310523957095,0] ], - "e_256k_1a_1topic_0": [ [1310525081881,0],[1310525082881,0],[1310525083882,0],[1310525084882,0],[1310525085882,0],[1310525086882,0],[1310525087883,0],[1310525088884,0],[1310525089884,0],[1310525090887,0],[1310525091890,0],[1310525092890,0],[1310525093890,0],[1310525094890,0],[1310525095891,0] ], - "c_20b_10a_1queue_1": [ [1310524312885,15974],[1310524313885,13855],[1310524314886,18379],[1310524315886,22972],[1310524316886,10255],[1310524317886,17450],[1310524318887,21124],[1310524319887,20367],[1310524320887,14570],[1310524321887,13779],[1310524322888,19381],[1310524323888,13637],[1310524324888,23140],[1310524325888,18318],[1310524326889,16607] ], - "p_20b_10a_1topic_1": [ [1310524593302,45329],[1310524594303,46472],[1310524595303,48650],[1310524596303,45492],[1310524597303,50087],[1310524598304,46640],[1310524599304,44242],[1310524600304,53204],[1310524601304,46062],[1310524602305,45224],[1310524603305,49655],[1310524604305,45778],[1310524605305,52042],[1310524606306,46928],[1310524607306,45205] ], - "p_20b_5a_5topic_5": [ [1310523726907,53627],[1310523727907,52253],[1310523728907,50188],[1310523729908,50421],[1310523730908,49158],[1310523731908,53790],[1310523732909,55850],[1310523733909,53037],[1310523734909,50204],[1310523735909,49967],[1310523736910,51450],[1310523737910,46415],[1310523738910,54140],[1310523739910,51230],[1310523740910,51286] ], - "p_256k_10p_10topic_10": [ [1310524219647,784],[1310524220647,770],[1310524221648,792],[1310524222648,783],[1310524223650,786],[1310524224650,770],[1310524225651,799],[1310524226652,797],[1310524227652,778],[1310524228656,778],[1310524229657,757],[1310524230659,799],[1310524231664,793],[1310524232664,788],[1310524233665,772] ], - "e_20b_5a_5queue_5": [ [1310523506915,0],[1310523507916,0],[1310523508916,0],[1310523509916,0],[1310523510916,0],[1310523511917,0],[1310523512917,0],[1310523513917,0],[1310523514917,0],[1310523515918,0],[1310523516918,0],[1310523517919,0],[1310523518919,0],[1310523519919,0],[1310523520919,0] ], - "c_256k_5a_5topic_5": [ [1310523835922,779],[1310523836925,780],[1310523837927,778],[1310523838927,782],[1310523839932,774],[1310523840933,779],[1310523841934,772],[1310523842934,786],[1310523843938,770],[1310523844939,776],[1310523845939,749],[1310523846940,766],[1310523847941,757],[1310523848941,754],[1310523849941,726] ], - "p_20b_5a_1topic_5": [ [1310524629666,43504],[1310524630667,49432],[1310524631667,49688],[1310524632667,43095],[1310524633671,45520],[1310524634671,56513],[1310524635671,47819],[1310524636671,39656],[1310524637671,48303],[1310524638672,54797],[1310524639672,44807],[1310524640672,55015],[1310524641672,47449],[1310524642673,47302],[1310524643673,56644] ], - "p_256k_5a_5topic_5": [ [1310523835922,779],[1310523836925,780],[1310523837927,779],[1310523838927,780],[1310523839932,777],[1310523840933,778],[1310523841934,770],[1310523842934,787],[1310523843938,772],[1310523844939,774],[1310523845939,750],[1310523846940,765],[1310523847941,757],[1310523848941,756],[1310523849941,725] ], - "e_20b_5a_1queue_5": [ [1310524394281,0],[1310524395282,0],[1310524396282,0],[1310524397282,0],[1310524398282,0],[1310524399283,0],[1310524400283,0],[1310524401287,0],[1310524402287,0],[1310524403288,0],[1310524404288,0],[1310524405288,0],[1310524406288,0],[1310524407289,0],[1310524408289,0] ], - "c_20b_5a_5queue_5": [ [1310523506915,44382],[1310523507916,45720],[1310523508916,46872],[1310523509916,46648],[1310523510916,46418],[1310523511917,47119],[1310523512917,44767],[1310523513917,46280],[1310523514917,44953],[1310523515918,46053],[1310523516918,47163],[1310523517919,44986],[1310523518919,46191],[1310523519919,45709],[1310523520919,43513] ], - "c_20b_1p_1queue_10": [ [1310524838527,2096],[1310524839527,2050],[1310524840527,2084],[1310524841527,2079],[1310524842528,2075],[1310524843528,2068],[1310524844528,2097],[1310524845528,2085],[1310524846528,2094],[1310524847529,2107],[1310524848529,2082],[1310524849529,2046],[1310524850529,2084],[1310524851529,2188],[1310524852530,2087] ], - "e_20b_1p_1queue_1": [ [1310523873994,0],[1310523874994,0],[1310523875995,0],[1310523876995,0],[1310523877995,0],[1310523878995,0],[1310523879996,0],[1310523880996,0],[1310523881996,0],[1310523882996,0],[1310523883997,0],[1310523884997,0],[1310523885997,0],[1310523886997,0],[1310523887997,0] ], - "p_20b_10a_1topic_5": [ [1310524648269,38850],[1310524649269,46494],[1310524650269,45191],[1310524651270,21898],[1310524652270,0],[1310524653270,0],[1310524654270,0],[1310524655271,0],[1310524656271,359],[1310524657271,0],[1310524658271,0],[1310524659271,0],[1310524660272,0],[1310524661272,0],[1310524662272,0] ], - "e_20b_5a_1topic_1": [ [1310524575072,0],[1310524576073,0],[1310524577073,0],[1310524578073,0],[1310524579073,0],[1310524580080,0],[1310524581080,0],[1310524582080,0],[1310524583080,0],[1310524584081,0],[1310524585081,0],[1310524586081,0],[1310524587081,0],[1310524588082,0],[1310524589082,0] ], - "c_20b_1p_1queue_1": [ [1310523873994,1699],[1310523874994,1744],[1310523875995,1684],[1310523876995,1886],[1310523877995,1862],[1310523878995,1922],[1310523879996,1842],[1310523880996,1867],[1310523881996,1963],[1310523882996,1883],[1310523883997,1820],[1310523884997,1868],[1310523885997,1843],[1310523886997,1873],[1310523887997,1956] ], - "p_256k_10p_10queue_10": [ [1310524051304,730],[1310524052305,722],[1310524053305,731],[1310524054305,724],[1310524055308,731],[1310524056313,728],[1310524057314,727],[1310524058314,721],[1310524059320,731],[1310524060320,722],[1310524061324,725],[1310524062324,723],[1310524063325,726],[1310524064328,730],[1310524065329,728] ], - "c_1k_5a_5topic_5": [ [1310523781471,24746],[1310523782472,26384],[1310523783472,26243],[1310523784473,25296],[1310523785473,24688],[1310523786473,25319],[1310523787473,25549],[1310523788474,25487],[1310523789474,24163],[1310523790474,25002],[1310523791474,25495],[1310523792475,24461],[1310523793475,24982],[1310523794475,25969],[1310523795475,24376] ], - "p_1k_5p_5queue_5": [ [1310523964109,9014],[1310523965109,8964],[1310523966110,8996],[1310523967110,8949],[1310523968110,9033],[1310523969110,8959],[1310523970111,9057],[1310523971111,9082],[1310523972111,8981],[1310523973111,9098],[1310523974112,8989],[1310523975112,8986],[1310523976112,9030],[1310523977112,9021],[1310523978113,8977] ], - "p_20b_5a_5queue_5": [ [1310523506915,61368],[1310523507916,61508],[1310523508916,60311],[1310523509916,53806],[1310523510916,61523],[1310523511917,60518],[1310523512917,62995],[1310523513917,62810],[1310523514917,54945],[1310523515918,60092],[1310523516918,67091],[1310523517919,53877],[1310523518919,59150],[1310523519919,62850],[1310523520919,59358] ], - "e_256k_1a_1topic_1": [ [1310523817899,0],[1310523818899,0],[1310523819900,0],[1310523820900,0],[1310523821900,0],[1310523822900,0],[1310523823901,0],[1310523824901,0],[1310523825901,0],[1310523826901,0],[1310523827902,0],[1310523828902,0],[1310523829902,0],[1310523830903,0],[1310523831903,0] ], - "e_256k_5p_5topic_5": [ [1310524201546,0],[1310524202549,0],[1310524203550,0],[1310524204550,0],[1310524205554,0],[1310524206559,0],[1310524207559,0],[1310524208560,0],[1310524209560,0],[1310524210561,0],[1310524211561,0],[1310524212561,0],[1310524213565,0],[1310524214565,0],[1310524215565,0] ], - "p_20b_1p_1topic_5": [ [1310524937676,4815],[1310524938677,4833],[1310524939677,4835],[1310524940677,4833],[1310524941677,4809],[1310524942678,4795],[1310524943678,4821],[1310524944678,4822],[1310524945678,4830],[1310524946678,4835],[1310524947679,4837],[1310524948679,4862],[1310524949679,4763],[1310524950679,4809],[1310524951680,4856] ], - "c_20b_5a_1queue_5": [ [1310524394281,35659],[1310524395282,32901],[1310524396282,31082],[1310524397282,30188],[1310524398282,32089],[1310524399283,33276],[1310524400283,31428],[1310524401287,29510],[1310524402287,29484],[1310524403288,32112],[1310524404288,31605],[1310524405288,29797],[1310524406288,33101],[1310524407289,35946],[1310524408289,30390] ], - "p_20b_10a_10topic_10": [ [1310523745223,60140],[1310523746223,49752],[1310523747224,53978],[1310523748224,61846],[1310523749224,49341],[1310523750224,41961],[1310523751224,44323],[1310523752225,41255],[1310523753225,46152],[1310523754225,53584],[1310523755225,62925],[1310523756226,60971],[1310523757226,58777],[1310523758226,50243],[1310523759226,54310] ], - "e_20b_10a_1topic_1": [ [1310524593302,0],[1310524594303,0],[1310524595303,0],[1310524596303,0],[1310524597303,0],[1310524598304,0],[1310524599304,0],[1310524600304,0],[1310524601304,0],[1310524602305,0],[1310524603305,0],[1310524604305,0],[1310524605305,0],[1310524606306,0],[1310524607306,0] ], - "p_20b_1a_1topic_5": [ [1310524611459,16960],[1310524612459,16650],[1310524613459,14631],[1310524614459,16660],[1310524615460,16640],[1310524616460,14016],[1310524617460,16858],[1310524618460,16959],[1310524619461,13126],[1310524620461,18800],[1310524621461,19318],[1310524622464,18015],[1310524623465,19511],[1310524624465,19395],[1310524625465,19561] ], - "c_256k_5p_5queue_5": [ [1310524027230,650],[1310524028230,655],[1310524029231,494],[1310524030231,753],[1310524031232,761],[1310524032232,758],[1310524033232,771],[1310524034234,786],[1310524035234,786],[1310524036234,765],[1310524037238,781],[1310524038240,777],[1310524039241,783],[1310524040243,667],[1310524041244,691] ], - "e_20b_10a_10topic_10": [ [1310523745223,0],[1310523746223,0],[1310523747224,0],[1310523748224,0],[1310523749224,0],[1310523750224,0],[1310523751224,0],[1310523752225,0],[1310523753225,0],[1310523754225,0],[1310523755225,0],[1310523756226,0],[1310523757226,0],[1310523758226,0],[1310523759226,0] ], - "p_1k_1a_1topic_0": [ [1310525063867,46395],[1310525064867,45076],[1310525065871,45142],[1310525066871,45958],[1310525067871,44580],[1310525068871,48558],[1310525069872,49562],[1310525070872,49230],[1310525071872,47154],[1310525072872,47421],[1310525073873,46767],[1310525074874,48032],[1310525075875,48192],[1310525076875,46272],[1310525077878,49165] ], - "e_256k_1a_1queue_1": [ [1310523636542,0],[1310523637542,0],[1310523638542,0],[1310523639542,0],[1310523640543,0],[1310523641543,0],[1310523642543,0],[1310523643543,0],[1310523644544,0],[1310523645544,0],[1310523646544,0],[1310523647544,0],[1310523648544,0],[1310523649545,0],[1310523650545,0] ], - "c_20b_10a_1queue_5": [ [1310524433386,43472],[1310524434387,41906],[1310524435387,40867],[1310524436387,43018],[1310524437387,38513],[1310524438388,40363],[1310524439388,41456],[1310524440388,39121],[1310524441388,41817],[1310524442389,40863],[1310524443389,41328],[1310524444389,44750],[1310524445389,40659],[1310524446390,36948],[1310524447390,44085] ], - "e_20b_10p_1topic_5": [ [1310524973731,0],[1310524974732,0],[1310524975732,0],[1310524976732,0],[1310524977732,0],[1310524978733,0],[1310524979733,0],[1310524980733,0],[1310524981733,0],[1310524982734,0],[1310524983734,0],[1310524984734,0],[1310524985734,0],[1310524986734,0],[1310524987735,0] ], - "e_20b_5p_1topic_10": [ [1310525009788,0],[1310525010789,0],[1310525011789,0],[1310525012789,0],[1310525013789,0],[1310525014790,0],[1310525015790,0],[1310525016790,0],[1310525017790,0],[1310525018791,0],[1310525019791,0],[1310525020791,0],[1310525021791,0],[1310525022792,0],[1310525023792,0] ], - "p_20b_10p_10queue_10": [ [1310523919047,14155],[1310523920048,14278],[1310523921048,13958],[1310523922048,13668],[1310523923048,13892],[1310523924049,13803],[1310523925049,14060],[1310523926049,13622],[1310523927049,14112],[1310523928050,13446],[1310523929050,13978],[1310523930050,13752],[1310523931050,13753],[1310523932051,13744],[1310523933051,14116] ], - "p_20b_1p_1queue_1": [ [1310523873994,1698],[1310523874994,1745],[1310523875995,1684],[1310523876995,1885],[1310523877995,1863],[1310523878995,1921],[1310523879996,1843],[1310523880996,1866],[1310523881996,1964],[1310523882996,1882],[1310523883997,1820],[1310523884997,1868],[1310523885997,1843],[1310523886997,1873],[1310523887997,1957] ], - "p_20b_10a_1queue_10": [ [1310524535866,64655],[1310524536866,59041],[1310524537870,64254],[1310524538870,61015],[1310524539870,65945],[1310524540870,65715],[1310524541871,61897],[1310524542871,59405],[1310524543871,62834],[1310524544871,55060],[1310524545872,59041],[1310524546872,64995],[1310524547872,64564],[1310524548872,60309],[1310524549873,64597] ], - "p_256k_5a_5queue_5": [ [1310523660567,832],[1310523661567,828],[1310523662567,810],[1310523663568,785],[1310523664568,824],[1310523665571,816],[1310523666572,819],[1310523667572,811],[1310523668574,811],[1310523669574,858],[1310523670579,861],[1310523671582,841],[1310523672583,859],[1310523673583,801],[1310523674584,857] ], - "c_20b_5a_1topic_10": [ [1310524686692,41106],[1310524687693,36148],[1310524688693,35605],[1310524689693,36256],[1310524690693,34711],[1310524691694,36624],[1310524692694,34500],[1310524693694,34527],[1310524694694,30649],[1310524695694,37927],[1310524696695,36358],[1310524697695,37298],[1310524698695,35731],[1310524699695,39459],[1310524700696,34178] ], - "p_20b_1p_1queue_0": [ [1310525132908,1834],[1310525133909,1961],[1310525134909,1909],[1310525135909,1824],[1310525136909,1923],[1310525137909,1984],[1310525138910,1816],[1310525139910,1954],[1310525140910,1926],[1310525141910,1919],[1310525142911,1983],[1310525143911,2050],[1310525144911,1902],[1310525145911,1888],[1310525146911,1835],[1310525147912,1625],[1310525148912,1859],[1310525149912,123],[1310525150912,738],[1310525151913,1840],[1310525152913,1905],[1310525153913,1833],[1310525154913,1787],[1310525155913,1952],[1310525156914,1868],[1310525157914,1896],[1310525158914,1860],[1310525159914,1331],[1310525160915,1821],[1310525161915,1986] ], - "e_1k_1p_1topic_1": [ [1310524129455,0],[1310524130456,0],[1310524131456,0],[1310524132456,0],[1310524133456,0],[1310524134457,0],[1310524135457,0],[1310524136457,0],[1310524137457,0],[1310524138458,0],[1310524139458,0],[1310524140458,0],[1310524141458,0],[1310524142459,0],[1310524143459,0] ], - "c_20b_10p_10queue_10": [ [1310523919047,14156],[1310523920048,14277],[1310523921048,13960],[1310523922048,13667],[1310523923048,13893],[1310523924049,13804],[1310523925049,14057],[1310523926049,13625],[1310523927049,14109],[1310523928050,13444],[1310523929050,13983],[1310523930050,13751],[1310523931050,13753],[1310523932051,13745],[1310523933051,14114] ], - "e_20b_10p_1topic_10": [ [1310525027830,0],[1310525028830,0],[1310525029830,0],[1310525030830,0],[1310525031830,0],[1310525032831,0],[1310525033831,0],[1310525034831,0],[1310525035831,0],[1310525036832,0],[1310525037832,0],[1310525038832,0],[1310525039832,0],[1310525040833,0],[1310525041833,0] ], - "c_1k_1p_1queue_1": [ [1310523943092,1687],[1310523944092,1689],[1310523945092,1524],[1310523946093,1702],[1310523947093,1660],[1310523948093,1649],[1310523949093,1729],[1310523950093,1630],[1310523951094,1686],[1310523952094,1704],[1310523953094,1622],[1310523954094,1719],[1310523955095,1638],[1310523956095,1705],[1310523957095,1713] ], - "p_20b_10p_1queue_1": [ [1310524748414,2913],[1310524749415,2993],[1310524750415,2848],[1310524751415,3100],[1310524752415,3145],[1310524753416,3157],[1310524754416,3177],[1310524755416,3119],[1310524756416,3112],[1310524757417,3146],[1310524758417,3140],[1310524759417,3126],[1310524760417,3156],[1310524761418,3158],[1310524762418,3156] ], - "p_20b_10p_1topic_5": [ [1310524973731,5812],[1310524974732,5833],[1310524975732,5851],[1310524976732,5766],[1310524977732,5855],[1310524978733,5873],[1310524979733,5805],[1310524980733,5843],[1310524981733,5780],[1310524982734,5782],[1310524983734,5846],[1310524984734,5852],[1310524985734,5877],[1310524986734,5821],[1310524987735,5820] ], - "p_20b_5a_1queue_5": [ [1310524394281,60445],[1310524395282,57547],[1310524396282,55769],[1310524397282,56101],[1310524398282,54830],[1310524399283,55283],[1310524400283,57183],[1310524401287,53210],[1310524402287,55134],[1310524403288,53776],[1310524404288,58269],[1310524405288,57356],[1310524406288,55207],[1310524407289,58746],[1310524408289,55153] ], - "e_1k_5p_5queue_5": [ [1310523964109,0],[1310523965109,0],[1310523966110,0],[1310523967110,0],[1310523968110,0],[1310523969110,0],[1310523970111,0],[1310523971111,0],[1310523972111,0],[1310523973111,0],[1310523974112,0],[1310523975112,0],[1310523976112,0],[1310523977112,0],[1310523978113,0] ], - "e_1k_10p_10queue_10": [ [1310523985155,0],[1310523986155,0],[1310523987155,0],[1310523988155,0],[1310523989156,0],[1310523990156,0],[1310523991156,0],[1310523992156,0],[1310523993157,0],[1310523994157,0],[1310523995157,0],[1310523996157,0],[1310523997158,0],[1310523998158,0],[1310523999158,0] ], - "c_20b_1p_1queue_5": [ [1310524772437,2104],[1310524773438,2075],[1310524774438,2095],[1310524775438,2101],[1310524776438,2113],[1310524777438,2094],[1310524778439,2099],[1310524779439,2096],[1310524780439,2084],[1310524781439,2101],[1310524782440,2090],[1310524783440,2117],[1310524784440,2091],[1310524785440,2106],[1310524786440,2134] ], - "e_256k_5a_5topic_5": [ [1310523835922,0],[1310523836925,0],[1310523837927,0],[1310523838927,0],[1310523839932,0],[1310523840933,0],[1310523841934,0],[1310523842934,0],[1310523843938,0],[1310523844939,0],[1310523845939,0],[1310523846940,0],[1310523847941,0],[1310523848941,0],[1310523849941,0] ], - "c_256k_5a_5queue_5": [ [1310523660567,832],[1310523661567,827],[1310523662567,810],[1310523663568,787],[1310523664568,823],[1310523665571,817],[1310523666572,821],[1310523667572,806],[1310523668574,815],[1310523669574,856],[1310523670579,863],[1310523671582,839],[1310523672583,858],[1310523673583,804],[1310523674584,857] ], - "c_20b_1a_1queue_5": [ [1310524370230,20901],[1310524371230,20884],[1310524372230,20745],[1310524373234,20933],[1310524374234,20817],[1310524375234,21018],[1310524376234,20824],[1310524377235,20803],[1310524378235,20992],[1310524379235,20865],[1310524380235,20799],[1310524381236,20826],[1310524382236,21094],[1310524383236,20853],[1310524384236,21379] ], - "p_20b_1p_1queue_5": [ [1310524772437,2104],[1310524773438,2075],[1310524774438,2096],[1310524775438,2100],[1310524776438,2114],[1310524777438,2094],[1310524778439,2099],[1310524779439,2095],[1310524780439,2084],[1310524781439,2102],[1310524782440,2090],[1310524783440,2116],[1310524784440,2092],[1310524785440,2106],[1310524786440,2133] ], - "c_20b_5a_1topic_1": [ [1310524575072,40271],[1310524576073,40472],[1310524577073,42328],[1310524578073,40078],[1310524579073,39494],[1310524580080,40656],[1310524581080,23168],[1310524582080,20098],[1310524583080,26834],[1310524584081,22983],[1310524585081,22597],[1310524586081,21376],[1310524587081,26526],[1310524588082,27960],[1310524589082,25516] ], - "c_1k_10p_10queue_10": [ [1310523985155,13647],[1310523986155,13214],[1310523987155,13577],[1310523988155,13316],[1310523989156,13584],[1310523990156,12894],[1310523991156,13314],[1310523992156,13400],[1310523993157,13451],[1310523994157,13139],[1310523995157,13696],[1310523996157,13324],[1310523997158,13100],[1310523998158,13271],[1310523999158,13099] ], - "e_20b_1p_1queue_0": [ [1310525132908,0],[1310525133909,0],[1310525134909,0],[1310525135909,0],[1310525136909,0],[1310525137909,0],[1310525138910,0],[1310525139910,0],[1310525140910,0],[1310525141910,0],[1310525142911,0],[1310525143911,0],[1310525144911,0],[1310525145911,0],[1310525146911,0],[1310525147912,0],[1310525148912,0],[1310525149912,0],[1310525150912,0],[1310525151913,0],[1310525152913,0],[1310525153913,0],[1310525154913,0],[1310525155913,0],[1310525156914,0],[1310525157914,0],[1310525158914,0],[1310525159914,0],[1310525160915,0],[1310525161915,0] ], - "p_20b_10a_1topic_10": [ [1310524705350,32538],[1310524706353,29654],[1310524707353,37885],[1310524708362,31559],[1310524709362,30686],[1310524710362,35296],[1310524711362,33046],[1310524712363,29219],[1310524713363,40497],[1310524714363,27508],[1310524715363,33778],[1310524716364,31658],[1310524717364,29754],[1310524718364,30858],[1310524719364,41888] ], - "e_20b_5p_1queue_5": [ [1310524793463,0],[1310524794464,0],[1310524795464,0],[1310524796464,0],[1310524797464,0],[1310524798465,0],[1310524799465,0],[1310524800465,0],[1310524801465,0],[1310524802465,0],[1310524803466,0],[1310524804466,0],[1310524805466,0],[1310524806466,0],[1310524807467,0] ], - "c_256k_1p_1topic_1": [ [1310524183525,489],[1310524184526,501],[1310524185527,476],[1310524186527,483],[1310524187527,499],[1310524188527,484],[1310524189528,488],[1310524190528,482],[1310524191528,488],[1310524192528,474],[1310524193529,486],[1310524194529,490],[1310524195529,501],[1310524196529,486],[1310524197529,491] ], - "c_20b_5p_5topic_5": [ [1310524093389,17476],[1310524094390,17263],[1310524095390,17270],[1310524096390,17415],[1310524097390,17395],[1310524098391,17256],[1310524099391,17425],[1310524100391,17355],[1310524101391,17317],[1310524102391,17267],[1310524103392,17294],[1310524104392,17169],[1310524105392,17446],[1310524106392,17174],[1310524107393,17321] ], - "e_256k_5a_5queue_5": [ [1310523660567,0],[1310523661567,0],[1310523662567,0],[1310523663568,0],[1310523664568,0],[1310523665571,0],[1310523666572,0],[1310523667572,0],[1310523668574,0],[1310523669574,0],[1310523670579,0],[1310523671582,0],[1310523672583,0],[1310523673583,0],[1310523674584,0] ] -} diff --git a/reports/osx-8-core/apollo-1.0-SNAPSHOT.json b/reports/osx-8-core/apollo-1.0-SNAPSHOT.json deleted file mode 100644 index 2a19a7a..0000000 --- a/reports/osx-8-core/apollo-1.0-SNAPSHOT.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "benchmark_settings": { - "broker_name": "apollo-1.0-SNAPSHOT", - "url": "tcp://localhost:61613", - "sample_count": 15, - "sample_interval": 1000, - "warm_up_count": 3, - "scenario_connection_scale_rate": 50 - }, - "p_20b_5p_1queue_1": [ [1310959097054,8102],[1310959098054,8216],[1310959099054,8294],[1310959100054,8195],[1310959101055,8258],[1310959102055,8191],[1310959103055,8218],[1310959104055,8189],[1310959105056,8177],[1310959106056,8291],[1310959107056,8201],[1310959108056,8213],[1310959109056,8200],[1310959110057,8249],[1310959111057,8210] ], - "p_20b_10a_10queue_10": [ [1310958033892,84303],[1310958034896,120057],[1310958035897,97553],[1310958036906,94588],[1310958037906,125877],[1310958038907,80074],[1310958039916,116283],[1310958040916,121313],[1310958041935,87375],[1310958042935,129026],[1310958043936,102163],[1310958044945,98522],[1310958045973,128736],[1310958046973,94955],[1310958047981,110979] ], - "e_256k_1p_1queue_1": [ [1310958512754,0],[1310958513755,0],[1310958514755,0],[1310958515755,0],[1310958516755,0],[1310958517756,0],[1310958518756,0],[1310958519759,0],[1310958520759,0],[1310958521759,0],[1310958522760,0],[1310958523760,0],[1310958524760,0],[1310958525760,0],[1310958526761,0] ], - "p_20b_1a_1queue_0": [ [1310959485755,34666],[1310959486755,29463],[1310959487755,35175],[1310959488756,34714],[1310959489756,34713],[1310959490756,35026],[1310959491756,30322],[1310959492756,34641],[1310959493757,34080],[1310959494757,35090],[1310959495757,34821],[1310959496757,34656],[1310959497758,34264],[1310959498758,30448],[1310959499758,34470],[1310959500758,34421],[1310959501759,34834],[1310959502759,29919],[1310959503759,34592],[1310959504759,35091],[1310959505760,34141],[1310959506760,30813],[1310959507760,34375],[1310959508760,35064],[1310959509760,29817],[1310959510761,13240],[1310959511761,8471],[1310959512761,22277],[1310959513761,25197],[1310959514762,30788] ], - "p_20b_1a_1queue_5": [ [1310958802073,152717],[1310958803073,151400],[1310958804073,148435],[1310958805074,153551],[1310958806074,150762],[1310958807074,155702],[1310958808074,151646],[1310958809074,154757],[1310958810075,151272],[1310958811075,154738],[1310958812075,151080],[1310958813075,150516],[1310958814076,146423],[1310958815076,144450],[1310958816076,150115] ], - "p_256k_1p_1queue_1": [ [1310958512754,217],[1310958513755,226],[1310958514755,224],[1310958515755,226],[1310958516755,223],[1310958517756,224],[1310958518756,229],[1310958519759,233],[1310958520759,226],[1310958521759,229],[1310958522760,229],[1310958523760,234],[1310958524760,229],[1310958525760,229],[1310958526761,231] ], - "e_20b_10p_10queue_10": [ [1310958418176,0],[1310958419176,0],[1310958420177,0],[1310958421177,0],[1310958422177,0],[1310958423177,0],[1310958424178,0],[1310958425178,0],[1310958426178,0],[1310958427178,0],[1310958428179,0],[1310958429179,0],[1310958430179,0],[1310958431179,0],[1310958432180,0] ], - "p_20b_5p_5topic_5": [ [1310958604886,13502],[1310958605887,13434],[1310958606887,13490],[1310958607887,13505],[1310958608887,13354],[1310958609888,13482],[1310958610888,13552],[1310958611888,13214],[1310958612888,13676],[1310958613888,13326],[1310958614889,13600],[1310958615889,13550],[1310958616889,13433],[1310958617889,13350],[1310958618890,13316] ], - "e_20b_1a_1topic_10": [ [1310959041495,0],[1310959042495,0],[1310959043496,0],[1310959044496,0],[1310959045497,0],[1310959046501,0],[1310959047501,0],[1310959048501,0],[1310959049504,0],[1310959050508,0],[1310959051508,0],[1310959052509,0],[1310959053509,0],[1310959054509,0],[1310959055510,0] ], - "e_20b_1p_1queue_10": [ [1310959216616,0],[1310959217616,0],[1310959218616,0],[1310959219616,0],[1310959220616,0],[1310959221617,0],[1310959222617,0],[1310959223617,0],[1310959224617,0],[1310959225617,0],[1310959226618,0],[1310959227618,0],[1310959228618,0],[1310959229618,0],[1310959230619,0] ], - "c_20b_10p_1topic_1": [ [1310959302163,23581],[1310959303163,23568],[1310959304163,23491],[1310959305164,23338],[1310959306164,23440],[1310959307164,23692],[1310959308165,23788],[1310959309165,23832],[1310959310165,23583],[1310959311165,23534],[1310959312166,23223],[1310959313166,23662],[1310959314166,23553],[1310959315166,23574],[1310959316166,23640] ], - "e_20b_1a_1queue_10": [ [1310958875942,0],[1310958876942,0],[1310958877942,0],[1310958878943,0],[1310958879943,0],[1310958880943,0],[1310958881943,0],[1310958882944,0],[1310958883944,0],[1310958884944,0],[1310958885945,0],[1310958886945,0],[1310958887945,0],[1310958888945,0],[1310958889946,0] ], - "c_1k_1a_1topic_1": [ [1310958260955,66928],[1310958261955,66903],[1310958262956,67233],[1310958263956,66375],[1310958264956,65932],[1310958265956,67109],[1310958266957,67469],[1310958267957,67850],[1310958268957,67555],[1310958269957,67226],[1310958270958,67731],[1310958271958,68735],[1310958272958,67805],[1310958273958,66712],[1310958274959,68410] ], - "p_20b_1a_1topic_10": [ [1310959041495,53933],[1310959042495,59817],[1310959043496,52888],[1310959044496,57921],[1310959045497,57554],[1310959046501,55452],[1310959047501,60782],[1310959048501,57738],[1310959049504,50310],[1310959050508,57398],[1310959051508,58170],[1310959052509,52973],[1310959053509,59545],[1310959054509,57003],[1310959055510,52599] ], - "p_256k_5p_5topic_5": [ [1310958715957,375],[1310958716960,381],[1310958717964,381],[1310958718965,392],[1310958719966,386],[1310958720966,386],[1310958721973,325],[1310958722973,315],[1310958723974,363],[1310958724980,366],[1310958725981,366],[1310958726981,278],[1310958727982,308],[1310958728993,201],[1310958729994,310] ], - "e_256k_10p_10topic_10": [ [1310958734517,0],[1310958735522,0],[1310958736528,0],[1310958737529,0],[1310958738537,0],[1310958739543,0],[1310958740544,0],[1310958741546,0],[1310958742571,0],[1310958743572,0],[1310958744572,0],[1310958745573,0],[1310958746573,0],[1310958747574,0],[1310958748575,0] ], - "c_1k_1p_1topic_1": [ [1310958641907,4611],[1310958642907,4468],[1310958643907,3225],[1310958644908,2717],[1310958645908,3651],[1310958646908,4336],[1310958647908,4542],[1310958648909,4655],[1310958649909,4768],[1310958650909,3125],[1310958651909,3777],[1310958652909,4262],[1310958653910,3590],[1310958654910,3443],[1310958655910,4257] ], - "c_20b_1a_1topic_1": [ [1310958205802,124389],[1310958206802,126557],[1310958207802,120324],[1310958208802,119240],[1310958209803,124334],[1310958210803,126031],[1310958211803,128355],[1310958212803,123389],[1310958213803,124794],[1310958214804,125470],[1310958215804,125559],[1310958216804,123254],[1310958217804,125334],[1310958218809,121704],[1310958219811,126985] ], - "c_20b_5p_1topic_5": [ [1310959339176,52825],[1310959340176,51534],[1310959341177,52975],[1310959342177,51129],[1310959343177,52052],[1310959344177,51544],[1310959345177,52620],[1310959346178,51277],[1310959347178,52284],[1310959348178,51951],[1310959349178,51574],[1310959350179,52259],[1310959351179,51736],[1310959352179,52510],[1310959353179,52679] ], - "p_1k_1p_1queue_1": [ [1310958442692,1795],[1310958443692,1807],[1310958444692,1802],[1310958445692,1800],[1310958446693,1755],[1310958447693,1806],[1310958448693,1837],[1310958449693,1851],[1310958450693,1764],[1310958451694,1781],[1310958452694,1804],[1310958453694,1794],[1310958454694,1800],[1310958455695,1813],[1310958456695,1781] ], - "e_1k_10a_10queue_10": [ [1310958107605,0],[1310958108605,0],[1310958109605,0],[1310958110606,0],[1310958111608,0],[1310958112608,0],[1310958113609,0],[1310958114610,0],[1310958115612,0],[1310958116618,0],[1310958117621,0],[1310958118622,0],[1310958119627,0],[1310958120630,0],[1310958121630,0] ], - "c_256k_5p_5topic_5": [ [1310958715957,374],[1310958716960,381],[1310958717964,381],[1310958718965,392],[1310958719966,385],[1310958720966,386],[1310958721973,327],[1310958722973,312],[1310958723974,364],[1310958724980,365],[1310958725981,368],[1310958726981,279],[1310958727982,308],[1310958728993,199],[1310958729994,311] ], - "p_20b_1p_1queue_10": [ [1310959216616,1899],[1310959217616,1885],[1310959218616,1881],[1310959219616,1864],[1310959220616,1884],[1310959221617,1867],[1310959222617,1875],[1310959223617,1859],[1310959224617,1898],[1310959225617,1893],[1310959226618,1879],[1310959227618,1885],[1310959228618,1860],[1310959229618,1880],[1310959230619,1894] ], - "p_20b_10p_1topic_10": [ [1310959413212,9682],[1310959414212,9797],[1310959415212,9687],[1310959416212,9718],[1310959417213,9778],[1310959418213,9564],[1310959419213,9674],[1310959420213,9882],[1310959421214,9867],[1310959422214,9586],[1310959423214,9620],[1310959424214,9712],[1310959425215,9757],[1310959426215,9425],[1310959427215,9638] ], - "p_1k_1p_1topic_1": [ [1310958641907,4610],[1310958642907,4468],[1310958643907,3225],[1310958644908,2717],[1310958645908,3651],[1310958646908,4336],[1310958647908,4542],[1310958648909,4655],[1310958649909,4768],[1310958650909,3125],[1310958651909,3777],[1310958652909,4262],[1310958653910,3590],[1310958654910,3443],[1310958655910,4257] ], - "e_20b_10a_10queue_10": [ [1310958033892,0],[1310958034896,0],[1310958035897,0],[1310958036906,0],[1310958037906,0],[1310958038907,0],[1310958039916,0],[1310958040916,0],[1310958041935,0],[1310958042935,0],[1310958043936,0],[1310958044945,0],[1310958045973,0],[1310958046973,0],[1310958047981,0] ], - "p_256k_10a_10topic_10": [ [1310958353597,363],[1310958354599,346],[1310958355600,367],[1310958356601,335],[1310958357613,342],[1310958358613,329],[1310958359614,357],[1310958360614,367],[1310958361615,367],[1310958362615,370],[1310958363623,377],[1310958364630,365],[1310958365631,374],[1310958366633,366],[1310958367633,355] ], - "p_256k_1p_1topic_1": [ [1310958697446,294],[1310958698446,295],[1310958699449,289],[1310958700449,291],[1310958701449,233],[1310958702450,309],[1310958703451,289],[1310958704452,213],[1310958705452,234],[1310958706452,300],[1310958707452,246],[1310958708453,306],[1310958709453,299],[1310958710453,307],[1310958711453,309] ], - "e_256k_10a_10topic_10": [ [1310958353597,0],[1310958354599,0],[1310958355600,0],[1310958356601,0],[1310958357613,0],[1310958358613,0],[1310958359614,0],[1310958360614,0],[1310958361615,0],[1310958362615,0],[1310958363623,0],[1310958364630,0],[1310958365631,0],[1310958366633,0],[1310958367633,0] ], - "e_20b_10a_1queue_5": [ [1310958851208,0],[1310958852209,0],[1310958853209,0],[1310958854209,0],[1310958855209,0],[1310958856210,0],[1310958857210,0],[1310958858210,0],[1310958859211,0],[1310958860211,0],[1310958861211,0],[1310958862212,0],[1310958863212,0],[1310958864212,0],[1310958865213,0] ], - "p_1k_10p_10queue_10": [ [1310958488236,8666],[1310958489236,8039],[1310958490236,7902],[1310958491237,6118],[1310958492237,5340],[1310958493237,6455],[1310958494238,6947],[1310958495238,7745],[1310958496238,9312],[1310958497238,9084],[1310958498239,8696],[1310958499239,7933],[1310958500241,8021],[1310958501241,7431],[1310958502241,5439] ], - "e_20b_5a_1queue_1": [ [1310958753046,0],[1310958754046,0],[1310958755046,0],[1310958756046,0],[1310958757047,0],[1310958758047,0],[1310958759047,0],[1310958760047,0],[1310958761048,0],[1310958762061,0],[1310958763061,0],[1310958764061,0],[1310958765067,0],[1310958766068,0],[1310958767068,0] ], - "c_1k_5a_5queue_5": [ [1310958083018,64174],[1310958084018,66629],[1310958085018,71311],[1310958086019,63904],[1310958087019,72764],[1310958088019,76116],[1310958089020,68375],[1310958090020,74888],[1310958091024,73501],[1310958092025,77073],[1310958093028,55197],[1310958094029,74323],[1310958095030,76231],[1310958096034,64885],[1310958097034,77368] ], - "c_20b_1a_1queue_1": [ [1310957985532,117487],[1310957986540,114405],[1310957987540,117135],[1310957988541,118291],[1310957989541,117279],[1310957990541,118103],[1310957991541,116261],[1310957992542,119650],[1310957993542,118432],[1310957994542,123622],[1310957995542,120055],[1310957996543,120418],[1310957997543,119621],[1310957998543,118639],[1310957999543,122606] ], - "p_20b_1a_1queue_1": [ [1310957985532,118364],[1310957986540,114417],[1310957987540,115727],[1310957988541,119053],[1310957989541,118656],[1310957990541,115729],[1310957991541,118701],[1310957992542,118191],[1310957993542,117367],[1310957994542,126930],[1310957995542,118191],[1310957996543,122059],[1310957997543,118359],[1310957998543,117105],[1310957999543,122626] ], - "c_20b_5p_1topic_1": [ [1310959284155,18162],[1310959285155,18419],[1310959286155,18315],[1310959287155,18297],[1310959288156,18220],[1310959289156,18392],[1310959290156,18186],[1310959291156,18488],[1310959292157,18272],[1310959293157,18322],[1310959294157,18331],[1310959295157,18364],[1310959296158,18325],[1310959297158,18360],[1310959298158,18306] ], - "e_20b_0_1queue_1": [ [1310959551773,0],[1310959552773,0],[1310959553780,0],[1310959554780,0],[1310959555780,0],[1310959556780,0],[1310959557781,0],[1310959558781,0],[1310959559781,0],[1310959560781,0],[1310959561782,0],[1310959562782,0],[1310959563782,0],[1310959564782,0],[1310959565783,0],[1310959566783,0],[1310959567783,0],[1310959568783,0],[1310959569784,0],[1310959570784,0],[1310959571784,0],[1310959572784,0],[1310959573784,0],[1310959574785,0],[1310959575785,0],[1310959576785,0],[1310959577785,0],[1310959578786,0],[1310959579786,0],[1310959580786,0] ], - "e_20b_10a_1queue_1": [ [1310958777786,0],[1310958778787,0],[1310958779787,0],[1310958780787,0],[1310958781787,0],[1310958782788,0],[1310958783788,0],[1310958784788,0],[1310958785788,0],[1310958786789,0],[1310958787789,0],[1310958788789,0],[1310958789789,0],[1310958790793,0],[1310958791794,0] ], - "e_1k_5p_5topic_5": [ [1310958660414,0],[1310958661414,0],[1310958662415,0],[1310958663417,0],[1310958664417,0],[1310958665418,0],[1310958666418,0],[1310958667419,0],[1310958668419,0],[1310958669419,0],[1310958670419,0],[1310958671420,0],[1310958672420,0],[1310958673420,0],[1310958674421,0] ], - "c_20b_5p_1topic_10": [ [1310959394700,70330],[1310959395700,71413],[1310959396701,68849],[1310959397701,70646],[1310959398701,69561],[1310959399701,70886],[1310959400702,71505],[1310959401702,70462],[1310959402703,69578],[1310959403703,70106],[1310959404703,70332],[1310959405703,70285],[1310959406704,66273],[1310959407704,65950],[1310959408705,65394] ], - "p_20b_5p_1queue_10": [ [1310959238129,7898],[1310959239129,7975],[1310959240130,7872],[1310959241130,7941],[1310959242130,7903],[1310959243130,7941],[1310959244130,7854],[1310959245131,7871],[1310959246131,7888],[1310959247131,7988],[1310959248131,7862],[1310959249132,7933],[1310959250132,7870],[1310959251132,7940],[1310959252132,7885] ], - "p_256k_10a_10queue_10": [ [1310958181231,372],[1310958182237,368],[1310958183238,382],[1310958184239,373],[1310958185242,373],[1310958186242,374],[1310958187243,381],[1310958188243,356],[1310958189243,372],[1310958190244,369],[1310958191247,371],[1310958192248,374],[1310958193248,382],[1310958194249,375],[1310958195250,360] ], - "p_1k_5p_5topic_5": [ [1310958660414,12731],[1310958661414,12766],[1310958662415,10942],[1310958663417,12454],[1310958664417,12857],[1310958665418,12668],[1310958666418,10572],[1310958667419,12469],[1310958668419,10769],[1310958669419,12408],[1310958670419,13119],[1310958671420,11556],[1310958672420,10262],[1310958673420,11206],[1310958674421,10369] ], - "p_20b_10p_1queue_5": [ [1310959192103,10994],[1310959193103,11096],[1310959194104,10915],[1310959195104,11002],[1310959196104,10894],[1310959197104,10993],[1310959198105,10846],[1310959199105,11001],[1310959200105,10939],[1310959201105,11004],[1310959202106,10917],[1310959203106,10898],[1310959204106,10917],[1310959205106,11094],[1310959206106,10901] ], - "c_20b_10p_10topic_10": [ [1310958623396,16297],[1310958624397,13377],[1310958625397,12444],[1310958626398,11673],[1310958627398,11349],[1310958628398,12223],[1310958629398,14993],[1310958630399,11507],[1310958631399,12569],[1310958632399,12021],[1310958633400,12773],[1310958634400,12999],[1310958635403,13231],[1310958636403,12827],[1310958637404,13163] ], - "p_20b_5p_1topic_10": [ [1310959394700,7032],[1310959395700,7140],[1310959396701,6889],[1310959397701,7061],[1310959398701,6957],[1310959399701,7088],[1310959400702,7151],[1310959401702,7047],[1310959402703,6957],[1310959403703,7013],[1310959404703,7031],[1310959405703,7029],[1310959406704,6625],[1310959407704,6597],[1310959408705,6537] ], - "p_20b_5p_1topic_5": [ [1310959339176,10563],[1310959340176,10309],[1310959341177,10594],[1310959342177,10224],[1310959343177,10411],[1310959344177,10308],[1310959345177,10528],[1310959346178,10254],[1310959347178,10453],[1310959348178,10391],[1310959349178,10315],[1310959350179,10453],[1310959351179,10345],[1310959352179,10504],[1310959353179,10535] ], - "c_20b_10p_1topic_5": [ [1310959357685,72477],[1310959358685,71436],[1310959359685,71734],[1310959360685,67275],[1310959361686,72184],[1310959362686,71561],[1310959363686,68780],[1310959364687,71234],[1310959365687,72544],[1310959366687,72377],[1310959367687,72234],[1310959368687,70773],[1310959369688,71032],[1310959370688,71937],[1310959371688,73121] ], - "c_256k_10a_10topic_10": [ [1310958353597,370],[1310958354599,348],[1310958355600,359],[1310958356601,340],[1310958357613,348],[1310958358613,318],[1310958359614,369],[1310958360614,358],[1310958361615,368],[1310958362615,367],[1310958363623,379],[1310958364630,370],[1310958365631,371],[1310958366633,368],[1310958367633,356] ], - "e_1k_1a_1topic_1": [ [1310958260955,0],[1310958261955,0],[1310958262956,0],[1310958263956,0],[1310958264956,0],[1310958265956,0],[1310958266957,0],[1310958267957,0],[1310958268957,0],[1310958269957,0],[1310958270958,0],[1310958271958,0],[1310958272958,0],[1310958273958,0],[1310958274959,0] ], - "c_256k_10p_10topic_10": [ [1310958734517,342],[1310958735522,344],[1310958736528,332],[1310958737529,290],[1310958738537,289],[1310958739543,254],[1310958740544,270],[1310958741546,311],[1310958742571,231],[1310958743572,434],[1310958744572,456],[1310958745573,498],[1310958746573,511],[1310958747574,511],[1310958748575,513] ], - "c_20b_10a_1topic_5": [ [1310959022987,437034],[1310959023988,439330],[1310959024988,462036],[1310959025988,474438],[1310959026989,421732],[1310959027989,454432],[1310959028989,456850],[1310959029990,452456],[1310959030990,453865],[1310959031990,449856],[1310959032990,445902],[1310959033991,448516],[1310959034991,456865],[1310959036001,459111],[1310959037004,459293] ], - "c_1k_10a_10queue_10": [ [1310958107605,72903],[1310958108605,74293],[1310958109605,66074],[1310958110606,72228],[1310958111608,78078],[1310958112608,75707],[1310958113609,59896],[1310958114610,73094],[1310958115612,75350],[1310958116618,76259],[1310958117621,65702],[1310958118622,75446],[1310958119627,77288],[1310958120630,71379],[1310958121630,72874] ], - "p_20b_1a_1topic_1": [ [1310958205802,123369],[1310958206802,127238],[1310958207802,121378],[1310958208802,118408],[1310958209803,124958],[1310958210803,124889],[1310958211803,128574],[1310958212803,125400],[1310958213803,125019],[1310958214804,124130],[1310958215804,125491],[1310958216804,123567],[1310958217804,125668],[1310958218809,119815],[1310958219811,128427] ], - "e_1k_10p_10topic_10": [ [1310958678940,0],[1310958679940,0],[1310958680940,0],[1310958681941,0],[1310958682941,0],[1310958683941,0],[1310958684941,0],[1310958685942,0],[1310958686942,0],[1310958687942,0],[1310958688942,0],[1310958689943,0],[1310958690943,0],[1310958691943,0],[1310958692944,0] ], - "c_20b_10p_1queue_10": [ [1310959259644,10624],[1310959260644,10383],[1310959261644,10709],[1310959262645,10511],[1310959263645,10770],[1310959264645,10646],[1310959265645,10673],[1310959266645,10577],[1310959267646,10684],[1310959268646,10628],[1310959269646,10666],[1310959270646,10662],[1310959271647,10587],[1310959272647,10542],[1310959273647,10702] ], - "e_20b_1a_1topic_0": [ [1310959431718,0],[1310959432718,0],[1310959433719,0],[1310959434719,0],[1310959435719,0],[1310959436719,0],[1310959437720,0],[1310959438720,0],[1310959439720,0],[1310959440720,0],[1310959441727,0],[1310959442727,0],[1310959443727,0],[1310959444728,0],[1310959445728,0] ], - "p_1k_5a_5topic_5": [ [1310958279463,100575],[1310958280463,101815],[1310958281464,100526],[1310958282465,99885],[1310958283465,101186],[1310958284469,98802],[1310958285470,96479],[1310958286470,97833],[1310958287470,100616],[1310958288473,103044],[1310958289475,105149],[1310958290476,98118],[1310958291479,99771],[1310958292479,99487],[1310958293480,99970] ], - "p_20b_1p_1topic_10": [ [1310959376192,2608],[1310959377192,2630],[1310959378192,2645],[1310959379193,2615],[1310959380193,2636],[1310959381193,2614],[1310959382193,2603],[1310959383193,2624],[1310959384194,2594],[1310959385194,2604],[1310959386194,2649],[1310959387194,2612],[1310959388195,2610],[1310959389195,2623],[1310959390195,2620] ], - "p_20b_1a_1queue_10": [ [1310958875942,129659],[1310958876942,134527],[1310958877942,134026],[1310958878943,136490],[1310958879943,133711],[1310958880943,134360],[1310958881943,135767],[1310958882944,135346],[1310958883944,132047],[1310958884944,132493],[1310958885945,133392],[1310958886945,129918],[1310958887945,133869],[1310958888945,130609],[1310958889946,133224] ], - "e_20b_5a_1queue_10": [ [1310958900491,0],[1310958901491,0],[1310958902491,0],[1310958903492,0],[1310958904492,0],[1310958905493,0],[1310958906493,0],[1310958907499,0],[1310958908499,0],[1310958909499,0],[1310958910500,0],[1310958911500,0],[1310958912500,0],[1310958913501,0],[1310958914501,0] ], - "c_256k_10p_10queue_10": [ [1310958561831,353],[1310958562836,365],[1310958563836,353],[1310958564837,357],[1310958565838,348],[1310958566839,350],[1310958567839,328],[1310958568844,315],[1310958569844,309],[1310958570845,310],[1310958571846,284],[1310958572865,298],[1310958573865,301],[1310958574866,311],[1310958575868,304] ], - "p_1k_1a_1queue_1": [ [1310958058482,43142],[1310958059483,37741],[1310958060483,46472],[1310958061483,41968],[1310958062483,39745],[1310958063484,49180],[1310958064484,41469],[1310958065484,47147],[1310958066484,41210],[1310958067485,47951],[1310958068485,38566],[1310958069485,45565],[1310958070485,43577],[1310958071486,42549],[1310958072488,45242] ], - "e_20b_1a_1topic_1": [ [1310958205802,0],[1310958206802,0],[1310958207802,0],[1310958208802,0],[1310958209803,0],[1310958210803,0],[1310958211803,0],[1310958212803,0],[1310958213803,0],[1310958214804,0],[1310958215804,0],[1310958216804,0],[1310958217804,0],[1310958218809,0],[1310958219811,0] ], - "p_1k_5a_5queue_5": [ [1310958083018,64094],[1310958084018,66423],[1310958085018,71305],[1310958086019,64171],[1310958087019,72722],[1310958088019,76107],[1310958089020,68313],[1310958090020,74743],[1310958091024,73454],[1310958092025,77188],[1310958093028,55000],[1310958094029,74532],[1310958095030,76223],[1310958096034,65001],[1310958097034,77233] ], - "c_20b_5p_1queue_1": [ [1310959097054,8101],[1310959098054,8218],[1310959099054,8289],[1310959100054,8200],[1310959101055,8254],[1310959102055,8194],[1310959103055,8219],[1310959104055,8189],[1310959105056,8173],[1310959106056,8294],[1310959107056,8202],[1310959108056,8208],[1310959109056,8205],[1310959110057,8249],[1310959111057,8209] ], - "c_20b_10p_1queue_1": [ [1310959121566,12631],[1310959122566,12591],[1310959123567,12714],[1310959124567,12506],[1310959125567,12729],[1310959126567,12637],[1310959127568,12728],[1310959128568,12643],[1310959129568,12691],[1310959130568,12556],[1310959131569,12687],[1310959132569,12645],[1310959133569,12637],[1310959134569,12649],[1310959135570,12764] ], - "c_256k_1a_1queue_1": [ [1310958132121,382],[1310958133121,366],[1310958134124,364],[1310958135124,366],[1310958136124,355],[1310958137125,379],[1310958138128,375],[1310958139128,378],[1310958140129,371],[1310958141129,378],[1310958142129,375],[1310958143130,373],[1310958144130,379],[1310958145130,377],[1310958146130,380] ], - "e_20b_1p_1topic_5": [ [1310959320669,0],[1310959321670,0],[1310959322670,0],[1310959323670,0],[1310959324670,0],[1310959325671,0],[1310959326671,0],[1310959327671,0],[1310959328671,0],[1310959329672,0],[1310959330672,0],[1310959331672,0],[1310959332672,0],[1310959333672,0],[1310959334673,0] ], - "e_1k_10a_10topic_10": [ [1310958297997,0],[1310958298998,0],[1310958299998,0],[1310958300999,0],[1310958301999,0],[1310958303002,0],[1310958304004,0],[1310958305005,0],[1310958306005,0],[1310958307005,0],[1310958308016,0],[1310958309017,0],[1310958310018,0],[1310958311018,0],[1310958312018,0] ], - "p_20b_5a_1topic_1": [ [1310958949452,139222],[1310958950452,135424],[1310958951452,141340],[1310958952452,143007],[1310958953458,144708],[1310958954458,142038],[1310958955458,143898],[1310958956458,141929],[1310958957459,142707],[1310958958459,146393],[1310958959459,143643],[1310958960459,139375],[1310958961460,149515],[1310958962460,145428],[1310958963460,137405] ], - "c_20b_10a_10queue_10": [ [1310958033892,85295],[1310958034896,121044],[1310958035897,94667],[1310958036906,97764],[1310958037906,125169],[1310958038907,85337],[1310958039916,116451],[1310958040916,114800],[1310958041935,91201],[1310958042935,129089],[1310958043936,102732],[1310958044945,100446],[1310958045973,127358],[1310958046973,96236],[1310958047981,111146] ], - "c_20b_5p_5queue_5": [ [1310958393647,7517],[1310958394647,7420],[1310958395648,7486],[1310958396648,7253],[1310958397648,7269],[1310958398648,7434],[1310958399648,7367],[1310958400649,7425],[1310958401649,7413],[1310958402649,7408],[1310958403649,7480],[1310958404650,7367],[1310958405652,7523],[1310958406653,7407],[1310958407653,7518] ], - "e_20b_5p_5queue_5": [ [1310958393647,0],[1310958394647,0],[1310958395648,0],[1310958396648,0],[1310958397648,0],[1310958398648,0],[1310958399648,0],[1310958400649,0],[1310958401649,0],[1310958402649,0],[1310958403649,0],[1310958404650,0],[1310958405652,0],[1310958406653,0],[1310958407653,0] ], - "c_20b_1a_1topic_5": [ [1310958985953,352910],[1310958986953,359917],[1310958987954,357851],[1310958988954,360458],[1310958989954,339177],[1310958990954,368063],[1310958991960,351651],[1310958992960,363710],[1310958993960,354687],[1310958994961,360642],[1310958995961,360465],[1310958996961,358909],[1310958997961,356539],[1310958998962,367098],[1310958999962,361691] ], - "e_256k_5p_5queue_5": [ [1310958537277,0],[1310958538277,0],[1310958539283,0],[1310958540285,0],[1310958541285,0],[1310958542285,0],[1310958543290,0],[1310958544294,0],[1310958545294,0],[1310958546296,0],[1310958547296,0],[1310958548297,0],[1310958549298,0],[1310958550298,0],[1310958551299,0] ], - "e_1k_5a_5queue_5": [ [1310958083018,0],[1310958084018,0],[1310958085018,0],[1310958086019,0],[1310958087019,0],[1310958088019,0],[1310958089020,0],[1310958090020,0],[1310958091024,0],[1310958092025,0],[1310958093028,0],[1310958094029,0],[1310958095030,0],[1310958096034,0],[1310958097034,0] ], - "e_20b_1p_1topic_10": [ [1310959376192,0],[1310959377192,0],[1310959378192,0],[1310959379193,0],[1310959380193,0],[1310959381193,0],[1310959382193,0],[1310959383193,0],[1310959384194,0],[1310959385194,0],[1310959386194,0],[1310959387194,0],[1310959388195,0],[1310959389195,0],[1310959390195,0] ], - "e_20b_1a_1queue_1": [ [1310957985532,0],[1310957986540,0],[1310957987540,0],[1310957988541,0],[1310957989541,0],[1310957990541,0],[1310957991541,0],[1310957992542,0],[1310957993542,0],[1310957994542,0],[1310957995542,0],[1310957996543,0],[1310957997543,0],[1310957998543,0],[1310957999543,0] ], - "p_20b_5a_1topic_10": [ [1310959060016,36197],[1310959061016,52510],[1310959062017,53038],[1310959063017,56725],[1310959064018,55952],[1310959065018,57372],[1310959066019,59392],[1310959067019,55418],[1310959068019,56529],[1310959069020,56007],[1310959070020,52428],[1310959071020,58687],[1310959072021,52973],[1310959073021,58310],[1310959074021,52383] ], - "e_20b_5p_1topic_1": [ [1310959284155,0],[1310959285155,0],[1310959286155,0],[1310959287155,0],[1310959288156,0],[1310959289156,0],[1310959290156,0],[1310959291156,0],[1310959292157,0],[1310959293157,0],[1310959294157,0],[1310959295157,0],[1310959296158,0],[1310959297158,0],[1310959298158,0] ], - "p_1k_1a_1topic_1": [ [1310958260955,66859],[1310958261955,66881],[1310958262956,67284],[1310958263956,66441],[1310958264956,65877],[1310958265956,67014],[1310958266957,67529],[1310958267957,67938],[1310958268957,67547],[1310958269957,67086],[1310958270958,67932],[1310958271958,68581],[1310958272958,67906],[1310958273958,66772],[1310958274959,68318] ], - "e_20b_10p_1queue_1": [ [1310959121566,0],[1310959122566,0],[1310959123567,0],[1310959124567,0],[1310959125567,0],[1310959126567,0],[1310959127568,0],[1310959128568,0],[1310959129568,0],[1310959130568,0],[1310959131569,0],[1310959132569,0],[1310959133569,0],[1310959134569,0],[1310959135570,0] ], - "e_20b_5a_1topic_5": [ [1310959004465,0],[1310959005465,0],[1310959006465,0],[1310959007466,0],[1310959008471,0],[1310959009472,0],[1310959010472,0],[1310959011472,0],[1310959012479,0],[1310959013479,0],[1310959014479,0],[1310959015480,0],[1310959016480,0],[1310959017480,0],[1310959018483,0] ], - "p_20b_1p_1topic_1": [ [1310958586377,5268],[1310958587377,5163],[1310958588378,5209],[1310958589378,5039],[1310958590378,5207],[1310958591378,5187],[1310958592378,5242],[1310958593379,5248],[1310958594379,5179],[1310958595379,5228],[1310958596379,5231],[1310958597380,5217],[1310958598380,5179],[1310958599380,5190],[1310958600380,5198] ], - "c_256k_1a_1topic_1": [ [1310958316518,361],[1310958317518,358],[1310958318519,354],[1310958319519,356],[1310958320519,343],[1310958321519,368],[1310958322520,349],[1310958323521,325],[1310958324524,370],[1310958325524,369],[1310958326524,363],[1310958327524,364],[1310958328527,361],[1310958329527,345],[1310958330527,308] ], - "p_20b_5p_1topic_1": [ [1310959284155,18158],[1310959285155,18420],[1310959286155,18314],[1310959287155,18298],[1310959288156,18220],[1310959289156,18394],[1310959290156,18186],[1310959291156,18486],[1310959292157,18271],[1310959293157,18323],[1310959294157,18333],[1310959295157,18365],[1310959296158,18323],[1310959297158,18360],[1310959298158,18304] ], - "p_20b_5p_1queue_5": [ [1310959167590,7896],[1310959168590,7873],[1310959169590,7901],[1310959170591,7826],[1310959171591,7913],[1310959172591,7858],[1310959173591,7920],[1310959174592,7757],[1310959175592,7870],[1310959176592,7728],[1310959177592,7852],[1310959178592,7823],[1310959179593,7852],[1310959180593,7905],[1310959181593,7894] ], - "p_20b_10p_10topic_10": [ [1310958623396,16289],[1310958624397,13384],[1310958625397,12445],[1310958626398,11667],[1310958627398,11352],[1310958628398,12227],[1310958629398,14995],[1310958630399,11505],[1310958631399,12568],[1310958632399,12018],[1310958633400,12777],[1310958634400,13010],[1310958635403,13216],[1310958636403,12841],[1310958637404,13159] ], - "e_20b_5a_5topic_5": [ [1310958223828,0],[1310958224832,0],[1310958225832,0],[1310958226833,0],[1310958227833,0],[1310958228833,0],[1310958229836,0],[1310958230837,0],[1310958231837,0],[1310958232846,0],[1310958233851,0],[1310958234852,0],[1310958235859,0],[1310958236860,0],[1310958237860,0] ], - "p_1k_10a_10queue_10": [ [1310958107605,72543],[1310958108605,74924],[1310958109605,65643],[1310958110606,72277],[1310958111608,77993],[1310958112608,75309],[1310958113609,60368],[1310958114610,73378],[1310958115612,74765],[1310958116618,76660],[1310958117621,66453],[1310958118622,74715],[1310958119627,77259],[1310958120630,71271],[1310958121630,72485] ], - "c_1k_10p_10topic_10": [ [1310958678940,12285],[1310958679940,14542],[1310958680940,14638],[1310958681941,12424],[1310958682941,11795],[1310958683941,13860],[1310958684941,12396],[1310958685942,14407],[1310958686942,15277],[1310958687942,14182],[1310958688942,13818],[1310958689943,14334],[1310958690943,15117],[1310958691943,14169],[1310958692944,14105] ], - "c_20b_5p_1queue_10": [ [1310959238129,7898],[1310959239129,7977],[1310959240130,7869],[1310959241130,7942],[1310959242130,7903],[1310959243130,7938],[1310959244130,7857],[1310959245131,7871],[1310959246131,7888],[1310959247131,7990],[1310959248131,7859],[1310959249132,7933],[1310959250132,7869],[1310959251132,7940],[1310959252132,7888] ], - "c_1k_1a_1queue_1": [ [1310958058482,43187],[1310958059483,37356],[1310958060483,46895],[1310958061483,41595],[1310958062483,40112],[1310958063484,49125],[1310958064484,41181],[1310958065484,47318],[1310958066484,41204],[1310958067485,47953],[1310958068485,38399],[1310958069485,45843],[1310958070485,43247],[1310958071486,42597],[1310958072488,45401] ], - "c_20b_10a_1topic_1": [ [1310958967470,79862],[1310958968470,79862],[1310958969470,79862],[1310958970470,82459],[1310958971471,99438],[1310958972471,84492],[1310958973471,79801],[1310958974472,84755],[1310958975472,93138],[1310958976472,94783],[1310958977472,78828],[1310958978473,79132],[1310958979473,94769],[1310958980473,97099],[1310958981473,87804] ], - "e_20b_10p_10topic_10": [ [1310958623396,0],[1310958624397,0],[1310958625397,0],[1310958626398,0],[1310958627398,0],[1310958628398,0],[1310958629398,0],[1310958630399,0],[1310958631399,0],[1310958632399,0],[1310958633400,0],[1310958634400,0],[1310958635403,0],[1310958636403,0],[1310958637404,0] ], - "e_20b_5p_1queue_1": [ [1310959097054,0],[1310959098054,0],[1310959099054,0],[1310959100054,0],[1310959101055,0],[1310959102055,0],[1310959103055,0],[1310959104055,0],[1310959105056,0],[1310959106056,0],[1310959107056,0],[1310959108056,0],[1310959109056,0],[1310959110057,0],[1310959111057,0] ], - "p_20b_10p_1topic_1": [ [1310959302163,23586],[1310959303163,23567],[1310959304163,23483],[1310959305164,23342],[1310959306164,23440],[1310959307164,23690],[1310959308165,23789],[1310959309165,23835],[1310959310165,23586],[1310959311165,23534],[1310959312166,23221],[1310959313166,23656],[1310959314166,23552],[1310959315166,23580],[1310959316166,23641] ], - "e_20b_1a_1queue_5": [ [1310958802073,0],[1310958803073,0],[1310958804073,0],[1310958805074,0],[1310958806074,0],[1310958807074,0],[1310958808074,0],[1310958809074,0],[1310958810075,0],[1310958811075,0],[1310958812075,0],[1310958813075,0],[1310958814076,0],[1310958815076,0],[1310958816076,0] ], - "e_20b_10a_1queue_10": [ [1310958924909,0],[1310958925909,0],[1310958926910,0],[1310958927910,0],[1310958928910,0],[1310958929911,0],[1310958930911,0],[1310958931911,0],[1310958932912,0],[1310958933912,0],[1310958934912,0],[1310958935913,0],[1310958936913,0],[1310958937913,0],[1310958938914,0] ], - "c_20b_5a_5topic_5": [ [1310958223828,197636],[1310958224832,198739],[1310958225832,191485],[1310958226833,199844],[1310958227833,197051],[1310958228833,201068],[1310958229836,192902],[1310958230837,202573],[1310958231837,197700],[1310958232846,206455],[1310958233851,204532],[1310958234852,200076],[1310958235859,198757],[1310958236860,211532],[1310958237860,193575] ], - "c_1k_5p_5topic_5": [ [1310958660414,12733],[1310958661414,12762],[1310958662415,10945],[1310958663417,12455],[1310958664417,12856],[1310958665418,12667],[1310958666418,10575],[1310958667419,12466],[1310958668419,10771],[1310958669419,12405],[1310958670419,13122],[1310958671420,11556],[1310958672420,10260],[1310958673420,11207],[1310958674421,10368] ], - "e_20b_1a_1queue_0": [ [1310959485755,0],[1310959486755,0],[1310959487755,0],[1310959488756,0],[1310959489756,0],[1310959490756,0],[1310959491756,0],[1310959492756,0],[1310959493757,0],[1310959494757,0],[1310959495757,0],[1310959496757,0],[1310959497758,0],[1310959498758,0],[1310959499758,0],[1310959500758,0],[1310959501759,0],[1310959502759,0],[1310959503759,0],[1310959504759,0],[1310959505760,0],[1310959506760,0],[1310959507760,0],[1310959508760,0],[1310959509760,0],[1310959510761,0],[1310959511761,0],[1310959512761,0],[1310959513761,0],[1310959514762,0] ], - "e_256k_10a_10queue_10": [ [1310958181231,0],[1310958182237,0],[1310958183238,0],[1310958184239,0],[1310958185242,0],[1310958186242,0],[1310958187243,0],[1310958188243,0],[1310958189243,0],[1310958190244,0],[1310958191247,0],[1310958192248,0],[1310958193248,0],[1310958194249,0],[1310958195250,0] ], - "c_20b_1p_1topic_5": [ [1310959320669,19485],[1310959321670,19727],[1310959322670,19673],[1310959323670,19569],[1310959324670,19734],[1310959325671,19702],[1310959326671,19752],[1310959327671,19648],[1310959328671,19545],[1310959329672,19794],[1310959330672,19635],[1310959331672,19636],[1310959332672,19705],[1310959333672,19611],[1310959334673,19702] ], - "e_20b_5a_1topic_10": [ [1310959060016,0],[1310959061016,0],[1310959062017,0],[1310959063017,0],[1310959064018,0],[1310959065018,0],[1310959066019,0],[1310959067019,0],[1310959068019,0],[1310959069020,0],[1310959070020,0],[1310959071020,0],[1310959072021,0],[1310959073021,0],[1310959074021,0] ], - "p_20b_10p_1queue_10": [ [1310959259644,10622],[1310959260644,10385],[1310959261644,10707],[1310959262645,10514],[1310959263645,10771],[1310959264645,10645],[1310959265645,10669],[1310959266645,10581],[1310959267646,10686],[1310959268646,10624],[1310959269646,10669],[1310959270646,10660],[1310959271647,10590],[1310959272647,10539],[1310959273647,10703] ], - "e_20b_10p_1topic_1": [ [1310959302163,0],[1310959303163,0],[1310959304163,0],[1310959305164,0],[1310959306164,0],[1310959307164,0],[1310959308165,0],[1310959309165,0],[1310959310165,0],[1310959311165,0],[1310959312166,0],[1310959313166,0],[1310959314166,0],[1310959315166,0],[1310959316166,0] ], - "c_20b_5p_1queue_5": [ [1310959167590,7895],[1310959168590,7874],[1310959169590,7902],[1310959170591,7826],[1310959171591,7912],[1310959172591,7859],[1310959173591,7920],[1310959174592,7757],[1310959175592,7870],[1310959176592,7727],[1310959177592,7852],[1310959178592,7824],[1310959179593,7851],[1310959180593,7906],[1310959181593,7891] ], - "p_20b_10a_1queue_1": [ [1310958777786,100944],[1310958778787,15547],[1310958779787,48835],[1310958780787,91687],[1310958781787,69331],[1310958782788,76433],[1310958783788,107501],[1310958784788,70410],[1310958785788,24608],[1310958786789,80937],[1310958787789,85013],[1310958788789,97849],[1310958789789,93578],[1310958790793,58123],[1310958791794,86250] ], - "c_20b_10a_10topic_10": [ [1310958242386,179299],[1310958243396,186624],[1310958244396,183110],[1310958245397,170106],[1310958246402,172724],[1310958247402,175817],[1310958248410,171977],[1310958249420,171603],[1310958250426,176274],[1310958251426,177298],[1310958252432,171542],[1310958253438,169692],[1310958254438,175549],[1310958255439,171697],[1310958256452,172948] ], - "e_20b_5p_5topic_5": [ [1310958604886,0],[1310958605887,0],[1310958606887,0],[1310958607887,0],[1310958608887,0],[1310958609888,0],[1310958610888,0],[1310958611888,0],[1310958612888,0],[1310958613888,0],[1310958614889,0],[1310958615889,0],[1310958616889,0],[1310958617889,0],[1310958618890,0] ], - "e_20b_5p_1topic_5": [ [1310959339176,0],[1310959340176,0],[1310959341177,0],[1310959342177,0],[1310959343177,0],[1310959344177,0],[1310959345177,0],[1310959346178,0],[1310959347178,0],[1310959348178,0],[1310959349178,0],[1310959350179,0],[1310959351179,0],[1310959352179,0],[1310959353179,0] ], - "e_20b_10p_1queue_10": [ [1310959259644,0],[1310959260644,0],[1310959261644,0],[1310959262645,0],[1310959263645,0],[1310959264645,0],[1310959265645,0],[1310959266645,0],[1310959267646,0],[1310959268646,0],[1310959269646,0],[1310959270646,0],[1310959271647,0],[1310959272647,0],[1310959273647,0] ], - "e_20b_5p_1queue_10": [ [1310959238129,0],[1310959239129,0],[1310959240130,0],[1310959241130,0],[1310959242130,0],[1310959243130,0],[1310959244130,0],[1310959245131,0],[1310959246131,0],[1310959247131,0],[1310959248131,0],[1310959249132,0],[1310959250132,0],[1310959251132,0],[1310959252132,0] ], - "c_20b_10a_1queue_10": [ [1310958924909,198053],[1310958925909,197551],[1310958926910,192438],[1310958927910,196232],[1310958928910,191618],[1310958929911,194711],[1310958930911,202716],[1310958931911,186589],[1310958932912,199712],[1310958933912,200202],[1310958934912,205543],[1310958935913,207044],[1310958936913,203818],[1310958937913,201028],[1310958938914,202166] ], - "c_20b_1a_1queue_10": [ [1310958875942,130831],[1310958876942,131706],[1310958877942,135500],[1310958878943,134888],[1310958879943,133855],[1310958880943,136667],[1310958881943,136103],[1310958882944,132886],[1310958883944,132886],[1310958884944,133424],[1310958885945,131756],[1310958886945,131765],[1310958887945,133215],[1310958888945,132118],[1310958889946,132886] ], - "c_20b_1p_1topic_10": [ [1310959376192,26081],[1310959377192,26301],[1310959378192,26452],[1310959379193,26149],[1310959380193,26358],[1310959381193,26153],[1310959382193,26019],[1310959383193,26238],[1310959384194,25941],[1310959385194,26037],[1310959386194,26489],[1310959387194,26129],[1310959388195,26092],[1310959389195,26230],[1310959390195,26195] ], - "c_20b_10a_1topic_10": [ [1310959078535,351552],[1310959079535,333693],[1310959080536,431139],[1310959081536,352152],[1310959082538,476510],[1310959083539,453145],[1310959084539,460623],[1310959085547,469614],[1310959086548,468169],[1310959087548,385259],[1310959088548,455404],[1310959089549,454457],[1310959090549,338438],[1310959091550,480396],[1310959092550,478595] ], - "c_20b_0_1queue_1": [ [1310959551773,19998],[1310959552773,20479],[1310959553780,20276],[1310959554780,9240],[1310959555780,9199],[1310959556780,12646],[1310959557781,18151],[1310959558781,21128],[1310959559781,20825],[1310959560781,28040],[1310959561782,0],[1310959562782,9999],[1310959563782,13825],[1310959564782,17809],[1310959565783,26983],[1310959566783,21375],[1310959567783,19998],[1310959568783,19998],[1310959569784,0],[1310959570784,18086],[1310959571784,17327],[1310959572784,24581],[1310959573784,19998],[1310959574785,19998],[1310959575785,19998],[1310959576785,19998],[1310959577785,17949],[1310959578786,22047],[1310959579786,19998],[1310959580786,5416] ], - "c_256k_10a_10queue_10": [ [1310958181231,374],[1310958182237,374],[1310958183238,374],[1310958184239,376],[1310958185242,371],[1310958186242,382],[1310958187243,372],[1310958188243,362],[1310958189243,368],[1310958190244,371],[1310958191247,367],[1310958192248,374],[1310958193248,383],[1310958194249,370],[1310958195250,364] ], - "c_20b_10p_1topic_10": [ [1310959413212,96865],[1310959414212,97903],[1310959415212,96876],[1310959416212,97236],[1310959417213,97775],[1310959418213,95619],[1310959419213,96773],[1310959420213,98803],[1310959421214,98661],[1310959422214,95914],[1310959423214,96183],[1310959424214,97017],[1310959425215,97656],[1310959426215,94240],[1310959427215,96391] ], - "p_20b_5a_1queue_10": [ [1310958900491,179745],[1310958901491,181878],[1310958902491,188126],[1310958903492,179639],[1310958904492,186853],[1310958905493,183745],[1310958906493,176391],[1310958907499,184899],[1310958908499,191834],[1310958909499,178042],[1310958910500,187351],[1310958911500,181073],[1310958912500,182486],[1310958913501,180701],[1310958914501,184013] ], - "e_1k_5a_5topic_5": [ [1310958279463,0],[1310958280463,0],[1310958281464,0],[1310958282465,0],[1310958283465,0],[1310958284469,0],[1310958285470,0],[1310958286470,0],[1310958287470,0],[1310958288473,0],[1310958289475,0],[1310958290476,0],[1310958291479,0],[1310958292479,0],[1310958293480,0] ], - "p_1k_10p_10topic_10": [ [1310958678940,12285],[1310958679940,14544],[1310958680940,14636],[1310958681941,12423],[1310958682941,11800],[1310958683941,13852],[1310958684941,12401],[1310958685942,14406],[1310958686942,15277],[1310958687942,14182],[1310958688942,13818],[1310958689943,14335],[1310958690943,15114],[1310958691943,14170],[1310958692944,14103] ], - "c_1k_10a_10topic_10": [ [1310958297997,87644],[1310958298998,91861],[1310958299998,91031],[1310958300999,92662],[1310958301999,89929],[1310958303002,92520],[1310958304004,94892],[1310958305005,90038],[1310958306005,92569],[1310958307005,93034],[1310958308016,87104],[1310958309017,87124],[1310958310018,91846],[1310958311018,93908],[1310958312018,91527] ], - "c_20b_1a_1topic_10": [ [1310959041495,555995],[1310959042495,563881],[1310959043496,554606],[1310959044496,553468],[1310959045497,585113],[1310959046501,572375],[1310959047501,591127],[1310959048501,572480],[1310959049504,508090],[1310959050508,570593],[1310959051508,584483],[1310959052509,557285],[1310959053509,572857],[1310959054509,570856],[1310959055510,538427] ], - "e_20b_10p_1queue_5": [ [1310959192103,0],[1310959193103,0],[1310959194104,0],[1310959195104,0],[1310959196104,0],[1310959197104,0],[1310959198105,0],[1310959199105,0],[1310959200105,0],[1310959201105,0],[1310959202106,0],[1310959203106,0],[1310959204106,0],[1310959205106,0],[1310959206106,0] ], - "e_256k_10p_10queue_10": [ [1310958561831,0],[1310958562836,0],[1310958563836,0],[1310958564837,0],[1310958565838,0],[1310958566839,0],[1310958567839,0],[1310958568844,0],[1310958569844,0],[1310958570845,0],[1310958571846,0],[1310958572865,0],[1310958573865,0],[1310958574866,0],[1310958575868,0] ], - "c_1k_5p_5queue_5": [ [1310958463707,6961],[1310958464707,6353],[1310958465707,6653],[1310958466707,6097],[1310958467707,6110],[1310958468708,5677],[1310958469708,5426],[1310958470708,5436],[1310958471709,6287],[1310958472709,5501],[1310958473709,4830],[1310958474709,5554],[1310958475710,6281],[1310958476710,6334],[1310958477710,6412] ], - "e_20b_1p_1queue_5": [ [1310959146077,0],[1310959147078,0],[1310959148078,0],[1310959149078,0],[1310959150080,0],[1310959151080,0],[1310959152081,0],[1310959153081,0],[1310959154081,0],[1310959155081,0],[1310959156082,0],[1310959157082,0],[1310959158082,0],[1310959159082,0],[1310959160082,0] ], - "p_1k_10a_10topic_10": [ [1310958297997,87764],[1310958298998,91752],[1310958299998,90782],[1310958300999,93057],[1310958301999,89922],[1310958303002,92211],[1310958304004,95181],[1310958305005,89860],[1310958306005,92648],[1310958307005,93126],[1310958308016,87027],[1310958309017,87218],[1310958310018,91716],[1310958311018,93884],[1310958312018,91820] ], - "e_256k_1p_1topic_1": [ [1310958697446,0],[1310958698446,0],[1310958699449,0],[1310958700449,0],[1310958701449,0],[1310958702450,0],[1310958703451,0],[1310958704452,0],[1310958705452,0],[1310958706452,0],[1310958707452,0],[1310958708453,0],[1310958709453,0],[1310958710453,0],[1310958711453,0] ], - "c_20b_5a_1topic_5": [ [1310959004465,470743],[1310959005465,477616],[1310959006465,483320],[1310959007466,480336],[1310959008471,487693],[1310959009472,488504],[1310959010472,474648],[1310959011472,490566],[1310959012479,497323],[1310959013479,490550],[1310959014479,491767],[1310959015480,477872],[1310959016480,468346],[1310959017480,469218],[1310959018483,468490] ], - "e_20b_10a_1topic_10": [ [1310959078535,0],[1310959079535,0],[1310959080536,0],[1310959081536,0],[1310959082538,0],[1310959083539,0],[1310959084539,0],[1310959085547,0],[1310959086548,0],[1310959087548,0],[1310959088548,0],[1310959089549,0],[1310959090549,0],[1310959091550,0],[1310959092550,0] ], - "p_256k_1a_1topic_1": [ [1310958316518,363],[1310958317518,357],[1310958318519,354],[1310958319519,356],[1310958320519,342],[1310958321519,370],[1310958322520,349],[1310958323521,324],[1310958324524,369],[1310958325524,369],[1310958326524,364],[1310958327524,364],[1310958328527,360],[1310958329527,345],[1310958330527,309] ], - "c_20b_5a_1queue_10": [ [1310958900491,175839],[1310958901491,183477],[1310958902491,184176],[1310958903492,184257],[1310958904492,184877],[1310958905493,185151],[1310958906493,174060],[1310958907499,186865],[1310958908499,190065],[1310958909499,180216],[1310958910500,187078],[1310958911500,182788],[1310958912500,181681],[1310958913501,180450],[1310958914501,183203] ], - "p_256k_1a_1queue_1": [ [1310958132121,384],[1310958133121,363],[1310958134124,364],[1310958135124,365],[1310958136124,358],[1310958137125,378],[1310958138128,376],[1310958139128,377],[1310958140129,371],[1310958141129,378],[1310958142129,375],[1310958143130,373],[1310958144130,379],[1310958145130,378],[1310958146130,379] ], - "e_1k_1a_1queue_1": [ [1310958058482,0],[1310958059483,0],[1310958060483,0],[1310958061483,0],[1310958062483,0],[1310958063484,0],[1310958064484,0],[1310958065484,0],[1310958066484,0],[1310958067485,0],[1310958068485,0],[1310958069485,0],[1310958070485,0],[1310958071486,0],[1310958072488,0] ], - "e_20b_10a_1topic_5": [ [1310959022987,0],[1310959023988,0],[1310959024988,0],[1310959025988,0],[1310959026989,0],[1310959027989,0],[1310959028989,0],[1310959029990,0],[1310959030990,0],[1310959031990,0],[1310959032990,0],[1310959033991,0],[1310959034991,0],[1310959036001,0],[1310959037004,0] ], - "c_256k_1p_1queue_1": [ [1310958512754,217],[1310958513755,226],[1310958514755,224],[1310958515755,226],[1310958516755,223],[1310958517756,224],[1310958518756,229],[1310958519759,233],[1310958520759,226],[1310958521759,229],[1310958522760,229],[1310958523760,234],[1310958524760,229],[1310958525760,229],[1310958526761,231] ], - "e_20b_1p_1topic_1": [ [1310958586377,0],[1310958587377,0],[1310958588378,0],[1310958589378,0],[1310958590378,0],[1310958591378,0],[1310958592378,0],[1310958593379,0],[1310958594379,0],[1310958595379,0],[1310958596379,0],[1310958597380,0],[1310958598380,0],[1310958599380,0],[1310958600380,0] ], - "p_20b_1a_1topic_0": [ [1310959431718,293858],[1310959432718,296327],[1310959433719,297349],[1310959434719,292184],[1310959435719,293330],[1310959436719,295824],[1310959437720,299306],[1310959438720,291883],[1310959439720,293655],[1310959440720,293407],[1310959441727,293104],[1310959442727,294259],[1310959443727,291061],[1310959444728,291668],[1310959445728,293456] ], - "p_256k_1a_1topic_0": [ [1310959467744,876],[1310959468745,837],[1310959469745,875],[1310959470745,836],[1310959471746,880],[1310959472746,872],[1310959473746,831],[1310959474746,782],[1310959475750,874],[1310959476750,879],[1310959477750,817],[1310959478751,819],[1310959479751,871],[1310959480751,850],[1310959481752,861] ], - "c_20b_1p_1topic_1": [ [1310958586377,5269],[1310958587377,5162],[1310958588378,5210],[1310958589378,5039],[1310958590378,5207],[1310958591378,5187],[1310958592378,5242],[1310958593379,5248],[1310958594379,5179],[1310958595379,5228],[1310958596379,5230],[1310958597380,5218],[1310958598380,5178],[1310958599380,5191],[1310958600380,5198] ], - "p_20b_5p_5queue_5": [ [1310958393647,7517],[1310958394647,7423],[1310958395648,7484],[1310958396648,7253],[1310958397648,7271],[1310958398648,7433],[1310958399648,7368],[1310958400649,7423],[1310958401649,7414],[1310958402649,7407],[1310958403649,7481],[1310958404650,7368],[1310958405652,7523],[1310958406653,7406],[1310958407653,7517] ], - "e_1k_1a_1topic_0": [ [1310959449730,0],[1310959450730,0],[1310959451731,0],[1310959452731,0],[1310959453731,0],[1310959454731,0],[1310959455737,0],[1310959456737,0],[1310959457741,0],[1310959458741,0],[1310959459741,0],[1310959460741,0],[1310959461742,0],[1310959462742,0],[1310959463742,0] ], - "p_20b_5a_1queue_1": [ [1310958753046,52055],[1310958754046,87627],[1310958755046,95660],[1310958756046,103507],[1310958757047,70139],[1310958758047,93621],[1310958759047,84191],[1310958760047,101422],[1310958761048,74423],[1310958762061,60504],[1310958763061,81000],[1310958764061,72572],[1310958765067,70551],[1310958766068,102287],[1310958767068,86002] ], - "p_20b_10a_1queue_5": [ [1310958851208,174300],[1310958852209,119375],[1310958853209,162535],[1310958854209,188211],[1310958855209,171756],[1310958856210,207265],[1310958857210,169484],[1310958858210,179234],[1310958859211,175873],[1310958860211,176700],[1310958861211,200831],[1310958862212,195673],[1310958863212,158723],[1310958864212,190514],[1310958865213,202311] ], - "p_256k_5p_5queue_5": [ [1310958537277,293],[1310958538277,310],[1310958539283,281],[1310958540285,237],[1310958541285,255],[1310958542285,278],[1310958543290,280],[1310958544294,302],[1310958545294,348],[1310958546296,361],[1310958547296,359],[1310958548297,366],[1310958549298,359],[1310958550298,373],[1310958551299,327] ], - "c_20b_5a_1queue_1": [ [1310958753046,52757],[1310958754046,89299],[1310958755046,95114],[1310958756046,97932],[1310958757047,75137],[1310958758047,89146],[1310958759047,88527],[1310958760047,99990],[1310958761048,76688],[1310958762061,54889],[1310958763061,85660],[1310958764061,71885],[1310958765067,70076],[1310958766068,99784],[1310958767068,88608] ], - "e_20b_1a_1topic_5": [ [1310958985953,0],[1310958986953,0],[1310958987954,0],[1310958988954,0],[1310958989954,0],[1310958990954,0],[1310958991960,0],[1310958992960,0],[1310958993960,0],[1310958994961,0],[1310958995961,0],[1310958996961,0],[1310958997961,0],[1310958998962,0],[1310958999962,0] ], - "c_20b_10p_1queue_5": [ [1310959192103,10994],[1310959193103,11098],[1310959194104,10912],[1310959195104,11003],[1310959196104,10895],[1310959197104,10994],[1310959198105,10846],[1310959199105,10996],[1310959200105,10946],[1310959201105,11002],[1310959202106,10915],[1310959203106,10901],[1310959204106,10914],[1310959205106,11095],[1310959206106,10900] ], - "e_1k_1p_1queue_1": [ [1310958442692,0],[1310958443692,0],[1310958444692,0],[1310958445692,0],[1310958446693,0],[1310958447693,0],[1310958448693,0],[1310958449693,0],[1310958450693,0],[1310958451694,0],[1310958452694,0],[1310958453694,0],[1310958454694,0],[1310958455695,0],[1310958456695,0] ], - "e_256k_1a_1topic_0": [ [1310959467744,0],[1310959468745,0],[1310959469745,0],[1310959470745,0],[1310959471746,0],[1310959472746,0],[1310959473746,0],[1310959474746,0],[1310959475750,0],[1310959476750,0],[1310959477750,0],[1310959478751,0],[1310959479751,0],[1310959480751,0],[1310959481752,0] ], - "c_20b_10a_1queue_1": [ [1310958777786,98878],[1310958778787,22937],[1310958779787,51694],[1310958780787,96102],[1310958781787,63527],[1310958782788,81758],[1310958783788,97887],[1310958784788,74717],[1310958785788,26946],[1310958786789,79084],[1310958787789,83939],[1310958788789,96333],[1310958789789,89152],[1310958790793,63225],[1310958791794,81847] ], - "p_20b_10a_1topic_1": [ [1310958967470,79835],[1310958968470,81973],[1310958969470,79218],[1310958970470,76419],[1310958971471,97454],[1310958972471,83754],[1310958973471,87066],[1310958974472,86655],[1310958975472,90945],[1310958976472,91668],[1310958977472,85040],[1310958978473,77476],[1310958979473,93759],[1310958980473,98476],[1310958981473,85036] ], - "p_20b_5a_5topic_5": [ [1310958223828,195318],[1310958224832,200502],[1310958225832,189477],[1310958226833,201897],[1310958227833,196151],[1310958228833,201228],[1310958229836,192238],[1310958230837,202625],[1310958231837,197426],[1310958232846,207038],[1310958233851,202403],[1310958234852,199660],[1310958235859,201402],[1310958236860,210878],[1310958237860,194135] ], - "p_256k_10p_10topic_10": [ [1310958734517,337],[1310958735522,343],[1310958736528,339],[1310958737529,286],[1310958738537,290],[1310958739543,253],[1310958740544,272],[1310958741546,307],[1310958742571,235],[1310958743572,435],[1310958744572,454],[1310958745573,498],[1310958746573,510],[1310958747574,515],[1310958748575,514] ], - "e_20b_5a_5queue_5": [ [1310958009602,0],[1310958010602,0],[1310958011602,0],[1310958012603,0],[1310958013603,0],[1310958014610,0],[1310958015615,0],[1310958016615,0],[1310958017615,0],[1310958018615,0],[1310958019616,0],[1310958020616,0],[1310958021620,0],[1310958022631,0],[1310958023631,0] ], - "c_256k_5a_5topic_5": [ [1310958335057,302],[1310958336063,299],[1310958337063,290],[1310958338064,334],[1310958339064,343],[1310958340064,348],[1310958341069,383],[1310958342070,384],[1310958343070,389],[1310958344072,375],[1310958345076,391],[1310958346076,386],[1310958347077,372],[1310958348078,392],[1310958349085,382] ], - "p_20b_5a_1topic_5": [ [1310959004465,95153],[1310959005465,96265],[1310959006465,96944],[1310959007466,96260],[1310959008471,97854],[1310959009472,97437],[1310959010472,93820],[1310959011472,98502],[1310959012479,99650],[1310959013479,98601],[1310959014479,99818],[1310959015480,93050],[1310959016480,91333],[1310959017480,92653],[1310959018483,96121] ], - "p_256k_5a_5topic_5": [ [1310958335057,304],[1310958336063,299],[1310958337063,290],[1310958338064,337],[1310958339064,343],[1310958340064,345],[1310958341069,381],[1310958342070,381],[1310958343070,392],[1310958344072,375],[1310958345076,393],[1310958346076,386],[1310958347077,371],[1310958348078,392],[1310958349085,385] ], - "e_20b_5a_1queue_5": [ [1310958826625,0],[1310958827625,0],[1310958828625,0],[1310958829626,0],[1310958830626,0],[1310958831626,0],[1310958832627,0],[1310958833627,0],[1310958834627,0],[1310958835628,0],[1310958836628,0],[1310958837632,0],[1310958838632,0],[1310958839632,0],[1310958840632,0] ], - "c_20b_5a_5queue_5": [ [1310958009602,101683],[1310958010602,91381],[1310958011602,103999],[1310958012603,97358],[1310958013603,122625],[1310958014610,102700],[1310958015615,102143],[1310958016615,128387],[1310958017615,101502],[1310958018615,89240],[1310958019616,127212],[1310958020616,98703],[1310958021620,120585],[1310958022631,97940],[1310958023631,128293] ], - "c_20b_1p_1queue_10": [ [1310959216616,1899],[1310959217616,1884],[1310959218616,1881],[1310959219616,1864],[1310959220616,1884],[1310959221617,1867],[1310959222617,1875],[1310959223617,1860],[1310959224617,1898],[1310959225617,1893],[1310959226618,1878],[1310959227618,1886],[1310959228618,1860],[1310959229618,1880],[1310959230619,1894] ], - "e_20b_1p_1queue_1": [ [1310958372132,0],[1310958373132,0],[1310958374132,0],[1310958375132,0],[1310958376132,0],[1310958377133,0],[1310958378133,0],[1310958379133,0],[1310958380133,0],[1310958381134,0],[1310958382134,0],[1310958383134,0],[1310958384134,0],[1310958385134,0],[1310958386135,0] ], - "p_20b_10a_1topic_5": [ [1310959022987,87662],[1310959023988,87355],[1310959024988,93946],[1310959025988,95399],[1310959026989,83726],[1310959027989,91413],[1310959028989,96589],[1310959029990,82891],[1310959030990,90565],[1310959031990,97708],[1310959032990,89782],[1310959033991,89646],[1310959034991,86891],[1310959036001,94552],[1310959037004,92342] ], - "e_20b_5a_1topic_1": [ [1310958949452,0],[1310958950452,0],[1310958951452,0],[1310958952452,0],[1310958953458,0],[1310958954458,0],[1310958955458,0],[1310958956458,0],[1310958957459,0],[1310958958459,0],[1310958959459,0],[1310958960459,0],[1310958961460,0],[1310958962460,0],[1310958963460,0] ], - "c_20b_1p_1queue_1": [ [1310958372132,1740],[1310958373132,1696],[1310958374132,1747],[1310958375132,1825],[1310958376132,1840],[1310958377133,1875],[1310958378133,1862],[1310958379133,1831],[1310958380133,1842],[1310958381134,1837],[1310958382134,1859],[1310958383134,1819],[1310958384134,1812],[1310958385134,1846],[1310958386135,1843] ], - "p_256k_10p_10queue_10": [ [1310958561831,355],[1310958562836,364],[1310958563836,353],[1310958564837,356],[1310958565838,350],[1310958566839,349],[1310958567839,328],[1310958568844,316],[1310958569844,306],[1310958570845,311],[1310958571846,286],[1310958572865,296],[1310958573865,302],[1310958574866,310],[1310958575868,306] ], - "c_1k_5a_5topic_5": [ [1310958279463,100476],[1310958280463,101452],[1310958281464,101081],[1310958282465,100079],[1310958283465,101016],[1310958284469,98293],[1310958285470,97195],[1310958286470,97753],[1310958287470,100561],[1310958288473,103008],[1310958289475,105166],[1310958290476,97873],[1310958291479,100003],[1310958292479,99309],[1310958293480,99970] ], - "p_1k_5p_5queue_5": [ [1310958463707,6963],[1310958464707,6353],[1310958465707,6653],[1310958466707,6098],[1310958467707,6108],[1310958468708,5676],[1310958469708,5428],[1310958470708,5436],[1310958471709,6286],[1310958472709,5502],[1310958473709,4830],[1310958474709,5556],[1310958475710,6279],[1310958476710,6334],[1310958477710,6409] ], - "p_20b_5a_5queue_5": [ [1310958009602,102680],[1310958010602,91444],[1310958011602,105418],[1310958012603,94206],[1310958013603,122829],[1310958014610,104033],[1310958015615,100355],[1310958016615,127697],[1310958017615,101647],[1310958018615,92740],[1310958019616,127187],[1310958020616,97642],[1310958021620,121208],[1310958022631,97184],[1310958023631,124595] ], - "e_256k_1a_1topic_1": [ [1310958316518,0],[1310958317518,0],[1310958318519,0],[1310958319519,0],[1310958320519,0],[1310958321519,0],[1310958322520,0],[1310958323521,0],[1310958324524,0],[1310958325524,0],[1310958326524,0],[1310958327524,0],[1310958328527,0],[1310958329527,0],[1310958330527,0] ], - "e_256k_5p_5topic_5": [ [1310958715957,0],[1310958716960,0],[1310958717964,0],[1310958718965,0],[1310958719966,0],[1310958720966,0],[1310958721973,0],[1310958722973,0],[1310958723974,0],[1310958724980,0],[1310958725981,0],[1310958726981,0],[1310958727982,0],[1310958728993,0],[1310958729994,0] ], - "p_20b_1p_1topic_5": [ [1310959320669,3897],[1310959321670,3945],[1310959322670,3934],[1310959323670,3914],[1310959324670,3947],[1310959325671,3940],[1310959326671,3951],[1310959327671,3929],[1310959328671,3910],[1310959329672,3958],[1310959330672,3927],[1310959331672,3927],[1310959332672,3942],[1310959333672,3922],[1310959334673,3940] ], - "c_20b_5a_1queue_5": [ [1310958826625,215048],[1310958827625,220610],[1310958828625,218899],[1310958829626,220124],[1310958830626,222593],[1310958831626,218954],[1310958832627,222723],[1310958833627,222971],[1310958834627,219635],[1310958835628,227647],[1310958836628,213563],[1310958837632,218173],[1310958838632,218824],[1310958839632,222522],[1310958840632,217004] ], - "p_20b_10a_10topic_10": [ [1310958242386,178997],[1310958243396,187347],[1310958244396,180111],[1310958245397,176854],[1310958246402,168472],[1310958247402,176735],[1310958248410,171034],[1310958249420,174049],[1310958250426,175009],[1310958251426,176026],[1310958252432,170188],[1310958253438,173166],[1310958254438,176966],[1310958255439,167672],[1310958256452,175114] ], - "e_20b_10a_1topic_1": [ [1310958967470,0],[1310958968470,0],[1310958969470,0],[1310958970470,0],[1310958971471,0],[1310958972471,0],[1310958973471,0],[1310958974472,0],[1310958975472,0],[1310958976472,0],[1310958977472,0],[1310958978473,0],[1310958979473,0],[1310958980473,0],[1310958981473,0] ], - "p_20b_1a_1topic_5": [ [1310958985953,68467],[1310958986953,74319],[1310958987954,72633],[1310958988954,68970],[1310958989954,71899],[1310958990954,70284],[1310958991960,69739],[1310958992960,76988],[1310958993960,69697],[1310958994961,72893],[1310958995961,69548],[1310958996961,73841],[1310958997961,70681],[1310958998962,73911],[1310958999962,71907] ], - "c_256k_5p_5queue_5": [ [1310958537277,293],[1310958538277,310],[1310958539283,282],[1310958540285,237],[1310958541285,255],[1310958542285,277],[1310958543290,282],[1310958544294,300],[1310958545294,348],[1310958546296,361],[1310958547296,359],[1310958548297,366],[1310958549298,359],[1310958550298,375],[1310958551299,325] ], - "e_20b_10a_10topic_10": [ [1310958242386,0],[1310958243396,0],[1310958244396,0],[1310958245397,0],[1310958246402,0],[1310958247402,0],[1310958248410,0],[1310958249420,0],[1310958250426,0],[1310958251426,0],[1310958252432,0],[1310958253438,0],[1310958254438,0],[1310958255439,0],[1310958256452,0] ], - "p_1k_1a_1topic_0": [ [1310959449730,180603],[1310959450730,183795],[1310959451731,179229],[1310959452731,173623],[1310959453731,172120],[1310959454731,182860],[1310959455737,179363],[1310959456737,174412],[1310959457741,174215],[1310959458741,174834],[1310959459741,184073],[1310959460741,175331],[1310959461742,175909],[1310959462742,166758],[1310959463742,178626] ], - "e_256k_1a_1queue_1": [ [1310958132121,0],[1310958133121,0],[1310958134124,0],[1310958135124,0],[1310958136124,0],[1310958137125,0],[1310958138128,0],[1310958139128,0],[1310958140129,0],[1310958141129,0],[1310958142129,0],[1310958143130,0],[1310958144130,0],[1310958145130,0],[1310958146130,0] ], - "c_20b_10a_1queue_5": [ [1310958851208,176408],[1310958852209,118836],[1310958853209,161848],[1310958854209,189613],[1310958855209,163773],[1310958856210,208507],[1310958857210,177283],[1310958858210,175169],[1310958859211,174646],[1310958860211,178218],[1310958861211,201538],[1310958862212,189271],[1310958863212,164963],[1310958864212,189352],[1310958865213,201558] ], - "e_20b_10p_1topic_5": [ [1310959357685,0],[1310959358685,0],[1310959359685,0],[1310959360685,0],[1310959361686,0],[1310959362686,0],[1310959363686,0],[1310959364687,0],[1310959365687,0],[1310959366687,0],[1310959367687,0],[1310959368687,0],[1310959369688,0],[1310959370688,0],[1310959371688,0] ], - "e_20b_5p_1topic_10": [ [1310959394700,0],[1310959395700,0],[1310959396701,0],[1310959397701,0],[1310959398701,0],[1310959399701,0],[1310959400702,0],[1310959401702,0],[1310959402703,0],[1310959403703,0],[1310959404703,0],[1310959405703,0],[1310959406704,0],[1310959407704,0],[1310959408705,0] ], - "p_20b_10p_10queue_10": [ [1310958418176,10081],[1310958419176,10279],[1310958420177,10062],[1310958421177,10264],[1310958422177,10047],[1310958423177,10235],[1310958424178,9905],[1310958425178,10043],[1310958426178,10009],[1310958427178,10125],[1310958428179,10018],[1310958429179,10223],[1310958430179,10045],[1310958431179,10151],[1310958432180,10060] ], - "p_20b_1p_1queue_1": [ [1310958372132,1740],[1310958373132,1697],[1310958374132,1747],[1310958375132,1825],[1310958376132,1839],[1310958377133,1876],[1310958378133,1861],[1310958379133,1831],[1310958380133,1843],[1310958381134,1837],[1310958382134,1858],[1310958383134,1819],[1310958384134,1813],[1310958385134,1846],[1310958386135,1842] ], - "p_20b_10a_1queue_10": [ [1310958924909,200895],[1310958925909,194048],[1310958926910,198679],[1310958927910,198748],[1310958928910,188349],[1310958929911,193667],[1310958930911,202337],[1310958931911,188297],[1310958932912,199783],[1310958933912,195920],[1310958934912,206453],[1310958935913,210915],[1310958936913,201619],[1310958937913,201945],[1310958938914,202053] ], - "p_256k_5a_5queue_5": [ [1310958156668,342],[1310958157673,345],[1310958158674,325],[1310958159674,372],[1310958160678,358],[1310958161678,353],[1310958162678,358],[1310958163679,378],[1310958164681,362],[1310958165681,335],[1310958166686,371],[1310958167688,384],[1310958168689,377],[1310958169689,339],[1310958170690,368] ], - "c_20b_5a_1topic_10": [ [1310959060016,371722],[1310959061016,521965],[1310959062017,519613],[1310959063017,567748],[1310959064018,574406],[1310959065018,568715],[1310959066019,573178],[1310959067019,554434],[1310959068019,564608],[1310959069020,557880],[1310959070020,535807],[1310959071020,574214],[1310959072021,532468],[1310959073021,570074],[1310959074021,534029] ], - "p_20b_1p_1queue_0": [ [1310959518764,335],[1310959519764,285],[1310959520764,415],[1310959521765,229],[1310959522765,546],[1310959523765,266],[1310959524765,496],[1310959525765,1098],[1310959526766,405],[1310959527766,644],[1310959528766,955],[1310959529766,886],[1310959530767,1060],[1310959531767,503],[1310959532767,1437],[1310959533767,1092],[1310959534767,1083],[1310959535768,994],[1310959536768,1221],[1310959537768,989],[1310959538768,878],[1310959539769,748],[1310959540769,412],[1310959541769,892],[1310959542769,582],[1310959543769,871],[1310959544770,1108],[1310959545770,1382],[1310959546770,714],[1310959547770,1238] ], - "e_1k_1p_1topic_1": [ [1310958641907,0],[1310958642907,0],[1310958643907,0],[1310958644908,0],[1310958645908,0],[1310958646908,0],[1310958647908,0],[1310958648909,0],[1310958649909,0],[1310958650909,0],[1310958651909,0],[1310958652909,0],[1310958653910,0],[1310958654910,0],[1310958655910,0] ], - "c_20b_10p_10queue_10": [ [1310958418176,10080],[1310958419176,10280],[1310958420177,10063],[1310958421177,10265],[1310958422177,10042],[1310958423177,10237],[1310958424178,9905],[1310958425178,10044],[1310958426178,10009],[1310958427178,10125],[1310958428179,10019],[1310958429179,10220],[1310958430179,10047],[1310958431179,10150],[1310958432180,10061] ], - "e_20b_10p_1topic_10": [ [1310959413212,0],[1310959414212,0],[1310959415212,0],[1310959416212,0],[1310959417213,0],[1310959418213,0],[1310959419213,0],[1310959420213,0],[1310959421214,0],[1310959422214,0],[1310959423214,0],[1310959424214,0],[1310959425215,0],[1310959426215,0],[1310959427215,0] ], - "c_1k_1p_1queue_1": [ [1310958442692,1796],[1310958443692,1807],[1310958444692,1802],[1310958445692,1800],[1310958446693,1755],[1310958447693,1806],[1310958448693,1836],[1310958449693,1852],[1310958450693,1764],[1310958451694,1781],[1310958452694,1803],[1310958453694,1795],[1310958454694,1800],[1310958455695,1813],[1310958456695,1781] ], - "p_20b_10p_1queue_1": [ [1310959121566,12626],[1310959122566,12595],[1310959123567,12712],[1310959124567,12506],[1310959125567,12729],[1310959126567,12637],[1310959127568,12725],[1310959128568,12645],[1310959129568,12690],[1310959130568,12564],[1310959131569,12682],[1310959132569,12651],[1310959133569,12627],[1310959134569,12653],[1310959135570,12764] ], - "p_20b_10p_1topic_5": [ [1310959357685,14494],[1310959358685,14288],[1310959359685,14348],[1310959360685,13452],[1310959361686,14437],[1310959362686,14311],[1310959363686,13758],[1310959364687,14254],[1310959365687,14507],[1310959366687,14472],[1310959367687,14448],[1310959368687,14152],[1310959369688,14210],[1310959370688,14385],[1310959371688,14618] ], - "p_20b_5a_1queue_5": [ [1310958826625,217588],[1310958827625,218212],[1310958828625,219005],[1310958829626,221780],[1310958830626,220814],[1310958831626,220147],[1310958832627,226887],[1310958833627,218310],[1310958834627,220990],[1310958835628,225646],[1310958836628,215359],[1310958837632,219149],[1310958838632,218537],[1310958839632,221895],[1310958840632,214016] ], - "e_1k_5p_5queue_5": [ [1310958463707,0],[1310958464707,0],[1310958465707,0],[1310958466707,0],[1310958467707,0],[1310958468708,0],[1310958469708,0],[1310958470708,0],[1310958471709,0],[1310958472709,0],[1310958473709,0],[1310958474709,0],[1310958475710,0],[1310958476710,0],[1310958477710,0] ], - "e_1k_10p_10queue_10": [ [1310958488236,0],[1310958489236,0],[1310958490236,0],[1310958491237,0],[1310958492237,0],[1310958493237,0],[1310958494238,0],[1310958495238,0],[1310958496238,0],[1310958497238,0],[1310958498239,0],[1310958499239,0],[1310958500241,0],[1310958501241,0],[1310958502241,0] ], - "c_20b_1p_1queue_5": [ [1310959146077,1798],[1310959147078,1797],[1310959148078,1835],[1310959149078,1813],[1310959150080,1810],[1310959151080,1840],[1310959152081,1806],[1310959153081,1801],[1310959154081,1803],[1310959155081,1811],[1310959156082,1818],[1310959157082,1821],[1310959158082,1819],[1310959159082,1825],[1310959160082,1800] ], - "e_256k_5a_5topic_5": [ [1310958335057,0],[1310958336063,0],[1310958337063,0],[1310958338064,0],[1310958339064,0],[1310958340064,0],[1310958341069,0],[1310958342070,0],[1310958343070,0],[1310958344072,0],[1310958345076,0],[1310958346076,0],[1310958347077,0],[1310958348078,0],[1310958349085,0] ], - "c_256k_5a_5queue_5": [ [1310958156668,343],[1310958157673,346],[1310958158674,320],[1310958159674,375],[1310958160678,361],[1310958161678,351],[1310958162678,358],[1310958163679,375],[1310958164681,364],[1310958165681,339],[1310958166686,362],[1310958167688,389],[1310958168689,376],[1310958169689,337],[1310958170690,368] ], - "c_20b_1a_1queue_5": [ [1310958802073,150566],[1310958803073,151218],[1310958804073,150134],[1310958805074,153080],[1310958806074,151017],[1310958807074,153499],[1310958808074,153322],[1310958809074,152792],[1310958810075,153653],[1310958811075,152737],[1310958812075,151461],[1310958813075,149854],[1310958814076,147412],[1310958815076,145806],[1310958816076,149556] ], - "p_20b_1p_1queue_5": [ [1310959146077,1798],[1310959147078,1798],[1310959148078,1834],[1310959149078,1813],[1310959150080,1811],[1310959151080,1840],[1310959152081,1805],[1310959153081,1801],[1310959154081,1803],[1310959155081,1811],[1310959156082,1819],[1310959157082,1820],[1310959158082,1819],[1310959159082,1825],[1310959160082,1801] ], - "c_20b_5a_1topic_1": [ [1310958949452,137940],[1310958950452,137833],[1310958951452,139355],[1310958952452,141627],[1310958953458,144714],[1310958954458,143762],[1310958955458,142750],[1310958956458,142039],[1310958957459,144261],[1310958958459,144254],[1310958959459,143630],[1310958960459,142256],[1310958961460,146779],[1310958962460,144261],[1310958963460,138802] ], - "c_1k_10p_10queue_10": [ [1310958488236,8665],[1310958489236,8037],[1310958490236,7905],[1310958491237,6120],[1310958492237,5336],[1310958493237,6456],[1310958494238,6948],[1310958495238,7744],[1310958496238,9314],[1310958497238,9083],[1310958498239,8694],[1310958499239,7933],[1310958500241,8023],[1310958501241,7430],[1310958502241,5437] ], - "e_20b_1p_1queue_0": [ [1310959518764,0],[1310959519764,0],[1310959520764,0],[1310959521765,0],[1310959522765,0],[1310959523765,0],[1310959524765,0],[1310959525765,0],[1310959526766,0],[1310959527766,0],[1310959528766,0],[1310959529766,0],[1310959530767,0],[1310959531767,0],[1310959532767,0],[1310959533767,0],[1310959534767,0],[1310959535768,0],[1310959536768,0],[1310959537768,0],[1310959538768,0],[1310959539769,0],[1310959540769,0],[1310959541769,0],[1310959542769,0],[1310959543769,0],[1310959544770,0],[1310959545770,0],[1310959546770,0],[1310959547770,0] ], - "p_20b_10a_1topic_10": [ [1310959078535,37645],[1310959079535,28851],[1310959080536,41088],[1310959081536,38703],[1310959082538,47554],[1310959083539,45414],[1310959084539,45744],[1310959085547,46764],[1310959086548,45538],[1310959087548,41534],[1310959088548,44962],[1310959089549,46092],[1310959090549,28385],[1310959091550,50225],[1310959092550,47697] ], - "e_20b_5p_1queue_5": [ [1310959167590,0],[1310959168590,0],[1310959169590,0],[1310959170591,0],[1310959171591,0],[1310959172591,0],[1310959173591,0],[1310959174592,0],[1310959175592,0],[1310959176592,0],[1310959177592,0],[1310959178592,0],[1310959179593,0],[1310959180593,0],[1310959181593,0] ], - "c_256k_1p_1topic_1": [ [1310958697446,293],[1310958698446,295],[1310958699449,289],[1310958700449,292],[1310958701449,232],[1310958702450,309],[1310958703451,289],[1310958704452,213],[1310958705452,234],[1310958706452,300],[1310958707452,247],[1310958708453,305],[1310958709453,298],[1310958710453,308],[1310958711453,309] ], - "c_20b_5p_5topic_5": [ [1310958604886,13504],[1310958605887,13434],[1310958606887,13488],[1310958607887,13507],[1310958608887,13354],[1310958609888,13483],[1310958610888,13552],[1310958611888,13215],[1310958612888,13675],[1310958613888,13325],[1310958614889,13601],[1310958615889,13552],[1310958616889,13430],[1310958617889,13350],[1310958618890,13317] ], - "e_256k_5a_5queue_5": [ [1310958156668,0],[1310958157673,0],[1310958158674,0],[1310958159674,0],[1310958160678,0],[1310958161678,0],[1310958162678,0],[1310958163679,0],[1310958164681,0],[1310958165681,0],[1310958166686,0],[1310958167688,0],[1310958168689,0],[1310958169689,0],[1310958170690,0] ] -} diff --git a/reports/osx-8-core/hornetq-2.2.5.Final.json b/reports/osx-8-core/hornetq-2.2.5.Final.json deleted file mode 100644 index 9b5704d..0000000 --- a/reports/osx-8-core/hornetq-2.2.5.Final.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "benchmark_settings": { - "broker_name": "JBoss HornetQ 2.2.5.Final", - "url": "tcp://localhost:5445", - "sample_count": 15, - "sample_interval": 1000, - "warm_up_count": 3, - "scenario_connection_scale_rate": 50 - }, - "p_20b_5p_1queue_1": [ [1310565815752,1467],[1310565816752,1495],[1310565817752,1490],[1310565818752,1495],[1310565819752,1495],[1310565820753,1480],[1310565821753,1401],[1310565822753,1495],[1310565823753,1490],[1310565824753,1495],[1310565825754,1481],[1310565826754,1490],[1310565827754,1495],[1310565828754,1492],[1310565829754,1495] ], - "p_20b_10a_10queue_10": [ [1310564695290,25497],[1310564696291,25562],[1310564697291,26930],[1310564698291,25899],[1310564699292,26183],[1310564700292,28817],[1310564701292,28742],[1310564702292,31204],[1310564703293,30321],[1310564704293,30220],[1310564705293,32121],[1310564706293,33250],[1310564707293,30847],[1310564708294,28736],[1310564709294,29752] ], - "e_256k_1p_1queue_1": [ [1310565217392,0],[1310565218392,0],[1310565219393,0],[1310565220393,0],[1310565221393,0],[1310565222393,0],[1310565223394,0],[1310565224394,0],[1310565225394,0],[1310565226394,0],[1310565227394,0],[1310565228395,0],[1310565229395,0],[1310565230395,0],[1310565231395,0] ], - "p_20b_1a_1queue_0": [ [1310566197054,0],[1310566198055,0],[1310566199055,0],[1310566200055,0],[1310566201055,0],[1310566202055,0],[1310566203055,0],[1310566204056,0],[1310566205056,0],[1310566206056,0],[1310566207056,0],[1310566208056,0],[1310566209056,0],[1310566210056,0],[1310566211056,0],[1310566212057,0],[1310566213057,0],[1310566214057,0],[1310566215057,0],[1310566216057,0],[1310566217057,0],[1310566218058,0],[1310566219058,0],[1310566220058,0],[1310566221058,0],[1310566222058,0],[1310566223058,0],[1310566224059,0],[1310566225059,0],[1310566226059,0] ], - "p_20b_1a_1queue_5": [ [1310565527056,31902],[1310565528056,31784],[1310565529056,31849],[1310565530056,32023],[1310565531057,31817],[1310565532057,32064],[1310565533057,31953],[1310565534057,31928],[1310565535057,31811],[1310565536058,32324],[1310565537058,31844],[1310565538058,32065],[1310565539058,31883],[1310565540059,31866],[1310565541059,32015] ], - "p_256k_1p_1queue_1": [ [1310565217392,102],[1310565218392,108],[1310565219393,105],[1310565220393,116],[1310565221393,118],[1310565222393,118],[1310565223394,116],[1310565224394,117],[1310565225394,119],[1310565226394,61],[1310565227394,0],[1310565228395,0],[1310565229395,0],[1310565230395,0],[1310565231395,63] ], - "e_20b_10p_10queue_10": [ [1310565121283,0],[1310565122284,0],[1310565123284,0],[1310565124284,0],[1310565125284,0],[1310565126284,0],[1310565127285,0],[1310565128285,0],[1310565129285,0],[1310565130285,0],[1310565131285,0],[1310565132286,0],[1310565133286,0],[1310565134286,0],[1310565135286,0] ], - "p_20b_5p_5topic_5": [ [1310565334582,17093],[1310565335582,17110],[1310565336582,17112],[1310565337583,17189],[1310565338583,17239],[1310565339583,17111],[1310565340583,17058],[1310565341584,17163],[1310565342584,17196],[1310565343584,17192],[1310565344584,17276],[1310565345585,17320],[1310565346585,17179],[1310565347585,17205],[1310565348585,17178] ], - "e_20b_1a_1topic_10": [ [1310565761486,0],[1310565762486,0],[1310565763486,0],[1310565764487,0],[1310565765487,0],[1310565766487,0],[1310565767487,0],[1310565768488,0],[1310565769488,0],[1310565770488,0],[1310565771488,0],[1310565772488,0],[1310565773489,0],[1310565774489,0],[1310565775489,0] ], - "e_20b_1p_1queue_10": [ [1310565932839,0],[1310565933839,0],[1310565934839,0],[1310565935839,0],[1310565936839,0],[1310565937840,0],[1310565938840,0],[1310565939840,0],[1310565940840,0],[1310565941840,0],[1310565942841,0],[1310565943841,0],[1310565944841,0],[1310565945841,0],[1310565946841,0] ], - "c_20b_10p_1topic_1": [ [1310566016918,17019],[1310566017918,17032],[1310566018919,17072],[1310566019919,17028],[1310566020919,16975],[1310566021919,16989],[1310566022920,17119],[1310566023920,17136],[1310566024920,16834],[1310566025920,17008],[1310566026920,16930],[1310566027921,16977],[1310566028921,17068],[1310566029921,17091],[1310566030921,17056] ], - "e_20b_1a_1queue_10": [ [1310565599165,0],[1310565600165,0],[1310565601165,0],[1310565602165,0],[1310565603166,0],[1310565604166,0],[1310565605166,0],[1310565606166,0],[1310565607166,0],[1310565608167,0],[1310565609167,0],[1310565610167,0],[1310565611167,0],[1310565612168,0],[1310565613168,0] ], - "c_1k_1a_1topic_1": [ [1310564966951,25973],[1310564967951,26491],[1310564968951,26287],[1310564969951,25955],[1310564970951,26253],[1310564971952,26224],[1310564972952,26195],[1310564973952,26309],[1310564974952,25809],[1310564975953,26392],[1310564976953,26061],[1310564977953,25813],[1310564978954,25989],[1310564979954,26219],[1310564980954,26479] ], - "p_20b_1a_1topic_10": [ [1310565761486,3310],[1310565762486,3310],[1310565763486,3310],[1310565764487,3640],[1310565765487,3310],[1310565766487,3238],[1310565767487,3375],[1310565768488,3317],[1310565769488,3310],[1310565770488,3631],[1310565771488,3320],[1310565772488,3310],[1310565773489,3310],[1310565774489,3309],[1310565775489,3310] ], - "p_256k_5p_5topic_5": [ [1310565442699,113],[1310565443699,132],[1310565444700,111],[1310565445700,128],[1310565446700,124],[1310565447700,115],[1310565448701,128],[1310565449701,73],[1310565450701,135],[1310565451702,114],[1310565452702,128],[1310565453702,116],[1310565454702,111],[1310565455703,127],[1310565456703,119] ], - "e_256k_10p_10topic_10": [ [1310565460858,0],[1310565461858,0],[1310565462858,0],[1310565463859,0],[1310565464859,0],[1310565465859,0],[1310565466859,0],[1310565467860,0],[1310565468860,0],[1310565469860,0],[1310565470860,0],[1310565471861,0],[1310565472861,0],[1310565473861,0],[1310565474862,0] ], - "c_1k_1p_1topic_1": [ [1310565370613,6377],[1310565371613,6410],[1310565372613,6347],[1310565373613,6320],[1310565374614,6435],[1310565375614,6327],[1310565376614,6284],[1310565377614,6297],[1310565378614,6395],[1310565379615,6465],[1310565380615,6335],[1310565381615,6281],[1310565382615,6297],[1310565383616,6381],[1310565384616,6403] ], - "c_20b_1a_1topic_1": [ [1310564912811,28175],[1310564913811,28167],[1310564914811,27594],[1310564915812,28157],[1310564916812,27569],[1310564917812,27541],[1310564918812,29338],[1310564919813,28769],[1310564920813,25861],[1310564921813,28150],[1310564922813,28194],[1310564923813,26657],[1310564924814,26955],[1310564925814,27445],[1310564926814,27579] ], - "c_20b_5p_1topic_5": [ [1310566052940,28408],[1310566053940,28635],[1310566054940,28828],[1310566055941,28693],[1310566056941,28524],[1310566057941,28891],[1310566058941,28160],[1310566059941,28554],[1310566060942,28465],[1310566061942,28625],[1310566062942,28253],[1310566063942,28607],[1310566064943,28690],[1310566065943,28490],[1310566066943,28288] ], - "p_1k_1p_1queue_1": [ [1310565145317,299],[1310565146317,299],[1310565147317,299],[1310565148317,299],[1310565149318,299],[1310565150318,299],[1310565151318,299],[1310565152318,299],[1310565153318,299],[1310565154319,299],[1310565155319,299],[1310565156319,299],[1310565157319,274],[1310565158319,299],[1310565159320,299] ], - "e_1k_10a_10queue_10": [ [1310564767454,0],[1310564768454,0],[1310564769454,0],[1310564770454,0],[1310564771455,0],[1310564772455,0],[1310564773455,0],[1310564774455,0],[1310564775456,0],[1310564776456,0],[1310564777456,0],[1310564778456,0],[1310564779457,0],[1310564780457,0],[1310564781457,0] ], - "c_256k_5p_5topic_5": [ [1310565442699,113],[1310565443699,125],[1310565444700,122],[1310565445700,122],[1310565446700,129],[1310565447700,108],[1310565448701,93],[1310565449701,96],[1310565450701,126],[1310565451702,131],[1310565452702,132],[1310565453702,117],[1310565454702,120],[1310565455703,115],[1310565456703,120] ], - "p_20b_1p_1queue_10": [ [1310565932839,299],[1310565933839,299],[1310565934839,299],[1310565935839,299],[1310565936839,299],[1310565937840,299],[1310565938840,299],[1310565939840,300],[1310565940840,299],[1310565941840,299],[1310565942841,278],[1310565943841,299],[1310565944841,299],[1310565945841,299],[1310565946841,299] ], - "p_20b_10p_1topic_10": [ [1310566125000,3150],[1310566126000,3129],[1310566127001,3134],[1310566128001,3164],[1310566129001,3076],[1310566130001,3108],[1310566131002,3136],[1310566132002,3128],[1310566133002,3109],[1310566134002,3138],[1310566135003,3099],[1310566136003,3147],[1310566137003,3147],[1310566138003,3132],[1310566139003,3152] ], - "p_1k_1p_1topic_1": [ [1310565370613,6377],[1310565371613,6410],[1310565372613,6347],[1310565373613,6320],[1310565374614,6435],[1310565375614,6327],[1310565376614,6284],[1310565377614,6297],[1310565378614,6395],[1310565379615,6465],[1310565380615,6335],[1310565381615,6281],[1310565382615,6297],[1310565383616,6381],[1310565384616,6403] ], - "e_20b_10a_10queue_10": [ [1310564695290,0],[1310564696291,0],[1310564697291,0],[1310564698291,0],[1310564699292,0],[1310564700292,0],[1310564701292,0],[1310564702292,0],[1310564703293,0],[1310564704293,0],[1310564705293,0],[1310564706293,0],[1310564707293,0],[1310564708294,0],[1310564709294,0] ], - "p_256k_10a_10topic_10": [ [1310565057803,75],[1310565058804,164],[1310565059804,90],[1310565060805,156],[1310565061805,97],[1310565062805,139],[1310565063805,89],[1310565064806,136],[1310565065806,110],[1310565066806,17],[1310565067806,155],[1310565068807,84],[1310565069807,149],[1310565070807,92],[1310565071807,129] ], - "p_256k_1p_1topic_1": [ [1310565424666,120],[1310565425666,127],[1310565426666,118],[1310565427666,116],[1310565428666,74],[1310565429667,148],[1310565430667,117],[1310565431667,98],[1310565432667,141],[1310565433668,126],[1310565434668,120],[1310565435668,111],[1310565436668,134],[1310565437668,126],[1310565438669,127] ], - "e_256k_10a_10topic_10": [ [1310565057803,0],[1310565058804,0],[1310565059804,0],[1310565060805,0],[1310565061805,0],[1310565062805,0],[1310565063805,0],[1310565064806,0],[1310565065806,0],[1310565066806,0],[1310565067806,0],[1310565068807,0],[1310565069807,0],[1310565070807,0],[1310565071807,0] ], - "e_20b_10a_1queue_5": [ [1310565575102,0],[1310565576103,0],[1310565577103,0],[1310565578103,0],[1310565579103,0],[1310565580104,0],[1310565581104,0],[1310565582104,0],[1310565583104,0],[1310565584104,0],[1310565585105,0],[1310565586105,0],[1310565587105,0],[1310565588105,0],[1310565589106,0] ], - "p_1k_10p_10queue_10": [ [1310565193360,2988],[1310565194360,2974],[1310565195360,2968],[1310565196360,2965],[1310565197360,2980],[1310565198361,2975],[1310565199361,2980],[1310565200361,2961],[1310565201361,2977],[1310565202362,2981],[1310565203362,2956],[1310565204362,2972],[1310565205362,2967],[1310565206362,2985],[1310565207363,2956] ], - "e_20b_5a_1queue_1": [ [1310565478989,0],[1310565479989,0],[1310565480990,0],[1310565481990,0],[1310565482990,0],[1310565483990,0],[1310565484991,0],[1310565485991,0],[1310565486991,0],[1310565487991,0],[1310565488991,0],[1310565489992,0],[1310565490992,0],[1310565491992,0],[1310565492992,0] ], - "c_1k_5a_5queue_5": [ [1310564743424,28844],[1310564744424,28942],[1310564745425,28855],[1310564746425,28897],[1310564747425,28896],[1310564748425,28801],[1310564749426,28927],[1310564750426,28683],[1310564751426,28947],[1310564752426,29034],[1310564753427,28734],[1310564754427,28835],[1310564755427,28818],[1310564756427,28535],[1310564757427,28938] ], - "c_20b_1a_1queue_1": [ [1310564647136,31326],[1310564648143,30371],[1310564649144,29589],[1310564650144,25022],[1310564651144,24821],[1310564652144,24687],[1310564653144,25075],[1310564654145,25249],[1310564655145,25437],[1310564656145,24908],[1310564657145,24752],[1310564658145,24541],[1310564659146,24284],[1310564660146,24339],[1310564661146,23963] ], - "p_20b_1a_1queue_1": [ [1310564647136,31173],[1310564648143,30424],[1310564649144,29458],[1310564650144,25152],[1310564651144,24828],[1310564652144,24705],[1310564653144,25028],[1310564654145,25275],[1310564655145,25301],[1310564656145,25136],[1310564657145,24821],[1310564658145,24496],[1310564659146,24163],[1310564660146,24218],[1310564661146,24106] ], - "c_20b_5p_1topic_1": [ [1310565998907,17052],[1310565999907,17085],[1310566000908,16973],[1310566001908,17110],[1310566002908,16956],[1310566003908,17127],[1310566004909,17138],[1310566005909,17048],[1310566006909,17051],[1310566007909,17147],[1310566008909,17012],[1310566009910,17110],[1310566010910,17149],[1310566011910,16996],[1310566012910,17138] ], - "e_20b_0_1queue_1": [ [1310566263071,0],[1310566264071,0],[1310566265071,0],[1310566266071,0],[1310566267072,0],[1310566268072,0],[1310566269072,0],[1310566270072,0],[1310566271072,0],[1310566272072,0],[1310566273073,0],[1310566274073,0],[1310566275073,0],[1310566276073,0],[1310566277073,0],[1310566278073,0],[1310566279074,0],[1310566280074,0],[1310566281074,0],[1310566282074,0],[1310566283074,0],[1310566284075,0],[1310566285075,0],[1310566286075,0],[1310566287075,0],[1310566288075,0],[1310566289075,0],[1310566290076,0],[1310566291076,0],[1310566292076,0] ], - "e_20b_10a_1queue_1": [ [1310565503017,0],[1310565504018,0],[1310565505018,0],[1310565506018,0],[1310565507018,0],[1310565508018,0],[1310565509019,0],[1310565510019,0],[1310565511019,0],[1310565512019,0],[1310565513020,0],[1310565514020,0],[1310565515020,0],[1310565516020,0],[1310565517021,0] ], - "e_1k_5p_5topic_5": [ [1310565388624,0],[1310565389624,0],[1310565390624,0],[1310565391624,0],[1310565392625,0],[1310565393625,0],[1310565394625,0],[1310565395625,0],[1310565396626,0],[1310565397626,0],[1310565398626,0],[1310565399626,0],[1310565400627,0],[1310565401627,0],[1310565402627,0] ], - "c_20b_5p_1topic_10": [ [1310566106984,30326],[1310566107984,31304],[1310566108984,30713],[1310566109984,30987],[1310566110985,31070],[1310566111985,31418],[1310566112985,31342],[1310566113985,31330],[1310566114986,31350],[1310566115986,31820],[1310566116986,31732],[1310566117986,30785],[1310566118986,30693],[1310566119987,31255],[1310566120987,31185] ], - "p_20b_5p_1queue_10": [ [1310565953862,1495],[1310565954863,1495],[1310565955863,1495],[1310565956863,1479],[1310565957863,1495],[1310565958863,1494],[1310565959864,1493],[1310565960864,1493],[1310565961864,1495],[1310565962864,1495],[1310565963865,1495],[1310565964865,1495],[1310565965865,1495],[1310565966865,1495],[1310565967865,1488] ], - "p_256k_10a_10queue_10": [ [1310564888079,104],[1310564889092,135],[1310564890092,125],[1310564891092,122],[1310564892092,107],[1310564893093,125],[1310564894093,119],[1310564895093,53],[1310564896093,159],[1310564897094,73],[1310564898094,118],[1310564899094,120],[1310564900094,112],[1310564901095,124],[1310564902095,111] ], - "p_1k_5p_5topic_5": [ [1310565388624,16025],[1310565389624,16071],[1310565390624,16078],[1310565391624,16016],[1310565392625,16111],[1310565393625,16074],[1310565394625,16115],[1310565395625,16136],[1310565396626,16063],[1310565397626,16159],[1310565398626,15914],[1310565399626,16084],[1310565400627,16049],[1310565401627,16020],[1310565402627,16111] ], - "p_20b_10p_1queue_5": [ [1310565908819,2990],[1310565909819,2990],[1310565910819,2990],[1310565911819,2950],[1310565912820,2757],[1310565913820,2983],[1310565914820,2990],[1310565915820,2990],[1310565916820,2990],[1310565917821,2983],[1310565918821,2990],[1310565919821,2980],[1310565920821,2990],[1310565921821,2990],[1310565922822,2979] ], - "c_20b_10p_10topic_10": [ [1310565352598,17212],[1310565353598,17325],[1310565354599,17291],[1310565355599,17118],[1310565356599,17238],[1310565357599,17269],[1310565358600,17206],[1310565359600,17295],[1310565360600,17246],[1310565361600,17305],[1310565362601,17302],[1310565363601,17365],[1310565364601,17257],[1310565365601,17231],[1310565366601,17269] ], - "p_20b_5p_1topic_10": [ [1310566106984,3032],[1310566107984,3132],[1310566108984,3071],[1310566109984,3099],[1310566110985,3106],[1310566111985,3142],[1310566112985,3135],[1310566113985,3133],[1310566114986,3135],[1310566115986,3182],[1310566116986,3173],[1310566117986,3078],[1310566118986,3070],[1310566119987,3125],[1310566120987,3119] ], - "p_20b_5p_1topic_5": [ [1310566052940,5682],[1310566053940,5726],[1310566054940,5766],[1310566055941,5738],[1310566056941,5705],[1310566057941,5778],[1310566058941,5633],[1310566059941,5711],[1310566060942,5692],[1310566061942,5725],[1310566062942,5651],[1310566063942,5722],[1310566064943,5738],[1310566065943,5697],[1310566066943,5658] ], - "c_20b_10p_1topic_5": [ [1310566070954,28630],[1310566071954,28135],[1310566072954,28576],[1310566073954,28259],[1310566074955,28645],[1310566075955,28595],[1310566076955,28565],[1310566077955,28569],[1310566078956,28446],[1310566079956,28426],[1310566080956,28534],[1310566081956,28690],[1310566082956,28040],[1310566083957,28369],[1310566084957,28396] ], - "c_256k_10a_10topic_10": [ [1310565057803,114],[1310565058804,124],[1310565059804,110],[1310565060805,131],[1310565061805,107],[1310565062805,116],[1310565063805,126],[1310565064806,110],[1310565065806,104],[1310565066806,91],[1310565067806,92],[1310565068807,108],[1310565069807,124],[1310565070807,107],[1310565071807,109] ], - "e_1k_1a_1topic_1": [ [1310564966951,0],[1310564967951,0],[1310564968951,0],[1310564969951,0],[1310564970951,0],[1310564971952,0],[1310564972952,0],[1310564973952,0],[1310564974952,0],[1310564975953,0],[1310564976953,0],[1310564977953,0],[1310564978954,0],[1310564979954,0],[1310564980954,0] ], - "c_256k_10p_10topic_10": [ [1310565460858,93],[1310565461858,119],[1310565462858,101],[1310565463859,120],[1310565464859,114],[1310565465859,111],[1310565466859,100],[1310565467860,111],[1310565468860,101],[1310565469860,108],[1310565470860,114],[1310565471861,114],[1310565472861,111],[1310565473861,113],[1310565474862,112] ], - "c_20b_10a_1topic_5": [ [1310565743444,30328],[1310565744444,29800],[1310565745444,27980],[1310565746445,30503],[1310565747445,29148],[1310565748445,29122],[1310565749445,30696],[1310565750446,30488],[1310565751446,29735],[1310565752446,29136],[1310565753446,29871],[1310565754447,28609],[1310565755447,29510],[1310565756447,28860],[1310565757447,29662] ], - "c_1k_10a_10queue_10": [ [1310564767454,29296],[1310564768454,29382],[1310564769454,29328],[1310564770454,29373],[1310564771455,29237],[1310564772455,29235],[1310564773455,29513],[1310564774455,29330],[1310564775456,29314],[1310564776456,29297],[1310564777456,29178],[1310564778456,29334],[1310564779457,29440],[1310564780457,29293],[1310564781457,29035] ], - "p_20b_1a_1topic_1": [ [1310564912811,30443],[1310564913811,29519],[1310564914811,29787],[1310564915812,29786],[1310564916812,29198],[1310564917812,28737],[1310564918812,31763],[1310564919813,29463],[1310564920813,25817],[1310564921813,28214],[1310564922813,28082],[1310564923813,26783],[1310564924814,26529],[1310564925814,28059],[1310564926814,27497] ], - "e_1k_10p_10topic_10": [ [1310565406643,0],[1310565407643,0],[1310565408644,0],[1310565409644,0],[1310565410644,0],[1310565411645,0],[1310565412645,0],[1310565413645,0],[1310565414645,0],[1310565415646,0],[1310565416646,0],[1310565417646,0],[1310565418646,0],[1310565419647,0],[1310565420647,0] ], - "c_20b_10p_1queue_10": [ [1310565974886,2988],[1310565975886,2982],[1310565976887,2975],[1310565977887,2988],[1310565978887,2984],[1310565979887,2988],[1310565980887,2964],[1310565981888,2974],[1310565982888,2990],[1310565983888,2984],[1310565984888,2990],[1310565985888,2990],[1310565986889,2965],[1310565987889,2959],[1310565988889,2982] ], - "e_20b_1a_1topic_0": [ [1310566143015,0],[1310566144015,0],[1310566145016,0],[1310566146016,0],[1310566147016,0],[1310566148016,0],[1310566149017,0],[1310566150017,0],[1310566151017,0],[1310566152017,0],[1310566153017,0],[1310566154018,0],[1310566155018,0],[1310566156018,0],[1310566157018,0] ], - "p_1k_5a_5topic_5": [ [1310564984964,28487],[1310564985964,28573],[1310564986964,28677],[1310564987964,28462],[1310564988965,28716],[1310564989965,28476],[1310564990965,28500],[1310564991965,28428],[1310564992966,28529],[1310564993966,28608],[1310564994966,28538],[1310564995966,28637],[1310564996967,28289],[1310564997967,28548],[1310564998967,28459] ], - "p_20b_1p_1topic_10": [ [1310566088969,2465],[1310566089969,2485],[1310566090969,2473],[1310566091970,2523],[1310566092970,2480],[1310566093970,2501],[1310566094970,2457],[1310566095971,2522],[1310566096971,2477],[1310566097971,2499],[1310566098971,2492],[1310566099972,2516],[1310566100972,2498],[1310566101972,2491],[1310566102972,2488] ], - "p_20b_1a_1queue_10": [ [1310565599165,31785],[1310565600165,32106],[1310565601165,32214],[1310565602165,32329],[1310565603166,32437],[1310565604166,32106],[1310565605166,32391],[1310565606166,31821],[1310565607166,32073],[1310565608167,31808],[1310565609167,32232],[1310565610167,32311],[1310565611167,32111],[1310565612168,32189],[1310565613168,32349] ], - "e_20b_5a_1queue_10": [ [1310565623185,0],[1310565624185,0],[1310565625186,0],[1310565626186,0],[1310565627186,0],[1310565628186,0],[1310565629187,0],[1310565630187,0],[1310565631187,0],[1310565632187,0],[1310565633187,0],[1310565634188,0],[1310565635188,0],[1310565636188,0],[1310565637188,0] ], - "c_256k_10p_10queue_10": [ [1310565292493,113],[1310565293493,112],[1310565294493,117],[1310565295493,120],[1310565296494,104],[1310565297494,125],[1310565298494,110],[1310565299494,117],[1310565300495,114],[1310565301495,121],[1310565302496,96],[1310565303496,105],[1310565304496,116],[1310565305496,121],[1310565306497,110] ], - "p_1k_1a_1queue_1": [ [1310564719409,25660],[1310564720409,25537],[1310564721410,25672],[1310564722410,25948],[1310564723410,25693],[1310564724410,25876],[1310564725411,25678],[1310564726411,25650],[1310564727411,25901],[1310564728411,25456],[1310564729411,25959],[1310564730412,25992],[1310564731412,25748],[1310564732412,25786],[1310564733412,25599] ], - "e_20b_1a_1topic_1": [ [1310564912811,0],[1310564913811,0],[1310564914811,0],[1310564915812,0],[1310564916812,0],[1310564917812,0],[1310564918812,0],[1310564919813,0],[1310564920813,0],[1310564921813,0],[1310564922813,0],[1310564923813,0],[1310564924814,0],[1310564925814,0],[1310564926814,0] ], - "p_1k_5a_5queue_5": [ [1310564743424,28858],[1310564744424,28927],[1310564745425,28879],[1310564746425,28898],[1310564747425,28894],[1310564748425,28790],[1310564749426,28924],[1310564750426,28678],[1310564751426,28959],[1310564752426,29030],[1310564753427,28729],[1310564754427,28849],[1310564755427,28803],[1310564756427,28550],[1310564757427,28929] ], - "c_20b_5p_1queue_1": [ [1310565815752,1467],[1310565816752,1495],[1310565817752,1490],[1310565818752,1495],[1310565819752,1495],[1310565820753,1480],[1310565821753,1401],[1310565822753,1495],[1310565823753,1490],[1310565824753,1495],[1310565825754,1481],[1310565826754,1490],[1310565827754,1495],[1310565828754,1492],[1310565829754,1495] ], - "c_20b_10p_1queue_1": [ [1310565839764,2975],[1310565840764,2980],[1310565841764,2990],[1310565842765,2990],[1310565843765,2990],[1310565844765,2967],[1310565845765,2990],[1310565846766,2990],[1310565847766,2970],[1310565848766,2980],[1310565849766,2988],[1310565850766,2974],[1310565851767,2760],[1310565852767,2990],[1310565853767,2990] ], - "c_256k_1a_1queue_1": [ [1310564791498,31],[1310564792499,31],[1310564793499,32],[1310564794499,30],[1310564795499,30],[1310564796499,31],[1310564797500,31],[1310564798500,30],[1310564799500,31],[1310564800500,31],[1310564801500,31],[1310564802501,31],[1310564803501,31],[1310564804501,30],[1310564805501,31] ], - "e_20b_1p_1topic_5": [ [1310566034928,0],[1310566035928,0],[1310566036928,0],[1310566037929,0],[1310566038929,0],[1310566039929,0],[1310566040929,0],[1310566041929,0],[1310566042930,0],[1310566043930,0],[1310566044930,0],[1310566045930,0],[1310566046931,0],[1310566047931,0],[1310566048931,0] ], - "e_1k_10a_10topic_10": [ [1310565002983,0],[1310565003983,0],[1310565004983,0],[1310565005983,0],[1310565006984,0],[1310565007984,0],[1310565008984,0],[1310565009984,0],[1310565010984,0],[1310565011985,0],[1310565012985,0],[1310565013985,0],[1310565014985,0],[1310565015986,0],[1310565016986,0] ], - "p_20b_5a_1topic_1": [ [1310565671303,26475],[1310565672303,25818],[1310565673303,24825],[1310565674303,26149],[1310565675303,25818],[1310565676304,26480],[1310565677304,23168],[1310565678304,26146],[1310565679304,26480],[1310565680305,24825],[1310565681305,27142],[1310565682305,24041],[1310565683305,28213],[1310565684306,26519],[1310565685306,24825] ], - "c_20b_10a_10queue_10": [ [1310564695290,27922],[1310564696291,27502],[1310564697291,26912],[1310564698291,28038],[1310564699292,26954],[1310564700292,29137],[1310564701292,28783],[1310564702292,31473],[1310564703293,29571],[1310564704293,31160],[1310564705293,31266],[1310564706293,33150],[1310564707293,30681],[1310564708294,29033],[1310564709294,30462] ], - "c_20b_5p_5queue_5": [ [1310565100256,1490],[1310565101256,1495],[1310565102256,1490],[1310565103256,1490],[1310565104256,1490],[1310565105257,1490],[1310565106257,1495],[1310565107257,1490],[1310565108257,1490],[1310565109257,1495],[1310565110258,1490],[1310565111258,1495],[1310565112258,1490],[1310565113258,1495],[1310565114258,1495] ], - "e_20b_5p_5queue_5": [ [1310565100256,0],[1310565101256,0],[1310565102256,0],[1310565103256,0],[1310565104256,0],[1310565105257,0],[1310565106257,0],[1310565107257,0],[1310565108257,0],[1310565109257,0],[1310565110258,0],[1310565111258,0],[1310565112258,0],[1310565113258,0],[1310565114258,0] ], - "c_20b_1a_1topic_5": [ [1310565707350,33081],[1310565708350,33326],[1310565709350,32898],[1310565710351,33044],[1310565711351,32730],[1310565712351,32781],[1310565713351,32872],[1310565714352,32751],[1310565715352,32519],[1310565716352,33115],[1310565717352,32795],[1310565718353,33341],[1310565719353,32946],[1310565720353,33310],[1310565721353,32885] ], - "e_256k_5p_5queue_5": [ [1310565268419,0],[1310565269420,0],[1310565270420,0],[1310565271420,0],[1310565272421,0],[1310565273421,0],[1310565274421,0],[1310565275421,0],[1310565276421,0],[1310565277422,0],[1310565278422,0],[1310565279429,0],[1310565280429,0],[1310565281429,0],[1310565282429,0] ], - "e_1k_5a_5queue_5": [ [1310564743424,0],[1310564744424,0],[1310564745425,0],[1310564746425,0],[1310564747425,0],[1310564748425,0],[1310564749426,0],[1310564750426,0],[1310564751426,0],[1310564752426,0],[1310564753427,0],[1310564754427,0],[1310564755427,0],[1310564756427,0],[1310564757427,0] ], - "e_20b_1p_1topic_10": [ [1310566088969,0],[1310566089969,0],[1310566090969,0],[1310566091970,0],[1310566092970,0],[1310566093970,0],[1310566094970,0],[1310566095971,0],[1310566096971,0],[1310566097971,0],[1310566098971,0],[1310566099972,0],[1310566100972,0],[1310566101972,0],[1310566102972,0] ], - "e_20b_1a_1queue_1": [ [1310564647136,0],[1310564648143,0],[1310564649144,0],[1310564650144,0],[1310564651144,0],[1310564652144,0],[1310564653144,0],[1310564654145,0],[1310564655145,0],[1310564656145,0],[1310564657145,0],[1310564658145,0],[1310564659146,0],[1310564660146,0],[1310564661146,0] ], - "p_20b_5a_1topic_10": [ [1310565779556,3310],[1310565780557,3310],[1310565781557,1655],[1310565782557,3310],[1310565783557,3310],[1310565784558,3310],[1310565785558,3310],[1310565786558,3310],[1310565787558,3972],[1310565788559,2979],[1310565789559,3310],[1310565790559,2979],[1310565791559,3310],[1310565792559,3310],[1310565793560,4965] ], - "e_20b_5p_1topic_1": [ [1310565998907,0],[1310565999907,0],[1310566000908,0],[1310566001908,0],[1310566002908,0],[1310566003908,0],[1310566004909,0],[1310566005909,0],[1310566006909,0],[1310566007909,0],[1310566008909,0],[1310566009910,0],[1310566010910,0],[1310566011910,0],[1310566012910,0] ], - "p_1k_1a_1topic_1": [ [1310564966951,25982],[1310564967951,26483],[1310564968951,26290],[1310564969951,25956],[1310564970951,26252],[1310564971952,26221],[1310564972952,26194],[1310564973952,26309],[1310564974952,25816],[1310564975953,26387],[1310564976953,26061],[1310564977953,25811],[1310564978954,25986],[1310564979954,26223],[1310564980954,26483] ], - "e_20b_10p_1queue_1": [ [1310565839764,0],[1310565840764,0],[1310565841764,0],[1310565842765,0],[1310565843765,0],[1310565844765,0],[1310565845765,0],[1310565846766,0],[1310565847766,0],[1310565848766,0],[1310565849766,0],[1310565850766,0],[1310565851767,0],[1310565852767,0],[1310565853767,0] ], - "e_20b_5a_1topic_5": [ [1310565725395,0],[1310565726395,0],[1310565727395,0],[1310565728396,0],[1310565729396,0],[1310565730396,0],[1310565731396,0],[1310565732396,0],[1310565733397,0],[1310565734397,0],[1310565735397,0],[1310565736397,0],[1310565737398,0],[1310565738398,0],[1310565739398,0] ], - "p_20b_1p_1topic_1": [ [1310565316571,6696],[1310565317571,6762],[1310565318572,6744],[1310565319572,6778],[1310565320572,6721],[1310565321572,6762],[1310565322573,6598],[1310565323573,6655],[1310565324573,6760],[1310565325573,6588],[1310565326573,6746],[1310565327574,6682],[1310565328574,6741],[1310565329574,6677],[1310565330574,6672] ], - "c_256k_1a_1topic_1": [ [1310565021004,32],[1310565022005,32],[1310565023005,32],[1310565024005,31],[1310565025005,32],[1310565026005,31],[1310565027006,32],[1310565028006,31],[1310565029006,32],[1310565030006,32],[1310565031007,31],[1310565032007,31],[1310565033007,32],[1310565034007,32],[1310565035008,32] ], - "p_20b_5p_1topic_1": [ [1310565998907,17051],[1310565999907,17086],[1310566000908,16973],[1310566001908,17110],[1310566002908,16956],[1310566003908,17126],[1310566004909,17139],[1310566005909,17048],[1310566006909,17051],[1310566007909,17147],[1310566008909,17011],[1310566009910,17110],[1310566010910,17149],[1310566011910,16997],[1310566012910,17138] ], - "p_20b_5p_1queue_5": [ [1310565884798,1495],[1310565885798,1495],[1310565886798,1495],[1310565887798,1492],[1310565888799,1491],[1310565889799,1495],[1310565890799,1495],[1310565891799,1487],[1310565892799,1495],[1310565893800,1495],[1310565894800,1495],[1310565895800,1495],[1310565896800,1495],[1310565897800,1495],[1310565898801,1491] ], - "p_20b_10p_10topic_10": [ [1310565352598,17211],[1310565353598,17324],[1310565354599,17293],[1310565355599,17118],[1310565356599,17238],[1310565357599,17268],[1310565358600,17206],[1310565359600,17296],[1310565360600,17245],[1310565361600,17305],[1310565362601,17302],[1310565363601,17366],[1310565364601,17256],[1310565365601,17232],[1310565366601,17269] ], - "e_20b_5a_5topic_5": [ [1310564930826,0],[1310564931826,0],[1310564932826,0],[1310564933826,0],[1310564934827,0],[1310564935827,0],[1310564936827,0],[1310564937827,0],[1310564938828,0],[1310564939828,0],[1310564940828,0],[1310564941828,0],[1310564942828,0],[1310564943829,0],[1310564944829,0] ], - "p_1k_10a_10queue_10": [ [1310564767454,29299],[1310564768454,29368],[1310564769454,29328],[1310564770454,29371],[1310564771455,29210],[1310564772455,29284],[1310564773455,29480],[1310564774455,29374],[1310564775456,29301],[1310564776456,29282],[1310564777456,29179],[1310564778456,29318],[1310564779457,29481],[1310564780457,29253],[1310564781457,29083] ], - "c_1k_10p_10topic_10": [ [1310565406643,16111],[1310565407643,16161],[1310565408644,16047],[1310565409644,16199],[1310565410644,16189],[1310565411645,16056],[1310565412645,16189],[1310565413645,16055],[1310565414645,16184],[1310565415646,16229],[1310565416646,16107],[1310565417646,16182],[1310565418646,16093],[1310565419647,16198],[1310565420647,16100] ], - "c_20b_5p_1queue_10": [ [1310565953862,1495],[1310565954863,1495],[1310565955863,1495],[1310565956863,1479],[1310565957863,1495],[1310565958863,1495],[1310565959864,1493],[1310565960864,1493],[1310565961864,1494],[1310565962864,1495],[1310565963865,1495],[1310565964865,1495],[1310565965865,1495],[1310565966865,1495],[1310565967865,1488] ], - "c_1k_1a_1queue_1": [ [1310564719409,25660],[1310564720409,25540],[1310564721410,25673],[1310564722410,25951],[1310564723410,25686],[1310564724410,25882],[1310564725411,25678],[1310564726411,25646],[1310564727411,25908],[1310564728411,25449],[1310564729411,25965],[1310564730412,25992],[1310564731412,25742],[1310564732412,25789],[1310564733412,25601] ], - "c_20b_10a_1topic_1": [ [1310565689324,24885],[1310565690325,25421],[1310565691325,25072],[1310565692325,26160],[1310565693325,26044],[1310565694325,24900],[1310565695326,26015],[1310565696326,25808],[1310565697326,26367],[1310565698326,24128],[1310565699327,25819],[1310565700330,25538],[1310565701330,24438],[1310565702330,26647],[1310565703331,25148] ], - "e_20b_10p_10topic_10": [ [1310565352598,0],[1310565353598,0],[1310565354599,0],[1310565355599,0],[1310565356599,0],[1310565357599,0],[1310565358600,0],[1310565359600,0],[1310565360600,0],[1310565361600,0],[1310565362601,0],[1310565363601,0],[1310565364601,0],[1310565365601,0],[1310565366601,0] ], - "e_20b_5p_1queue_1": [ [1310565815752,0],[1310565816752,0],[1310565817752,0],[1310565818752,0],[1310565819752,0],[1310565820753,0],[1310565821753,0],[1310565822753,0],[1310565823753,0],[1310565824753,0],[1310565825754,0],[1310565826754,0],[1310565827754,0],[1310565828754,0],[1310565829754,0] ], - "p_20b_10p_1topic_1": [ [1310566016918,17020],[1310566017918,17033],[1310566018919,17071],[1310566019919,17028],[1310566020919,16974],[1310566021919,16990],[1310566022920,17119],[1310566023920,17136],[1310566024920,16833],[1310566025920,17009],[1310566026920,16929],[1310566027921,16978],[1310566028921,17067],[1310566029921,17092],[1310566030921,17055] ], - "e_20b_1a_1queue_5": [ [1310565527056,0],[1310565528056,0],[1310565529056,0],[1310565530056,0],[1310565531057,0],[1310565532057,0],[1310565533057,0],[1310565534057,0],[1310565535057,0],[1310565536058,0],[1310565537058,0],[1310565538058,0],[1310565539058,0],[1310565540059,0],[1310565541059,0] ], - "e_20b_10a_1queue_10": [ [1310565647213,0],[1310565648214,0],[1310565649214,0],[1310565650214,0],[1310565651214,0],[1310565652215,0],[1310565653215,0],[1310565654215,0],[1310565655215,0],[1310565656216,0],[1310565657216,0],[1310565658216,0],[1310565659216,0],[1310565660225,0],[1310565661225,0] ], - "c_20b_5a_5topic_5": [ [1310564930826,27251],[1310564931826,29302],[1310564932826,29358],[1310564933826,29078],[1310564934827,28628],[1310564935827,28394],[1310564936827,29493],[1310564937827,29296],[1310564938828,29623],[1310564939828,31014],[1310564940828,30182],[1310564941828,31028],[1310564942828,30268],[1310564943829,29768],[1310564944829,30226] ], - "c_1k_5p_5topic_5": [ [1310565388624,16027],[1310565389624,16069],[1310565390624,16079],[1310565391624,16016],[1310565392625,16111],[1310565393625,16073],[1310565394625,16115],[1310565395625,16137],[1310565396626,16063],[1310565397626,16158],[1310565398626,15915],[1310565399626,16085],[1310565400627,16047],[1310565401627,16020],[1310565402627,16111] ], - "e_20b_1a_1queue_0": [ [1310566197054,0],[1310566198055,0],[1310566199055,0],[1310566200055,0],[1310566201055,0],[1310566202055,0],[1310566203055,0],[1310566204056,0],[1310566205056,0],[1310566206056,0],[1310566207056,0],[1310566208056,0],[1310566209056,0],[1310566210056,0],[1310566211056,0],[1310566212057,0],[1310566213057,0],[1310566214057,0],[1310566215057,0],[1310566216057,0],[1310566217057,0],[1310566218058,0],[1310566219058,0],[1310566220058,0],[1310566221058,0],[1310566222058,0],[1310566223058,0],[1310566224059,0],[1310566225059,0],[1310566226059,0] ], - "e_256k_10a_10queue_10": [ [1310564888079,0],[1310564889092,0],[1310564890092,0],[1310564891092,0],[1310564892092,0],[1310564893093,0],[1310564894093,0],[1310564895093,0],[1310564896093,0],[1310564897094,0],[1310564898094,0],[1310564899094,0],[1310564900094,0],[1310564901095,0],[1310564902095,0] ], - "c_20b_1p_1topic_5": [ [1310566034928,20407],[1310566035928,20618],[1310566036928,20589],[1310566037929,20357],[1310566038929,20579],[1310566039929,20675],[1310566040929,20416],[1310566041929,20629],[1310566042930,20605],[1310566043930,20420],[1310566044930,20513],[1310566045930,20757],[1310566046931,20600],[1310566047931,20370],[1310566048931,20571] ], - "e_20b_5a_1topic_10": [ [1310565779556,0],[1310565780557,0],[1310565781557,0],[1310565782557,0],[1310565783557,0],[1310565784558,0],[1310565785558,0],[1310565786558,0],[1310565787558,0],[1310565788559,0],[1310565789559,0],[1310565790559,0],[1310565791559,0],[1310565792559,0],[1310565793560,0] ], - "p_20b_10p_1queue_10": [ [1310565974886,2988],[1310565975886,2982],[1310565976887,2975],[1310565977887,2988],[1310565978887,2983],[1310565979887,2989],[1310565980887,2963],[1310565981888,2975],[1310565982888,2990],[1310565983888,2984],[1310565984888,2990],[1310565985888,2990],[1310565986889,2965],[1310565987889,2958],[1310565988889,2983] ], - "e_20b_10p_1topic_1": [ [1310566016918,0],[1310566017918,0],[1310566018919,0],[1310566019919,0],[1310566020919,0],[1310566021919,0],[1310566022920,0],[1310566023920,0],[1310566024920,0],[1310566025920,0],[1310566026920,0],[1310566027921,0],[1310566028921,0],[1310566029921,0],[1310566030921,0] ], - "c_20b_5p_1queue_5": [ [1310565884798,1495],[1310565885798,1495],[1310565886798,1495],[1310565887798,1492],[1310565888799,1491],[1310565889799,1495],[1310565890799,1495],[1310565891799,1487],[1310565892799,1495],[1310565893800,1495],[1310565894800,1495],[1310565895800,1495],[1310565896800,1495],[1310565897800,1495],[1310565898801,1491] ], - "p_20b_10a_1queue_1": [ [1310565503017,24786],[1310565504018,24163],[1310565505018,28466],[1310565506018,24491],[1310565507018,26473],[1310565508018,22508],[1310565509019,27312],[1310565510019,25317],[1310565511019,26149],[1310565512019,24163],[1310565513020,28285],[1310565514020,25329],[1310565515020,23840],[1310565516020,24494],[1310565517021,25487] ], - "c_20b_10a_10topic_10": [ [1310564948880,26065],[1310564949880,27962],[1310564950881,27732],[1310564951881,27820],[1310564952881,26822],[1310564953881,28708],[1310564954882,29055],[1310564955882,30010],[1310564956882,29859],[1310564957882,30343],[1310564958882,29843],[1310564959884,29821],[1310564960884,30653],[1310564961884,30825],[1310564962884,31180] ], - "e_20b_5p_5topic_5": [ [1310565334582,0],[1310565335582,0],[1310565336582,0],[1310565337583,0],[1310565338583,0],[1310565339583,0],[1310565340583,0],[1310565341584,0],[1310565342584,0],[1310565343584,0],[1310565344584,0],[1310565345585,0],[1310565346585,0],[1310565347585,0],[1310565348585,0] ], - "e_20b_5p_1topic_5": [ [1310566052940,0],[1310566053940,0],[1310566054940,0],[1310566055941,0],[1310566056941,0],[1310566057941,0],[1310566058941,0],[1310566059941,0],[1310566060942,0],[1310566061942,0],[1310566062942,0],[1310566063942,0],[1310566064943,0],[1310566065943,0],[1310566066943,0] ], - "e_20b_10p_1queue_10": [ [1310565974886,0],[1310565975886,0],[1310565976887,0],[1310565977887,0],[1310565978887,0],[1310565979887,0],[1310565980887,0],[1310565981888,0],[1310565982888,0],[1310565983888,0],[1310565984888,0],[1310565985888,0],[1310565986889,0],[1310565987889,0],[1310565988889,0] ], - "e_20b_5p_1queue_10": [ [1310565953862,0],[1310565954863,0],[1310565955863,0],[1310565956863,0],[1310565957863,0],[1310565958863,0],[1310565959864,0],[1310565960864,0],[1310565961864,0],[1310565962864,0],[1310565963865,0],[1310565964865,0],[1310565965865,0],[1310565966865,0],[1310565967865,0] ], - "c_20b_10a_1queue_10": [ [1310565647213,29339],[1310565648214,31329],[1310565649214,31371],[1310565650214,30198],[1310565651214,30785],[1310565652215,30623],[1310565653215,30338],[1310565654215,31255],[1310565655215,31766],[1310565656216,30096],[1310565657216,30375],[1310565658216,30209],[1310565659216,29542],[1310565660225,31027],[1310565661225,30268] ], - "c_20b_1a_1queue_10": [ [1310565599165,31898],[1310565600165,32093],[1310565601165,32235],[1310565602165,32234],[1310565603166,32415],[1310565604166,32037],[1310565605166,32380],[1310565606166,31875],[1310565607166,32009],[1310565608167,32033],[1310565609167,32207],[1310565610167,32238],[1310565611167,32212],[1310565612168,32135],[1310565613168,32265] ], - "c_20b_1p_1topic_10": [ [1310566088969,24644],[1310566089969,24855],[1310566090969,24730],[1310566091970,25225],[1310566092970,24800],[1310566093970,25015],[1310566094970,24565],[1310566095971,25228],[1310566096971,24770],[1310566097971,24986],[1310566098971,24919],[1310566099972,25157],[1310566100972,24981],[1310566101972,24909],[1310566102972,24890] ], - "c_20b_10a_1topic_10": [ [1310565797655,27177],[1310565798656,34371],[1310565799656,30699],[1310565800656,37595],[1310565801657,28931],[1310565802657,35120],[1310565803657,33835],[1310565804657,30977],[1310565805658,28080],[1310565806658,31998],[1310565807658,31451],[1310565808658,38822],[1310565809659,30846],[1310565810659,30323],[1310565811659,29058] ], - "c_20b_0_1queue_1": [ [1310566263071,0],[1310566264071,0],[1310566265071,0],[1310566266071,0],[1310566267072,0],[1310566268072,0],[1310566269072,0],[1310566270072,0],[1310566271072,0],[1310566272072,0],[1310566273073,0],[1310566274073,0],[1310566275073,0],[1310566276073,0],[1310566277073,0],[1310566278073,0],[1310566279074,0],[1310566280074,0],[1310566281074,0],[1310566282074,0],[1310566283074,0],[1310566284075,0],[1310566285075,0],[1310566286075,0],[1310566287075,0],[1310566288075,0],[1310566289075,0],[1310566290076,0],[1310566291076,0],[1310566292076,0] ], - "c_256k_10a_10queue_10": [ [1310564888079,111],[1310564889092,98],[1310564890092,91],[1310564891092,170],[1310564892092,145],[1310564893093,114],[1310564894093,116],[1310564895093,114],[1310564896093,103],[1310564897094,116],[1310564898094,69],[1310564899094,90],[1310564900094,123],[1310564901095,136],[1310564902095,125] ], - "c_20b_10p_1topic_10": [ [1310566125000,31489],[1310566126000,31282],[1310566127001,31350],[1310566128001,31645],[1310566129001,30745],[1310566130001,31080],[1310566131002,31360],[1310566132002,31293],[1310566133002,31083],[1310566134002,31392],[1310566135003,30974],[1310566136003,31475],[1310566137003,31465],[1310566138003,31318],[1310566139003,31527] ], - "p_20b_5a_1queue_10": [ [1310565623185,31440],[1310565624185,31445],[1310565625186,31285],[1310565626186,31274],[1310565627186,30783],[1310565628186,31440],[1310565629187,31445],[1310565630187,30452],[1310565631187,31481],[1310565632187,31739],[1310565633187,31175],[1310565634188,31049],[1310565635188,31445],[1310565636188,31647],[1310565637188,31242] ], - "e_1k_5a_5topic_5": [ [1310564984964,0],[1310564985964,0],[1310564986964,0],[1310564987964,0],[1310564988965,0],[1310564989965,0],[1310564990965,0],[1310564991965,0],[1310564992966,0],[1310564993966,0],[1310564994966,0],[1310564995966,0],[1310564996967,0],[1310564997967,0],[1310564998967,0] ], - "p_1k_10p_10topic_10": [ [1310565406643,16110],[1310565407643,16160],[1310565408644,16047],[1310565409644,16200],[1310565410644,16189],[1310565411645,16056],[1310565412645,16189],[1310565413645,16055],[1310565414645,16183],[1310565415646,16229],[1310565416646,16108],[1310565417646,16182],[1310565418646,16093],[1310565419647,16198],[1310565420647,16100] ], - "c_1k_10a_10topic_10": [ [1310565002983,28844],[1310565003983,28853],[1310565004983,28494],[1310565005983,28951],[1310565006984,28973],[1310565007984,28758],[1310565008984,28874],[1310565009984,28654],[1310565010984,28916],[1310565011985,28894],[1310565012985,28906],[1310565013985,28710],[1310565014985,28503],[1310565015986,28904],[1310565016986,28921] ], - "c_20b_1a_1topic_10": [ [1310565761486,33187],[1310565762486,33937],[1310565763486,33558],[1310565764487,33657],[1310565765487,33785],[1310565766487,33233],[1310565767487,33075],[1310565768488,34643],[1310565769488,33410],[1310565770488,33854],[1310565771488,34285],[1310565772488,33328],[1310565773489,33938],[1310565774489,33203],[1310565775489,33372] ], - "e_20b_10p_1queue_5": [ [1310565908819,0],[1310565909819,0],[1310565910819,0],[1310565911819,0],[1310565912820,0],[1310565913820,0],[1310565914820,0],[1310565915820,0],[1310565916820,0],[1310565917821,0],[1310565918821,0],[1310565919821,0],[1310565920821,0],[1310565921821,0],[1310565922822,0] ], - "e_256k_10p_10queue_10": [ [1310565292493,0],[1310565293493,0],[1310565294493,0],[1310565295493,0],[1310565296494,0],[1310565297494,0],[1310565298494,0],[1310565299494,0],[1310565300495,0],[1310565301495,0],[1310565302496,0],[1310565303496,0],[1310565304496,0],[1310565305496,0],[1310565306497,0] ], - "c_1k_5p_5queue_5": [ [1310565169329,1490],[1310565170329,1490],[1310565171329,1498],[1310565172329,1490],[1310565173329,1495],[1310565174330,1488],[1310565175330,1492],[1310565176330,1495],[1310565177330,1490],[1310565178330,1488],[1310565179331,1490],[1310565180331,1495],[1310565181331,1487],[1310565182331,1493],[1310565183332,1494] ], - "e_20b_1p_1queue_5": [ [1310565863779,0],[1310565864779,0],[1310565865780,0],[1310565866780,0],[1310565867780,0],[1310565868780,0],[1310565869780,0],[1310565870781,0],[1310565871781,0],[1310565872781,0],[1310565873781,0],[1310565874781,0],[1310565875782,0],[1310565876782,0],[1310565877782,0] ], - "p_1k_10a_10topic_10": [ [1310565002983,28846],[1310565003983,28866],[1310565004983,28459],[1310565005983,28941],[1310565006984,28991],[1310565007984,28775],[1310565008984,28859],[1310565009984,28655],[1310565010984,28923],[1310565011985,28907],[1310565012985,28868],[1310565013985,28725],[1310565014985,28502],[1310565015986,28880],[1310565016986,28957] ], - "e_256k_1p_1topic_1": [ [1310565424666,0],[1310565425666,0],[1310565426666,0],[1310565427666,0],[1310565428666,0],[1310565429667,0],[1310565430667,0],[1310565431667,0],[1310565432667,0],[1310565433668,0],[1310565434668,0],[1310565435668,0],[1310565436668,0],[1310565437668,0],[1310565438669,0] ], - "c_20b_5a_1topic_5": [ [1310565725395,26659],[1310565726395,26211],[1310565727395,25870],[1310565728396,26687],[1310565729396,26969],[1310565730396,27200],[1310565731396,27372],[1310565732396,26753],[1310565733397,28609],[1310565734397,28278],[1310565735397,27687],[1310565736397,28418],[1310565737398,33160],[1310565738398,32597],[1310565739398,29486] ], - "e_20b_10a_1topic_10": [ [1310565797655,0],[1310565798656,0],[1310565799656,0],[1310565800656,0],[1310565801657,0],[1310565802657,0],[1310565803657,0],[1310565804657,0],[1310565805658,0],[1310565806658,0],[1310565807658,0],[1310565808658,0],[1310565809659,0],[1310565810659,0],[1310565811659,0] ], - "p_256k_1a_1topic_1": [ [1310565021004,109],[1310565022005,72],[1310565023005,142],[1310565024005,136],[1310565025005,107],[1310565026005,67],[1310565027006,142],[1310565028006,159],[1310565029006,117],[1310565030006,144],[1310565031007,117],[1310565032007,118],[1310565033007,113],[1310565034007,147],[1310565035008,121] ], - "c_20b_5a_1queue_10": [ [1310565623185,31446],[1310565624185,31450],[1310565625186,31237],[1310565626186,31048],[1310565627186,31054],[1310565628186,31124],[1310565629187,31136],[1310565630187,30949],[1310565631187,31518],[1310565632187,31635],[1310565633187,31208],[1310565634188,31061],[1310565635188,31511],[1310565636188,31319],[1310565637188,31547] ], - "p_256k_1a_1queue_1": [ [1310564791498,125],[1310564792499,110],[1310564793499,53],[1310564794499,183],[1310564795499,126],[1310564796499,86],[1310564797500,133],[1310564798500,133],[1310564799500,118],[1310564800500,120],[1310564801500,111],[1310564802501,121],[1310564803501,83],[1310564804501,135],[1310564805501,96] ], - "e_1k_1a_1queue_1": [ [1310564719409,0],[1310564720409,0],[1310564721410,0],[1310564722410,0],[1310564723410,0],[1310564724410,0],[1310564725411,0],[1310564726411,0],[1310564727411,0],[1310564728411,0],[1310564729411,0],[1310564730412,0],[1310564731412,0],[1310564732412,0],[1310564733412,0] ], - "e_20b_10a_1topic_5": [ [1310565743444,0],[1310565744444,0],[1310565745444,0],[1310565746445,0],[1310565747445,0],[1310565748445,0],[1310565749445,0],[1310565750446,0],[1310565751446,0],[1310565752446,0],[1310565753446,0],[1310565754447,0],[1310565755447,0],[1310565756447,0],[1310565757447,0] ], - "c_256k_1p_1queue_1": [ [1310565217392,31],[1310565218392,31],[1310565219393,30],[1310565220393,32],[1310565221393,32],[1310565222393,31],[1310565223394,32],[1310565224394,32],[1310565225394,31],[1310565226394,32],[1310565227394,32],[1310565228395,32],[1310565229395,33],[1310565230395,32],[1310565231395,32] ], - "e_20b_1p_1topic_1": [ [1310565316571,0],[1310565317571,0],[1310565318572,0],[1310565319572,0],[1310565320572,0],[1310565321572,0],[1310565322573,0],[1310565323573,0],[1310565324573,0],[1310565325573,0],[1310565326573,0],[1310565327574,0],[1310565328574,0],[1310565329574,0],[1310565330574,0] ], - "p_20b_1a_1topic_0": [ [1310566143015,71079],[1310566144015,70519],[1310566145016,64630],[1310566146016,60392],[1310566147016,67187],[1310566148016,70655],[1310566149017,60794],[1310566150017,61430],[1310566151017,61311],[1310566152017,69157],[1310566153017,62113],[1310566154018,63649],[1310566155018,64849],[1310566156018,61525],[1310566157018,68343] ], - "p_256k_1a_1topic_0": [ [1310566179036,129],[1310566180038,128],[1310566181038,95],[1310566182038,137],[1310566183039,59],[1310566184039,142],[1310566185039,109],[1310566186043,110],[1310566187043,111],[1310566188043,116],[1310566189043,110],[1310566190044,125],[1310566191044,112],[1310566192044,126],[1310566193044,122] ], - "c_20b_1p_1topic_1": [ [1310565316571,6696],[1310565317571,6762],[1310565318572,6744],[1310565319572,6778],[1310565320572,6721],[1310565321572,6762],[1310565322573,6598],[1310565323573,6655],[1310565324573,6760],[1310565325573,6588],[1310565326573,6746],[1310565327574,6682],[1310565328574,6741],[1310565329574,6677],[1310565330574,6672] ], - "p_20b_5p_5queue_5": [ [1310565100256,1490],[1310565101256,1495],[1310565102256,1490],[1310565103256,1490],[1310565104256,1490],[1310565105257,1490],[1310565106257,1495],[1310565107257,1490],[1310565108257,1490],[1310565109257,1495],[1310565110258,1490],[1310565111258,1495],[1310565112258,1490],[1310565113258,1495],[1310565114258,1495] ], - "e_1k_1a_1topic_0": [ [1310566161028,0],[1310566162029,0],[1310566163029,0],[1310566164029,0],[1310566165029,0],[1310566166030,0],[1310566167030,0],[1310566168030,0],[1310566169030,0],[1310566170031,0],[1310566171031,0],[1310566172031,0],[1310566173031,0],[1310566174031,0],[1310566175032,0] ], - "p_20b_5a_1queue_1": [ [1310565478989,24820],[1310565479989,24494],[1310565480990,26149],[1310565481990,26480],[1310565482990,26149],[1310565483990,24184],[1310565484991,24137],[1310565485991,26149],[1310565486991,26480],[1310565487991,26149],[1310565488991,26480],[1310565489992,22839],[1310565490992,26480],[1310565491992,26475],[1310565492992,26480] ], - "p_20b_10a_1queue_5": [ [1310565575102,27142],[1310565576103,29790],[1310565577103,25818],[1310565578103,28536],[1310565579103,29583],[1310565580104,26607],[1310565581104,27473],[1310565582104,27473],[1310565583104,27473],[1310565584104,27804],[1310565585105,28135],[1310565586105,26480],[1310565587105,27804],[1310565588105,27473],[1310565589106,27804] ], - "p_256k_5p_5queue_5": [ [1310565268419,114],[1310565269420,105],[1310565270420,105],[1310565271420,115],[1310565272421,113],[1310565273421,102],[1310565274421,105],[1310565275421,115],[1310565276421,118],[1310565277422,110],[1310565278422,83],[1310565279429,116],[1310565280429,104],[1310565281429,117],[1310565282429,106] ], - "c_20b_5a_1queue_1": [ [1310565478989,25432],[1310565479989,24569],[1310565480990,26192],[1310565481990,25385],[1310565482990,26094],[1310565483990,25870],[1310565484991,24615],[1310565485991,25234],[1310565486991,26135],[1310565487991,26834],[1310565488991,25218],[1310565489992,24150],[1310565490992,26211],[1310565491992,27087],[1310565492992,24636] ], - "e_20b_1a_1topic_5": [ [1310565707350,0],[1310565708350,0],[1310565709350,0],[1310565710351,0],[1310565711351,0],[1310565712351,0],[1310565713351,0],[1310565714352,0],[1310565715352,0],[1310565716352,0],[1310565717352,0],[1310565718353,0],[1310565719353,0],[1310565720353,0],[1310565721353,0] ], - "c_20b_10p_1queue_5": [ [1310565908819,2990],[1310565909819,2990],[1310565910819,2990],[1310565911819,2950],[1310565912820,2758],[1310565913820,2982],[1310565914820,2990],[1310565915820,2990],[1310565916820,2990],[1310565917821,2983],[1310565918821,2990],[1310565919821,2980],[1310565920821,2990],[1310565921821,2990],[1310565922822,2979] ], - "e_1k_1p_1queue_1": [ [1310565145317,0],[1310565146317,0],[1310565147317,0],[1310565148317,0],[1310565149318,0],[1310565150318,0],[1310565151318,0],[1310565152318,0],[1310565153318,0],[1310565154319,0],[1310565155319,0],[1310565156319,0],[1310565157319,0],[1310565158319,0],[1310565159320,0] ], - "e_256k_1a_1topic_0": [ [1310566179036,0],[1310566180038,0],[1310566181038,0],[1310566182038,0],[1310566183039,0],[1310566184039,0],[1310566185039,0],[1310566186043,0],[1310566187043,0],[1310566188043,0],[1310566189043,0],[1310566190044,0],[1310566191044,0],[1310566192044,0],[1310566193044,0] ], - "c_20b_10a_1queue_1": [ [1310565503017,25984],[1310565504018,25795],[1310565505018,26101],[1310565506018,25408],[1310565507018,25760],[1310565508018,24946],[1310565509019,25996],[1310565510019,25989],[1310565511019,25317],[1310565512019,25327],[1310565513020,26124],[1310565514020,25135],[1310565515020,25571],[1310565516020,24464],[1310565517021,26266] ], - "p_20b_10a_1topic_1": [ [1310565689324,24163],[1310565690325,26149],[1310565691325,28797],[1310565692325,24494],[1310565693325,24486],[1310565694325,27471],[1310565695326,22508],[1310565696326,28452],[1310565697326,26494],[1310565698326,25818],[1310565699327,23501],[1310565700330,25581],[1310565701330,22083],[1310565702330,28466],[1310565703331,24163] ], - "p_20b_5a_5topic_5": [ [1310564930826,26118],[1310564931826,28827],[1310564932826,29442],[1310564933826,28482],[1310564934827,28422],[1310564935827,28186],[1310564936827,29526],[1310564937827,29248],[1310564938828,29599],[1310564939828,30526],[1310564940828,30366],[1310564941828,31124],[1310564942828,30382],[1310564943829,29477],[1310564944829,30491] ], - "p_256k_10p_10topic_10": [ [1310565460858,139],[1310565461858,106],[1310565462858,111],[1310565463859,110],[1310565464859,117],[1310565465859,112],[1310565466859,107],[1310565467860,103],[1310565468860,103],[1310565469860,113],[1310565470860,109],[1310565471861,111],[1310565472861,110],[1310565473861,112],[1310565474862,126] ], - "e_20b_5a_5queue_5": [ [1310564671201,0],[1310564672201,0],[1310564673202,0],[1310564674202,0],[1310564675202,0],[1310564676202,0],[1310564677203,0],[1310564678203,0],[1310564679203,0],[1310564680203,0],[1310564681203,0],[1310564682204,0],[1310564683204,0],[1310564684204,0],[1310564685204,0] ], - "c_256k_5a_5topic_5": [ [1310565039556,130],[1310565040561,123],[1310565041561,118],[1310565042562,123],[1310565043569,134],[1310565044569,115],[1310565045569,111],[1310565046569,128],[1310565047569,117],[1310565048570,126],[1310565049570,121],[1310565050570,116],[1310565051570,131],[1310565052571,128],[1310565053571,126] ], - "p_20b_5a_1topic_5": [ [1310565725395,6620],[1310565726395,3310],[1310565727395,6620],[1310565728396,4965],[1310565729396,4965],[1310565730396,6620],[1310565731396,5296],[1310565732396,3972],[1310565733397,6620],[1310565734397,5606],[1310565735397,5979],[1310565736397,4965],[1310565737398,6620],[1310565738398,6620],[1310565739398,6284] ], - "p_256k_5a_5topic_5": [ [1310565039556,63],[1310565040561,186],[1310565041561,112],[1310565042562,125],[1310565043569,80],[1310565044569,97],[1310565045569,166],[1310565046569,149],[1310565047569,69],[1310565048570,112],[1310565049570,124],[1310565050570,172],[1310565051570,81],[1310565052571,169],[1310565053571,85] ], - "e_20b_5a_1queue_5": [ [1310565551074,0],[1310565552075,0],[1310565553075,0],[1310565554075,0],[1310565555077,0],[1310565556077,0],[1310565557077,0],[1310565558078,0],[1310565559078,0],[1310565560078,0],[1310565561078,0],[1310565562079,0],[1310565563079,0],[1310565564079,0],[1310565565079,0] ], - "c_20b_5a_5queue_5": [ [1310564671201,31433],[1310564672201,30029],[1310564673202,29571],[1310564674202,31063],[1310564675202,31135],[1310564676202,30971],[1310564677203,30636],[1310564678203,30530],[1310564679203,29885],[1310564680203,30448],[1310564681203,31651],[1310564682204,30955],[1310564683204,30979],[1310564684204,30651],[1310564685204,30760] ], - "c_20b_1p_1queue_10": [ [1310565932839,299],[1310565933839,299],[1310565934839,299],[1310565935839,299],[1310565936839,299],[1310565937840,299],[1310565938840,299],[1310565939840,300],[1310565940840,299],[1310565941840,299],[1310565942841,278],[1310565943841,299],[1310565944841,299],[1310565945841,299],[1310565946841,299] ], - "e_20b_1p_1queue_1": [ [1310565076238,0],[1310565077239,0],[1310565078239,0],[1310565079239,0],[1310565080239,0],[1310565081239,0],[1310565082240,0],[1310565083240,0],[1310565084240,0],[1310565085240,0],[1310565086240,0],[1310565087241,0],[1310565088241,0],[1310565089241,0],[1310565090241,0] ], - "p_20b_10a_1topic_5": [ [1310565743444,3844],[1310565744444,6417],[1310565745444,6620],[1310565746445,4634],[1310565747445,7282],[1310565748445,4965],[1310565749445,6289],[1310565750446,6620],[1310565751446,6289],[1310565752446,5958],[1310565753446,4965],[1310565754447,5958],[1310565755447,6289],[1310565756447,5958],[1310565757447,4965] ], - "e_20b_5a_1topic_1": [ [1310565671303,0],[1310565672303,0],[1310565673303,0],[1310565674303,0],[1310565675303,0],[1310565676304,0],[1310565677304,0],[1310565678304,0],[1310565679304,0],[1310565680305,0],[1310565681305,0],[1310565682305,0],[1310565683305,0],[1310565684306,0],[1310565685306,0] ], - "c_20b_1p_1queue_1": [ [1310565076238,298],[1310565077239,298],[1310565078239,212],[1310565079239,298],[1310565080239,299],[1310565081239,298],[1310565082240,298],[1310565083240,298],[1310565084240,298],[1310565085240,298],[1310565086240,298],[1310565087241,299],[1310565088241,298],[1310565089241,298],[1310565090241,298] ], - "p_256k_10p_10queue_10": [ [1310565292493,112],[1310565293493,119],[1310565294493,110],[1310565295493,120],[1310565296494,104],[1310565297494,118],[1310565298494,119],[1310565299494,119],[1310565300495,111],[1310565301495,112],[1310565302496,105],[1310565303496,109],[1310565304496,112],[1310565305496,112],[1310565306497,120] ], - "c_1k_5a_5topic_5": [ [1310564984964,28479],[1310564985964,28560],[1310564986964,28695],[1310564987964,28455],[1310564988965,28712],[1310564989965,28482],[1310564990965,28514],[1310564991965,28422],[1310564992966,28517],[1310564993966,28608],[1310564994966,28544],[1310564995966,28648],[1310564996967,28300],[1310564997967,28523],[1310564998967,28466] ], - "p_1k_5p_5queue_5": [ [1310565169329,1490],[1310565170329,1490],[1310565171329,1498],[1310565172329,1490],[1310565173329,1495],[1310565174330,1488],[1310565175330,1492],[1310565176330,1495],[1310565177330,1490],[1310565178330,1488],[1310565179331,1490],[1310565180331,1495],[1310565181331,1485],[1310565182331,1495],[1310565183332,1494] ], - "p_20b_5a_5queue_5": [ [1310564671201,31520],[1310564672201,30481],[1310564673202,29148],[1310564674202,30822],[1310564675202,31191],[1310564676202,31176],[1310564677203,30953],[1310564678203,30278],[1310564679203,30242],[1310564680203,30174],[1310564681203,31442],[1310564682204,30993],[1310564683204,30902],[1310564684204,30600],[1310564685204,31188] ], - "e_256k_1a_1topic_1": [ [1310565021004,0],[1310565022005,0],[1310565023005,0],[1310565024005,0],[1310565025005,0],[1310565026005,0],[1310565027006,0],[1310565028006,0],[1310565029006,0],[1310565030006,0],[1310565031007,0],[1310565032007,0],[1310565033007,0],[1310565034007,0],[1310565035008,0] ], - "e_256k_5p_5topic_5": [ [1310565442699,0],[1310565443699,0],[1310565444700,0],[1310565445700,0],[1310565446700,0],[1310565447700,0],[1310565448701,0],[1310565449701,0],[1310565450701,0],[1310565451702,0],[1310565452702,0],[1310565453702,0],[1310565454702,0],[1310565455703,0],[1310565456703,0] ], - "p_20b_1p_1topic_5": [ [1310566034928,4081],[1310566035928,4123],[1310566036928,4119],[1310566037929,4071],[1310566038929,4116],[1310566039929,4135],[1310566040929,4083],[1310566041929,4126],[1310566042930,4121],[1310566043930,4084],[1310566044930,4102],[1310566045930,4152],[1310566046931,4120],[1310566047931,4074],[1310566048931,4114] ], - "c_20b_5a_1queue_5": [ [1310565551074,30529],[1310565552075,30372],[1310565553075,30752],[1310565554075,30693],[1310565555077,30436],[1310565556077,30454],[1310565557077,30540],[1310565558078,30715],[1310565559078,30734],[1310565560078,30555],[1310565561078,30771],[1310565562079,30524],[1310565563079,30865],[1310565564079,30750],[1310565565079,30737] ], - "p_20b_10a_10topic_10": [ [1310564948880,25373],[1310564949880,26798],[1310564950881,27186],[1310564951881,27481],[1310564952881,27414],[1310564953881,27565],[1310564954882,28114],[1310564955882,31012],[1310564956882,30193],[1310564957882,29524],[1310564958882,29731],[1310564959884,29008],[1310564960884,30430],[1310564961884,30590],[1310564962884,31123] ], - "e_20b_10a_1topic_1": [ [1310565689324,0],[1310565690325,0],[1310565691325,0],[1310565692325,0],[1310565693325,0],[1310565694325,0],[1310565695326,0],[1310565696326,0],[1310565697326,0],[1310565698326,0],[1310565699327,0],[1310565700330,0],[1310565701330,0],[1310565702330,0],[1310565703331,0] ], - "p_20b_1a_1topic_5": [ [1310565707350,6619],[1310565708350,6620],[1310565709350,6620],[1310565710351,6620],[1310565711351,6506],[1310565712351,6402],[1310565713351,6620],[1310565714352,6620],[1310565715352,6614],[1310565716352,6626],[1310565717352,6288],[1310565718353,6951],[1310565719353,6554],[1310565720353,6662],[1310565721353,6581] ], - "c_256k_5p_5queue_5": [ [1310565268419,116],[1310565269420,105],[1310565270420,109],[1310565271420,111],[1310565272421,114],[1310565273421,100],[1310565274421,111],[1310565275421,116],[1310565276421,108],[1310565277422,107],[1310565278422,88],[1310565279429,107],[1310565280429,110],[1310565281429,122],[1310565282429,108] ], - "e_20b_10a_10topic_10": [ [1310564948880,0],[1310564949880,0],[1310564950881,0],[1310564951881,0],[1310564952881,0],[1310564953881,0],[1310564954882,0],[1310564955882,0],[1310564956882,0],[1310564957882,0],[1310564958882,0],[1310564959884,0],[1310564960884,0],[1310564961884,0],[1310564962884,0] ], - "p_1k_1a_1topic_0": [ [1310566161028,56353],[1310566162029,54002],[1310566163029,55586],[1310566164029,56193],[1310566165029,55452],[1310566166030,60308],[1310566167030,52123],[1310566168030,51483],[1310566169030,50533],[1310566170031,50854],[1310566171031,51355],[1310566172031,51426],[1310566173031,49951],[1310566174031,51289],[1310566175032,49542] ], - "e_256k_1a_1queue_1": [ [1310564791498,0],[1310564792499,0],[1310564793499,0],[1310564794499,0],[1310564795499,0],[1310564796499,0],[1310564797500,0],[1310564798500,0],[1310564799500,0],[1310564800500,0],[1310564801500,0],[1310564802501,0],[1310564803501,0],[1310564804501,0],[1310564805501,0] ], - "c_20b_10a_1queue_5": [ [1310565575102,27540],[1310565576103,28239],[1310565577103,27440],[1310565578103,27642],[1310565579103,28578],[1310565580104,27770],[1310565581104,27738],[1310565582104,26928],[1310565583104,28918],[1310565584104,27109],[1310565585105,27584],[1310565586105,27407],[1310565587105,26741],[1310565588105,28059],[1310565589106,27918] ], - "e_20b_10p_1topic_5": [ [1310566070954,0],[1310566071954,0],[1310566072954,0],[1310566073954,0],[1310566074955,0],[1310566075955,0],[1310566076955,0],[1310566077955,0],[1310566078956,0],[1310566079956,0],[1310566080956,0],[1310566081956,0],[1310566082956,0],[1310566083957,0],[1310566084957,0] ], - "e_20b_5p_1topic_10": [ [1310566106984,0],[1310566107984,0],[1310566108984,0],[1310566109984,0],[1310566110985,0],[1310566111985,0],[1310566112985,0],[1310566113985,0],[1310566114986,0],[1310566115986,0],[1310566116986,0],[1310566117986,0],[1310566118986,0],[1310566119987,0],[1310566120987,0] ], - "p_20b_10p_10queue_10": [ [1310565121283,2986],[1310565122284,2986],[1310565123284,2970],[1310565124284,2990],[1310565125284,2980],[1310565126284,2990],[1310565127285,2819],[1310565128285,2970],[1310565129285,2990],[1310565130285,2990],[1310565131285,2990],[1310565132286,2990],[1310565133286,2987],[1310565134286,2967],[1310565135286,2990] ], - "p_20b_1p_1queue_1": [ [1310565076238,298],[1310565077239,298],[1310565078239,212],[1310565079239,298],[1310565080239,299],[1310565081239,298],[1310565082240,298],[1310565083240,298],[1310565084240,298],[1310565085240,298],[1310565086240,298],[1310565087241,299],[1310565088241,298],[1310565089241,298],[1310565090241,298] ], - "p_20b_10a_1queue_10": [ [1310565647213,29437],[1310565648214,29108],[1310565649214,29170],[1310565650214,36310],[1310565651214,26901],[1310565652215,30987],[1310565653215,27153],[1310565654215,35795],[1310565655215,31183],[1310565656216,30762],[1310565657216,30078],[1310565658216,28530],[1310565659216,31776],[1310565660225,29824],[1310565661225,30739] ], - "p_256k_5a_5queue_5": [ [1310564863539,166],[1310564864539,135],[1310564865542,81],[1310564866542,102],[1310564867543,106],[1310564868543,129],[1310564869545,128],[1310564870550,138],[1310564871550,73],[1310564872550,81],[1310564873554,177],[1310564874554,58],[1310564875556,152],[1310564876557,95],[1310564877558,100] ], - "c_20b_5a_1topic_10": [ [1310565779556,34421],[1310565780557,31486],[1310565781557,28958],[1310565782557,32999],[1310565783557,29630],[1310565784558,34087],[1310565785558,34227],[1310565786558,31490],[1310565787558,37926],[1310565788559,32605],[1310565789559,32670],[1310565790559,32523],[1310565791559,33029],[1310565792559,31314],[1310565793560,39553] ], - "p_20b_1p_1queue_0": [ [1310566230062,0],[1310566231062,0],[1310566232062,0],[1310566233063,0],[1310566234063,0],[1310566235063,0],[1310566236063,0],[1310566237063,0],[1310566238063,0],[1310566239064,0],[1310566240064,0],[1310566241064,0],[1310566242064,0],[1310566243064,0],[1310566244065,0],[1310566245065,0],[1310566246065,0],[1310566247065,0],[1310566248065,0],[1310566249065,0],[1310566250066,0],[1310566251066,0],[1310566252066,0],[1310566253066,0],[1310566254066,0],[1310566255066,0],[1310566256067,0],[1310566257067,0],[1310566258067,0],[1310566259067,0] ], - "e_1k_1p_1topic_1": [ [1310565370613,0],[1310565371613,0],[1310565372613,0],[1310565373613,0],[1310565374614,0],[1310565375614,0],[1310565376614,0],[1310565377614,0],[1310565378614,0],[1310565379615,0],[1310565380615,0],[1310565381615,0],[1310565382615,0],[1310565383616,0],[1310565384616,0] ], - "c_20b_10p_10queue_10": [ [1310565121283,2989],[1310565122284,2983],[1310565123284,2970],[1310565124284,2990],[1310565125284,2980],[1310565126284,2990],[1310565127285,2819],[1310565128285,2970],[1310565129285,2990],[1310565130285,2990],[1310565131285,2990],[1310565132286,2990],[1310565133286,2988],[1310565134286,2966],[1310565135286,2990] ], - "e_20b_10p_1topic_10": [ [1310566125000,0],[1310566126000,0],[1310566127001,0],[1310566128001,0],[1310566129001,0],[1310566130001,0],[1310566131002,0],[1310566132002,0],[1310566133002,0],[1310566134002,0],[1310566135003,0],[1310566136003,0],[1310566137003,0],[1310566138003,0],[1310566139003,0] ], - "c_1k_1p_1queue_1": [ [1310565145317,299],[1310565146317,299],[1310565147317,299],[1310565148317,299],[1310565149318,299],[1310565150318,299],[1310565151318,299],[1310565152318,299],[1310565153318,299],[1310565154319,299],[1310565155319,299],[1310565156319,299],[1310565157319,274],[1310565158319,299],[1310565159320,299] ], - "p_20b_10p_1queue_1": [ [1310565839764,2975],[1310565840764,2980],[1310565841764,2990],[1310565842765,2990],[1310565843765,2990],[1310565844765,2967],[1310565845765,2990],[1310565846766,2990],[1310565847766,2970],[1310565848766,2980],[1310565849766,2988],[1310565850766,2974],[1310565851767,2760],[1310565852767,2990],[1310565853767,2989] ], - "p_20b_10p_1topic_5": [ [1310566070954,5726],[1310566071954,5627],[1310566072954,5715],[1310566073954,5651],[1310566074955,5730],[1310566075955,5718],[1310566076955,5714],[1310566077955,5713],[1310566078956,5690],[1310566079956,5685],[1310566080956,5707],[1310566081956,5738],[1310566082956,5608],[1310566083957,5672],[1310566084957,5681] ], - "p_20b_5a_1queue_5": [ [1310565551074,27246],[1310565552075,24832],[1310565553075,28466],[1310565554075,30452],[1310565555077,30510],[1310565556077,30526],[1310565557077,30646],[1310565558078,30783],[1310565559078,30121],[1310565560078,30783],[1310565561078,30780],[1310565562079,31010],[1310565563079,30550],[1310565564079,30616],[1310565565079,31178] ], - "e_1k_5p_5queue_5": [ [1310565169329,0],[1310565170329,0],[1310565171329,0],[1310565172329,0],[1310565173329,0],[1310565174330,0],[1310565175330,0],[1310565176330,0],[1310565177330,0],[1310565178330,0],[1310565179331,0],[1310565180331,0],[1310565181331,0],[1310565182331,0],[1310565183332,0] ], - "e_1k_10p_10queue_10": [ [1310565193360,0],[1310565194360,0],[1310565195360,0],[1310565196360,0],[1310565197360,0],[1310565198361,0],[1310565199361,0],[1310565200361,0],[1310565201361,0],[1310565202362,0],[1310565203362,0],[1310565204362,0],[1310565205362,0],[1310565206362,0],[1310565207363,0] ], - "c_20b_1p_1queue_5": [ [1310565863779,299],[1310565864779,299],[1310565865780,299],[1310565866780,299],[1310565867780,299],[1310565868780,299],[1310565869780,299],[1310565870781,299],[1310565871781,299],[1310565872781,299],[1310565873781,299],[1310565874781,299],[1310565875782,299],[1310565876782,300],[1310565877782,299] ], - "e_256k_5a_5topic_5": [ [1310565039556,0],[1310565040561,0],[1310565041561,0],[1310565042562,0],[1310565043569,0],[1310565044569,0],[1310565045569,0],[1310565046569,0],[1310565047569,0],[1310565048570,0],[1310565049570,0],[1310565050570,0],[1310565051570,0],[1310565052571,0],[1310565053571,0] ], - "c_256k_5a_5queue_5": [ [1310564863539,101],[1310564864539,111],[1310564865542,117],[1310564866542,115],[1310564867543,112],[1310564868543,109],[1310564869545,106],[1310564870550,106],[1310564871550,130],[1310564872550,126],[1310564873554,105],[1310564874554,128],[1310564875556,110],[1310564876557,121],[1310564877558,119] ], - "c_20b_1a_1queue_5": [ [1310565527056,31967],[1310565528056,31844],[1310565529056,31823],[1310565530056,31842],[1310565531057,32013],[1310565532057,31942],[1310565533057,31989],[1310565534057,32018],[1310565535057,31804],[1310565536058,32408],[1310565537058,31671],[1310565538058,32040],[1310565539058,31995],[1310565540059,31776],[1310565541059,32098] ], - "p_20b_1p_1queue_5": [ [1310565863779,299],[1310565864779,299],[1310565865780,299],[1310565866780,299],[1310565867780,299],[1310565868780,299],[1310565869780,299],[1310565870781,299],[1310565871781,299],[1310565872781,299],[1310565873781,299],[1310565874781,299],[1310565875782,299],[1310565876782,300],[1310565877782,299] ], - "c_20b_5a_1topic_1": [ [1310565671303,26338],[1310565672303,26237],[1310565673303,25424],[1310565674303,24465],[1310565675303,26352],[1310565676304,25632],[1310565677304,25692],[1310565678304,25511],[1310565679304,24705],[1310565680305,26183],[1310565681305,25770],[1310565682305,26034],[1310565683305,26124],[1310565684306,26672],[1310565685306,26134] ], - "c_1k_10p_10queue_10": [ [1310565193360,2988],[1310565194360,2974],[1310565195360,2971],[1310565196360,2962],[1310565197360,2980],[1310565198361,2975],[1310565199361,2980],[1310565200361,2961],[1310565201361,2977],[1310565202362,2981],[1310565203362,2956],[1310565204362,2973],[1310565205362,2969],[1310565206362,2982],[1310565207363,2956] ], - "e_20b_1p_1queue_0": [ [1310566230062,0],[1310566231062,0],[1310566232062,0],[1310566233063,0],[1310566234063,0],[1310566235063,0],[1310566236063,0],[1310566237063,0],[1310566238063,0],[1310566239064,0],[1310566240064,0],[1310566241064,0],[1310566242064,0],[1310566243064,0],[1310566244065,0],[1310566245065,0],[1310566246065,0],[1310566247065,0],[1310566248065,0],[1310566249065,0],[1310566250066,0],[1310566251066,0],[1310566252066,0],[1310566253066,0],[1310566254066,0],[1310566255066,0],[1310566256067,0],[1310566257067,0],[1310566258067,0],[1310566259067,0] ], - "p_20b_10a_1topic_10": [ [1310565797655,1986],[1310565798656,2801],[1310565799656,2495],[1310565800656,5296],[1310565801657,1324],[1310565802657,3972],[1310565803657,3310],[1310565804657,2648],[1310565805658,3310],[1310565806658,3310],[1310565807658,3310],[1310565808658,3310],[1310565809659,3310],[1310565810659,3310],[1310565811659,3310] ], - "e_20b_5p_1queue_5": [ [1310565884798,0],[1310565885798,0],[1310565886798,0],[1310565887798,0],[1310565888799,0],[1310565889799,0],[1310565890799,0],[1310565891799,0],[1310565892799,0],[1310565893800,0],[1310565894800,0],[1310565895800,0],[1310565896800,0],[1310565897800,0],[1310565898801,0] ], - "c_256k_1p_1topic_1": [ [1310565424666,31],[1310565425666,32],[1310565426666,32],[1310565427666,31],[1310565428666,32],[1310565429667,31],[1310565430667,32],[1310565431667,31],[1310565432667,32],[1310565433668,31],[1310565434668,32],[1310565435668,31],[1310565436668,32],[1310565437668,31],[1310565438669,32] ], - "c_20b_5p_5topic_5": [ [1310565334582,17093],[1310565335582,17110],[1310565336582,17112],[1310565337583,17190],[1310565338583,17239],[1310565339583,17111],[1310565340583,17059],[1310565341584,17161],[1310565342584,17197],[1310565343584,17191],[1310565344584,17276],[1310565345585,17320],[1310565346585,17179],[1310565347585,17205],[1310565348585,17178] ], - "e_256k_5a_5queue_5": [ [1310564863539,0],[1310564864539,0],[1310564865542,0],[1310564866542,0],[1310564867543,0],[1310564868543,0],[1310564869545,0],[1310564870550,0],[1310564871550,0],[1310564872550,0],[1310564873554,0],[1310564874554,0],[1310564875556,0],[1310564876557,0],[1310564877558,0] ] -} diff --git a/reports/win7-intel-2600k/activemq-5.5.0.json b/reports/win7-intel-2600k/activemq-5.5.0.json deleted file mode 100755 index edd6ae4..0000000 --- a/reports/win7-intel-2600k/activemq-5.5.0.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "benchmark_settings": { - "broker_name": "activemq-5.5.0", - "url": "tcp://localhost:61616", - "sample_count": 15, - "sample_interval": 1000, - "warm_up_count": 3, - "scenario_connection_scale_rate": 50 - }, - "p_20b_5p_1queue_1": [ [1311282627538,335],[1311282628552,333],[1311282629566,336],[1311282630580,340],[1311282631594,335],[1311282632608,330],[1311282633622,335],[1311282634636,341],[1311282635650,333],[1311282636664,332],[1311282637678,330],[1311282638692,336],[1311282639706,337],[1311282640720,336],[1311282641734,333] ], - "p_20b_10a_10queue_10": [ [1311281543367,22212],[1311281544381,9402],[1311281545395,804],[1311281546409,9354],[1311281547423,10210],[1311281548437,12718],[1311281549451,17021],[1311281550465,18676],[1311281551479,18725],[1311281552493,14468],[1311281553507,15982],[1311281554521,21509],[1311281555535,15408],[1311281556549,16926],[1311281557563,43] ], - "e_256k_1p_1queue_1": [ [1311282021165,0],[1311282022179,0],[1311282023193,0],[1311282024207,0],[1311282025221,0],[1311282026235,0],[1311282027249,0],[1311282028263,0],[1311282029277,0],[1311282030291,0],[1311282031305,0],[1311282032319,0],[1311282033333,0],[1311282034347,0],[1311282035361,0] ], - "p_20b_1a_1queue_0": [ [1311283016634,7616],[1311283017648,7661],[1311283018662,6808],[1311283019676,6809],[1311283020690,7660],[1311283021704,1746],[1311283022718,6658],[1311283023732,7466],[1311283024746,6637],[1311283025760,7466],[1311283026774,7466],[1311283027788,6637],[1311283028802,7466],[1311283029816,6682],[1311283030830,7420],[1311283031844,830],[1311283032858,7466],[1311283033872,7466],[1311283034886,7100],[1311283035900,7832],[1311283036914,6637],[1311283037928,7466],[1311283038942,7466],[1311283039956,6637],[1311283040970,2488],[1311283041984,830],[1311283042998,4977],[1311283044012,6932],[1311283045026,7171],[1311283046040,7466] ], - "p_20b_1a_1queue_5": [ [1311282317846,56149],[1311282318860,56932],[1311282319874,56943],[1311282320888,57039],[1311282321902,57161],[1311282322916,56683],[1311282323930,56580],[1311282324944,57746],[1311282325958,57502],[1311282326972,57810],[1311282327986,57296],[1311282329000,57606],[1311282330014,57260],[1311282331028,57576],[1311282332042,57536] ], - "p_256k_1p_1queue_1": [ [1311282021165,112],[1311282022179,114],[1311282023193,115],[1311282024207,133],[1311282025221,137],[1311282026235,56],[1311282027249,85],[1311282028263,121],[1311282029277,114],[1311282030291,115],[1311282031305,112],[1311282032319,115],[1311282033333,113],[1311282034347,113],[1311282035361,115] ], - "e_20b_10p_10queue_10": [ [1311281936067,0],[1311281937081,0],[1311281938095,0],[1311281939109,0],[1311281940123,0],[1311281941137,0],[1311281942151,0],[1311281943165,0],[1311281944179,0],[1311281945193,0],[1311281946207,0],[1311281947221,0],[1311281948235,0],[1311281949249,0],[1311281950263,0] ], - "p_20b_5p_5topic_5": [ [1311282112378,37911],[1311282113392,38263],[1311282114406,38438],[1311282115420,38326],[1311282116434,38421],[1311282117448,38298],[1311282118462,38202],[1311282119476,38540],[1311282120490,38362],[1311282121504,38288],[1311282122518,38026],[1311282123532,38323],[1311282124546,38139],[1311282125560,38282],[1311282126574,38573] ], - "e_20b_1a_1topic_10": [ [1311282572454,0],[1311282573468,0],[1311282574482,0],[1311282575496,0],[1311282576510,0],[1311282577524,0],[1311282578538,0],[1311282579552,0],[1311282580566,0],[1311282581580,0],[1311282582594,0],[1311282583608,0],[1311282584622,0],[1311282585636,0],[1311282586650,0] ], - "e_20b_1p_1queue_10": [ [1311282745989,0],[1311282747003,0],[1311282748017,0],[1311282749031,0],[1311282750045,0],[1311282751059,0],[1311282752073,0],[1311282753087,0],[1311282754101,0],[1311282755115,0],[1311282756129,0],[1311282757143,0],[1311282758157,0],[1311282759171,0],[1311282760185,0] ], - "c_20b_10p_1topic_1": [ [1311282834114,43861],[1311282835128,43678],[1311282836142,43789],[1311282837156,43824],[1311282838170,43804],[1311282839184,43896],[1311282840198,43952],[1311282841212,43945],[1311282842226,43654],[1311282843240,43578],[1311282844254,43930],[1311282845268,43734],[1311282846282,43974],[1311282847296,43744],[1311282848310,43769] ], - "e_20b_1a_1queue_10": [ [1311282399419,0],[1311282400433,0],[1311282401447,0],[1311282402461,0],[1311282403475,0],[1311282404489,0],[1311282405503,0],[1311282406517,0],[1311282407531,0],[1311282408545,0],[1311282409559,0],[1311282410573,0],[1311282411587,0],[1311282412601,0],[1311282413615,0] ], - "c_1k_1a_1topic_1": [ [1311281780971,61795],[1311281781985,62166],[1311281782999,62340],[1311281784013,60952],[1311281785027,61944],[1311281786041,60948],[1311281787055,63004],[1311281788069,62266],[1311281789083,62098],[1311281790097,62141],[1311281791111,62100],[1311281792125,61587],[1311281793139,62966],[1311281794153,61605],[1311281795167,62317] ], - "p_20b_1a_1topic_10": [ [1311282572454,8833],[1311282573468,9053],[1311282574482,9348],[1311282575496,8799],[1311282576510,9226],[1311282577524,8600],[1311282578538,9232],[1311282579552,9227],[1311282580566,9748],[1311282581580,8608],[1311282582594,9123],[1311282583608,9122],[1311282584622,8924],[1311282585636,8918],[1311282586650,9241] ], - "p_256k_5p_5topic_5": [ [1311282221891,718],[1311282222905,773],[1311282223919,827],[1311282224933,816],[1311282225947,750],[1311282226961,816],[1311282227975,774],[1311282228989,785],[1311282230003,831],[1311282231017,770],[1311282232031,705],[1311282233045,750],[1311282234059,701],[1311282235073,771],[1311282236087,764] ], - "e_256k_10p_10topic_10": [ [1311282240143,0],[1311282241157,0],[1311282242171,0],[1311282243185,0],[1311282244199,0],[1311282245213,0],[1311282246227,0],[1311282247241,0],[1311282248255,0],[1311282249269,0],[1311282250283,0],[1311282251297,0],[1311282252311,0],[1311282253325,0],[1311282254339,0] ], - "c_1k_1p_1topic_1": [ [1311282148882,20575],[1311282149896,20609],[1311282150910,20492],[1311282151924,20652],[1311282152938,20600],[1311282153952,20646],[1311282154966,20595],[1311282155980,20631],[1311282156994,20513],[1311282158008,20615],[1311282159022,20581],[1311282160036,20626],[1311282161050,20586],[1311282162064,20527],[1311282163078,20604] ], - "c_20b_1a_1topic_1": [ [1311281725997,75310],[1311281727011,74594],[1311281728025,73790],[1311281729039,74645],[1311281730053,73499],[1311281731067,75790],[1311281732081,77253],[1311281733095,74505],[1311281734109,74376],[1311281735123,73640],[1311281736137,75046],[1311281737151,73904],[1311281738165,72023],[1311281739179,74277],[1311281740193,74855] ], - "c_20b_5p_1topic_5": [ [1311282870618,71193],[1311282871632,71039],[1311282872646,71262],[1311282873660,70913],[1311282874674,71165],[1311282875688,71127],[1311282876702,71103],[1311282877716,71150],[1311282878730,71029],[1311282879744,71221],[1311282880758,71075],[1311282881772,71185],[1311282882786,71295],[1311282883800,71016],[1311282884814,71204] ], - "p_1k_1p_1queue_1": [ [1311281957345,313],[1311281958359,311],[1311281959373,310],[1311281960387,306],[1311281961401,313],[1311281962415,314],[1311281963429,314],[1311281964443,317],[1311281965457,305],[1311281966471,306],[1311281967485,311],[1311281968499,313],[1311281969513,316],[1311281970527,308],[1311281971541,313] ], - "e_1k_10a_10queue_10": [ [1311281626968,0],[1311281627982,0],[1311281628996,0],[1311281630010,0],[1311281631024,0],[1311281632038,0],[1311281633052,0],[1311281634066,0],[1311281635080,0],[1311281636094,0],[1311281637108,0],[1311281638122,0],[1311281639136,0],[1311281640150,0],[1311281641164,0] ], - "c_256k_5p_5topic_5": [ [1311282221891,721],[1311282222905,771],[1311282223919,826],[1311282224933,816],[1311282225947,754],[1311282226961,814],[1311282227975,772],[1311282228989,786],[1311282230003,831],[1311282231017,769],[1311282232031,705],[1311282233045,750],[1311282234059,702],[1311282235073,773],[1311282236087,761] ], - "p_20b_1p_1queue_10": [ [1311282745989,320],[1311282747003,310],[1311282748017,321],[1311282749031,308],[1311282750045,317],[1311282751059,320],[1311282752073,311],[1311282753087,317],[1311282754101,308],[1311282755115,318],[1311282756129,312],[1311282757143,320],[1311282758157,315],[1311282759171,312],[1311282760185,317] ], - "p_20b_10p_1topic_10": [ [1311282943626,8090],[1311282944640,8135],[1311282945654,8110],[1311282946668,8127],[1311282947682,8105],[1311282948696,8088],[1311282949710,8089],[1311282950724,8116],[1311282951738,8111],[1311282952752,8131],[1311282953766,8056],[1311282954780,8184],[1311282955794,8106],[1311282956808,8092],[1311282957822,8135] ], - "p_1k_1p_1topic_1": [ [1311282148882,20574],[1311282149896,20609],[1311282150910,20492],[1311282151924,20652],[1311282152938,20601],[1311282153952,20645],[1311282154966,20595],[1311282155980,20631],[1311282156994,20513],[1311282158008,20615],[1311282159022,20581],[1311282160036,20626],[1311282161050,20586],[1311282162064,20527],[1311282163078,20603] ], - "e_20b_10a_10queue_10": [ [1311281543367,0],[1311281544381,0],[1311281545395,0],[1311281546409,0],[1311281547423,0],[1311281548437,0],[1311281549451,0],[1311281550465,0],[1311281551479,0],[1311281552493,0],[1311281553507,0],[1311281554521,0],[1311281555535,0],[1311281556549,0],[1311281557563,0] ], - "p_256k_10a_10topic_10": [ [1311281872247,685],[1311281873261,691],[1311281874275,670],[1311281875289,662],[1311281876303,689],[1311281877317,697],[1311281878331,690],[1311281879345,675],[1311281880359,692],[1311281881373,689],[1311281882387,675],[1311281883401,677],[1311281884415,697],[1311281885429,676],[1311281886443,666] ], - "p_256k_1p_1topic_1": [ [1311282203639,734],[1311282204653,731],[1311282205667,730],[1311282206681,730],[1311282207695,728],[1311282208709,729],[1311282209723,730],[1311282210737,729],[1311282211751,731],[1311282212765,736],[1311282213779,730],[1311282214793,733],[1311282215807,730],[1311282216821,729],[1311282217835,734] ], - "e_256k_10a_10topic_10": [ [1311281872247,0],[1311281873261,0],[1311281874275,0],[1311281875289,0],[1311281876303,0],[1311281877317,0],[1311281878331,0],[1311281879345,0],[1311281880359,0],[1311281881373,0],[1311281882387,0],[1311281883401,0],[1311281884415,0],[1311281885429,0],[1311281886443,0] ], - "e_20b_10a_1queue_5": [ [1311282368125,0],[1311282369139,0],[1311282370153,0],[1311282371167,0],[1311282372181,0],[1311282373195,0],[1311282374209,0],[1311282375223,0],[1311282376237,0],[1311282377251,0],[1311282378265,0],[1311282379279,0],[1311282380293,0],[1311282381307,0],[1311282382321,0] ], - "p_1k_10p_10queue_10": [ [1311281999887,33439],[1311282000901,33414],[1311282001915,33426],[1311282002929,33304],[1311282003943,33522],[1311282004957,33364],[1311282005971,33458],[1311282006985,33227],[1311282007999,33391],[1311282009013,33460],[1311282010027,33367],[1311282011041,33287],[1311282012055,33319],[1311282013069,33351],[1311282014083,33315] ], - "e_20b_5a_1queue_1": [ [1311282258410,0],[1311282259424,0],[1311282260438,0],[1311282261452,0],[1311282262466,0],[1311282263480,0],[1311282264494,0],[1311282265508,0],[1311282266522,0],[1311282267536,0],[1311282268550,0],[1311282269564,0],[1311282270578,0],[1311282271592,0],[1311282272606,0] ], - "c_1k_5a_5queue_5": [ [1311281602663,48494],[1311281603677,46484],[1311281604691,48796],[1311281605705,47982],[1311281606719,45572],[1311281607733,46844],[1311281608747,41923],[1311281609761,44445],[1311281610775,47510],[1311281611789,45350],[1311281612803,46987],[1311281613817,46000],[1311281614831,41959],[1311281615845,44552],[1311281616859,46267] ], - "c_20b_1a_1queue_1": [ [1311281488721,65267],[1311281489735,67785],[1311281490749,69075],[1311281491763,70407],[1311281492777,68197],[1311281493791,67721],[1311281494805,62139],[1311281495819,70036],[1311281496833,69875],[1311281497847,69971],[1311281498861,69471],[1311281499875,69915],[1311281500889,52640],[1311281501903,50926],[1311281502917,70331] ], - "p_20b_1a_1queue_1": [ [1311281488721,65530],[1311281489735,68024],[1311281490749,69140],[1311281491763,70395],[1311281492777,68644],[1311281493791,67237],[1311281494805,62209],[1311281495819,70021],[1311281496833,70131],[1311281497847,69759],[1311281498861,69608],[1311281499875,69711],[1311281500889,53065],[1311281501903,50542],[1311281502917,70246] ], - "c_20b_5p_1topic_1": [ [1311282815862,40934],[1311282816876,40911],[1311282817890,40805],[1311282818904,40871],[1311282819918,40814],[1311282820932,40762],[1311282821946,40788],[1311282822960,40622],[1311282823974,40837],[1311282824988,40522],[1311282826002,40795],[1311282827016,40518],[1311282828030,40584],[1311282829044,40544],[1311282830058,40694] ], - "e_20b_0_1queue_1": [ [1311283083948,0],[1311283084962,0],[1311283085976,0],[1311283086990,0],[1311283088004,0],[1311283089018,0],[1311283090032,0],[1311283091046,0],[1311283092060,0],[1311283093074,0],[1311283094088,0],[1311283095102,0],[1311283096116,0],[1311283097130,0],[1311283098144,0],[1311283099158,0],[1311283100172,0],[1311283101186,0],[1311283102200,0],[1311283103214,0],[1311283104228,0],[1311283105242,0],[1311283106256,0],[1311283107270,0],[1311283108284,0],[1311283109298,0],[1311283110312,0],[1311283111326,0],[1311283112340,0],[1311283113354,0] ], - "e_20b_10a_1queue_1": [ [1311282286475,0],[1311282287489,0],[1311282288503,0],[1311282289517,0],[1311282290531,0],[1311282291545,0],[1311282292559,0],[1311282293573,0],[1311282294587,0],[1311282295601,0],[1311282296615,0],[1311282297629,0],[1311282298643,0],[1311282299657,0],[1311282300671,0] ], - "e_1k_5p_5topic_5": [ [1311282167134,0],[1311282168149,0],[1311282169163,0],[1311282170177,0],[1311282171191,0],[1311282172205,0],[1311282173219,0],[1311282174233,0],[1311282175247,0],[1311282176261,0],[1311282177275,0],[1311282178289,0],[1311282179303,0],[1311282180317,0],[1311282181331,0] ], - "c_20b_5p_1topic_10": [ [1311282925374,79589],[1311282926388,79702],[1311282927402,79360],[1311282928416,79529],[1311282929430,79753],[1311282930444,79697],[1311282931458,79627],[1311282932472,79703],[1311282933486,79520],[1311282934500,79589],[1311282935514,79664],[1311282936528,79639],[1311282937542,79554],[1311282938556,79477],[1311282939570,79589] ], - "p_20b_5p_1queue_10": [ [1311282767268,338],[1311282768282,334],[1311282769296,325],[1311282770310,334],[1311282771324,341],[1311282772338,337],[1311282773352,333],[1311282774366,329],[1311282775380,335],[1311282776394,341],[1311282777408,333],[1311282778422,335],[1311282779436,325],[1311282780450,337],[1311282781464,338] ], - "p_256k_10a_10queue_10": [ [1311281701692,590],[1311281702706,652],[1311281703720,683],[1311281704734,667],[1311281705748,685],[1311281706762,667],[1311281707776,702],[1311281708790,707],[1311281709804,688],[1311281710818,696],[1311281711832,692],[1311281712846,699],[1311281713860,668],[1311281714874,658],[1311281715888,707] ], - "p_1k_5p_5topic_5": [ [1311282167134,35629],[1311282168149,36117],[1311282169163,36112],[1311282170177,36230],[1311282171191,36065],[1311282172205,36068],[1311282173219,36087],[1311282174233,36075],[1311282175247,36031],[1311282176261,36072],[1311282177275,36017],[1311282178289,36114],[1311282179303,36058],[1311282180317,36046],[1311282181331,36009] ], - "p_20b_10p_1queue_5": [ [1311282721684,335],[1311282722698,340],[1311282723712,328],[1311282724726,334],[1311282725740,334],[1311282726754,336],[1311282727768,342],[1311282728782,328],[1311282729796,333],[1311282730810,338],[1311282731824,340],[1311282732838,238],[1311282733852,142],[1311282734866,332],[1311282735880,325] ], - "c_20b_10p_10topic_10": [ [1311282130630,41946],[1311282131644,41813],[1311282132658,41545],[1311282133672,41899],[1311282134686,41752],[1311282135700,41904],[1311282136714,41676],[1311282137728,41863],[1311282138742,41708],[1311282139756,41846],[1311282140770,41702],[1311282141784,41518],[1311282142798,41562],[1311282143812,41534],[1311282144826,41610] ], - "p_20b_5p_1topic_10": [ [1311282925374,7959],[1311282926388,7970],[1311282927402,7936],[1311282928416,7953],[1311282929430,7975],[1311282930444,7970],[1311282931458,7962],[1311282932472,7971],[1311282933486,7952],[1311282934500,7959],[1311282935514,7967],[1311282936528,7963],[1311282937542,7956],[1311282938556,7948],[1311282939570,7958] ], - "p_20b_5p_1topic_5": [ [1311282870618,14239],[1311282871632,14207],[1311282872646,14253],[1311282873660,14182],[1311282874674,14233],[1311282875688,14226],[1311282876702,14220],[1311282877716,14230],[1311282878730,14206],[1311282879744,14244],[1311282880758,14215],[1311282881772,14238],[1311282882786,14258],[1311282883800,14204],[1311282884814,14241] ], - "c_20b_10p_1topic_5": [ [1311282888870,73055],[1311282889884,73125],[1311282890898,73018],[1311282891912,73187],[1311282892926,72981],[1311282893940,73288],[1311282894954,73242],[1311282895968,73219],[1311282896982,73211],[1311282897996,73139],[1311282899010,73143],[1311282900024,73144],[1311282901038,73169],[1311282902052,73172],[1311282903066,73212] ], - "c_256k_10a_10topic_10": [ [1311281872247,684],[1311281873261,693],[1311281874275,667],[1311281875289,663],[1311281876303,694],[1311281877317,690],[1311281878331,690],[1311281879345,677],[1311281880359,691],[1311281881373,691],[1311281882387,672],[1311281883401,681],[1311281884415,690],[1311281885429,681],[1311281886443,667] ], - "e_1k_1a_1topic_1": [ [1311281780971,0],[1311281781985,0],[1311281782999,0],[1311281784013,0],[1311281785027,0],[1311281786041,0],[1311281787055,0],[1311281788069,0],[1311281789083,0],[1311281790097,0],[1311281791111,0],[1311281792125,0],[1311281793139,0],[1311281794153,0],[1311281795167,0] ], - "c_256k_10p_10topic_10": [ [1311282240143,689],[1311282241157,696],[1311282242171,685],[1311282243185,619],[1311282244199,654],[1311282245213,677],[1311282246227,640],[1311282247241,672],[1311282248255,687],[1311282249269,691],[1311282250283,702],[1311282251297,686],[1311282252311,664],[1311282253325,643],[1311282254339,692] ], - "c_20b_10a_1topic_5": [ [1311282554062,90833],[1311282555076,89228],[1311282556090,89522],[1311282557104,88226],[1311282558118,87500],[1311282559132,90154],[1311282560146,90890],[1311282561160,88654],[1311282562174,89657],[1311282563188,89029],[1311282564202,89459],[1311282565216,87731],[1311282566230,88124],[1311282567244,89641],[1311282568258,89261] ], - "c_1k_10a_10queue_10": [ [1311281626968,47517],[1311281627982,46278],[1311281628996,43680],[1311281630010,29327],[1311281631024,48579],[1311281632038,44270],[1311281633052,45360],[1311281634066,43559],[1311281635080,16477],[1311281636094,0],[1311281637108,8825],[1311281638122,45728],[1311281639136,45541],[1311281640150,44810],[1311281641164,43733] ], - "p_20b_1a_1topic_1": [ [1311281725997,75469],[1311281727011,74538],[1311281728025,73662],[1311281729039,74732],[1311281730053,73320],[1311281731067,75899],[1311281732081,77335],[1311281733095,74430],[1311281734109,74299],[1311281735123,73741],[1311281736137,75077],[1311281737151,73832],[1311281738165,72172],[1311281739179,74120],[1311281740193,75027] ], - "e_1k_10p_10topic_10": [ [1311282185387,0],[1311282186401,0],[1311282187415,0],[1311282188429,0],[1311282189443,0],[1311282190457,0],[1311282191471,0],[1311282192485,0],[1311282193499,0],[1311282194513,0],[1311282195527,0],[1311282196541,0],[1311282197555,0],[1311282198569,0],[1311282199583,0] ], - "c_20b_10p_1queue_10": [ [1311282791557,333],[1311282792571,334],[1311282793585,342],[1311282794599,332],[1311282795613,337],[1311282796627,339],[1311282797641,328],[1311282798655,334],[1311282799669,330],[1311282800683,338],[1311282801697,341],[1311282802711,331],[1311282803725,332],[1311282804739,331],[1311282805753,342] ], - "e_20b_1a_1topic_0": [ [1311282961878,0],[1311282962892,0],[1311282963906,0],[1311282964920,0],[1311282965934,0],[1311282966948,0],[1311282967962,0],[1311282968976,0],[1311282969990,0],[1311282971004,0],[1311282972018,0],[1311282973032,0],[1311282974046,0],[1311282975060,0],[1311282976074,0] ], - "p_1k_5a_5topic_5": [ [1311281799223,58609],[1311281800237,58575],[1311281801251,59057],[1311281802265,58910],[1311281803279,59118],[1311281804293,59020],[1311281805307,59147],[1311281806321,58736],[1311281807335,59042],[1311281808349,58469],[1311281809363,59162],[1311281810377,59460],[1311281811391,59317],[1311281812405,59627],[1311281813419,59313] ], - "p_20b_1p_1topic_10": [ [1311282907122,7118],[1311282908136,7072],[1311282909150,7116],[1311282910164,7132],[1311282911178,7074],[1311282912192,7124],[1311282913206,7111],[1311282914220,7118],[1311282915234,7120],[1311282916248,7114],[1311282917262,7113],[1311282918276,7101],[1311282919290,7108],[1311282920304,7127],[1311282921318,7097] ], - "p_20b_1a_1queue_10": [ [1311282399419,56728],[1311282400433,57315],[1311282401447,58907],[1311282402461,56543],[1311282403475,57682],[1311282404489,57593],[1311282405503,57377],[1311282406517,57078],[1311282407531,57711],[1311282408545,57304],[1311282409559,57501],[1311282410573,57696],[1311282411587,57305],[1311282412601,56639],[1311282413615,57109] ], - "e_20b_5a_1queue_10": [ [1311282423693,0],[1311282424707,0],[1311282425721,0],[1311282426735,0],[1311282427749,0],[1311282428763,0],[1311282429777,0],[1311282430791,0],[1311282431805,0],[1311282432819,0],[1311282433833,0],[1311282434847,0],[1311282435861,0],[1311282436875,0],[1311282437889,0] ], - "c_256k_10p_10queue_10": [ [1311282069728,761],[1311282070742,692],[1311282071756,773],[1311282072770,785],[1311282073784,771],[1311282074798,745],[1311282075812,728],[1311282076826,753],[1311282077840,752],[1311282078854,769],[1311282079868,740],[1311282080882,765],[1311282081896,690],[1311282082910,753],[1311282083924,752] ], - "p_1k_1a_1queue_1": [ [1311281578389,58277],[1311281579403,58274],[1311281580417,58295],[1311281581431,57949],[1311281582445,58384],[1311281583459,58376],[1311281584473,58587],[1311281585487,58451],[1311281586501,58342],[1311281587515,58338],[1311281588529,58403],[1311281589543,58436],[1311281590557,57498],[1311281591571,58097],[1311281592585,58553] ], - "e_20b_1a_1topic_1": [ [1311281725997,0],[1311281727011,0],[1311281728025,0],[1311281729039,0],[1311281730053,0],[1311281731067,0],[1311281732081,0],[1311281733095,0],[1311281734109,0],[1311281735123,0],[1311281736137,0],[1311281737151,0],[1311281738165,0],[1311281739179,0],[1311281740193,0] ], - "p_1k_5a_5queue_5": [ [1311281602663,50025],[1311281603677,47154],[1311281604691,46740],[1311281605705,49348],[1311281606719,45445],[1311281607733,47528],[1311281608747,41653],[1311281609761,42725],[1311281610775,49473],[1311281611789,43455],[1311281612803,49013],[1311281613817,45957],[1311281614831,41907],[1311281615845,43082],[1311281616859,48121] ], - "c_20b_5p_1queue_1": [ [1311282627538,334],[1311282628552,334],[1311282629566,336],[1311282630580,340],[1311282631594,335],[1311282632608,330],[1311282633622,334],[1311282634636,342],[1311282635650,333],[1311282636664,332],[1311282637678,330],[1311282638692,336],[1311282639706,337],[1311282640720,336],[1311282641734,333] ], - "c_20b_10p_1queue_1": [ [1311282651827,335],[1311282652841,329],[1311282653855,331],[1311282654869,332],[1311282655883,337],[1311282656897,333],[1311282657911,333],[1311282658925,336],[1311282659939,336],[1311282660953,334],[1311282661967,337],[1311282662981,330],[1311282663995,334],[1311282665009,337],[1311282666023,332] ], - "c_256k_1a_1queue_1": [ [1311281653129,754],[1311281654143,744],[1311281655157,757],[1311281656171,761],[1311281657185,758],[1311281658199,761],[1311281659213,757],[1311281660227,758],[1311281661241,743],[1311281662255,763],[1311281663269,763],[1311281664283,760],[1311281665297,758],[1311281666311,759],[1311281667325,757] ], - "e_20b_1p_1topic_5": [ [1311282852366,0],[1311282853380,0],[1311282854394,0],[1311282855408,0],[1311282856422,0],[1311282857436,0],[1311282858450,0],[1311282859464,0],[1311282860478,0],[1311282861492,0],[1311282862506,0],[1311282863520,0],[1311282864534,0],[1311282865548,0],[1311282866562,0] ], - "e_1k_10a_10topic_10": [ [1311281817475,0],[1311281818489,0],[1311281819503,0],[1311281820517,0],[1311281821531,0],[1311281822545,0],[1311281823559,0],[1311281824573,0],[1311281825587,0],[1311281826602,0],[1311281827616,0],[1311281828630,0],[1311281829644,0],[1311281830658,0],[1311281831672,0] ], - "p_20b_5a_1topic_1": [ [1311282480742,67238],[1311282481756,68272],[1311282482770,66963],[1311282483784,66685],[1311282484798,68855],[1311282485812,68228],[1311282486826,68437],[1311282487840,66492],[1311282488854,67324],[1311282489868,68708],[1311282490882,67836],[1311282491896,68230],[1311282492910,67241],[1311282493924,67151],[1311282494938,68066] ], - "c_20b_10a_10queue_10": [ [1311281543367,20262],[1311281544381,11669],[1311281545395,1600],[1311281546409,8122],[1311281547423,8502],[1311281548437,15094],[1311281549451,16079],[1311281550465,17963],[1311281551479,18980],[1311281552493,14347],[1311281553507,16108],[1311281554521,22153],[1311281555535,15961],[1311281556549,14652],[1311281557563,1032] ], - "c_20b_5p_5queue_5": [ [1311281911778,27066],[1311281912792,27059],[1311281913806,27038],[1311281914820,26973],[1311281915834,27163],[1311281916848,26960],[1311281917862,27090],[1311281918876,27001],[1311281919890,27121],[1311281920904,27016],[1311281921918,26985],[1311281922932,26990],[1311281923946,27028],[1311281924960,26733],[1311281925974,27124] ], - "e_20b_5p_5queue_5": [ [1311281911778,0],[1311281912792,0],[1311281913806,0],[1311281914820,0],[1311281915834,0],[1311281916848,0],[1311281917862,0],[1311281918876,0],[1311281919890,0],[1311281920904,0],[1311281921918,0],[1311281922932,0],[1311281923946,0],[1311281924960,0],[1311281925974,0] ], - "c_20b_1a_1topic_5": [ [1311282517464,90776],[1311282518478,91084],[1311282519492,93187],[1311282520506,90470],[1311282521520,91025],[1311282522534,92072],[1311282523548,91189],[1311282524562,90593],[1311282525576,90793],[1311282526590,88064],[1311282527604,89187],[1311282528618,89097],[1311282529632,90333],[1311282530646,90541],[1311282531660,89064] ], - "e_256k_5p_5queue_5": [ [1311282045439,0],[1311282046453,0],[1311282047467,0],[1311282048481,0],[1311282049495,0],[1311282050509,0],[1311282051523,0],[1311282052537,0],[1311282053551,0],[1311282054565,0],[1311282055579,0],[1311282056593,0],[1311282057607,0],[1311282058621,0],[1311282059635,0] ], - "e_1k_5a_5queue_5": [ [1311281602663,0],[1311281603677,0],[1311281604691,0],[1311281605705,0],[1311281606719,0],[1311281607733,0],[1311281608747,0],[1311281609761,0],[1311281610775,0],[1311281611789,0],[1311281612803,0],[1311281613817,0],[1311281614831,0],[1311281615845,0],[1311281616859,0] ], - "e_20b_1p_1topic_10": [ [1311282907122,0],[1311282908136,0],[1311282909150,0],[1311282910164,0],[1311282911178,0],[1311282912192,0],[1311282913206,0],[1311282914220,0],[1311282915234,0],[1311282916248,0],[1311282917262,0],[1311282918276,0],[1311282919290,0],[1311282920304,0],[1311282921318,0] ], - "e_20b_1a_1queue_1": [ [1311281488721,0],[1311281489735,0],[1311281490749,0],[1311281491763,0],[1311281492777,0],[1311281493791,0],[1311281494805,0],[1311281495819,0],[1311281496833,0],[1311281497847,0],[1311281498861,0],[1311281499875,0],[1311281500889,0],[1311281501903,0],[1311281502917,0] ], - "p_20b_5a_1topic_10": [ [1311282590769,9356],[1311282591783,8508],[1311282592797,8504],[1311282593811,8512],[1311282594825,8551],[1311282595839,8555],[1311282596868,10170],[1311282597882,10202],[1311282598896,8510],[1311282599910,9311],[1311282600924,8504],[1311282601938,9211],[1311282602952,8647],[1311282603966,8508],[1311282604980,8504] ], - "e_20b_5p_1topic_1": [ [1311282815862,0],[1311282816876,0],[1311282817890,0],[1311282818904,0],[1311282819918,0],[1311282820932,0],[1311282821946,0],[1311282822960,0],[1311282823974,0],[1311282824988,0],[1311282826002,0],[1311282827016,0],[1311282828030,0],[1311282829044,0],[1311282830058,0] ], - "p_1k_1a_1topic_1": [ [1311281780971,61790],[1311281781985,62170],[1311281782999,62340],[1311281784013,60947],[1311281785027,61948],[1311281786041,60951],[1311281787055,62999],[1311281788069,62266],[1311281789083,62100],[1311281790097,62136],[1311281791111,62104],[1311281792125,61586],[1311281793139,62968],[1311281794153,61606],[1311281795167,62312] ], - "e_20b_10p_1queue_1": [ [1311282651827,0],[1311282652841,0],[1311282653855,0],[1311282654869,0],[1311282655883,0],[1311282656897,0],[1311282657911,0],[1311282658925,0],[1311282659939,0],[1311282660953,0],[1311282661967,0],[1311282662981,0],[1311282663995,0],[1311282665009,0],[1311282666023,0] ], - "e_20b_5a_1topic_5": [ [1311282535748,0],[1311282536762,0],[1311282537776,0],[1311282538790,0],[1311282539804,0],[1311282540818,0],[1311282541832,0],[1311282542846,0],[1311282543860,0],[1311282544874,0],[1311282545888,0],[1311282546902,0],[1311282547916,0],[1311282548930,0],[1311282549944,0] ], - "p_20b_1p_1topic_1": [ [1311282094126,21921],[1311282095140,21877],[1311282096154,21795],[1311282097168,21912],[1311282098182,21817],[1311282099196,21974],[1311282100210,21856],[1311282101224,21864],[1311282102238,21830],[1311282103252,21860],[1311282104266,22017],[1311282105280,21832],[1311282106294,22003],[1311282107308,21882],[1311282108322,21850] ], - "c_256k_1a_1topic_1": [ [1311281835743,755],[1311281836757,754],[1311281837771,753],[1311281838785,756],[1311281839799,756],[1311281840813,751],[1311281841827,755],[1311281842841,754],[1311281843855,755],[1311281844869,753],[1311281845883,756],[1311281846897,755],[1311281847911,754],[1311281848925,756],[1311281849939,755] ], - "p_20b_5p_1topic_1": [ [1311282815862,40935],[1311282816876,40910],[1311282817890,40805],[1311282818904,40872],[1311282819918,40813],[1311282820932,40764],[1311282821946,40786],[1311282822960,40622],[1311282823974,40839],[1311282824988,40520],[1311282826002,40795],[1311282827016,40519],[1311282828030,40584],[1311282829044,40544],[1311282830058,40695] ], - "p_20b_5p_1queue_5": [ [1311282697395,334],[1311282698409,330],[1311282699423,336],[1311282700437,339],[1311282701451,333],[1311282702465,336],[1311282703479,342],[1311282704493,332],[1311282705507,333],[1311282706521,331],[1311282707535,332],[1311282708549,342],[1311282709563,334],[1311282710577,333],[1311282711591,331] ], - "p_20b_10p_10topic_10": [ [1311282130630,41941],[1311282131644,41813],[1311282132658,41545],[1311282133672,41899],[1311282134686,41753],[1311282135700,41902],[1311282136714,41677],[1311282137728,41863],[1311282138742,41708],[1311282139756,41846],[1311282140770,41703],[1311282141784,41521],[1311282142798,41557],[1311282143812,41536],[1311282144826,41609] ], - "e_20b_5a_5topic_5": [ [1311281744265,0],[1311281745279,0],[1311281746293,0],[1311281747307,0],[1311281748321,0],[1311281749335,0],[1311281750349,0],[1311281751363,0],[1311281752392,0],[1311281753406,0],[1311281754420,0],[1311281755434,0],[1311281756448,0],[1311281757462,0],[1311281758476,0] ], - "p_1k_10a_10queue_10": [ [1311281626968,49065],[1311281627982,47667],[1311281628996,45640],[1311281630010,26018],[1311281631024,48198],[1311281632038,44650],[1311281633052,46878],[1311281634066,45727],[1311281635080,12053],[1311281636094,0],[1311281637108,10212],[1311281638122,44456],[1311281639136,46729],[1311281640150,46727],[1311281641164,45249] ], - "c_1k_10p_10topic_10": [ [1311282185387,39616],[1311282186401,39697],[1311282187415,39508],[1311282188429,39676],[1311282189443,39552],[1311282190457,39615],[1311282191471,39640],[1311282192485,39583],[1311282193499,39652],[1311282194513,39634],[1311282195527,39662],[1311282196541,39565],[1311282197555,39568],[1311282198569,39675],[1311282199583,39575] ], - "c_20b_5p_1queue_10": [ [1311282767268,338],[1311282768282,334],[1311282769296,325],[1311282770310,334],[1311282771324,341],[1311282772338,337],[1311282773352,333],[1311282774366,329],[1311282775380,335],[1311282776394,340],[1311282777408,334],[1311282778422,335],[1311282779436,325],[1311282780450,337],[1311282781464,338] ], - "c_1k_1a_1queue_1": [ [1311281578389,58273],[1311281579403,58274],[1311281580417,58289],[1311281581431,57927],[1311281582445,58411],[1311281583459,58378],[1311281584473,58585],[1311281585487,58458],[1311281586501,58332],[1311281587515,58344],[1311281588529,58395],[1311281589543,58444],[1311281590557,57495],[1311281591571,58096],[1311281592585,58557] ], - "c_20b_10a_1topic_1": [ [1311282499134,65438],[1311282500148,65168],[1311282501162,64657],[1311282502176,64819],[1311282503190,64400],[1311282504204,64988],[1311282505218,65043],[1311282506232,64967],[1311282507246,64495],[1311282508260,64745],[1311282509274,64433],[1311282510288,64683],[1311282511302,64489],[1311282512316,63907],[1311282513330,64397] ], - "e_20b_10p_10topic_10": [ [1311282130630,0],[1311282131644,0],[1311282132658,0],[1311282133672,0],[1311282134686,0],[1311282135700,0],[1311282136714,0],[1311282137728,0],[1311282138742,0],[1311282139756,0],[1311282140770,0],[1311282141784,0],[1311282142798,0],[1311282143812,0],[1311282144826,0] ], - "e_20b_5p_1queue_1": [ [1311282627538,0],[1311282628552,0],[1311282629566,0],[1311282630580,0],[1311282631594,0],[1311282632608,0],[1311282633622,0],[1311282634636,0],[1311282635650,0],[1311282636664,0],[1311282637678,0],[1311282638692,0],[1311282639706,0],[1311282640720,0],[1311282641734,0] ], - "p_20b_10p_1topic_1": [ [1311282834114,43860],[1311282835128,43677],[1311282836142,43788],[1311282837156,43824],[1311282838170,43804],[1311282839184,43896],[1311282840198,43952],[1311282841212,43948],[1311282842226,43653],[1311282843240,43576],[1311282844254,43932],[1311282845268,43735],[1311282846282,43971],[1311282847296,43744],[1311282848310,43772] ], - "e_20b_1a_1queue_5": [ [1311282317846,0],[1311282318860,0],[1311282319874,0],[1311282320888,0],[1311282321902,0],[1311282322916,0],[1311282323930,0],[1311282324944,0],[1311282325958,0],[1311282326972,0],[1311282327986,0],[1311282329000,0],[1311282330014,0],[1311282331028,0],[1311282332042,0] ], - "e_20b_10a_1queue_10": [ [1311282449511,0],[1311282450525,0],[1311282451539,0],[1311282452553,0],[1311282453567,0],[1311282454581,0],[1311282455595,0],[1311282456609,0],[1311282457623,0],[1311282458637,0],[1311282459651,0],[1311282460665,0],[1311282461679,0],[1311282462693,0],[1311282463707,0] ], - "c_20b_5a_5topic_5": [ [1311281744265,73274],[1311281745279,72438],[1311281746293,71482],[1311281747307,74182],[1311281748321,72747],[1311281749335,73785],[1311281750349,75668],[1311281751363,72432],[1311281752392,75387],[1311281753406,72492],[1311281754420,74068],[1311281755434,74621],[1311281756448,72713],[1311281757462,74062],[1311281758476,73899] ], - "c_1k_5p_5topic_5": [ [1311282167134,35628],[1311282168149,36118],[1311282169163,36111],[1311282170177,36231],[1311282171191,36066],[1311282172205,36067],[1311282173219,36087],[1311282174233,36075],[1311282175247,36031],[1311282176261,36072],[1311282177275,36017],[1311282178289,36112],[1311282179303,36059],[1311282180317,36048],[1311282181331,36009] ], - "e_20b_1a_1queue_0": [ [1311283016634,0],[1311283017648,0],[1311283018662,0],[1311283019676,0],[1311283020690,0],[1311283021704,0],[1311283022718,0],[1311283023732,0],[1311283024746,0],[1311283025760,0],[1311283026774,0],[1311283027788,0],[1311283028802,0],[1311283029816,0],[1311283030830,0],[1311283031844,0],[1311283032858,0],[1311283033872,0],[1311283034886,0],[1311283035900,0],[1311283036914,0],[1311283037928,0],[1311283038942,0],[1311283039956,0],[1311283040970,0],[1311283041984,0],[1311283042998,0],[1311283044012,0],[1311283045026,0],[1311283046040,0] ], - "e_256k_10a_10queue_10": [ [1311281701692,0],[1311281702706,0],[1311281703720,0],[1311281704734,0],[1311281705748,0],[1311281706762,0],[1311281707776,0],[1311281708790,0],[1311281709804,0],[1311281710818,0],[1311281711832,0],[1311281712846,0],[1311281713860,0],[1311281714874,0],[1311281715888,0] ], - "c_20b_1p_1topic_5": [ [1311282852366,59586],[1311282853380,59653],[1311282854394,59871],[1311282855408,59718],[1311282856422,57817],[1311282857436,59665],[1311282858450,59514],[1311282859464,59751],[1311282860478,59815],[1311282861492,59789],[1311282862506,59786],[1311282863520,59715],[1311282864534,59945],[1311282865548,59740],[1311282866562,59804] ], - "e_20b_5a_1topic_10": [ [1311282590769,0],[1311282591783,0],[1311282592797,0],[1311282593811,0],[1311282594825,0],[1311282595839,0],[1311282596868,0],[1311282597882,0],[1311282598896,0],[1311282599910,0],[1311282600924,0],[1311282601938,0],[1311282602952,0],[1311282603966,0],[1311282604980,0] ], - "p_20b_10p_1queue_10": [ [1311282791557,333],[1311282792571,334],[1311282793585,342],[1311282794599,332],[1311282795613,337],[1311282796627,339],[1311282797641,328],[1311282798655,334],[1311282799669,330],[1311282800683,338],[1311282801697,341],[1311282802711,331],[1311282803725,332],[1311282804739,331],[1311282805753,343] ], - "e_20b_10p_1topic_1": [ [1311282834114,0],[1311282835128,0],[1311282836142,0],[1311282837156,0],[1311282838170,0],[1311282839184,0],[1311282840198,0],[1311282841212,0],[1311282842226,0],[1311282843240,0],[1311282844254,0],[1311282845268,0],[1311282846282,0],[1311282847296,0],[1311282848310,0] ], - "c_20b_5p_1queue_5": [ [1311282697395,334],[1311282698409,330],[1311282699423,336],[1311282700437,339],[1311282701451,333],[1311282702465,336],[1311282703479,342],[1311282704493,332],[1311282705507,333],[1311282706521,331],[1311282707535,332],[1311282708549,342],[1311282709563,334],[1311282710577,333],[1311282711591,331] ], - "p_20b_10a_1queue_1": [ [1311282286475,64029],[1311282287489,63255],[1311282288503,64686],[1311282289517,61282],[1311282290531,63993],[1311282291545,62824],[1311282292559,62982],[1311282293573,60428],[1311282294587,66028],[1311282295601,63350],[1311282296615,61169],[1311282297629,63836],[1311282298643,62537],[1311282299657,63515],[1311282300671,62260] ], - "c_20b_10a_10topic_10": [ [1311281762595,69903],[1311281763609,65244],[1311281764623,69634],[1311281765637,64929],[1311281766651,68823],[1311281767665,65985],[1311281768679,69276],[1311281769693,64082],[1311281770707,68437],[1311281771721,69014],[1311281772735,68719],[1311281773749,63814],[1311281774763,68414],[1311281775777,68408],[1311281776837,70093] ], - "e_20b_5p_5topic_5": [ [1311282112378,0],[1311282113392,0],[1311282114406,0],[1311282115420,0],[1311282116434,0],[1311282117448,0],[1311282118462,0],[1311282119476,0],[1311282120490,0],[1311282121504,0],[1311282122518,0],[1311282123532,0],[1311282124546,0],[1311282125560,0],[1311282126574,0] ], - "e_20b_5p_1topic_5": [ [1311282870618,0],[1311282871632,0],[1311282872646,0],[1311282873660,0],[1311282874674,0],[1311282875688,0],[1311282876702,0],[1311282877716,0],[1311282878730,0],[1311282879744,0],[1311282880758,0],[1311282881772,0],[1311282882786,0],[1311282883800,0],[1311282884814,0] ], - "e_20b_10p_1queue_10": [ [1311282791557,0],[1311282792571,0],[1311282793585,0],[1311282794599,0],[1311282795613,0],[1311282796627,0],[1311282797641,0],[1311282798655,0],[1311282799669,0],[1311282800683,0],[1311282801697,0],[1311282802711,0],[1311282803725,0],[1311282804739,0],[1311282805753,0] ], - "e_20b_5p_1queue_10": [ [1311282767268,0],[1311282768282,0],[1311282769296,0],[1311282770310,0],[1311282771324,0],[1311282772338,0],[1311282773352,0],[1311282774366,0],[1311282775380,0],[1311282776394,0],[1311282777408,0],[1311282778422,0],[1311282779436,0],[1311282780450,0],[1311282781464,0] ], - "c_20b_10a_1queue_10": [ [1311282449511,54021],[1311282450525,53450],[1311282451539,53278],[1311282452553,55963],[1311282453567,54289],[1311282454581,53960],[1311282455595,56462],[1311282456609,56319],[1311282457623,58954],[1311282458637,54192],[1311282459651,59046],[1311282460665,54853],[1311282461679,55787],[1311282462693,52729],[1311282463707,51718] ], - "c_20b_1a_1queue_10": [ [1311282399419,56838],[1311282400433,57223],[1311282401447,58815],[1311282402461,56718],[1311282403475,57537],[1311282404489,57655],[1311282405503,57287],[1311282406517,57252],[1311282407531,57625],[1311282408545,57374],[1311282409559,57402],[1311282410573,57667],[1311282411587,57369],[1311282412601,56735],[1311282413615,56989] ], - "c_20b_1p_1topic_10": [ [1311282907122,71180],[1311282908136,70716],[1311282909150,71164],[1311282910164,71320],[1311282911178,70740],[1311282912192,71243],[1311282913206,71107],[1311282914220,71177],[1311282915234,71203],[1311282916248,71141],[1311282917262,71129],[1311282918276,71010],[1311282919290,71080],[1311282920304,71272],[1311282921318,70968] ], - "c_20b_10a_1topic_10": [ [1311282609130,89608],[1311282610144,91570],[1311282611158,88167],[1311282612188,93057],[1311282613202,88290],[1311282614216,92970],[1311282615230,90351],[1311282616244,91381],[1311282617258,91049],[1311282618272,93297],[1311282619286,90815],[1311282620300,90226],[1311282621314,88060],[1311282622328,91581],[1311282623342,90041] ], - "c_20b_0_1queue_1": [ [1311283083948,6400],[1311283084962,7000],[1311283085976,7200],[1311283086990,6400],[1311283088004,7200],[1311283089018,6400],[1311283090032,7200],[1311283091046,6400],[1311283092060,4000],[1311283093074,4000],[1311283094088,6939],[1311283095102,6461],[1311283096116,6600],[1311283097130,7000],[1311283098144,7200],[1311283099158,6400],[1311283100172,6400],[1311283101186,6400],[1311283102200,6645],[1311283103214,1155],[1311283104228,6400],[1311283105242,7200],[1311283106256,6795],[1311283107270,6805],[1311283108284,6445],[1311283109298,7155],[1311283110312,7000],[1311283111326,7200],[1311283112340,7200],[1311283113354,2400] ], - "c_256k_10a_10queue_10": [ [1311281701692,599],[1311281702706,654],[1311281703720,684],[1311281704734,670],[1311281705748,687],[1311281706762,668],[1311281707776,705],[1311281708790,704],[1311281709804,685],[1311281710818,699],[1311281711832,689],[1311281712846,699],[1311281713860,674],[1311281714874,655],[1311281715888,706] ], - "c_20b_10p_1topic_10": [ [1311282943626,80911],[1311282944640,81350],[1311282945654,81100],[1311282946668,81270],[1311282947682,81050],[1311282948696,80882],[1311282949710,80884],[1311282950724,81164],[1311282951738,81110],[1311282952752,81300],[1311282953766,80567],[1311282954780,81843],[1311282955794,81060],[1311282956808,80920],[1311282957822,81350] ], - "p_20b_5a_1queue_10": [ [1311282423693,65955],[1311282424707,64912],[1311282425721,63500],[1311282426735,63390],[1311282427749,64622],[1311282428763,63952],[1311282429777,65504],[1311282430791,64873],[1311282431805,64497],[1311282432819,63876],[1311282433833,65437],[1311282434847,65093],[1311282435861,63007],[1311282436875,66160],[1311282437889,62303] ], - "e_1k_5a_5topic_5": [ [1311281799223,0],[1311281800237,0],[1311281801251,0],[1311281802265,0],[1311281803279,0],[1311281804293,0],[1311281805307,0],[1311281806321,0],[1311281807335,0],[1311281808349,0],[1311281809363,0],[1311281810377,0],[1311281811391,0],[1311281812405,0],[1311281813419,0] ], - "p_1k_10p_10topic_10": [ [1311282185387,39615],[1311282186401,39695],[1311282187415,39508],[1311282188429,39675],[1311282189443,39552],[1311282190457,39615],[1311282191471,39639],[1311282192485,39585],[1311282193499,39652],[1311282194513,39634],[1311282195527,39661],[1311282196541,39567],[1311282197555,39566],[1311282198569,39675],[1311282199583,39575] ], - "c_1k_10a_10topic_10": [ [1311281817475,53310],[1311281818489,54810],[1311281819503,54495],[1311281820517,54777],[1311281821531,54030],[1311281822545,54698],[1311281823559,54769],[1311281824573,54567],[1311281825587,55509],[1311281826602,54622],[1311281827616,54743],[1311281828630,54054],[1311281829644,53922],[1311281830658,54389],[1311281831672,55523] ], - "c_20b_1a_1topic_10": [ [1311282572454,89664],[1311282573468,91807],[1311282574482,91523],[1311282575496,90454],[1311282576510,90665],[1311282577524,88595],[1311282578538,89956],[1311282579552,92230],[1311282580566,96671],[1311282581580,89310],[1311282582594,88694],[1311282583608,92287],[1311282584622,88109],[1311282585636,91028],[1311282586650,91373] ], - "e_20b_10p_1queue_5": [ [1311282721684,0],[1311282722698,0],[1311282723712,0],[1311282724726,0],[1311282725740,0],[1311282726754,0],[1311282727768,0],[1311282728782,0],[1311282729796,0],[1311282730810,0],[1311282731824,0],[1311282732838,0],[1311282733852,0],[1311282734866,0],[1311282735880,0] ], - "e_256k_10p_10queue_10": [ [1311282069728,0],[1311282070742,0],[1311282071756,0],[1311282072770,0],[1311282073784,0],[1311282074798,0],[1311282075812,0],[1311282076826,0],[1311282077840,0],[1311282078854,0],[1311282079868,0],[1311282080882,0],[1311282081896,0],[1311282082910,0],[1311282083924,0] ], - "c_1k_5p_5queue_5": [ [1311281978608,26350],[1311281979622,26353],[1311281980636,26366],[1311281981650,26281],[1311281982664,26355],[1311281983678,26348],[1311281984692,26372],[1311281985706,26317],[1311281986720,26262],[1311281987734,26296],[1311281988748,26359],[1311281989762,26293],[1311281990776,26284],[1311281991790,26186],[1311281992804,26316] ], - "e_20b_1p_1queue_5": [ [1311282676132,0],[1311282677146,0],[1311282678160,0],[1311282679174,0],[1311282680188,0],[1311282681202,0],[1311282682216,0],[1311282683230,0],[1311282684244,0],[1311282685258,0],[1311282686272,0],[1311282687286,0],[1311282688300,0],[1311282689314,0],[1311282690328,0] ], - "p_1k_10a_10topic_10": [ [1311281817475,53901],[1311281818489,54791],[1311281819503,54477],[1311281820517,54824],[1311281821531,53749],[1311281822545,54746],[1311281823559,54997],[1311281824573,54568],[1311281825587,55365],[1311281826602,54529],[1311281827616,54627],[1311281828630,54138],[1311281829644,53648],[1311281830658,54922],[1311281831672,55283] ], - "e_256k_1p_1topic_1": [ [1311282203639,0],[1311282204653,0],[1311282205667,0],[1311282206681,0],[1311282207695,0],[1311282208709,0],[1311282209723,0],[1311282210737,0],[1311282211751,0],[1311282212765,0],[1311282213779,0],[1311282214793,0],[1311282215807,0],[1311282216821,0],[1311282217835,0] ], - "c_20b_5a_1topic_5": [ [1311282535748,90112],[1311282536762,90280],[1311282537776,88566],[1311282538790,90595],[1311282539804,87692],[1311282540818,89227],[1311282541832,90713],[1311282542846,90665],[1311282543860,91604],[1311282544874,90101],[1311282545888,90753],[1311282546902,91423],[1311282547916,92079],[1311282548930,90813],[1311282549944,90607] ], - "e_20b_10a_1topic_10": [ [1311282609130,0],[1311282610144,0],[1311282611158,0],[1311282612188,0],[1311282613202,0],[1311282614216,0],[1311282615230,0],[1311282616244,0],[1311282617258,0],[1311282618272,0],[1311282619286,0],[1311282620300,0],[1311282621314,0],[1311282622328,0],[1311282623342,0] ], - "p_256k_1a_1topic_1": [ [1311281835743,755],[1311281836757,754],[1311281837771,754],[1311281838785,755],[1311281839799,756],[1311281840813,752],[1311281841827,754],[1311281842841,754],[1311281843855,755],[1311281844869,754],[1311281845883,755],[1311281846897,755],[1311281847911,755],[1311281848925,756],[1311281849939,754] ], - "c_20b_5a_1queue_10": [ [1311282423693,65578],[1311282424707,64539],[1311282425721,63738],[1311282426735,64487],[1311282427749,63769],[1311282428763,64185],[1311282429777,65107],[1311282430791,64738],[1311282431805,64499],[1311282432819,64018],[1311282433833,65314],[1311282434847,64772],[1311282435861,64108],[1311282436875,66077],[1311282437889,63559] ], - "p_256k_1a_1queue_1": [ [1311281653129,754],[1311281654143,745],[1311281655157,757],[1311281656171,760],[1311281657185,758],[1311281658199,761],[1311281659213,758],[1311281660227,758],[1311281661241,742],[1311281662255,764],[1311281663269,762],[1311281664283,761],[1311281665297,758],[1311281666311,758],[1311281667325,758] ], - "e_1k_1a_1queue_1": [ [1311281578389,0],[1311281579403,0],[1311281580417,0],[1311281581431,0],[1311281582445,0],[1311281583459,0],[1311281584473,0],[1311281585487,0],[1311281586501,0],[1311281587515,0],[1311281588529,0],[1311281589543,0],[1311281590557,0],[1311281591571,0],[1311281592585,0] ], - "e_20b_10a_1topic_5": [ [1311282554062,0],[1311282555076,0],[1311282556090,0],[1311282557104,0],[1311282558118,0],[1311282559132,0],[1311282560146,0],[1311282561160,0],[1311282562174,0],[1311282563188,0],[1311282564202,0],[1311282565216,0],[1311282566230,0],[1311282567244,0],[1311282568258,0] ], - "c_256k_1p_1queue_1": [ [1311282021165,111],[1311282022179,115],[1311282023193,115],[1311282024207,132],[1311282025221,138],[1311282026235,56],[1311282027249,85],[1311282028263,120],[1311282029277,115],[1311282030291,114],[1311282031305,112],[1311282032319,115],[1311282033333,114],[1311282034347,113],[1311282035361,115] ], - "e_20b_1p_1topic_1": [ [1311282094126,0],[1311282095140,0],[1311282096154,0],[1311282097168,0],[1311282098182,0],[1311282099196,0],[1311282100210,0],[1311282101224,0],[1311282102238,0],[1311282103252,0],[1311282104266,0],[1311282105280,0],[1311282106294,0],[1311282107308,0],[1311282108322,0] ], - "p_20b_1a_1topic_0": [ [1311282961878,80396],[1311282962892,81303],[1311282963906,79836],[1311282964920,81053],[1311282965934,79745],[1311282966948,79932],[1311282967962,79362],[1311282968976,79472],[1311282969990,79741],[1311282971004,79580],[1311282972018,79005],[1311282973032,79692],[1311282974046,79756],[1311282975060,80737],[1311282976074,81390] ], - "p_256k_1a_1topic_0": [ [1311282998382,811],[1311282999396,808],[1311283000410,807],[1311283001424,811],[1311283002438,812],[1311283003452,806],[1311283004466,782],[1311283005480,807],[1311283006494,807],[1311283007508,791],[1311283008522,817],[1311283009536,816],[1311283010550,814],[1311283011564,815],[1311283012578,809] ], - "c_20b_1p_1topic_1": [ [1311282094126,21921],[1311282095140,21876],[1311282096154,21796],[1311282097168,21911],[1311282098182,21818],[1311282099196,21973],[1311282100210,21856],[1311282101224,21865],[1311282102238,21829],[1311282103252,21861],[1311282104266,22017],[1311282105280,21832],[1311282106294,22003],[1311282107308,21882],[1311282108322,21850] ], - "p_20b_5p_5queue_5": [ [1311281911778,27064],[1311281912792,27057],[1311281913806,27041],[1311281914820,26974],[1311281915834,27160],[1311281916848,26961],[1311281917862,27090],[1311281918876,27003],[1311281919890,27119],[1311281920904,27015],[1311281921918,26986],[1311281922932,26991],[1311281923946,27029],[1311281924960,26730],[1311281925974,27125] ], - "e_1k_1a_1topic_0": [ [1311282980130,0],[1311282981144,0],[1311282982158,0],[1311282983172,0],[1311282984186,0],[1311282985200,0],[1311282986214,0],[1311282987228,0],[1311282988242,0],[1311282989256,0],[1311282990270,0],[1311282991284,0],[1311282992298,0],[1311282993312,0],[1311282994326,0] ], - "p_20b_5a_1queue_1": [ [1311282258410,64665],[1311282259424,65022],[1311282260438,64413],[1311282261452,63900],[1311282262466,59490],[1311282263480,60080],[1311282264494,61996],[1311282265508,54203],[1311282266522,61937],[1311282267536,61754],[1311282268550,62680],[1311282269564,61388],[1311282270578,62907],[1311282271592,62358],[1311282272606,61742] ], - "p_20b_10a_1queue_5": [ [1311282368125,64647],[1311282369139,65691],[1311282370153,63748],[1311282371167,64458],[1311282372181,65764],[1311282373195,63229],[1311282374209,64876],[1311282375223,63850],[1311282376237,64647],[1311282377251,63792],[1311282378265,65131],[1311282379279,63834],[1311282380293,63919],[1311282381307,65180],[1311282382321,65892] ], - "p_256k_5p_5queue_5": [ [1311282045439,779],[1311282046453,785],[1311282047467,790],[1311282048481,786],[1311282049495,789],[1311282050509,787],[1311282051523,752],[1311282052537,758],[1311282053551,687],[1311282054565,724],[1311282055579,818],[1311282056593,807],[1311282057607,781],[1311282058621,776],[1311282059635,785] ], - "c_20b_5a_1queue_1": [ [1311282258410,63760],[1311282259424,65608],[1311282260438,64763],[1311282261452,63465],[1311282262466,59091],[1311282263480,61233],[1311282264494,61005],[1311282265508,54612],[1311282266522,61875],[1311282267536,61163],[1311282268550,62956],[1311282269564,62118],[1311282270578,62589],[1311282271592,61820],[1311282272606,62146] ], - "e_20b_1a_1topic_5": [ [1311282517464,0],[1311282518478,0],[1311282519492,0],[1311282520506,0],[1311282521520,0],[1311282522534,0],[1311282523548,0],[1311282524562,0],[1311282525576,0],[1311282526590,0],[1311282527604,0],[1311282528618,0],[1311282529632,0],[1311282530646,0],[1311282531660,0] ], - "c_20b_10p_1queue_5": [ [1311282721684,335],[1311282722698,340],[1311282723712,328],[1311282724726,334],[1311282725740,334],[1311282726754,336],[1311282727768,342],[1311282728782,328],[1311282729796,333],[1311282730810,338],[1311282731824,340],[1311282732838,238],[1311282733852,142],[1311282734866,332],[1311282735880,325] ], - "e_1k_1p_1queue_1": [ [1311281957345,0],[1311281958359,0],[1311281959373,0],[1311281960387,0],[1311281961401,0],[1311281962415,0],[1311281963429,0],[1311281964443,0],[1311281965457,0],[1311281966471,0],[1311281967485,0],[1311281968499,0],[1311281969513,0],[1311281970527,0],[1311281971541,0] ], - "e_256k_1a_1topic_0": [ [1311282998382,0],[1311282999396,0],[1311283000410,0],[1311283001424,0],[1311283002438,0],[1311283003452,0],[1311283004466,0],[1311283005480,0],[1311283006494,0],[1311283007508,0],[1311283008522,0],[1311283009536,0],[1311283010550,0],[1311283011564,0],[1311283012578,0] ], - "c_20b_10a_1queue_1": [ [1311282286475,64179],[1311282287489,62936],[1311282288503,64202],[1311282289517,61930],[1311282290531,63583],[1311282291545,62952],[1311282292559,62268],[1311282293573,62761],[1311282294587,64597],[1311282295601,63982],[1311282296615,62636],[1311282297629,62060],[1311282298643,62675],[1311282299657,63616],[1311282300671,63054] ], - "p_20b_10a_1topic_1": [ [1311282499134,64183],[1311282500148,65188],[1311282501162,65996],[1311282502176,63417],[1311282503190,65536],[1311282504204,64531],[1311282505218,63992],[1311282506232,65491],[1311282507246,64296],[1311282508260,64201],[1311282509274,64769],[1311282510288,65908],[1311282511302,62783],[1311282512316,63840],[1311282513330,64743] ], - "p_20b_5a_5topic_5": [ [1311281744265,74019],[1311281745279,70430],[1311281746293,71547],[1311281747307,74438],[1311281748321,71914],[1311281749335,74738],[1311281750349,75725],[1311281751363,72375],[1311281752392,74249],[1311281753406,73269],[1311281754420,74297],[1311281755434,73220],[1311281756448,74577],[1311281757462,73619],[1311281758476,73068] ], - "p_256k_10p_10topic_10": [ [1311282240143,688],[1311282241157,697],[1311282242171,686],[1311282243185,616],[1311282244199,657],[1311282245213,673],[1311282246227,641],[1311282247241,675],[1311282248255,685],[1311282249269,692],[1311282250283,701],[1311282251297,689],[1311282252311,660],[1311282253325,646],[1311282254339,691] ], - "e_20b_5a_5queue_5": [ [1311281513369,0],[1311281514383,0],[1311281515397,0],[1311281516411,0],[1311281517425,0],[1311281518439,0],[1311281519453,0],[1311281520467,0],[1311281521481,0],[1311281522495,0],[1311281523509,0],[1311281524523,0],[1311281525537,0],[1311281526551,0],[1311281527565,0] ], - "c_256k_5a_5topic_5": [ [1311281853995,804],[1311281855009,812],[1311281856023,801],[1311281857037,816],[1311281858051,812],[1311281859065,792],[1311281860079,810],[1311281861093,802],[1311281862107,804],[1311281863121,798],[1311281864135,818],[1311281865149,762],[1311281866163,812],[1311281867177,786],[1311281868191,783] ], - "p_20b_5a_1topic_5": [ [1311282535748,17830],[1311282536762,17917],[1311282537776,17917],[1311282538790,18208],[1311282539804,17915],[1311282540818,18304],[1311282541832,18682],[1311282542846,17873],[1311282543860,17874],[1311282544874,17022],[1311282545888,18725],[1311282546902,17960],[1311282547916,19049],[1311282548930,18609],[1311282549944,17247] ], - "p_256k_5a_5topic_5": [ [1311281853995,804],[1311281855009,812],[1311281856023,803],[1311281857037,814],[1311281858051,811],[1311281859065,793],[1311281860079,810],[1311281861093,799],[1311281862107,807],[1311281863121,798],[1311281864135,817],[1311281865149,761],[1311281866163,816],[1311281867177,784],[1311281868191,784] ], - "e_20b_5a_1queue_5": [ [1311282342120,0],[1311282343134,0],[1311282344148,0],[1311282345162,0],[1311282346176,0],[1311282347190,0],[1311282348204,0],[1311282349218,0],[1311282350232,0],[1311282351246,0],[1311282352260,0],[1311282353274,0],[1311282354288,0],[1311282355302,0],[1311282356316,0] ], - "c_20b_5a_5queue_5": [ [1311281513369,20068],[1311281514383,21545],[1311281515397,20153],[1311281516411,51248],[1311281517425,0],[1311281518439,35162],[1311281519453,43072],[1311281520467,12174],[1311281521481,14704],[1311281522495,14016],[1311281523509,25219],[1311281524523,10320],[1311281525537,19510],[1311281526551,56054],[1311281527565,36607] ], - "c_20b_1p_1queue_10": [ [1311282745989,320],[1311282747003,310],[1311282748017,321],[1311282749031,308],[1311282750045,317],[1311282751059,320],[1311282752073,311],[1311282753087,317],[1311282754101,308],[1311282755115,318],[1311282756129,312],[1311282757143,320],[1311282758157,315],[1311282759171,312],[1311282760185,317] ], - "e_20b_1p_1queue_1": [ [1311281890515,0],[1311281891529,0],[1311281892543,0],[1311281893557,0],[1311281894571,0],[1311281895585,0],[1311281896599,0],[1311281897613,0],[1311281898627,0],[1311281899641,0],[1311281900655,0],[1311281901669,0],[1311281902683,0],[1311281903697,0],[1311281904711,0] ], - "p_20b_10a_1topic_5": [ [1311282554062,18369],[1311282555076,18177],[1311282556090,17021],[1311282557104,17869],[1311282558118,17022],[1311282559132,17061],[1311282560146,19148],[1311282561160,17406],[1311282562174,18813],[1311282563188,17830],[1311282564202,18722],[1311282565216,17019],[1311282566230,17023],[1311282567244,18033],[1311282568258,17706] ], - "e_20b_5a_1topic_1": [ [1311282480742,0],[1311282481756,0],[1311282482770,0],[1311282483784,0],[1311282484798,0],[1311282485812,0],[1311282486826,0],[1311282487840,0],[1311282488854,0],[1311282489868,0],[1311282490882,0],[1311282491896,0],[1311282492910,0],[1311282493924,0],[1311282494938,0] ], - "c_20b_1p_1queue_1": [ [1311281890515,267],[1311281891529,253],[1311281892543,262],[1311281893557,264],[1311281894571,256],[1311281895585,262],[1311281896599,262],[1311281897613,265],[1311281898627,264],[1311281899641,264],[1311281900655,263],[1311281901669,262],[1311281902683,265],[1311281903697,266],[1311281904711,264] ], - "p_256k_10p_10queue_10": [ [1311282069728,762],[1311282070742,692],[1311282071756,772],[1311282072770,787],[1311282073784,769],[1311282074798,745],[1311282075812,729],[1311282076826,753],[1311282077840,751],[1311282078854,768],[1311282079868,742],[1311282080882,765],[1311282081896,690],[1311282082910,753],[1311282083924,752] ], - "c_1k_5a_5topic_5": [ [1311281799223,58619],[1311281800237,58523],[1311281801251,59136],[1311281802265,58859],[1311281803279,59025],[1311281804293,59321],[1311281805307,58905],[1311281806321,58792],[1311281807335,59267],[1311281808349,58192],[1311281809363,59330],[1311281810377,59438],[1311281811391,59529],[1311281812405,59215],[1311281813419,59472] ], - "p_1k_5p_5queue_5": [ [1311281978608,26347],[1311281979622,26353],[1311281980636,26367],[1311281981650,26283],[1311281982664,26355],[1311281983678,26347],[1311281984692,26369],[1311281985706,26320],[1311281986720,26261],[1311281987734,26296],[1311281988748,26360],[1311281989762,26292],[1311281990776,26282],[1311281991790,26187],[1311281992804,26315] ], - "p_20b_5a_5queue_5": [ [1311281513369,17869],[1311281514383,23265],[1311281515397,18521],[1311281516411,52772],[1311281517425,0],[1311281518439,32418],[1311281519453,45976],[1311281520467,11063],[1311281521481,16726],[1311281522495,12972],[1311281523509,24570],[1311281524523,11787],[1311281525537,16128],[1311281526551,54164],[1311281527565,41130] ], - "e_256k_1a_1topic_1": [ [1311281835743,0],[1311281836757,0],[1311281837771,0],[1311281838785,0],[1311281839799,0],[1311281840813,0],[1311281841827,0],[1311281842841,0],[1311281843855,0],[1311281844869,0],[1311281845883,0],[1311281846897,0],[1311281847911,0],[1311281848925,0],[1311281849939,0] ], - "e_256k_5p_5topic_5": [ [1311282221891,0],[1311282222905,0],[1311282223919,0],[1311282224933,0],[1311282225947,0],[1311282226961,0],[1311282227975,0],[1311282228989,0],[1311282230003,0],[1311282231017,0],[1311282232031,0],[1311282233045,0],[1311282234059,0],[1311282235073,0],[1311282236087,0] ], - "p_20b_1p_1topic_5": [ [1311282852366,11917],[1311282853380,11931],[1311282854394,11974],[1311282855408,11944],[1311282856422,11563],[1311282857436,11933],[1311282858450,11903],[1311282859464,11950],[1311282860478,11963],[1311282861492,11958],[1311282862506,11957],[1311282863520,11943],[1311282864534,11989],[1311282865548,11948],[1311282866562,11961] ], - "c_20b_5a_1queue_5": [ [1311282342120,65184],[1311282343134,65319],[1311282344148,63887],[1311282345162,64144],[1311282346176,63501],[1311282347190,63362],[1311282348204,63235],[1311282349218,65267],[1311282350232,64468],[1311282351246,64598],[1311282352260,61986],[1311282353274,62206],[1311282354288,65105],[1311282355302,64883],[1311282356316,65335] ], - "p_20b_10a_10topic_10": [ [1311281762595,71557],[1311281763609,64491],[1311281764623,68948],[1311281765637,64700],[1311281766651,65285],[1311281767665,70054],[1311281768679,68448],[1311281769693,64401],[1311281770707,67793],[1311281771721,69135],[1311281772735,68514],[1311281773749,63987],[1311281774763,68701],[1311281775777,69038],[1311281776837,70110] ], - "e_20b_10a_1topic_1": [ [1311282499134,0],[1311282500148,0],[1311282501162,0],[1311282502176,0],[1311282503190,0],[1311282504204,0],[1311282505218,0],[1311282506232,0],[1311282507246,0],[1311282508260,0],[1311282509274,0],[1311282510288,0],[1311282511302,0],[1311282512316,0],[1311282513330,0] ], - "p_20b_1a_1topic_5": [ [1311282517464,18249],[1311282518478,17809],[1311282519492,19041],[1311282520506,17826],[1311282521520,18473],[1311282522534,17980],[1311282523548,18575],[1311282524562,18125],[1311282525576,17949],[1311282526590,17929],[1311282527604,17430],[1311282528618,17835],[1311282529632,17827],[1311282530646,18354],[1311282531660,17739] ], - "c_256k_5p_5queue_5": [ [1311282045439,779],[1311282046453,785],[1311282047467,790],[1311282048481,786],[1311282049495,788],[1311282050509,788],[1311282051523,752],[1311282052537,758],[1311282053551,687],[1311282054565,724],[1311282055579,818],[1311282056593,808],[1311282057607,780],[1311282058621,776],[1311282059635,785] ], - "e_20b_10a_10topic_10": [ [1311281762595,0],[1311281763609,0],[1311281764623,0],[1311281765637,0],[1311281766651,0],[1311281767665,0],[1311281768679,0],[1311281769693,0],[1311281770707,0],[1311281771721,0],[1311281772735,0],[1311281773749,0],[1311281774763,0],[1311281775777,0],[1311281776837,0] ], - "p_1k_1a_1topic_0": [ [1311282980130,66755],[1311282981144,67200],[1311282982158,67433],[1311282983172,66306],[1311282984186,66157],[1311282985200,66918],[1311282986214,66257],[1311282987228,66498],[1311282988242,68280],[1311282989256,69041],[1311282990270,68894],[1311282991284,67996],[1311282992298,68445],[1311282993312,67233],[1311282994326,66781] ], - "e_256k_1a_1queue_1": [ [1311281653129,0],[1311281654143,0],[1311281655157,0],[1311281656171,0],[1311281657185,0],[1311281658199,0],[1311281659213,0],[1311281660227,0],[1311281661241,0],[1311281662255,0],[1311281663269,0],[1311281664283,0],[1311281665297,0],[1311281666311,0],[1311281667325,0] ], - "c_20b_10a_1queue_5": [ [1311282368125,64446],[1311282369139,64274],[1311282370153,64144],[1311282371167,65067],[1311282372181,63688],[1311282373195,65697],[1311282374209,64669],[1311282375223,63745],[1311282376237,65307],[1311282377251,64616],[1311282378265,63869],[1311282379279,64917],[1311282380293,63876],[1311282381307,64216],[1311282382321,65062] ], - "e_20b_10p_1topic_5": [ [1311282888870,0],[1311282889884,0],[1311282890898,0],[1311282891912,0],[1311282892926,0],[1311282893940,0],[1311282894954,0],[1311282895968,0],[1311282896982,0],[1311282897996,0],[1311282899010,0],[1311282900024,0],[1311282901038,0],[1311282902052,0],[1311282903066,0] ], - "e_20b_5p_1topic_10": [ [1311282925374,0],[1311282926388,0],[1311282927402,0],[1311282928416,0],[1311282929430,0],[1311282930444,0],[1311282931458,0],[1311282932472,0],[1311282933486,0],[1311282934500,0],[1311282935514,0],[1311282936528,0],[1311282937542,0],[1311282938556,0],[1311282939570,0] ], - "p_20b_10p_10queue_10": [ [1311281936067,34741],[1311281937081,34601],[1311281938095,34768],[1311281939109,34647],[1311281940123,34736],[1311281941137,34756],[1311281942151,34588],[1311281943165,34738],[1311281944179,34737],[1311281945193,34825],[1311281946207,34736],[1311281947221,34534],[1311281948235,34752],[1311281949249,34572],[1311281950263,34869] ], - "p_20b_1p_1queue_1": [ [1311281890515,267],[1311281891529,254],[1311281892543,261],[1311281893557,264],[1311281894571,256],[1311281895585,262],[1311281896599,262],[1311281897613,265],[1311281898627,264],[1311281899641,264],[1311281900655,263],[1311281901669,262],[1311281902683,266],[1311281903697,265],[1311281904711,264] ], - "p_20b_10a_1queue_10": [ [1311282449511,53320],[1311282450525,54511],[1311282451539,52854],[1311282452553,54515],[1311282453567,56759],[1311282454581,52948],[1311282455595,57284],[1311282456609,55529],[1311282457623,58908],[1311282458637,55649],[1311282459651,56983],[1311282460665,55244],[1311282461679,55343],[1311282462693,53136],[1311282463707,50775] ], - "p_256k_5a_5queue_5": [ [1311281677403,818],[1311281678417,795],[1311281679431,807],[1311281680445,814],[1311281681459,788],[1311281682473,773],[1311281683487,794],[1311281684501,760],[1311281685515,803],[1311281686529,803],[1311281687543,803],[1311281688557,809],[1311281689571,806],[1311281690585,809],[1311281691599,811] ], - "c_20b_5a_1topic_10": [ [1311282590769,89620],[1311282591783,92127],[1311282592797,89668],[1311282593811,91434],[1311282594825,88514],[1311282595839,91323],[1311282596868,88580],[1311282597882,89722],[1311282598896,88730],[1311282599910,89058],[1311282600924,90446],[1311282601938,89900],[1311282602952,88875],[1311282603966,88964],[1311282604980,91004] ], - "p_20b_1p_1queue_0": [ [1311283050486,301],[1311283051500,305],[1311283052514,298],[1311283053528,307],[1311283054542,300],[1311283055556,305],[1311283056570,307],[1311283057584,306],[1311283058598,302],[1311283059612,304],[1311283060626,302],[1311283061640,306],[1311283062654,288],[1311283063668,303],[1311283064682,304],[1311283065696,303],[1311283066710,305],[1311283067724,298],[1311283068738,303],[1311283069752,303],[1311283070766,293],[1311283071780,304],[1311283072794,296],[1311283073808,307],[1311283074822,306],[1311283075836,307],[1311283076850,304],[1311283077864,300],[1311283078878,312],[1311283079892,303] ], - "e_1k_1p_1topic_1": [ [1311282148882,0],[1311282149896,0],[1311282150910,0],[1311282151924,0],[1311282152938,0],[1311282153952,0],[1311282154966,0],[1311282155980,0],[1311282156994,0],[1311282158008,0],[1311282159022,0],[1311282160036,0],[1311282161050,0],[1311282162064,0],[1311282163078,0] ], - "c_20b_10p_10queue_10": [ [1311281936067,34743],[1311281937081,34598],[1311281938095,34770],[1311281939109,34644],[1311281940123,34737],[1311281941137,34759],[1311281942151,34587],[1311281943165,34737],[1311281944179,34734],[1311281945193,34827],[1311281946207,34737],[1311281947221,34532],[1311281948235,34754],[1311281949249,34569],[1311281950263,34869] ], - "e_20b_10p_1topic_10": [ [1311282943626,0],[1311282944640,0],[1311282945654,0],[1311282946668,0],[1311282947682,0],[1311282948696,0],[1311282949710,0],[1311282950724,0],[1311282951738,0],[1311282952752,0],[1311282953766,0],[1311282954780,0],[1311282955794,0],[1311282956808,0],[1311282957822,0] ], - "c_1k_1p_1queue_1": [ [1311281957345,313],[1311281958359,311],[1311281959373,310],[1311281960387,306],[1311281961401,313],[1311281962415,314],[1311281963429,314],[1311281964443,317],[1311281965457,305],[1311281966471,305],[1311281967485,312],[1311281968499,313],[1311281969513,315],[1311281970527,309],[1311281971541,313] ], - "p_20b_10p_1queue_1": [ [1311282651827,334],[1311282652841,329],[1311282653855,331],[1311282654869,332],[1311282655883,337],[1311282656897,333],[1311282657911,333],[1311282658925,336],[1311282659939,336],[1311282660953,334],[1311282661967,337],[1311282662981,330],[1311282663995,334],[1311282665009,337],[1311282666023,332] ], - "p_20b_10p_1topic_5": [ [1311282888870,14611],[1311282889884,14624],[1311282890898,14605],[1311282891912,14637],[1311282892926,14596],[1311282893940,14658],[1311282894954,14649],[1311282895968,14643],[1311282896982,14643],[1311282897996,14627],[1311282899010,14629],[1311282900024,14629],[1311282901038,14633],[1311282902052,14636],[1311282903066,14642] ], - "p_20b_5a_1queue_5": [ [1311282342120,67195],[1311282343134,63503],[1311282344148,63384],[1311282345162,64708],[1311282346176,62258],[1311282347190,63842],[1311282348204,63700],[1311282349218,65357],[1311282350232,65625],[1311282351246,63976],[1311282352260,62338],[1311282353274,61387],[1311282354288,65157],[1311282355302,64806],[1311282356316,65010] ], - "e_1k_5p_5queue_5": [ [1311281978608,0],[1311281979622,0],[1311281980636,0],[1311281981650,0],[1311281982664,0],[1311281983678,0],[1311281984692,0],[1311281985706,0],[1311281986720,0],[1311281987734,0],[1311281988748,0],[1311281989762,0],[1311281990776,0],[1311281991790,0],[1311281992804,0] ], - "e_1k_10p_10queue_10": [ [1311281999887,0],[1311282000901,0],[1311282001915,0],[1311282002929,0],[1311282003943,0],[1311282004957,0],[1311282005971,0],[1311282006985,0],[1311282007999,0],[1311282009013,0],[1311282010027,0],[1311282011041,0],[1311282012055,0],[1311282013069,0],[1311282014083,0] ], - "c_20b_1p_1queue_5": [ [1311282676132,322],[1311282677146,313],[1311282678160,316],[1311282679174,322],[1311282680188,312],[1311282681202,323],[1311282682216,323],[1311282683230,314],[1311282684244,316],[1311282685258,321],[1311282686272,311],[1311282687286,317],[1311282688300,323],[1311282689314,313],[1311282690328,321] ], - "e_256k_5a_5topic_5": [ [1311281853995,0],[1311281855009,0],[1311281856023,0],[1311281857037,0],[1311281858051,0],[1311281859065,0],[1311281860079,0],[1311281861093,0],[1311281862107,0],[1311281863121,0],[1311281864135,0],[1311281865149,0],[1311281866163,0],[1311281867177,0],[1311281868191,0] ], - "c_256k_5a_5queue_5": [ [1311281677403,819],[1311281678417,793],[1311281679431,809],[1311281680445,812],[1311281681459,788],[1311281682473,775],[1311281683487,793],[1311281684501,761],[1311281685515,804],[1311281686529,801],[1311281687543,804],[1311281688557,807],[1311281689571,807],[1311281690585,812],[1311281691599,809] ], - "c_20b_1a_1queue_5": [ [1311282317846,56233],[1311282318860,56922],[1311282319874,56962],[1311282320888,57093],[1311282321902,57041],[1311282322916,56696],[1311282323930,56567],[1311282324944,57789],[1311282325958,57466],[1311282326972,57846],[1311282327986,57341],[1311282329000,57604],[1311282330014,57201],[1311282331028,57568],[1311282332042,57530] ], - "p_20b_1p_1queue_5": [ [1311282676132,322],[1311282677146,313],[1311282678160,316],[1311282679174,322],[1311282680188,312],[1311282681202,323],[1311282682216,323],[1311282683230,314],[1311282684244,316],[1311282685258,321],[1311282686272,311],[1311282687286,317],[1311282688300,323],[1311282689314,313],[1311282690328,321] ], - "c_20b_5a_1topic_1": [ [1311282480742,67722],[1311282481756,67867],[1311282482770,67671],[1311282483784,67525],[1311282484798,67832],[1311282485812,68346],[1311282486826,67721],[1311282487840,67598],[1311282488854,67816],[1311282489868,67792],[1311282490882,67287],[1311282491896,68130],[1311282492910,67537],[1311282493924,67860],[1311282494938,67620] ], - "c_1k_10p_10queue_10": [ [1311281999887,33441],[1311282000901,33414],[1311282001915,33425],[1311282002929,33302],[1311282003943,33523],[1311282004957,33366],[1311282005971,33455],[1311282006985,33231],[1311282007999,33389],[1311282009013,33459],[1311282010027,33369],[1311282011041,33285],[1311282012055,33320],[1311282013069,33347],[1311282014083,33321] ], - "e_20b_1p_1queue_0": [ [1311283050486,0],[1311283051500,0],[1311283052514,0],[1311283053528,0],[1311283054542,0],[1311283055556,0],[1311283056570,0],[1311283057584,0],[1311283058598,0],[1311283059612,0],[1311283060626,0],[1311283061640,0],[1311283062654,0],[1311283063668,0],[1311283064682,0],[1311283065696,0],[1311283066710,0],[1311283067724,0],[1311283068738,0],[1311283069752,0],[1311283070766,0],[1311283071780,0],[1311283072794,0],[1311283073808,0],[1311283074822,0],[1311283075836,0],[1311283076850,0],[1311283077864,0],[1311283078878,0],[1311283079892,0] ], - "p_20b_10a_1topic_10": [ [1311282609130,10126],[1311282610144,8511],[1311282611158,9362],[1311282612188,8556],[1311282613202,8511],[1311282614216,10127],[1311282615230,9406],[1311282616244,8554],[1311282617258,9318],[1311282618272,9405],[1311282619286,9318],[1311282620300,8512],[1311282621314,10172],[1311282622328,8511],[1311282623342,10214] ], - "e_20b_5p_1queue_5": [ [1311282697395,0],[1311282698409,0],[1311282699423,0],[1311282700437,0],[1311282701451,0],[1311282702465,0],[1311282703479,0],[1311282704493,0],[1311282705507,0],[1311282706521,0],[1311282707535,0],[1311282708549,0],[1311282709563,0],[1311282710577,0],[1311282711591,0] ], - "c_256k_1p_1topic_1": [ [1311282203639,733],[1311282204653,731],[1311282205667,730],[1311282206681,731],[1311282207695,727],[1311282208709,729],[1311282209723,731],[1311282210737,729],[1311282211751,731],[1311282212765,735],[1311282213779,730],[1311282214793,733],[1311282215807,731],[1311282216821,729],[1311282217835,733] ], - "c_20b_5p_5topic_5": [ [1311282112378,37918],[1311282113392,38263],[1311282114406,38437],[1311282115420,38326],[1311282116434,38422],[1311282117448,38297],[1311282118462,38203],[1311282119476,38539],[1311282120490,38363],[1311282121504,38288],[1311282122518,38026],[1311282123532,38323],[1311282124546,38139],[1311282125560,38281],[1311282126574,38574] ], - "e_256k_5a_5queue_5": [ [1311281677403,0],[1311281678417,0],[1311281679431,0],[1311281680445,0],[1311281681459,0],[1311281682473,0],[1311281683487,0],[1311281684501,0],[1311281685515,0],[1311281686529,0],[1311281687543,0],[1311281688557,0],[1311281689571,0],[1311281690585,0],[1311281691599,0] ] -} diff --git a/reports/win7-intel-2600k/apollo-1.0-SNAPSHOT.json b/reports/win7-intel-2600k/apollo-1.0-SNAPSHOT.json deleted file mode 100755 index 22fdc59..0000000 --- a/reports/win7-intel-2600k/apollo-1.0-SNAPSHOT.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "benchmark_settings": { - "broker_name": "apollo-1.0-SNAPSHOT", - "url": "tcp://localhost:61613", - "sample_count": 15, - "sample_interval": 1000, - "warm_up_count": 3, - "scenario_connection_scale_rate": 50 - }, - "p_20b_5p_1queue_1": [ [1311279884034,13315],[1311279885048,13368],[1311279886062,13385],[1311279887076,13344],[1311279888090,13342],[1311279889104,13398],[1311279890118,13346],[1311279891132,13369],[1311279892146,13340],[1311279893160,13346],[1311279894174,13311],[1311279895188,13336],[1311279896202,13355],[1311279897216,13351],[1311279898230,13359] ], - "p_20b_10a_10queue_10": [ [1311278808442,345990],[1311278809456,342559],[1311278810470,342335],[1311278811484,270799],[1311278812498,252938],[1311278813512,314904],[1311278814526,322071],[1311278815540,271271],[1311278816554,317717],[1311278817568,267205],[1311278818582,318081],[1311278819596,334866],[1311278820610,261576],[1311278821624,327905],[1311278822638,341248] ], - "e_256k_1p_1queue_1": [ [1311279291343,0],[1311279292357,0],[1311279293371,0],[1311279294385,0],[1311279295399,0],[1311279296413,0],[1311279297427,0],[1311279298441,0],[1311279299455,0],[1311279300469,0],[1311279301483,0],[1311279302497,0],[1311279303511,0],[1311279304525,0],[1311279305539,0] ], - "p_20b_1a_1queue_0": [ [1311280280759,39247],[1311280281773,39213],[1311280282787,39636],[1311280283801,38748],[1311280284815,39747],[1311280285829,39702],[1311280286843,39183],[1311280287857,2154],[1311280288871,7527],[1311280289885,38686],[1311280290899,38601],[1311280291913,39250],[1311280292927,38636],[1311280293941,39255],[1311280294955,38116],[1311280295969,38681],[1311280296983,35968],[1311280297997,551],[1311280299011,0],[1311280300025,32979],[1311280301039,38921],[1311280302053,39217],[1311280303067,38662],[1311280304081,39196],[1311280305095,39139],[1311280306109,38787],[1311280307123,39023],[1311280308137,38779],[1311280309151,37907],[1311280310165,37791] ], - "p_20b_1a_1queue_5": [ [1311279584529,242139],[1311279585543,237308],[1311279586557,243525],[1311279587571,243028],[1311279588585,240330],[1311279589599,245103],[1311279590613,242911],[1311279591627,243434],[1311279592641,241409],[1311279593655,232927],[1311279594669,234221],[1311279595683,231798],[1311279596697,220486],[1311279597711,198223],[1311279598725,194471] ], - "p_256k_1p_1queue_1": [ [1311279291343,289],[1311279292357,290],[1311279293371,289],[1311279294385,292],[1311279295399,288],[1311279296413,278],[1311279297427,286],[1311279298441,292],[1311279299455,292],[1311279300469,291],[1311279301483,292],[1311279302497,289],[1311279303511,289],[1311279304525,289],[1311279305539,289] ], - "e_20b_10p_10queue_10": [ [1311279195650,0],[1311279196664,0],[1311279197678,0],[1311279198692,0],[1311279199706,0],[1311279200720,0],[1311279201734,0],[1311279202748,0],[1311279203762,0],[1311279204776,0],[1311279205790,0],[1311279206804,0],[1311279207818,0],[1311279208832,0],[1311279209846,0] ], - "p_20b_5p_5topic_5": [ [1311279384443,20828],[1311279385457,20814],[1311279386471,20676],[1311279387485,20722],[1311279388499,20768],[1311279389513,20902],[1311279390527,20746],[1311279391541,20777],[1311279392555,20685],[1311279393569,20777],[1311279394583,20761],[1311279395597,20488],[1311279396611,20765],[1311279397625,20625],[1311279398639,20847] ], - "e_20b_1a_1topic_10": [ [1311279827734,0],[1311279828748,0],[1311279829762,0],[1311279830776,0],[1311279831790,0],[1311279832804,0],[1311279833818,0],[1311279834832,0],[1311279835846,0],[1311279836860,0],[1311279837874,0],[1311279838888,0],[1311279839902,0],[1311279840916,0],[1311279841930,0] ], - "e_20b_1p_1queue_10": [ [1311280005153,0],[1311280006167,0],[1311280007181,0],[1311280008195,0],[1311280009209,0],[1311280010223,0],[1311280011237,0],[1311280012251,0],[1311280013265,0],[1311280014279,0],[1311280015293,0],[1311280016307,0],[1311280017321,0],[1311280018335,0],[1311280019349,0] ], - "c_20b_10p_1topic_1": [ [1311280095150,28522],[1311280096164,28441],[1311280097178,28533],[1311280098192,28574],[1311280099206,28571],[1311280100220,28516],[1311280101234,28571],[1311280102248,28474],[1311280103262,28577],[1311280104276,28557],[1311280105290,27887],[1311280106304,28477],[1311280107318,28418],[1311280108332,28508],[1311280109346,28469] ], - "e_20b_1a_1queue_10": [ [1311279659550,0],[1311279660564,0],[1311279661578,0],[1311279662592,0],[1311279663606,0],[1311279664620,0],[1311279665634,0],[1311279666648,0],[1311279667662,0],[1311279668676,0],[1311279669690,0],[1311279670704,0],[1311279671718,0],[1311279672732,0],[1311279673746,0] ], - "c_1k_1a_1topic_1": [ [1311279039369,105311],[1311279040383,104279],[1311279041397,105768],[1311279042411,104527],[1311279043425,104114],[1311279044439,104100],[1311279045453,102206],[1311279046467,103642],[1311279047481,103358],[1311279048495,103931],[1311279049509,102966],[1311279050523,104736],[1311279051537,104831],[1311279052551,103472],[1311279053565,104385] ], - "p_20b_1a_1topic_10": [ [1311279827734,76397],[1311279828748,76118],[1311279829762,76271],[1311279830776,77798],[1311279831790,77827],[1311279832804,78504],[1311279833818,77977],[1311279834832,77804],[1311279835846,76845],[1311279836860,77701],[1311279837874,76719],[1311279838888,78293],[1311279839902,76749],[1311279840916,77548],[1311279841930,75893] ], - "p_256k_5p_5topic_5": [ [1311279497044,509],[1311279498058,521],[1311279499072,520],[1311279500086,514],[1311279501100,487],[1311279502114,508],[1311279503128,495],[1311279504142,501],[1311279505156,526],[1311279506170,519],[1311279507184,517],[1311279508198,514],[1311279509212,512],[1311279510226,520],[1311279511240,515] ], - "e_256k_10p_10topic_10": [ [1311279515796,0],[1311279516810,0],[1311279517824,0],[1311279518838,0],[1311279519852,0],[1311279520866,0],[1311279521880,0],[1311279522894,0],[1311279523908,0],[1311279524922,0],[1311279525936,0],[1311279526950,0],[1311279527964,0],[1311279528978,0],[1311279530007,0] ], - "c_1k_1p_1topic_1": [ [1311279421977,9868],[1311279422991,10156],[1311279424005,8949],[1311279425019,8638],[1311279426033,9271],[1311279427047,10157],[1311279428061,10222],[1311279429075,10218],[1311279430089,10208],[1311279431103,10157],[1311279432117,10257],[1311279433131,10203],[1311279434145,10220],[1311279435159,10235],[1311279436173,10215] ], - "c_20b_1a_1topic_1": [ [1311278983287,279839],[1311278984301,281217],[1311278985315,275325],[1311278986329,269228],[1311278987343,268541],[1311278988357,279454],[1311278989371,268912],[1311278990385,267636],[1311278991399,269434],[1311278992413,273837],[1311278993427,266270],[1311278994441,272380],[1311278995455,264689],[1311278996469,270574],[1311278997483,274548] ], - "c_20b_5p_1topic_5": [ [1311280132168,54932],[1311280133182,55283],[1311280134196,55181],[1311280135210,54610],[1311280136224,54643],[1311280137238,55028],[1311280138252,55094],[1311280139266,55213],[1311280140280,54799],[1311280141294,54645],[1311280142308,54408],[1311280143322,54423],[1311280144336,54901],[1311280145350,55096],[1311280146364,54433] ], - "p_1k_1p_1queue_1": [ [1311279220589,3337],[1311279221590,3346],[1311279222604,3414],[1311279223604,3379],[1311279224604,3406],[1311279225606,3370],[1311279226606,3397],[1311279227606,3384],[1311279228608,3316],[1311279229608,3251],[1311279230610,3318],[1311279231610,3369],[1311279232611,3385],[1311279233611,3402],[1311279234611,3387] ], - "e_1k_10a_10queue_10": [ [1311278883416,0],[1311278884430,0],[1311278885444,0],[1311278886458,0],[1311278887472,0],[1311278888486,0],[1311278889500,0],[1311278890514,0],[1311278891528,0],[1311278892542,0],[1311278893556,0],[1311278894570,0],[1311278895584,0],[1311278896598,0],[1311278897612,0] ], - "c_256k_5p_5topic_5": [ [1311279497044,510],[1311279498058,522],[1311279499072,519],[1311279500086,514],[1311279501100,486],[1311279502114,508],[1311279503128,495],[1311279504142,503],[1311279505156,525],[1311279506170,518],[1311279507184,517],[1311279508198,514],[1311279509212,512],[1311279510226,521],[1311279511240,514] ], - "p_20b_1p_1queue_10": [ [1311280005153,3536],[1311280006167,3553],[1311280007181,3532],[1311280008195,3538],[1311280009209,3517],[1311280010223,3552],[1311280011237,3544],[1311280012251,3535],[1311280013265,3547],[1311280014279,3551],[1311280015293,3541],[1311280016307,3541],[1311280017321,3538],[1311280018335,3551],[1311280019349,3551] ], - "p_20b_10p_1topic_10": [ [1311280207236,5769],[1311280208250,5909],[1311280209264,5647],[1311280210278,5905],[1311280211292,5654],[1311280212306,5757],[1311280213320,5691],[1311280214334,5701],[1311280215348,5688],[1311280216362,5765],[1311280217376,5757],[1311280218390,5710],[1311280219404,5638],[1311280220418,5776],[1311280221432,5697] ], - "p_1k_1p_1topic_1": [ [1311279421977,9867],[1311279422991,10156],[1311279424005,8949],[1311279425019,8639],[1311279426033,9270],[1311279427047,10157],[1311279428061,10222],[1311279429075,10218],[1311279430089,10209],[1311279431103,10156],[1311279432117,10257],[1311279433131,10203],[1311279434145,10220],[1311279435159,10235],[1311279436173,10215] ], - "e_20b_10a_10queue_10": [ [1311278808442,0],[1311278809456,0],[1311278810470,0],[1311278811484,0],[1311278812498,0],[1311278813512,0],[1311278814526,0],[1311278815540,0],[1311278816554,0],[1311278817568,0],[1311278818582,0],[1311278819596,0],[1311278820610,0],[1311278821624,0],[1311278822638,0] ], - "p_256k_10a_10topic_10": [ [1311279133203,440],[1311279134217,428],[1311279135231,441],[1311279136245,429],[1311279137259,434],[1311279138273,434],[1311279139287,439],[1311279140301,432],[1311279141315,433],[1311279142329,428],[1311279143343,429],[1311279144357,428],[1311279145371,441],[1311279146385,426],[1311279147399,423] ], - "p_256k_1p_1topic_1": [ [1311279478278,531],[1311279479292,534],[1311279480306,536],[1311279481320,530],[1311279482334,528],[1311279483348,517],[1311279484362,538],[1311279485376,538],[1311279486390,532],[1311279487404,529],[1311279488418,532],[1311279489432,529],[1311279490446,525],[1311279491460,535],[1311279492474,495] ], - "e_256k_10a_10topic_10": [ [1311279133203,0],[1311279134217,0],[1311279135231,0],[1311279136245,0],[1311279137259,0],[1311279138273,0],[1311279139287,0],[1311279140301,0],[1311279141315,0],[1311279142329,0],[1311279143343,0],[1311279144357,0],[1311279145371,0],[1311279146385,0],[1311279147399,0] ], - "e_20b_10a_1queue_5": [ [1311279634496,0],[1311279635510,0],[1311279636524,0],[1311279637538,0],[1311279638552,0],[1311279639566,0],[1311279640580,0],[1311279641594,0],[1311279642608,0],[1311279643622,0],[1311279644636,0],[1311279645650,0],[1311279646664,0],[1311279647678,0],[1311279648692,0] ], - "p_1k_10p_10queue_10": [ [1311279266645,13974],[1311279267645,14421],[1311279268645,14232],[1311279269645,14442],[1311279270645,14396],[1311279271645,14422],[1311279272645,14401],[1311279273645,14404],[1311279274645,14355],[1311279275645,14213],[1311279276645,14356],[1311279277645,14374],[1311279278645,14352],[1311279279645,14400],[1311279280645,14332] ], - "e_20b_5a_1queue_1": [ [1311279534547,0],[1311279535561,0],[1311279536575,0],[1311279537589,0],[1311279538603,0],[1311279539617,0],[1311279540631,0],[1311279541645,0],[1311279542659,0],[1311279543673,0],[1311279544687,0],[1311279545701,0],[1311279546715,0],[1311279547729,0],[1311279548743,0] ], - "c_1k_5a_5queue_5": [ [1311278858393,90670],[1311278859407,88799],[1311278860421,88833],[1311278861435,106243],[1311278862449,101836],[1311278863463,97410],[1311278864477,92555],[1311278865491,88105],[1311278866505,95059],[1311278867519,83142],[1311278868533,98110],[1311278869547,100343],[1311278870561,91345],[1311278871575,93532],[1311278872589,85212] ], - "c_20b_1a_1queue_1": [ [1311278758865,226120],[1311278759879,221573],[1311278760893,227830],[1311278761907,231586],[1311278762921,230176],[1311278763935,233148],[1311278764949,232446],[1311278765963,231302],[1311278766977,237290],[1311278767991,242423],[1311278769005,243991],[1311278770019,247637],[1311278771033,246113],[1311278772047,245459],[1311278773061,249808] ], - "p_20b_1a_1queue_1": [ [1311278758865,223666],[1311278759879,222339],[1311278760893,227217],[1311278761907,232161],[1311278762921,230275],[1311278763935,233467],[1311278764949,232312],[1311278765963,230687],[1311278766977,237725],[1311278767991,242683],[1311278769005,243985],[1311278770019,247249],[1311278771033,246457],[1311278772047,244800],[1311278773061,250217] ], - "c_20b_5p_1topic_1": [ [1311280076897,25322],[1311280077911,25364],[1311280078925,25276],[1311280079939,25284],[1311280080953,25346],[1311280081967,25358],[1311280082982,25335],[1311280083996,25374],[1311280085010,25427],[1311280086024,25330],[1311280087038,25286],[1311280088052,25257],[1311280089066,25361],[1311280090080,25278],[1311280091094,25412] ], - "e_20b_0_1queue_1": [ [1311280347683,0],[1311280348697,0],[1311280349711,0],[1311280350725,0],[1311280351739,0],[1311280352753,0],[1311280353767,0],[1311280354781,0],[1311280355795,0],[1311280356809,0],[1311280357823,0],[1311280358837,0],[1311280359851,0],[1311280360865,0],[1311280361879,0],[1311280362893,0],[1311280363907,0],[1311280364921,0],[1311280365935,0],[1311280366949,0],[1311280367963,0],[1311280368977,0],[1311280369991,0],[1311280371005,0],[1311280372019,0],[1311280373033,0],[1311280374047,0],[1311280375061,0],[1311280376075,0],[1311280377089,0] ], - "e_20b_10a_1queue_1": [ [1311279559569,0],[1311279560583,0],[1311279561597,0],[1311279562611,0],[1311279563625,0],[1311279564639,0],[1311279565653,0],[1311279566667,0],[1311279567681,0],[1311279568695,0],[1311279569709,0],[1311279570723,0],[1311279571737,0],[1311279572751,0],[1311279573765,0] ], - "e_1k_5p_5topic_5": [ [1311279440744,0],[1311279441758,0],[1311279442772,0],[1311279443786,0],[1311279444800,0],[1311279445814,0],[1311279446828,0],[1311279447842,0],[1311279448856,0],[1311279449870,0],[1311279450884,0],[1311279451898,0],[1311279452912,0],[1311279453926,0],[1311279454940,0] ], - "c_20b_5p_1topic_10": [ [1311280188469,67426],[1311280189483,66956],[1311280190497,67339],[1311280191511,67267],[1311280192525,67632],[1311280193539,67636],[1311280194553,66933],[1311280195567,67278],[1311280196581,67227],[1311280197595,66692],[1311280198609,68283],[1311280199623,66941],[1311280200637,66925],[1311280201651,67060],[1311280202665,67763] ], - "p_20b_5p_1queue_10": [ [1311280027009,12447],[1311280028023,12502],[1311280029037,12480],[1311280030051,12515],[1311280031065,12464],[1311280032079,12521],[1311280033093,12490],[1311280034107,12485],[1311280035121,12497],[1311280036135,12549],[1311280037149,12440],[1311280038163,12499],[1311280039177,12517],[1311280040191,12447],[1311280041205,12515] ], - "p_256k_10a_10queue_10": [ [1311278958280,425],[1311278959294,432],[1311278960308,420],[1311278961322,423],[1311278962336,394],[1311278963350,427],[1311278964364,405],[1311278965378,413],[1311278966392,409],[1311278967406,379],[1311278968420,409],[1311278969434,396],[1311278970448,404],[1311278971462,391],[1311278972476,413] ], - "p_1k_5p_5topic_5": [ [1311279440744,19745],[1311279441758,19662],[1311279442772,19688],[1311279443786,19568],[1311279444800,19636],[1311279445814,19555],[1311279446828,19549],[1311279447842,19531],[1311279448856,19589],[1311279449870,19568],[1311279450884,19552],[1311279451898,19565],[1311279452912,19554],[1311279453926,19533],[1311279454940,19550] ], - "p_20b_10p_1queue_5": [ [1311279980209,16283],[1311279981223,16290],[1311279982237,16284],[1311279983251,16247],[1311279984265,16183],[1311279985279,16181],[1311279986293,16142],[1311279987307,16147],[1311279988321,16162],[1311279989335,16203],[1311279990349,16237],[1311279991363,16222],[1311279992377,16207],[1311279993391,16126],[1311279994405,16201] ], - "c_20b_10p_10topic_10": [ [1311279403210,22039],[1311279404224,22296],[1311279405238,22317],[1311279406252,22214],[1311279407266,22267],[1311279408280,22140],[1311279409294,22303],[1311279410308,22395],[1311279411322,22182],[1311279412336,22274],[1311279413350,22089],[1311279414364,22269],[1311279415378,22273],[1311279416392,22019],[1311279417406,22320] ], - "p_20b_5p_1topic_10": [ [1311280188469,6741],[1311280189483,6695],[1311280190497,6735],[1311280191511,6726],[1311280192525,6763],[1311280193539,6764],[1311280194553,6693],[1311280195567,6729],[1311280196581,6722],[1311280197595,6669],[1311280198609,6828],[1311280199623,6694],[1311280200637,6693],[1311280201651,6706],[1311280202665,6776] ], - "p_20b_5p_1topic_5": [ [1311280132168,10987],[1311280133182,11056],[1311280134196,11036],[1311280135210,10923],[1311280136224,10929],[1311280137238,11005],[1311280138252,11017],[1311280139266,11044],[1311280140280,10960],[1311280141294,10929],[1311280142308,10881],[1311280143322,10885],[1311280144336,10981],[1311280145350,11018],[1311280146364,10887] ], - "c_20b_10p_1topic_5": [ [1311280150935,64075],[1311280151949,64618],[1311280152963,64516],[1311280153977,64205],[1311280154991,64340],[1311280156005,63996],[1311280157019,64761],[1311280158033,64624],[1311280159047,64401],[1311280160061,63432],[1311280161075,64299],[1311280162089,64212],[1311280163103,64481],[1311280164117,64084],[1311280165131,64096] ], - "c_256k_10a_10topic_10": [ [1311279133203,436],[1311279134217,428],[1311279135231,445],[1311279136245,432],[1311279137259,432],[1311279138273,435],[1311279139287,439],[1311279140301,429],[1311279141315,434],[1311279142329,432],[1311279143343,432],[1311279144357,428],[1311279145371,436],[1311279146385,425],[1311279147399,421] ], - "e_1k_1a_1topic_1": [ [1311279039369,0],[1311279040383,0],[1311279041397,0],[1311279042411,0],[1311279043425,0],[1311279044439,0],[1311279045453,0],[1311279046467,0],[1311279047481,0],[1311279048495,0],[1311279049509,0],[1311279050523,0],[1311279051537,0],[1311279052551,0],[1311279053565,0] ], - "c_256k_10p_10topic_10": [ [1311279515796,443],[1311279516810,451],[1311279517824,453],[1311279518838,445],[1311279519852,446],[1311279520866,451],[1311279521880,456],[1311279522894,457],[1311279523908,459],[1311279524922,458],[1311279525936,447],[1311279526950,444],[1311279527964,446],[1311279528978,459],[1311279530007,457] ], - "c_20b_10a_1topic_5": [ [1311279808967,461443],[1311279809981,540769],[1311279810995,539292],[1311279812009,545789],[1311279813023,473137],[1311279814037,559200],[1311279815051,600424],[1311279816065,623354],[1311279817079,615941],[1311279818093,616459],[1311279819107,632154],[1311279820121,621988],[1311279821135,624821],[1311279822149,614390],[1311279823163,627350] ], - "c_1k_10a_10queue_10": [ [1311278883416,88781],[1311278884430,91555],[1311278885444,86693],[1311278886458,94395],[1311278887472,92241],[1311278888486,93853],[1311278889500,89636],[1311278890514,94969],[1311278891528,97273],[1311278892542,94055],[1311278893556,90846],[1311278894570,95542],[1311278895584,95683],[1311278896598,93858],[1311278897612,89957] ], - "p_20b_1a_1topic_1": [ [1311278983287,279813],[1311278984301,281468],[1311278985315,274989],[1311278986329,269463],[1311278987343,268476],[1311278988357,279729],[1311278989371,268504],[1311278990385,267479],[1311278991399,269542],[1311278992413,274319],[1311278993427,266267],[1311278994441,272347],[1311278995455,264304],[1311278996469,270672],[1311278997483,274878] ], - "e_1k_10p_10topic_10": [ [1311279459511,0],[1311279460525,0],[1311279461539,0],[1311279462553,0],[1311279463567,0],[1311279464581,0],[1311279465595,0],[1311279466609,0],[1311279467623,0],[1311279468637,0],[1311279469651,0],[1311279470665,0],[1311279471679,0],[1311279472693,0],[1311279473707,0] ], - "c_20b_10p_1queue_10": [ [1311280051953,16460],[1311280052967,16496],[1311280053981,16466],[1311280054995,16506],[1311280056009,16409],[1311280057023,16447],[1311280058037,16477],[1311280059051,16441],[1311280060065,16498],[1311280061079,16466],[1311280062093,16419],[1311280063107,16482],[1311280064121,16501],[1311280065135,16465],[1311280066149,16478] ], - "e_20b_1a_1topic_0": [ [1311280226003,0],[1311280227017,0],[1311280228031,0],[1311280229045,0],[1311280230059,0],[1311280231073,0],[1311280232087,0],[1311280233101,0],[1311280234115,0],[1311280235129,0],[1311280236143,0],[1311280237157,0],[1311280238171,0],[1311280239185,0],[1311280240199,0] ], - "p_1k_5a_5topic_5": [ [1311279058136,118594],[1311279059150,115442],[1311279060164,115638],[1311279061178,114315],[1311279062192,116861],[1311279063206,117174],[1311279064220,117119],[1311279065234,117448],[1311279066248,116628],[1311279067262,122950],[1311279068276,117430],[1311279069290,117403],[1311279070304,116804],[1311279071318,118824],[1311279072332,115931] ], - "p_20b_1p_1topic_10": [ [1311280169702,3776],[1311280170716,3753],[1311280171730,3756],[1311280172744,3766],[1311280173758,3755],[1311280174772,3757],[1311280175786,3767],[1311280176800,3748],[1311280177814,3771],[1311280178828,3773],[1311280179842,3773],[1311280180856,3763],[1311280181870,3762],[1311280182884,3761],[1311280183898,3750] ], - "p_20b_1a_1queue_10": [ [1311279659550,218069],[1311279660564,217502],[1311279661578,214802],[1311279662592,214026],[1311279663606,211456],[1311279664620,211994],[1311279665634,213226],[1311279666648,216209],[1311279667662,218123],[1311279668676,216077],[1311279669690,218415],[1311279670704,216332],[1311279671718,216790],[1311279672732,217919],[1311279673746,217336] ], - "e_20b_5a_1queue_10": [ [1311279684494,0],[1311279685508,0],[1311279686522,0],[1311279687536,0],[1311279688550,0],[1311279689564,0],[1311279690578,0],[1311279691592,0],[1311279692606,0],[1311279693620,0],[1311279694634,0],[1311279695648,0],[1311279696662,0],[1311279697676,0],[1311279698690,0] ], - "c_256k_10p_10queue_10": [ [1311279341231,514],[1311279342245,502],[1311279343259,502],[1311279344273,490],[1311279345287,500],[1311279346301,505],[1311279347315,498],[1311279348329,507],[1311279349343,512],[1311279350357,505],[1311279351371,497],[1311279352385,508],[1311279353399,491],[1311279354413,515],[1311279355427,504] ], - "p_1k_1a_1queue_1": [ [1311278833433,114815],[1311278834447,118246],[1311278835461,113799],[1311278836475,114811],[1311278837489,117914],[1311278838503,114930],[1311278839517,113592],[1311278840531,114371],[1311278841545,116307],[1311278842559,117313],[1311278843573,117668],[1311278844587,116771],[1311278845601,115151],[1311278846615,117746],[1311278847629,115369] ], - "e_20b_1a_1topic_1": [ [1311278983287,0],[1311278984301,0],[1311278985315,0],[1311278986329,0],[1311278987343,0],[1311278988357,0],[1311278989371,0],[1311278990385,0],[1311278991399,0],[1311278992413,0],[1311278993427,0],[1311278994441,0],[1311278995455,0],[1311278996469,0],[1311278997483,0] ], - "p_1k_5a_5queue_5": [ [1311278858393,90759],[1311278859407,88909],[1311278860421,88467],[1311278861435,106399],[1311278862449,101870],[1311278863463,97848],[1311278864477,92143],[1311278865491,88500],[1311278866505,94570],[1311278867519,83223],[1311278868533,98097],[1311278869547,100352],[1311278870561,91393],[1311278871575,93934],[1311278872589,84731] ], - "c_20b_5p_1queue_1": [ [1311279884034,13318],[1311279885048,13369],[1311279886062,13381],[1311279887076,13348],[1311279888090,13338],[1311279889104,13400],[1311279890118,13345],[1311279891132,13370],[1311279892146,13342],[1311279893160,13345],[1311279894174,13310],[1311279895188,13336],[1311279896202,13355],[1311279897216,13353],[1311279898230,13359] ], - "c_20b_10p_1queue_1": [ [1311279908979,20294],[1311279909993,20277],[1311279911007,20260],[1311279912021,20244],[1311279913035,20203],[1311279914049,20300],[1311279915063,20302],[1311279916077,20275],[1311279917091,20241],[1311279918105,20246],[1311279919119,20305],[1311279920133,20243],[1311279921147,20290],[1311279922161,20235],[1311279923175,20273] ], - "c_256k_1a_1queue_1": [ [1311278908344,485],[1311278909358,484],[1311278910372,478],[1311278911386,485],[1311278912400,488],[1311278913414,487],[1311278914428,488],[1311278915442,482],[1311278916456,489],[1311278917470,489],[1311278918484,487],[1311278919498,467],[1311278920512,479],[1311278921526,487],[1311278922540,487] ], - "e_20b_1p_1topic_5": [ [1311280113402,0],[1311280114416,0],[1311280115430,0],[1311280116444,0],[1311280117458,0],[1311280118472,0],[1311280119486,0],[1311280120500,0],[1311280121514,0],[1311280122528,0],[1311280123542,0],[1311280124556,0],[1311280125570,0],[1311280126584,0],[1311280127598,0] ], - "e_1k_10a_10topic_10": [ [1311279076903,0],[1311279077917,0],[1311279078931,0],[1311279079945,0],[1311279080959,0],[1311279081973,0],[1311279082987,0],[1311279084001,0],[1311279085015,0],[1311279086029,0],[1311279087043,0],[1311279088057,0],[1311279089071,0],[1311279090085,0],[1311279091099,0] ], - "p_20b_5a_1topic_1": [ [1311279734461,311353],[1311279735475,305088],[1311279736489,301842],[1311279737503,309283],[1311279738517,311024],[1311279739531,308715],[1311279740545,313209],[1311279741559,309371],[1311279742573,308904],[1311279743587,304387],[1311279744601,306602],[1311279745615,305845],[1311279746629,305761],[1311279747643,306717],[1311279748657,317185] ], - "c_20b_10a_10queue_10": [ [1311278808442,339631],[1311278809456,345609],[1311278810470,350813],[1311278811484,262619],[1311278812498,256651],[1311278813512,316024],[1311278814526,320711],[1311278815540,269368],[1311278816554,311681],[1311278817568,273704],[1311278818582,310212],[1311278819596,338145],[1311278820610,271160],[1311278821624,329719],[1311278822638,336631] ], - "c_20b_5p_5queue_5": [ [1311279173794,12284],[1311279174808,12262],[1311279175822,12281],[1311279176836,12263],[1311279177850,12302],[1311279178864,12268],[1311279179878,12257],[1311279180892,12255],[1311279181906,12287],[1311279182920,12271],[1311279183934,12314],[1311279184948,12303],[1311279185962,12263],[1311279186976,12297],[1311279187990,12297] ], - "e_20b_5p_5queue_5": [ [1311279173794,0],[1311279174808,0],[1311279175822,0],[1311279176836,0],[1311279177850,0],[1311279178864,0],[1311279179878,0],[1311279180892,0],[1311279181906,0],[1311279182920,0],[1311279183934,0],[1311279184948,0],[1311279185962,0],[1311279186976,0],[1311279187990,0] ], - "c_20b_1a_1topic_5": [ [1311279771465,609505],[1311279772479,607371],[1311279773493,618561],[1311279774507,619608],[1311279775521,620056],[1311279776535,608291],[1311279777549,616234],[1311279778563,618188],[1311279779577,611817],[1311279780591,616630],[1311279781605,613334],[1311279782619,612352],[1311279783633,613901],[1311279784647,612078],[1311279785661,607475] ], - "e_256k_5p_5queue_5": [ [1311279316287,0],[1311279317301,0],[1311279318315,0],[1311279319329,0],[1311279320343,0],[1311279321357,0],[1311279322371,0],[1311279323385,0],[1311279324399,0],[1311279325413,0],[1311279326427,0],[1311279327441,0],[1311279328455,0],[1311279329469,0],[1311279330483,0] ], - "e_1k_5a_5queue_5": [ [1311278858393,0],[1311278859407,0],[1311278860421,0],[1311278861435,0],[1311278862449,0],[1311278863463,0],[1311278864477,0],[1311278865491,0],[1311278866505,0],[1311278867519,0],[1311278868533,0],[1311278869547,0],[1311278870561,0],[1311278871575,0],[1311278872589,0] ], - "e_20b_1p_1topic_10": [ [1311280169702,0],[1311280170716,0],[1311280171730,0],[1311280172744,0],[1311280173758,0],[1311280174772,0],[1311280175786,0],[1311280176800,0],[1311280177814,0],[1311280178828,0],[1311280179842,0],[1311280180856,0],[1311280181870,0],[1311280182884,0],[1311280183898,0] ], - "e_20b_1a_1queue_1": [ [1311278758865,0],[1311278759879,0],[1311278760893,0],[1311278761907,0],[1311278762921,0],[1311278763935,0],[1311278764949,0],[1311278765963,0],[1311278766977,0],[1311278767991,0],[1311278769005,0],[1311278770019,0],[1311278771033,0],[1311278772047,0],[1311278773061,0] ], - "p_20b_5a_1topic_10": [ [1311279846501,71662],[1311279847515,75292],[1311279848529,73118],[1311279849543,75848],[1311279850557,73537],[1311279851571,74587],[1311279852585,74573],[1311279853599,73120],[1311279854613,75300],[1311279855627,73401],[1311279856641,74644],[1311279857655,74208],[1311279858669,73039],[1311279859683,75738],[1311279860697,74081] ], - "e_20b_5p_1topic_1": [ [1311280076897,0],[1311280077911,0],[1311280078925,0],[1311280079939,0],[1311280080953,0],[1311280081967,0],[1311280082982,0],[1311280083996,0],[1311280085010,0],[1311280086024,0],[1311280087038,0],[1311280088052,0],[1311280089066,0],[1311280090080,0],[1311280091094,0] ], - "p_1k_1a_1topic_1": [ [1311279039369,105312],[1311279040383,104283],[1311279041397,105744],[1311279042411,104501],[1311279043425,104171],[1311279044439,104108],[1311279045453,102051],[1311279046467,103738],[1311279047481,103397],[1311279048495,103960],[1311279049509,102928],[1311279050523,104769],[1311279051537,104799],[1311279052551,103473],[1311279053565,104397] ], - "e_20b_10p_1queue_1": [ [1311279908979,0],[1311279909993,0],[1311279911007,0],[1311279912021,0],[1311279913035,0],[1311279914049,0],[1311279915063,0],[1311279916077,0],[1311279917091,0],[1311279918105,0],[1311279919119,0],[1311279920133,0],[1311279921147,0],[1311279922161,0],[1311279923175,0] ], - "e_20b_5a_1topic_5": [ [1311279790216,0],[1311279791230,0],[1311279792244,0],[1311279793258,0],[1311279794272,0],[1311279795286,0],[1311279796300,0],[1311279797314,0],[1311279798328,0],[1311279799342,0],[1311279800356,0],[1311279801370,0],[1311279802384,0],[1311279803398,0],[1311279804412,0] ], - "p_20b_1p_1topic_1": [ [1311279366191,10297],[1311279367205,10373],[1311279368219,10385],[1311279369233,10345],[1311279370247,10361],[1311279371261,10225],[1311279372275,10336],[1311279373289,10326],[1311279374303,10272],[1311279375317,10300],[1311279376331,10311],[1311279377345,10285],[1311279378359,10323],[1311279379373,10285],[1311279380387,10258] ], - "c_256k_1a_1topic_1": [ [1311279095670,496],[1311279096684,113],[1311279097698,0],[1311279098712,0],[1311279099726,0],[1311279100740,0],[1311279101754,410],[1311279102768,506],[1311279103782,376],[1311279104796,0],[1311279105810,0],[1311279106824,0],[1311279107838,0],[1311279108852,150],[1311279109866,504] ], - "p_20b_5p_1topic_1": [ [1311280076897,25323],[1311280077911,25363],[1311280078925,25276],[1311280079939,25286],[1311280080953,25345],[1311280081967,25359],[1311280082982,25333],[1311280083996,25376],[1311280085010,25426],[1311280086024,25330],[1311280087038,25285],[1311280088052,25257],[1311280089066,25361],[1311280090080,25279],[1311280091094,25410] ], - "p_20b_5p_1queue_5": [ [1311279955264,12862],[1311279956278,12847],[1311279957292,12762],[1311279958306,12801],[1311279959320,12768],[1311279960334,12819],[1311279961348,12815],[1311279962362,12827],[1311279963376,12907],[1311279964390,12852],[1311279965404,12845],[1311279966418,12835],[1311279967432,12854],[1311279968446,12841],[1311279969460,12854] ], - "p_20b_10p_10topic_10": [ [1311279403210,22041],[1311279404224,22294],[1311279405238,22318],[1311279406252,22214],[1311279407266,22268],[1311279408280,22138],[1311279409294,22307],[1311279410308,22392],[1311279411322,22183],[1311279412336,22275],[1311279413350,22087],[1311279414364,22271],[1311279415378,22272],[1311279416392,22018],[1311279417406,22321] ], - "e_20b_5a_5topic_5": [ [1311279002054,0],[1311279003068,0],[1311279004082,0],[1311279005096,0],[1311279006110,0],[1311279007124,0],[1311279008138,0],[1311279009152,0],[1311279010166,0],[1311279011180,0],[1311279012194,0],[1311279013208,0],[1311279014222,0],[1311279015236,0],[1311279016250,0] ], - "p_1k_10a_10queue_10": [ [1311278883416,88820],[1311278884430,91541],[1311278885444,86491],[1311278886458,94433],[1311278887472,92247],[1311278888486,93809],[1311278889500,90454],[1311278890514,94254],[1311278891528,97338],[1311278892542,94081],[1311278893556,90786],[1311278894570,95462],[1311278895584,95482],[1311278896598,94790],[1311278897612,90241] ], - "c_1k_10p_10topic_10": [ [1311279459511,21356],[1311279460525,21391],[1311279461539,21316],[1311279462553,21329],[1311279463567,21290],[1311279464581,21351],[1311279465595,21323],[1311279466609,21329],[1311279467623,21266],[1311279468637,21310],[1311279469651,21346],[1311279470665,21316],[1311279471679,20472],[1311279472693,21369],[1311279473707,21372] ], - "c_20b_5p_1queue_10": [ [1311280027009,12447],[1311280028023,12504],[1311280029037,12478],[1311280030051,12517],[1311280031065,12460],[1311280032079,12526],[1311280033093,12488],[1311280034107,12484],[1311280035121,12497],[1311280036135,12549],[1311280037149,12442],[1311280038163,12498],[1311280039177,12517],[1311280040191,12446],[1311280041205,12517] ], - "c_1k_1a_1queue_1": [ [1311278833433,114843],[1311278834447,118266],[1311278835461,114001],[1311278836475,114677],[1311278837489,117813],[1311278838503,114943],[1311278839517,113635],[1311278840531,114361],[1311278841545,116266],[1311278842559,117294],[1311278843573,117775],[1311278844587,116710],[1311278845601,115334],[1311278846615,117614],[1311278847629,115318] ], - "c_20b_10a_1topic_1": [ [1311279752713,194639],[1311279753727,182672],[1311279754741,220137],[1311279755755,187023],[1311279756769,216742],[1311279757783,182637],[1311279758797,211939],[1311279759811,202592],[1311279760825,206372],[1311279761839,172183],[1311279762853,217731],[1311279763867,189476],[1311279764881,220895],[1311279765895,192256],[1311279766909,215941] ], - "e_20b_10p_10topic_10": [ [1311279403210,0],[1311279404224,0],[1311279405238,0],[1311279406252,0],[1311279407266,0],[1311279408280,0],[1311279409294,0],[1311279410308,0],[1311279411322,0],[1311279412336,0],[1311279413350,0],[1311279414364,0],[1311279415378,0],[1311279416392,0],[1311279417406,0] ], - "e_20b_5p_1queue_1": [ [1311279884034,0],[1311279885048,0],[1311279886062,0],[1311279887076,0],[1311279888090,0],[1311279889104,0],[1311279890118,0],[1311279891132,0],[1311279892146,0],[1311279893160,0],[1311279894174,0],[1311279895188,0],[1311279896202,0],[1311279897216,0],[1311279898230,0] ], - "p_20b_10p_1topic_1": [ [1311280095150,28521],[1311280096164,28445],[1311280097178,28531],[1311280098192,28572],[1311280099206,28573],[1311280100220,28516],[1311280101234,28569],[1311280102248,28477],[1311280103262,28575],[1311280104276,28556],[1311280105290,27890],[1311280106304,28472],[1311280107318,28425],[1311280108332,28502],[1311280109346,28472] ], - "e_20b_1a_1queue_5": [ [1311279584529,0],[1311279585543,0],[1311279586557,0],[1311279587571,0],[1311279588585,0],[1311279589599,0],[1311279590613,0],[1311279591627,0],[1311279592641,0],[1311279593655,0],[1311279594669,0],[1311279595683,0],[1311279596697,0],[1311279597711,0],[1311279598725,0] ], - "e_20b_10a_1queue_10": [ [1311279709470,0],[1311279710484,0],[1311279711498,0],[1311279712512,0],[1311279713526,0],[1311279714540,0],[1311279715554,0],[1311279716568,0],[1311279717582,0],[1311279718596,0],[1311279719610,0],[1311279720624,0],[1311279721638,0],[1311279722652,0],[1311279723666,0] ], - "c_20b_5a_5topic_5": [ [1311279002054,422353],[1311279003068,430696],[1311279004082,430965],[1311279005096,421829],[1311279006110,431472],[1311279007124,431521],[1311279008138,429751],[1311279009152,426802],[1311279010166,422031],[1311279011180,430326],[1311279012194,424410],[1311279013208,431114],[1311279014222,432975],[1311279015236,426633],[1311279016250,431784] ], - "c_1k_5p_5topic_5": [ [1311279440744,19746],[1311279441758,19662],[1311279442772,19689],[1311279443786,19568],[1311279444800,19636],[1311279445814,19553],[1311279446828,19549],[1311279447842,19533],[1311279448856,19587],[1311279449870,19569],[1311279450884,19554],[1311279451898,19564],[1311279452912,19554],[1311279453926,19533],[1311279454940,19548] ], - "e_20b_1a_1queue_0": [ [1311280280759,0],[1311280281773,0],[1311280282787,0],[1311280283801,0],[1311280284815,0],[1311280285829,0],[1311280286843,0],[1311280287857,0],[1311280288871,0],[1311280289885,0],[1311280290899,0],[1311280291913,0],[1311280292927,0],[1311280293941,0],[1311280294955,0],[1311280295969,0],[1311280296983,0],[1311280297997,0],[1311280299011,0],[1311280300025,0],[1311280301039,0],[1311280302053,0],[1311280303067,0],[1311280304081,0],[1311280305095,0],[1311280306109,0],[1311280307123,0],[1311280308137,0],[1311280309151,0],[1311280310165,0] ], - "e_256k_10a_10queue_10": [ [1311278958280,0],[1311278959294,0],[1311278960308,0],[1311278961322,0],[1311278962336,0],[1311278963350,0],[1311278964364,0],[1311278965378,0],[1311278966392,0],[1311278967406,0],[1311278968420,0],[1311278969434,0],[1311278970448,0],[1311278971462,0],[1311278972476,0] ], - "c_20b_1p_1topic_5": [ [1311280113402,31399],[1311280114416,31404],[1311280115430,31427],[1311280116444,31392],[1311280117458,31431],[1311280118472,31443],[1311280119486,31389],[1311280120500,31321],[1311280121514,31355],[1311280122528,31325],[1311280123542,31357],[1311280124556,31365],[1311280125570,31317],[1311280126584,31408],[1311280127598,31334] ], - "e_20b_5a_1topic_10": [ [1311279846501,0],[1311279847515,0],[1311279848529,0],[1311279849543,0],[1311279850557,0],[1311279851571,0],[1311279852585,0],[1311279853599,0],[1311279854613,0],[1311279855627,0],[1311279856641,0],[1311279857655,0],[1311279858669,0],[1311279859683,0],[1311279860697,0] ], - "p_20b_10p_1queue_10": [ [1311280051953,16464],[1311280052967,16495],[1311280053981,16467],[1311280054995,16504],[1311280056009,16409],[1311280057023,16450],[1311280058037,16476],[1311280059051,16440],[1311280060065,16497],[1311280061079,16467],[1311280062093,16420],[1311280063107,16482],[1311280064121,16498],[1311280065135,16468],[1311280066149,16478] ], - "e_20b_10p_1topic_1": [ [1311280095150,0],[1311280096164,0],[1311280097178,0],[1311280098192,0],[1311280099206,0],[1311280100220,0],[1311280101234,0],[1311280102248,0],[1311280103262,0],[1311280104276,0],[1311280105290,0],[1311280106304,0],[1311280107318,0],[1311280108332,0],[1311280109346,0] ], - "c_20b_5p_1queue_5": [ [1311279955264,12864],[1311279956278,12846],[1311279957292,12764],[1311279958306,12800],[1311279959320,12769],[1311279960334,12819],[1311279961348,12812],[1311279962362,12829],[1311279963376,12905],[1311279964390,12852],[1311279965404,12844],[1311279966418,12840],[1311279967432,12850],[1311279968446,12844],[1311279969460,12851] ], - "p_20b_10a_1queue_1": [ [1311279559569,153255],[1311279560583,94741],[1311279561597,91965],[1311279562611,159401],[1311279563625,245084],[1311279564639,39231],[1311279565653,175679],[1311279566667,197208],[1311279567681,189415],[1311279568695,262978],[1311279569709,21562],[1311279570723,192956],[1311279571737,174983],[1311279572751,99934],[1311279573765,34142] ], - "c_20b_10a_10topic_10": [ [1311279020602,435770],[1311279021616,424551],[1311279022630,433343],[1311279023644,428806],[1311279024658,434162],[1311279025672,428766],[1311279026686,432968],[1311279027700,429012],[1311279028714,440339],[1311279029728,432766],[1311279030742,430925],[1311279031756,433141],[1311279032770,429832],[1311279033784,421615],[1311279034798,435873] ], - "e_20b_5p_5topic_5": [ [1311279384443,0],[1311279385457,0],[1311279386471,0],[1311279387485,0],[1311279388499,0],[1311279389513,0],[1311279390527,0],[1311279391541,0],[1311279392555,0],[1311279393569,0],[1311279394583,0],[1311279395597,0],[1311279396611,0],[1311279397625,0],[1311279398639,0] ], - "e_20b_5p_1topic_5": [ [1311280132168,0],[1311280133182,0],[1311280134196,0],[1311280135210,0],[1311280136224,0],[1311280137238,0],[1311280138252,0],[1311280139266,0],[1311280140280,0],[1311280141294,0],[1311280142308,0],[1311280143322,0],[1311280144336,0],[1311280145350,0],[1311280146364,0] ], - "e_20b_10p_1queue_10": [ [1311280051953,0],[1311280052967,0],[1311280053981,0],[1311280054995,0],[1311280056009,0],[1311280057023,0],[1311280058037,0],[1311280059051,0],[1311280060065,0],[1311280061079,0],[1311280062093,0],[1311280063107,0],[1311280064121,0],[1311280065135,0],[1311280066149,0] ], - "e_20b_5p_1queue_10": [ [1311280027009,0],[1311280028023,0],[1311280029037,0],[1311280030051,0],[1311280031065,0],[1311280032079,0],[1311280033093,0],[1311280034107,0],[1311280035121,0],[1311280036135,0],[1311280037149,0],[1311280038163,0],[1311280039177,0],[1311280040191,0],[1311280041205,0] ], - "c_20b_10a_1queue_10": [ [1311279709470,341752],[1311279710484,342902],[1311279711498,340649],[1311279712512,318812],[1311279713526,340639],[1311279714540,343115],[1311279715554,344271],[1311279716568,342840],[1311279717582,345838],[1311279718596,345604],[1311279719610,339856],[1311279720624,344894],[1311279721638,322977],[1311279722652,341034],[1311279723666,338031] ], - "c_20b_1a_1queue_10": [ [1311279659550,218001],[1311279660564,217358],[1311279661578,214905],[1311279662592,213532],[1311279663606,211315],[1311279664620,212151],[1311279665634,213242],[1311279666648,216012],[1311279667662,218477],[1311279668676,215956],[1311279669690,218477],[1311279670704,216135],[1311279671718,217116],[1311279672732,217921],[1311279673746,217536] ], - "c_20b_1p_1topic_10": [ [1311280169702,37756],[1311280170716,37540],[1311280171730,37552],[1311280172744,37658],[1311280173758,37557],[1311280174772,37573],[1311280175786,37670],[1311280176800,37470],[1311280177814,37710],[1311280178828,37736],[1311280179842,37724],[1311280180856,37633],[1311280181870,37626],[1311280182884,37601],[1311280183898,37510] ], - "c_20b_10a_1topic_10": [ [1311279865268,568332],[1311279866282,723372],[1311279867296,710829],[1311279868310,712286],[1311279869324,712777],[1311279870338,717977],[1311279871352,591582],[1311279872366,705570],[1311279873380,718110],[1311279874394,715004],[1311279875408,695385],[1311279876422,707392],[1311279877436,608772],[1311279878450,710519],[1311279879464,717145] ], - "c_20b_0_1queue_1": [ [1311280347683,21784],[1311280348697,28211],[1311280349711,0],[1311280350725,9999],[1311280351739,3696],[1311280352753,33339],[1311280353767,30201],[1311280354781,2757],[1311280355795,9999],[1311280356809,29997],[1311280357823,19998],[1311280358837,30985],[1311280359851,9011],[1311280360865,9999],[1311280361879,29997],[1311280362893,29997],[1311280363907,31005],[1311280364921,38988],[1311280365935,45265],[1311280366949,24728],[1311280367963,0],[1311280368977,9999],[1311280369991,9999],[1311280371005,9999],[1311280372019,29997],[1311280373033,39996],[1311280374047,49995],[1311280375061,9999],[1311280376075,0],[1311280377089,19998] ], - "c_256k_10a_10queue_10": [ [1311278958280,430],[1311278959294,429],[1311278960308,424],[1311278961322,418],[1311278962336,394],[1311278963350,423],[1311278964364,409],[1311278965378,410],[1311278966392,410],[1311278967406,384],[1311278968420,397],[1311278969434,404],[1311278970448,400],[1311278971462,393],[1311278972476,416] ], - "c_20b_10p_1topic_10": [ [1311280207236,57677],[1311280208250,59106],[1311280209264,56463],[1311280210278,59053],[1311280211292,56533],[1311280212306,57576],[1311280213320,56911],[1311280214334,56999],[1311280215348,56882],[1311280216362,57652],[1311280217376,57561],[1311280218390,57107],[1311280219404,56384],[1311280220418,57757],[1311280221432,56977] ], - "p_20b_5a_1queue_10": [ [1311279684494,313867],[1311279685508,314425],[1311279686522,314027],[1311279687536,314341],[1311279688550,314688],[1311279689564,313416],[1311279690578,315330],[1311279691592,305868],[1311279692606,308219],[1311279693620,315616],[1311279694634,311741],[1311279695648,313562],[1311279696662,315935],[1311279697676,317920],[1311279698690,313496] ], - "e_1k_5a_5topic_5": [ [1311279058136,0],[1311279059150,0],[1311279060164,0],[1311279061178,0],[1311279062192,0],[1311279063206,0],[1311279064220,0],[1311279065234,0],[1311279066248,0],[1311279067262,0],[1311279068276,0],[1311279069290,0],[1311279070304,0],[1311279071318,0],[1311279072332,0] ], - "p_1k_10p_10topic_10": [ [1311279459511,21355],[1311279460525,21394],[1311279461539,21314],[1311279462553,21330],[1311279463567,21289],[1311279464581,21352],[1311279465595,21323],[1311279466609,21327],[1311279467623,21267],[1311279468637,21310],[1311279469651,21348],[1311279470665,21314],[1311279471679,20472],[1311279472693,21370],[1311279473707,21369] ], - "c_1k_10a_10topic_10": [ [1311279076903,104326],[1311279077917,104337],[1311279078931,101143],[1311279079945,103404],[1311279080959,100959],[1311279081973,107514],[1311279082987,104427],[1311279084001,104103],[1311279085015,104148],[1311279086029,102081],[1311279087043,104497],[1311279088057,102859],[1311279089071,103295],[1311279090085,101915],[1311279091099,109467] ], - "c_20b_1a_1topic_10": [ [1311279827734,763540],[1311279828748,759914],[1311279829762,763406],[1311279830776,780006],[1311279831790,778191],[1311279832804,785491],[1311279833818,781024],[1311279834832,776095],[1311279835846,768504],[1311279836860,777899],[1311279837874,762722],[1311279838888,781813],[1311279839902,770090],[1311279840916,775956],[1311279841930,760314] ], - "e_20b_10p_1queue_5": [ [1311279980209,0],[1311279981223,0],[1311279982237,0],[1311279983251,0],[1311279984265,0],[1311279985279,0],[1311279986293,0],[1311279987307,0],[1311279988321,0],[1311279989335,0],[1311279990349,0],[1311279991363,0],[1311279992377,0],[1311279993391,0],[1311279994405,0] ], - "e_256k_10p_10queue_10": [ [1311279341231,0],[1311279342245,0],[1311279343259,0],[1311279344273,0],[1311279345287,0],[1311279346301,0],[1311279347315,0],[1311279348329,0],[1311279349343,0],[1311279350357,0],[1311279351371,0],[1311279352385,0],[1311279353399,0],[1311279354413,0],[1311279355427,0] ], - "c_1k_5p_5queue_5": [ [1311279242119,11508],[1311279243119,11515],[1311279244119,11478],[1311279245119,11495],[1311279246119,11467],[1311279247119,11490],[1311279248119,11308],[1311279249119,11336],[1311279250120,11382],[1311279251120,11378],[1311279252120,11402],[1311279253120,11459],[1311279254120,11542],[1311279255120,11524],[1311279256120,11522] ], - "e_20b_1p_1queue_5": [ [1311279933408,0],[1311279934422,0],[1311279935436,0],[1311279936450,0],[1311279937464,0],[1311279938478,0],[1311279939492,0],[1311279940506,0],[1311279941520,0],[1311279942534,0],[1311279943548,0],[1311279944562,0],[1311279945576,0],[1311279946590,0],[1311279947604,0] ], - "p_1k_10a_10topic_10": [ [1311279076903,104242],[1311279077917,104283],[1311279078931,100857],[1311279079945,103494],[1311279080959,100995],[1311279081973,107557],[1311279082987,104260],[1311279084001,104270],[1311279085015,104287],[1311279086029,101912],[1311279087043,104551],[1311279088057,102820],[1311279089071,103461],[1311279090085,101626],[1311279091099,109723] ], - "e_256k_1p_1topic_1": [ [1311279478278,0],[1311279479292,0],[1311279480306,0],[1311279481320,0],[1311279482334,0],[1311279483348,0],[1311279484362,0],[1311279485376,0],[1311279486390,0],[1311279487404,0],[1311279488418,0],[1311279489432,0],[1311279490446,0],[1311279491460,0],[1311279492474,0] ], - "c_20b_5a_1topic_5": [ [1311279790216,668541],[1311279791230,664926],[1311279792244,672133],[1311279793258,675750],[1311279794272,663971],[1311279795286,678026],[1311279796300,670467],[1311279797314,676490],[1311279798328,664057],[1311279799342,680461],[1311279800356,676799],[1311279801370,670710],[1311279802384,675371],[1311279803398,667595],[1311279804412,673656] ], - "e_20b_10a_1topic_10": [ [1311279865268,0],[1311279866282,0],[1311279867296,0],[1311279868310,0],[1311279869324,0],[1311279870338,0],[1311279871352,0],[1311279872366,0],[1311279873380,0],[1311279874394,0],[1311279875408,0],[1311279876422,0],[1311279877436,0],[1311279878450,0],[1311279879464,0] ], - "p_256k_1a_1topic_1": [ [1311279095670,496],[1311279096684,115],[1311279097698,0],[1311279098712,0],[1311279099726,0],[1311279100740,0],[1311279101754,409],[1311279102768,505],[1311279103782,374],[1311279104796,0],[1311279105810,0],[1311279106824,0],[1311279107838,0],[1311279108852,152],[1311279109866,506] ], - "c_20b_5a_1queue_10": [ [1311279684494,313720],[1311279685508,315003],[1311279686522,313165],[1311279687536,314844],[1311279688550,314648],[1311279689564,313843],[1311279690578,314700],[1311279691592,305906],[1311279692606,308906],[1311279693620,314139],[1311279694634,312275],[1311279695648,313330],[1311279696662,315503],[1311279697676,318472],[1311279698690,314289] ], - "p_256k_1a_1queue_1": [ [1311278908344,486],[1311278909358,484],[1311278910372,477],[1311278911386,486],[1311278912400,488],[1311278913414,487],[1311278914428,486],[1311278915442,483],[1311278916456,488],[1311278917470,490],[1311278918484,488],[1311278919498,467],[1311278920512,478],[1311278921526,487],[1311278922540,487] ], - "e_1k_1a_1queue_1": [ [1311278833433,0],[1311278834447,0],[1311278835461,0],[1311278836475,0],[1311278837489,0],[1311278838503,0],[1311278839517,0],[1311278840531,0],[1311278841545,0],[1311278842559,0],[1311278843573,0],[1311278844587,0],[1311278845601,0],[1311278846615,0],[1311278847629,0] ], - "e_20b_10a_1topic_5": [ [1311279808967,0],[1311279809981,0],[1311279810995,0],[1311279812009,0],[1311279813023,0],[1311279814037,0],[1311279815051,0],[1311279816065,0],[1311279817079,0],[1311279818093,0],[1311279819107,0],[1311279820121,0],[1311279821135,0],[1311279822149,0],[1311279823163,0] ], - "c_256k_1p_1queue_1": [ [1311279291343,289],[1311279292357,290],[1311279293371,289],[1311279294385,292],[1311279295399,289],[1311279296413,277],[1311279297427,287],[1311279298441,291],[1311279299455,292],[1311279300469,291],[1311279301483,292],[1311279302497,289],[1311279303511,289],[1311279304525,289],[1311279305539,289] ], - "e_20b_1p_1topic_1": [ [1311279366191,0],[1311279367205,0],[1311279368219,0],[1311279369233,0],[1311279370247,0],[1311279371261,0],[1311279372275,0],[1311279373289,0],[1311279374303,0],[1311279375317,0],[1311279376331,0],[1311279377345,0],[1311279378359,0],[1311279379373,0],[1311279380387,0] ], - "p_20b_1a_1topic_0": [ [1311280226003,496766],[1311280227017,496497],[1311280228031,496800],[1311280229045,493459],[1311280230059,489712],[1311280231073,497515],[1311280232087,496085],[1311280233101,496754],[1311280234115,498922],[1311280235129,496004],[1311280236143,498623],[1311280237157,497057],[1311280238171,493352],[1311280239185,496495],[1311280240199,491684] ], - "p_256k_1a_1topic_0": [ [1311280262507,1242],[1311280263521,1314],[1311280264535,1305],[1311280265549,1287],[1311280266563,1286],[1311280267577,1312],[1311280268591,1306],[1311280269605,1322],[1311280270619,1314],[1311280271633,1295],[1311280272647,1336],[1311280273661,1310],[1311280274675,1308],[1311280275689,1296],[1311280276703,1301] ], - "c_20b_1p_1topic_1": [ [1311279366191,10296],[1311279367205,10373],[1311279368219,10386],[1311279369233,10345],[1311279370247,10360],[1311279371261,10226],[1311279372275,10336],[1311279373289,10326],[1311279374303,10272],[1311279375317,10300],[1311279376331,10311],[1311279377345,10285],[1311279378359,10322],[1311279379373,10286],[1311279380387,10258] ], - "p_20b_5p_5queue_5": [ [1311279173794,12283],[1311279174808,12262],[1311279175822,12282],[1311279176836,12263],[1311279177850,12303],[1311279178864,12267],[1311279179878,12257],[1311279180892,12254],[1311279181906,12286],[1311279182920,12272],[1311279183934,12313],[1311279184948,12304],[1311279185962,12265],[1311279186976,12296],[1311279187990,12297] ], - "e_1k_1a_1topic_0": [ [1311280244255,0],[1311280245269,0],[1311280246283,0],[1311280247297,0],[1311280248311,0],[1311280249325,0],[1311280250339,0],[1311280251353,0],[1311280252367,0],[1311280253381,0],[1311280254395,0],[1311280255409,0],[1311280256423,0],[1311280257437,0],[1311280258451,0] ], - "p_20b_5a_1queue_1": [ [1311279534547,149735],[1311279535561,155136],[1311279536575,187060],[1311279537589,151851],[1311279538603,148654],[1311279539617,165007],[1311279540631,149282],[1311279541645,169133],[1311279542659,217019],[1311279543673,79960],[1311279544687,90656],[1311279545701,152173],[1311279546715,155730],[1311279547729,91127],[1311279548743,0] ], - "p_20b_10a_1queue_5": [ [1311279634496,269600],[1311279635510,319507],[1311279636524,360488],[1311279637538,363631],[1311279638552,339528],[1311279639566,345379],[1311279640580,347689],[1311279641594,321270],[1311279642608,328432],[1311279643622,343887],[1311279644636,324842],[1311279645650,336430],[1311279646664,311299],[1311279647678,288972],[1311279648692,251346] ], - "p_256k_5p_5queue_5": [ [1311279316287,536],[1311279317301,539],[1311279318315,522],[1311279319329,528],[1311279320343,548],[1311279321357,533],[1311279322371,535],[1311279323385,539],[1311279324399,537],[1311279325413,533],[1311279326427,535],[1311279327441,538],[1311279328455,542],[1311279329469,537],[1311279330483,537] ], - "c_20b_5a_1queue_1": [ [1311279534547,152012],[1311279535561,154700],[1311279536575,186815],[1311279537589,148777],[1311279538603,151740],[1311279539617,163831],[1311279540631,150810],[1311279541645,168761],[1311279542659,218294],[1311279543673,79264],[1311279544687,89044],[1311279545701,153576],[1311279546715,155223],[1311279547729,91897],[1311279548743,0] ], - "e_20b_1a_1topic_5": [ [1311279771465,0],[1311279772479,0],[1311279773493,0],[1311279774507,0],[1311279775521,0],[1311279776535,0],[1311279777549,0],[1311279778563,0],[1311279779577,0],[1311279780591,0],[1311279781605,0],[1311279782619,0],[1311279783633,0],[1311279784647,0],[1311279785661,0] ], - "c_20b_10p_1queue_5": [ [1311279980209,16284],[1311279981223,16285],[1311279982237,16285],[1311279983251,16248],[1311279984265,16187],[1311279985279,16179],[1311279986293,16137],[1311279987307,16149],[1311279988321,16167],[1311279989335,16197],[1311279990349,16238],[1311279991363,16224],[1311279992377,16203],[1311279993391,16127],[1311279994405,16201] ], - "e_1k_1p_1queue_1": [ [1311279220589,0],[1311279221590,0],[1311279222604,0],[1311279223604,0],[1311279224604,0],[1311279225606,0],[1311279226606,0],[1311279227606,0],[1311279228608,0],[1311279229608,0],[1311279230610,0],[1311279231610,0],[1311279232611,0],[1311279233611,0],[1311279234611,0] ], - "e_256k_1a_1topic_0": [ [1311280262507,0],[1311280263521,0],[1311280264535,0],[1311280265549,0],[1311280266563,0],[1311280267577,0],[1311280268591,0],[1311280269605,0],[1311280270619,0],[1311280271633,0],[1311280272647,0],[1311280273661,0],[1311280274675,0],[1311280275689,0],[1311280276703,0] ], - "c_20b_10a_1queue_1": [ [1311279559569,146762],[1311279560583,100446],[1311279561597,93213],[1311279562611,157897],[1311279563625,244892],[1311279564639,40478],[1311279565653,174243],[1311279566667,192641],[1311279567681,193692],[1311279568695,263089],[1311279569709,21651],[1311279570723,193733],[1311279571737,173108],[1311279572751,102337],[1311279573765,35249] ], - "p_20b_10a_1topic_1": [ [1311279752713,194356],[1311279753727,182679],[1311279754741,220660],[1311279755755,185841],[1311279756769,217418],[1311279757783,182566],[1311279758797,212208],[1311279759811,202450],[1311279760825,206671],[1311279761839,171926],[1311279762853,217951],[1311279763867,189783],[1311279764881,220913],[1311279765895,191565],[1311279766909,216252] ], - "p_20b_5a_5topic_5": [ [1311279002054,423635],[1311279003068,428382],[1311279004082,431893],[1311279005096,421658],[1311279006110,431252],[1311279007124,432091],[1311279008138,429194],[1311279009152,427364],[1311279010166,422165],[1311279011180,429744],[1311279012194,425270],[1311279013208,431260],[1311279014222,431487],[1311279015236,427616],[1311279016250,431613] ], - "p_256k_10p_10topic_10": [ [1311279515796,437],[1311279516810,455],[1311279517824,452],[1311279518838,452],[1311279519852,443],[1311279520866,448],[1311279521880,456],[1311279522894,458],[1311279523908,463],[1311279524922,455],[1311279525936,447],[1311279526950,445],[1311279527964,442],[1311279528978,463],[1311279530007,458] ], - "e_20b_5a_5queue_5": [ [1311278783373,0],[1311278784387,0],[1311278785401,0],[1311278786415,0],[1311278787429,0],[1311278788443,0],[1311278789457,0],[1311278790471,0],[1311278791485,0],[1311278792499,0],[1311278793513,0],[1311278794527,0],[1311278795541,0],[1311278796555,0],[1311278797569,0] ], - "c_256k_5a_5topic_5": [ [1311279114436,505],[1311279115450,488],[1311279116464,488],[1311279117478,494],[1311279118492,490],[1311279119506,500],[1311279120520,492],[1311279121534,491],[1311279122548,483],[1311279123562,501],[1311279124576,492],[1311279125590,475],[1311279126604,487],[1311279127618,498],[1311279128632,492] ], - "p_20b_5a_1topic_5": [ [1311279790216,133147],[1311279791230,132531],[1311279792244,134588],[1311279793258,135299],[1311279794272,133152],[1311279795286,135440],[1311279796300,134710],[1311279797314,134783],[1311279798328,133241],[1311279799342,135688],[1311279800356,136001],[1311279801370,133134],[1311279802384,135370],[1311279803398,133677],[1311279804412,134197] ], - "p_256k_5a_5topic_5": [ [1311279114436,503],[1311279115450,489],[1311279116464,487],[1311279117478,496],[1311279118492,490],[1311279119506,499],[1311279120520,490],[1311279121534,495],[1311279122548,479],[1311279123562,505],[1311279124576,490],[1311279125590,477],[1311279126604,484],[1311279127618,500],[1311279128632,494] ], - "e_20b_5a_1queue_5": [ [1311279609458,0],[1311279610472,0],[1311279611486,0],[1311279612500,0],[1311279613514,0],[1311279614528,0],[1311279615542,0],[1311279616556,0],[1311279617570,0],[1311279618584,0],[1311279619598,0],[1311279620612,0],[1311279621626,0],[1311279622640,0],[1311279623654,0] ], - "c_20b_5a_5queue_5": [ [1311278783373,244378],[1311278784387,318806],[1311278785401,280085],[1311278786415,295642],[1311278787429,329545],[1311278788443,283777],[1311278789457,292990],[1311278790471,331821],[1311278791485,292818],[1311278792499,332816],[1311278793513,293242],[1311278794527,332180],[1311278795541,288681],[1311278796555,324028],[1311278797569,290409] ], - "c_20b_1p_1queue_10": [ [1311280005153,3535],[1311280006167,3553],[1311280007181,3533],[1311280008195,3538],[1311280009209,3517],[1311280010223,3552],[1311280011237,3544],[1311280012251,3535],[1311280013265,3546],[1311280014279,3552],[1311280015293,3540],[1311280016307,3542],[1311280017321,3538],[1311280018335,3551],[1311280019349,3551] ], - "e_20b_1p_1queue_1": [ [1311279151939,0],[1311279152953,0],[1311279153967,0],[1311279154981,0],[1311279155995,0],[1311279157009,0],[1311279158023,0],[1311279159037,0],[1311279160051,0],[1311279161065,0],[1311279162079,0],[1311279163093,0],[1311279164107,0],[1311279165121,0],[1311279166135,0] ], - "p_20b_10a_1topic_5": [ [1311279808967,91586],[1311279809981,109490],[1311279810995,108241],[1311279812009,108749],[1311279813023,93452],[1311279814037,111984],[1311279815051,120316],[1311279816065,124696],[1311279817079,123319],[1311279818093,123851],[1311279819107,126087],[1311279820121,123373],[1311279821135,125546],[1311279822149,123466],[1311279823163,125030] ], - "e_20b_5a_1topic_1": [ [1311279734461,0],[1311279735475,0],[1311279736489,0],[1311279737503,0],[1311279738517,0],[1311279739531,0],[1311279740545,0],[1311279741559,0],[1311279742573,0],[1311279743587,0],[1311279744601,0],[1311279745615,0],[1311279746629,0],[1311279747643,0],[1311279748657,0] ], - "c_20b_1p_1queue_1": [ [1311279151939,3195],[1311279152953,3408],[1311279153967,3407],[1311279154981,3387],[1311279155995,3400],[1311279157009,3414],[1311279158023,3403],[1311279159037,3397],[1311279160051,3415],[1311279161065,3441],[1311279162079,3426],[1311279163093,3448],[1311279164107,3442],[1311279165121,3447],[1311279166135,3413] ], - "p_256k_10p_10queue_10": [ [1311279341231,514],[1311279342245,503],[1311279343259,501],[1311279344273,489],[1311279345287,500],[1311279346301,506],[1311279347315,499],[1311279348329,507],[1311279349343,512],[1311279350357,503],[1311279351371,496],[1311279352385,510],[1311279353399,492],[1311279354413,513],[1311279355427,505] ], - "c_1k_5a_5topic_5": [ [1311279058136,118633],[1311279059150,115483],[1311279060164,115653],[1311279061178,114327],[1311279062192,116910],[1311279063206,117195],[1311279064220,116900],[1311279065234,117604],[1311279066248,116636],[1311279067262,122957],[1311279068276,117338],[1311279069290,117449],[1311279070304,116859],[1311279071318,118729],[1311279072332,115962] ], - "p_1k_5p_5queue_5": [ [1311279242119,11509],[1311279243119,11516],[1311279244119,11476],[1311279245119,11497],[1311279246119,11464],[1311279247119,11490],[1311279248119,11312],[1311279249119,11334],[1311279250120,11382],[1311279251120,11379],[1311279252120,11402],[1311279253120,11457],[1311279254120,11544],[1311279255120,11523],[1311279256120,11521] ], - "p_20b_5a_5queue_5": [ [1311278783373,244103],[1311278784387,315564],[1311278785401,282111],[1311278786415,300077],[1311278787429,325227],[1311278788443,282665],[1311278789457,294029],[1311278790471,332239],[1311278791485,294631],[1311278792499,331040],[1311278793513,292366],[1311278794527,332184],[1311278795541,292329],[1311278796555,320798],[1311278797569,297503] ], - "e_256k_1a_1topic_1": [ [1311279095670,0],[1311279096684,0],[1311279097698,0],[1311279098712,0],[1311279099726,0],[1311279100740,0],[1311279101754,0],[1311279102768,0],[1311279103782,0],[1311279104796,0],[1311279105810,0],[1311279106824,0],[1311279107838,0],[1311279108852,0],[1311279109866,0] ], - "e_256k_5p_5topic_5": [ [1311279497044,0],[1311279498058,0],[1311279499072,0],[1311279500086,0],[1311279501100,0],[1311279502114,0],[1311279503128,0],[1311279504142,0],[1311279505156,0],[1311279506170,0],[1311279507184,0],[1311279508198,0],[1311279509212,0],[1311279510226,0],[1311279511240,0] ], - "p_20b_1p_1topic_5": [ [1311280113402,6279],[1311280114416,6281],[1311280115430,6285],[1311280116444,6279],[1311280117458,6286],[1311280118472,6289],[1311280119486,6277],[1311280120500,6265],[1311280121514,6271],[1311280122528,6265],[1311280123542,6271],[1311280124556,6272],[1311280125570,6265],[1311280126584,6281],[1311280127598,6267] ], - "c_20b_5a_1queue_5": [ [1311279609458,318762],[1311279610472,315246],[1311279611486,315297],[1311279612500,316139],[1311279613514,316354],[1311279614528,314236],[1311279615542,289273],[1311279616556,309673],[1311279617570,316822],[1311279618584,314306],[1311279619598,251548],[1311279620612,312074],[1311279621626,316526],[1311279622640,314637],[1311279623654,318333] ], - "p_20b_10a_10topic_10": [ [1311279020602,435087],[1311279021616,426685],[1311279022630,431873],[1311279023644,432417],[1311279024658,430878],[1311279025672,428348],[1311279026686,434347],[1311279027700,429658],[1311279028714,439409],[1311279029728,433678],[1311279030742,431108],[1311279031756,434072],[1311279032770,427489],[1311279033784,422312],[1311279034798,436625] ], - "e_20b_10a_1topic_1": [ [1311279752713,0],[1311279753727,0],[1311279754741,0],[1311279755755,0],[1311279756769,0],[1311279757783,0],[1311279758797,0],[1311279759811,0],[1311279760825,0],[1311279761839,0],[1311279762853,0],[1311279763867,0],[1311279764881,0],[1311279765895,0],[1311279766909,0] ], - "p_20b_1a_1topic_5": [ [1311279771465,121857],[1311279772479,121386],[1311279773493,123456],[1311279774507,124251],[1311279775521,123987],[1311279776535,121571],[1311279777549,123650],[1311279778563,123536],[1311279779577,122023],[1311279780591,123655],[1311279781605,122506],[1311279782619,122501],[1311279783633,122669],[1311279784647,122352],[1311279785661,122072] ], - "c_256k_5p_5queue_5": [ [1311279316287,536],[1311279317301,538],[1311279318315,523],[1311279319329,527],[1311279320343,548],[1311279321357,533],[1311279322371,535],[1311279323385,539],[1311279324399,537],[1311279325413,534],[1311279326427,535],[1311279327441,537],[1311279328455,544],[1311279329469,535],[1311279330483,538] ], - "e_20b_10a_10topic_10": [ [1311279020602,0],[1311279021616,0],[1311279022630,0],[1311279023644,0],[1311279024658,0],[1311279025672,0],[1311279026686,0],[1311279027700,0],[1311279028714,0],[1311279029728,0],[1311279030742,0],[1311279031756,0],[1311279032770,0],[1311279033784,0],[1311279034798,0] ], - "p_1k_1a_1topic_0": [ [1311280244255,111941],[1311280245269,111309],[1311280246283,113558],[1311280247297,111555],[1311280248311,113858],[1311280249325,114808],[1311280250339,111228],[1311280251353,109275],[1311280252367,106138],[1311280253381,106501],[1311280254395,112110],[1311280255409,111674],[1311280256423,108292],[1311280257437,110001],[1311280258451,109579] ], - "e_256k_1a_1queue_1": [ [1311278908344,0],[1311278909358,0],[1311278910372,0],[1311278911386,0],[1311278912400,0],[1311278913414,0],[1311278914428,0],[1311278915442,0],[1311278916456,0],[1311278917470,0],[1311278918484,0],[1311278919498,0],[1311278920512,0],[1311278921526,0],[1311278922540,0] ], - "c_20b_10a_1queue_5": [ [1311279634496,269070],[1311279635510,320769],[1311279636524,359188],[1311279637538,363930],[1311279638552,341742],[1311279639566,342563],[1311279640580,348040],[1311279641594,322062],[1311279642608,331632],[1311279643622,339628],[1311279644636,327795],[1311279645650,332803],[1311279646664,314663],[1311279647678,290099],[1311279648692,249224] ], - "e_20b_10p_1topic_5": [ [1311280150935,0],[1311280151949,0],[1311280152963,0],[1311280153977,0],[1311280154991,0],[1311280156005,0],[1311280157019,0],[1311280158033,0],[1311280159047,0],[1311280160061,0],[1311280161075,0],[1311280162089,0],[1311280163103,0],[1311280164117,0],[1311280165131,0] ], - "e_20b_5p_1topic_10": [ [1311280188469,0],[1311280189483,0],[1311280190497,0],[1311280191511,0],[1311280192525,0],[1311280193539,0],[1311280194553,0],[1311280195567,0],[1311280196581,0],[1311280197595,0],[1311280198609,0],[1311280199623,0],[1311280200637,0],[1311280201651,0],[1311280202665,0] ], - "p_20b_10p_10queue_10": [ [1311279195650,14630],[1311279196664,14679],[1311279197678,14643],[1311279198692,14626],[1311279199706,14641],[1311279200720,14613],[1311279201734,14701],[1311279202748,14623],[1311279203762,14710],[1311279204776,14639],[1311279205790,14666],[1311279206804,14693],[1311279207818,14658],[1311279208832,14674],[1311279209846,14393] ], - "p_20b_1p_1queue_1": [ [1311279151939,3195],[1311279152953,3408],[1311279153967,3407],[1311279154981,3386],[1311279155995,3401],[1311279157009,3413],[1311279158023,3403],[1311279159037,3398],[1311279160051,3415],[1311279161065,3440],[1311279162079,3427],[1311279163093,3448],[1311279164107,3442],[1311279165121,3446],[1311279166135,3414] ], - "p_20b_10a_1queue_10": [ [1311279709470,343682],[1311279710484,343682],[1311279711498,343217],[1311279712512,316519],[1311279713526,342999],[1311279714540,339443],[1311279715554,343605],[1311279716568,344296],[1311279717582,347370],[1311279718596,346630],[1311279719610,339082],[1311279720624,345118],[1311279721638,321101],[1311279722652,341797],[1311279723666,337729] ], - "p_256k_5a_5queue_5": [ [1311278933304,406],[1311278934318,463],[1311278935332,464],[1311278936346,482],[1311278937360,453],[1311278938374,466],[1311278939388,456],[1311278940402,432],[1311278941416,471],[1311278942430,466],[1311278943444,435],[1311278944458,462],[1311278945472,467],[1311278946486,473],[1311278947500,443] ], - "c_20b_5a_1topic_10": [ [1311279846501,724280],[1311279847515,744427],[1311279848529,739795],[1311279849543,747743],[1311279850557,740580],[1311279851571,746334],[1311279852585,745759],[1311279853599,729141],[1311279854613,745607],[1311279855627,738862],[1311279856641,748177],[1311279857655,745642],[1311279858669,731087],[1311279859683,753569],[1311279860697,748304] ], - "p_20b_1p_1queue_0": [ [1311280314221,249],[1311280315235,246],[1311280316249,254],[1311280317263,260],[1311280318277,248],[1311280319291,248],[1311280320305,249],[1311280321319,256],[1311280322333,254],[1311280323347,251],[1311280324361,256],[1311280325375,257],[1311280326389,253],[1311280327403,251],[1311280328417,247],[1311280329431,248],[1311280330445,254],[1311280331459,252],[1311280332473,252],[1311280333487,241],[1311280334501,244],[1311280335515,245],[1311280336529,246],[1311280337543,247],[1311280338557,245],[1311280339571,251],[1311280340585,250],[1311280341599,255],[1311280342613,252],[1311280343627,250] ], - "e_1k_1p_1topic_1": [ [1311279421977,0],[1311279422991,0],[1311279424005,0],[1311279425019,0],[1311279426033,0],[1311279427047,0],[1311279428061,0],[1311279429075,0],[1311279430089,0],[1311279431103,0],[1311279432117,0],[1311279433131,0],[1311279434145,0],[1311279435159,0],[1311279436173,0] ], - "c_20b_10p_10queue_10": [ [1311279195650,14628],[1311279196664,14680],[1311279197678,14642],[1311279198692,14623],[1311279199706,14645],[1311279200720,14614],[1311279201734,14698],[1311279202748,14621],[1311279203762,14712],[1311279204776,14641],[1311279205790,14665],[1311279206804,14695],[1311279207818,14656],[1311279208832,14674],[1311279209846,14394] ], - "e_20b_10p_1topic_10": [ [1311280207236,0],[1311280208250,0],[1311280209264,0],[1311280210278,0],[1311280211292,0],[1311280212306,0],[1311280213320,0],[1311280214334,0],[1311280215348,0],[1311280216362,0],[1311280217376,0],[1311280218390,0],[1311280219404,0],[1311280220418,0],[1311280221432,0] ], - "c_1k_1p_1queue_1": [ [1311279220589,3336],[1311279221590,3346],[1311279222604,3415],[1311279223604,3378],[1311279224604,3407],[1311279225606,3370],[1311279226606,3396],[1311279227606,3385],[1311279228608,3315],[1311279229608,3252],[1311279230610,3317],[1311279231610,3370],[1311279232611,3385],[1311279233611,3401],[1311279234611,3387] ], - "p_20b_10p_1queue_1": [ [1311279908979,20297],[1311279909993,20277],[1311279911007,20256],[1311279912021,20245],[1311279913035,20204],[1311279914049,20302],[1311279915063,20296],[1311279916077,20276],[1311279917091,20246],[1311279918105,20241],[1311279919119,20308],[1311279920133,20242],[1311279921147,20294],[1311279922161,20232],[1311279923175,20273] ], - "p_20b_10p_1topic_5": [ [1311280150935,12820],[1311280151949,12919],[1311280152963,12903],[1311280153977,12842],[1311280154991,12867],[1311280156005,12799],[1311280157019,12953],[1311280158033,12924],[1311280159047,12881],[1311280160061,12687],[1311280161075,12860],[1311280162089,12841],[1311280163103,12897],[1311280164117,12816],[1311280165131,12819] ], - "p_20b_5a_1queue_5": [ [1311279609458,318536],[1311279610472,316578],[1311279611486,314886],[1311279612500,315200],[1311279613514,316847],[1311279614528,315005],[1311279615542,289605],[1311279616556,310224],[1311279617570,316403],[1311279618584,314521],[1311279619598,250318],[1311279620612,312419],[1311279621626,315812],[1311279622640,317602],[1311279623654,316064] ], - "e_1k_5p_5queue_5": [ [1311279242119,0],[1311279243119,0],[1311279244119,0],[1311279245119,0],[1311279246119,0],[1311279247119,0],[1311279248119,0],[1311279249119,0],[1311279250120,0],[1311279251120,0],[1311279252120,0],[1311279253120,0],[1311279254120,0],[1311279255120,0],[1311279256120,0] ], - "e_1k_10p_10queue_10": [ [1311279266645,0],[1311279267645,0],[1311279268645,0],[1311279269645,0],[1311279270645,0],[1311279271645,0],[1311279272645,0],[1311279273645,0],[1311279274645,0],[1311279275645,0],[1311279276645,0],[1311279277645,0],[1311279278645,0],[1311279279645,0],[1311279280645,0] ], - "c_20b_1p_1queue_5": [ [1311279933408,3573],[1311279934422,3561],[1311279935436,3572],[1311279936450,3577],[1311279937464,3590],[1311279938478,3580],[1311279939492,3589],[1311279940506,3589],[1311279941520,3583],[1311279942534,3578],[1311279943548,3596],[1311279944562,3588],[1311279945576,3585],[1311279946590,3578],[1311279947604,3598] ], - "e_256k_5a_5topic_5": [ [1311279114436,0],[1311279115450,0],[1311279116464,0],[1311279117478,0],[1311279118492,0],[1311279119506,0],[1311279120520,0],[1311279121534,0],[1311279122548,0],[1311279123562,0],[1311279124576,0],[1311279125590,0],[1311279126604,0],[1311279127618,0],[1311279128632,0] ], - "c_256k_5a_5queue_5": [ [1311278933304,405],[1311278934318,465],[1311278935332,463],[1311278936346,481],[1311278937360,451],[1311278938374,470],[1311278939388,454],[1311278940402,436],[1311278941416,468],[1311278942430,468],[1311278943444,430],[1311278944458,467],[1311278945472,466],[1311278946486,470],[1311278947500,443] ], - "c_20b_1a_1queue_5": [ [1311279584529,241615],[1311279585543,237814],[1311279586557,243340],[1311279587571,243340],[1311279588585,239955],[1311279589599,245015],[1311279590613,243340],[1311279591627,243340],[1311279592641,241694],[1311279593655,232819],[1311279594669,233818],[1311279595683,232095],[1311279596697,220170],[1311279597711,197846],[1311279598725,194812] ], - "p_20b_1p_1queue_5": [ [1311279933408,3572],[1311279934422,3561],[1311279935436,3572],[1311279936450,3578],[1311279937464,3590],[1311279938478,3580],[1311279939492,3589],[1311279940506,3589],[1311279941520,3583],[1311279942534,3577],[1311279943548,3597],[1311279944562,3587],[1311279945576,3586],[1311279946590,3577],[1311279947604,3599] ], - "c_20b_5a_1topic_1": [ [1311279734461,311930],[1311279735475,304492],[1311279736489,302379],[1311279737503,308711],[1311279738517,311826],[1311279739531,307806],[1311279740545,313545],[1311279741559,309156],[1311279742573,309764],[1311279743587,303878],[1311279744601,306620],[1311279745615,305876],[1311279746629,305837],[1311279747643,306393],[1311279748657,317402] ], - "c_1k_10p_10queue_10": [ [1311279266645,13979],[1311279267645,14417],[1311279268645,14235],[1311279269645,14438],[1311279270645,14399],[1311279271645,14421],[1311279272645,14402],[1311279273645,14404],[1311279274645,14354],[1311279275645,14213],[1311279276645,14359],[1311279277645,14373],[1311279278645,14350],[1311279279645,14401],[1311279280645,14329] ], - "e_20b_1p_1queue_0": [ [1311280314221,0],[1311280315235,0],[1311280316249,0],[1311280317263,0],[1311280318277,0],[1311280319291,0],[1311280320305,0],[1311280321319,0],[1311280322333,0],[1311280323347,0],[1311280324361,0],[1311280325375,0],[1311280326389,0],[1311280327403,0],[1311280328417,0],[1311280329431,0],[1311280330445,0],[1311280331459,0],[1311280332473,0],[1311280333487,0],[1311280334501,0],[1311280335515,0],[1311280336529,0],[1311280337543,0],[1311280338557,0],[1311280339571,0],[1311280340585,0],[1311280341599,0],[1311280342613,0],[1311280343627,0] ], - "p_20b_10a_1topic_10": [ [1311279865268,56159],[1311279866282,72575],[1311279867296,72033],[1311279868310,70850],[1311279869324,70898],[1311279870338,71683],[1311279871352,59643],[1311279872366,70667],[1311279873380,71573],[1311279874394,71628],[1311279875408,70062],[1311279876422,70084],[1311279877436,60242],[1311279878450,71306],[1311279879464,72030] ], - "e_20b_5p_1queue_5": [ [1311279955264,0],[1311279956278,0],[1311279957292,0],[1311279958306,0],[1311279959320,0],[1311279960334,0],[1311279961348,0],[1311279962362,0],[1311279963376,0],[1311279964390,0],[1311279965404,0],[1311279966418,0],[1311279967432,0],[1311279968446,0],[1311279969460,0] ], - "c_256k_1p_1topic_1": [ [1311279478278,531],[1311279479292,534],[1311279480306,536],[1311279481320,530],[1311279482334,529],[1311279483348,516],[1311279484362,538],[1311279485376,538],[1311279486390,532],[1311279487404,530],[1311279488418,531],[1311279489432,529],[1311279490446,525],[1311279491460,535],[1311279492474,495] ], - "c_20b_5p_5topic_5": [ [1311279384443,20828],[1311279385457,20812],[1311279386471,20675],[1311279387485,20722],[1311279388499,20769],[1311279389513,20901],[1311279390527,20748],[1311279391541,20777],[1311279392555,20686],[1311279393569,20776],[1311279394583,20761],[1311279395597,20489],[1311279396611,20765],[1311279397625,20625],[1311279398639,20846] ], - "e_256k_5a_5queue_5": [ [1311278933304,0],[1311278934318,0],[1311278935332,0],[1311278936346,0],[1311278937360,0],[1311278938374,0],[1311278939388,0],[1311278940402,0],[1311278941416,0],[1311278942430,0],[1311278943444,0],[1311278944458,0],[1311278945472,0],[1311278946486,0],[1311278947500,0] ] -} diff --git a/src/main/html/resources/ajax-loader.gif b/src/main/html/resources/ajax-loader.gif new file mode 100644 index 0000000..3c2f7c0 Binary files /dev/null and b/src/main/html/resources/ajax-loader.gif differ diff --git a/reports/resources/blank.gif b/src/main/html/resources/blank.gif similarity index 100% rename from reports/resources/blank.gif rename to src/main/html/resources/blank.gif diff --git a/reports/resources/jquery.flot.crosshair.js b/src/main/html/resources/jquery.flot.crosshair.js similarity index 100% rename from reports/resources/jquery.flot.crosshair.js rename to src/main/html/resources/jquery.flot.crosshair.js diff --git a/reports/resources/jquery.flot.js b/src/main/html/resources/jquery.flot.js similarity index 100% rename from reports/resources/jquery.flot.js rename to src/main/html/resources/jquery.flot.js diff --git a/reports/resources/jquery.js b/src/main/html/resources/jquery.js similarity index 100% rename from reports/resources/jquery.js rename to src/main/html/resources/jquery.js diff --git a/src/main/html/template.html b/src/main/html/template.html new file mode 100644 index 0000000..7935738 --- /dev/null +++ b/src/main/html/template.html @@ -0,0 +1,811 @@ + + + + + + + + + + + + + + + + +
+ +
+

Table of Contents

+
    +
  1. Throughput to an Unsubscribed Topic
  2. +
  3. Queue Load/Unload
  4. +
  5. Partitioned Load Scenarios
  6. +
  7. Fan In/Out Load Scenarios
  8. +
+ +

Overview

+

+ This report was generated using the stomp-benchmark tool. It + provides a comparative benchmark of messaging servers that implement the Stomp 1.0 + specification. It covers a wide variety of common usage scenarios. Each scenario is warmed up for 3 seconds before the performance samples are taken. +

+ +
+
+
+ LOGS_HTML +
+ + +

Throughput to an Unsubscribed Topic

+

+ A single producer sending non-persistent messages to a topic that does not have an consumers attached. +

+
+ NOTE: hover over the graphs to see the legends. +
+ + + + +
+

With a 20 b Playload

+
+
+

With a 1 k Playload

+
+
+

With a 256 k Playload

+
+
+ +

Queue Load/Unload

+ + + + +
+

Non Persistent Load

+

+ A producer sending non-persistent messages with 20 byte payloads to a queue without any attached consumers. +

+
+
+

Persistent Load

+

+ A producer sending persistent messages with 20 byte payloads to a queue without any attached consumers. Each + send requests a receipt to achieve guaranteed delivery. +

+
+
+

Unload

+

+ A consumer receiving the messages previously sent to the queue but without any attached producers. +

+
+
+ +

Fan In/Out Load Scenarios

+

+ These scenarios multiple consumers and producers communicate via one shared destination. All messages sent have + a 20 byte payload. +

+ The graphs below display the results of all the following scenario combinations: +

    +
  • Queue: The point to point messaging domain
  • +
  • Topic: The publish subscribe messaging domain
  • +
  • Persistent: Messages are sent persistent and with a receipt request to achieve guaranteed delivery.
  • +
  • Non Persistent: Messages are sent non-persistent and without a receipt request
  • +
+

+ + + + + +
 Non PersistentPersistent
Queue
+ + + + + +
 1 Producer5 Producers10 Producers
1 Consumer
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
5 Consumers
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
10 Consumers
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
+
+ + + + + +
 1 Producer5 Producers10 Producers
1 Consumer
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
5 Consumers
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
10 Consumers
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
+
Topic
+ + + + + +
 1 Producer5 Producers10 Producers
1 Consumer
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
5 Consumers
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
10 Consumers
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
+
+ + + + + +
 1 Producer5 Producers10 Producers
1 Consumer
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
5 Consumers
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
10 Consumers
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
+
+ +

Partitioned Load Scenarios

+

+ These scenarios sample performance as partitioned load is applied. + Each destination only has 1 and only 1 producer and consumer attached. +

+ The graphs below display the results of all the following scenario combinations: +

    +
  • Queue: The point to point messaging domain
  • +
  • Topic: The publish subscribe messaging domain
  • +
  • Persistent: Messages are sent persistent and with a receipt request to achieve guaranteed delivery.
  • +
  • Non Persistent: Messages are sent non-persistent and without a receipt request
  • +
  • 20 b Message: Messages payloads are 20 bytes in size
  • +
  • 1 k Message: Messages payloads are 1 kilobytes in size
  • +
  • 256 k Message: Messages payloads are 256 kilobytes in size
  • +
  • 1x1x1: 1 producer, 1 destination, 1 consumer
  • +
  • 5x5x5: 5 producers, 5 destinations, 5 consumers
  • +
  • 10x10x10: 10 producers, 10 destinations, 10 consumers
  • +
+

+ + + + + +
 Non PersistentPersistent
Queue
+ + + + + +
 20 b Message1 k Message256 k Message
1x1x1
+ + +

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
5x5x5
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
10x10x10
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
+
+ + + + + +
 20 b Message1 k Message256 k Message
1x1x1
+ + +

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
5x5x5
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
10x10x10
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
+
Topic
+ + + + + +
 20 b Message1 k Message256 k Message
1x1x1
+ + +

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
5x5x5
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
10x10x10
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
+
+ + + + + +
 20 b Message1 k Message256 k Message
1x1x1
+ + +

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
5x5x5
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
10x10x10
+

Producer Rates (msg/s):

+
+

Consumer Rates (msg/s):

+
+
+
+
+
+
+
+
+
+ +
+
+ + +