{ "cells": [ { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "### 计算传播应用\n", "***\n", "***\n", "# 推荐系统简介\n", "***\n", "***\n", "\n", "王成军\n", "\n", "wangchengjun@nju.edu.cn\n", "\n", "计算传播网 http://computational-communication.com" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# 集体智慧编程\n", "\n", "> 集体智慧是指为了创造新想法,将一群人的行为、偏好或思想组合在一起。一般基于聪明的算法(Netflix, Google)或者提供内容的用户(Wikipedia)。\n", "\n", "集体智慧编程所强调的是前者,即通过编写计算机程序、构造具有智能的算法收集并分析用户的数据,发现新的信息甚至是知识。\n", "\n", "- Netflix\n", "- Google\n", "- Wikipedia\n", "\n", "Toby Segaran, 2007, Programming Collective Intelligence. O'Reilly. \n", "\n", "https://github.com/computational-class/programming-collective-intelligence-code/blob/master/chapter2/recommendations.py" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# 推荐系统\n", "\n", "- 目前互联网世界最常见的智能产品形式。\n", "- 从信息时代过渡到注意力时代:\n", " - 信息过载(information overload)\n", " - 注意力稀缺\n", "- 推荐系统的基本任务是联系用户和物品,帮助用户快速发现有用信息,解决信息过载的问题。\n", " - 针对长尾分布问题,找到个性化需求,优化资源配置\n", "\n" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# 推荐系统的类型\n", "- 社会化推荐(Social Recommendation)\n", " - 让朋友帮助推荐物品\n", "- 基于内容的推荐 (Content-based filtering)\n", " - 基于用户已经消费的物品内容,推荐新的物品。例如根据看过的电影的导演和演员,推荐新影片。\n", "- 基于协同过滤的推荐(collaborative filtering)\n", " - 找到和某用户的历史兴趣一致的用户,根据这些用户之间的相似性或者他们所消费物品的相似性,为该用户推荐物品" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# 协同过滤算法\n", "\n", "- 基于邻域的方法(neighborhood-based method)\n", " - 基于用户的协同过滤(user-based filtering)\n", " - 基于物品的协同过滤 (item-based filtering)\n", "- 隐语义模型(latent factor model)\n", "- 基于图的随机游走算法(random walk on graphs)" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# UserCF和ItemCF的比较\n", "\n", "- UserCF较为古老, 1992年应用于电子邮件个性化推荐系统Tapestry, 1994年应用于Grouplens新闻个性化推荐, 后来被Digg采用\n", " - 推荐那些与个体有共同兴趣爱好的用户所喜欢的物品(群体热点,社会化)\n", " - 反映用户所在小型群体中物品的热门程度\n", "- ItemCF相对较新,应用于电子商务网站Amazon和DVD租赁网站Netflix\n", " - 推荐那些和用户之前喜欢的物品相似的物品 (历史兴趣,个性化)\n", " - 反映了用户自己的兴趣传承\n", "- 新闻更新快,物品数量庞大,相似度变化很快,不利于维护一张物品相似度的表格,电影、音乐、图书则可以。\n", "\n" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# 推荐系统评测\n", "- 用户满意度\n", "- 预测准确度\n", "\n", " $r_{ui}$用户实际打分, $\\hat{r_{ui}}$推荐算法预测打分\n", "\n", " - 均方根误差RMSE\n", " \n", " $RMSE = \\sqrt{\\frac{\\sum_{u, i \\in T} (r_{ui} - \\hat{r_{ui}})}{\\left | T \\right |}^2} $\n", " \n", " - 平均绝对误差MAE\n", " $ MAE = \\frac{\\sum_{u, i \\in T} \\left | r_{ui} - \\hat{r_{ui}} \\right|}{\\left | T \\right|}$" ] }, { "cell_type": "code", "execution_count": 70, "metadata": { "collapsed": true, "slideshow": { "slide_type": "slide" } }, "outputs": [], "source": [ "# A dictionary of movie critics and their ratings of a small\n", "# set of movies\n", "critics={'Lisa Rose': {'Lady in the Water': 2.5, 'Snakes on a Plane': 3.5,\n", " 'Just My Luck': 3.0, 'Superman Returns': 3.5, 'You, Me and Dupree': 2.5,\n", " 'The Night Listener': 3.0},\n", " 'Gene Seymour': {'Lady in the Water': 3.0, 'Snakes on a Plane': 3.5,\n", " 'Just My Luck': 1.5, 'Superman Returns': 5.0, 'The Night Listener': 3.0,\n", " 'You, Me and Dupree': 3.5},\n", " 'Michael Phillips': {'Lady in the Water': 2.5, 'Snakes on a Plane': 3.0,\n", " 'Superman Returns': 3.5, 'The Night Listener': 4.0},\n", " 'Claudia Puig': {'Snakes on a Plane': 3.5, 'Just My Luck': 3.0,\n", " 'The Night Listener': 4.5, 'Superman Returns': 4.0,\n", " 'You, Me and Dupree': 2.5},\n", " 'Mick LaSalle': {'Lady in the Water': 3.0, 'Snakes on a Plane': 4.0,\n", " 'Just My Luck': 2.0, 'Superman Returns': 3.0, 'The Night Listener': 3.0,\n", " 'You, Me and Dupree': 2.0},\n", " 'Jack Matthews': {'Lady in the Water': 3.0, 'Snakes on a Plane': 4.0,\n", " 'The Night Listener': 3.0, 'Superman Returns': 5.0, 'You, Me and Dupree': 3.5},\n", " 'Toby': {'Snakes on a Plane':4.5,'You, Me and Dupree':1.0,'Superman Returns':4.0}}" ] }, { "cell_type": "code", "execution_count": 39, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "2.5" ] }, "execution_count": 39, "metadata": {}, "output_type": "execute_result" } ], "source": [ "critics['Lisa Rose']['Lady in the Water']" ] }, { "cell_type": "code", "execution_count": 40, "metadata": { "collapsed": true, "slideshow": { "slide_type": "fragment" } }, "outputs": [], "source": [ "critics['Toby']['Snakes on a Plane']=4.5" ] }, { "cell_type": "code", "execution_count": 41, "metadata": { "collapsed": false, "slideshow": { "slide_type": "fragment" } }, "outputs": [ { "data": { "text/plain": [ "{'Snakes on a Plane': 4.5, 'Superman Returns': 4.0, 'You, Me and Dupree': 1.0}" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "critics['Toby']" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "***\n", "# 1. User-based filtering\n", "***\n", "## 1.0 Finding similar users" ] }, { "cell_type": "code", "execution_count": 48, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "3.1622776601683795" ] }, "execution_count": 48, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# 欧几里得距离\n", "import numpy as np\n", "np.sqrt(np.power(5-4, 2) + np.power(4-1, 2))" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "fragment" } }, "source": [ "This formula calculates the distance, which will be smaller for people who are more similar. However, you need a function that gives higher values for people who are similar. This can be done by adding 1 to the function (so you don’t get a division-by- zero error) and inverting it:" ] }, { "cell_type": "code", "execution_count": 49, "metadata": { "collapsed": false, "slideshow": { "slide_type": "fragment" } }, "outputs": [ { "data": { "text/plain": [ "0.2402530733520421" ] }, "execution_count": 49, "metadata": {}, "output_type": "execute_result" } ], "source": [ "1.0 /(1 + np.sqrt(np.power(5-4, 2) + np.power(4-1, 2)) )" ] }, { "cell_type": "code", "execution_count": 53, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# Returns a distance-based similarity score for person1 and person2\n", "def sim_distance(prefs,person1,person2):\n", " # Get the list of shared_items\n", " si={}\n", " for item in prefs[person1]:\n", " if item in prefs[person2]:\n", " si[item]=1\n", " # if they have no ratings in common, return 0\n", " if len(si)==0: return 0\n", " # Add up the squares of all the differences\n", " sum_of_squares=np.sum([np.power(prefs[person1][item]-prefs[person2][item],2)\n", " for item in prefs[person1] if item in prefs[person2]])\n", " return 1/(1+np.sqrt(sum_of_squares) )" ] }, { "cell_type": "code", "execution_count": 54, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "0.14814814814814814" ] }, "execution_count": 54, "metadata": {}, "output_type": "execute_result" } ], "source": [ "sim_distance(critics, 'Lisa Rose','Gene Seymour')" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "## Pearson correlation coefficient" ] }, { "cell_type": "code", "execution_count": 59, "metadata": { "collapsed": true, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# Returns the Pearson correlation coefficient for p1 and p2\n", "def sim_pearson(prefs,p1,p2):\n", " # Get the list of mutually rated items\n", " si={}\n", " for item in prefs[p1]:\n", " if item in prefs[p2]: si[item]=1\n", " # Find the number of elements\n", " n=len(si)\n", " # if they are no ratings in common, return 0\n", " if n==0: return 0\n", " # Add up all the preferences\n", " sum1=np.sum([prefs[p1][it] for it in si])\n", " sum2=np.sum([prefs[p2][it] for it in si])\n", " # Sum up the squares\n", " sum1Sq=np.sum([np.power(prefs[p1][it],2) for it in si])\n", " sum2Sq=np.sum([np.power(prefs[p2][it],2) for it in si])\n", " # Sum up the products\n", " pSum=np.sum([prefs[p1][it]*prefs[p2][it] for it in si])\n", " # Calculate Pearson score\n", " num=pSum-(sum1*sum2/n)\n", " den=np.sqrt((sum1Sq-np.power(sum1,2)/n)*(sum2Sq-np.power(sum2,2)/n))\n", " if den==0: return 0\n", " return num/den" ] }, { "cell_type": "code", "execution_count": 60, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "0.39605901719066977" ] }, "execution_count": 60, "metadata": {}, "output_type": "execute_result" } ], "source": [ "sim_pearson(critics, 'Lisa Rose','Gene Seymour')" ] }, { "cell_type": "code", "execution_count": 75, "metadata": { "collapsed": true, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# Returns the best matches for person from the prefs dictionary.\n", "# Number of results and similarity function are optional params.\n", "def topMatches(prefs,person,n=5,similarity=sim_pearson):\n", " scores=[(similarity(prefs,person,other),other)\n", " for other in prefs if other!=person]\n", " # Sort the list so the highest scores appear at the top \n", " scores.sort( )\n", " scores.reverse( )\n", " return scores[0:n]" ] }, { "cell_type": "code", "execution_count": 77, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "[(0.99124070716192991, 'Lisa Rose'),\n", " (0.92447345164190486, 'Mick LaSalle'),\n", " (0.89340514744156474, 'Claudia Puig')]" ] }, "execution_count": 77, "metadata": {}, "output_type": "execute_result" } ], "source": [ "topMatches(critics,'Toby',n=3) # topN" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "## 1.1 Recommending Items" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "\n", "\n", "- Toby相似的五个用户(Rose, Reymour, Puig, LaSalle, Matthews)及相似度(依次为0.99, 0.38, 0.89, 0.92)\n", "- 这五个用户看过的三个电影(Night,Lady, Luck)及其评分\n", " - 例如,Rose对Night评分是3.0\n", "- S.xNight是用户相似度与电影评分的乘积\n", " - 例如,Toby于Rose相似度对Night评分是3.0*0.99 = 2.97\n", "- 可以得到每部电影的得分\n", " - 例如,Night的得分是12.89 = 2.97+1.14+4.02+2.77+1.99\n", "- 电影得分需要使用用户相似度之和进行加权\n", " - 例如,Night电影的预测得分是3.35 = 12.89/3.84\n" ] }, { "cell_type": "code", "execution_count": 66, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# Gets recommendations for a person by using a weighted average\n", "# of every other user's rankings\n", "def getRecommendations(prefs,person,similarity=sim_pearson):\n", " totals={}\n", " simSums={}\n", " for other in prefs:\n", " # don't compare me to myself\n", " if other==person: continue\n", " sim=similarity(prefs,person,other)\n", " # ignore scores of zero or lower\n", " if sim<=0: continue\n", " for item in prefs[other]: \n", " # only score movies I haven't seen yet\n", " if item not in prefs[person] or prefs[person][item]==0:\n", " # Similarity * Score\n", " totals.setdefault(item,0)\n", " totals[item]+=prefs[other][item]*sim\n", " # Sum of similarities\n", " simSums.setdefault(item,0)\n", " simSums[item]+=sim\n", " # Create the normalized list\n", " rankings=[(total/simSums[item],item) for item,total in totals.items()]\n", " # Return the sorted list\n", " rankings.sort()\n", " rankings.reverse()\n", " return rankings" ] }, { "cell_type": "code", "execution_count": 78, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "[(3.3477895267131013, 'The Night Listener'),\n", " (2.8325499182641614, 'Lady in the Water'),\n", " (2.5309807037655645, 'Just My Luck')]" ] }, "execution_count": 78, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Now you can find out what movies I should watch next:\n", "getRecommendations(critics,'Toby')" ] }, { "cell_type": "code", "execution_count": 79, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "[(3.5002478401415877, 'The Night Listener'),\n", " (2.7561242939959363, 'Lady in the Water'),\n", " (2.4619884860743739, 'Just My Luck')]" ] }, "execution_count": 79, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# You’ll find that the results are only affected very slightly by the choice of similarity metric.\n", "getRecommendations(critics,'Toby',similarity=sim_distance)" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "***\n", "# 2. Item-based filtering\n", "***\n", "\n", "Now you know how to find similar people and recommend products for a given person\n", "\n", "### But what if you want to see which products are similar to each other? \n", "This is actually the same method we used earlier to determine similarity between people—" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "#### 将item-user字典的键值翻转" ] }, { "cell_type": "code", "execution_count": 85, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# you just need to swap the people and the items. \n", "def transformPrefs(prefs):\n", " result={}\n", " for person in prefs:\n", " for item in prefs[person]:\n", " result.setdefault(item,{})\n", " # Flip item and person\n", " result[item][person]=prefs[person][item]\n", " return result\n", "\n", "movies = transformPrefs(critics)\n" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "#### 计算item的相似性" ] }, { "cell_type": "code", "execution_count": 83, "metadata": { "collapsed": false, "slideshow": { "slide_type": "fragment" } }, "outputs": [ { "data": { "text/plain": [ "[(0.65795169495976946, 'You, Me and Dupree'),\n", " (0.48795003647426888, 'Lady in the Water'),\n", " (0.11180339887498941, 'Snakes on a Plane'),\n", " (-0.17984719479905439, 'The Night Listener'),\n", " (-0.42289003161103106, 'Just My Luck')]" ] }, "execution_count": 83, "metadata": {}, "output_type": "execute_result" } ], "source": [ "topMatches(movies,'Superman Returns')" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "#### 给item推荐user" ] }, { "cell_type": "code", "execution_count": 86, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "{'Just My Luck': [(0.22222222222222221, 'Lady in the Water'),\n", " (0.18181818181818182, 'You, Me and Dupree'),\n", " (0.15384615384615385, 'The Night Listener'),\n", " (0.10526315789473684, 'Snakes on a Plane'),\n", " (0.064516129032258063, 'Superman Returns')],\n", " 'Lady in the Water': [(0.40000000000000002, 'You, Me and Dupree'),\n", " (0.2857142857142857, 'The Night Listener'),\n", " (0.22222222222222221, 'Snakes on a Plane'),\n", " (0.22222222222222221, 'Just My Luck'),\n", " (0.090909090909090912, 'Superman Returns')],\n", " 'Snakes on a Plane': [(0.22222222222222221, 'Lady in the Water'),\n", " (0.18181818181818182, 'The Night Listener'),\n", " (0.16666666666666666, 'Superman Returns'),\n", " (0.10526315789473684, 'Just My Luck'),\n", " (0.05128205128205128, 'You, Me and Dupree')],\n", " 'Superman Returns': [(0.16666666666666666, 'Snakes on a Plane'),\n", " (0.10256410256410256, 'The Night Listener'),\n", " (0.090909090909090912, 'Lady in the Water'),\n", " (0.064516129032258063, 'Just My Luck'),\n", " (0.053333333333333337, 'You, Me and Dupree')],\n", " 'The Night Listener': [(0.2857142857142857, 'Lady in the Water'),\n", " (0.18181818181818182, 'Snakes on a Plane'),\n", " (0.15384615384615385, 'Just My Luck'),\n", " (0.14814814814814814, 'You, Me and Dupree'),\n", " (0.10256410256410256, 'Superman Returns')],\n", " 'You, Me and Dupree': [(0.40000000000000002, 'Lady in the Water'),\n", " (0.18181818181818182, 'Just My Luck'),\n", " (0.14814814814814814, 'The Night Listener'),\n", " (0.053333333333333337, 'Superman Returns'),\n", " (0.05128205128205128, 'Snakes on a Plane')]}" ] }, "execution_count": 86, "metadata": {}, "output_type": "execute_result" } ], "source": [ "def calculateSimilarItems(prefs,n=10):\n", " # Create a dictionary of items showing which other items they\n", " # are most similar to.\n", " result={}\n", " # Invert the preference matrix to be item-centric\n", " itemPrefs=transformPrefs(prefs)\n", " c=0\n", " for item in itemPrefs:\n", " # Status updates for large datasets\n", " c+=1\n", " if c%100==0: \n", " print \"%d / %d\" % (c,len(itemPrefs))\n", " # Find the most similar items to this one\n", " scores=topMatches(itemPrefs,item,n=n,similarity=sim_distance)\n", " result[item]=scores\n", " return result\n", "\n", "itemsim=calculateSimilarItems(critics) \n", "itemsim" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "\n", "\n", "- Toby看过三个电影(snakes、Superman、dupree)和评分(依次是4.5、4.0、1.0)\n", "- 表格2-3给出这三部电影与另外三部电影的相似度\n", " - 例如superman与night的相似度是0.103\n", "- R.xNight表示Toby对自己看过的三部定影的评分与Night这部电影相似度的乘积\n", " - 例如,0.412 = 4.0*0.103\n", " \n", " \n", "- 那么Toby对于Night的评分可以表达为0.818+0.412+0.148 = 1.378\n", " - 已经知道Night相似度之和是0.182+0.103+0.148 = 0.433\n", " - 那么Toby对Night的最终评分可以表达为:1.378/0.433 = 3.183\n" ] }, { "cell_type": "code", "execution_count": 88, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "[(3.182634730538922, 'The Night Listener'),\n", " (2.5983318700614575, 'Just My Luck'),\n", " (2.4730878186968837, 'Lady in the Water')]" ] }, "execution_count": 88, "metadata": {}, "output_type": "execute_result" } ], "source": [ "def getRecommendedItems(prefs,itemMatch,user):\n", " userRatings=prefs[user]\n", " scores={}\n", " totalSim={}\n", " # Loop over items rated by this user\n", " for (item,rating) in userRatings.items( ):\n", " # Loop over items similar to this one\n", " for (similarity,item2) in itemMatch[item]:\n", " # Ignore if this user has already rated this item\n", " if item2 in userRatings: continue\n", " # Weighted sum of rating times similarity\n", " scores.setdefault(item2,0)\n", " scores[item2]+=similarity*rating\n", " # Sum of all the similarities\n", " totalSim.setdefault(item2,0)\n", " totalSim[item2]+=similarity\n", " # Divide each total score by total weighting to get an average\n", " rankings=[(score/totalSim[item],item) for item,score in scores.items( )]\n", " # Return the rankings from highest to lowest\n", " rankings.sort( )\n", " rankings.reverse( )\n", " return rankings\n", "\n", "getRecommendedItems(critics,itemsim,'Toby')" ] }, { "cell_type": "code", "execution_count": 81, "metadata": { "collapsed": false, "slideshow": { "slide_type": "fragment" } }, "outputs": [ { "data": { "text/plain": [ "[(4.0, 'Michael Phillips'), (3.0, 'Jack Matthews')]" ] }, "execution_count": 81, "metadata": {}, "output_type": "execute_result" } ], "source": [ "getRecommendations(movies,'Just My Luck')" ] }, { "cell_type": "code", "execution_count": 84, "metadata": { "collapsed": false, "slideshow": { "slide_type": "fragment" } }, "outputs": [ { "data": { "text/plain": [ "[(3.1637361366111816, 'Michael Phillips')]" ] }, "execution_count": 84, "metadata": {}, "output_type": "execute_result" } ], "source": [ "getRecommendations(movies, 'You, Me and Dupree')" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "\n", "\n", "# 基于物品的协同过滤算法的网络表示方法" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# 基于图的模型\n", "\n", "使用二分图表示用户行为,因此基于图的算法可以应用到推荐系统当中。\n", "\n", "" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# https://github.com/ParticleWave/RecommendationSystemStudy/blob/d1960056b96cfaad62afbfe39225ff680240d37e/PersonalRank.py\n", "import os\n", "import random\n", "\n", "class Graph:\n", " def __init__(self):\n", " self.G = dict()\n", " \n", " def addEdge(self, p, q):\n", " if p not in self.G: self.G[p] = dict()\n", " if q not in self.G: self.G[q] = dict()\n", " self.G[p][q] = 1\n", " self.G[q][p] = 1\n", "\n", " def getGraphMatrix(self):\n", " return self.G" ] }, { "cell_type": "code", "execution_count": 12, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['A', 'a', 'c', 'B', 'd', 'C', 'b']\n" ] } ], "source": [ "graph = Graph()\n", "graph.addEdge('A', 'a')\n", "graph.addEdge('A', 'c')\n", "graph.addEdge('B', 'a')\n", "graph.addEdge('B', 'b')\n", "graph.addEdge('B', 'c')\n", "graph.addEdge('B', 'd')\n", "graph.addEdge('C', 'c')\n", "graph.addEdge('C', 'd')\n", "G = graph.getGraphMatrix()\n", "print(G.keys())" ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "{'A': {'a': 1, 'c': 1},\n", " 'B': {'a': 1, 'b': 1, 'c': 1, 'd': 1},\n", " 'C': {'c': 1, 'd': 1},\n", " 'a': {'A': 1, 'B': 1},\n", " 'b': {'B': 1},\n", " 'c': {'A': 1, 'B': 1, 'C': 1},\n", " 'd': {'B': 1, 'C': 1}}" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "G" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "collapsed": true, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "def PersonalRank(G, alpha, root, max_step):\n", " # G is the biparitite graph of users' ratings on items\n", " # alpha is the probability of random walk forward\n", " # root is the studied User\n", " # max_step if the steps of iterations.\n", " rank = dict()\n", " rank = {x:0.0 for x in G.keys()}\n", " rank[root] = 1.0\n", " for k in range(max_step):\n", " tmp = {x:0.0 for x in G.keys()}\n", " for i,ri in G.items():\n", " for j,wij in ri.items():\n", " if j not in tmp: tmp[j] = 0.0 #\n", " tmp[j] += alpha * rank[i] / (len(ri)*1.0)\n", " if j == root: tmp[j] += 1.0 - alpha\n", " rank = tmp\n", " print(k, rank)\n", " return rank" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(0, {'A': 0.3999999999999999, 'a': 0.4, 'c': 0.4, 'B': 0.0, 'd': 0.0, 'C': 0.0, 'b': 0.0})\n", "(1, {'A': 0.6666666666666666, 'a': 0.15999999999999998, 'c': 0.15999999999999998, 'B': 0.2666666666666667, 'd': 0.0, 'C': 0.10666666666666669, 'b': 0.0})\n", "(2, {'A': 0.5066666666666666, 'a': 0.32, 'c': 0.3626666666666667, 'B': 0.10666666666666665, 'd': 0.09600000000000003, 'C': 0.04266666666666666, 'b': 0.053333333333333344})\n", "(3, {'A': 0.624711111111111, 'a': 0.22399999999999998, 'c': 0.24106666666666665, 'B': 0.30577777777777787, 'd': 0.03839999999999999, 'C': 0.13511111111111113, 'b': 0.02133333333333333})\n", "(4, {'A': 0.5538844444444444, 'a': 0.31104, 'c': 0.36508444444444443, 'B': 0.1863111111111111, 'd': 0.11520000000000002, 'C': 0.07964444444444443, 'b': 0.061155555555555574})\n", "(5, {'A': 0.6217718518518518, 'a': 0.258816, 'c': 0.29067377777777775, 'B': 0.31677629629629633, 'd': 0.06911999999999999, 'C': 0.14343585185185187, 'b': 0.03726222222222222})\n", "(6, {'A': 0.5810394074074073, 'a': 0.312064, 'c': 0.3694383407407408, 'B': 0.2384971851851852, 'd': 0.12072960000000002, 'C': 0.1051610074074074, 'b': 0.06335525925925926})\n", "(7, {'A': 0.6233424908641975, 'a': 0.2801152, 'c': 0.322179602962963, 'B': 0.322318538271605, 'd': 0.08976384000000001, 'C': 0.14680873086419757, 'b': 0.047699437037037044})\n", "(8, {'A': 0.5979606407901235, 'a': 0.313800704, 'c': 0.372524196345679, 'B': 0.27202572641975314, 'd': 0.12318720000000004, 'C': 0.12182009679012348, 'b': 0.06446370765432101})\n", "(9, {'A': 0.6248600672921809, 'a': 0.2935894016, 'c': 0.34231744031604944, 'B': 0.32570591341563787, 'd': 0.10313318400000002, 'C': 0.14861466569218107, 'b': 0.05440514528395063})\n", "(10, {'A': 0.6087204113909463, 'a': 0.31508520959999997, 'c': 0.3745310758768724, 'B': 0.29349780121810704, 'd': 0.12458704896, 'C': 0.13253792435094652, 'b': 0.06514118268312757})\n", "(11, {'A': 0.6259090374071659, 'a': 0.3021877248, 'c': 0.3552028945403786, 'B': 0.3278568031376681, 'd': 0.11171472998400003, 'C': 0.14970977315116596, 'b': 0.05869956024362141})\n", "(12, {'A': 0.6155958617974342, 'a': 0.31593497559039996, 'c': 0.37581888485086634, 'B': 0.3072414019859315, 'd': 0.125455269888, 'C': 0.13940666387103434, 'b': 0.06557136062753362})\n", "(13, {'A': 0.6265923595297243, 'a': 0.30768662511615996, 'c': 0.3634492906645737, 'B': 0.32923155598695125, 'd': 0.11721094594560004, 'C': 0.15040047724876437, 'b': 0.0614482803971863})\n", "(14, {'A': 0.6199944608903503, 'a': 0.31648325500928, 'c': 0.37664344590878573, 'B': 0.3160374635863394, 'd': 0.126006502096896, 'C': 0.14380418922212634, 'b': 0.06584631119739025})\n", "(15, {'A': 0.6270315542460547, 'a': 0.311205277073408, 'c': 0.36872695276225853, 'B': 0.3301112040427255, 'd': 0.12072916840611841, 'C': 0.1508408530811013, 'b': 0.06320749271726787})\n", "(16, {'A': 0.6228092982326321, 'a': 0.316834862506967, 'c': 0.37717120373940755, 'B': 0.3216669597688938, 'd': 0.12635858204098563, 'C': 0.14661885476571632, 'b': 0.0660222408085451})\n", "(17, {'A': 0.6273129326666287, 'a': 0.3134571112468316, 'c': 0.37210465315311814, 'B': 0.3306741581298591, 'd': 0.1229809338600653, 'C': 0.15112242048023627, 'b': 0.06433339195377877})\n", "(18, {'A': 0.6246107520062307, 'a': 0.3170600046926233, 'c': 0.3775089728847178, 'B': 0.32526983911327995, 'd': 0.12658379981806633, 'C': 0.1484202810515243, 'b': 0.06613483162597182})\n", "(19, {'A': 0.627493061312974, 'a': 0.3148982686251483, 'c': 0.37426638104575805, 'B': 0.3310344465409781, 'd': 0.1244220802432657, 'C': 0.15130257936315128, 'b': 0.06505396782265599})\n", "{'A': 0.627493061312974, 'a': 0.3148982686251483, 'c': 0.37426638104575805, 'B': 0.3310344465409781, 'd': 0.1244220802432657, 'C': 0.15130257936315128, 'b': 0.06505396782265599}\n" ] } ], "source": [ "print(PersonalRank(G, 0.8, 'A', 20))\n", "# print(PersonalRank(G, 0.8, 'B', 20))\n", "# print(PersonalRank(G, 0.8, 'C', 20))" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "***\n", "# 3. MovieLens Recommender\n", "***\n", "MovieLens是一个电影评价的真实数据,由明尼苏达州立大学的GroupLens项目组开发。\n", "\n", "### 数据下载\n", "http://grouplens.org/datasets/movielens/1m/\n", "\n", "> These files contain 1,000,209 anonymous ratings of approximately 3,900 movies \n", "made by 6,040 MovieLens users who joined MovieLens in 2000.\n" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# 数据格式\n", "All ratings are contained in the file \"ratings.dat\" and are in the following format:\n", "\n", "UserID::MovieID::Rating::Timestamp\n", "\n", "1::1193::5::978300760\n", "\n", "1::661::3::978302109\n", "\n", "1::914::3::978301968\n" ] }, { "cell_type": "code", "execution_count": 91, "metadata": { "collapsed": true, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "def loadMovieLens(path='/Users/chengjun/bigdata/ml-1m/'):\n", " # Get movie titles\n", " movies={}\n", " for line in open(path+'movies.dat'):\n", " (id,title)=line.split('::')[0:2]\n", " movies[id]=title\n", " \n", " # Load data\n", " prefs={}\n", " for line in open(path+'/ratings.dat'):\n", " (user,movieid,rating,ts)=line.split('::')\n", " prefs.setdefault(user,{})\n", " prefs[user][movies[movieid]]=float(rating)\n", " return prefs" ] }, { "cell_type": "code", "execution_count": 92, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "{'Alice in Wonderland (1951)': 1.0,\n", " 'Army of Darkness (1993)': 3.0,\n", " 'Bad Boys (1995)': 5.0,\n", " 'Benji (1974)': 1.0,\n", " 'Brady Bunch Movie, The (1995)': 1.0,\n", " 'Braveheart (1995)': 5.0,\n", " 'Buffalo 66 (1998)': 1.0,\n", " 'Chambermaid on the Titanic, The (1998)': 1.0,\n", " 'Cowboy Way, The (1994)': 1.0,\n", " 'Cyrano de Bergerac (1990)': 4.0,\n", " 'Dear Diary (Caro Diario) (1994)': 1.0,\n", " 'Die Hard (1988)': 3.0,\n", " 'Diebinnen (1995)': 1.0,\n", " 'Dr. No (1962)': 1.0,\n", " 'Escape from the Planet of the Apes (1971)': 1.0,\n", " 'Fast, Cheap & Out of Control (1997)': 1.0,\n", " 'Faster Pussycat! Kill! Kill! (1965)': 1.0,\n", " 'From Russia with Love (1963)': 1.0,\n", " 'Fugitive, The (1993)': 5.0,\n", " 'Get Shorty (1995)': 1.0,\n", " 'Gladiator (2000)': 5.0,\n", " 'Goldfinger (1964)': 5.0,\n", " 'Good, The Bad and The Ugly, The (1966)': 4.0,\n", " 'Hunt for Red October, The (1990)': 5.0,\n", " 'Hurricane, The (1999)': 5.0,\n", " 'Indiana Jones and the Last Crusade (1989)': 4.0,\n", " 'Jaws (1975)': 5.0,\n", " 'Jurassic Park (1993)': 5.0,\n", " 'King Kong (1933)': 1.0,\n", " 'King of New York (1990)': 1.0,\n", " 'Last of the Mohicans, The (1992)': 1.0,\n", " 'Lethal Weapon (1987)': 5.0,\n", " 'Longest Day, The (1962)': 1.0,\n", " 'Man with the Golden Gun, The (1974)': 5.0,\n", " 'Mask of Zorro, The (1998)': 5.0,\n", " 'Matrix, The (1999)': 5.0,\n", " \"On Her Majesty's Secret Service (1969)\": 1.0,\n", " 'Out of Sight (1998)': 1.0,\n", " 'Palookaville (1996)': 1.0,\n", " 'Planet of the Apes (1968)': 1.0,\n", " 'Pope of Greenwich Village, The (1984)': 1.0,\n", " 'Princess Bride, The (1987)': 3.0,\n", " 'Raiders of the Lost Ark (1981)': 4.0,\n", " 'Rock, The (1996)': 5.0,\n", " 'Rocky (1976)': 5.0,\n", " 'Saving Private Ryan (1998)': 4.0,\n", " 'Shanghai Noon (2000)': 1.0,\n", " 'Speed (1994)': 1.0,\n", " 'Star Wars: Episode IV - A New Hope (1977)': 5.0,\n", " 'Star Wars: Episode V - The Empire Strikes Back (1980)': 5.0,\n", " 'Taking of Pelham One Two Three, The (1974)': 1.0,\n", " 'Terminator 2: Judgment Day (1991)': 5.0,\n", " 'Terminator, The (1984)': 4.0,\n", " 'Thelma & Louise (1991)': 1.0,\n", " 'True Romance (1993)': 1.0,\n", " 'U-571 (2000)': 5.0,\n", " 'Untouchables, The (1987)': 5.0,\n", " 'Westworld (1973)': 1.0,\n", " 'X-Men (2000)': 4.0}" ] }, "execution_count": 92, "metadata": {}, "output_type": "execute_result" } ], "source": [ "prefs=loadMovieLens()\n", "prefs['87']" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "### user-based filtering" ] }, { "cell_type": "code", "execution_count": 93, "metadata": { "collapsed": false, "slideshow": { "slide_type": "fragment" } }, "outputs": [ { "data": { "text/plain": [ "[(5.0, 'Time of the Gypsies (Dom za vesanje) (1989)'),\n", " (5.0, 'Tigrero: A Film That Was Never Made (1994)'),\n", " (5.0, 'Schlafes Bruder (Brother of Sleep) (1995)'),\n", " (5.0, 'Return with Honor (1998)'),\n", " (5.0, 'Lured (1947)'),\n", " (5.0, 'Identification of a Woman (Identificazione di una donna) (1982)'),\n", " (5.0, 'I Am Cuba (Soy Cuba/Ya Kuba) (1964)'),\n", " (5.0, 'Hour of the Pig, The (1993)'),\n", " (5.0, 'Gay Deceivers, The (1969)'),\n", " (5.0, 'Gate of Heavenly Peace, The (1995)'),\n", " (5.0, 'Foreign Student (1994)'),\n", " (5.0, 'Dingo (1992)'),\n", " (5.0, 'Dangerous Game (1993)'),\n", " (5.0, 'Callej\\xf3n de los milagros, El (1995)'),\n", " (5.0, 'Bittersweet Motel (2000)'),\n", " (4.8204601017229889, 'Apple, The (Sib) (1998)'),\n", " (4.7389561849363862, 'Lamerica (1994)'),\n", " (4.6818165414673958, 'Bells, The (1926)'),\n", " (4.6649580725222339, 'Hurricane Streets (1998)'),\n", " (4.6507418408045593, 'Sanjuro (1962)'),\n", " (4.6499741726003458, 'On the Ropes (1999)'),\n", " (4.6368254087395071, 'Shawshank Redemption, The (1994)'),\n", " (4.627888709544556, 'For All Mankind (1989)'),\n", " (4.5820483492805089, 'Midaq Alley (Callej\\xf3n de los milagros, El) (1995)'),\n", " (4.5797786468711532, \"Schindler's List (1993)\"),\n", " (4.5751999410373871,\n", " 'Seven Samurai (The Magnificent Seven) (Shichinin no samurai) (1954)'),\n", " (4.5749049884034561, 'Godfather, The (1972)'),\n", " (4.5746840191882345, \"Ed's Next Move (1996)\"),\n", " (4.5585190371478284, 'Hanging Garden, The (1997)'),\n", " (4.5277600427755909, 'Close Shave, A (1995)')]" ] }, "execution_count": 93, "metadata": {}, "output_type": "execute_result" } ], "source": [ "getRecommendations(prefs,'87')[0:30]" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "### Item-based filtering" ] }, { "cell_type": "code", "execution_count": 94, "metadata": { "collapsed": false, "slideshow": { "slide_type": "fragment" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "100 / 3706\n", "200 / 3706\n", "300 / 3706\n", "400 / 3706\n", "500 / 3706\n", "600 / 3706\n", "700 / 3706\n", "800 / 3706\n", "900 / 3706\n", "1000 / 3706\n", "1100 / 3706\n", "1200 / 3706\n", "1300 / 3706\n", "1400 / 3706\n", "1500 / 3706\n", "1600 / 3706\n", "1700 / 3706\n", "1800 / 3706\n", "1900 / 3706\n", "2000 / 3706\n", "2100 / 3706\n", "2200 / 3706\n", "2300 / 3706\n", "2400 / 3706\n", "2500 / 3706\n", "2600 / 3706\n", "2700 / 3706\n", "2800 / 3706\n", "2900 / 3706\n", "3000 / 3706\n", "3100 / 3706\n", "3200 / 3706\n", "3300 / 3706\n", "3400 / 3706\n", "3500 / 3706\n", "3600 / 3706\n", "3700 / 3706\n" ] } ], "source": [ "itemsim=calculateSimilarItems(prefs,n=50)" ] }, { "cell_type": "code", "execution_count": 95, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "[(5.0, 'Uninvited Guest, An (2000)'),\n", " (5.0, 'Two Much (1996)'),\n", " (5.0, 'Two Family House (2000)'),\n", " (5.0, 'Trial by Jury (1994)'),\n", " (5.0, 'Tom & Viv (1994)'),\n", " (5.0, 'This Is My Father (1998)'),\n", " (5.0, 'Something to Sing About (1937)'),\n", " (5.0, 'Slappy and the Stinkers (1998)'),\n", " (5.0, 'Running Free (2000)'),\n", " (5.0, 'Roula (1995)'),\n", " (5.0, 'Prom Night IV: Deliver Us From Evil (1992)'),\n", " (5.0, 'Project Moon Base (1953)'),\n", " (5.0, 'Price Above Rubies, A (1998)'),\n", " (5.0, 'Open Season (1996)'),\n", " (5.0, 'Only Angels Have Wings (1939)'),\n", " (5.0, 'Onegin (1999)'),\n", " (5.0, 'Once Upon a Time... When We Were Colored (1995)'),\n", " (5.0, 'Office Killer (1997)'),\n", " (5.0, 'N\\xe9nette et Boni (1996)'),\n", " (5.0, 'No Looking Back (1998)'),\n", " (5.0, 'Never Met Picasso (1996)'),\n", " (5.0, 'Music From Another Room (1998)'),\n", " (5.0, \"Mummy's Tomb, The (1942)\"),\n", " (5.0, 'Modern Affair, A (1995)'),\n", " (5.0, 'Machine, The (1994)'),\n", " (5.0, 'Lured (1947)'),\n", " (5.0, 'Low Life, The (1994)'),\n", " (5.0, 'Lodger, The (1926)'),\n", " (5.0, 'Loaded (1994)'),\n", " (5.0, 'Line King: Al Hirschfeld, The (1996)')]" ] }, "execution_count": 95, "metadata": {}, "output_type": "execute_result" } ], "source": [ "getRecommendedItems(prefs,itemsim,'87')[0:30]" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Buiding Recommendation System with GraphLab" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "In this notebook we will import [GraphLab Create](https://dato.com/products/create) and use it to\n", "\n", "- train two models that can be used for recommending new songs to users \n", "- compare the performance of the two models\n" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# set product key using GraphLab Create API\n", "#import graphlab\n", "#graphlab.product_key.set_product_key('4972-65DF-8E02-816C-AB15-021C-EC1B-0367')\n" ] }, { "cell_type": "code", "execution_count": 16, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "%matplotlib inline\n", "import graphlab\n", "# set canvas to show sframes and sgraphs in ipython notebook\n", "gl.canvas.set_target('ipynb')\n", "import matplotlib.pyplot as plt\n" ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2016-05-21 09:54:26,565 [INFO] graphlab.cython.cy_server, 176: GraphLab Create v1.8.5 started. Logging: /tmp/graphlab_server_1463795663.log\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "This non-commercial license of GraphLab Create is assigned to wangchengjun@nju.edu.cn and will expire on July 31, 2016. For commercial licensing options, visit https://dato.com/buy/.\n" ] }, { "data": { "text/html": [ "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
item_idratinguser_id
a10
b30
c20
a51
b41
b12
c42
d32
\n", "[8 rows x 3 columns]
\n", "
" ], "text/plain": [ "Columns:\n", "\titem_id\tstr\n", "\trating\tint\n", "\tuser_id\tstr\n", "\n", "Rows: 8\n", "\n", "Data:\n", "+---------+--------+---------+\n", "| item_id | rating | user_id |\n", "+---------+--------+---------+\n", "| a | 1 | 0 |\n", "| b | 3 | 0 |\n", "| c | 2 | 0 |\n", "| a | 5 | 1 |\n", "| b | 4 | 1 |\n", "| b | 1 | 2 |\n", "| c | 4 | 2 |\n", "| d | 3 | 2 |\n", "+---------+--------+---------+\n", "[8 rows x 3 columns]" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "sf = graphlab.SFrame({'user_id': [\"0\", \"0\", \"0\", \"1\", \"1\", \"2\", \"2\", \"2\"],\n", " 'item_id': [\"a\", \"b\", \"c\", \"a\", \"b\", \"b\", \"c\", \"d\"],\n", " 'rating': [1, 3, 2, 5, 4, 1, 4, 3]})\n", "sf" ] }, { "cell_type": "code", "execution_count": 18, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/html": [ "
Recsys training: model = ranking_factorization_recommender
" ], "text/plain": [ "Recsys training: model = ranking_factorization_recommender" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
Preparing data set.
" ], "text/plain": [ "Preparing data set." ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
    Data has 8 observations with 3 users and 4 items.
" ], "text/plain": [ " Data has 8 observations with 3 users and 4 items." ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
    Data prepared in: 0.008394s
" ], "text/plain": [ " Data prepared in: 0.008394s" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
Training ranking_factorization_recommender for recommendations.
" ], "text/plain": [ "Training ranking_factorization_recommender for recommendations." ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+--------------------------------+--------------------------------------------------+----------+
" ], "text/plain": [ "+--------------------------------+--------------------------------------------------+----------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| Parameter                      | Description                                      | Value    |
" ], "text/plain": [ "| Parameter | Description | Value |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+--------------------------------+--------------------------------------------------+----------+
" ], "text/plain": [ "+--------------------------------+--------------------------------------------------+----------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| num_factors                    | Factor Dimension                                 | 32       |
" ], "text/plain": [ "| num_factors | Factor Dimension | 32 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| regularization                 | L2 Regularization on Factors                     | 1e-09    |
" ], "text/plain": [ "| regularization | L2 Regularization on Factors | 1e-09 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| solver                         | Solver used for training                         | sgd      |
" ], "text/plain": [ "| solver | Solver used for training | sgd |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| linear_regularization          | L2 Regularization on Linear Coefficients         | 1e-09    |
" ], "text/plain": [ "| linear_regularization | L2 Regularization on Linear Coefficients | 1e-09 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| ranking_regularization         | Rank-based Regularization Weight                 | 0.25     |
" ], "text/plain": [ "| ranking_regularization | Rank-based Regularization Weight | 0.25 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| max_iterations                 | Maximum Number of Iterations                     | 25       |
" ], "text/plain": [ "| max_iterations | Maximum Number of Iterations | 25 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+--------------------------------+--------------------------------------------------+----------+
" ], "text/plain": [ "+--------------------------------+--------------------------------------------------+----------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
  Optimizing model using SGD; tuning step size.
" ], "text/plain": [ " Optimizing model using SGD; tuning step size." ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
  Using 8 / 8 points for tuning the step size.
" ], "text/plain": [ " Using 8 / 8 points for tuning the step size." ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+---------+-------------------+------------------------------------------+
" ], "text/plain": [ "+---------+-------------------+------------------------------------------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| Attempt | Initial Step Size | Estimated Objective Value                |
" ], "text/plain": [ "| Attempt | Initial Step Size | Estimated Objective Value |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+---------+-------------------+------------------------------------------+
" ], "text/plain": [ "+---------+-------------------+------------------------------------------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 0       | 25                | Not Viable                               |
" ], "text/plain": [ "| 0 | 25 | Not Viable |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 1       | 6.25              | Not Viable                               |
" ], "text/plain": [ "| 1 | 6.25 | Not Viable |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 2       | 1.5625            | Not Viable                               |
" ], "text/plain": [ "| 2 | 1.5625 | Not Viable |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 3       | 0.390625          | 2.88256                                  |
" ], "text/plain": [ "| 3 | 0.390625 | 2.88256 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 4       | 0.195312          | 2.79407                                  |
" ], "text/plain": [ "| 4 | 0.195312 | 2.79407 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 5       | 0.0976562         | 2.80084                                  |
" ], "text/plain": [ "| 5 | 0.0976562 | 2.80084 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 6       | 0.0488281         | 3.00496                                  |
" ], "text/plain": [ "| 6 | 0.0488281 | 3.00496 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 7       | 0.0244141         | 3.28286                                  |
" ], "text/plain": [ "| 7 | 0.0244141 | 3.28286 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+---------+-------------------+------------------------------------------+
" ], "text/plain": [ "+---------+-------------------+------------------------------------------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| Final   | 0.195312          | 2.79407                                  |
" ], "text/plain": [ "| Final | 0.195312 | 2.79407 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+---------+-------------------+------------------------------------------+
" ], "text/plain": [ "+---------+-------------------+------------------------------------------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
Starting Optimization.
" ], "text/plain": [ "Starting Optimization." ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+---------+--------------+-------------------+-----------------------+-------------+
" ], "text/plain": [ "+---------+--------------+-------------------+-----------------------+-------------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| Iter.   | Elapsed Time | Approx. Objective | Approx. Training RMSE | Step Size   |
" ], "text/plain": [ "| Iter. | Elapsed Time | Approx. Objective | Approx. Training RMSE | Step Size |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+---------+--------------+-------------------+-----------------------+-------------+
" ], "text/plain": [ "+---------+--------------+-------------------+-----------------------+-------------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| Initial | 46us         | 3.89999           | 1.3637                |             |
" ], "text/plain": [ "| Initial | 46us | 3.89999 | 1.3637 | |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+---------+--------------+-------------------+-----------------------+-------------+
" ], "text/plain": [ "+---------+--------------+-------------------+-----------------------+-------------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 1       | 772us        | 4.1149            | 1.6432                | 0.195312    |
" ], "text/plain": [ "| 1 | 772us | 4.1149 | 1.6432 | 0.195312 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 2       | 1.711ms      | 3.04554           | 1.37292               | 0.116134    |
" ], "text/plain": [ "| 2 | 1.711ms | 3.04554 | 1.37292 | 0.116134 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 3       | 2.214ms      | 2.71319           | 1.24268               | 0.0856819   |
" ], "text/plain": [ "| 3 | 2.214ms | 2.71319 | 1.24268 | 0.0856819 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 4       | 2.749ms      | 2.51048           | 1.18246               | 0.0580668   |
" ], "text/plain": [ "| 4 | 2.749ms | 2.51048 | 1.18246 | 0.0580668 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 5       | 3.255ms      | 2.44767           | 1.18285               | 0.0491185   |
" ], "text/plain": [ "| 5 | 3.255ms | 2.44767 | 1.18285 | 0.0491185 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 6       | 3.777ms      | 2.39372           | 1.17296               | 0.042841    |
" ], "text/plain": [ "| 6 | 3.777ms | 2.39372 | 1.17296 | 0.042841 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
| 11      | 6.085ms      | 2.27879           | 1.09218               | 0.0271912   |
" ], "text/plain": [ "| 11 | 6.085ms | 2.27879 | 1.09218 | 0.0271912 |" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
+---------+--------------+-------------------+-----------------------+-------------+
" ], "text/plain": [ "+---------+--------------+-------------------+-----------------------+-------------+" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
Optimization Complete: Maximum number of passes through the data reached.
" ], "text/plain": [ "Optimization Complete: Maximum number of passes through the data reached." ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
Computing final objective value and training RMSE.
" ], "text/plain": [ "Computing final objective value and training RMSE." ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
       Final objective value: 2.80467
" ], "text/plain": [ " Final objective value: 2.80467" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
       Final training RMSE: 1.04538
" ], "text/plain": [ " Final training RMSE: 1.04538" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "+---------+---------+---------------+------+\n", "| user_id | item_id | score | rank |\n", "+---------+---------+---------------+------+\n", "| 0 | d | 1.24744260311 | 1 |\n", "| 1 | c | 3.97898635268 | 1 |\n", "| 1 | d | 3.09123837948 | 2 |\n", "| 2 | a | 2.52528711408 | 1 |\n", "+---------+---------+---------------+------+\n", "[4 rows x 4 columns]\n", "\n" ] } ], "source": [ "m = graphlab.recommender.create(sf, target='rating')\n", "recs = m.recommend()\n", "print recs" ] }, { "cell_type": "code", "execution_count": 19, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "{'intercept': 2.875, 'item_id': Columns:\n", " \titem_id\tstr\n", " \tlinear_terms\tfloat\n", " \tfactors\tarray\n", " \n", " Rows: 4\n", " \n", " Data:\n", " +---------+------------------+-------------------------------+\n", " | item_id | linear_terms | factors |\n", " +---------+------------------+-------------------------------+\n", " | a | -0.0691520795226 | [0.000691717606969, -0.001... |\n", " | b | -0.0680508315563 | [-0.000844004040118, -0.00... |\n", " | c | 0.277156561613 | [4.07315637858e-05, 0.0025... |\n", " | d | -0.61060488224 | [0.00015950971283, 0.00215... |\n", " +---------+------------------+-------------------------------+\n", " [4 rows x 3 columns], 'user_id': Columns:\n", " \tuser_id\tstr\n", " \tlinear_terms\tfloat\n", " \tfactors\tarray\n", " \n", " Rows: 3\n", " \n", " Data:\n", " +---------+----------------+-------------------------------+\n", " | user_id | linear_terms | factors |\n", " +---------+----------------+-------------------------------+\n", " | 0 | -1.01692664623 | [-0.000924227701034, -0.00... |\n", " | 1 | 0.826922476292 | [0.000409463362303, -0.002... |\n", " | 2 | -0.28046759963 | [0.000454146531411, 0.0036... |\n", " +---------+----------------+-------------------------------+\n", " [3 rows x 3 columns]}" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "m['coefficients']" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "After importing GraphLab Create, we can download data directly from S3. We have placed a preprocessed version of the [Million Song Dataset](http://labrosa.ee.columbia.edu/millionsong/) on S3. This data set was used for a [Kaggle challenge](https://www.kaggle.com/c/msdchallenge) and includes data from [The Echo Nest](http://the.echonest.com/), [SecondHandSongs](http://www.secondhandsongs.com/), [musiXmatch](http://musixmatch.com/), and [Last.fm](http://www.last.fm/). This file includes data for a subset of 10000 songs." ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "## The CourseTalk dataset: loading and first look\n", "\n", "Loading of the CourseTalk database." ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "------------------------------------------------------\n", "Inferred types from first line of file as \n", "column_type_hints=[int,int,float]\n", "If parsing fails due to incorrect types, you can correct\n", "the inferred type list above and pass it to read_csv in\n", "the column_type_hints argument\n", "------------------------------------------------------\n", "PROGRESS: Finished parsing file /Users/chengjun/GitHub/cjc2016/data/ratings.dat\n", "PROGRESS: Parsing completed. Parsed 2773 lines in 0.0105 secs.\n" ] }, { "data": { "application/javascript": [ "$(\"head\").append($(\"\").attr({\n", " rel: \"stylesheet\",\n", " type: \"text/css\",\n", " href: \"//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.min.css\"\n", "}));\n", "$(\"head\").append($(\"\").attr({\n", " rel: \"stylesheet\",\n", " type: \"text/css\",\n", " href: \"//dato.com/files/canvas/1.5.2/css/canvas.css\"\n", "}));\n", "\n", " (function(){\n", "\n", " var e = null;\n", " if (typeof element == 'undefined') {\n", " var scripts = document.getElementsByTagName('script');\n", " var thisScriptTag = scripts[scripts.length-1];\n", " var parentDiv = thisScriptTag.parentNode;\n", " e = document.createElement('div');\n", " parentDiv.appendChild(e);\n", " } else {\n", " e = element[0];\n", " }\n", "\n", " require(['//dato.com/files/canvas/1.5.2/js/ipython_app.js'], function(IPythonApp){\n", " var app = new IPythonApp();\n", " app.attachView('sframe','Summary', {\"ipython\": true, \"sketch\": {\"course_id\": {\"std\": 60.45773723152844, \"complete\": true, \"min\": 1.0, \"max\": 214.0, \"quantile\": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 2.0, 2.0, 2.0, 2.0, 2.0, 3.0, 3.0, 3.0, 3.0, 3.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 5.0, 5.0, 5.0, 6.0, 6.0, 7.0, 8.0, 9.0, 11.0, 12.0, 12.0, 14.0, 14.0, 14.0, 14.0, 15.0, 16.0, 17.0, 20.0, 21.0, 26.0, 28.0, 29.0, 31.0, 32.0, 33.0, 35.0, 36.0, 43.0, 49.0, 50.0, 52.0, 55.0, 57.0, 63.0, 68.0, 83.0, 90.0, 93.0, 95.0, 105.0, 109.0, 109.0, 110.0, 112.0, 117.0, 123.0, 132.0, 134.0, 135.0, 141.0, 145.0, 147.0, 155.0, 164.0, 171.0, 174.0, 176.0, 185.0, 188.0, 193.0, 200.0, 214.0], \"median\": 14.0, \"numeric\": true, \"num_unique\": 214, \"num_undefined\": 0, \"var\": 3655.1379911565405, \"progress\": 1.0, \"size\": 2773, \"frequent_items\": {\"1\": {\"frequency\": 575, \"value\": 1}, \"2\": {\"frequency\": 132, \"value\": 2}, \"3\": {\"frequency\": 147, \"value\": 3}, \"4\": {\"frequency\": 191, \"value\": 4}, \"5\": {\"frequency\": 81, \"value\": 5}, \"6\": {\"frequency\": 42, \"value\": 6}, \"7\": {\"frequency\": 49, \"value\": 7}, \"8\": {\"frequency\": 6, \"value\": 8}, \"9\": {\"frequency\": 24, \"value\": 9}, \"10\": {\"frequency\": 20, \"value\": 10}, \"11\": {\"frequency\": 31, \"value\": 11}, \"12\": {\"frequency\": 54, \"value\": 12}, \"13\": {\"frequency\": 7, \"value\": 13}, \"14\": {\"frequency\": 98, \"value\": 14}, \"15\": {\"frequency\": 29, \"value\": 15}, \"16\": {\"frequency\": 18, \"value\": 16}, \"17\": {\"frequency\": 23, \"value\": 17}, \"18\": {\"frequency\": 7, \"value\": 18}, \"19\": {\"frequency\": 5, \"value\": 19}, \"20\": {\"frequency\": 33, \"value\": 20}, \"21\": {\"frequency\": 10, \"value\": 21}, \"22\": {\"frequency\": 3, \"value\": 22}, \"23\": {\"frequency\": 9, \"value\": 23}, \"24\": {\"frequency\": 3, \"value\": 24}, \"25\": {\"frequency\": 6, \"value\": 25}, \"26\": {\"frequency\": 20, \"value\": 26}, \"27\": {\"frequency\": 10, \"value\": 27}, \"28\": {\"frequency\": 24, \"value\": 28}, \"29\": {\"frequency\": 11, \"value\": 29}, \"30\": {\"frequency\": 5, \"value\": 30}, \"31\": {\"frequency\": 35, \"value\": 31}, \"32\": {\"frequency\": 36, \"value\": 32}, \"33\": {\"frequency\": 16, \"value\": 33}, \"34\": {\"frequency\": 11, \"value\": 34}, \"35\": {\"frequency\": 32, \"value\": 35}, \"36\": {\"frequency\": 14, \"value\": 36}, \"37\": {\"frequency\": 2, \"value\": 37}, \"38\": {\"frequency\": 2, \"value\": 38}, \"39\": {\"frequency\": 2, \"value\": 39}, \"40\": {\"frequency\": 2, \"value\": 40}, \"41\": {\"frequency\": 2, \"value\": 41}, \"42\": {\"frequency\": 2, \"value\": 42}, \"43\": {\"frequency\": 2, \"value\": 43}, \"44\": {\"frequency\": 2, \"value\": 44}, \"45\": {\"frequency\": 3, \"value\": 45}, \"46\": {\"frequency\": 6, \"value\": 46}, \"47\": {\"frequency\": 7, \"value\": 47}, \"48\": {\"frequency\": 8, \"value\": 48}, \"49\": {\"frequency\": 22, \"value\": 49}, \"50\": {\"frequency\": 15, \"value\": 50}, \"51\": {\"frequency\": 10, \"value\": 51}, \"52\": {\"frequency\": 16, \"value\": 52}, \"53\": {\"frequency\": 9, \"value\": 53}, \"54\": {\"frequency\": 9, \"value\": 54}, \"55\": {\"frequency\": 9, \"value\": 55}, \"56\": {\"frequency\": 5, \"value\": 56}, \"57\": {\"frequency\": 28, \"value\": 57}, \"58\": {\"frequency\": 3, \"value\": 58}, \"59\": {\"frequency\": 3, \"value\": 59}, \"60\": {\"frequency\": 3, \"value\": 60}, \"61\": {\"frequency\": 3, \"value\": 61}, \"62\": {\"frequency\": 3, \"value\": 62}, \"63\": {\"frequency\": 12, \"value\": 63}, \"64\": {\"frequency\": 6, \"value\": 64}, \"65\": {\"frequency\": 2, \"value\": 65}, \"66\": {\"frequency\": 2, \"value\": 66}, \"67\": {\"frequency\": 5, \"value\": 67}, \"68\": {\"frequency\": 4, \"value\": 68}, \"69\": {\"frequency\": 11, \"value\": 69}, \"70\": {\"frequency\": 1, \"value\": 70}, \"71\": {\"frequency\": 1, \"value\": 71}, \"72\": {\"frequency\": 3, \"value\": 72}, \"73\": {\"frequency\": 1, \"value\": 73}, \"74\": {\"frequency\": 1, \"value\": 74}, \"75\": {\"frequency\": 1, \"value\": 75}, \"76\": {\"frequency\": 1, \"value\": 76}, \"77\": {\"frequency\": 1, \"value\": 77}, \"78\": {\"frequency\": 1, \"value\": 78}, \"79\": {\"frequency\": 1, \"value\": 79}, \"80\": {\"frequency\": 1, \"value\": 80}, \"81\": {\"frequency\": 1, \"value\": 81}, \"82\": {\"frequency\": 1, \"value\": 82}, \"83\": {\"frequency\": 1, \"value\": 83}, \"84\": {\"frequency\": 1, \"value\": 84}, \"85\": {\"frequency\": 1, \"value\": 85}, \"86\": {\"frequency\": 1, \"value\": 86}, \"87\": {\"frequency\": 6, \"value\": 87}, \"88\": {\"frequency\": 6, \"value\": 88}, \"89\": {\"frequency\": 10, \"value\": 89}, \"90\": {\"frequency\": 21, \"value\": 90}, \"91\": {\"frequency\": 4, \"value\": 91}, \"92\": {\"frequency\": 5, \"value\": 92}, \"93\": {\"frequency\": 15, \"value\": 93}, \"94\": {\"frequency\": 7, \"value\": 94}, \"95\": {\"frequency\": 6, \"value\": 95}, \"96\": {\"frequency\": 2, \"value\": 96}, \"97\": {\"frequency\": 2, \"value\": 97}, \"98\": {\"frequency\": 2, \"value\": 98}, \"99\": {\"frequency\": 2, \"value\": 99}, \"100\": {\"frequency\": 2, \"value\": 100}, \"101\": {\"frequency\": 2, \"value\": 101}, \"102\": {\"frequency\": 7, \"value\": 102}, \"103\": {\"frequency\": 3, \"value\": 103}, \"104\": {\"frequency\": 3, \"value\": 104}, \"105\": {\"frequency\": 3, \"value\": 105}, \"106\": {\"frequency\": 3, \"value\": 106}, \"107\": {\"frequency\": 3, \"value\": 107}, \"108\": {\"frequency\": 10, \"value\": 108}, \"109\": {\"frequency\": 65, \"value\": 109}, \"110\": {\"frequency\": 9, \"value\": 110}, \"111\": {\"frequency\": 8, \"value\": 111}, \"112\": {\"frequency\": 14, \"value\": 112}, \"113\": {\"frequency\": 10, \"value\": 113}, \"114\": {\"frequency\": 4, \"value\": 114}, \"115\": {\"frequency\": 3, \"value\": 115}, \"116\": {\"frequency\": 6, \"value\": 116}, \"117\": {\"frequency\": 3, \"value\": 117}, \"118\": {\"frequency\": 2, \"value\": 118}, \"119\": {\"frequency\": 2, \"value\": 119}, \"120\": {\"frequency\": 2, \"value\": 120}, \"121\": {\"frequency\": 2, \"value\": 121}, \"122\": {\"frequency\": 19, \"value\": 122}, \"123\": {\"frequency\": 7, \"value\": 123}, \"124\": {\"frequency\": 1, \"value\": 124}, \"125\": {\"frequency\": 1, \"value\": 125}, \"126\": {\"frequency\": 1, \"value\": 126}, \"127\": {\"frequency\": 1, \"value\": 127}, \"128\": {\"frequency\": 1, \"value\": 128}, \"129\": {\"frequency\": 1, \"value\": 129}, \"130\": {\"frequency\": 11, \"value\": 130}, \"131\": {\"frequency\": 4, \"value\": 131}, \"132\": {\"frequency\": 4, \"value\": 132}, \"133\": {\"frequency\": 3, \"value\": 133}, \"134\": {\"frequency\": 43, \"value\": 134}, \"135\": {\"frequency\": 7, \"value\": 135}, \"136\": {\"frequency\": 4, \"value\": 136}, \"137\": {\"frequency\": 4, \"value\": 137}, \"138\": {\"frequency\": 5, \"value\": 138}, \"139\": {\"frequency\": 3, \"value\": 139}, \"140\": {\"frequency\": 3, \"value\": 140}, \"141\": {\"frequency\": 11, \"value\": 141}, \"142\": {\"frequency\": 7, \"value\": 142}, \"143\": {\"frequency\": 7, \"value\": 143}, \"144\": {\"frequency\": 10, \"value\": 144}, \"145\": {\"frequency\": 16, \"value\": 145}, \"146\": {\"frequency\": 2, \"value\": 146}, \"147\": {\"frequency\": 15, \"value\": 147}, \"148\": {\"frequency\": 6, \"value\": 148}, \"149\": {\"frequency\": 3, \"value\": 149}, \"150\": {\"frequency\": 9, \"value\": 150}, \"151\": {\"frequency\": 1, \"value\": 151}, \"152\": {\"frequency\": 1, \"value\": 152}, \"153\": {\"frequency\": 1, \"value\": 153}, \"154\": {\"frequency\": 1, \"value\": 154}, \"155\": {\"frequency\": 1, \"value\": 155}, \"156\": {\"frequency\": 1, \"value\": 156}, \"157\": {\"frequency\": 1, \"value\": 157}, \"158\": {\"frequency\": 1, \"value\": 158}, \"159\": {\"frequency\": 1, \"value\": 159}, \"160\": {\"frequency\": 1, \"value\": 160}, \"161\": {\"frequency\": 1, \"value\": 161}, \"162\": {\"frequency\": 4, \"value\": 162}, \"163\": {\"frequency\": 17, \"value\": 163}, \"164\": {\"frequency\": 2, \"value\": 164}, \"165\": {\"frequency\": 2, \"value\": 165}, \"166\": {\"frequency\": 2, \"value\": 166}, \"167\": {\"frequency\": 3, \"value\": 167}, \"168\": {\"frequency\": 4, \"value\": 168}, \"169\": {\"frequency\": 2, \"value\": 169}, \"170\": {\"frequency\": 5, \"value\": 170}, \"171\": {\"frequency\": 24, \"value\": 171}, \"172\": {\"frequency\": 5, \"value\": 172}, \"173\": {\"frequency\": 3, \"value\": 173}, \"174\": {\"frequency\": 10, \"value\": 174}, \"175\": {\"frequency\": 4, \"value\": 175}, \"176\": {\"frequency\": 23, \"value\": 176}, \"177\": {\"frequency\": 1, \"value\": 177}, \"178\": {\"frequency\": 1, \"value\": 178}, \"179\": {\"frequency\": 1, \"value\": 179}, \"180\": {\"frequency\": 1, \"value\": 180}, \"181\": {\"frequency\": 1, \"value\": 181}, \"182\": {\"frequency\": 1, \"value\": 182}, \"183\": {\"frequency\": 3, \"value\": 183}, \"184\": {\"frequency\": 4, \"value\": 184}, \"185\": {\"frequency\": 25, \"value\": 185}, \"186\": {\"frequency\": 2, \"value\": 186}, \"187\": {\"frequency\": 4, \"value\": 187}, \"188\": {\"frequency\": 18, \"value\": 188}, \"189\": {\"frequency\": 5, \"value\": 189}, \"190\": {\"frequency\": 2, \"value\": 190}, \"191\": {\"frequency\": 3, \"value\": 191}, \"192\": {\"frequency\": 5, \"value\": 192}, \"193\": {\"frequency\": 1, \"value\": 193}, \"194\": {\"frequency\": 2, \"value\": 194}, \"195\": {\"frequency\": 1, \"value\": 195}, \"196\": {\"frequency\": 1, \"value\": 196}, \"197\": {\"frequency\": 3, \"value\": 197}, \"198\": {\"frequency\": 5, \"value\": 198}, \"199\": {\"frequency\": 4, \"value\": 199}, \"200\": {\"frequency\": 14, \"value\": 200}, \"201\": {\"frequency\": 1, \"value\": 201}, \"202\": {\"frequency\": 1, \"value\": 202}, \"203\": {\"frequency\": 1, \"value\": 203}, \"204\": {\"frequency\": 1, \"value\": 204}, \"205\": {\"frequency\": 1, \"value\": 205}, \"206\": {\"frequency\": 1, \"value\": 206}, \"207\": {\"frequency\": 1, \"value\": 207}, \"208\": {\"frequency\": 3, \"value\": 208}, \"209\": {\"frequency\": 2, \"value\": 209}, \"210\": {\"frequency\": 1, \"value\": 210}, \"211\": {\"frequency\": 1, \"value\": 211}, \"212\": {\"frequency\": 6, \"value\": 212}, \"213\": {\"frequency\": 2, \"value\": 213}, \"214\": {\"frequency\": 3, \"value\": 214}}, \"mean\": 46.83736025964656}, \"rating\": {\"std\": 0.9465453229050852, \"complete\": true, \"min\": 0.5, \"max\": 5.0, \"quantile\": [0.5, 0.5, 1.0, 1.5, 2.0, 2.0, 2.5, 3.0, 3.0, 3.0, 3.5, 3.5, 3.5, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0], \"median\": 5.0, \"numeric\": true, \"num_unique\": 10, \"num_undefined\": 0, \"var\": 0.8959480483134921, \"progress\": 1.0, \"size\": 2773, \"frequent_items\": {\"3.5\": {\"frequency\": 94, \"value\": 3.5}, \"4.5\": {\"frequency\": 313, \"value\": 4.5}, \"2.0\": {\"frequency\": 53, \"value\": 2.0}, \"3.0\": {\"frequency\": 80, \"value\": 3.0}, \"4.0\": {\"frequency\": 285, \"value\": 4.0}, \"5.0\": {\"frequency\": 1817, \"value\": 5.0}, \"0.5\": {\"frequency\": 30, \"value\": 0.5}, \"1.0\": {\"frequency\": 43, \"value\": 1.0}, \"2.5\": {\"frequency\": 35, \"value\": 2.5}, \"1.5\": {\"frequency\": 23, \"value\": 1.5}}, \"mean\": 4.503606202668592}, \"user_id\": {\"std\": 555.4901330269732, \"complete\": true, \"min\": 1.0, \"max\": 2017.0, \"quantile\": [1.0, 10.0, 18.0, 35.0, 38.0, 60.0, 88.0, 115.0, 143.0, 170.0, 198.0, 223.0, 250.0, 278.0, 305.0, 332.0, 360.0, 386.0, 413.0, 438.0, 465.0, 492.0, 522.0, 540.0, 561.0, 582.0, 604.0, 628.0, 651.0, 663.0, 677.0, 699.0, 722.0, 727.0, 738.0, 764.0, 793.0, 809.0, 825.0, 851.0, 867.0, 882.0, 912.0, 938.0, 966.0, 991.0, 1019.0, 1041.0, 1065.0, 1092.0, 1103.0, 1120.0, 1128.0, 1134.0, 1153.0, 1165.0, 1180.0, 1185.0, 1193.0, 1202.0, 1216.0, 1228.0, 1240.0, 1259.0, 1270.0, 1285.0, 1296.0, 1316.0, 1339.0, 1366.0, 1392.0, 1407.0, 1416.0, 1435.0, 1452.0, 1477.0, 1498.0, 1516.0, 1525.0, 1537.0, 1550.0, 1573.0, 1591.0, 1601.0, 1617.0, 1636.0, 1660.0, 1686.0, 1710.0, 1734.0, 1753.0, 1777.0, 1804.0, 1829.0, 1852.0, 1880.0, 1908.0, 1934.0, 1962.0, 1990.0, 2017.0], \"median\": 1103.0, \"numeric\": true, \"num_unique\": 2007, \"num_undefined\": 0, \"var\": 308569.2878903245, \"progress\": 1.0, \"size\": 2773, \"frequent_items\": {\"1\": {\"frequency\": 1, \"value\": 1}, \"2\": {\"frequency\": 1, \"value\": 2}, \"3\": {\"frequency\": 1, \"value\": 3}, \"4\": {\"frequency\": 1, \"value\": 4}, \"5\": {\"frequency\": 1, \"value\": 5}, \"6\": {\"frequency\": 13, \"value\": 6}, \"7\": {\"frequency\": 1, \"value\": 7}, \"8\": {\"frequency\": 1, \"value\": 8}, \"9\": {\"frequency\": 1, \"value\": 9}, \"10\": {\"frequency\": 7, \"value\": 10}, \"11\": {\"frequency\": 1, \"value\": 11}, \"12\": {\"frequency\": 1, \"value\": 12}, \"13\": {\"frequency\": 20, \"value\": 13}, \"14\": {\"frequency\": 1, \"value\": 14}, \"15\": {\"frequency\": 1, \"value\": 15}, \"16\": {\"frequency\": 1, \"value\": 16}, \"17\": {\"frequency\": 2, \"value\": 17}, \"18\": {\"frequency\": 1, \"value\": 18}, \"19\": {\"frequency\": 1, \"value\": 19}, \"20\": {\"frequency\": 1, \"value\": 20}, \"21\": {\"frequency\": 1, \"value\": 21}, \"22\": {\"frequency\": 1, \"value\": 22}, \"23\": {\"frequency\": 1, \"value\": 23}, \"24\": {\"frequency\": 1, \"value\": 24}, \"25\": {\"frequency\": 1, \"value\": 25}, \"26\": {\"frequency\": 1, \"value\": 26}, \"27\": {\"frequency\": 1, \"value\": 27}, \"28\": {\"frequency\": 1, \"value\": 28}, \"29\": {\"frequency\": 1, \"value\": 29}, \"30\": {\"frequency\": 1, \"value\": 30}, \"31\": {\"frequency\": 1, \"value\": 31}, \"32\": {\"frequency\": 1, \"value\": 32}, \"33\": {\"frequency\": 9, \"value\": 33}, \"34\": {\"frequency\": 2, \"value\": 34}, \"35\": {\"frequency\": 24, \"value\": 35}, \"36\": {\"frequency\": 2, \"value\": 36}, \"37\": {\"frequency\": 1, \"value\": 37}, \"38\": {\"frequency\": 4, \"value\": 38}, \"39\": {\"frequency\": 1, \"value\": 39}, \"40\": {\"frequency\": 1, \"value\": 40}, \"41\": {\"frequency\": 1, \"value\": 41}, \"42\": {\"frequency\": 1, \"value\": 42}, \"43\": {\"frequency\": 1, \"value\": 43}, \"44\": {\"frequency\": 1, \"value\": 44}, \"45\": {\"frequency\": 1, \"value\": 45}, \"46\": {\"frequency\": 2, \"value\": 46}, \"47\": {\"frequency\": 1, \"value\": 47}, \"48\": {\"frequency\": 1, \"value\": 48}, \"49\": {\"frequency\": 2, \"value\": 49}, \"50\": {\"frequency\": 1, \"value\": 50}, \"51\": {\"frequency\": 1, \"value\": 51}, \"52\": {\"frequency\": 1, \"value\": 52}, \"53\": {\"frequency\": 1, \"value\": 53}, \"54\": {\"frequency\": 1, \"value\": 54}, \"55\": {\"frequency\": 1, \"value\": 55}, \"56\": {\"frequency\": 1, \"value\": 56}, \"57\": {\"frequency\": 4, \"value\": 57}, \"58\": {\"frequency\": 1, \"value\": 58}, \"59\": {\"frequency\": 1, \"value\": 59}, \"60\": {\"frequency\": 1, \"value\": 60}, \"61\": {\"frequency\": 1, \"value\": 61}, \"62\": {\"frequency\": 1, \"value\": 62}, \"63\": {\"frequency\": 1, \"value\": 63}, \"64\": {\"frequency\": 1, \"value\": 64}, \"65\": {\"frequency\": 1, \"value\": 65}, \"66\": {\"frequency\": 1, \"value\": 66}, \"67\": {\"frequency\": 1, \"value\": 67}, \"68\": {\"frequency\": 1, \"value\": 68}, \"69\": {\"frequency\": 1, \"value\": 69}, \"70\": {\"frequency\": 1, \"value\": 70}, \"71\": {\"frequency\": 1, \"value\": 71}, \"72\": {\"frequency\": 1, \"value\": 72}, \"73\": {\"frequency\": 1, \"value\": 73}, \"74\": {\"frequency\": 1, \"value\": 74}, \"75\": {\"frequency\": 1, \"value\": 75}, \"76\": {\"frequency\": 1, \"value\": 76}, \"77\": {\"frequency\": 1, \"value\": 77}, \"78\": {\"frequency\": 1, \"value\": 78}, \"79\": {\"frequency\": 1, \"value\": 79}, \"80\": {\"frequency\": 1, \"value\": 80}, \"81\": {\"frequency\": 1, \"value\": 81}, \"82\": {\"frequency\": 1, \"value\": 82}, \"83\": {\"frequency\": 1, \"value\": 83}, \"84\": {\"frequency\": 1, \"value\": 84}, \"85\": {\"frequency\": 1, \"value\": 85}, \"86\": {\"frequency\": 1, \"value\": 86}, \"87\": {\"frequency\": 1, \"value\": 87}, \"88\": {\"frequency\": 1, \"value\": 88}, \"89\": {\"frequency\": 1, \"value\": 89}, \"90\": {\"frequency\": 1, \"value\": 90}, \"91\": {\"frequency\": 1, \"value\": 91}, \"92\": {\"frequency\": 1, \"value\": 92}, \"93\": {\"frequency\": 1, \"value\": 93}, \"94\": {\"frequency\": 1, \"value\": 94}, \"95\": {\"frequency\": 1, \"value\": 95}, \"96\": {\"frequency\": 1, \"value\": 96}, \"97\": {\"frequency\": 1, \"value\": 97}, \"98\": {\"frequency\": 1, \"value\": 98}, \"99\": {\"frequency\": 1, \"value\": 99}, \"100\": {\"frequency\": 1, \"value\": 100}, \"101\": {\"frequency\": 1, \"value\": 101}, \"102\": {\"frequency\": 1, \"value\": 102}, \"103\": {\"frequency\": 1, \"value\": 103}, \"104\": {\"frequency\": 1, \"value\": 104}, \"105\": {\"frequency\": 1, \"value\": 105}, \"106\": {\"frequency\": 1, \"value\": 106}, \"107\": {\"frequency\": 1, \"value\": 107}, \"108\": {\"frequency\": 1, \"value\": 108}, \"109\": {\"frequency\": 1, \"value\": 109}, \"110\": {\"frequency\": 1, \"value\": 110}, \"111\": {\"frequency\": 1, \"value\": 111}, \"112\": {\"frequency\": 1, \"value\": 112}, \"113\": {\"frequency\": 1, \"value\": 113}, \"114\": {\"frequency\": 1, \"value\": 114}, \"115\": {\"frequency\": 1, \"value\": 115}, \"116\": {\"frequency\": 1, \"value\": 116}, \"117\": {\"frequency\": 1, \"value\": 117}, \"118\": {\"frequency\": 1, \"value\": 118}, \"119\": {\"frequency\": 1, \"value\": 119}, \"120\": {\"frequency\": 1, \"value\": 120}, \"121\": {\"frequency\": 1, \"value\": 121}, \"122\": {\"frequency\": 1, \"value\": 122}, \"123\": {\"frequency\": 1, \"value\": 123}, \"124\": {\"frequency\": 1, \"value\": 124}, \"125\": {\"frequency\": 1, \"value\": 125}, \"126\": {\"frequency\": 1, \"value\": 126}, \"127\": {\"frequency\": 1, \"value\": 127}, \"128\": {\"frequency\": 1, \"value\": 128}, \"129\": {\"frequency\": 1, \"value\": 129}, \"130\": {\"frequency\": 1, \"value\": 130}, \"131\": {\"frequency\": 1, \"value\": 131}, \"132\": {\"frequency\": 1, \"value\": 132}, \"133\": {\"frequency\": 1, \"value\": 133}, \"134\": {\"frequency\": 1, \"value\": 134}, \"135\": {\"frequency\": 1, \"value\": 135}, \"136\": {\"frequency\": 1, \"value\": 136}, \"137\": {\"frequency\": 1, \"value\": 137}, \"138\": {\"frequency\": 1, \"value\": 138}, \"139\": {\"frequency\": 1, \"value\": 139}, \"140\": {\"frequency\": 1, \"value\": 140}, \"141\": {\"frequency\": 1, \"value\": 141}, \"142\": {\"frequency\": 1, \"value\": 142}, \"143\": {\"frequency\": 1, \"value\": 143}, \"144\": {\"frequency\": 1, \"value\": 144}, \"145\": {\"frequency\": 1, \"value\": 145}, \"146\": {\"frequency\": 1, \"value\": 146}, \"147\": {\"frequency\": 1, \"value\": 147}, \"148\": {\"frequency\": 1, \"value\": 148}, \"149\": {\"frequency\": 1, \"value\": 149}, \"150\": {\"frequency\": 1, \"value\": 150}, \"151\": {\"frequency\": 1, \"value\": 151}, \"152\": {\"frequency\": 1, \"value\": 152}, \"153\": {\"frequency\": 1, \"value\": 153}, \"154\": {\"frequency\": 1, \"value\": 154}, \"155\": {\"frequency\": 1, \"value\": 155}, \"156\": {\"frequency\": 1, \"value\": 156}, \"157\": {\"frequency\": 1, \"value\": 157}, \"158\": {\"frequency\": 1, \"value\": 158}, \"159\": {\"frequency\": 2, \"value\": 159}, \"160\": {\"frequency\": 1, \"value\": 160}, \"161\": {\"frequency\": 1, \"value\": 161}, \"162\": {\"frequency\": 1, \"value\": 162}, \"163\": {\"frequency\": 1, \"value\": 163}, \"164\": {\"frequency\": 1, \"value\": 164}, \"165\": {\"frequency\": 1, \"value\": 165}, \"166\": {\"frequency\": 1, \"value\": 166}, \"167\": {\"frequency\": 1, \"value\": 167}, \"168\": {\"frequency\": 1, \"value\": 168}, \"169\": {\"frequency\": 1, \"value\": 169}, \"170\": {\"frequency\": 1, \"value\": 170}, \"171\": {\"frequency\": 1, \"value\": 171}, \"172\": {\"frequency\": 1, \"value\": 172}, \"173\": {\"frequency\": 1, \"value\": 173}, \"174\": {\"frequency\": 1, \"value\": 174}, \"175\": {\"frequency\": 1, \"value\": 175}, \"176\": {\"frequency\": 1, \"value\": 176}, \"177\": {\"frequency\": 1, \"value\": 177}, \"178\": {\"frequency\": 1, \"value\": 178}, \"179\": {\"frequency\": 1, \"value\": 179}, \"180\": {\"frequency\": 1, \"value\": 180}, \"181\": {\"frequency\": 1, \"value\": 181}, \"182\": {\"frequency\": 1, \"value\": 182}, \"183\": {\"frequency\": 1, \"value\": 183}, \"184\": {\"frequency\": 1, \"value\": 184}, \"185\": {\"frequency\": 1, \"value\": 185}, \"186\": {\"frequency\": 1, \"value\": 186}, \"187\": {\"frequency\": 1, \"value\": 187}, \"188\": {\"frequency\": 1, \"value\": 188}, \"189\": {\"frequency\": 1, \"value\": 189}, \"190\": {\"frequency\": 1, \"value\": 190}, \"191\": {\"frequency\": 1, \"value\": 191}, \"192\": {\"frequency\": 1, \"value\": 192}, \"193\": {\"frequency\": 1, \"value\": 193}, \"194\": {\"frequency\": 1, \"value\": 194}, \"195\": {\"frequency\": 1, \"value\": 195}, \"196\": {\"frequency\": 1, \"value\": 196}, \"197\": {\"frequency\": 1, \"value\": 197}, \"198\": {\"frequency\": 1, \"value\": 198}, \"199\": {\"frequency\": 1, \"value\": 199}, \"200\": {\"frequency\": 1, \"value\": 200}, \"201\": {\"frequency\": 1, \"value\": 201}, \"202\": {\"frequency\": 1, \"value\": 202}, \"203\": {\"frequency\": 1, \"value\": 203}, \"204\": {\"frequency\": 3, \"value\": 204}, \"205\": {\"frequency\": 1, \"value\": 205}, \"206\": {\"frequency\": 1, \"value\": 206}, \"207\": {\"frequency\": 1, \"value\": 207}, \"208\": {\"frequency\": 1, \"value\": 208}, \"209\": {\"frequency\": 1, \"value\": 209}, \"210\": {\"frequency\": 1, \"value\": 210}, \"211\": {\"frequency\": 1, \"value\": 211}, \"212\": {\"frequency\": 1, \"value\": 212}, \"213\": {\"frequency\": 1, \"value\": 213}, \"214\": {\"frequency\": 1, \"value\": 214}, \"215\": {\"frequency\": 1, \"value\": 215}, \"216\": {\"frequency\": 1, \"value\": 216}, \"217\": {\"frequency\": 1, \"value\": 217}, \"218\": {\"frequency\": 1, \"value\": 218}, \"219\": {\"frequency\": 1, \"value\": 219}, \"220\": {\"frequency\": 1, \"value\": 220}, \"221\": {\"frequency\": 1, \"value\": 221}, \"222\": {\"frequency\": 1, \"value\": 222}, \"223\": {\"frequency\": 1, \"value\": 223}, \"224\": {\"frequency\": 1, \"value\": 224}, \"225\": {\"frequency\": 1, \"value\": 225}, \"226\": {\"frequency\": 1, \"value\": 226}, \"227\": {\"frequency\": 1, \"value\": 227}, \"228\": {\"frequency\": 1, \"value\": 228}, \"229\": {\"frequency\": 1, \"value\": 229}, \"230\": {\"frequency\": 1, \"value\": 230}, \"231\": {\"frequency\": 1, \"value\": 231}, \"232\": {\"frequency\": 1, \"value\": 232}, \"233\": {\"frequency\": 1, \"value\": 233}, \"234\": {\"frequency\": 1, \"value\": 234}, \"235\": {\"frequency\": 1, \"value\": 235}, \"236\": {\"frequency\": 1, \"value\": 236}, \"237\": {\"frequency\": 1, \"value\": 237}, \"238\": {\"frequency\": 1, \"value\": 238}, \"239\": {\"frequency\": 1, \"value\": 239}, \"240\": {\"frequency\": 1, \"value\": 240}, \"241\": {\"frequency\": 1, \"value\": 241}, \"242\": {\"frequency\": 1, \"value\": 242}, \"243\": {\"frequency\": 1, \"value\": 243}, \"244\": {\"frequency\": 1, \"value\": 244}, \"245\": {\"frequency\": 1, \"value\": 245}, \"246\": {\"frequency\": 1, \"value\": 246}, \"247\": {\"frequency\": 2, \"value\": 247}, \"248\": {\"frequency\": 1, \"value\": 248}, \"249\": {\"frequency\": 1, \"value\": 249}, \"250\": {\"frequency\": 1, \"value\": 250}, \"251\": {\"frequency\": 1, \"value\": 251}, \"252\": {\"frequency\": 1, \"value\": 252}, \"253\": {\"frequency\": 1, \"value\": 253}, \"254\": {\"frequency\": 1, \"value\": 254}, \"255\": {\"frequency\": 1, \"value\": 255}, \"256\": {\"frequency\": 1, \"value\": 256}, \"257\": {\"frequency\": 1, \"value\": 257}, \"258\": {\"frequency\": 1, \"value\": 258}, \"259\": {\"frequency\": 1, \"value\": 259}, \"260\": {\"frequency\": 1, \"value\": 260}, \"261\": {\"frequency\": 1, \"value\": 261}, \"262\": {\"frequency\": 1, \"value\": 262}, \"263\": {\"frequency\": 1, \"value\": 263}, \"264\": {\"frequency\": 1, \"value\": 264}, \"265\": {\"frequency\": 1, \"value\": 265}, \"266\": {\"frequency\": 1, \"value\": 266}, \"267\": {\"frequency\": 1, \"value\": 267}, \"268\": {\"frequency\": 1, \"value\": 268}, \"269\": {\"frequency\": 1, \"value\": 269}, \"270\": {\"frequency\": 1, \"value\": 270}, \"271\": {\"frequency\": 1, \"value\": 271}, \"272\": {\"frequency\": 1, \"value\": 272}, \"273\": {\"frequency\": 1, \"value\": 273}, \"274\": {\"frequency\": 1, \"value\": 274}, \"275\": {\"frequency\": 1, \"value\": 275}, \"276\": {\"frequency\": 1, \"value\": 276}, \"277\": {\"frequency\": 1, \"value\": 277}, \"278\": {\"frequency\": 1, \"value\": 278}, \"279\": {\"frequency\": 1, \"value\": 279}, \"280\": {\"frequency\": 1, \"value\": 280}, \"281\": {\"frequency\": 1, \"value\": 281}, \"282\": {\"frequency\": 1, \"value\": 282}, \"283\": {\"frequency\": 1, \"value\": 283}, \"284\": {\"frequency\": 1, \"value\": 284}, \"285\": {\"frequency\": 1, \"value\": 285}, \"286\": {\"frequency\": 1, \"value\": 286}, \"287\": {\"frequency\": 1, \"value\": 287}, \"288\": {\"frequency\": 1, \"value\": 288}, \"289\": {\"frequency\": 1, \"value\": 289}, \"290\": {\"frequency\": 1, \"value\": 290}, \"291\": {\"frequency\": 1, \"value\": 291}, \"292\": {\"frequency\": 1, \"value\": 292}, \"293\": {\"frequency\": 1, \"value\": 293}, \"294\": {\"frequency\": 1, \"value\": 294}, \"295\": {\"frequency\": 1, \"value\": 295}, \"296\": {\"frequency\": 1, \"value\": 296}, \"297\": {\"frequency\": 1, \"value\": 297}, \"298\": {\"frequency\": 1, \"value\": 298}, \"299\": {\"frequency\": 1, \"value\": 299}, \"300\": {\"frequency\": 1, \"value\": 300}, \"301\": {\"frequency\": 1, \"value\": 301}, \"302\": {\"frequency\": 1, \"value\": 302}, \"303\": {\"frequency\": 1, \"value\": 303}, \"304\": {\"frequency\": 1, \"value\": 304}, \"305\": {\"frequency\": 1, \"value\": 305}, \"306\": {\"frequency\": 1, \"value\": 306}, \"307\": {\"frequency\": 1, \"value\": 307}, \"308\": {\"frequency\": 1, \"value\": 308}, \"309\": {\"frequency\": 1, \"value\": 309}, \"310\": {\"frequency\": 1, \"value\": 310}, \"311\": {\"frequency\": 1, \"value\": 311}, \"312\": {\"frequency\": 2, \"value\": 312}, \"313\": {\"frequency\": 1, \"value\": 313}, \"314\": {\"frequency\": 1, \"value\": 314}, \"315\": {\"frequency\": 1, \"value\": 315}, \"316\": {\"frequency\": 1, \"value\": 316}, \"317\": {\"frequency\": 1, \"value\": 317}, \"318\": {\"frequency\": 1, \"value\": 318}, \"319\": {\"frequency\": 1, \"value\": 319}, \"320\": {\"frequency\": 1, \"value\": 320}, \"321\": {\"frequency\": 1, \"value\": 321}, \"322\": {\"frequency\": 1, \"value\": 322}, \"323\": {\"frequency\": 1, \"value\": 323}, \"324\": {\"frequency\": 1, \"value\": 324}, \"325\": {\"frequency\": 1, \"value\": 325}, \"326\": {\"frequency\": 1, \"value\": 326}, \"327\": {\"frequency\": 1, \"value\": 327}, \"328\": {\"frequency\": 1, \"value\": 328}, \"329\": {\"frequency\": 1, \"value\": 329}, \"330\": {\"frequency\": 1, \"value\": 330}, \"331\": {\"frequency\": 1, \"value\": 331}, \"332\": {\"frequency\": 1, \"value\": 332}, \"333\": {\"frequency\": 1, \"value\": 333}, \"334\": {\"frequency\": 1, \"value\": 334}, \"335\": {\"frequency\": 1, \"value\": 335}, \"336\": {\"frequency\": 1, \"value\": 336}, \"337\": {\"frequency\": 1, \"value\": 337}, \"338\": {\"frequency\": 1, \"value\": 338}, \"339\": {\"frequency\": 1, \"value\": 339}, \"340\": {\"frequency\": 1, \"value\": 340}, \"341\": {\"frequency\": 1, \"value\": 341}, \"342\": {\"frequency\": 1, \"value\": 342}, \"343\": {\"frequency\": 1, \"value\": 343}, \"344\": {\"frequency\": 1, \"value\": 344}, \"345\": {\"frequency\": 1, \"value\": 345}, \"346\": {\"frequency\": 1, \"value\": 346}, \"347\": {\"frequency\": 1, \"value\": 347}, \"348\": {\"frequency\": 1, \"value\": 348}, \"349\": {\"frequency\": 1, \"value\": 349}, \"350\": {\"frequency\": 1, \"value\": 350}, \"351\": {\"frequency\": 1, \"value\": 351}, \"352\": {\"frequency\": 1, \"value\": 352}, \"353\": {\"frequency\": 1, \"value\": 353}, \"354\": {\"frequency\": 1, \"value\": 354}, \"355\": {\"frequency\": 1, \"value\": 355}, \"356\": {\"frequency\": 1, \"value\": 356}, \"357\": {\"frequency\": 1, \"value\": 357}, \"358\": {\"frequency\": 1, \"value\": 358}, \"359\": {\"frequency\": 1, \"value\": 359}, \"360\": {\"frequency\": 1, \"value\": 360}, \"361\": {\"frequency\": 1, \"value\": 361}, \"362\": {\"frequency\": 1, \"value\": 362}, \"363\": {\"frequency\": 1, \"value\": 363}, \"364\": {\"frequency\": 1, \"value\": 364}, \"365\": {\"frequency\": 1, \"value\": 365}, \"366\": {\"frequency\": 1, \"value\": 366}, \"367\": {\"frequency\": 1, \"value\": 367}, \"368\": {\"frequency\": 1, \"value\": 368}, \"369\": {\"frequency\": 1, \"value\": 369}, \"370\": {\"frequency\": 1, \"value\": 370}, \"371\": {\"frequency\": 1, \"value\": 371}, \"372\": {\"frequency\": 1, \"value\": 372}, \"373\": {\"frequency\": 1, \"value\": 373}, \"374\": {\"frequency\": 1, \"value\": 374}, \"375\": {\"frequency\": 1, \"value\": 375}, \"376\": {\"frequency\": 1, \"value\": 376}, \"377\": {\"frequency\": 1, \"value\": 377}, \"378\": {\"frequency\": 1, \"value\": 378}, \"379\": {\"frequency\": 1, \"value\": 379}, \"380\": {\"frequency\": 1, \"value\": 380}, \"381\": {\"frequency\": 1, \"value\": 381}, \"382\": {\"frequency\": 3, \"value\": 382}, \"383\": {\"frequency\": 1, \"value\": 383}, \"384\": {\"frequency\": 1, \"value\": 384}, \"385\": {\"frequency\": 1, \"value\": 385}, \"386\": {\"frequency\": 1, \"value\": 386}, \"387\": {\"frequency\": 1, \"value\": 387}, \"388\": {\"frequency\": 1, \"value\": 388}, \"389\": {\"frequency\": 1, \"value\": 389}, \"390\": {\"frequency\": 1, \"value\": 390}, \"391\": {\"frequency\": 1, \"value\": 391}, \"392\": {\"frequency\": 1, \"value\": 392}, \"393\": {\"frequency\": 1, \"value\": 393}, \"394\": {\"frequency\": 1, \"value\": 394}, \"395\": {\"frequency\": 1, \"value\": 395}, \"396\": {\"frequency\": 1, \"value\": 396}, \"397\": {\"frequency\": 1, \"value\": 397}, \"398\": {\"frequency\": 1, \"value\": 398}, \"399\": {\"frequency\": 1, \"value\": 399}, \"400\": {\"frequency\": 1, \"value\": 400}, \"401\": {\"frequency\": 1, \"value\": 401}, \"402\": {\"frequency\": 1, \"value\": 402}, \"403\": {\"frequency\": 1, \"value\": 403}, \"404\": {\"frequency\": 1, \"value\": 404}, \"405\": {\"frequency\": 1, \"value\": 405}, \"406\": {\"frequency\": 1, \"value\": 406}, \"407\": {\"frequency\": 1, \"value\": 407}, \"408\": {\"frequency\": 1, \"value\": 408}, \"409\": {\"frequency\": 1, \"value\": 409}, \"410\": {\"frequency\": 1, \"value\": 410}, \"411\": {\"frequency\": 1, \"value\": 411}, \"412\": {\"frequency\": 1, \"value\": 412}, \"413\": {\"frequency\": 1, \"value\": 413}, \"414\": {\"frequency\": 1, \"value\": 414}, \"415\": {\"frequency\": 1, \"value\": 415}, \"416\": {\"frequency\": 1, \"value\": 416}, \"417\": {\"frequency\": 1, \"value\": 417}, \"418\": {\"frequency\": 1, \"value\": 418}, \"419\": {\"frequency\": 1, \"value\": 419}, \"420\": {\"frequency\": 1, \"value\": 420}, \"421\": {\"frequency\": 1, \"value\": 421}, \"422\": {\"frequency\": 1, \"value\": 422}, \"423\": {\"frequency\": 1, \"value\": 423}, \"424\": {\"frequency\": 4, \"value\": 424}, \"425\": {\"frequency\": 1, \"value\": 425}, \"426\": {\"frequency\": 1, \"value\": 426}, \"427\": {\"frequency\": 1, \"value\": 427}, \"428\": {\"frequency\": 1, \"value\": 428}, \"429\": {\"frequency\": 1, \"value\": 429}, \"430\": {\"frequency\": 1, \"value\": 430}, \"431\": {\"frequency\": 1, \"value\": 431}, \"432\": {\"frequency\": 1, \"value\": 432}, \"433\": {\"frequency\": 1, \"value\": 433}, \"434\": {\"frequency\": 1, \"value\": 434}, \"435\": {\"frequency\": 1, \"value\": 435}, \"436\": {\"frequency\": 1, \"value\": 436}, \"437\": {\"frequency\": 1, \"value\": 437}, \"438\": {\"frequency\": 1, \"value\": 438}, \"439\": {\"frequency\": 1, \"value\": 439}, \"440\": {\"frequency\": 1, \"value\": 440}, \"441\": {\"frequency\": 1, \"value\": 441}, \"442\": {\"frequency\": 1, \"value\": 442}, \"443\": {\"frequency\": 1, \"value\": 443}, \"444\": {\"frequency\": 1, \"value\": 444}, \"445\": {\"frequency\": 1, \"value\": 445}, \"446\": {\"frequency\": 1, \"value\": 446}, \"447\": {\"frequency\": 1, \"value\": 447}, \"448\": {\"frequency\": 1, \"value\": 448}, \"449\": {\"frequency\": 1, \"value\": 449}, \"450\": {\"frequency\": 1, \"value\": 450}, \"451\": {\"frequency\": 1, \"value\": 451}, \"452\": {\"frequency\": 1, \"value\": 452}, \"453\": {\"frequency\": 1, \"value\": 453}, \"454\": {\"frequency\": 1, \"value\": 454}, \"455\": {\"frequency\": 1, \"value\": 455}, \"456\": {\"frequency\": 1, \"value\": 456}, \"457\": {\"frequency\": 1, \"value\": 457}, \"458\": {\"frequency\": 1, \"value\": 458}, \"459\": {\"frequency\": 2, \"value\": 459}, \"460\": {\"frequency\": 1, \"value\": 460}, \"461\": {\"frequency\": 1, \"value\": 461}, \"462\": {\"frequency\": 1, \"value\": 462}, \"463\": {\"frequency\": 1, \"value\": 463}, \"464\": {\"frequency\": 1, \"value\": 464}, \"465\": {\"frequency\": 1, \"value\": 465}, \"466\": {\"frequency\": 1, \"value\": 466}, \"467\": {\"frequency\": 1, \"value\": 467}, \"468\": {\"frequency\": 1, \"value\": 468}, \"469\": {\"frequency\": 1, \"value\": 469}, \"470\": {\"frequency\": 1, \"value\": 470}, \"471\": {\"frequency\": 1, \"value\": 471}, \"472\": {\"frequency\": 1, \"value\": 472}, \"473\": {\"frequency\": 1, \"value\": 473}, \"474\": {\"frequency\": 1, \"value\": 474}, \"475\": {\"frequency\": 1, \"value\": 475}, \"476\": {\"frequency\": 1, \"value\": 476}, \"477\": {\"frequency\": 1, \"value\": 477}, \"478\": {\"frequency\": 1, \"value\": 478}, \"479\": {\"frequency\": 1, \"value\": 479}, \"480\": {\"frequency\": 1, \"value\": 480}, \"481\": {\"frequency\": 1, \"value\": 481}, \"482\": {\"frequency\": 1, \"value\": 482}, \"483\": {\"frequency\": 1, \"value\": 483}, \"484\": {\"frequency\": 1, \"value\": 484}, \"485\": {\"frequency\": 1, \"value\": 485}, \"486\": {\"frequency\": 1, \"value\": 486}, \"487\": {\"frequency\": 1, \"value\": 487}, \"488\": {\"frequency\": 1, \"value\": 488}, \"489\": {\"frequency\": 1, \"value\": 489}, \"490\": {\"frequency\": 1, \"value\": 490}, \"491\": {\"frequency\": 1, \"value\": 491}, \"492\": {\"frequency\": 1, \"value\": 492}, \"493\": {\"frequency\": 1, \"value\": 493}, \"494\": {\"frequency\": 1, \"value\": 494}, \"495\": {\"frequency\": 1, \"value\": 495}, \"496\": {\"frequency\": 1, \"value\": 496}, \"497\": {\"frequency\": 1, \"value\": 497}, \"498\": {\"frequency\": 1, \"value\": 498}, \"499\": {\"frequency\": 1, \"value\": 499}, \"500\": {\"frequency\": 1, \"value\": 500}, \"501\": {\"frequency\": 1, \"value\": 501}, \"502\": {\"frequency\": 1, \"value\": 502}, \"503\": {\"frequency\": 1, \"value\": 503}, \"504\": {\"frequency\": 1, \"value\": 504}, \"505\": {\"frequency\": 1, \"value\": 505}, \"506\": {\"frequency\": 1, \"value\": 506}, \"507\": {\"frequency\": 1, \"value\": 507}, \"508\": {\"frequency\": 1, \"value\": 508}, \"509\": {\"frequency\": 1, \"value\": 509}, \"510\": {\"frequency\": 1, \"value\": 510}, \"511\": {\"frequency\": 1, \"value\": 511}, \"512\": {\"frequency\": 1, \"value\": 512}, \"513\": {\"frequency\": 1, \"value\": 513}, \"514\": {\"frequency\": 1, \"value\": 514}, \"515\": {\"frequency\": 1, \"value\": 515}, \"516\": {\"frequency\": 1, \"value\": 516}, \"517\": {\"frequency\": 1, \"value\": 517}, \"518\": {\"frequency\": 1, \"value\": 518}, \"519\": {\"frequency\": 1, \"value\": 519}, \"520\": {\"frequency\": 1, \"value\": 520}, \"521\": {\"frequency\": 1, \"value\": 521}, \"522\": {\"frequency\": 1, \"value\": 522}, \"523\": {\"frequency\": 1, \"value\": 523}, \"524\": {\"frequency\": 1, \"value\": 524}, \"525\": {\"frequency\": 1, \"value\": 525}, \"526\": {\"frequency\": 1, \"value\": 526}, \"527\": {\"frequency\": 1, \"value\": 527}, \"528\": {\"frequency\": 1, \"value\": 528}, \"529\": {\"frequency\": 1, \"value\": 529}, \"530\": {\"frequency\": 1, \"value\": 530}, \"531\": {\"frequency\": 1, \"value\": 531}, \"532\": {\"frequency\": 1, \"value\": 532}, \"533\": {\"frequency\": 2, \"value\": 533}, \"534\": {\"frequency\": 3, \"value\": 534}, \"535\": {\"frequency\": 1, \"value\": 535}, \"536\": {\"frequency\": 1, \"value\": 536}, \"537\": {\"frequency\": 2, \"value\": 537}, \"538\": {\"frequency\": 4, \"value\": 538}, \"539\": {\"frequency\": 1, \"value\": 539}, \"540\": {\"frequency\": 3, \"value\": 540}, \"541\": {\"frequency\": 4, \"value\": 541}, \"542\": {\"frequency\": 1, \"value\": 542}, \"543\": {\"frequency\": 1, \"value\": 543}, \"544\": {\"frequency\": 1, \"value\": 544}, \"545\": {\"frequency\": 1, \"value\": 545}, \"546\": {\"frequency\": 1, \"value\": 546}, \"547\": {\"frequency\": 1, \"value\": 547}, \"548\": {\"frequency\": 1, \"value\": 548}, \"549\": {\"frequency\": 1, \"value\": 549}, \"550\": {\"frequency\": 1, \"value\": 550}, \"551\": {\"frequency\": 1, \"value\": 551}, \"552\": {\"frequency\": 1, \"value\": 552}, \"553\": {\"frequency\": 1, \"value\": 553}, \"554\": {\"frequency\": 1, \"value\": 554}, \"555\": {\"frequency\": 1, \"value\": 555}, \"556\": {\"frequency\": 1, \"value\": 556}, \"557\": {\"frequency\": 1, \"value\": 557}, \"558\": {\"frequency\": 1, \"value\": 558}, \"559\": {\"frequency\": 1, \"value\": 559}, \"560\": {\"frequency\": 3, \"value\": 560}, \"561\": {\"frequency\": 1, \"value\": 561}, \"562\": {\"frequency\": 1, \"value\": 562}, \"563\": {\"frequency\": 1, \"value\": 563}, \"564\": {\"frequency\": 2, \"value\": 564}, \"565\": {\"frequency\": 1, \"value\": 565}, \"566\": {\"frequency\": 3, \"value\": 566}, \"567\": {\"frequency\": 1, \"value\": 567}, \"568\": {\"frequency\": 1, \"value\": 568}, \"569\": {\"frequency\": 1, \"value\": 569}, \"570\": {\"frequency\": 1, \"value\": 570}, \"571\": {\"frequency\": 1, \"value\": 571}, \"572\": {\"frequency\": 1, \"value\": 572}, \"573\": {\"frequency\": 2, \"value\": 573}, \"574\": {\"frequency\": 1, \"value\": 574}, \"575\": {\"frequency\": 6, \"value\": 575}, \"576\": {\"frequency\": 1, \"value\": 576}, \"577\": {\"frequency\": 1, \"value\": 577}, \"578\": {\"frequency\": 1, \"value\": 578}, \"579\": {\"frequency\": 1, \"value\": 579}, \"580\": {\"frequency\": 1, \"value\": 580}, \"581\": {\"frequency\": 1, \"value\": 581}, \"582\": {\"frequency\": 1, \"value\": 582}, \"583\": {\"frequency\": 1, \"value\": 583}, \"584\": {\"frequency\": 1, \"value\": 584}, \"585\": {\"frequency\": 2, \"value\": 585}, \"586\": {\"frequency\": 1, \"value\": 586}, \"587\": {\"frequency\": 1, \"value\": 587}, \"588\": {\"frequency\": 1, \"value\": 588}, \"589\": {\"frequency\": 1, \"value\": 589}, \"590\": {\"frequency\": 1, \"value\": 590}, \"591\": {\"frequency\": 1, \"value\": 591}, \"592\": {\"frequency\": 1, \"value\": 592}, \"593\": {\"frequency\": 1, \"value\": 593}, \"594\": {\"frequency\": 1, \"value\": 594}, \"595\": {\"frequency\": 1, \"value\": 595}, \"596\": {\"frequency\": 1, \"value\": 596}, \"597\": {\"frequency\": 1, \"value\": 597}, \"598\": {\"frequency\": 1, \"value\": 598}, \"599\": {\"frequency\": 1, \"value\": 599}, \"600\": {\"frequency\": 1, \"value\": 600}, \"601\": {\"frequency\": 1, \"value\": 601}, \"602\": {\"frequency\": 1, \"value\": 602}, \"603\": {\"frequency\": 1, \"value\": 603}, \"604\": {\"frequency\": 8, \"value\": 604}, \"605\": {\"frequency\": 1, \"value\": 605}, \"606\": {\"frequency\": 1, \"value\": 606}, \"607\": {\"frequency\": 1, \"value\": 607}, \"608\": {\"frequency\": 1, \"value\": 608}, \"609\": {\"frequency\": 1, \"value\": 609}, \"610\": {\"frequency\": 1, \"value\": 610}, \"611\": {\"frequency\": 1, \"value\": 611}, \"612\": {\"frequency\": 1, \"value\": 612}, \"613\": {\"frequency\": 1, \"value\": 613}, \"614\": {\"frequency\": 1, \"value\": 614}, \"615\": {\"frequency\": 1, \"value\": 615}, \"616\": {\"frequency\": 1, \"value\": 616}, \"617\": {\"frequency\": 1, \"value\": 617}, \"618\": {\"frequency\": 1, \"value\": 618}, \"619\": {\"frequency\": 1, \"value\": 619}, \"620\": {\"frequency\": 1, \"value\": 620}, \"621\": {\"frequency\": 1, \"value\": 621}, \"622\": {\"frequency\": 1, \"value\": 622}, \"623\": {\"frequency\": 1, \"value\": 623}, \"624\": {\"frequency\": 1, \"value\": 624}, \"625\": {\"frequency\": 1, \"value\": 625}, \"626\": {\"frequency\": 1, \"value\": 626}, \"627\": {\"frequency\": 1, \"value\": 627}, \"628\": {\"frequency\": 1, \"value\": 628}, \"629\": {\"frequency\": 1, \"value\": 629}, \"630\": {\"frequency\": 1, \"value\": 630}, \"631\": {\"frequency\": 2, \"value\": 631}, \"632\": {\"frequency\": 1, \"value\": 632}, \"633\": {\"frequency\": 1, \"value\": 633}, \"634\": {\"frequency\": 1, \"value\": 634}, \"635\": {\"frequency\": 1, \"value\": 635}, \"636\": {\"frequency\": 1, \"value\": 636}, \"637\": {\"frequency\": 1, \"value\": 637}, \"638\": {\"frequency\": 1, \"value\": 638}, \"639\": {\"frequency\": 1, \"value\": 639}, \"640\": {\"frequency\": 2, \"value\": 640}, \"641\": {\"frequency\": 1, \"value\": 641}, \"642\": {\"frequency\": 1, \"value\": 642}, \"643\": {\"frequency\": 3, \"value\": 643}, \"644\": {\"frequency\": 1, \"value\": 644}, \"645\": {\"frequency\": 1, \"value\": 645}, \"646\": {\"frequency\": 1, \"value\": 646}, \"647\": {\"frequency\": 1, \"value\": 647}, \"648\": {\"frequency\": 1, \"value\": 648}, \"649\": {\"frequency\": 1, \"value\": 649}, \"650\": {\"frequency\": 1, \"value\": 650}, \"651\": {\"frequency\": 1, \"value\": 651}, \"652\": {\"frequency\": 1, \"value\": 652}, \"653\": {\"frequency\": 1, \"value\": 653}, \"654\": {\"frequency\": 1, \"value\": 654}, \"655\": {\"frequency\": 3, \"value\": 655}, \"656\": {\"frequency\": 1, \"value\": 656}, \"657\": {\"frequency\": 1, \"value\": 657}, \"658\": {\"frequency\": 15, \"value\": 658}, \"659\": {\"frequency\": 1, \"value\": 659}, \"660\": {\"frequency\": 1, \"value\": 660}, \"661\": {\"frequency\": 1, \"value\": 661}, \"662\": {\"frequency\": 2, \"value\": 662}, \"663\": {\"frequency\": 13, \"value\": 663}, \"664\": {\"frequency\": 1, \"value\": 664}, \"665\": {\"frequency\": 1, \"value\": 665}, \"666\": {\"frequency\": 1, \"value\": 666}, \"667\": {\"frequency\": 1, \"value\": 667}, \"668\": {\"frequency\": 1, \"value\": 668}, \"669\": {\"frequency\": 1, \"value\": 669}, \"670\": {\"frequency\": 1, \"value\": 670}, \"671\": {\"frequency\": 1, \"value\": 671}, \"672\": {\"frequency\": 1, \"value\": 672}, \"673\": {\"frequency\": 1, \"value\": 673}, \"674\": {\"frequency\": 1, \"value\": 674}, \"675\": {\"frequency\": 1, \"value\": 675}, \"676\": {\"frequency\": 1, \"value\": 676}, \"677\": {\"frequency\": 2, \"value\": 677}, \"678\": {\"frequency\": 1, \"value\": 678}, \"679\": {\"frequency\": 1, \"value\": 679}, \"680\": {\"frequency\": 1, \"value\": 680}, \"681\": {\"frequency\": 1, \"value\": 681}, \"682\": {\"frequency\": 1, \"value\": 682}, \"683\": {\"frequency\": 1, \"value\": 683}, \"684\": {\"frequency\": 1, \"value\": 684}, \"685\": {\"frequency\": 1, \"value\": 685}, \"686\": {\"frequency\": 1, \"value\": 686}, \"687\": {\"frequency\": 1, \"value\": 687}, \"688\": {\"frequency\": 1, \"value\": 688}, \"689\": {\"frequency\": 2, \"value\": 689}, \"690\": {\"frequency\": 1, \"value\": 690}, \"691\": {\"frequency\": 1, \"value\": 691}, \"692\": {\"frequency\": 1, \"value\": 692}, \"693\": {\"frequency\": 1, \"value\": 693}, \"694\": {\"frequency\": 1, \"value\": 694}, \"695\": {\"frequency\": 1, \"value\": 695}, \"696\": {\"frequency\": 1, \"value\": 696}, \"697\": {\"frequency\": 1, \"value\": 697}, \"698\": {\"frequency\": 1, \"value\": 698}, \"699\": {\"frequency\": 8, \"value\": 699}, \"700\": {\"frequency\": 1, \"value\": 700}, \"701\": {\"frequency\": 1, \"value\": 701}, \"702\": {\"frequency\": 1, \"value\": 702}, \"703\": {\"frequency\": 1, \"value\": 703}, \"704\": {\"frequency\": 2, \"value\": 704}, \"705\": {\"frequency\": 1, \"value\": 705}, \"706\": {\"frequency\": 4, \"value\": 706}, \"707\": {\"frequency\": 1, \"value\": 707}, \"708\": {\"frequency\": 1, \"value\": 708}, \"709\": {\"frequency\": 1, \"value\": 709}, \"710\": {\"frequency\": 1, \"value\": 710}, \"711\": {\"frequency\": 1, \"value\": 711}, \"712\": {\"frequency\": 1, \"value\": 712}, \"713\": {\"frequency\": 1, \"value\": 713}, \"714\": {\"frequency\": 1, \"value\": 714}, \"715\": {\"frequency\": 1, \"value\": 715}, \"716\": {\"frequency\": 1, \"value\": 716}, \"717\": {\"frequency\": 1, \"value\": 717}, \"718\": {\"frequency\": 1, \"value\": 718}, \"719\": {\"frequency\": 1, \"value\": 719}, \"720\": {\"frequency\": 1, \"value\": 720}, \"721\": {\"frequency\": 1, \"value\": 721}, \"722\": {\"frequency\": 1, \"value\": 722}, \"723\": {\"frequency\": 1, \"value\": 723}, \"724\": {\"frequency\": 1, \"value\": 724}, \"725\": {\"frequency\": 2, \"value\": 725}, \"726\": {\"frequency\": 6, \"value\": 726}, \"727\": {\"frequency\": 21, \"value\": 727}, \"728\": {\"frequency\": 1, \"value\": 728}, \"729\": {\"frequency\": 1, \"value\": 729}, \"730\": {\"frequency\": 4, \"value\": 730}, \"731\": {\"frequency\": 1, \"value\": 731}, \"732\": {\"frequency\": 9, \"value\": 732}, \"733\": {\"frequency\": 1, \"value\": 733}, \"734\": {\"frequency\": 1, \"value\": 734}, \"735\": {\"frequency\": 1, \"value\": 735}, \"736\": {\"frequency\": 1, \"value\": 736}, \"737\": {\"frequency\": 1, \"value\": 737}, \"738\": {\"frequency\": 2, \"value\": 738}, \"739\": {\"frequency\": 1, \"value\": 739}, \"740\": {\"frequency\": 1, \"value\": 740}, \"741\": {\"frequency\": 1, \"value\": 741}, \"742\": {\"frequency\": 1, \"value\": 742}, \"743\": {\"frequency\": 1, \"value\": 743}, \"744\": {\"frequency\": 1, \"value\": 744}, \"745\": {\"frequency\": 1, \"value\": 745}, \"746\": {\"frequency\": 2, \"value\": 746}, \"747\": {\"frequency\": 1, \"value\": 747}, \"748\": {\"frequency\": 1, \"value\": 748}, \"749\": {\"frequency\": 1, \"value\": 749}, \"750\": {\"frequency\": 1, \"value\": 750}, \"751\": {\"frequency\": 1, \"value\": 751}, \"752\": {\"frequency\": 1, \"value\": 752}, \"753\": {\"frequency\": 1, \"value\": 753}, \"754\": {\"frequency\": 1, \"value\": 754}, \"755\": {\"frequency\": 1, \"value\": 755}, \"756\": {\"frequency\": 1, \"value\": 756}, \"757\": {\"frequency\": 1, \"value\": 757}, \"758\": {\"frequency\": 1, \"value\": 758}, \"759\": {\"frequency\": 1, \"value\": 759}, \"760\": {\"frequency\": 1, \"value\": 760}, \"761\": {\"frequency\": 1, \"value\": 761}, \"762\": {\"frequency\": 1, \"value\": 762}, \"763\": {\"frequency\": 1, \"value\": 763}, \"764\": {\"frequency\": 1, \"value\": 764}, \"765\": {\"frequency\": 1, \"value\": 765}, \"766\": {\"frequency\": 1, \"value\": 766}, \"767\": {\"frequency\": 1, \"value\": 767}, \"768\": {\"frequency\": 1, \"value\": 768}, \"769\": {\"frequency\": 1, \"value\": 769}, \"770\": {\"frequency\": 1, \"value\": 770}, \"771\": {\"frequency\": 1, \"value\": 771}, \"772\": {\"frequency\": 1, \"value\": 772}, \"773\": {\"frequency\": 1, \"value\": 773}, \"774\": {\"frequency\": 1, \"value\": 774}, \"775\": {\"frequency\": 1, \"value\": 775}, \"776\": {\"frequency\": 1, \"value\": 776}, \"777\": {\"frequency\": 1, \"value\": 777}, \"778\": {\"frequency\": 1, \"value\": 778}, \"779\": {\"frequency\": 1, \"value\": 779}, \"780\": {\"frequency\": 2, \"value\": 780}, \"781\": {\"frequency\": 1, \"value\": 781}, \"782\": {\"frequency\": 1, \"value\": 782}, \"783\": {\"frequency\": 1, \"value\": 783}, \"784\": {\"frequency\": 1, \"value\": 784}, \"785\": {\"frequency\": 1, \"value\": 785}, \"786\": {\"frequency\": 1, \"value\": 786}, \"787\": {\"frequency\": 1, \"value\": 787}, \"788\": {\"frequency\": 1, \"value\": 788}, \"789\": {\"frequency\": 1, \"value\": 789}, \"790\": {\"frequency\": 1, \"value\": 790}, \"791\": {\"frequency\": 1, \"value\": 791}, \"792\": {\"frequency\": 1, \"value\": 792}, \"793\": {\"frequency\": 1, \"value\": 793}, \"794\": {\"frequency\": 1, \"value\": 794}, \"795\": {\"frequency\": 1, \"value\": 795}, \"796\": {\"frequency\": 1, \"value\": 796}, \"797\": {\"frequency\": 1, \"value\": 797}, \"798\": {\"frequency\": 1, \"value\": 798}, \"799\": {\"frequency\": 1, \"value\": 799}, \"800\": {\"frequency\": 1, \"value\": 800}, \"801\": {\"frequency\": 1, \"value\": 801}, \"802\": {\"frequency\": 12, \"value\": 802}, \"803\": {\"frequency\": 1, \"value\": 803}, \"804\": {\"frequency\": 1, \"value\": 804}, \"805\": {\"frequency\": 1, \"value\": 805}, \"806\": {\"frequency\": 2, \"value\": 806}, \"807\": {\"frequency\": 1, \"value\": 807}, \"808\": {\"frequency\": 1, \"value\": 808}, \"809\": {\"frequency\": 1, \"value\": 809}, \"810\": {\"frequency\": 1, \"value\": 810}, \"811\": {\"frequency\": 1, \"value\": 811}, \"812\": {\"frequency\": 1, \"value\": 812}, \"813\": {\"frequency\": 2, \"value\": 813}, \"814\": {\"frequency\": 1, \"value\": 814}, \"815\": {\"frequency\": 1, \"value\": 815}, \"816\": {\"frequency\": 5, \"value\": 816}, \"817\": {\"frequency\": 2, \"value\": 817}, \"818\": {\"frequency\": 1, \"value\": 818}, \"819\": {\"frequency\": 1, \"value\": 819}, \"820\": {\"frequency\": 1, \"value\": 820}, \"821\": {\"frequency\": 4, \"value\": 821}, \"822\": {\"frequency\": 1, \"value\": 822}, \"823\": {\"frequency\": 1, \"value\": 823}, \"824\": {\"frequency\": 1, \"value\": 824}, \"825\": {\"frequency\": 1, \"value\": 825}, \"826\": {\"frequency\": 1, \"value\": 826}, \"827\": {\"frequency\": 1, \"value\": 827}, \"828\": {\"frequency\": 1, \"value\": 828}, \"829\": {\"frequency\": 1, \"value\": 829}, \"830\": {\"frequency\": 1, \"value\": 830}, \"831\": {\"frequency\": 1, \"value\": 831}, \"832\": {\"frequency\": 1, \"value\": 832}, \"833\": {\"frequency\": 1, \"value\": 833}, \"834\": {\"frequency\": 1, \"value\": 834}, \"835\": {\"frequency\": 1, \"value\": 835}, \"836\": {\"frequency\": 1, \"value\": 836}, \"837\": {\"frequency\": 1, \"value\": 837}, \"838\": {\"frequency\": 1, \"value\": 838}, \"839\": {\"frequency\": 1, \"value\": 839}, \"840\": {\"frequency\": 2, \"value\": 840}, \"841\": {\"frequency\": 1, \"value\": 841}, \"842\": {\"frequency\": 3, \"value\": 842}, \"843\": {\"frequency\": 1, \"value\": 843}, \"844\": {\"frequency\": 1, \"value\": 844}, \"845\": {\"frequency\": 1, \"value\": 845}, \"846\": {\"frequency\": 2, \"value\": 846}, \"847\": {\"frequency\": 1, \"value\": 847}, \"848\": {\"frequency\": 1, \"value\": 848}, \"849\": {\"frequency\": 1, \"value\": 849}, \"850\": {\"frequency\": 1, \"value\": 850}, \"851\": {\"frequency\": 1, \"value\": 851}, \"852\": {\"frequency\": 1, \"value\": 852}, \"853\": {\"frequency\": 12, \"value\": 853}, \"854\": {\"frequency\": 1, \"value\": 854}, \"855\": {\"frequency\": 1, \"value\": 855}, \"856\": {\"frequency\": 1, \"value\": 856}, \"857\": {\"frequency\": 1, \"value\": 857}, \"858\": {\"frequency\": 1, \"value\": 858}, \"859\": {\"frequency\": 1, \"value\": 859}, \"860\": {\"frequency\": 1, \"value\": 860}, \"861\": {\"frequency\": 1, \"value\": 861}, \"862\": {\"frequency\": 1, \"value\": 862}, \"863\": {\"frequency\": 1, \"value\": 863}, \"864\": {\"frequency\": 1, \"value\": 864}, \"865\": {\"frequency\": 1, \"value\": 865}, \"866\": {\"frequency\": 1, \"value\": 866}, \"867\": {\"frequency\": 12, \"value\": 867}, \"868\": {\"frequency\": 1, \"value\": 868}, \"869\": {\"frequency\": 1, \"value\": 869}, \"870\": {\"frequency\": 1, \"value\": 870}, \"871\": {\"frequency\": 1, \"value\": 871}, \"872\": {\"frequency\": 1, \"value\": 872}, \"873\": {\"frequency\": 1, \"value\": 873}, \"874\": {\"frequency\": 1, \"value\": 874}, \"875\": {\"frequency\": 1, \"value\": 875}, \"876\": {\"frequency\": 1, \"value\": 876}, \"877\": {\"frequency\": 1, \"value\": 877}, \"878\": {\"frequency\": 1, \"value\": 878}, \"879\": {\"frequency\": 1, \"value\": 879}, \"880\": {\"frequency\": 1, \"value\": 880}, \"881\": {\"frequency\": 1, \"value\": 881}, \"882\": {\"frequency\": 1, \"value\": 882}, \"883\": {\"frequency\": 1, \"value\": 883}, \"884\": {\"frequency\": 1, \"value\": 884}, \"885\": {\"frequency\": 1, \"value\": 885}, \"886\": {\"frequency\": 1, \"value\": 886}, \"887\": {\"frequency\": 1, \"value\": 887}, \"888\": {\"frequency\": 1, \"value\": 888}, \"889\": {\"frequency\": 1, \"value\": 889}, \"890\": {\"frequency\": 1, \"value\": 890}, \"891\": {\"frequency\": 1, \"value\": 891}, \"892\": {\"frequency\": 1, \"value\": 892}, \"893\": {\"frequency\": 1, \"value\": 893}, \"894\": {\"frequency\": 1, \"value\": 894}, \"895\": {\"frequency\": 1, \"value\": 895}, \"896\": {\"frequency\": 1, \"value\": 896}, \"897\": {\"frequency\": 1, \"value\": 897}, \"898\": {\"frequency\": 1, \"value\": 898}, \"899\": {\"frequency\": 1, \"value\": 899}, \"900\": {\"frequency\": 1, \"value\": 900}, \"901\": {\"frequency\": 1, \"value\": 901}, \"902\": {\"frequency\": 1, \"value\": 902}, \"903\": {\"frequency\": 1, \"value\": 903}, \"904\": {\"frequency\": 1, \"value\": 904}, \"905\": {\"frequency\": 1, \"value\": 905}, \"906\": {\"frequency\": 1, \"value\": 906}, \"907\": {\"frequency\": 1, \"value\": 907}, \"908\": {\"frequency\": 1, \"value\": 908}, \"909\": {\"frequency\": 1, \"value\": 909}, \"910\": {\"frequency\": 1, \"value\": 910}, \"911\": {\"frequency\": 1, \"value\": 911}, \"912\": {\"frequency\": 1, \"value\": 912}, \"913\": {\"frequency\": 3, \"value\": 913}, \"914\": {\"frequency\": 1, \"value\": 914}, \"915\": {\"frequency\": 1, \"value\": 915}, \"916\": {\"frequency\": 1, \"value\": 916}, \"917\": {\"frequency\": 1, \"value\": 917}, \"918\": {\"frequency\": 1, \"value\": 918}, \"919\": {\"frequency\": 1, \"value\": 919}, \"920\": {\"frequency\": 1, \"value\": 920}, \"921\": {\"frequency\": 1, \"value\": 921}, \"922\": {\"frequency\": 1, \"value\": 922}, \"923\": {\"frequency\": 1, \"value\": 923}, \"924\": {\"frequency\": 1, \"value\": 924}, \"925\": {\"frequency\": 1, \"value\": 925}, \"926\": {\"frequency\": 1, \"value\": 926}, \"927\": {\"frequency\": 1, \"value\": 927}, \"928\": {\"frequency\": 1, \"value\": 928}, \"929\": {\"frequency\": 1, \"value\": 929}, \"930\": {\"frequency\": 1, \"value\": 930}, \"931\": {\"frequency\": 1, \"value\": 931}, \"932\": {\"frequency\": 1, \"value\": 932}, \"933\": {\"frequency\": 1, \"value\": 933}, \"934\": {\"frequency\": 1, \"value\": 934}, \"935\": {\"frequency\": 1, \"value\": 935}, \"936\": {\"frequency\": 1, \"value\": 936}, \"937\": {\"frequency\": 1, \"value\": 937}, \"938\": {\"frequency\": 1, \"value\": 938}, \"939\": {\"frequency\": 1, \"value\": 939}, \"940\": {\"frequency\": 1, \"value\": 940}, \"941\": {\"frequency\": 1, \"value\": 941}, \"942\": {\"frequency\": 1, \"value\": 942}, \"943\": {\"frequency\": 1, \"value\": 943}, \"944\": {\"frequency\": 1, \"value\": 944}, \"945\": {\"frequency\": 1, \"value\": 945}, \"946\": {\"frequency\": 1, \"value\": 946}, \"947\": {\"frequency\": 1, \"value\": 947}, \"948\": {\"frequency\": 1, \"value\": 948}, \"949\": {\"frequency\": 1, \"value\": 949}, \"950\": {\"frequency\": 1, \"value\": 950}, \"951\": {\"frequency\": 1, \"value\": 951}, \"952\": {\"frequency\": 1, \"value\": 952}, \"953\": {\"frequency\": 1, \"value\": 953}, \"954\": {\"frequency\": 1, \"value\": 954}, \"955\": {\"frequency\": 1, \"value\": 955}, \"956\": {\"frequency\": 1, \"value\": 956}, \"957\": {\"frequency\": 1, \"value\": 957}, \"958\": {\"frequency\": 1, \"value\": 958}, \"959\": {\"frequency\": 1, \"value\": 959}, \"960\": {\"frequency\": 1, \"value\": 960}, \"961\": {\"frequency\": 1, \"value\": 961}, \"962\": {\"frequency\": 1, \"value\": 962}, \"963\": {\"frequency\": 1, \"value\": 963}, \"964\": {\"frequency\": 1, \"value\": 964}, \"965\": {\"frequency\": 1, \"value\": 965}, \"966\": {\"frequency\": 1, \"value\": 966}, \"967\": {\"frequency\": 1, \"value\": 967}, \"968\": {\"frequency\": 1, \"value\": 968}, \"969\": {\"frequency\": 1, \"value\": 969}, \"970\": {\"frequency\": 1, \"value\": 970}, \"971\": {\"frequency\": 1, \"value\": 971}, \"972\": {\"frequency\": 1, \"value\": 972}, \"973\": {\"frequency\": 1, \"value\": 973}, \"974\": {\"frequency\": 1, \"value\": 974}, \"975\": {\"frequency\": 1, \"value\": 975}, \"976\": {\"frequency\": 1, \"value\": 976}, \"977\": {\"frequency\": 1, \"value\": 977}, \"978\": {\"frequency\": 1, \"value\": 978}, \"979\": {\"frequency\": 1, \"value\": 979}, \"980\": {\"frequency\": 1, \"value\": 980}, \"981\": {\"frequency\": 1, \"value\": 981}, \"982\": {\"frequency\": 1, \"value\": 982}, \"983\": {\"frequency\": 1, \"value\": 983}, \"984\": {\"frequency\": 1, \"value\": 984}, \"985\": {\"frequency\": 1, \"value\": 985}, \"986\": {\"frequency\": 1, \"value\": 986}, \"987\": {\"frequency\": 1, \"value\": 987}, \"988\": {\"frequency\": 1, \"value\": 988}, \"989\": {\"frequency\": 1, \"value\": 989}, \"990\": {\"frequency\": 1, \"value\": 990}, \"991\": {\"frequency\": 1, \"value\": 991}, \"992\": {\"frequency\": 1, \"value\": 992}, \"993\": {\"frequency\": 1, \"value\": 993}, \"994\": {\"frequency\": 1, \"value\": 994}, \"995\": {\"frequency\": 1, \"value\": 995}, \"996\": {\"frequency\": 1, \"value\": 996}, \"997\": {\"frequency\": 1, \"value\": 997}, \"998\": {\"frequency\": 1, \"value\": 998}, \"999\": {\"frequency\": 1, \"value\": 999}, \"1000\": {\"frequency\": 1, \"value\": 1000}, \"1001\": {\"frequency\": 1, \"value\": 1001}, \"1002\": {\"frequency\": 2, \"value\": 1002}, \"1003\": {\"frequency\": 1, \"value\": 1003}, \"1004\": {\"frequency\": 1, \"value\": 1004}, \"1005\": {\"frequency\": 1, \"value\": 1005}, \"1006\": {\"frequency\": 1, \"value\": 1006}, \"1007\": {\"frequency\": 1, \"value\": 1007}, \"1008\": {\"frequency\": 1, \"value\": 1008}, \"1009\": {\"frequency\": 1, \"value\": 1009}, \"1010\": {\"frequency\": 1, \"value\": 1010}, \"1011\": {\"frequency\": 2, \"value\": 1011}, \"1012\": {\"frequency\": 1, \"value\": 1012}, \"1013\": {\"frequency\": 1, \"value\": 1013}, \"1014\": {\"frequency\": 1, \"value\": 1014}, \"1015\": {\"frequency\": 1, \"value\": 1015}, \"1016\": {\"frequency\": 1, \"value\": 1016}, \"1017\": {\"frequency\": 1, \"value\": 1017}, \"1018\": {\"frequency\": 1, \"value\": 1018}, \"1019\": {\"frequency\": 1, \"value\": 1019}, \"1020\": {\"frequency\": 1, \"value\": 1020}, \"1021\": {\"frequency\": 1, \"value\": 1021}, \"1022\": {\"frequency\": 1, \"value\": 1022}, \"1023\": {\"frequency\": 1, \"value\": 1023}, \"1024\": {\"frequency\": 1, \"value\": 1024}, \"1025\": {\"frequency\": 1, \"value\": 1025}, \"1026\": {\"frequency\": 1, \"value\": 1026}, \"1027\": {\"frequency\": 1, \"value\": 1027}, \"1028\": {\"frequency\": 1, \"value\": 1028}, \"1029\": {\"frequency\": 1, \"value\": 1029}, \"1030\": {\"frequency\": 1, \"value\": 1030}, \"1031\": {\"frequency\": 1, \"value\": 1031}, \"1032\": {\"frequency\": 1, \"value\": 1032}, \"1033\": {\"frequency\": 1, \"value\": 1033}, \"1034\": {\"frequency\": 1, \"value\": 1034}, \"1035\": {\"frequency\": 1, \"value\": 1035}, \"1036\": {\"frequency\": 1, \"value\": 1036}, \"1037\": {\"frequency\": 1, \"value\": 1037}, \"1038\": {\"frequency\": 1, \"value\": 1038}, \"1039\": {\"frequency\": 1, \"value\": 1039}, \"1040\": {\"frequency\": 5, \"value\": 1040}, \"1041\": {\"frequency\": 4, \"value\": 1041}, \"1042\": {\"frequency\": 1, \"value\": 1042}, \"1043\": {\"frequency\": 1, \"value\": 1043}, \"1044\": {\"frequency\": 2, \"value\": 1044}, \"1045\": {\"frequency\": 1, \"value\": 1045}, \"1046\": {\"frequency\": 1, \"value\": 1046}, \"1047\": {\"frequency\": 1, \"value\": 1047}, \"1048\": {\"frequency\": 1, \"value\": 1048}, \"1049\": {\"frequency\": 1, \"value\": 1049}, \"1050\": {\"frequency\": 1, \"value\": 1050}, \"1051\": {\"frequency\": 1, \"value\": 1051}, \"1052\": {\"frequency\": 1, \"value\": 1052}, \"1053\": {\"frequency\": 1, \"value\": 1053}, \"1054\": {\"frequency\": 1, \"value\": 1054}, \"1055\": {\"frequency\": 2, \"value\": 1055}, \"1056\": {\"frequency\": 1, \"value\": 1056}, \"1057\": {\"frequency\": 1, \"value\": 1057}, \"1058\": {\"frequency\": 1, \"value\": 1058}, \"1059\": {\"frequency\": 1, \"value\": 1059}, \"1060\": {\"frequency\": 2, \"value\": 1060}, \"1061\": {\"frequency\": 1, \"value\": 1061}, \"1062\": {\"frequency\": 1, \"value\": 1062}, \"1063\": {\"frequency\": 1, \"value\": 1063}, \"1064\": {\"frequency\": 1, \"value\": 1064}, \"1065\": {\"frequency\": 1, \"value\": 1065}, \"1066\": {\"frequency\": 1, \"value\": 1066}, \"1067\": {\"frequency\": 1, \"value\": 1067}, \"1068\": {\"frequency\": 1, \"value\": 1068}, \"1069\": {\"frequency\": 1, \"value\": 1069}, \"1070\": {\"frequency\": 1, \"value\": 1070}, \"1071\": {\"frequency\": 1, \"value\": 1071}, \"1072\": {\"frequency\": 1, \"value\": 1072}, \"1073\": {\"frequency\": 1, \"value\": 1073}, \"1074\": {\"frequency\": 1, \"value\": 1074}, \"1075\": {\"frequency\": 1, \"value\": 1075}, \"1076\": {\"frequency\": 1, \"value\": 1076}, \"1077\": {\"frequency\": 1, \"value\": 1077}, \"1078\": {\"frequency\": 1, \"value\": 1078}, \"1079\": {\"frequency\": 1, \"value\": 1079}, \"1080\": {\"frequency\": 1, \"value\": 1080}, \"1081\": {\"frequency\": 1, \"value\": 1081}, \"1082\": {\"frequency\": 1, \"value\": 1082}, \"1083\": {\"frequency\": 1, \"value\": 1083}, \"1084\": {\"frequency\": 1, \"value\": 1084}, \"1085\": {\"frequency\": 1, \"value\": 1085}, \"1086\": {\"frequency\": 1, \"value\": 1086}, \"1087\": {\"frequency\": 1, \"value\": 1087}, \"1088\": {\"frequency\": 1, \"value\": 1088}, \"1089\": {\"frequency\": 1, \"value\": 1089}, \"1090\": {\"frequency\": 1, \"value\": 1090}, \"1091\": {\"frequency\": 1, \"value\": 1091}, \"1092\": {\"frequency\": 1, \"value\": 1092}, \"1093\": {\"frequency\": 1, \"value\": 1093}, \"1094\": {\"frequency\": 1, \"value\": 1094}, \"1095\": {\"frequency\": 1, \"value\": 1095}, \"1096\": {\"frequency\": 1, \"value\": 1096}, \"1097\": {\"frequency\": 1, \"value\": 1097}, \"1098\": {\"frequency\": 1, \"value\": 1098}, \"1099\": {\"frequency\": 2, \"value\": 1099}, \"1100\": {\"frequency\": 5, \"value\": 1100}, \"1101\": {\"frequency\": 4, \"value\": 1101}, \"1102\": {\"frequency\": 3, \"value\": 1102}, \"1103\": {\"frequency\": 9, \"value\": 1103}, \"1104\": {\"frequency\": 4, \"value\": 1104}, \"1105\": {\"frequency\": 1, \"value\": 1105}, \"1106\": {\"frequency\": 1, \"value\": 1106}, \"1107\": {\"frequency\": 1, \"value\": 1107}, \"1108\": {\"frequency\": 1, \"value\": 1108}, \"1109\": {\"frequency\": 1, \"value\": 1109}, \"1110\": {\"frequency\": 1, \"value\": 1110}, \"1111\": {\"frequency\": 1, \"value\": 1111}, \"1112\": {\"frequency\": 1, \"value\": 1112}, \"1113\": {\"frequency\": 1, \"value\": 1113}, \"1114\": {\"frequency\": 1, \"value\": 1114}, \"1115\": {\"frequency\": 1, \"value\": 1115}, \"1116\": {\"frequency\": 1, \"value\": 1116}, \"1117\": {\"frequency\": 2, \"value\": 1117}, \"1118\": {\"frequency\": 1, \"value\": 1118}, \"1119\": {\"frequency\": 1, \"value\": 1119}, \"1120\": {\"frequency\": 12, \"value\": 1120}, \"1121\": {\"frequency\": 4, \"value\": 1121}, \"1122\": {\"frequency\": 1, \"value\": 1122}, \"1123\": {\"frequency\": 1, \"value\": 1123}, \"1124\": {\"frequency\": 1, \"value\": 1124}, \"1125\": {\"frequency\": 1, \"value\": 1125}, \"1126\": {\"frequency\": 1, \"value\": 1126}, \"1127\": {\"frequency\": 1, \"value\": 1127}, \"1128\": {\"frequency\": 15, \"value\": 1128}, \"1129\": {\"frequency\": 8, \"value\": 1129}, \"1130\": {\"frequency\": 1, \"value\": 1130}, \"1131\": {\"frequency\": 5, \"value\": 1131}, \"1132\": {\"frequency\": 3, \"value\": 1132}, \"1133\": {\"frequency\": 2, \"value\": 1133}, \"1134\": {\"frequency\": 6, \"value\": 1134}, \"1135\": {\"frequency\": 1, \"value\": 1135}, \"1136\": {\"frequency\": 4, \"value\": 1136}, \"1137\": {\"frequency\": 1, \"value\": 1137}, \"1138\": {\"frequency\": 1, \"value\": 1138}, \"1139\": {\"frequency\": 1, \"value\": 1139}, \"1140\": {\"frequency\": 1, \"value\": 1140}, \"1141\": {\"frequency\": 5, \"value\": 1141}, \"1142\": {\"frequency\": 3, \"value\": 1142}, \"1143\": {\"frequency\": 1, \"value\": 1143}, \"1144\": {\"frequency\": 1, \"value\": 1144}, \"1145\": {\"frequency\": 1, \"value\": 1145}, \"1146\": {\"frequency\": 1, \"value\": 1146}, \"1147\": {\"frequency\": 1, \"value\": 1147}, \"1148\": {\"frequency\": 1, \"value\": 1148}, \"1149\": {\"frequency\": 1, \"value\": 1149}, \"1150\": {\"frequency\": 1, \"value\": 1150}, \"1151\": {\"frequency\": 1, \"value\": 1151}, \"1152\": {\"frequency\": 1, \"value\": 1152}, \"1153\": {\"frequency\": 1, \"value\": 1153}, \"1154\": {\"frequency\": 1, \"value\": 1154}, \"1155\": {\"frequency\": 1, \"value\": 1155}, \"1156\": {\"frequency\": 1, \"value\": 1156}, \"1157\": {\"frequency\": 1, \"value\": 1157}, \"1158\": {\"frequency\": 2, \"value\": 1158}, \"1159\": {\"frequency\": 1, \"value\": 1159}, \"1160\": {\"frequency\": 1, \"value\": 1160}, \"1161\": {\"frequency\": 1, \"value\": 1161}, \"1162\": {\"frequency\": 3, \"value\": 1162}, \"1163\": {\"frequency\": 13, \"value\": 1163}, \"1164\": {\"frequency\": 2, \"value\": 1164}, \"1165\": {\"frequency\": 1, \"value\": 1165}, \"1166\": {\"frequency\": 1, \"value\": 1166}, \"1167\": {\"frequency\": 1, \"value\": 1167}, \"1168\": {\"frequency\": 1, \"value\": 1168}, \"1169\": {\"frequency\": 4, \"value\": 1169}, \"1170\": {\"frequency\": 4, \"value\": 1170}, \"1171\": {\"frequency\": 5, \"value\": 1171}, \"1172\": {\"frequency\": 1, \"value\": 1172}, \"1173\": {\"frequency\": 1, \"value\": 1173}, \"1174\": {\"frequency\": 1, \"value\": 1174}, \"1175\": {\"frequency\": 1, \"value\": 1175}, \"1176\": {\"frequency\": 1, \"value\": 1176}, \"1177\": {\"frequency\": 1, \"value\": 1177}, \"1178\": {\"frequency\": 2, \"value\": 1178}, \"1179\": {\"frequency\": 1, \"value\": 1179}, \"1180\": {\"frequency\": 20, \"value\": 1180}, \"1181\": {\"frequency\": 2, \"value\": 1181}, \"1182\": {\"frequency\": 1, \"value\": 1182}, \"1183\": {\"frequency\": 1, \"value\": 1183}, \"1184\": {\"frequency\": 3, \"value\": 1184}, \"1185\": {\"frequency\": 4, \"value\": 1185}, \"1186\": {\"frequency\": 1, \"value\": 1186}, \"1187\": {\"frequency\": 4, \"value\": 1187}, \"1188\": {\"frequency\": 5, \"value\": 1188}, \"1189\": {\"frequency\": 1, \"value\": 1189}, \"1190\": {\"frequency\": 10, \"value\": 1190}, \"1191\": {\"frequency\": 3, \"value\": 1191}, \"1192\": {\"frequency\": 1, \"value\": 1192}, \"1193\": {\"frequency\": 6, \"value\": 1193}, \"1194\": {\"frequency\": 6, \"value\": 1194}, \"1195\": {\"frequency\": 4, \"value\": 1195}, \"1196\": {\"frequency\": 5, \"value\": 1196}, \"1197\": {\"frequency\": 1, \"value\": 1197}, \"1198\": {\"frequency\": 1, \"value\": 1198}, \"1199\": {\"frequency\": 4, \"value\": 1199}, \"1200\": {\"frequency\": 1, \"value\": 1200}, \"1201\": {\"frequency\": 1, \"value\": 1201}, \"1202\": {\"frequency\": 1, \"value\": 1202}, \"1203\": {\"frequency\": 1, \"value\": 1203}, \"1204\": {\"frequency\": 1, \"value\": 1204}, \"1205\": {\"frequency\": 5, \"value\": 1205}, \"1206\": {\"frequency\": 1, \"value\": 1206}, \"1207\": {\"frequency\": 3, \"value\": 1207}, \"1208\": {\"frequency\": 1, \"value\": 1208}, \"1209\": {\"frequency\": 1, \"value\": 1209}, \"1210\": {\"frequency\": 1, \"value\": 1210}, \"1211\": {\"frequency\": 6, \"value\": 1211}, \"1212\": {\"frequency\": 1, \"value\": 1212}, \"1213\": {\"frequency\": 1, \"value\": 1213}, \"1214\": {\"frequency\": 1, \"value\": 1214}, \"1215\": {\"frequency\": 1, \"value\": 1215}, \"1216\": {\"frequency\": 9, \"value\": 1216}, \"1217\": {\"frequency\": 3, \"value\": 1217}, \"1218\": {\"frequency\": 1, \"value\": 1218}, \"1219\": {\"frequency\": 3, \"value\": 1219}, \"1220\": {\"frequency\": 1, \"value\": 1220}, \"1221\": {\"frequency\": 4, \"value\": 1221}, \"1222\": {\"frequency\": 4, \"value\": 1222}, \"1223\": {\"frequency\": 1, \"value\": 1223}, \"1224\": {\"frequency\": 1, \"value\": 1224}, \"1225\": {\"frequency\": 1, \"value\": 1225}, \"1226\": {\"frequency\": 1, \"value\": 1226}, \"1227\": {\"frequency\": 1, \"value\": 1227}, \"1228\": {\"frequency\": 3, \"value\": 1228}, \"1229\": {\"frequency\": 2, \"value\": 1229}, \"1230\": {\"frequency\": 7, \"value\": 1230}, \"1231\": {\"frequency\": 1, \"value\": 1231}, \"1232\": {\"frequency\": 1, \"value\": 1232}, \"1233\": {\"frequency\": 4, \"value\": 1233}, \"1234\": {\"frequency\": 1, \"value\": 1234}, \"1235\": {\"frequency\": 2, \"value\": 1235}, \"1236\": {\"frequency\": 1, \"value\": 1236}, \"1237\": {\"frequency\": 1, \"value\": 1237}, \"1238\": {\"frequency\": 1, \"value\": 1238}, \"1239\": {\"frequency\": 1, \"value\": 1239}, \"1240\": {\"frequency\": 4, \"value\": 1240}, \"1241\": {\"frequency\": 1, \"value\": 1241}, \"1242\": {\"frequency\": 2, \"value\": 1242}, \"1243\": {\"frequency\": 2, \"value\": 1243}, \"1244\": {\"frequency\": 1, \"value\": 1244}, \"1245\": {\"frequency\": 1, \"value\": 1245}, \"1246\": {\"frequency\": 1, \"value\": 1246}, \"1247\": {\"frequency\": 2, \"value\": 1247}, \"1248\": {\"frequency\": 1, \"value\": 1248}, \"1249\": {\"frequency\": 1, \"value\": 1249}, \"1250\": {\"frequency\": 2, \"value\": 1250}, \"1251\": {\"frequency\": 2, \"value\": 1251}, \"1252\": {\"frequency\": 1, \"value\": 1252}, \"1253\": {\"frequency\": 2, \"value\": 1253}, \"1254\": {\"frequency\": 1, \"value\": 1254}, \"1255\": {\"frequency\": 1, \"value\": 1255}, \"1256\": {\"frequency\": 1, \"value\": 1256}, \"1257\": {\"frequency\": 1, \"value\": 1257}, \"1258\": {\"frequency\": 1, \"value\": 1258}, \"1259\": {\"frequency\": 6, \"value\": 1259}, \"1260\": {\"frequency\": 1, \"value\": 1260}, \"1261\": {\"frequency\": 1, \"value\": 1261}, \"1262\": {\"frequency\": 10, \"value\": 1262}, \"1263\": {\"frequency\": 1, \"value\": 1263}, \"1264\": {\"frequency\": 1, \"value\": 1264}, \"1265\": {\"frequency\": 1, \"value\": 1265}, \"1266\": {\"frequency\": 1, \"value\": 1266}, \"1267\": {\"frequency\": 1, \"value\": 1267}, \"1268\": {\"frequency\": 2, \"value\": 1268}, \"1269\": {\"frequency\": 1, \"value\": 1269}, \"1270\": {\"frequency\": 6, \"value\": 1270}, \"1271\": {\"frequency\": 6, \"value\": 1271}, \"1272\": {\"frequency\": 3, \"value\": 1272}, \"1273\": {\"frequency\": 1, \"value\": 1273}, \"1274\": {\"frequency\": 1, \"value\": 1274}, \"1275\": {\"frequency\": 1, \"value\": 1275}, \"1276\": {\"frequency\": 1, \"value\": 1276}, \"1277\": {\"frequency\": 1, \"value\": 1277}, \"1278\": {\"frequency\": 1, \"value\": 1278}, \"1279\": {\"frequency\": 1, \"value\": 1279}, \"1280\": {\"frequency\": 1, \"value\": 1280}, \"1281\": {\"frequency\": 1, \"value\": 1281}, \"1282\": {\"frequency\": 1, \"value\": 1282}, \"1283\": {\"frequency\": 6, \"value\": 1283}, \"1284\": {\"frequency\": 1, \"value\": 1284}, \"1285\": {\"frequency\": 7, \"value\": 1285}, \"1286\": {\"frequency\": 2, \"value\": 1286}, \"1287\": {\"frequency\": 1, \"value\": 1287}, \"1288\": {\"frequency\": 1, \"value\": 1288}, \"1289\": {\"frequency\": 1, \"value\": 1289}, \"1290\": {\"frequency\": 1, \"value\": 1290}, \"1291\": {\"frequency\": 10, \"value\": 1291}, \"1292\": {\"frequency\": 1, \"value\": 1292}, \"1293\": {\"frequency\": 1, \"value\": 1293}, \"1294\": {\"frequency\": 1, \"value\": 1294}, \"1295\": {\"frequency\": 1, \"value\": 1295}, \"1296\": {\"frequency\": 1, \"value\": 1296}, \"1297\": {\"frequency\": 1, \"value\": 1297}, \"1298\": {\"frequency\": 1, \"value\": 1298}, \"1299\": {\"frequency\": 1, \"value\": 1299}, \"1300\": {\"frequency\": 5, \"value\": 1300}, \"1301\": {\"frequency\": 2, \"value\": 1301}, \"1302\": {\"frequency\": 1, \"value\": 1302}, \"1303\": {\"frequency\": 1, \"value\": 1303}, \"1304\": {\"frequency\": 1, \"value\": 1304}, \"1305\": {\"frequency\": 1, \"value\": 1305}, \"1306\": {\"frequency\": 2, \"value\": 1306}, \"1307\": {\"frequency\": 1, \"value\": 1307}, \"1308\": {\"frequency\": 1, \"value\": 1308}, \"1309\": {\"frequency\": 1, \"value\": 1309}, \"1310\": {\"frequency\": 2, \"value\": 1310}, \"1311\": {\"frequency\": 1, \"value\": 1311}, \"1312\": {\"frequency\": 1, \"value\": 1312}, \"1313\": {\"frequency\": 1, \"value\": 1313}, \"1314\": {\"frequency\": 1, \"value\": 1314}, \"1315\": {\"frequency\": 1, \"value\": 1315}, \"1316\": {\"frequency\": 4, \"value\": 1316}, \"1317\": {\"frequency\": 1, \"value\": 1317}, \"1318\": {\"frequency\": 1, \"value\": 1318}, \"1319\": {\"frequency\": 1, \"value\": 1319}, \"1320\": {\"frequency\": 1, \"value\": 1320}, \"1321\": {\"frequency\": 1, \"value\": 1321}, \"1322\": {\"frequency\": 1, \"value\": 1322}, \"1323\": {\"frequency\": 1, \"value\": 1323}, \"1324\": {\"frequency\": 1, \"value\": 1324}, \"1325\": {\"frequency\": 1, \"value\": 1325}, \"1326\": {\"frequency\": 1, \"value\": 1326}, \"1327\": {\"frequency\": 1, \"value\": 1327}, \"1328\": {\"frequency\": 3, \"value\": 1328}, \"1329\": {\"frequency\": 1, \"value\": 1329}, \"1330\": {\"frequency\": 1, \"value\": 1330}, \"1331\": {\"frequency\": 2, \"value\": 1331}, \"1332\": {\"frequency\": 1, \"value\": 1332}, \"1333\": {\"frequency\": 1, \"value\": 1333}, \"1334\": {\"frequency\": 1, \"value\": 1334}, \"1335\": {\"frequency\": 1, \"value\": 1335}, \"1336\": {\"frequency\": 1, \"value\": 1336}, \"1337\": {\"frequency\": 1, \"value\": 1337}, \"1338\": {\"frequency\": 1, \"value\": 1338}, \"1339\": {\"frequency\": 1, \"value\": 1339}, \"1340\": {\"frequency\": 1, \"value\": 1340}, \"1341\": {\"frequency\": 1, \"value\": 1341}, \"1342\": {\"frequency\": 1, \"value\": 1342}, \"1343\": {\"frequency\": 1, \"value\": 1343}, \"1344\": {\"frequency\": 1, \"value\": 1344}, \"1345\": {\"frequency\": 1, \"value\": 1345}, \"1346\": {\"frequency\": 1, \"value\": 1346}, \"1347\": {\"frequency\": 1, \"value\": 1347}, \"1348\": {\"frequency\": 1, \"value\": 1348}, \"1349\": {\"frequency\": 1, \"value\": 1349}, \"1350\": {\"frequency\": 1, \"value\": 1350}, \"1351\": {\"frequency\": 1, \"value\": 1351}, \"1352\": {\"frequency\": 1, \"value\": 1352}, \"1353\": {\"frequency\": 1, \"value\": 1353}, \"1354\": {\"frequency\": 1, \"value\": 1354}, \"1355\": {\"frequency\": 1, \"value\": 1355}, \"1356\": {\"frequency\": 1, \"value\": 1356}, \"1357\": {\"frequency\": 1, \"value\": 1357}, \"1358\": {\"frequency\": 1, \"value\": 1358}, \"1359\": {\"frequency\": 1, \"value\": 1359}, \"1360\": {\"frequency\": 1, \"value\": 1360}, \"1361\": {\"frequency\": 1, \"value\": 1361}, \"1362\": {\"frequency\": 1, \"value\": 1362}, \"1363\": {\"frequency\": 1, \"value\": 1363}, \"1364\": {\"frequency\": 1, \"value\": 1364}, \"1365\": {\"frequency\": 1, \"value\": 1365}, \"1366\": {\"frequency\": 2, \"value\": 1366}, \"1367\": {\"frequency\": 1, \"value\": 1367}, \"1368\": {\"frequency\": 1, \"value\": 1368}, \"1369\": {\"frequency\": 1, \"value\": 1369}, \"1370\": {\"frequency\": 1, \"value\": 1370}, \"1371\": {\"frequency\": 1, \"value\": 1371}, \"1372\": {\"frequency\": 1, \"value\": 1372}, \"1373\": {\"frequency\": 1, \"value\": 1373}, \"1374\": {\"frequency\": 1, \"value\": 1374}, \"1375\": {\"frequency\": 1, \"value\": 1375}, \"1376\": {\"frequency\": 1, \"value\": 1376}, \"1377\": {\"frequency\": 2, \"value\": 1377}, \"1378\": {\"frequency\": 1, \"value\": 1378}, \"1379\": {\"frequency\": 1, \"value\": 1379}, \"1380\": {\"frequency\": 1, \"value\": 1380}, \"1381\": {\"frequency\": 1, \"value\": 1381}, \"1382\": {\"frequency\": 1, \"value\": 1382}, \"1383\": {\"frequency\": 1, \"value\": 1383}, \"1384\": {\"frequency\": 1, \"value\": 1384}, \"1385\": {\"frequency\": 1, \"value\": 1385}, \"1386\": {\"frequency\": 1, \"value\": 1386}, \"1387\": {\"frequency\": 1, \"value\": 1387}, \"1388\": {\"frequency\": 1, \"value\": 1388}, \"1389\": {\"frequency\": 1, \"value\": 1389}, \"1390\": {\"frequency\": 1, \"value\": 1390}, \"1391\": {\"frequency\": 1, \"value\": 1391}, \"1392\": {\"frequency\": 1, \"value\": 1392}, \"1393\": {\"frequency\": 1, \"value\": 1393}, \"1394\": {\"frequency\": 1, \"value\": 1394}, \"1395\": {\"frequency\": 1, \"value\": 1395}, \"1396\": {\"frequency\": 1, \"value\": 1396}, \"1397\": {\"frequency\": 2, \"value\": 1397}, \"1398\": {\"frequency\": 1, \"value\": 1398}, \"1399\": {\"frequency\": 1, \"value\": 1399}, \"1400\": {\"frequency\": 1, \"value\": 1400}, \"1401\": {\"frequency\": 7, \"value\": 1401}, \"1402\": {\"frequency\": 1, \"value\": 1402}, \"1403\": {\"frequency\": 2, \"value\": 1403}, \"1404\": {\"frequency\": 3, \"value\": 1404}, \"1405\": {\"frequency\": 1, \"value\": 1405}, \"1406\": {\"frequency\": 1, \"value\": 1406}, \"1407\": {\"frequency\": 7, \"value\": 1407}, \"1408\": {\"frequency\": 1, \"value\": 1408}, \"1409\": {\"frequency\": 1, \"value\": 1409}, \"1410\": {\"frequency\": 1, \"value\": 1410}, \"1411\": {\"frequency\": 1, \"value\": 1411}, \"1412\": {\"frequency\": 3, \"value\": 1412}, \"1413\": {\"frequency\": 12, \"value\": 1413}, \"1414\": {\"frequency\": 1, \"value\": 1414}, \"1415\": {\"frequency\": 3, \"value\": 1415}, \"1416\": {\"frequency\": 9, \"value\": 1416}, \"1417\": {\"frequency\": 1, \"value\": 1417}, \"1418\": {\"frequency\": 1, \"value\": 1418}, \"1419\": {\"frequency\": 1, \"value\": 1419}, \"1420\": {\"frequency\": 2, \"value\": 1420}, \"1421\": {\"frequency\": 1, \"value\": 1421}, \"1422\": {\"frequency\": 1, \"value\": 1422}, \"1423\": {\"frequency\": 1, \"value\": 1423}, \"1424\": {\"frequency\": 1, \"value\": 1424}, \"1425\": {\"frequency\": 1, \"value\": 1425}, \"1426\": {\"frequency\": 1, \"value\": 1426}, \"1427\": {\"frequency\": 1, \"value\": 1427}, \"1428\": {\"frequency\": 1, \"value\": 1428}, \"1429\": {\"frequency\": 1, \"value\": 1429}, \"1430\": {\"frequency\": 1, \"value\": 1430}, \"1431\": {\"frequency\": 1, \"value\": 1431}, \"1432\": {\"frequency\": 1, \"value\": 1432}, \"1433\": {\"frequency\": 1, \"value\": 1433}, \"1434\": {\"frequency\": 1, \"value\": 1434}, \"1435\": {\"frequency\": 1, \"value\": 1435}, \"1436\": {\"frequency\": 1, \"value\": 1436}, \"1437\": {\"frequency\": 1, \"value\": 1437}, \"1438\": {\"frequency\": 1, \"value\": 1438}, \"1439\": {\"frequency\": 1, \"value\": 1439}, \"1440\": {\"frequency\": 1, \"value\": 1440}, \"1441\": {\"frequency\": 1, \"value\": 1441}, \"1442\": {\"frequency\": 1, \"value\": 1442}, \"1443\": {\"frequency\": 5, \"value\": 1443}, \"1444\": {\"frequency\": 2, \"value\": 1444}, \"1445\": {\"frequency\": 1, \"value\": 1445}, \"1446\": {\"frequency\": 4, \"value\": 1446}, \"1447\": {\"frequency\": 1, \"value\": 1447}, \"1448\": {\"frequency\": 3, \"value\": 1448}, \"1449\": {\"frequency\": 2, \"value\": 1449}, \"1450\": {\"frequency\": 1, \"value\": 1450}, \"1451\": {\"frequency\": 1, \"value\": 1451}, \"1452\": {\"frequency\": 1, \"value\": 1452}, \"1453\": {\"frequency\": 1, \"value\": 1453}, \"1454\": {\"frequency\": 3, \"value\": 1454}, \"1455\": {\"frequency\": 1, \"value\": 1455}, \"1456\": {\"frequency\": 1, \"value\": 1456}, \"1457\": {\"frequency\": 1, \"value\": 1457}, \"1458\": {\"frequency\": 1, \"value\": 1458}, \"1459\": {\"frequency\": 1, \"value\": 1459}, \"1460\": {\"frequency\": 1, \"value\": 1460}, \"1461\": {\"frequency\": 1, \"value\": 1461}, \"1462\": {\"frequency\": 1, \"value\": 1462}, \"1463\": {\"frequency\": 1, \"value\": 1463}, \"1464\": {\"frequency\": 1, \"value\": 1464}, \"1465\": {\"frequency\": 1, \"value\": 1465}, \"1466\": {\"frequency\": 1, \"value\": 1466}, \"1467\": {\"frequency\": 1, \"value\": 1467}, \"1468\": {\"frequency\": 1, \"value\": 1468}, \"1469\": {\"frequency\": 1, \"value\": 1469}, \"1470\": {\"frequency\": 1, \"value\": 1470}, \"1471\": {\"frequency\": 1, \"value\": 1471}, \"1472\": {\"frequency\": 1, \"value\": 1472}, \"1473\": {\"frequency\": 1, \"value\": 1473}, \"1474\": {\"frequency\": 1, \"value\": 1474}, \"1475\": {\"frequency\": 1, \"value\": 1475}, \"1476\": {\"frequency\": 1, \"value\": 1476}, \"1477\": {\"frequency\": 2, \"value\": 1477}, \"1478\": {\"frequency\": 1, \"value\": 1478}, \"1479\": {\"frequency\": 1, \"value\": 1479}, \"1480\": {\"frequency\": 1, \"value\": 1480}, \"1481\": {\"frequency\": 1, \"value\": 1481}, \"1482\": {\"frequency\": 1, \"value\": 1482}, \"1483\": {\"frequency\": 2, \"value\": 1483}, \"1484\": {\"frequency\": 4, \"value\": 1484}, \"1485\": {\"frequency\": 1, \"value\": 1485}, \"1486\": {\"frequency\": 1, \"value\": 1486}, \"1487\": {\"frequency\": 2, \"value\": 1487}, \"1488\": {\"frequency\": 1, \"value\": 1488}, \"1489\": {\"frequency\": 1, \"value\": 1489}, \"1490\": {\"frequency\": 1, \"value\": 1490}, \"1491\": {\"frequency\": 1, \"value\": 1491}, \"1492\": {\"frequency\": 1, \"value\": 1492}, \"1493\": {\"frequency\": 1, \"value\": 1493}, \"1494\": {\"frequency\": 1, \"value\": 1494}, \"1495\": {\"frequency\": 1, \"value\": 1495}, \"1496\": {\"frequency\": 1, \"value\": 1496}, \"1497\": {\"frequency\": 3, \"value\": 1497}, \"1498\": {\"frequency\": 1, \"value\": 1498}, \"1499\": {\"frequency\": 1, \"value\": 1499}, \"1500\": {\"frequency\": 5, \"value\": 1500}, \"1501\": {\"frequency\": 1, \"value\": 1501}, \"1502\": {\"frequency\": 1, \"value\": 1502}, \"1503\": {\"frequency\": 3, \"value\": 1503}, \"1504\": {\"frequency\": 1, \"value\": 1504}, \"1505\": {\"frequency\": 1, \"value\": 1505}, \"1506\": {\"frequency\": 1, \"value\": 1506}, \"1507\": {\"frequency\": 1, \"value\": 1507}, \"1508\": {\"frequency\": 2, \"value\": 1508}, \"1509\": {\"frequency\": 1, \"value\": 1509}, \"1510\": {\"frequency\": 1, \"value\": 1510}, \"1511\": {\"frequency\": 1, \"value\": 1511}, \"1512\": {\"frequency\": 1, \"value\": 1512}, \"1513\": {\"frequency\": 1, \"value\": 1513}, \"1514\": {\"frequency\": 3, \"value\": 1514}, \"1515\": {\"frequency\": 1, \"value\": 1515}, \"1516\": {\"frequency\": 2, \"value\": 1516}, \"1517\": {\"frequency\": 1, \"value\": 1517}, \"1518\": {\"frequency\": 1, \"value\": 1518}, \"1519\": {\"frequency\": 8, \"value\": 1519}, \"1520\": {\"frequency\": 6, \"value\": 1520}, \"1521\": {\"frequency\": 1, \"value\": 1521}, \"1522\": {\"frequency\": 6, \"value\": 1522}, \"1523\": {\"frequency\": 1, \"value\": 1523}, \"1524\": {\"frequency\": 2, \"value\": 1524}, \"1525\": {\"frequency\": 2, \"value\": 1525}, \"1526\": {\"frequency\": 1, \"value\": 1526}, \"1527\": {\"frequency\": 1, \"value\": 1527}, \"1528\": {\"frequency\": 1, \"value\": 1528}, \"1529\": {\"frequency\": 1, \"value\": 1529}, \"1530\": {\"frequency\": 1, \"value\": 1530}, \"1531\": {\"frequency\": 2, \"value\": 1531}, \"1532\": {\"frequency\": 14, \"value\": 1532}, \"1533\": {\"frequency\": 1, \"value\": 1533}, \"1534\": {\"frequency\": 1, \"value\": 1534}, \"1535\": {\"frequency\": 1, \"value\": 1535}, \"1536\": {\"frequency\": 2, \"value\": 1536}, \"1537\": {\"frequency\": 3, \"value\": 1537}, \"1538\": {\"frequency\": 2, \"value\": 1538}, \"1539\": {\"frequency\": 1, \"value\": 1539}, \"1540\": {\"frequency\": 2, \"value\": 1540}, \"1541\": {\"frequency\": 7, \"value\": 1541}, \"1542\": {\"frequency\": 2, \"value\": 1542}, \"1543\": {\"frequency\": 1, \"value\": 1543}, \"1544\": {\"frequency\": 1, \"value\": 1544}, \"1545\": {\"frequency\": 2, \"value\": 1545}, \"1546\": {\"frequency\": 1, \"value\": 1546}, \"1547\": {\"frequency\": 1, \"value\": 1547}, \"1548\": {\"frequency\": 2, \"value\": 1548}, \"1549\": {\"frequency\": 2, \"value\": 1549}, \"1550\": {\"frequency\": 2, \"value\": 1550}, \"1551\": {\"frequency\": 2, \"value\": 1551}, \"1552\": {\"frequency\": 1, \"value\": 1552}, \"1553\": {\"frequency\": 1, \"value\": 1553}, \"1554\": {\"frequency\": 1, \"value\": 1554}, \"1555\": {\"frequency\": 1, \"value\": 1555}, \"1556\": {\"frequency\": 1, \"value\": 1556}, \"1557\": {\"frequency\": 1, \"value\": 1557}, \"1558\": {\"frequency\": 1, \"value\": 1558}, \"1559\": {\"frequency\": 1, \"value\": 1559}, \"1560\": {\"frequency\": 2, \"value\": 1560}, \"1561\": {\"frequency\": 1, \"value\": 1561}, \"1562\": {\"frequency\": 2, \"value\": 1562}, \"1563\": {\"frequency\": 1, \"value\": 1563}, \"1564\": {\"frequency\": 1, \"value\": 1564}, \"1565\": {\"frequency\": 1, \"value\": 1565}, \"1566\": {\"frequency\": 1, \"value\": 1566}, \"1567\": {\"frequency\": 2, \"value\": 1567}, \"1568\": {\"frequency\": 1, \"value\": 1568}, \"1569\": {\"frequency\": 1, \"value\": 1569}, \"1570\": {\"frequency\": 1, \"value\": 1570}, \"1571\": {\"frequency\": 1, \"value\": 1571}, \"1572\": {\"frequency\": 1, \"value\": 1572}, \"1573\": {\"frequency\": 3, \"value\": 1573}, \"1574\": {\"frequency\": 1, \"value\": 1574}, \"1575\": {\"frequency\": 1, \"value\": 1575}, \"1576\": {\"frequency\": 2, \"value\": 1576}, \"1577\": {\"frequency\": 2, \"value\": 1577}, \"1578\": {\"frequency\": 1, \"value\": 1578}, \"1579\": {\"frequency\": 1, \"value\": 1579}, \"1580\": {\"frequency\": 4, \"value\": 1580}, \"1581\": {\"frequency\": 1, \"value\": 1581}, \"1582\": {\"frequency\": 1, \"value\": 1582}, \"1583\": {\"frequency\": 1, \"value\": 1583}, \"1584\": {\"frequency\": 1, \"value\": 1584}, \"1585\": {\"frequency\": 1, \"value\": 1585}, \"1586\": {\"frequency\": 2, \"value\": 1586}, \"1587\": {\"frequency\": 1, \"value\": 1587}, \"1588\": {\"frequency\": 1, \"value\": 1588}, \"1589\": {\"frequency\": 1, \"value\": 1589}, \"1590\": {\"frequency\": 3, \"value\": 1590}, \"1591\": {\"frequency\": 1, \"value\": 1591}, \"1592\": {\"frequency\": 1, \"value\": 1592}, \"1593\": {\"frequency\": 11, \"value\": 1593}, \"1594\": {\"frequency\": 1, \"value\": 1594}, \"1595\": {\"frequency\": 2, \"value\": 1595}, \"1596\": {\"frequency\": 1, \"value\": 1596}, \"1597\": {\"frequency\": 2, \"value\": 1597}, \"1598\": {\"frequency\": 4, \"value\": 1598}, \"1599\": {\"frequency\": 2, \"value\": 1599}, \"1600\": {\"frequency\": 2, \"value\": 1600}, \"1601\": {\"frequency\": 2, \"value\": 1601}, \"1602\": {\"frequency\": 1, \"value\": 1602}, \"1603\": {\"frequency\": 1, \"value\": 1603}, \"1604\": {\"frequency\": 1, \"value\": 1604}, \"1605\": {\"frequency\": 1, \"value\": 1605}, \"1606\": {\"frequency\": 3, \"value\": 1606}, \"1607\": {\"frequency\": 1, \"value\": 1607}, \"1608\": {\"frequency\": 1, \"value\": 1608}, \"1609\": {\"frequency\": 2, \"value\": 1609}, \"1610\": {\"frequency\": 2, \"value\": 1610}, \"1611\": {\"frequency\": 1, \"value\": 1611}, \"1612\": {\"frequency\": 1, \"value\": 1612}, \"1613\": {\"frequency\": 5, \"value\": 1613}, \"1614\": {\"frequency\": 4, \"value\": 1614}, \"1615\": {\"frequency\": 1, \"value\": 1615}, \"1616\": {\"frequency\": 1, \"value\": 1616}, \"1617\": {\"frequency\": 2, \"value\": 1617}, \"1618\": {\"frequency\": 1, \"value\": 1618}, \"1619\": {\"frequency\": 3, \"value\": 1619}, \"1620\": {\"frequency\": 4, \"value\": 1620}, \"1621\": {\"frequency\": 1, \"value\": 1621}, \"1622\": {\"frequency\": 1, \"value\": 1622}, \"1623\": {\"frequency\": 1, \"value\": 1623}, \"1624\": {\"frequency\": 1, \"value\": 1624}, \"1625\": {\"frequency\": 2, \"value\": 1625}, \"1626\": {\"frequency\": 2, \"value\": 1626}, \"1627\": {\"frequency\": 1, \"value\": 1627}, \"1628\": {\"frequency\": 1, \"value\": 1628}, \"1629\": {\"frequency\": 1, \"value\": 1629}, \"1630\": {\"frequency\": 1, \"value\": 1630}, \"1631\": {\"frequency\": 2, \"value\": 1631}, \"1632\": {\"frequency\": 1, \"value\": 1632}, \"1633\": {\"frequency\": 1, \"value\": 1633}, \"1634\": {\"frequency\": 1, \"value\": 1634}, \"1635\": {\"frequency\": 1, \"value\": 1635}, \"1636\": {\"frequency\": 1, \"value\": 1636}, \"1637\": {\"frequency\": 1, \"value\": 1637}, \"1638\": {\"frequency\": 1, \"value\": 1638}, \"1639\": {\"frequency\": 1, \"value\": 1639}, \"1640\": {\"frequency\": 1, \"value\": 1640}, \"1641\": {\"frequency\": 1, \"value\": 1641}, \"1642\": {\"frequency\": 1, \"value\": 1642}, \"1643\": {\"frequency\": 1, \"value\": 1643}, \"1644\": {\"frequency\": 1, \"value\": 1644}, \"1645\": {\"frequency\": 1, \"value\": 1645}, \"1646\": {\"frequency\": 2, \"value\": 1646}, \"1647\": {\"frequency\": 1, \"value\": 1647}, \"1648\": {\"frequency\": 1, \"value\": 1648}, \"1649\": {\"frequency\": 2, \"value\": 1649}, \"1650\": {\"frequency\": 1, \"value\": 1650}, \"1651\": {\"frequency\": 1, \"value\": 1651}, \"1652\": {\"frequency\": 1, \"value\": 1652}, \"1653\": {\"frequency\": 1, \"value\": 1653}, \"1654\": {\"frequency\": 1, \"value\": 1654}, \"1655\": {\"frequency\": 1, \"value\": 1655}, \"1656\": {\"frequency\": 1, \"value\": 1656}, \"1657\": {\"frequency\": 1, \"value\": 1657}, \"1658\": {\"frequency\": 1, \"value\": 1658}, \"1659\": {\"frequency\": 1, \"value\": 1659}, \"1660\": {\"frequency\": 3, \"value\": 1660}, \"1661\": {\"frequency\": 1, \"value\": 1661}, \"1662\": {\"frequency\": 1, \"value\": 1662}, \"1663\": {\"frequency\": 1, \"value\": 1663}, \"1664\": {\"frequency\": 1, \"value\": 1664}, \"1665\": {\"frequency\": 1, \"value\": 1665}, \"1666\": {\"frequency\": 1, \"value\": 1666}, \"1667\": {\"frequency\": 1, \"value\": 1667}, \"1668\": {\"frequency\": 1, \"value\": 1668}, \"1669\": {\"frequency\": 1, \"value\": 1669}, \"1670\": {\"frequency\": 1, \"value\": 1670}, \"1671\": {\"frequency\": 1, \"value\": 1671}, \"1672\": {\"frequency\": 1, \"value\": 1672}, \"1673\": {\"frequency\": 1, \"value\": 1673}, \"1674\": {\"frequency\": 1, \"value\": 1674}, \"1675\": {\"frequency\": 1, \"value\": 1675}, \"1676\": {\"frequency\": 1, \"value\": 1676}, \"1677\": {\"frequency\": 1, \"value\": 1677}, \"1678\": {\"frequency\": 1, \"value\": 1678}, \"1679\": {\"frequency\": 1, \"value\": 1679}, \"1680\": {\"frequency\": 1, \"value\": 1680}, \"1681\": {\"frequency\": 1, \"value\": 1681}, \"1682\": {\"frequency\": 2, \"value\": 1682}, \"1683\": {\"frequency\": 1, \"value\": 1683}, \"1684\": {\"frequency\": 1, \"value\": 1684}, \"1685\": {\"frequency\": 1, \"value\": 1685}, \"1686\": {\"frequency\": 1, \"value\": 1686}, \"1687\": {\"frequency\": 1, \"value\": 1687}, \"1688\": {\"frequency\": 1, \"value\": 1688}, \"1689\": {\"frequency\": 1, \"value\": 1689}, \"1690\": {\"frequency\": 1, \"value\": 1690}, \"1691\": {\"frequency\": 1, \"value\": 1691}, \"1692\": {\"frequency\": 2, \"value\": 1692}, \"1693\": {\"frequency\": 1, \"value\": 1693}, \"1694\": {\"frequency\": 2, \"value\": 1694}, \"1695\": {\"frequency\": 1, \"value\": 1695}, \"1696\": {\"frequency\": 1, \"value\": 1696}, \"1697\": {\"frequency\": 1, \"value\": 1697}, \"1698\": {\"frequency\": 1, \"value\": 1698}, \"1699\": {\"frequency\": 1, \"value\": 1699}, \"1700\": {\"frequency\": 1, \"value\": 1700}, \"1701\": {\"frequency\": 1, \"value\": 1701}, \"1702\": {\"frequency\": 1, \"value\": 1702}, \"1703\": {\"frequency\": 1, \"value\": 1703}, \"1704\": {\"frequency\": 1, \"value\": 1704}, \"1705\": {\"frequency\": 1, \"value\": 1705}, \"1706\": {\"frequency\": 1, \"value\": 1706}, \"1707\": {\"frequency\": 1, \"value\": 1707}, \"1708\": {\"frequency\": 3, \"value\": 1708}, \"1709\": {\"frequency\": 1, \"value\": 1709}, \"1710\": {\"frequency\": 1, \"value\": 1710}, \"1711\": {\"frequency\": 1, \"value\": 1711}, \"1712\": {\"frequency\": 1, \"value\": 1712}, \"1713\": {\"frequency\": 1, \"value\": 1713}, \"1714\": {\"frequency\": 1, \"value\": 1714}, \"1715\": {\"frequency\": 1, \"value\": 1715}, \"1716\": {\"frequency\": 1, \"value\": 1716}, \"1717\": {\"frequency\": 1, \"value\": 1717}, \"1718\": {\"frequency\": 1, \"value\": 1718}, \"1719\": {\"frequency\": 1, \"value\": 1719}, \"1720\": {\"frequency\": 1, \"value\": 1720}, \"1721\": {\"frequency\": 1, \"value\": 1721}, \"1722\": {\"frequency\": 1, \"value\": 1722}, \"1723\": {\"frequency\": 1, \"value\": 1723}, \"1724\": {\"frequency\": 1, \"value\": 1724}, \"1725\": {\"frequency\": 1, \"value\": 1725}, \"1726\": {\"frequency\": 3, \"value\": 1726}, \"1727\": {\"frequency\": 1, \"value\": 1727}, \"1728\": {\"frequency\": 1, \"value\": 1728}, \"1729\": {\"frequency\": 1, \"value\": 1729}, \"1730\": {\"frequency\": 1, \"value\": 1730}, \"1731\": {\"frequency\": 2, \"value\": 1731}, \"1732\": {\"frequency\": 2, \"value\": 1732}, \"1733\": {\"frequency\": 1, \"value\": 1733}, \"1734\": {\"frequency\": 1, \"value\": 1734}, \"1735\": {\"frequency\": 1, \"value\": 1735}, \"1736\": {\"frequency\": 2, \"value\": 1736}, \"1737\": {\"frequency\": 1, \"value\": 1737}, \"1738\": {\"frequency\": 1, \"value\": 1738}, \"1739\": {\"frequency\": 5, \"value\": 1739}, \"1740\": {\"frequency\": 1, \"value\": 1740}, \"1741\": {\"frequency\": 1, \"value\": 1741}, \"1742\": {\"frequency\": 1, \"value\": 1742}, \"1743\": {\"frequency\": 1, \"value\": 1743}, \"1744\": {\"frequency\": 1, \"value\": 1744}, \"1745\": {\"frequency\": 2, \"value\": 1745}, \"1746\": {\"frequency\": 1, \"value\": 1746}, \"1747\": {\"frequency\": 1, \"value\": 1747}, \"1748\": {\"frequency\": 1, \"value\": 1748}, \"1749\": {\"frequency\": 1, \"value\": 1749}, \"1750\": {\"frequency\": 1, \"value\": 1750}, \"1751\": {\"frequency\": 2, \"value\": 1751}, \"1752\": {\"frequency\": 2, \"value\": 1752}, \"1753\": {\"frequency\": 1, \"value\": 1753}, \"1754\": {\"frequency\": 1, \"value\": 1754}, \"1755\": {\"frequency\": 2, \"value\": 1755}, \"1756\": {\"frequency\": 2, \"value\": 1756}, \"1757\": {\"frequency\": 1, \"value\": 1757}, \"1758\": {\"frequency\": 1, \"value\": 1758}, \"1759\": {\"frequency\": 1, \"value\": 1759}, \"1760\": {\"frequency\": 1, \"value\": 1760}, \"1761\": {\"frequency\": 1, \"value\": 1761}, \"1762\": {\"frequency\": 1, \"value\": 1762}, \"1763\": {\"frequency\": 1, \"value\": 1763}, \"1764\": {\"frequency\": 3, \"value\": 1764}, \"1765\": {\"frequency\": 1, \"value\": 1765}, \"1766\": {\"frequency\": 1, \"value\": 1766}, \"1767\": {\"frequency\": 1, \"value\": 1767}, \"1768\": {\"frequency\": 1, \"value\": 1768}, \"1769\": {\"frequency\": 1, \"value\": 1769}, \"1770\": {\"frequency\": 1, \"value\": 1770}, \"1771\": {\"frequency\": 1, \"value\": 1771}, \"1772\": {\"frequency\": 1, \"value\": 1772}, \"1773\": {\"frequency\": 1, \"value\": 1773}, \"1774\": {\"frequency\": 1, \"value\": 1774}, \"1775\": {\"frequency\": 1, \"value\": 1775}, \"1776\": {\"frequency\": 1, \"value\": 1776}, \"1777\": {\"frequency\": 1, \"value\": 1777}, \"1778\": {\"frequency\": 1, \"value\": 1778}, \"1779\": {\"frequency\": 1, \"value\": 1779}, \"1780\": {\"frequency\": 1, \"value\": 1780}, \"1781\": {\"frequency\": 1, \"value\": 1781}, \"1782\": {\"frequency\": 1, \"value\": 1782}, \"1783\": {\"frequency\": 1, \"value\": 1783}, \"1784\": {\"frequency\": 1, \"value\": 1784}, \"1785\": {\"frequency\": 1, \"value\": 1785}, \"1786\": {\"frequency\": 1, \"value\": 1786}, \"1787\": {\"frequency\": 1, \"value\": 1787}, \"1788\": {\"frequency\": 1, \"value\": 1788}, \"1789\": {\"frequency\": 2, \"value\": 1789}, \"1790\": {\"frequency\": 1, \"value\": 1790}, \"1791\": {\"frequency\": 1, \"value\": 1791}, \"1792\": {\"frequency\": 1, \"value\": 1792}, \"1793\": {\"frequency\": 1, \"value\": 1793}, \"1794\": {\"frequency\": 1, \"value\": 1794}, \"1795\": {\"frequency\": 1, \"value\": 1795}, \"1796\": {\"frequency\": 1, \"value\": 1796}, \"1797\": {\"frequency\": 1, \"value\": 1797}, \"1798\": {\"frequency\": 1, \"value\": 1798}, \"1799\": {\"frequency\": 1, \"value\": 1799}, \"1800\": {\"frequency\": 1, \"value\": 1800}, \"1801\": {\"frequency\": 1, \"value\": 1801}, \"1802\": {\"frequency\": 1, \"value\": 1802}, \"1803\": {\"frequency\": 1, \"value\": 1803}, \"1804\": {\"frequency\": 1, \"value\": 1804}, \"1805\": {\"frequency\": 1, \"value\": 1805}, \"1806\": {\"frequency\": 1, \"value\": 1806}, \"1807\": {\"frequency\": 1, \"value\": 1807}, \"1808\": {\"frequency\": 1, \"value\": 1808}, \"1809\": {\"frequency\": 1, \"value\": 1809}, \"1810\": {\"frequency\": 1, \"value\": 1810}, \"1811\": {\"frequency\": 1, \"value\": 1811}, \"1812\": {\"frequency\": 1, \"value\": 1812}, \"1813\": {\"frequency\": 2, \"value\": 1813}, \"1814\": {\"frequency\": 1, \"value\": 1814}, \"1815\": {\"frequency\": 1, \"value\": 1815}, \"1816\": {\"frequency\": 1, \"value\": 1816}, \"1817\": {\"frequency\": 1, \"value\": 1817}, \"1818\": {\"frequency\": 3, \"value\": 1818}, \"1819\": {\"frequency\": 1, \"value\": 1819}, \"1820\": {\"frequency\": 1, \"value\": 1820}, \"1821\": {\"frequency\": 1, \"value\": 1821}, \"1822\": {\"frequency\": 1, \"value\": 1822}, \"1823\": {\"frequency\": 1, \"value\": 1823}, \"1824\": {\"frequency\": 1, \"value\": 1824}, \"1825\": {\"frequency\": 1, \"value\": 1825}, \"1826\": {\"frequency\": 1, \"value\": 1826}, \"1827\": {\"frequency\": 1, \"value\": 1827}, \"1828\": {\"frequency\": 1, \"value\": 1828}, \"1829\": {\"frequency\": 1, \"value\": 1829}, \"1830\": {\"frequency\": 1, \"value\": 1830}, \"1831\": {\"frequency\": 1, \"value\": 1831}, \"1832\": {\"frequency\": 2, \"value\": 1832}, \"1833\": {\"frequency\": 2, \"value\": 1833}, \"1834\": {\"frequency\": 2, \"value\": 1834}, \"1835\": {\"frequency\": 1, \"value\": 1835}, \"1836\": {\"frequency\": 1, \"value\": 1836}, \"1837\": {\"frequency\": 1, \"value\": 1837}, \"1838\": {\"frequency\": 1, \"value\": 1838}, \"1839\": {\"frequency\": 1, \"value\": 1839}, \"1840\": {\"frequency\": 1, \"value\": 1840}, \"1841\": {\"frequency\": 1, \"value\": 1841}, \"1842\": {\"frequency\": 1, \"value\": 1842}, \"1843\": {\"frequency\": 1, \"value\": 1843}, \"1844\": {\"frequency\": 1, \"value\": 1844}, \"1845\": {\"frequency\": 1, \"value\": 1845}, \"1846\": {\"frequency\": 1, \"value\": 1846}, \"1847\": {\"frequency\": 1, \"value\": 1847}, \"1848\": {\"frequency\": 1, \"value\": 1848}, \"1849\": {\"frequency\": 1, \"value\": 1849}, \"1850\": {\"frequency\": 1, \"value\": 1850}, \"1851\": {\"frequency\": 1, \"value\": 1851}, \"1852\": {\"frequency\": 2, \"value\": 1852}, \"1853\": {\"frequency\": 1, \"value\": 1853}, \"1854\": {\"frequency\": 1, \"value\": 1854}, \"1855\": {\"frequency\": 1, \"value\": 1855}, \"1856\": {\"frequency\": 1, \"value\": 1856}, \"1857\": {\"frequency\": 1, \"value\": 1857}, \"1858\": {\"frequency\": 1, \"value\": 1858}, \"1859\": {\"frequency\": 1, \"value\": 1859}, \"1860\": {\"frequency\": 1, \"value\": 1860}, \"1861\": {\"frequency\": 1, \"value\": 1861}, \"1862\": {\"frequency\": 1, \"value\": 1862}, \"1863\": {\"frequency\": 1, \"value\": 1863}, \"1864\": {\"frequency\": 1, \"value\": 1864}, \"1865\": {\"frequency\": 1, \"value\": 1865}, \"1866\": {\"frequency\": 1, \"value\": 1866}, \"1867\": {\"frequency\": 1, \"value\": 1867}, \"1868\": {\"frequency\": 1, \"value\": 1868}, \"1869\": {\"frequency\": 1, \"value\": 1869}, \"1870\": {\"frequency\": 1, \"value\": 1870}, \"1871\": {\"frequency\": 1, \"value\": 1871}, \"1872\": {\"frequency\": 1, \"value\": 1872}, \"1873\": {\"frequency\": 1, \"value\": 1873}, \"1874\": {\"frequency\": 1, \"value\": 1874}, \"1875\": {\"frequency\": 1, \"value\": 1875}, \"1876\": {\"frequency\": 1, \"value\": 1876}, \"1877\": {\"frequency\": 1, \"value\": 1877}, \"1878\": {\"frequency\": 1, \"value\": 1878}, \"1879\": {\"frequency\": 1, \"value\": 1879}, \"1880\": {\"frequency\": 1, \"value\": 1880}, \"1881\": {\"frequency\": 1, \"value\": 1881}, \"1882\": {\"frequency\": 1, \"value\": 1882}, \"1883\": {\"frequency\": 1, \"value\": 1883}, \"1884\": {\"frequency\": 1, \"value\": 1884}, \"1885\": {\"frequency\": 1, \"value\": 1885}, \"1886\": {\"frequency\": 1, \"value\": 1886}, \"1887\": {\"frequency\": 1, \"value\": 1887}, \"1888\": {\"frequency\": 1, \"value\": 1888}, \"1889\": {\"frequency\": 1, \"value\": 1889}, \"1890\": {\"frequency\": 1, \"value\": 1890}, \"1891\": {\"frequency\": 1, \"value\": 1891}, \"1892\": {\"frequency\": 1, \"value\": 1892}, \"1893\": {\"frequency\": 1, \"value\": 1893}, \"1894\": {\"frequency\": 1, \"value\": 1894}, \"1895\": {\"frequency\": 1, \"value\": 1895}, \"1896\": {\"frequency\": 1, \"value\": 1896}, \"1897\": {\"frequency\": 1, \"value\": 1897}, \"1898\": {\"frequency\": 1, \"value\": 1898}, \"1899\": {\"frequency\": 1, \"value\": 1899}, \"1900\": {\"frequency\": 1, \"value\": 1900}, \"1901\": {\"frequency\": 1, \"value\": 1901}, \"1902\": {\"frequency\": 1, \"value\": 1902}, \"1903\": {\"frequency\": 1, \"value\": 1903}, \"1904\": {\"frequency\": 1, \"value\": 1904}, \"1905\": {\"frequency\": 1, \"value\": 1905}, \"1906\": {\"frequency\": 1, \"value\": 1906}, \"1907\": {\"frequency\": 1, \"value\": 1907}, \"1908\": {\"frequency\": 1, \"value\": 1908}, \"1909\": {\"frequency\": 1, \"value\": 1909}, \"1910\": {\"frequency\": 1, \"value\": 1910}, \"1911\": {\"frequency\": 1, \"value\": 1911}, \"1912\": {\"frequency\": 1, \"value\": 1912}, \"1913\": {\"frequency\": 1, \"value\": 1913}, \"1914\": {\"frequency\": 1, \"value\": 1914}, \"1915\": {\"frequency\": 1, \"value\": 1915}, \"1916\": {\"frequency\": 1, \"value\": 1916}, \"1917\": {\"frequency\": 1, \"value\": 1917}, \"1918\": {\"frequency\": 1, \"value\": 1918}, \"1919\": {\"frequency\": 1, \"value\": 1919}, \"1920\": {\"frequency\": 1, \"value\": 1920}, \"1921\": {\"frequency\": 1, \"value\": 1921}, \"1922\": {\"frequency\": 1, \"value\": 1922}, \"1923\": {\"frequency\": 1, \"value\": 1923}, \"1924\": {\"frequency\": 1, \"value\": 1924}, \"1925\": {\"frequency\": 1, \"value\": 1925}, \"1926\": {\"frequency\": 1, \"value\": 1926}, \"1927\": {\"frequency\": 1, \"value\": 1927}, \"1928\": {\"frequency\": 2, \"value\": 1928}, \"1929\": {\"frequency\": 1, \"value\": 1929}, \"1930\": {\"frequency\": 1, \"value\": 1930}, \"1931\": {\"frequency\": 1, \"value\": 1931}, \"1932\": {\"frequency\": 1, \"value\": 1932}, \"1933\": {\"frequency\": 1, \"value\": 1933}, \"1934\": {\"frequency\": 1, \"value\": 1934}, \"1935\": {\"frequency\": 1, \"value\": 1935}, \"1936\": {\"frequency\": 1, \"value\": 1936}, \"1937\": {\"frequency\": 1, \"value\": 1937}, \"1938\": {\"frequency\": 1, \"value\": 1938}, \"1939\": {\"frequency\": 1, \"value\": 1939}, \"1940\": {\"frequency\": 1, \"value\": 1940}, \"1941\": {\"frequency\": 1, \"value\": 1941}, \"1942\": {\"frequency\": 1, \"value\": 1942}, \"1943\": {\"frequency\": 1, \"value\": 1943}, \"1944\": {\"frequency\": 1, \"value\": 1944}, \"1945\": {\"frequency\": 1, \"value\": 1945}, \"1946\": {\"frequency\": 1, \"value\": 1946}, \"1947\": {\"frequency\": 1, \"value\": 1947}, \"1948\": {\"frequency\": 1, \"value\": 1948}, \"1949\": {\"frequency\": 1, \"value\": 1949}, \"1950\": {\"frequency\": 1, \"value\": 1950}, \"1951\": {\"frequency\": 1, \"value\": 1951}, \"1952\": {\"frequency\": 1, \"value\": 1952}, \"1953\": {\"frequency\": 1, \"value\": 1953}, \"1954\": {\"frequency\": 1, \"value\": 1954}, \"1955\": {\"frequency\": 1, \"value\": 1955}, \"1956\": {\"frequency\": 1, \"value\": 1956}, \"1957\": {\"frequency\": 1, \"value\": 1957}, \"1958\": {\"frequency\": 1, \"value\": 1958}, \"1959\": {\"frequency\": 1, \"value\": 1959}, \"1960\": {\"frequency\": 1, \"value\": 1960}, \"1961\": {\"frequency\": 1, \"value\": 1961}, \"1962\": {\"frequency\": 1, \"value\": 1962}, \"1963\": {\"frequency\": 1, \"value\": 1963}, \"1964\": {\"frequency\": 1, \"value\": 1964}, \"1965\": {\"frequency\": 1, \"value\": 1965}, \"1966\": {\"frequency\": 1, \"value\": 1966}, \"1967\": {\"frequency\": 1, \"value\": 1967}, \"1968\": {\"frequency\": 1, \"value\": 1968}, \"1969\": {\"frequency\": 1, \"value\": 1969}, \"1970\": {\"frequency\": 1, \"value\": 1970}, \"1971\": {\"frequency\": 1, \"value\": 1971}, \"1972\": {\"frequency\": 1, \"value\": 1972}, \"1973\": {\"frequency\": 1, \"value\": 1973}, \"1974\": {\"frequency\": 1, \"value\": 1974}, \"1975\": {\"frequency\": 1, \"value\": 1975}, \"1976\": {\"frequency\": 1, \"value\": 1976}, \"1977\": {\"frequency\": 1, \"value\": 1977}, \"1978\": {\"frequency\": 1, \"value\": 1978}, \"1979\": {\"frequency\": 1, \"value\": 1979}, \"1980\": {\"frequency\": 1, \"value\": 1980}, \"1981\": {\"frequency\": 1, \"value\": 1981}, \"1982\": {\"frequency\": 1, \"value\": 1982}, \"1983\": {\"frequency\": 1, \"value\": 1983}, \"1984\": {\"frequency\": 1, \"value\": 1984}, \"1985\": {\"frequency\": 1, \"value\": 1985}, \"1986\": {\"frequency\": 1, \"value\": 1986}, \"1987\": {\"frequency\": 1, \"value\": 1987}, \"1988\": {\"frequency\": 1, \"value\": 1988}, \"1989\": {\"frequency\": 1, \"value\": 1989}, \"1990\": {\"frequency\": 1, \"value\": 1990}, \"1991\": {\"frequency\": 1, \"value\": 1991}, \"1992\": {\"frequency\": 1, \"value\": 1992}, \"1993\": {\"frequency\": 1, \"value\": 1993}, \"1994\": {\"frequency\": 1, \"value\": 1994}, \"1995\": {\"frequency\": 1, \"value\": 1995}, \"1996\": {\"frequency\": 1, \"value\": 1996}, \"1997\": {\"frequency\": 1, \"value\": 1997}, \"1998\": {\"frequency\": 1, \"value\": 1998}, \"1999\": {\"frequency\": 1, \"value\": 1999}, \"2000\": {\"frequency\": 1, \"value\": 2000}, \"2001\": {\"frequency\": 1, \"value\": 2001}, \"2002\": {\"frequency\": 1, \"value\": 2002}, \"2003\": {\"frequency\": 1, \"value\": 2003}, \"2004\": {\"frequency\": 1, \"value\": 2004}, \"2005\": {\"frequency\": 1, \"value\": 2005}, \"2006\": {\"frequency\": 1, \"value\": 2006}, \"2007\": {\"frequency\": 1, \"value\": 2007}, \"2008\": {\"frequency\": 1, \"value\": 2008}, \"2009\": {\"frequency\": 1, \"value\": 2009}, \"2010\": {\"frequency\": 1, \"value\": 2010}, \"2011\": {\"frequency\": 1, \"value\": 2011}, \"2012\": {\"frequency\": 1, \"value\": 2012}, \"2013\": {\"frequency\": 1, \"value\": 2013}, \"2014\": {\"frequency\": 1, \"value\": 2014}, \"2015\": {\"frequency\": 1, \"value\": 2015}, \"2016\": {\"frequency\": 1, \"value\": 2016}, \"2017\": {\"frequency\": 1, \"value\": 2017}}, \"mean\": 1020.0980887125856}}, \"selected_variable\": {\"name\": [\"sf\"], \"descriptives\": {\"rows\": 2773, \"columns\": 3}, \"view_component\": \"Summary\", \"view_file\": \"sframe\", \"view_params\": {\"y\": null, \"x\": null, \"columns\": [\"user_id\", \"course_id\", \"rating\"], \"view\": null}, \"view_components\": [\"Summary\", \"Table\", \"Bar Chart\", \"BoxWhisker Plot\", \"Line Chart\", \"Scatter Plot\", \"Heat Map\", \"Plots\"], \"type\": \"SFrame\", \"columns\": [{\"dtype\": \"int\", \"name\": \"user_id\"}, {\"dtype\": \"int\", \"name\": \"course_id\"}, {\"dtype\": \"float\", \"name\": \"rating\"}], \"column_identifiers\": [\"course_id\", \"rating\", \"user_id\"]}, \"columns\": [{\"dtype\": \"int\", \"name\": \"user_id\"}, {\"dtype\": \"int\", \"name\": \"course_id\"}, {\"dtype\": \"float\", \"name\": \"rating\"}]}, e);\n", " });\n", " })();\n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "#train_file = 'http://s3.amazonaws.com/dato-datasets/millionsong/10000.txt'\n", "train_file = '/Users/chengjun/GitHub/cjc2016/data/ratings.dat'\n", "sf = gl.SFrame.read_csv(train_file, header=False, delimiter='|', verbose=False)\n", "sf.rename({'X1':'user_id', 'X2':'course_id', 'X3':'rating'}).show()" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "In order to evaluate the performance of our model, we randomly split the observations in our data set into two partitions: we will use `train_set` when creating our model and `test_set` for evaluating its performance." ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "(train_set, test_set) = sf.random_split(0.8, seed=1)" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Popularity model" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "fragment" } }, "source": [ "Create a model that makes recommendations using item popularity. When no target column is provided, the popularity is determined by the number of observations involving each item. When a target is provided, popularity is computed using the item’s mean target value. When the target column contains ratings, for example, the model computes the mean rating for each item and uses this to rank items for recommendations.\n", "\n", "One typically wants to initially create a simple recommendation system that can be used as a baseline and to verify that the rest of the pipeline works as expected. The `recommender` package has several models available for this purpose. For example, we can create a model that predicts songs based on their overall popularity across all users.\n" ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "PROGRESS: Recsys training: model = popularity\n", "PROGRESS: Preparing data set.\n", "PROGRESS: Data has 2202 observations with 1651 users and 201 items.\n", "PROGRESS: Data prepared in: 0.007957s\n", "PROGRESS: 2202 observations to process; with 201 unique items.\n" ] } ], "source": [ "import graphlab as gl \n", "popularity_model = gl.popularity_recommender.create(train_set, 'user_id', 'course_id', target = 'rating')" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Item similarity Model" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "* [Collaborative filtering](http://en.wikipedia.org/wiki/Collaborative_filtering) methods make predictions for a given user based on the patterns of other users' activities. One common technique is to compare items based on their [Jaccard](http://en.wikipedia.org/wiki/Jaccard_index) similarity.This measurement is a ratio: the number of items they have in common, over the total number of distinct items in both sets.\n", "* We could also have used another slightly more complicated similarity measurement, called [Cosine Similarity](http://en.wikipedia.org/wiki/Cosine_similarity). \n", "\n", "If your data is implicit, i.e., you only observe interactions between users and items, without a rating, then use ItemSimilarityModel with Jaccard similarity. \n", "\n", "If your data is explicit, i.e., the observations include an actual rating given by the user, then you have a wide array of options. ItemSimilarityModel with cosine or Pearson similarity can incorporate ratings. In addition, MatrixFactorizationModel, FactorizationModel, as well as LinearRegressionModel all support rating prediction. \n", "\n", "#### Now data contains three columns: ‘user_id’, ‘item_id’, and ‘rating’.\n", "\n", "itemsim_cosine_model = graphlab.recommender.create(data, \n", " target=’rating’, \n", " method=’item_similarity’, \n", " similarity_type=’cosine’)\n", " \n", "factorization_machine_model = graphlab.recommender.create(data, \n", " target=’rating’, \n", " method=’factorization_model’)\n", "\n", "\n", "In the following code block, we compute all the item-item similarities and create an object that can be used for recommendations." ] }, { "cell_type": "code", "execution_count": 30, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "PROGRESS: Recsys training: model = item_similarity\n", "PROGRESS: Preparing data set.\n", "PROGRESS: Data has 2202 observations with 1651 users and 201 items.\n", "PROGRESS: Data prepared in: 0.008781s\n", "PROGRESS: Computing item similarity statistics:\n", "PROGRESS: Computing most similar items for 201 items:\n", "PROGRESS: Finished training in 0.003179s\n", "PROGRESS: Finished prediction in 0.003227s\n" ] } ], "source": [ "item_sim_model = gl.item_similarity_recommender.create(train_set, 'user_id', 'course_id', target = 'rating', \n", " similarity_type='cosine')" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Factorization Recommender Model\n", "Create a FactorizationRecommender that learns latent factors for each user and item and uses them to make rating predictions. This includes both standard matrix factorization as well as factorization machines models (in the situation where side data is available for users and/or items). [link](https://dato.com/products/create/docs/generated/graphlab.recommender.factorization_recommender.create.html#graphlab.recommender.factorization_recommender.create)" ] }, { "cell_type": "code", "execution_count": 35, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "PROGRESS: Recsys training: model = factorization_recommender\n", "PROGRESS: Preparing data set.\n", "PROGRESS: Data has 2202 observations with 1651 users and 201 items.\n", "PROGRESS: Data prepared in: 0.007704s\n", "PROGRESS: Training factorization_recommender for recommendations.\n", "PROGRESS: +--------------------------------+--------------------------------------------------+----------+\n", "PROGRESS: | Parameter | Description | Value |\n", "PROGRESS: +--------------------------------+--------------------------------------------------+----------+\n", "PROGRESS: | num_factors | Factor Dimension | 8 |\n", "PROGRESS: | regularization | L2 Regularization on Factors | 1e-08 |\n", "PROGRESS: | solver | Solver used for training | sgd |\n", "PROGRESS: | linear_regularization | L2 Regularization on Linear Coefficients | 1e-10 |\n", "PROGRESS: | max_iterations | Maximum Number of Iterations | 50 |\n", "PROGRESS: +--------------------------------+--------------------------------------------------+----------+\n", "PROGRESS: Optimizing model using SGD; tuning step size.\n", "PROGRESS: Using 2202 / 2202 points for tuning the step size.\n", "PROGRESS: +---------+-------------------+------------------------------------------+\n", "PROGRESS: | Attempt | Initial Step Size | Estimated Objective Value |\n", "PROGRESS: +---------+-------------------+------------------------------------------+\n", "PROGRESS: | 0 | 25 | Not Viable |\n", "PROGRESS: | 1 | 6.25 | Not Viable |\n", "PROGRESS: | 2 | 1.5625 | Not Viable |\n", "PROGRESS: | 3 | 0.390625 | 0.133755 |\n", "PROGRESS: | 4 | 0.195312 | 0.171583 |\n", "PROGRESS: | 5 | 0.0976562 | 0.236008 |\n", "PROGRESS: | 6 | 0.0488281 | 0.338778 |\n", "PROGRESS: +---------+-------------------+------------------------------------------+\n", "PROGRESS: | Final | 0.390625 | 0.133755 |\n", "PROGRESS: +---------+-------------------+------------------------------------------+\n", "PROGRESS: Starting Optimization.\n", "PROGRESS: +---------+--------------+-------------------+-----------------------+-------------+\n", "PROGRESS: | Iter. | Elapsed Time | Approx. Objective | Approx. Training RMSE | Step Size |\n", "PROGRESS: +---------+--------------+-------------------+-----------------------+-------------+\n", "PROGRESS: | Initial | 324us | 0.891401 | 0.94414 | |\n", "PROGRESS: +---------+--------------+-------------------+-----------------------+-------------+\n", "PROGRESS: | 1 | 38.389ms | 0.878127 | 0.937082 | 0.390625 |\n", "PROGRESS: | 2 | 69.95ms | 0.502405 | 0.708804 | 0.232267 |\n", "PROGRESS: | 3 | 101.597ms | 0.302088 | 0.549625 | 0.171364 |\n", "PROGRESS: | 4 | 133.423ms | 0.219703 | 0.468724 | 0.138107 |\n", "PROGRESS: | 5 | 164.767ms | 0.162832 | 0.403524 | 0.116824 |\n", "PROGRESS: | 6 | 196.399ms | 0.119286 | 0.345378 | 0.101894 |\n", "PROGRESS: | 11 | 355.55ms | 0.0272915 | 0.165197 | 0.0646719 |\n", "PROGRESS: | 50 | 1.59s | 0.000759299 | 0.0275144 | 0.0207746 |\n", "PROGRESS: +---------+--------------+-------------------+-----------------------+-------------+\n", "PROGRESS: Optimization Complete: Maximum number of passes through the data reached.\n", "PROGRESS: Computing final objective value and training RMSE.\n", "PROGRESS: Final objective value: 0.000664005\n", "PROGRESS: Final training RMSE: 0.0257244\n" ] } ], "source": [ "factorization_machine_model = gl.recommender.factorization_recommender.create(train_set, 'user_id', 'course_id',\n", " target='rating')" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Model Evaluation" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "fragment" } }, "source": [ "It's straightforward to use GraphLab to compare models on a small subset of users in the `test_set`. The [precision-recall](http://en.wikipedia.org/wiki/Precision_and_recall) plot that is computed shows the benefits of using the similarity-based model instead of the baseline `popularity_model`: better curves tend toward the upper-right hand corner of the plot. \n", "\n", "The following command finds the top-ranked items for all users in the first 500 rows of `test_set`. The observations in `train_set` are not included in the predicted items." ] }, { "cell_type": "code", "execution_count": 36, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "compare_models: using 49 users to estimate model performance\n", "PROGRESS: Evaluate model M0\n", "\n", "Precision and recall summary statistics by cutoff\n", "+--------+------------------+-----------------+\n", "| cutoff | mean_precision | mean_recall |\n", "+--------+------------------+-----------------+\n", "| 2 | 0.0 | 0.0 |\n", "| 4 | 0.0 | 0.0 |\n", "| 6 | 0.0 | 0.0 |\n", "| 8 | 0.0 | 0.0 |\n", "| 10 | 0.0 | 0.0 |\n", "| 12 | 0.00170068027211 | 0.0204081632653 |\n", "| 14 | 0.00145772594752 | 0.0204081632653 |\n", "| 16 | 0.00127551020408 | 0.0204081632653 |\n", "| 18 | 0.00113378684807 | 0.0204081632653 |\n", "| 20 | 0.00102040816327 | 0.0204081632653 |\n", "+--------+------------------+-----------------+\n", "[10 rows x 3 columns]\n", "\n", "\n", "Overall RMSE: 1.07244677675\n", "\n", "Per User RMSE (best)\n", "+---------+-------+-----------------+\n", "| user_id | count | rmse |\n", "+---------+-------+-----------------+\n", "| 1642 | 1 | 0.0263157894737 |\n", "+---------+-------+-----------------+\n", "[1 rows x 3 columns]\n", "\n", "\n", "Per User RMSE (worst)\n", "+---------+-------+---------------+\n", "| user_id | count | rmse |\n", "+---------+-------+---------------+\n", "| 1615 | 1 | 4.16666666667 |\n", "+---------+-------+---------------+\n", "[1 rows x 3 columns]\n", "\n", "\n", "Per Item RMSE (best)\n", "+-----------+-------+------+\n", "| course_id | count | rmse |\n", "+-----------+-------+------+\n", "| 100 | 1 | 0.0 |\n", "+-----------+-------+------+\n", "[1 rows x 3 columns]\n", "\n", "\n", "Per Item RMSE (worst)\n", "+-----------+-------+---------------+\n", "| course_id | count | rmse |\n", "+-----------+-------+---------------+\n", "| 36 | 1 | 4.16666666667 |\n", "+-----------+-------+---------------+\n", "[1 rows x 3 columns]\n", "\n", "PROGRESS: Evaluate model M1\n", "\n", "Precision and recall summary statistics by cutoff\n", "+--------+------------------+-----------------+\n", "| cutoff | mean_precision | mean_recall |\n", "+--------+------------------+-----------------+\n", "| 2 | 0.0 | 0.0 |\n", "| 4 | 0.0102040816327 | 0.0408163265306 |\n", "| 6 | 0.0102040816327 | 0.0612244897959 |\n", "| 8 | 0.00765306122449 | 0.0612244897959 |\n", "| 10 | 0.0102040816327 | 0.102040816327 |\n", "| 12 | 0.00850340136054 | 0.102040816327 |\n", "| 14 | 0.00728862973761 | 0.102040816327 |\n", "| 16 | 0.00637755102041 | 0.102040816327 |\n", "| 18 | 0.00566893424036 | 0.102040816327 |\n", "| 20 | 0.00612244897959 | 0.122448979592 |\n", "+--------+------------------+-----------------+\n", "[10 rows x 3 columns]\n", "\n", "PROGRESS: Finished prediction in 0.001036s\n", "\n", "Overall RMSE: 1.19396827432\n", "\n", "Per User RMSE (best)\n", "+---------+-------+------+\n", "| user_id | count | rmse |\n", "+---------+-------+------+\n", "| 1600 | 1 | 0.0 |\n", "+---------+-------+------+\n", "[1 rows x 3 columns]\n", "\n", "\n", "Per User RMSE (worst)\n", "+---------+-------+------+\n", "| user_id | count | rmse |\n", "+---------+-------+------+\n", "| 1615 | 1 | 4.5 |\n", "+---------+-------+------+\n", "[1 rows x 3 columns]\n", "\n", "\n", "Per Item RMSE (best)\n", "+-----------+-------+------+\n", "| course_id | count | rmse |\n", "+-----------+-------+------+\n", "| 113 | 1 | 0.0 |\n", "+-----------+-------+------+\n", "[1 rows x 3 columns]\n", "\n", "\n", "Per Item RMSE (worst)\n", "+-----------+-------+------+\n", "| course_id | count | rmse |\n", "+-----------+-------+------+\n", "| 36 | 1 | 4.5 |\n", "+-----------+-------+------+\n", "[1 rows x 3 columns]\n", "\n", "PROGRESS: Evaluate model M2\n", "\n", "Precision and recall summary statistics by cutoff\n", "+--------+------------------+------------------+\n", "| cutoff | mean_precision | mean_recall |\n", "+--------+------------------+------------------+\n", "| 2 | 0.0 | 0.0 |\n", "| 4 | 0.0 | 0.0 |\n", "| 6 | 0.00340136054422 | 0.00680272108844 |\n", "| 8 | 0.00510204081633 | 0.0170068027211 |\n", "| 10 | 0.00408163265306 | 0.0170068027211 |\n", "| 12 | 0.00340136054422 | 0.0170068027211 |\n", "| 14 | 0.00437317784257 | 0.0374149659864 |\n", "| 16 | 0.00382653061224 | 0.0374149659864 |\n", "| 18 | 0.00340136054422 | 0.0374149659864 |\n", "| 20 | 0.0030612244898 | 0.0374149659864 |\n", "+--------+------------------+------------------+\n", "[10 rows x 3 columns]\n", "\n", "\n", "Overall RMSE: 1.18039409899\n", "\n", "Per User RMSE (best)\n", "+---------+-------+-----------------+\n", "| user_id | count | rmse |\n", "+---------+-------+-----------------+\n", "| 1642 | 1 | 0.0397204443792 |\n", "+---------+-------+-----------------+\n", "[1 rows x 3 columns]\n", "\n", "\n", "Per User RMSE (worst)\n", "+---------+-------+--------------+\n", "| user_id | count | rmse |\n", "+---------+-------+--------------+\n", "| 1615 | 1 | 4.4589629598 |\n", "+---------+-------+--------------+\n", "[1 rows x 3 columns]\n", "\n", "\n", "Per Item RMSE (best)\n", "+-----------+-------+-----------------+\n", "| course_id | count | rmse |\n", "+-----------+-------+-----------------+\n", "| 137 | 1 | 0.0120499303006 |\n", "+-----------+-------+-----------------+\n", "[1 rows x 3 columns]\n", "\n", "\n", "Per Item RMSE (worst)\n", "+-----------+-------+--------------+\n", "| course_id | count | rmse |\n", "+-----------+-------+--------------+\n", "| 36 | 1 | 4.4589629598 |\n", "+-----------+-------+--------------+\n", "[1 rows x 3 columns]\n", "\n" ] }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAZMAAAEZCAYAAABSN8jfAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzsnXd8VNXywL9DB+mCAgGkKqKoPBGx51kRFVRURAW7oPLz\niajwxBKUZxcbivikq8CzI4KAQBBFadKkCKF3kNBrSOb3x7mBZUnZZFt2M9/PZz/Ze+8pc3azd+45\nc2ZGVBXDMAzDCIYi0RbAMAzDiH1MmRiGYRhBY8rEMAzDCBpTJoZhGEbQmDIxDMMwgsaUiWEYhhE0\npkyMbBGRO0VkXADl+onIs5GQKRKIyCoRudx7nyQiw6ItUyQpjGM2gseUSYzi3fD2ichuEdkkIoNE\n5IRQ9qGqn6nqNQGUe1hVe4ey70xEJENE9njjXC8i74lIsXD05YNm8z5LRKSuJ+eHYZQpkuQ4ZhGp\n6D1AbBSRvSIyX0TuiZBsiMhgEXnJ71wd7zuwe1qUsA8+dlHgelUtB/wDaAYcNzuIwI03EpzljfNS\n4GbgoQj2LQGU6Qj8CbQTkRIhF6AAfYfe+H4CagEtgPLAU8CrItI1DP0VzeK0EoCSD0HfBeZzjwVM\nmcQBqroB+BE4A448zT8iIsuAv7xz14vIXBHZLiK/ikiTzPoiUktEvhaRLSLyt4i8752/R0Smeu9F\nRN4Wkc0istN7Gm3sXTvmSVFEHhSRZSKyTUS+E5HqPtcyRKSTiCz1ZOmbh3EuB34FGvu0l59x1ReR\nSd65rSLyqYhUyNOHfrQPAToAScA24AbvfDsRmelXtquIfOe9Lykib4rIam9m2U9ESnnXEkVknYg8\nLSIbgQHebGC0N5ZUEfleRBJ82q4rIj+LyC4RmSAiH/guVYlICxGZ5n1Oc0XkMr+6U7y644EqOQy5\nA06R3Kqqq1U1XVXHAY8BL4pIORHpLiJf+I39XRF513tfQUQGiMgGb5wvZc4ovP+5X0Wkj4j8DbyQ\n3Uefg4x4MqzzxrREji5bioj0EJEU7/sfKSKVvGuZs5v7RGQ18JP3PX3qld0uIjNE5KSc+i6smDKJ\nbQTcTRO4Fpjjc60NcB7QWESaAgOAB4HKQH9glIgUF/fkNxpYCZwCJADDs+jrauASoKGqVgBuBVK9\na0eeFL0f7cve9erAamCEX1vX4WZSZwG3iUhuS2mZ42zkyTDDO87ruHzl+I8n3+m4m2NSLjJkx8XA\nycAY4Avgbu/898BpItLAp+wdwGfe+1eBBsDZ3t8E4HmfsicDlYDaQCfcb3WAd1wb2A/4KuLPgd9x\nn0MScBdHv5ME3GfxoqpWAp4EvhKRE33qzgROBF7yxpDdk/9VwBhV3e93/mugFG62MhxoJSJlvf6L\n4v4fMsc+GDgE1Aea4v63HvBpqzmwHDgJ97+UJ0TkNOBRoJmqlvfaX+VdfgxojZvlVge2Ax/4NXEp\n0AhoCdyDm33VxH22nXCfveGPqtorBl+4H8du3I9hFe7GUtK7lgEk+pTth7uR+NZfgvvRXABsAYpk\n0cc9wFTv/eW4Wc75/mWBQZnt4254r/pcOwF346jtI9uFPtdHAt1zGGcGsBPY471/L9hxZdHHjcAf\nPscrgcu990nAsBzqfgJ87r0/xxtrFe94GPCc974hsAt3wxVvPPV82rkAWOG9TwQOAiVy6PccINV7\nXxtIA0r5XB8GDPXed89873P9R9zyXGbd0j7XPstuzMAE4OVsrm0E2nvvpwIdvPdXASne+5OBA36y\ntgcm+fzPrc7l+xoEvOR3ro73/1EEp5w3A1cAxf3KLcr8br3j6t53VsSnjTo+1+/FzYabROq3Hasv\nm5nELgq0UdVKqlpHVbuo6kGf62t93p8CdPOm6dtFZDvuSas67ql8tapm5NiZ6iScwvoA2Cwi/UWk\nXBZFM2cjmfX24pZ/EnzKbPJ5vw+ncBCRheIM7btF5CKfMk1VtSzQDugoIqcEMy4ROVlERnjLIDtx\nN94T/cvlhoiUBm7BzUhQ1bk4xX6nV+Rz3I0S3KzkG1U9AFQFygCzfeQey7HLS1tV9ZBPX2W8z3yV\nJ/MUoIK3zFYDp1gO+NRfx9GloFOAW/0+p4uAal7d7XrsTGM12fO3V8f/syjmyf93NmPPnJWcAhQH\nNvrI8pH3mWTi+7+bFYe9NnwpDmSoaoaqpgCP4x4ENovIcDm61FoH+Man70Veeydn0/8wYBwwQtwG\nkNfEbClZYsokfvFdplgD/MdTPJmvsqo6EvfDqS1ZGzqPbVD1fVVthrNZnIozvPqzAfeDBUDcDrMT\ngfU5NC1e+2eoajnv9WsW/X+BW65JCnJcLwPpwJnqluw6kL/fwk24JZD+4nY2bcQpscylrp+AqiJy\nNnA77gYL7oa7H2jsI3dFdUsyR4br11c33Gfe3JP5MtznJrgZQWVPuWVSy6eNNbiZhu/nVE5VX/fq\nVhKRMj51T8mi/0x+Aq71Kw/QFjeb+t07/hJI9JbYbvQZ+1qv3Ik+slRQ1SY+beVmXF+Dz/+YR118\nlICqDlfVS3zG8ppP3ZZ+n0UZVd2YVf+qelhVX1TVM4ALgetxMzrDD1MmhYP/Ap1FpLlngDxBRK7z\n1rSn424or3pPv6VE5EL/BkSkmYicLyLFcbOJA7gbMhy9qYFbL79XRM4WkZK4G/fvqromG9kC2S3l\ny6tAexGpGcS4ygJ7gV3ezS4rpRgId+OW9c7E2T7Oxj3xny0iZ6pqGm7W8ibO/jEBwJst/Rd4R0Sq\ngrNriMjVOfRVFqeAdopIZXwM06q6GpgFJHn2ogtwN71MPgVuEJGrRaSo91kkikiCT91eXt2L/er6\nMww36/lCRE7x6lwDvAu8oKq7PZm2Ask4+8gKVf3LO78RGA/0EWesLyJuQ8SlOfTpz1fAdSJylTee\nGridjMMBRORUEbnc+/87yLH/qx8BL4tIba9sVRFpnV1H3ufUxHso2Y1bEkzPrnxhxpRJfHLMk52q\nzsYZqfvijObL8J6uvBvbDbh15jW4p7vbfNrJbKs88LFXfxXu6foN/3KqOhF4DveD34B7Yrw9O9n8\n+ghkLH8Ck4AnghhXL9x26p04Q/lXOciQpXyeEroceEdVt/i8/uCoPQLcE/kVwBd+S27dgRTgd2/Z\nagJu5pHluIF3gNK4z30ablnMt8ydOLvLNpwRfSTOFoCqrsNtyHgGZ0dag5vpZP7+78DZwlJxmwCG\nZPNZ4C29XYn7PKfjPsM3gWdU9S2/4plj/9zvfEegBG6JKRWncKv5jDvHmYmqLsItob3ijXca8Bvu\newUo6V3binugqAL827v2LjAKGC8iu7x6zX2b9+uumiffTk/eZJxCNfwQ1fBt1xaRlrgfQVHgE1V9\nLYsy7+F2Iu0D7lHVOd75gbhdP1v8psCZ9brhbmZVVDXV/7phFGZEZCSwSFV75VrYMEJA2GYm3rSw\nL257XWPc0sTpfmVaAQ1UtSHOEa2fz+VBXt2s2q6F2yGSk6HQMAoN3jJkfW/Z6Frc9tdvoy2XUXgI\n5zJXc9x2wFXe2vEI3FTbl9Z4U2pVnQ5UFJFq3vFU3LbXrOgDPB0WqQ0jNqkGTMat678NdFbVedEV\nyShMhHOLWwLHbrFbh1uXza1MAsduHT0GEWkDrFPV+W5XpGEYqjoat9PNMKJCOJVJoMYYf42QbT1v\nO+IzuCWu7OobhmEYESacymQ9bq97JrVwM4+cytQkZ3+E+rj95fO8WUlNnONXc1Xd4ltQRMIeCM4w\nDCMeUdU8P6SH02YyC2goLnhaCZz38ii/MqPwtlCKSAtgh6puzq5BVV2gqieral1VrYtTTv/wVyQ+\n5eP29cILL0RdBhubjc/GF3+v/BI2ZaKqh4EuuFAEi4CRqrpYXMTYTl6ZMcAKEUnBBel7JLO+iAzH\n7R8/VUTWisi9WXUTLvkNwzCMwAlrjBlVHYtzrvI919/vuEs2ddtndd6vTL2gBDQMwzBCgnnAxyiJ\niYnRFiFsxPPYwMYX68T7+PJLWD3go4mIaLyOzTAijip8/z1s3Qr33QfR2Ja/YAFMmABPPBH5vgsR\nIoLmwwBvysQwjJyZNw+6doXNm6FYMbjgAujb172PBJs2wfPPw5dfOqW2PTtf5uAojH5rWd0j86tM\nbJnLMIys2bQJHngArr4abr3VKZWpU2H5cmjbFvbtC2//+/bBf/4DZ54JFSrA7Nnh7Y/43gEaql1b\n2WHKxDCMY9m/H15+2d3EK1aEv/6Chx92M5Hy5eGHH6BcObjySkgNQ4zVjAwYNgwaNXIKbMYMeOMN\nJ4tRYDFlYhiGQxVGjoTTT4dZs+D33+HNN4+/iZcoAUOHQvXqMGhQaGX4+Wdo3hw++ACGD4f//Q/q\n2abNWMDSTxqG4Z7+u3Z1s5LBgyG3HUtFikCDBnD4cGj6X7YMuneHP/6AV1+Fdu2iY+Q38o3NTAyj\nMLN2Ldx1F9x0k7OPzJyZuyIJJamp8Pjjzqh//vmwZAncfrspkhjElIlhFEb27HE7pM45B+rUcXaR\ne++FokUj0/+hQ/D2284ucugQLFrkZialSkWm/xijTp06lCxZkm3bth1zvmnTphQpUoQ1a9agqnTv\n3p0qVapQpUoVevToEVEZTZkYRmEiI8MtYzVqBCkpMGcO9O4NZctGpn9V+PprOOMM+OknSE6GDz+E\nk06KTP8xiohQr149hg8ffuTcggUL2L9/f+ZWXj7++GO+++475s+fz/z58/n+++/p379/Dq2GFlMm\nhlFY+PlnOO886N/f+Wx8/jnUrh25/mfNgssug6Qkp0B++AEaN45c/zHOXXfdxdChQ48cDxkyhI4d\nOx7Z5jtkyBCefPJJatSoQY0aNXjyyScZPHhwxOQzZWIY8c6KFXDLLdChAzz5JEybBi1aRK7/tWtd\n361bQ8eObjZ01VW51zOOoUWLFuzatYslS5aQnp7OyJEjueuuu45cX7RoEWefffaR47POOouFCxdG\nTD5TJoYRr+zcCU8/7WYjTZs643b79pEzbu/eDc8+6+wydevC0qXOyB+MXUbVvaKESGhe+aVDhw4M\nHTqUCRMm0LhxYxISEo5c27NnDxUqVDhyXL58efbs2RPMcPOEbQ02jHjj8GH45BO3nHTddfDnn84n\nJJL9DxwIL7zgvOfnzYOaNYNvt0wZ106TJnDPPW4XWrVqwbebB6IZoUlE6NChA5dccgkrV648ZokL\noGzZsuzatevI8c6dOykbKVsYNjMxjPhi/Hg3CxkxAsaOhQEDIqtIxo1z/X/+OYweDUOGhEaRAJQs\n6YI99uvndn+dfjpcfz189RUcPBiaPgo4tWvXpl69eowdO5abb775mGtnnHEGc+fOPXI8b948zjzz\nzIjJZjMTw4gHliyBbt3cFt833oAbb4ysr8bChc4es3w5vP46tGkTnv5F4JJL3Ou999zOsL594c47\noX59FwLmzDPdbrEzz3TnIrXdOUIMGDCAHTt2ULp0aQ57TqMiQseOHenTpw+tWrVCVenTpw//+te/\nIiaXKRPDiGW2bYNevVzokR493M21ZMnI9b95M3Tu7Prt2dPF8CpRIjJ9ly3rDPodO8KBA06h/vmn\nU2yDBrm/mzbBaacdVS6Zf085xXnxxyD1/MLLZEY77tSpEytWrKBJkyYAPPjggzz00EMRk8tC0BtG\nLHLokNte+/LLLqJvUhJUrRpZGXr0gD59oEsXZ2ivXDmy/QfCnj2wePFRJZP5d9s2aNjQKZpGjaBR\nI+TOO8MSTbegkumfks15y2eSiSkTIy7JTFL15JMuAOJbb7mn7WiwYYOzVdStG53+g2HPHre7bMkS\n9/rrL+R//zNlgimT4zBlYsQd8+e7YIwbN7oZQcuW0ZYorsju5hqvhFqZxOaioWEUJjZsgIceco5+\nN9/slIopEqOAYcrEMAoqM2Y4X4ozznBJqZYsgUcfjVy6XMPIA6ZMDKMgkZbmdmZdcIHL6dG0Kaxc\n6ZJUVaoUbekMI1vCrkxEpKWILBGRZSLSPZsy73nX54lIU5/zA0Vks4gs8Cv/hogs9sp/LSIVjm/V\nMGKIrVtd9N46deDjj1049pQU5zti6WqNGCCsykREigJ9gZZAY6C9iJzuV6YV0EBVGwIPAf18Lg/y\n6vozHjhDVc8GlgL/DoP4hhF+5s51eUROPRVWrXJe65MnO6fDOHO2M+KbcM9MmgMpqrpKVdOAEUAb\nvzKtgSEAqjodqCgi1bzjqcB2/0ZVdYKqZniH04EQxWswjAhw+LALAXLppXDDDU6RLFvm4mmddVa0\npTOMfBFuS14CsNbneB1wfgBlEoBNAfZxHzA811KGEW1SU53C+OADqFULHnvMpcstXjzakhlG0IRb\nmQS6adt/T3NA9USkJ3BIVT/P6npSUtKR94mJiSRGMre1YWTy55/w/vvwv/+5nB5ffw3nnhttqYwY\nok6dOmzcuJENGzZw4oknHjnftGlT5s2bx8qVK1mxYgUvvvgic+bMoVKlSqxcuTKgtpOTk0lOTg5a\nxnArk/VALZ/jWriZR05lanrnckRE7gFaAVdkV8ZXmRhGRElPd5kE33vPhe94+GG3tffkk6MtmRGD\n+Kbt7dKlC3Bs2l4RoWzZsjzwwAPs27ePl19+OeC2/R+0e/XqlS8Zw20zmQU0FJE6IlICaAeM8isz\nCugIICItgB2qujmnRkWkJfAU0EZVD4RebMPIJzt3wttvOztI797OuL56NTz/vCkSIyhyS9t73nnn\nceedd1I3SuFtwqpMVPUw0AUYBywCRqrqYhHpJCKdvDJjgBUikgL0Bx7JrC8iw4FpwKkislZE7vUu\nvQ+UBSaIyBwR+TCc4zCMXNm2zQU8rFPHORt++ilMn+5Co0cqiq4R1+SWtjfahN2VVlXHAmP9zvX3\nO+6STd322ZxvGDIBDSNYdu1y4U3OOcfZR3xSqRqRYfNmF0D5zz+hRo2sX9WrQ6lSwfUjvUKTo0Vf\nyF8MsMy0vZdeeulxaXujjcVlMIxg2L/fGdWbNXMh4SOZkMpg1y4XOLlvX+jQwUXF37QJ1q93ebqm\nTnWhzTZscPExy5Y9VsFUq3b0FQj5VQKhILe0vdHGlIlh5Je0NJdLJCHBbfc1RRIxDh6Ejz6CV15x\naeZnz3YrjDmRkeFWIzOVy4YNTvEsXw6//hoRsYPGN23vwIEDoy3OMZgyMYz8kJ7uMvyJwODBMZu1\nL9ZIT3fp5Z9/3sW/HD8+cD/PIkVc/rCqVeHss4+/HivPAlml7QVQVQ4ePEhaWtqR9yJCiQjZ7EyZ\nGEZeUYVHHnEL9T/8YE6HEUDVRZr597+hTBkYMsQFECiMZJe2d8qUKVx++eVHzpUuXZrExEQmTZoU\nEbksOZZh5AVVF4QxORkmToRy5aItUdzz++/uI9+61RnZ27QJzyzCkmMdc96SYxlGWHn1VRgzxj0m\nmyIJK4sXu2gzt94Kd9/tcoLdeGPsLEcVNkyZGEagfPihi601fjz4hLQwQsvatXD//W4Z68ILXar2\n++6znGAFHVMmhhEIn37qtg799JPbU2qEnNRUeOop565z0kkukPJTT0Hp0tGWzAgEUyaGkRvffQdP\nPgnjxkGUQlXEM/v2udXD005zfiMLFji9bTnBYgubOBpGTkycCA8+6OwkjRtHW5q44vBhGDgQXnzR\nZSn+5RenUIzYxJSJYWTH9OnQvj188YXzcDdCgqqLwv/MM87f8+uvoXnzaEtlBIspE8PIivnzXZiU\nwYPhssuiLU3cMHmyC3ly6JCLzn/11bY7K14wZWIY/qSkwLXXurtdq1bRliYumDPHORwuW+Yi87dr\nZ0ED4g37Og3Dl3Xr4KqrICnJ3fGMoFi+HO64w+nk6693viPt25siiUfsKzWMTLZudYrk0Ued0d3I\nN5s3u/QuzZtDo0ZuRtKli6V2yS916tShZMmSbNu27ZjzTZs2pUiRIqxevZo33niDJk2aUL58eerV\nq8ebb74ZURlNmRgGuAyJ11wDbdu6bcBGvti1C154wW18K1bMZSp+/nkX+t3IP75pezPxTdubybBh\nw9ixYwc//vgjffv2ZeTIkRGT0ZSJYezb59ZgLroIXnop2tLEJAcPwrvvumzFK1e6kPDvvOMi9Bqh\nIae0vSLCU089xTnnnEORIkU49dRTadOmDb9GMLa+KROjcHPokJuN1K3r7oa2tShPpKfDsGFuKWvC\nBBdpZujQ3HOLGHknL2l7VZWff/6ZM888M2Ly2W4uo/CSng533eVyuQ4caFbhPFBoQ8KH6mEjn9GJ\nA03bm5SUBMC9996bXwnzjCkTo3CiCp06uYBQo0dbFME8EKmQ8AWSKIaoDzRtb9++ffn000+ZOnUq\nxSOYa8cexYzChyp06wYLF8K337qZiZErFhI++vim7b355puPuz5w4EBef/11Jk6cSI0IByS1xzGj\n8NG7t4v+O2WKbTMKgLVrndvNqFHw9NMuba5F8o0e2aXt/eyzz+jZsyeTJ0+mThSMVjYzMQoX773n\nLMTjx0OlStGWpkBjIeELJvXq1eMf//jHkePMjInPPfccqampnHfeeZQrV45y5crxyCOPREyusM5M\nRKQl8A5QFPhEVV/Losx7wLXAPuAeVZ3jnR8IXAdsUdUmPuUrAyOBU4BVwG2quiOc4/Dlq0VfsfPg\nzoDLtzmtDSeWCX0ipV/W/MKFtS6kiNjzQMAMHgxvvglTp0K1atGWpsCSlgZ9+riP6uabXUh4S+ES\nXVauXJnl+WLFipGeng7AihUrIinS8bKEq2ERKQr0Ba4E1gMzRWSUqi72KdMKaKCqDUXkfKAf0MK7\nPAh4Hxh6bMv0ACao6usi0t077hGucfiyZe8WOn7bkXZnBBZmY8rqKRQvUpwOZ3cIqRwLtyzkssGX\n8VeXv2hQuUFI245bvv7abT2aPBlOOSXa0hRYUlLgzjvdpM1Cwht5IZwzk+ZAiqquAhCREUAbYLFP\nmdbAEABVnS4iFUWkmqpuUtWpIlIni3ZbA5lhXIcAyURImaSkpnDmSWcysM3AgMp3+Ca0SiSTpyY8\nRYZmhKXtuGT8eOjc2SW3atQo2tIUSFTd9t6nnnIe6126mGHdyBvhVCYJwFqf43XA+QGUSQA25dDu\nyaq62Xu/GTg5SDkDZnnq8qjPBMYvH8+y1GXUKl8rqnLEDNOmuUftb76Bpk2jLU2BZPt2t0t68WKY\nNAmaNMm9jmH4E05lEuiGbP/nn4A3cquqiki25TMddwASExNJTEwMtOksSUlNoUGl6CmT9Ix0nhz/\nJK9d+RpPT3g6anLEDHPnur2sn34KF18cbWkKJFOmQMeOzldkyBAzrhdGkpOTSU5ODrqdcCqT9YDv\n43Mt3MwjpzI1vXM5sTlzKUxEqgNbsivoq0xCQcr2FFrWbxnSNvPCoLmDqFiqIjc1usmUSW4sXeri\nnn/wgQvgaBxDWprb7jtwIAwYYGlbCjP+D9q9evXKVzvh3Ao0C2goInVEpATQDhjlV2YU0BFARFoA\nO3yWsLJjFHC39/5u4NvQiZwzKakp1K9cP1LdHcPug7t5fvLz9LmmzzFRQo0sWLPGhZLv3RtuuSXa\n0hQ4UlLcRG3OHDd5M0VihIKwKRNVPQx0AcYBi4CRqrpYRDqJSCevzBhghYikAP2BI5uiRWQ4MA04\nVUTWikhmkJlXgatEZClwuXccEVJSU6JmM3n919e5vO7lNKthuchzZPNmp0i6doX77ou2NAUKVbc7\n+oILXEiyH36AkyNmcYwNRKTQvEJNWP1MVHUsMNbvXH+/4y7Z1G2fzflU3HbjiJK6P5W09DSqlol8\nTO11u9bx4awPmdNpTsT7jim2b3dLWu3bw+OPR1uaAoUZ2XMnqzhXRuCYx1uAZO7kisYSU89JPel8\nbmdqV6gd8b5jhr174brr4J//dNmZjCNMmeK82KtVgxkzTJEY4cFicwXI8u3R2RY8e8Nsxi8fz9Iu\nSyPed8xw8KDbtdWoEbz1ljlIeJiR3YgkpkwCJBr2ElWl2/hu9ErsRbmS5SLad8xw+DDccQeULw8f\nf2w5STwyPdlPPNEZ2c02YoQb++UFSEpqCvUrRXYn13d/fcff+/7mvqZmSM6SjAx48EHYswc++8xy\nkmBGdiN62K8vQFJSU7j3nMhlLTuUfoinJzzN+9e+T7Ei9jUdh6rbsbVsmQuTUrJktCWKOmZkN6KJ\nzUwCJNLLXB/N+oh6lepxTQNzuMuSpCT4+WeXJfGEE6ItTdQxI7sRbeyRNwB2H9zNroO7qF6uekT6\n275/O71/7s2kuydFpL+Yo08fGDHChZKvWDHa0kQVM7IbBQVTJgGwYvsK6leuH7HcIb1/7s1NjW7i\nzJPOjEh/McWAAS7B1dSpLmNTIcaM7EZBwpa5AiCSS1zLU5czZN4QXvznixHpL6b44gt47jkXUr5W\n4Y2abEZ2oyBiM5MAiGS04O4/dadri66cXNbuDscwdqxLsjFhApx6arSliRpmZDcKKjYzCYBIBXj8\nZc0vzFg/gycueCLsfcUUU6e6OOnffgtnnRVtaaKGGdmNgowpkwBI2R7+Za4MzeCJcU/w8hUvU7q4\nJZU4wh9/QNu28Pnnbl0nBgh1iKe0NOjZE26/Hfr1cyYjyztiFDRsmSsAImEzGfHnCBTljiZ3hLWf\nmGLxYhdvq39/Fwm4gHPwINx7r5s59OkTmjbNyG7ECjYzyYX9afvZundrWNPk7k/bz78n/ps+V/eJ\n2I6xAs+qVXD11fDaay7uVgFnxw5o2dItRW3bFnx7ZmQ3Yg2bmeTCyh0rqVOxDkWLFA1bH+/8/g7n\nVj+XS065JGx9xBQbN8KVV8LTTztbSQFn7Vrn33H55dChg1MowWBGdiMWscfgXAj3EteWvVt467e3\neO3K18LWR0yRmupmJPfcA//3f9GWJlcWLICLLoK774Z33oGiQT5zmJHdiFVsZpIL4Q7w+MLkF+hw\nVgcantgwbH3EDLt3u0f8a65xFucCTnIy3HabUyJ3BGnqMk92I9YxZZILKakpnF7l9LC0vXDLQr5c\n/CV/dfkrLO3HFAcOwI03ukfxN94o8DlJRo50E6cRI9zyVjCYkd2IB2yZKxfCucz11ISn6HlJTyqX\nrhyW9mNXFX6gAAAgAElEQVSGtDS377VKFfjoowKvSPr0gSefhJ9+yr8iOXwYVqxwwzUjuxEP2Mwk\nF8KVYXH88vEsS13Gt7d/G/K2Y4qMDLjvPjh0CP73v+CNDmEkIwO6dXPRXH79FWrnkkX54EG3KS0l\n5fjX2rXOLtK4sRnZjfjAlEkOHEo/xPpd6zml4ikhbTc9I50nxz/J61e+TomiJULadkyh6taKVq+G\nH3+EEgX3szhwwBnZN26EX36BSpWyLicCY8ZAnTqubO3a0KAB1K/v/l5zjftbt66lYDHiC1MmObB6\nx2oSyieE/IY/aO4gKpaqyI2NbgxpuzHHs8/C9Onu0bxMmWhLky3btztzzkknuVlJqVLZl23TBqpX\nh3r1nCIpXjxychpGNDFlkgPh2Mm1++Bunp/8PKPaj0IKuG0grLz+OnzzjUtwVb58tKXJlrVr4dpr\nndtLnz65p5ivUCEmnPUNI+TkaoAXkYtFZIKILBORld5rRSCNi0hLEVni1e2eTZn3vOvzRKRpbnVF\npLmIzBCROSIyU0TOC0SW/BAO4/vrv77OFfWuoFmNZiFtN6b4+GMXZGrCBGd0L6AsWAAXXuhCpLz9\ndu6KxDAKM4HMTAYAjwN/AOmBNiwiRYG+wJXAemCmiIxS1cU+ZVoBDVS1oYicD/QDWuRS93XgOVUd\nJyLXesf/DFSuvBBqZbJ251o+nPUhczvNDVmbMcfw4fDii85JIyEh2tJky+TJ0K4dvPsutG8fbWkM\no+ATyLPWDlUdq6qbVfXvzFcA9ZoDKaq6SlXTgBFAG78yrYEhAKo6HagoItVyqbsRqOC9r4hTNmEh\n1NGCe07qSedzO1OrQiFN7DR6NHTt6oztDSKTHyY/jBjhFMnIkaZIDCNQApmZTBaRN4CvgYOZJ1X1\nj1zqJQBrfY7XAecHUCYBqJFD3R7ALyLyJk4Zhi0u+fLU0G0Lnr1hNhNWTGBpl6UhaS/mSE52W4BH\nj4YzC2Y6YlVnF3nnHZg40bbrGkZeCESZtAAU8F/kz21pKdCsDnm1Qg8AHlPVb0TkVmAgkKXJMykp\n6cj7xMREEhMTA+4kPSOdVTtWUa9SvTyKdzyqSrfx3eiV2ItyJcsF3V7MMXOmizsyciQ0bx5tabIk\nIwOeeMI5Ik6bVqizAhuFjOTkZJKTk4NuJ1dloqqJ+Wx7PeD7k6yFm2HkVKamV6Z4DnWbq+qV3vsv\ngU+yE8BXmeSVtbvWctIJJ1GqWA77QAPku7++Y9v+bdzX9L6g24o5Fi6EG26ATz6Bf4bFtBU0Bw64\n4MRbtrikjtn5kBhGPOL/oN2rV698tRPIbq6KIvK2iMz2Xm+JSIXc6gGzgIYiUkdESgDtgFF+ZUYB\nHb1+WuDsM5tzqZsiIpd57y8HwrJuFKpUvYfSD/H0hKd586o3KVakkO3EXrHCeen16QOtW0dbmizZ\nvt2JKALjxpkiMYz8EsjdbSCwALgVtyTVARgE3JxTJVU9LCJdgHFAUWCAqi4WkU7e9f6qOkZEWolI\nCrAXuDenul7TDwEfiEhJYL93HHJSUlNoUCl4e0n/2f2pV6ke1zS4JgRSxRAbNjiHi549gw+pGybW\nrHE+JNdcA2++aVt/DSMYAlEm9VXVV3Ekici8QBpX1bHAWL9z/f2OuwRa1zs/i+MN+SEnVNuCZ2+c\nzbzOAX1c8cO2bU6RPPggPPxwtKXJkvnzXUbgrl2drcQwjOAI5Flsv4gcSQEoIhcD+8InUsEgFAEe\ni0gRHmj6AGeeVDB3L4WFXbtc/tobboAePULW7B8b/6BXcv7Wcv2ZNMl5tL/xhikSwwgVgcxMOgND\nfewk24G7wydSwSAUM5Pe/+xduMLL79/vbCPNmsErr4Ss2aHzhtJlTBcql67MC4kvBNXW8OHwr3+5\nAMV52NxnGEYuBLKbay5wloiU9453hV2qKJOhGSxPXR60Ab5QOSempcGttzqv9g8+CElOkrT0NJ4Y\n9wQ/Lv+Rz9t+TpcxWa6IBoSqs4u8/76bmRRQVxfDiFmyVSYi0kFVh4lIN3x8RsRFJ1RV7RMJAaPB\nxt0bKV+yPGVLlI22KLFBerrbWysCgweHxJK9ac8mbvviNsqXLM/MB2ey48COoMTr2tWFSJk2DWrW\nDFo8wzD8yOlXnxkTvFw2r7glnNkV4w5VeOQR2LzZrR2FIOb67+t+57z/nsfldS9nVPtRVCxVMd9t\nHTjgQqPMn+98SEyRGEZ4yHZmkrnrSlWTIiZNAcGUSYCoQvfuMGeOiz9SunTQTX48+2OenfQsn7T+\nhNanBeebkprq8pBUr+58SCwZlWGEj0CcFl8XkfIiUlxEJorI3yLSIRLCRYtwpeqNO1591aUVHDsW\nygU3WT14+CAPjnqQd35/h6n3Tg1akaxZAxdfDOed54zupkgMI7wEsrh9jWd0vx5YBdQHngqnUNHG\nZiYB8OGHLkTK+PFw4olBNbVu1zouHXwpqQdSmf7AdE6rclpQ7c2bBxddBA89BG+9Zc6IhhEJAvmZ\nZS6FXQ98qao7CTyIY0xiyiQXPv3Ubf396SeoUSOopqasmkLz/zbnpkY38eWtXwYdCHPiROcv+dZb\n8PjjQTVlGEYeCMTP5HsRWQIcAB4WkZO893GJqoYlXW/c8N138OSTbn9t3br5bkZVeX/G+/xn6n8Y\ndtMwrq5/ddCiffaZc0L84gu47LLcyxuGEToC8TPp4eUz2aGq6SKyl+OTXMUNW/dtpXjR4lQqbRH/\njmPiRBciZcwYaNw4383sS9tHp9GdWLB5Ab/d/1vQYf5VnTd7375ORPMhMYzIk5OfyRWqOlFE2uIt\na3k+JnjHX0dAvohjS1zZMH26Szv4xRfOwz2frNqxiptG3kTjqo2Zdv80yhQvk3ulLFBVfkz5kaQp\nvSiy7Hr2jn3WfEgMI4rkNDO5FJgI3EDWNpK4VCahzK4YNyxYAG3aOIfEINaPJiyfQIdvOtDj4h78\n6/x/Ifnwkj+qRJLYc3Av25c3oOjurfw5FSoEkhjBMIywkJOfyQve33siJk0BIFSh5+OGlBQXuPHd\nd6FVq3w1oaq8Me0N3v79bUbcMoLEOon5amfHgR1cMOACdh/aTbdzX2BAt1soedb7XNhmxXGKZNfB\nXZQrUS5fCsswjLwTiJ/JyyJS0ee4koj0Dq9Y0SNluy1zHWHdOrc1KinJuZHnA1Wl67iujPhzBDMe\nmJFvRVKpVCWa1WhG1xZdGd1qAW/ccxsXXlCEjh2gaNGj5ZZtW8YDox6gyutVmLZ2Wr76Mgwj7wSy\nNbiVqh4JjKSq24HrwidSdAlVhsWYZ+tWp0gefdQZ3fOBqvL0hKeZumYqk+6eFFTgywqlKvBTx584\n7XA7Lrm4CJ07O6N75sRj7qa5tPuyHRcOvJBa5WtxdrWzOXA4bjcdGkaBIxBlUkREjiRCF5HSQInw\niRRdzAAP7NzplrbatnXbgPOBqtJzUk8mrJjAhA4TgoqvlclPP8HVV8Pbb7sw8pkMnT+UVp+1onmN\n5qx4bAUvJL5A+ZLlg+7PMIzACcTP5DNgoogMxKXtvRcYGlapokTq/lTS0tOoWqZqtEWJHvv2wfXX\nw4UXwksv5buZpOQkvl/6PZPvnhySnC6ffgrdusGXX8Kllx49f3X9qylXshx3NLmDUsVKZd+AYRhh\nJRA/k9dEZD5whXfqRVUdF16xokPmTq7CYrTdsncLVctUPTreQ4fcbKRuXWdwz+fn0Pvn3nyx6AuS\n70mmSpkqQcmoCq+9Bv36OT/JM8449vrpVU/n9KqnB9WHYRjBE2jUosXAOFV9EpgqInEZgr4wBXic\nunoqdd+ty5xNc9yJ9HS46y4oVQoGDsx3QKvXfnmNYfOHMbHjRE464aSgZExPh//7P/j8c5eHxF+R\nGIZRcAhkN9dDwBfAR96pmsC34RQqWhQWe8mM9TNo+7+2lC5WmkPph9zjf6dOLmb78OFQLJDVz+Pp\n81sfPpnzCZM6TqJ6uepBybh/v0vcuGiRy0OSkJD/tjI0g5F/jiRDM4KSyTCM7Ank8fNR4GJgF4Cq\nLgWCe+QsoBQGZTJ301xuGH4Dg9oMcmNVdUb2hQvh22/dzCQfvDf9PfrO6MukjpNIKB/EnR/Ytg2u\nvNKJMnZscM6Ia3au4YqhV9B3Zl92HtgZlFyGYWRPIMrkoKoezDwQkWLEadTgeA/wuHDLQq797Fo+\nbPUh153qdncnvDsIJkxw8bbK5i9Ncb+Z/ejzW5+gt/8CrFrlwsdfdJEzugeTh+TLRV/S7ONmXFP/\nGpLvTrZ4a4YRRgJRJlNEpCdQRkSuwi15fR9I4yLSUkSWiMgyEemeTZn3vOvzRKRpIHVF5P9EZLGI\n/CkirwUiSyDE88xk2bZlXP3p1bx51Zu0bdwWgNsmbqLKV2NdTpJK+bvRfvLHJ7zyyytMunsSdSrW\nCUrGOXNcQqtHHoHXXw8uD0lRKcqU1VMYd9c4elzcg6JFiuZeyTCM/KOqOb5wCuch4Evv9SAgAdQr\nCqQAdYDiwFzgdL8yrYAx3vvzgd9zqwv8E5gAFPeOq2bTv+aFXQd2aenepTU9Iz1P9aJF/Xfr67Jt\nywIqm7ItRWu/XVs/mf3J0ZODB+vGyiV09m9f51uGwXMGa80+NXXp30vz3UYm48erVq2q+uWXQTel\nqqprdqzRfYf2haYxwyhEePfOXHWD/ytHS6u3pPWnqjYCPs6jnmoOpKjqKq+tEbjQ9Yt9yrQGhnh3\n/ukiUlFEqgF1c6j7MPCKqqZ59bbmUa4sWbF9BfUr16eIxE9avvSMdN6f8T69f+7Nfy7/D/f/4353\n4euvoUcP/vV4I7rWzJ+h/LP5n/HMpGeY1HESDU9sGJScw4Y5s81XX8EllwTV1BGCXW4zDCNv5KhM\nVPWwiPwlIqeo6uo8tp0ArPU5XoebfeRWJgGokUPdhsClIvIyLknXk6o6K4+yHUe8LXHN2zSPB75/\ngLIlyjLt/mmceuKp7sL48dC5M4wbx+rZD+er7ZF/juSpCU+58CZBpNhVdWnk+/eHyZODSpFiGEaU\nCWQPaGVgoYjMAPZ651RVW+dSL1AjfV4944oBlVS1hYicB/wPyDK7UlJS0pH3iYmJJCYmZttovEQL\n3p+2n15TejFwzkBevfJV7j3n3qNOidOmwZ13wjffQNOmMDvv7X+16CseH/c44+8aT+Oq+b/7p6fD\nY4/BL784sYLM/msYRj5JTk4mOTk56HYCUSbPen99b/qBKIr1gO9aQy3cDCOnMjW9MsVzqLsOL5eK\nqs4UkQwROVFVt/kL4KtMciMlNYVza5wbcPmCyE8rfqLz6M40q9GMBQ8v4OSyJx+9OG8e3HSTW1O6\n+OJ8tf/dku94ZMwjjLtrHE1ObpJvOffvhzvugN274eefLQ+JYUQT/wftXr165audnDItlgY6Aw2A\n+cDATDtFgMwCGopIHWAD0A5o71dmFNAFGCEiLXCpgTeLyLYc6n4LXI7bZXYqUCIrRZJXUran0O7M\n/IVZjzbb9m2j2/huTF41+Zhtv0dYuhSuvRY++MAFcMwjew/t5ePZH/PKL68w5s4xnFPtnPzLug1u\nuAHq1YORI6FE3IYMNYzCRU7W5iHAuThF0gp4My8Nq+phnKIYBywCRqrqYhHpJCKdvDJjgBUikgL0\nBx7Jqa7X9ECgnogsAIYDHfMiV3bEos1EVfls/mec8eEZVCpViYWPLDxekaxZ40LJ9+4Nt9ySp/ZT\n96fy0pSXqPdePX5Z+wuT7p5Esxr5T9m7cqXzH7nkEhg61BSJYcQTOS1zna6qTQBEZAAwM6+Nq+pY\nYKzfuf5+x10CreudTwM65FWWnNiftp+te7dSq3xs7QBq/1V70jLS+L7995yXcN7xBTZvdoqka1e4\n776A212/az1v//42A+cM5MZGN5J8d3LQwRT/+MPNSP79b+iS5TduGEYsk5MyOZz5xtvVFQFxosPK\nHSupU7FOTDm2nV3tbJrXaM4TFzxB8aLFjy+wYwdccw20bw+PPx5Qm0u3LeWNX9/gq8VfcffZdzOv\n87yQbLEdP97FkPzoI7j55qCbMwyjAJKTMjlLRHb7HJf2OVZVjZvsQ7G4xPXVbV9lf3HvXrjuOkhM\nhBdeyLWtPzb+wau/vMrkVZN59LxHWfp/S4MOHZ/JkCHw9NPOtSWfdn/DMGKAbJWJqsbOY3qQxFVM\nroMH3a6t006DPn1yzUny4PcPsn3/drpd0I2BbQZStkT+4nP5owqvvAIffwzJyXC6pRwxjLgmf7HG\n44yU1BROrxIHd7vDh92e2/Ll3V08l+BWtza+lUqlK3FnkzspWSyIiIp+pKc7u8hvv5kPiWEUFkyZ\n4JTJDafeEG0xgiMjAx58EPbsgVGjAspJ0u3CbiEXY98+p8/27nU+JOXjZjHUMIyciJ9AVEEQ8xkW\nVd2OrWXLnHEimLjtQfD333DFFVCuHPzwgykSwyhMFHplcij9EOt3reeUiqdEW5T8k5TkpgGjR8MJ\nJ0RFhBUrnA9JYqL5kBhGYaTQK5PVO1aTUD6BEkVj9O7Xpw+MGAHjxkHFilERYfZst1Prscec0T2O\nd5EbhpENhddm4nKexOS24CMMGADvveeSpJ8UnUzKP/4IHTo4e/9NN0VFBMMwCgCFd2YyZgzcc0/s\nbgv+4gt47jnnEVgrOp77gwfDPfe41PGmSAyjcFN4ZybJybBjR2zOTMaOdXtvJ0yAU0+NePeq8PLL\n8Mkn7mNs1CjiIhiGUcAovDOTGTMAFy04ppTJ1KnQsaObDpx1VsS7P3wYHn4YvvzS+ZCYIjEMAwqr\nMklPd1ZjYHlqDG0L/uMPaNsWPv8cLrgg4t3v2+dia61YAVOmQPX8Zfw1DCMOKZzKZPFi2LsXVWXV\njlXUq5RlosaCxZIlLt5W//4uEnCE2boVLr/cbRgbPdp8SAzDOJbCqUxmzIBy5dh/eD8nnXASpYqV\nirZEObNqFVx9Nbz2WlQs3Zk+JJdf7gI3mg+JYRj+FF5l0qwZe9P2Ur9yAd/JtXEjXHklPPWUs5VE\nmEwfkq5dndHdfEgMw8iKwqtMmjdnz6G9NKhUgO0lqaluRnLPPfB//xfx7seOdVl+P/zQGd0NwzCy\no/Apk/37nf3hnHPYe2hvwTW+79kDrVq5BFc9e0a8+0GD4N574bvv4MYbI969YRgxRuHzM5k71yXX\nKF2afWkFVJkcOABt2kCTJvDGGxFdW1J16eIHDXI7tk47LWJdG4YRwxQ+ZTJjBpzn8qXvLYjKJC0N\nbr8dqlRxeW4jqEgOH4ZHHoFZs5wPSbVqEevaMIwYp/Atc3n2kgzNYO+hPBjgp0w5Es8rbGRkwH33\nwaFDMGwYFI1cssu9e91GsdWr3VBNkRiGkRcKnzKZOROaN2f7/u0UK1I8sDS1n37qYqtv2xY+uVRd\n2N3Vq517eQT332b6kFSu7HxIypWLWNeGYcQJhUuZpKa6rbann87G3Rs5oUQAuT+WLXP7YosXD69s\nzz7r8tx+/z2UKRPevnxYvhwuvND5QQ4eHP5hGoYRn4RVmYhISxFZIiLLRKR7NmXe867PE5GmgdYV\nkW4ikiEilQMWaNYsOPdcKFqUjXs2ckLxXJTJwYPOfpGUFF6X79dfh2++cTlJKlQIXz9+zJwJl1wC\n3bo5o7v5kBiGkV/CpkxEpCjQF2gJNAbai8jpfmVaAQ1UtSHwENAvkLoiUgu4ClidJ6FmzjxifN+0\nZ1PuM5MePaB2bWeVDhcffwz9+rkIwFWqhK8fP8aMcTuPP/oIOneOWLeGYcQp4ZyZNAdSVHWVqqYB\nI4A2fmVaA0MAVHU6UFFEqgVQtw/wdJ4l8ozvQO4zk++/d/nUBwwI3yP7iBHQq5dTJAkJ4ekjCwYO\ndHb+UaOgdeuIdWsYRhwTTmWSAKz1OV7nnQukTI3s6opIG2Cdqs7PkzSqMH36UWWSk81k3Tp48EEX\nnbdy4KtoeeKHH+Dxx12qwgaR2Z6s6nRX794uZXwUAg8bhhGnhNPPJNB9tAE/9otIaeAZ3BJXrvWT\nkpKOvE9s3JhEVahdG1X1ZiZZJOM4fBjuuMPtrLrookBFyxvJyc69fPRo55gYATLzkPzxh/mQGIZx\nlOTkZJKTk4NuJ5zKZD3gm0+2Fm6GkVOZml6Z4tnUrQ/UAeaJW3qqCcwWkeaqusVfAF9lwtdfu1mJ\nCFv3bqFYkWKUKJrF1qXevd223O5Z7hcInpkz4bbbYOTII7OkcLN3L7Rr5xRKcrJt/TUM4yiJiYkk\nJiYeOe7Vq1e+2gnnMtcsoKGI1BGREkA7YJRfmVFARwARaQHsUNXN2dVV1T9V9WRVrauqdXEK5h9Z\nKZLj8PF8T0lNoXq5LDI7JSe7fCHhchhcuBBuuMHlu/3nP0PffhZs2eK6qlrVmYFMkRiGEQ7CpkxU\n9TDQBRgHLAJGqupiEekkIp28MmOAFSKSAvQHHsmpblbdBCyQj/F9eepyqpf1UyZ//w0dOrigVOFI\nIbhihQvB+9ZbEbN6p6S4lbqWLZ3R3XxIDMMIF2GNzaWqY4Gxfuf6+x13CbRuFmUCS5GYkeESc/jM\nTE4rWx3Yn9mQC/Pevr2784aaDRucV+Azz8Cdd4a+/SyYMcPFikxKgk6dItKlYRiFmMLhAf/XX26d\n58QTAUjZnkL1sj4W6HffdTOT//wn9H1v2+YUyYMPRiwpyA8/HM3wa4rEMIxIUDiiBvvYSyDTZnIW\nsNJ5xb/8sts2HOp1oF273EznhhucA2QE+OQTeO45Zx9p0SIiXRqGYRQiZeKzcyolNYVqp1RzN/vb\nb4cPPoC6dUPb5/79zjbSrBm88kpo286CTB+SYcOcD0nDhmHv0jAM4wiFY5nLR5mk7k8lLT2NCiUr\nuN1bV1wBt94a2v7S0lybCQlOUYU56NXhw24VbfRo50NiisQwjEgT/zOT9HRYsACauhiSy1OX06By\nA6RSJTjnHHj77dD2t2+fc3oUcWF4i4RXX+/d69xWVJ1uLBtARH3DMIxQE/8zkx07XEh3L6z78u1O\nmXDZZW6HVyjDvW/e7PKelC8PX30V9r24W7a47k4+2eVqN0ViGEa0iH9lkpp6THytlNSUo6l6Qzlr\nWLzYBbtq1QqGDAl7cquUFJeHpFUrF4vSfEgMw4gmhVuZhIrJk90U4YUXnGNHmG0kM2a4PCTduzuj\nu+UhMQwj2sS/Mtm+/ThlUr9SgHnfA2HoUBf4avhwuPvu0LWbDaNHw/XXw3//64zuhmEYBYH4N8CH\na2aiCi++6IzsycnQuHHwbebCf/8Lzz/vfEjOPz/s3RmGYQRM4VAmlSoBsPvgbnYd3JV1kMe8cOiQ\nmxYsWuTytoc5nruqWz377DPzITEMo2BSOJSJNzNZsX0F9SvXp4gEsbq3fTu0bet2bCUnwwm5pP4N\nkrQ0FxJlwQL49Ve3c8swDKOgEf82Ex9lEvQS16pVLgzv2We7rb9hViR79rhgjZs3Oxu/KRLDMAoq\nhU+ZVApCmVxzDXTu7Bwdw5HvxIdMl5UaNcyHxDCMgk+hUyb1K+dzJ9e557qkII89FkLhsmbZMudD\nkrlrq1j8L0YahhHjxP9tyleZbE+h3Znt8tfOuHEhFCp7pk+HG2+El16CBx6ISJeGYRhBU7iUSTgc\nFkPI99/Dffe53cbXXRdtaQzDMAKn0Cxz7U/bz9a9W6lVvla0JcqS/v3hoYdgzBhTJIZhxB7xPTNR\ndVt5K1Vi5Y4U6lSsQ9Ei4TWc5xVVF4Xl889h6lRoUHAnToZhGNkS38pk924oVQpKlCiQS1yZPiR/\n/unykJx0UrQlMgzDyB/xrUx84nIVNGWyZ4/Ln1WkiPMhCbPLimEYRliJb5uJ/7bgUAZ4DIJNm1w6\nlZo1nQ+JKRLDMGKd+FcmXlyugjIzWbrU+ZC0aQMff2w+JIZhxAdhVyYi0lJElojIMhHpnk2Z97zr\n80SkaW51ReQNEVnslf9aRCpk2bnPzORIhsUo8vvvcOml0LOni/5reUgMw4gXwqpMRKQo0BdoCTQG\n2ovI6X5lWgENVLUh8BDQL4C644EzVPVsYCnw7ywF8JTJofRDrN+1nlMqnhLqIQbMqFFwww3Oif7+\n+6MmhmEYRlgI98ykOZCiqqtUNQ0YAbTxK9MaGAKgqtOBiiJSLae6qjpBVTO8+tOBmln27imT1TtW\nk1A+gRJFw5tKNzs++siF9BozxqXZNQzDiDfCvWKfAKz1OV4H+Kd1yqpMAlAjgLoA9wHDs+w9NRWq\nVo2avUQVnnsORo50PiT1C4b93zAMI+SEW5logOXyZT0QkZ7AIVX9PKvrST/9BLVqMX3pZErVL5Wf\nLvJNWprLn7V4sfMhqVo1ot0bhmEERHJyMsnJyUG3E25lsh7wjV9SCzfDyKlMTa9M8Zzqisg9QCvg\niuw6T6pTBzp04F+lp0TUXrJ7t/MhKV4cJk2yrb+GYRRcEhMTSUxMPHLcq1evfLUTbpvJLKChiNQR\nkRJAO2CUX5lRQEcAEWkB7FDVzTnVFZGWwFNAG1U9kG3vns0kZXvklrk2bXJ5SGrXhm++MUViGEbh\nIKzKRFUPA12AccAiYKSqLhaRTiLSySszBlghIilAf+CRnOp6Tb8PlAUmiMgcEfkwSwE8ZbI8NTLb\ngv/6y/mQ3HijC9xoPiSGYRQWRDVQs0ZsISKqNWqQ/ts0Thh6Gjt67KBUsePtJt9957IaPvRQcP39\n9hvcdBO88grce29wbRmGYUQLEUFV82zHjm8P+O3bWVdsHyedcFKWikQVevWCuXOD6+bbb6F1axg0\nyBSJYRiFk/hWJhkZLNu/LttUvb//DnPmBNdFv37wyCMwdixce21wbRmGYcQq8b2qX6kSKduX06BS\n1vaSDz7If/4QVXj2WfjiC/jlF6hXLwg5DcMwYpz4nplUrpytw+LmzfDDD3DPPXlv9tAhV2/iRPj1\nV1MkhmEYca9Msgvw+MkncMstR4IKB8zu3XD99S5VyqRJ5oxoGIYBhUCZZDUzOXzYxct69NG8Nbdx\no6gS35MAAAjUSURBVMtDUq8efP01lCkTQlkNwzBimLhWJlq5EstTlx9ngB81Ck45Bc45J/C2lixx\nPiRt2zqju/mQGIZhHCWub4l7ypakQqkKlC1R9pjzffvmbVYybRrcfDO8+mr+bCyGYRjxTlwrk79L\nph+XqnfRIhd8sW3bwNr45hvo1AmGDYNrrgmDkIZhGHFAXCuTDcUPHGcv+eADF823RACpTT74AF5+\n2fmQnHtumIQ0DMOIA+JamawpuocGlZsdOd61C4YPhwULcq6nCs8844zsv/wCdeuGWVDDMIwYJ66V\nSYpsp6HPzGToULjiCkhIyL7OoUPwwAOwbJnzIalSJQKCGoZhxDhxvZtrSfrmI8tcqm7ZqkuX7Mvv\n2gXXXQc7dzqHRFMkhmEYgRHXymR+2rojBvhJk6BoUbj00qzLbtjgfEgaNICvvjIfEsMwjLwQ18pk\nT9niVCrtXNwzZyWSRWDlxYudD8mtt8KHH5oPiWEYRl6J69vmydUbArBmDSQnO5uJP3v3umuDB8Pd\nd0dSOsMwjPghrpVJ/SpOmfTvDx06QNmyx5e54w63vNW8eYSFMwzDiCPiWpk0qNSAgwddUMeff866\nTEJCzru7DMMwjNyJa5tJg8oN+OILOPtsOO20aEtjGIYRv8S9MslrHC7DMAwj78S1Mtm9pj4bN7r8\nI4ZhGEb4iGtl8vknVXn4YedfYhiGYYSPsCoTEWkpIktEZJmIdM+mzHve9Xki0jS3uiJSWUQmiMhS\nERkvIhWz6/+7b4X77w/tmAzDMIzjCZsyEZGiQF+gJdAYaC8ip/uVaQU0UNWGwENAvwDq9gAmqOqp\nwETvOEtat47ftLrJycnRFiFsxPPYwMYX68T7+PJLOGcmzYEUVV2lqmnACKCNX5nWwBAAVZ0OVBSR\narnUPVLH+3tjdgLkFIcr1onnf+h4HhvY+GKdeB9ffgmnMkkA1vocr/POBVKmRg51T1bVzd77zcDJ\n2Qlw3nl5F9owDMPIO+FUJhpguSyiZWVZ5rj2VFXz0I9hGIYRLlQ1LC+gBfCjz/G/ge5+ZT4Cbvc5\nXoKbaWRb1ytTzXtfHViSTf9qL3vZy172yvsrP/f8cIZTmQU0FJE6wAagHdDer8wooAswQkRaADtU\ndbOIbMuh7ijgbuA17++3WXWuqoHMeAzDMIwQEDZloqqHRaQLMA4oCgxQ1cUi0sm73l9Vx4hIKxFJ\nAfYC9+ZU12v6VeB/InI/sAq4LVxjMAzDMAJDvCUhwzAMw8g3Me0BH4xTZCyQ2/hEpJGI/CYiB0Sk\nWzRkDIYAxnen973NF5FfReSsaMiZXwIYXxtvfHNEZLaIXB4NOfNLIL8/r9x5InJYRG6OpHzBEMB3\nlygiO73vbo6IPBsNOfNLgPfORG9sf4pIcq6NhssAH+4XbvkrBagDFAfmAqf7lWkFjPHenw/8Hm25\nQzy+qkAzoDfQLdoyh2F8FwAVvPct4/D7O8HnfROcb1XUZQ/V+HzKTQJGA22jLXcIv7tEYFS0ZQ3j\n+CoCC4Ga3nGV3NqN5ZlJfp0is/VLKWDkOj5V3aqqs4C0aAgYJIGM7zdV3ekdTgdqRljGYAhkfHt9\nDssCf0dQvmAJ5PcH8H/Al8DWSAoXJIGOLVY3+QQyvjuAr1R1HYCq5vq/GcvKJL9OkbFyQwpkfLFM\nXsd3PzAmrBKFloDGJyI3ishiYCzwWIRkCwW5jk9EEnA3qX7eqVgx0Aby3SlwobdMOUZEGkdMuuAJ\nZHwNgcoiMllEZolIh9wajeVMi4H+Y/o/PcTKP3SsyJlfAh6fiPwTuA+4KHzihJyAxqeq3wLfisgl\nwDAgVtK4BTK+d4AeqqoiIsTOk3wgY/sDqKWq+0TkWpyLwqnhFStkBDK+4sA/gCuAMsBvIvK7qi7L\nrkIsK5P1QC2f41o4DZtTmZreuVggkPHFMgGNzzO6/xdoqarbIyRbKMjT96eqU0WkmIicqKrbwi5d\n8AQyvnNxPmQAVYBrRSRNVUdFRsR8k+vYVHW3z/uxIvKhiFRW1dQIyRgMgXx3a4G/VXU/sF9EfgbO\nBrJVJlE3BgVhRCoGLMcZkUqQuwG+BbFlwM11fD5lk4g9A3wg319tnKGwRbTlDdP46nN0e/4/gOXR\nljuU4/MrPwi4Odpyh/C7O9nnu2sOrIq23CEeXyPgJ5yxvgywAGicU7sxOzPRIJwiY4FAxudFWJ4J\nlAcyRORfuC98T9QED5BAxgc8D1QC+nlPt2mq2jxaMueFAMfXFugoImnAHuD2qAmcRwIcX0wS4Nhu\nAR4WkcPAPuLsu1PVJSLyIzAfyAD+q6qLcmrXnBYNwzCMoInl3VyGYRhGAcGUiWEYhhE0pkwMwzCM\noDFlYhiGYQSNKRPDMAwjaEyZGIZhGEFjysQw8omIpHshuueLyNciUjbE7a8Skcre+wLvO2QUbkyZ\nGEb+2aeqTVX1LGAX0CnE7Ws27w2jwGHKxDBCw2+48CiISH0RGetFW/1ZRE7zzp8sIt+IyNz/b++O\nWaMKojAMv58RMYL+ARtLRQgEi6SMTUpREJt0ikia5C/YiL1FCn+DYKtgSB8sggZBEGKdIhEsYncs\nZpCk0GKHxSy8D2yxw9y9e6uPcwfO6Z/lvv62791P8vQ/PoM0sZltpyKdF0nmgFVguy+9Bp5V1bck\nS8AWrfvqK2Cnqh4kuUCbYQLwuKqOk8wDu0ne1Gw1tZRspyJNqvdl+kybBfGd1kz0CnAIfD219VJV\n3U5yCFyvNpDo9O88B+73rzeA1araTXIA3KmqoyQ/q+rqNJ9HGmFlIk3upKoWe0XxnjYI6gPwo6oW\n/3LNmZkeSVZoVctyVf1KsgNcnuJ/lqbCMxNpULWZDxvAC1r334MkDwHSLPSt28B6X59Lco3W8fm4\nB8lNWnUjzRzDRJrcn3fEVbVHm73yCFgDniTZA/aBe33bJnA3ySfgI3ALeAdcTPIFeEk7yP/nvaTz\nyDMTSdIwKxNJ0jDDRJI0zDCRJA0zTCRJwwwTSdIww0SSNMwwkSQNM0wkScN+A9lxaIQLm4GcAAAA\nAElFTkSuQmCC\n", "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "result = gl.recommender.util.compare_models(test_set, [popularity_model, item_sim_model, factorization_machine_model],\n", " user_sample=.1, skip_set=train_set)" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "Now let's ask the item similarity model for song recommendations on several users. We first create a list of users and create a subset of observations, `users_ratings`, that pertain to these users." ] }, { "cell_type": "code", "execution_count": 37, "metadata": { "collapsed": false, "slideshow": { "slide_type": "fragment" } }, "outputs": [], "source": [ "K = 10\n", "users = gl.SArray(sf['user_id'].unique().head(100))" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "Next we use the `recommend()` function to query the model we created for recommendations. The returned object has four columns: `user_id`, `song_id`, the `score` that the algorithm gave this user for this song, and the song's rank (an integer from 0 to K-1). To see this we can grab the top few rows of `recs`:" ] }, { "cell_type": "code", "execution_count": 15, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/html": [ "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
user_idcourse_idscorerank
232155.01
232145.02
232135.03
232125.04
232115.05
232105.06
23295.07
23285.08
23275.09
23245.010
\n", "[10 rows x 4 columns]
\n", "
" ], "text/plain": [ "Columns:\n", "\tuser_id\tint\n", "\tcourse_id\tint\n", "\tscore\tfloat\n", "\trank\tint\n", "\n", "Rows: 10\n", "\n", "Data:\n", "+---------+-----------+-------+------+\n", "| user_id | course_id | score | rank |\n", "+---------+-----------+-------+------+\n", "| 232 | 15 | 5.0 | 1 |\n", "| 232 | 14 | 5.0 | 2 |\n", "| 232 | 13 | 5.0 | 3 |\n", "| 232 | 12 | 5.0 | 4 |\n", "| 232 | 11 | 5.0 | 5 |\n", "| 232 | 10 | 5.0 | 6 |\n", "| 232 | 9 | 5.0 | 7 |\n", "| 232 | 8 | 5.0 | 8 |\n", "| 232 | 7 | 5.0 | 9 |\n", "| 232 | 4 | 5.0 | 10 |\n", "+---------+-----------+-------+------+\n", "[10 rows x 4 columns]" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "recs = item_sim_model.recommend(users=users, k=K)\n", "recs.head()" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "To learn what songs these ids pertain to, we can merge in metadata about each song." ] }, { "cell_type": "code", "execution_count": 22, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "------------------------------------------------------\n", "Inferred types from first line of file as \n", "column_type_hints=[int,str,float,str,str,str,str]\n", "If parsing fails due to incorrect types, you can correct\n", "the inferred type list above and pass it to read_csv in\n", "the column_type_hints argument\n", "------------------------------------------------------\n", "PROGRESS: Finished parsing file /Users/chengjun/GitHub/cjc2016/data/cursos.dat\n", "PROGRESS: Parsing completed. Parsed 5597 lines in 0.016009 secs.\n" ] }, { "data": { "application/javascript": [ "$(\"head\").append($(\"\").attr({\n", " rel: \"stylesheet\",\n", " type: \"text/css\",\n", " href: \"//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.min.css\"\n", "}));\n", "$(\"head\").append($(\"\").attr({\n", " rel: \"stylesheet\",\n", " type: \"text/css\",\n", " href: \"//dato.com/files/canvas/1.5.2/css/canvas.css\"\n", "}));\n", "\n", " (function(){\n", "\n", " var e = null;\n", " if (typeof element == 'undefined') {\n", " var scripts = document.getElementsByTagName('script');\n", " var thisScriptTag = scripts[scripts.length-1];\n", " var parentDiv = thisScriptTag.parentNode;\n", " e = document.createElement('div');\n", " parentDiv.appendChild(e);\n", " } else {\n", " e = element[0];\n", " }\n", "\n", " require(['//dato.com/files/canvas/1.5.2/js/ipython_app.js'], function(IPythonApp){\n", " var app = new IPythonApp();\n", " app.attachView('sframe','Summary', {\"ipython\": true, \"sketch\": {\"workload\": {\"complete\": true, \"numeric\": false, \"num_unique\": 90, \"num_undefined\": 0, \"progress\": 1.0, \"frequent_items\": {\"3-4 hours/week\": {\"frequency\": 10, \"value\": \"3-4 hours/week\"}, \"(10 weeks)\": {\"frequency\": 1, \"value\": \"(10 weeks)\"}, \"2-3 hours/week\": {\"frequency\": 1, \"value\": \"2-3 hours/week\"}, \"Oct 21 2013\": {\"frequency\": 4, \"value\": \"Oct 21 2013\"}, \"12 hours per week. (14 weeks)\": {\"frequency\": 1, \"value\": \"12 hours per week. ...\"}, \"8-10 hours per week. (7 weeks)\": {\"frequency\": 1, \"value\": \"8-10 hours per ...\"}, \"8 hours/week\": {\"frequency\": 2, \"value\": \"8 hours/week\"}, \"7-10 hours/week\": {\"frequency\": 4, \"value\": \"7-10 hours/week\"}, \"5-6 hours/week\": {\"frequency\": 2, \"value\": \"5-6 hours/week\"}, \"(8 weeks)\": {\"frequency\": 3, \"value\": \"(8 weeks)\"}, \"Nov 04 2013\": {\"frequency\": 2, \"value\": \"Nov 04 2013\"}, \"10-15 hours/week\": {\"frequency\": 5, \"value\": \"10-15 hours/week\"}, \"6-10 hours/week\": {\"frequency\": 3, \"value\": \"6-10 hours/week\"}, \"12 hours / week (15 weeks)\": {\"frequency\": 1, \"value\": \"12 hours / week ...\"}, \"4-6 hours/week (15 weeks)\": {\"frequency\": 1, \"value\": \"4-6 hours/week (15 ...\"}, \"Jan 2014\": {\"frequency\": 1, \"value\": \"Jan 2014\"}, \"8-12 hours/week\": {\"frequency\": 2, \"value\": \"8-12 hours/week\"}, \"6-12 hours/week\": {\"frequency\": 1, \"value\": \"6-12 hours/week\"}, \"2-6 hours/week\": {\"frequency\": 1, \"value\": \"2-6 hours/week\"}, \"4-6 hours/week\": {\"frequency\": 17, \"value\": \"4-6 hours/week\"}, \"From 10 - 30 minutes, or as much time as you want.\": {\"frequency\": 1, \"value\": \"From 10 - 30 ...\"}, \"10 hours/week\": {\"frequency\": 1, \"value\": \"10 hours/week\"}, \"3-8 hours/week\": {\"frequency\": 1, \"value\": \"3-8 hours/week\"}, \"12-15 hours/week\": {\"frequency\": 1, \"value\": \"12-15 hours/week\"}, \"Apr 23 2014\": {\"frequency\": 1, \"value\": \"Apr 23 2014\"}, \"8 problem sets (15 - 20 hours each), 2 quizzes, 1 final project\": {\"frequency\": 1, \"value\": \"8 problem sets (15 ...\"}, \"At least 5 hours per week (12 weeks)\": {\"frequency\": 1, \"value\": \"At least 5 hours ...\"}, \"4-5 hours per week (6 weeks)\": {\"frequency\": 1, \"value\": \"4-5 hours per week ...\"}, \"2-3 hours per week\\t(6 weeks)\": {\"frequency\": 1, \"value\": \"2-3 hours per week ...\"}, \"15-20 hours/week\": {\"frequency\": 1, \"value\": \"15-20 hours/week\"}, \"12 hours per week (7 weeks)\": {\"frequency\": 1, \"value\": \"12 hours per week ...\"}, \"Self-paced\": {\"frequency\": 5281, \"value\": \"Self-paced\"}, \"4-6 hours per week depending on the background of the student.\": {\"frequency\": 1, \"value\": \"4-6 hours per week ...\"}, \"5-10 hours/week\": {\"frequency\": 3, \"value\": \"5-10 hours/week\"}, \"2-4 hours/week\": {\"frequency\": 3, \"value\": \"2-4 hours/week\"}, \"3-5 hours/week\": {\"frequency\": 14, \"value\": \"3-5 hours/week\"}, \"1-2 hours/week\": {\"frequency\": 3, \"value\": \"1-2 hours/week\"}, \"2 hours/week\": {\"frequency\": 1, \"value\": \"2 hours/week\"}, \"Jan 20 2014\": {\"frequency\": 1, \"value\": \"Jan 20 2014\"}, \"4 - 6 hours/ week\": {\"frequency\": 1, \"value\": \"4 - 6 hours/ week\"}, \"About 5-12 hrs/week. (8 weeks)\": {\"frequency\": 1, \"value\": \"About 5-12 ...\"}, \"Oct 31 2013\": {\"frequency\": 2, \"value\": \"Oct 31 2013\"}, \"TBA\": {\"frequency\": 61, \"value\": \"TBA\"}, \"3 hours/week\": {\"frequency\": 1, \"value\": \"3 hours/week\"}, \"3-6 hours/week\": {\"frequency\": 2, \"value\": \"3-6 hours/week\"}, \"4-5 hours per week\": {\"frequency\": 1, \"value\": \"4-5 hours per week\"}, \"Jan 06 2014\": {\"frequency\": 1, \"value\": \"Jan 06 2014\"}, \"10-12 hours/week\": {\"frequency\": 6, \"value\": \"10-12 hours/week\"}, \"4-7 hours/week\": {\"frequency\": 1, \"value\": \"4-7 hours/week\"}, \"8 hours per week\": {\"frequency\": 1, \"value\": \"8 hours per week\"}, \"10 hours / week\": {\"frequency\": 1, \"value\": \"10 hours / week\"}, \"5-9 hours/week\": {\"frequency\": 1, \"value\": \"5-9 hours/week\"}, \"5 hours per week\": {\"frequency\": 1, \"value\": \"5 hours per week\"}, \"In session\": {\"frequency\": 24, \"value\": \"In session\"}, \"2.5-5 hours.\": {\"frequency\": 1, \"value\": \"2.5-5 hours.\"}, \"(6 weeks)\": {\"frequency\": 1, \"value\": \"(6 weeks)\"}, \"12 hours/week (6 weeks)\": {\"frequency\": 1, \"value\": \"12 hours/week (6 ...\"}, \"10 hours / week (10 weeks)\": {\"frequency\": 1, \"value\": \"10 hours / week ...\"}, \"Instead of traditional weeks or chapters, the content for this course is divided into 24 "Hours." P\": {\"frequency\": 1, \"value\": \"Instead of ...\"}, \"10-20 hours/week\": {\"frequency\": 1, \"value\": \"10-20 hours/week\"}, \"Sep 01 2014\": {\"frequency\": 1, \"value\": \"Sep 01 2014\"}, \"10 hours per week.\": {\"frequency\": 1, \"value\": \"10 hours per week.\"}, \"8 hours/week (8 weeks)\": {\"frequency\": 1, \"value\": \"8 hours/week (8 ...\"}, \"4-8 hours/week\": {\"frequency\": 5, \"value\": \"4-8 hours/week\"}, \"5-7 hours/week\": {\"frequency\": 21, \"value\": \"5-7 hours/week\"}, \"4-12 hours/week\": {\"frequency\": 1, \"value\": \"4-12 hours/week\"}, \"12 hours/week.\": {\"frequency\": 1, \"value\": \"12 hours/week.\"}, \"5-7 hours/week (8-10 if completing additional programming exercises)\": {\"frequency\": 1, \"value\": \"5-7 hours/week ...\"}, \"3-4 hours per week\": {\"frequency\": 1, \"value\": \"3-4 hours per week\"}, \"Easy\": {\"frequency\": 3, \"value\": \"Easy\"}, \"16-20 hours/week\": {\"frequency\": 1, \"value\": \"16-20 hours/week\"}, \"6-8 hours/week\": {\"frequency\": 22, \"value\": \"6-8 hours/week\"}, \"12 hours per week\": {\"frequency\": 3, \"value\": \"12 hours per week\"}, \"At least 5 hours per week (11 weeks)\": {\"frequency\": 1, \"value\": \"At least 5 hours ...\"}, \"12 hours/week (14 weeks)\": {\"frequency\": 1, \"value\": \"12 hours/week (14 ...\"}, \"6-9 hours/week\": {\"frequency\": 3, \"value\": \"6-9 hours/week\"}, \"4-5 Hours per week\": {\"frequency\": 1, \"value\": \"4-5 Hours per week\"}, \"4a€“12 hours/week\": {\"frequency\": 1, \"value\": \"4a€“12 ...\"}, \"-\": {\"frequency\": 2, \"value\": \"-\"}, \"8-10 hours/week, 10-20 hours/week with programming assignments\": {\"frequency\": 1, \"value\": \"8-10 hours/week, ...\"}, \"5-8 hours/week\": {\"frequency\": 4, \"value\": \"5-8 hours/week\"}, \"8 hours per week. (10 weeks)\": {\"frequency\": 1, \"value\": \"8 hours per week. ...\"}, \"8-16 hours/week\": {\"frequency\": 1, \"value\": \"8-16 hours/week\"}, \"7-9 hours/week\": {\"frequency\": 1, \"value\": \"7-9 hours/week\"}, \"12 hours/week\": {\"frequency\": 3, \"value\": \"12 hours/week\"}, \"Jan 15 2014\": {\"frequency\": 1, \"value\": \"Jan 15 2014\"}, \"2-5 hours/week\": {\"frequency\": 2, \"value\": \"2-5 hours/week\"}, \"8-10 hours/week\": {\"frequency\": 18, \"value\": \"8-10 hours/week\"}, \"1-3 hours per week\": {\"frequency\": 1, \"value\": \"1-3 hours per week\"}, \"6 hrs per week. (7 weeks)\": {\"frequency\": 1, \"value\": \"6 hrs per week. (7 ...\"}}, \"size\": 5597}, \"title\": {\"complete\": true, \"numeric\": false, \"num_unique\": 5567, \"num_undefined\": 0, \"progress\": 1.0, \"frequent_items\": {\"HTML5: Messaging and Communications in Depth\": {\"frequency\": 1, \"value\": \"HTML5: Messaging ...\"}, \"The Ancient Greeks\": {\"frequency\": 1, \"value\": \"The Ancient Greeks\"}, \"LinkedIn MasterPlan\": {\"frequency\": 1, \"value\": \"LinkedIn ...\"}, \"Learn to read Japanese - Hiragana, Katakana and Kanji\": {\"frequency\": 1, \"value\": \"Learn to read ...\"}, \"Learning CSS3 - A Comprehensive Tutorial For Web Developers\": {\"frequency\": 1, \"value\": \"Learning CSS3 - A ...\"}, \"Sculptris Essential Training\": {\"frequency\": 1, \"value\": \"Sculptris ...\"}, \"Bootstrap 3: New Features and Migration\": {\"frequency\": 1, \"value\": \"Bootstrap 3: New ...\"}, \"Luke Wroblewski on Designing for Mobile First\": {\"frequency\": 1, \"value\": \"Luke Wroblewski on ...\"}, \"SAT Critical Reading Mastery : A Better Score Guaranteed\": {\"frequency\": 1, \"value\": \"SAT Critical ...\"}, \"Writing for the Web (WriteWeb)\": {\"frequency\": 1, \"value\": \"Writing for the ...\"}, \"Measurement-Based Handwriting Movement Analysis 1\": {\"frequency\": 1, \"value\": \"Measurement-Based ...\"}, \"Straight From Business School: Data + Analytics\": {\"frequency\": 1, \"value\": \"Straight From ...\"}, \"How To Promote Your Udemy Course Using Google Adwords\": {\"frequency\": 1, \"value\": \"How To Promote ...\"}, \"Inside Contemporary Childrens Photography\": {\"frequency\": 1, \"value\": \"Inside ...\"}, \"Beginner Game Development with Construct 2\": {\"frequency\": 1, \"value\": \"Beginner Game ...\"}, \"CS-184.1x: Foundations of Computer Graphics\": {\"frequency\": 1, \"value\": \"CS-184.1x: ...\"}, \"Learn about Love Addiction\": {\"frequency\": 1, \"value\": \"Learn about Love ...\"}, \"How to Manage a Profitable Photography Studio\": {\"frequency\": 1, \"value\": \"How to Manage a ...\"}, \"Designing a Magazine Layout\": {\"frequency\": 1, \"value\": \"Designing a ...\"}, \"Excel 2010 Essential Training\": {\"frequency\": 1, \"value\": \"Excel 2010 ...\"}, \"Open & Closed Captioning Effectivity on a Budget\": {\"frequency\": 1, \"value\": \"Open & Closed ...\"}, \"Google Spreadsheets Step by Step\": {\"frequency\": 1, \"value\": \"Google ...\"}, \"HTML5 Projects: Creating Surveys\": {\"frequency\": 1, \"value\": \"HTML5 Projects: ...\"}, \"Advanced Google AdWords\": {\"frequency\": 1, \"value\": \"Advanced Google ...\"}, \"Moodle\": {\"frequency\": 1, \"value\": \"Moodle\"}, \"Multi page online form with PHP, MySQL and Session Variables\": {\"frequency\": 1, \"value\": \"Multi page online ...\"}, \"Computer Privacy and Security Essential Training (2006)\": {\"frequency\": 1, \"value\": \"Computer Privacy ...\"}, \"InDesign CS3 One-on-One: Style Sheets\": {\"frequency\": 1, \"value\": \"InDesign CS3 One- ...\"}, \"Infographics For Content Promotion\": {\"frequency\": 1, \"value\": \"Infographics For ...\"}, \"BE101x: Behavioural Economics in Action\": {\"frequency\": 1, \"value\": \"BE101x: ...\"}, \"How To Become A Big Picture Thinker\": {\"frequency\": 1, \"value\": \"How To Become A ...\"}, \"A Crash Course on Creativity\": {\"frequency\": 1, \"value\": \"A Crash Course on ...\"}, \"Make Your first Android App in 60 minutes FLAT with NO code\": {\"frequency\": 1, \"value\": \"Make Your first ...\"}, \"Probabilistic Graphical Models\": {\"frequency\": 1, \"value\": \"Probabilistic ...\"}, \"Finding Cash Flow Notes Training\": {\"frequency\": 1, \"value\": \"Finding Cash Flow ...\"}, \"Music Editing for TV and Film in Pro Tools\": {\"frequency\": 1, \"value\": \"Music Editing for ...\"}, \"Setting Up a Database in Excel\": {\"frequency\": 1, \"value\": \"Setting Up a ...\"}, \"Fundamentals of Direct Marketing: Practices that Profit\": {\"frequency\": 1, \"value\": \"Fundamentals of ...\"}, \"Lightroom 1.1 New Features\": {\"frequency\": 1, \"value\": \"Lightroom 1.1 New ...\"}, \"Up and Running with SpeedGrade\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Medicinal Marijuana\": {\"frequency\": 1, \"value\": \"Medicinal ...\"}, \"SPU27x: Science & Cooking: From Haute Cuisine to Soft Matter Science\": {\"frequency\": 1, \"value\": \"SPU27x: Science ...\"}, \"Creating an Interactive PDF Magazine\": {\"frequency\": 1, \"value\": \"Creating an ...\"}, \"After Effects: Natural Light Effects\": {\"frequency\": 1, \"value\": \"After Effects: ...\"}, \"Designing a Poster\": {\"frequency\": 1, \"value\": \"Designing a Poster\"}, \"SharePoint Foundation 2013 Essential Training\": {\"frequency\": 1, \"value\": \"SharePoint ...\"}, \"Understanding The Screwtape Letters\": {\"frequency\": 1, \"value\": \"Understanding The ...\"}, \"Mastercam X1-X7 Lathe Video Tutorial Training\": {\"frequency\": 1, \"value\": \"Mastercam X1-X7 ...\"}, \"WordPress Theme Selection & Customization\": {\"frequency\": 1, \"value\": \"WordPress Theme ...\"}, \"Writing for the Videogame Industry\": {\"frequency\": 1, \"value\": \"Writing for the ...\"}, \"2011 SBIFF Producers' Panel: Movers and Shakers\": {\"frequency\": 1, \"value\": \"2011 SBIFF ...\"}, \"Digital Creature Creation in ZBrush, Photoshop, and Maya\": {\"frequency\": 1, \"value\": \"Digital Creature ...\"}, \"Learning Beyond Letter Grades\": {\"frequency\": 1, \"value\": \"Learning Beyond ...\"}, \"Brief Free Introduction to Game Design\": {\"frequency\": 1, \"value\": \"Brief Free ...\"}, \"InDesign CS4 to EPUB, Kindle, and iPad\": {\"frequency\": 1, \"value\": \"InDesign CS4 to ...\"}, \"Shooting with the Nikon D7000\": {\"frequency\": 1, \"value\": \"Shooting with the ...\"}, \"Build Your Personal Brand in 4 Easy Steps\": {\"frequency\": 1, \"value\": \"Build Your ...\"}, \"Discover the 21 Principles of 21st Century Leadership\": {\"frequency\": 1, \"value\": \"Discover the 21 ...\"}, \"Mac OS X Lion Essential Training\": {\"frequency\": 1, \"value\": \"Mac OS X Lion ...\"}, \"VBA & Macros: Part [1 of 2]\": {\"frequency\": 1, \"value\": \"VBA & Macros: ...\"}, \"Introduction to Adobe After Effects\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Vimeo Projects for Creative Professionals\": {\"frequency\": 1, \"value\": \"Vimeo Projects for ...\"}, \"The History Of Makeup\": {\"frequency\": 1, \"value\": \"The History Of ...\"}, \"Up and Running with PHP CodeIgniter\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Photoshop CS4 Extended for 3D\": {\"frequency\": 1, \"value\": \"Photoshop CS4 ...\"}, \"Learn JavaScript Basics\": {\"frequency\": 1, \"value\": \"Learn JavaScript ...\"}, \"Web Analytics Blueprint\": {\"frequency\": 1, \"value\": \"Web Analytics ...\"}, \"The ClickMinded Search Engine Optimization Training Course\": {\"frequency\": 1, \"value\": \"The ClickMinded ...\"}, \"Learn Call Options and Put Options - Introduction to Options\": {\"frequency\": 1, \"value\": \"Learn Call Options ...\"}, \"WordPress Security for Beginners How to secure WordPress\": {\"frequency\": 1, \"value\": \"WordPress Security ...\"}, \"Google Local Optimization\": {\"frequency\": 1, \"value\": \"Google Local ...\"}, \"Create a Sliding Tabbed Panel with jQuery\": {\"frequency\": 1, \"value\": \"Create a Sliding ...\"}, \"How to Help Your Child Recover From an Eating Disorder\": {\"frequency\": 1, \"value\": \"How to Help Your ...\"}, \"Photo Assignment: Group Shots\": {\"frequency\": 1, \"value\": \"Photo Assignment: ...\"}, \"Rails Testing for Zombies\": {\"frequency\": 1, \"value\": \"Rails Testing for ...\"}, \"Cultivating a Community\": {\"frequency\": 1, \"value\": \"Cultivating a ...\"}, \"Facebook Training for Business\": {\"frequency\": 1, \"value\": \"Facebook Training ...\"}, \"InDesign CS2 Beyond the Basics\": {\"frequency\": 1, \"value\": \"InDesign CS2 ...\"}, \"Decades of Beauty\": {\"frequency\": 1, \"value\": \"Decades of Beauty\"}, \"Narrative Portraiture: Portraits of Two Texas Artists\": {\"frequency\": 1, \"value\": \"Narrative ...\"}, \"Calculus I essentials\": {\"frequency\": 1, \"value\": \"Calculus I ...\"}, \"How The Economy Really Works\": {\"frequency\": 1, \"value\": \"How The Economy ...\"}, \"How To Stop Stress Eating Program\": {\"frequency\": 1, \"value\": \"How To Stop Stress ...\"}, \"Rebuild Pinterest from Scratch with HTML + CSS (Part 1) FREE\": {\"frequency\": 1, \"value\": \"Rebuild Pinterest ...\"}, \"Create an Animated Bar Chart with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create an Animated ...\"}, \"Microsoft Excel 2010 Course Beginners/ Intermediate Training\": {\"frequency\": 1, \"value\": \"Microsoft Excel ...\"}, \"Introduction to Sprite Kit with iOS7 and Xcode 5\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"CSS for Developers\": {\"frequency\": 1, \"value\": \"CSS for Developers\"}, \"Foundations of Success\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Ruby Programming for Beginners\": {\"frequency\": 1, \"value\": \"Ruby Programming ...\"}, \"Design the Web: Animated Loading GIFs\": {\"frequency\": 1, \"value\": \"Design the Web: ...\"}, \"Up and Running with Prezi\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Modeling Vehicles in Maya\": {\"frequency\": 1, \"value\": \"Modeling Vehicles ...\"}, \"Keynote '08 Essential Training\": {\"frequency\": 1, \"value\": \"Keynote '08 ...\"}, \"Game Prop Creation in Maya\": {\"frequency\": 1, \"value\": \"Game Prop Creation ...\"}, \"Ron Crabb, Digital Illustrator\": {\"frequency\": 1, \"value\": \"Ron Crabb, Digital ...\"}, \"How to become a Fast ForWord Provider\": {\"frequency\": 1, \"value\": \"How to become a ...\"}, \"The Amplified Author: Using Pressbooks\": {\"frequency\": 1, \"value\": \"The Amplified ...\"}, \"Final Cut Pro X Essential Training\": {\"frequency\": 1, \"value\": \"Final Cut Pro X ...\"}, \"Narrative Portraiture: On Location in New York with Rodney Smith\": {\"frequency\": 1, \"value\": \"Narrative ...\"}, \"Dreamweaver CS4: Introduction to Spry\": {\"frequency\": 1, \"value\": \"Dreamweaver CS4: ...\"}, \"How to Launch a Business without Quitting Your Day Job\": {\"frequency\": 1, \"value\": \"How to Launch a ...\"}, \"CorelDRAW X4 Essential Training\": {\"frequency\": 1, \"value\": \"CorelDRAW X4 ...\"}, \"SQL Database for Beginners\": {\"frequency\": 1, \"value\": \"SQL Database for ...\"}, \"Ruby Foundations\": {\"frequency\": 1, \"value\": \"Ruby Foundations\"}, \"Create a Tooltip with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create a Tooltip ...\"}, \"CB22.1x: The Ancient Greek Hero\": {\"frequency\": 1, \"value\": \"CB22.1x: The ...\"}, \"The A, B, C's of IPv6!\": {\"frequency\": 1, \"value\": \"The A, B, C's ...\"}, \"After Effects CS4: Apprentice's Guide to Key Features\": {\"frequency\": 1, \"value\": \"After Effects CS4: ...\"}, \"Introductory Psychology -- A Video Textbook\": {\"frequency\": 1, \"value\": \"Introductory ...\"}, \"Preparation for Introductory Biology: DNA to Organisms\": {\"frequency\": 1, \"value\": \"Preparation for ...\"}, \"Excel 2010 - Level 1: From Zero to Hero; Beginner-Novice\": {\"frequency\": 1, \"value\": \"Excel 2010 - Level ...\"}, \"Lighting for Photographers: Portraiture\": {\"frequency\": 1, \"value\": \"Lighting for ...\"}, \"Lean Finance for Startups - Introduction\": {\"frequency\": 1, \"value\": \"Lean Finance for ...\"}, \"Social Media Basics for Musicians and Bands\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"Learn Node.js by Example\": {\"frequency\": 1, \"value\": \"Learn Node.js by ...\"}, \"Up and Running with PHP: PEAR, PECL, and Composer\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Lightroom 4 Essentials: 04 Creating Slideshows and Web Galleries\": {\"frequency\": 1, \"value\": \"Lightroom 4 ...\"}, \"Start Creating Your Video Course Now With Camtasia!\": {\"frequency\": 1, \"value\": \"Start Creating ...\"}, \"Typography for Web Designers\": {\"frequency\": 1, \"value\": \"Typography for Web ...\"}, \"Technical Writing and Editing\": {\"frequency\": 1, \"value\": \"Technical Writing ...\"}, \"Working with Big Data\": {\"frequency\": 1, \"value\": \"Working with Big ...\"}, \"Using Your Data to Grow Your Business\": {\"frequency\": 1, \"value\": \"Using Your Data to ...\"}, \"How To Build A Web Banner Business\": {\"frequency\": 1, \"value\": \"How To Build A Web ...\"}, \"Book Publishing Passive Profits- Kindle, Ibooks, Createspace\": {\"frequency\": 1, \"value\": \"Book Publishing ...\"}, \"Accent Reduction Made Fast and Easy\": {\"frequency\": 1, \"value\": \"Accent Reduction ...\"}, \"Designing the Moment: From First Impression to Conversion\": {\"frequency\": 1, \"value\": \"Designing the ...\"}, \"How to Break out of the Pack\": {\"frequency\": 1, \"value\": \"How to Break out ...\"}, \"Science, Technology, and Society in China I: Basic Concepts\": {\"frequency\": 1, \"value\": \"Science, ...\"}, \"Algorithms, Part II\": {\"frequency\": 1, \"value\": \"Algorithms, Part ...\"}, \"The Music of Business : MBA concepts + Music !\": {\"frequency\": 1, \"value\": \"The Music of ...\"}, \"CPD Made Easy - Personal & Professional Development\": {\"frequency\": 1, \"value\": \"CPD Made Easy - ...\"}, \"Photo Gallery with PHP, MySQL, ImageMagick and jQuery\": {\"frequency\": 1, \"value\": \"Photo Gallery with ...\"}, \"Excel 2007: Creating and Managing Invoices\": {\"frequency\": 1, \"value\": \"Excel 2007: ...\"}, \"Build iPhone Apps using Dreamweaver CS6 and Xcode combined.\": {\"frequency\": 1, \"value\": \"Build iPhone Apps ...\"}, \"Documentary Photo Techniques with Photoshop and After Effects\": {\"frequency\": 1, \"value\": \"Documentary Photo ...\"}, \"Adobe Illustrator CC Creative Cloud for print web TV & film\": {\"frequency\": 1, \"value\": \"Adobe Illustrator ...\"}, \"From Systems, Inquiry, & Application to the NGSS\": {\"frequency\": 1, \"value\": \"From Systems, ...\"}, \"Adobe Illustrator CS5 (Beginning, Intermediate, & Advanced)\": {\"frequency\": 1, \"value\": \"Adobe Illustrator ...\"}, \"Learning HTML in an HTML5 World for Beginners\": {\"frequency\": 1, \"value\": \"Learning HTML in ...\"}, \"Illustrator CS5 One-on-One: Advanced\": {\"frequency\": 1, \"value\": \"Illustrator CS5 ...\"}, \"PayPal Essential Training\": {\"frequency\": 1, \"value\": \"PayPal Essential ...\"}, \"Photo Workshop: Portrait of an Exotic Car\": {\"frequency\": 1, \"value\": \"Photo Workshop: ...\"}, \"Administering Windows Server 2012 (70-411)\": {\"frequency\": 1, \"value\": \"Administering ...\"}, \"Learn how to use iOS7 for your iPhone in 1 hour\": {\"frequency\": 1, \"value\": \"Learn how to use ...\"}, \"Building Instructional Capacity: A Practical Approach\": {\"frequency\": 1, \"value\": \"Building ...\"}, \"118 Pitch Course - Business\": {\"frequency\": 1, \"value\": \"118 Pitch Course - ...\"}, \"Photoshop Training - Tutorials - FREE\": {\"frequency\": 1, \"value\": \"Photoshop Training ...\"}, \"How to Meditate Deeply & Create a Solid Daily Practice\": {\"frequency\": 1, \"value\": \"How to Meditate ...\"}, \"How To Setup A Million Dollar Internet Business In 30 Days\": {\"frequency\": 1, \"value\": \"How To Setup A ...\"}, \"3ds Max 2009 Essential Training\": {\"frequency\": 1, \"value\": \"3ds Max 2009 ...\"}, \"Mastering Adobe Lightroom 5 - A Definitive Tutorial\": {\"frequency\": 1, \"value\": \"Mastering Adobe ...\"}, \"The 7 Essential Steps To Getting Your Dream Career\": {\"frequency\": 1, \"value\": \"The 7 Essential ...\"}, \"Social Media Content Creation\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"Microsoft PowerPoint 2010 Advanced\": {\"frequency\": 1, \"value\": \"Microsoft ...\"}, \"How to Build a Profitable Business Online\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"Excel Deep Dive: Pivot Tables Workshop with the Office Ninja\": {\"frequency\": 1, \"value\": \"Excel Deep Dive: ...\"}, \"CSS & CSS3 Beginners Crash Course\": {\"frequency\": 1, \"value\": \"CSS & CSS3 ...\"}, \"Master PowerPoint 2013:A to Z of creating Marketing Videos\": {\"frequency\": 1, \"value\": \"Master PowerPoint ...\"}, \"Excel 2013 Essential Training\": {\"frequency\": 1, \"value\": \"Excel 2013 ...\"}, \"Print Production Fundamentals\": {\"frequency\": 1, \"value\": \"Print Production ...\"}, \"Photoshop Companion Apps First Look\": {\"frequency\": 1, \"value\": \"Photoshop ...\"}, \"How To Have a Great Career in New York City\": {\"frequency\": 1, \"value\": \"How To Have a ...\"}, \"Building Facebook Applications with HTML and JavaScript\": {\"frequency\": 1, \"value\": \"Building Facebook ...\"}, \"Google Calendar Essential Training\": {\"frequency\": 1, \"value\": \"Google Calendar ...\"}, \"Introducing Final Cut Pro X\": {\"frequency\": 1, \"value\": \"Introducing Final ...\"}, \"Embracing your Divine Design: Lifepro (Part 1b)\": {\"frequency\": 1, \"value\": \"Embracing your ...\"}, \"Time Management Fundamentals\": {\"frequency\": 1, \"value\": \"Time Management ...\"}, \"YouTube Ranking Strategy\": {\"frequency\": 1, \"value\": \"YouTube Ranking ...\"}, \"Design for Engagement - How to Design So People Take Action\": {\"frequency\": 1, \"value\": \"Design for ...\"}, \"Dreamweaver CS5.5 New Features\": {\"frequency\": 1, \"value\": \"Dreamweaver CS5.5 ...\"}, \"How To Be Accepted Into Teach For America\": {\"frequency\": 1, \"value\": \"How To Be Accepted ...\"}, \"Final Cut Pro 6 New Features\": {\"frequency\": 1, \"value\": \"Final Cut Pro 6 ...\"}, \"Joomla Content Management System\": {\"frequency\": 1, \"value\": \"Joomla Content ...\"}, \"Attack Your Day!\": {\"frequency\": 1, \"value\": \"Attack Your Day!\"}, \"Up and Running with Styles in InDesign CS5\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"How to Find Your Startup Investors\": {\"frequency\": 1, \"value\": \"How to Find Your ...\"}, \"Word 2013 Essential Training\": {\"frequency\": 1, \"value\": \"Word 2013 ...\"}, \"Responsive Design Fundamentals\": {\"frequency\": 1, \"value\": \"Responsive Design ...\"}, \"Lightroom 4 Speed Clinic\": {\"frequency\": 1, \"value\": \"Lightroom 4 Speed ...\"}, \"Photorealism with Bert Monroy: Volume 1\": {\"frequency\": 1, \"value\": \"Photorealism with ...\"}, \"Assembling Sass Part 2\": {\"frequency\": 1, \"value\": \"Assembling Sass ...\"}, \"How to Build a Startup\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"Rope Splicing: how to splice rope correclty\": {\"frequency\": 1, \"value\": \"Rope Splicing: how ...\"}, \"Up and Running with Lync Online\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Financial Risk Manager (FRM) Certification: Level II\": {\"frequency\": 1, \"value\": \"Financial Risk ...\"}, \"Try R\": {\"frequency\": 1, \"value\": \"Try R\"}, \"Create Awesome Videos That Thrive on Social Media & YouTube\": {\"frequency\": 1, \"value\": \"Create Awesome ...\"}, \"CINEMA 4D Essentials 1: Interface, Objects, and Hierarchies\": {\"frequency\": 1, \"value\": \"CINEMA 4D ...\"}, \"Kingdom Craze Strategies\": {\"frequency\": 1, \"value\": \"Kingdom Craze ...\"}, \"Conversion Crash Course\": {\"frequency\": 1, \"value\": \"Conversion Crash ...\"}, \"Learning Mac OS X 10.3 Panther\": {\"frequency\": 1, \"value\": \"Learning Mac OS X ...\"}, \"App Marketing Guerrilla\": {\"frequency\": 1, \"value\": \"App Marketing ...\"}, \"Framestorm Your Way to Success in Business\": {\"frequency\": 1, \"value\": \"Framestorm Your ...\"}, \"Scientific Computing\": {\"frequency\": 1, \"value\": \"Scientific ...\"}, \"Managing and Analyzing Data in Excel\": {\"frequency\": 1, \"value\": \"Managing and ...\"}, \"CCNP SWITCH 2013 Video Boot Camp With Chris Bryant\": {\"frequency\": 1, \"value\": \"CCNP SWITCH 2013 ...\"}, \"Become a Mystery Shopper!\": {\"frequency\": 1, \"value\": \"Become a Mystery ...\"}, \"PowerPoint 2010 Power Shortcuts\": {\"frequency\": 1, \"value\": \"PowerPoint 2010 ...\"}, \"Up and Running with Shopify\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Learning Autodesk Revit Architecture 2013\": {\"frequency\": 1, \"value\": \"Learning Autodesk ...\"}, \"Photoshop CS5: Painting with the Mixer Brush\": {\"frequency\": 1, \"value\": \"Photoshop CS5: ...\"}, \"Balance and Bliss\": {\"frequency\": 1, \"value\": \"Balance and Bliss\"}, \"Learning Windows Movie Maker 2\": {\"frequency\": 1, \"value\": \"Learning Windows ...\"}, \"Introduction to Microsoft SQL Server Databases\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Photoshop & Digital Photography\": {\"frequency\": 1, \"value\": \"Photoshop & ...\"}, \"Illustrator CS2 FAQs\": {\"frequency\": 1, \"value\": \"Illustrator CS2 ...\"}, \"Become a Certified Level I Reiki Practitioner\": {\"frequency\": 1, \"value\": \"Become a Certified ...\"}, \"Learning Adobe After Effects CS6 - Tutorial Video\": {\"frequency\": 1, \"value\": \"Learning Adobe ...\"}, \"Adobe Dreamweaver CS6\": {\"frequency\": 1, \"value\": \"Adobe Dreamweaver ...\"}, \"InDesign CS4: 10 Habits of Highly Effective Pros\": {\"frequency\": 1, \"value\": \"InDesign CS4: 10 ...\"}, \"JavaScript\": {\"frequency\": 1, \"value\": \"JavaScript\"}, \"How I gained 18,437 followers on Facebook\": {\"frequency\": 1, \"value\": \"How I gained ...\"}, \"Mastering Microsoft Word 2010 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"The ABCs of Instructional Design\": {\"frequency\": 1, \"value\": \"The ABCs of ...\"}, \"Learn 2D Digital Visual Effects Animation using Adobe Flash\": {\"frequency\": 1, \"value\": \"Learn 2D Digital ...\"}, \"Jazz Guitar: So, What's the Big Deal?\": {\"frequency\": 1, \"value\": \"Jazz Guitar: So, ...\"}, \"User Experience Design Fundamentals\": {\"frequency\": 1, \"value\": \"User Experience ...\"}, \"Archetypal Branding\": {\"frequency\": 1, \"value\": \"Archetypal ...\"}, \"Trigonometry: Degrees and Radians\": {\"frequency\": 1, \"value\": \"Trigonometry: ...\"}, \"How to create your FREE Blogs with blogger.com: Beginners\": {\"frequency\": 1, \"value\": \"How to create your ...\"}, \"Internet Marketing: Foundations, Models, and Value Chain\": {\"frequency\": 1, \"value\": \"Internet ...\"}, \"Managing Documents with SharePoint 2010\": {\"frequency\": 1, \"value\": \"Managing Documents ...\"}, \"Assemble an A+ Advisory Board\": {\"frequency\": 1, \"value\": \"Assemble an A+ ...\"}, \"Online Pastry School - 1 Week Mastery Course\": {\"frequency\": 1, \"value\": \"Online Pastry ...\"}, \"7 Tips for Hot Looking Videos\": {\"frequency\": 1, \"value\": \"7 Tips for Hot ...\"}, \"Use CSS3 in your site today\": {\"frequency\": 1, \"value\": \"Use CSS3 in your ...\"}, \"Photoshop Elements 10\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"SEO and Beyond: A Holistic Approach to Findability\": {\"frequency\": 1, \"value\": \"SEO and Beyond: A ...\"}, \"CGI Essential Training\": {\"frequency\": 1, \"value\": \"CGI Essential ...\"}, \"Nik Creative Effects Workshop\": {\"frequency\": 1, \"value\": \"Nik Creative ...\"}, \"Easy Wordpress Installation\": {\"frequency\": 1, \"value\": \"Easy Wordpress ...\"}, \"Brightpearl - Marketplace integrations\": {\"frequency\": 1, \"value\": \"Brightpearl - ...\"}, \"Beginners Crystal Reports 2011 Tutorial Video\": {\"frequency\": 1, \"value\": \"Beginners Crystal ...\"}, \"InDesign CS5 Essential Training\": {\"frequency\": 1, \"value\": \"InDesign CS5 ...\"}, \"Useful Genetics Part 1\": {\"frequency\": 1, \"value\": \"Useful Genetics ...\"}, \"Travel Photography: Desert Road Trip\": {\"frequency\": 1, \"value\": \"Travel ...\"}, \"CSS: Transitions and Transforms\": {\"frequency\": 1, \"value\": \"CSS: Transitions ...\"}, \"Learn about How Codependency Develops and How to Avoid It.\": {\"frequency\": 1, \"value\": \"Learn about How ...\"}, \"Fundamentals of Software Version Control\": {\"frequency\": 1, \"value\": \"Fundamentals of ...\"}, \"Creating Games in Multimedia Fusion 2: Beginner Course\": {\"frequency\": 1, \"value\": \"Creating Games in ...\"}, \"Introduction to JavaScript\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"APIs: Crash Course\": {\"frequency\": 1, \"value\": \"APIs: Crash Course\"}, \"An Introduction to Operations Management\": {\"frequency\": 1, \"value\": \"An Introduction to ...\"}, \"JavaScript: Enhancing the DOM\": {\"frequency\": 1, \"value\": \"JavaScript: ...\"}, \"Premiere Pro CS3 New Features\": {\"frequency\": 1, \"value\": \"Premiere Pro CS3 ...\"}, \"Social Psychology -- A Video Textbook\": {\"frequency\": 1, \"value\": \"Social Psychology ...\"}, \"Create a Tooltip with jQuery\": {\"frequency\": 1, \"value\": \"Create a Tooltip ...\"}, \"Unleash Your Joy\": {\"frequency\": 1, \"value\": \"Unleash Your Joy\"}, \"Creating Materials in CINEMA 4D\": {\"frequency\": 1, \"value\": \"Creating Materials ...\"}, \"Web CopyWriting That Works!\": {\"frequency\": 1, \"value\": \"Web CopyWriting ...\"}, \"Have Fun with Beginner Blues Piano\": {\"frequency\": 1, \"value\": \"Have Fun with ...\"}, \"Excel Hacking and Dynamic Charts\": {\"frequency\": 1, \"value\": \"Excel Hacking and ...\"}, \"Fundamental Beauty & Contouring Technique\": {\"frequency\": 1, \"value\": \"Fundamental Beauty ...\"}, \"Funding Academy Express: How to Get Your Ideal Investor\": {\"frequency\": 1, \"value\": \"Funding Academy ...\"}, \"Fireworks CS5 New Features\": {\"frequency\": 1, \"value\": \"Fireworks CS5 New ...\"}, \"How to Teach Online 24/7/365\": {\"frequency\": 1, \"value\": \"How to Teach ...\"}, \"Public Speaking 101: Learn to Share your Voice! (Video)\": {\"frequency\": 1, \"value\": \"Public Speaking ...\"}, \"JavaScript Foundations\": {\"frequency\": 1, \"value\": \"JavaScript ...\"}, \"Insights from an Online Marketer\": {\"frequency\": 1, \"value\": \"Insights from an ...\"}, \"Neal Ford on Agile Engineering Practices\": {\"frequency\": 1, \"value\": \"Neal Ford on Agile ...\"}, \"Illustrator CS3 for the Web\": {\"frequency\": 1, \"value\": \"Illustrator CS3 ...\"}, \"Sibelius 7 Essential Training\": {\"frequency\": 1, \"value\": \"Sibelius 7 ...\"}, \"Build an AirBnB App for iOS\": {\"frequency\": 1, \"value\": \"Build an AirBnB ...\"}, \"Mastercam X1-X7 Solids Video Tutorial Training\": {\"frequency\": 1, \"value\": \"Mastercam X1-X7 ...\"}, \"Insights on Building a Photography Business\": {\"frequency\": 1, \"value\": \"Insights on ...\"}, \"WordPress for Business - Complete Recordings\": {\"frequency\": 1, \"value\": \"WordPress for ...\"}, \"Excel VBA and Macros with MrExcel\": {\"frequency\": 1, \"value\": \"Excel VBA and ...\"}, \"ColdFusion 8 Beyond the Basics\": {\"frequency\": 1, \"value\": \"ColdFusion 8 ...\"}, \"Margo Chase, Graphic Designer\": {\"frequency\": 1, \"value\": \"Margo Chase, ...\"}, \"Achieve Goals With Your Online Presence\": {\"frequency\": 1, \"value\": \"Achieve Goals With ...\"}, \"Photoshop CS2 for the Web Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop CS2 for ...\"}, \"Real World Graphic Design: Adobe Photoshop and Illustrator\": {\"frequency\": 1, \"value\": \"Real World Graphic ...\"}, \"Word 2008 for Mac Essential Training\": {\"frequency\": 1, \"value\": \"Word 2008 for Mac ...\"}, \"Python, The Next Level (Intermediate)\": {\"frequency\": 1, \"value\": \"Python, The Next ...\"}, \"Rank #1 Local Search: Small Business Online Marketing Plan\": {\"frequency\": 1, \"value\": \"Rank #1 Local ...\"}, \"The Geography of Globalization\": {\"frequency\": 1, \"value\": \"The Geography of ...\"}, \"Introductory Organic Chemistry - Part 2\": {\"frequency\": 1, \"value\": \"Introductory ...\"}, \"Founders Pie Calculator\": {\"frequency\": 1, \"value\": \"Founders Pie ...\"}, \"Learn the art of clay sculpting: Make a Ganapati idol\": {\"frequency\": 1, \"value\": \"Learn the art of ...\"}, \"Introductory Organic Chemistry - Part 1\": {\"frequency\": 1, \"value\": \"Introductory ...\"}, \"Ayurvedic Yoga for your Dosha\": {\"frequency\": 1, \"value\": \"Ayurvedic Yoga for ...\"}, \"Introduction to Elements of Pain\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Goodreads For Authors: Book Promotion And Marketing\": {\"frequency\": 1, \"value\": \"Goodreads For ...\"}, \"The US Healthcare Industry: Changes and Opportunities\": {\"frequency\": 1, \"value\": \"The US Healthcare ...\"}, \"Learning How to Learn\": {\"frequency\": 1, \"value\": \"Learning How to ...\"}, \"C++, Short and Sweet, Part 1\": {\"frequency\": 1, \"value\": \"C++, Short and ...\"}, \"Create an energetic House Track with Logic Pro\": {\"frequency\": 1, \"value\": \"Create an ...\"}, \"Troika Design Group, Design and Branding Agency\": {\"frequency\": 1, \"value\": \"Troika Design ...\"}, \"The Five Minute Photoshop Rule - Interactive Photoshop\": {\"frequency\": 1, \"value\": \"The Five Minute ...\"}, \"The 21-Day Master Stress and Anxiety Program\": {\"frequency\": 1, \"value\": \"The 21-Day Master ...\"}, \"Premiere Pro CS6 for Avid and Final Cut Pro Editors\": {\"frequency\": 1, \"value\": \"Premiere Pro CS6 ...\"}, \"Logic Pro 9 Essential Training\": {\"frequency\": 1, \"value\": \"Logic Pro 9 ...\"}, \"Silverlight Essential Training (2007)\": {\"frequency\": 1, \"value\": \"Silverlight ...\"}, \"Guest Blogging Success (Using MyBlogGuest Platform)\": {\"frequency\": 1, \"value\": \"Guest Blogging ...\"}, \"Dreamweaver CS5 New Features\": {\"frequency\": 1, \"value\": \"Dreamweaver CS5 ...\"}, \"Sexual Harassment Awareness for Employees and Managers\": {\"frequency\": 1, \"value\": \"Sexual Harassment ...\"}, \"International Expansion: A Blueprint for Success\": {\"frequency\": 1, \"value\": \"International ...\"}, \"How to counsel staff to improve their performance.\": {\"frequency\": 1, \"value\": \"How to counsel ...\"}, \"Encore CS4 Essential Training\": {\"frequency\": 1, \"value\": \"Encore CS4 ...\"}, \"The Sketchnote Handbook\": {\"frequency\": 1, \"value\": \"The Sketchnote ...\"}, \"3.086x: Innovation and Commercialization\": {\"frequency\": 1, \"value\": \"3.086x: Innovation ...\"}, \"Responsive Web Design: Dreamweaver Edge Reflow Fireworks CS6\": {\"frequency\": 1, \"value\": \"Responsive Web ...\"}, \"Coding Faster with Emmet\": {\"frequency\": 1, \"value\": \"Coding Faster with ...\"}, \"3ds Max 9 Essential Training\": {\"frequency\": 1, \"value\": \"3ds Max 9 ...\"}, \"TIMFundamentals\": {\"frequency\": 1, \"value\": \"TIMFundamentals\"}, \"Sales Training - Sales Prospecting for Beginners\": {\"frequency\": 1, \"value\": \"Sales Training - ...\"}, \"The Complete Beginner's Guide to Maya for Games\": {\"frequency\": 1, \"value\": \"The Complete ...\"}, \"Creative Slideshows with Aperture\": {\"frequency\": 1, \"value\": \"Creative ...\"}, \"Unity 3d Game Development - iOS, Android, & Web - Beginners\": {\"frequency\": 1, \"value\": \"Unity 3d Game ...\"}, \"Pitch for Success: Making Your Pitch Count!\": {\"frequency\": 1, \"value\": \"Pitch for Success: ...\"}, \"AIR 2 with Flash and Flex Essential Training\": {\"frequency\": 1, \"value\": \"AIR 2 with Flash ...\"}, \"Trigonometry: Trigonometric Equations\": {\"frequency\": 1, \"value\": \"Trigonometry: ...\"}, \"Premiere Pro CS5.5 New Features\": {\"frequency\": 1, \"value\": \"Premiere Pro CS5.5 ...\"}, \"Uncover the Mysteries Of Past Life Regression & Spirituality\": {\"frequency\": 1, \"value\": \"Uncover the ...\"}, \"Dreamweaver 8 Beyond the Basics\": {\"frequency\": 1, \"value\": \"Dreamweaver 8 ...\"}, \"Serbian 101\": {\"frequency\": 1, \"value\": \"Serbian 101\"}, \"Network Analysis in Systems Biology\": {\"frequency\": 1, \"value\": \"Network Analysis ...\"}, \"Photoshop CS6 Crash Course\": {\"frequency\": 1, \"value\": \"Photoshop CS6 ...\"}, \"Maya 2008 Essential Training\": {\"frequency\": 1, \"value\": \"Maya 2008 ...\"}, \"Promote your business with Audio Video, Motion & Voice-Overs\": {\"frequency\": 1, \"value\": \"Promote your ...\"}, \"Video Editing Workshop Complete Beginners Course-Sony Vegas\": {\"frequency\": 1, \"value\": \"Video Editing ...\"}, \"3ds Max 2010: Lighting and Rendering with mental ray\": {\"frequency\": 1, \"value\": \"3ds Max 2010: ...\"}, \"How to Budget and Forecast for Your Business\": {\"frequency\": 1, \"value\": \"How to Budget and ...\"}, \"Build iPhone, iPad, and Android Apps with No Coding Required\": {\"frequency\": 1, \"value\": \"Build iPhone, ...\"}, \"Differential Equations\": {\"frequency\": 2, \"value\": \"Differential ...\"}, \"WordPress Advanced Topics\": {\"frequency\": 1, \"value\": \"WordPress Advanced ...\"}, \"College Application Essay Essentials: 10 Step Course\": {\"frequency\": 1, \"value\": \"College ...\"}, \"Windows 7 New Features\": {\"frequency\": 1, \"value\": \"Windows 7 New ...\"}, \"Mobile Apps for Real Estate Agents\": {\"frequency\": 1, \"value\": \"Mobile Apps for ...\"}, \"The Complete Guide to iOS 7 - iPad Edition\": {\"frequency\": 1, \"value\": \"The Complete Guide ...\"}, \"Social Media Management\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"Vedic Multiplication - Fastest and Easiest techniques\": {\"frequency\": 1, \"value\": \"Vedic ...\"}, \"TIMFundamentals Part Deux\": {\"frequency\": 1, \"value\": \"TIMFundamentals ...\"}, \"Photoshop CS3 Mastering Lab Color\": {\"frequency\": 1, \"value\": \"Photoshop CS3 ...\"}, \"Photoshop Elements 9: Scanning and Restoring Photos\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"After Effects 7 Essential Training\": {\"frequency\": 1, \"value\": \"After Effects 7 ...\"}, \"Grow to Greatness: Smart Growth for Private Businesses, Part I\": {\"frequency\": 1, \"value\": \"Grow to Greatness: ...\"}, \"Financial Planning (FinPlan)\": {\"frequency\": 1, \"value\": \"Financial Planning ...\"}, \"The Complete Catalyst Course for WordPress Bloggers\": {\"frequency\": 1, \"value\": \"The Complete ...\"}, \"Creating an MP3 Player with Adobe Flash\": {\"frequency\": 1, \"value\": \"Creating an MP3 ...\"}, \"Learning Adobe CS Integration and Version Cue\": {\"frequency\": 1, \"value\": \"Learning Adobe CS ...\"}, \"Do It Yourself App Class (iOS) With No Skills Necessary\": {\"frequency\": 1, \"value\": \"Do It Yourself App ...\"}, \"From InDesign CS6 to HTML\": {\"frequency\": 1, \"value\": \"From InDesign CS6 ...\"}, \"Microsoft Word 2013\": {\"frequency\": 1, \"value\": \"Microsoft Word ...\"}, \"Xcode Fundamentals: How to design a user experience in Cocoa\": {\"frequency\": 1, \"value\": \"Xcode ...\"}, \"Code Year\": {\"frequency\": 1, \"value\": \"Code Year\"}, \"Microsoft Visio 2013\": {\"frequency\": 1, \"value\": \"Microsoft Visio ...\"}, \"Visio 2003 Essential Training\": {\"frequency\": 1, \"value\": \"Visio 2003 ...\"}, \"Stepping Up on the Social Front: Lifepro (Part 1a)\": {\"frequency\": 1, \"value\": \"Stepping Up on the ...\"}, \"PHP CodeIgniter - Learn CodeIgniter\": {\"frequency\": 1, \"value\": \"PHP CodeIgniter - ...\"}, \"Beyond PowerPoint: Teach Online With ScreenFlow For Mac\": {\"frequency\": 1, \"value\": \"Beyond PowerPoint: ...\"}, \"Excel Mastery Course Part 1 of 5: Calculate\": {\"frequency\": 1, \"value\": \"Excel Mastery ...\"}, \"Human-Computer Interaction\": {\"frequency\": 1, \"value\": \"Human-Computer ...\"}, \"Become a Pharmacy Technician\": {\"frequency\": 1, \"value\": \"Become a Pharmacy ...\"}, \"Microsoft Project 2010 Beginners/Intermediate Training\": {\"frequency\": 1, \"value\": \"Microsoft Project ...\"}, \"Adding Custom Weapons to UDK\": {\"frequency\": 1, \"value\": \"Adding Custom ...\"}, \"Break Into The Programming Business\": {\"frequency\": 1, \"value\": \"Break Into The ...\"}, \"How to Negotiate Salary: Negotiating a Raise or Promotion\": {\"frequency\": 1, \"value\": \"How to Negotiate ...\"}, \"Mastering Microsoft Outlook 2010 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"Flash Professional CS5 New Features\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Finally...Write, Publish & Sell Your 1st Book\": {\"frequency\": 1, \"value\": \"Finally...Write, ...\"}, \"PH201x: Health and Society\": {\"frequency\": 1, \"value\": \"PH201x: Health and ...\"}, \"Learning GarageBand\": {\"frequency\": 1, \"value\": \"Learning ...\"}, \"Angs Guide to Buying Cameras with Confidence\": {\"frequency\": 1, \"value\": \"Angs Guide to ...\"}, \"Introducing WordPress\": {\"frequency\": 1, \"value\": \"Introducing ...\"}, \"Insights from a Project Manager\": {\"frequency\": 1, \"value\": \"Insights from a ...\"}, \"Financial and Valuation Modeling\": {\"frequency\": 1, \"value\": \"Financial and ...\"}, \"Using your mac to its fullest\": {\"frequency\": 1, \"value\": \"Using your mac to ...\"}, \"Creating Flash Web Sites in Encore CS4\": {\"frequency\": 1, \"value\": \"Creating Flash Web ...\"}, \"Shooting and Processing High Dynamic Range Photographs (HDR)\": {\"frequency\": 1, \"value\": \"Shooting and ...\"}, \"Photoshop CS6 New Features: Brushes\": {\"frequency\": 1, \"value\": \"Photoshop CS6 New ...\"}, \"How To Set And Reach Any Goal You Wish [Goal Do +]\": {\"frequency\": 1, \"value\": \"How To Set And ...\"}, \"Business Apps Using Corona SDK\": {\"frequency\": 1, \"value\": \"Business Apps ...\"}, \"Getting Started with Acrobat 8 Professional\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Flex 3 New Features\": {\"frequency\": 1, \"value\": \"Flex 3 New ...\"}, \"Rationing and Allocating Scarce Medical Resources\": {\"frequency\": 1, \"value\": \"Rationing and ...\"}, \"Designing a Resume\": {\"frequency\": 1, \"value\": \"Designing a Resume\"}, \"Free Way Of Making, Monetizing And Promoting Mobile Apps!\": {\"frequency\": 1, \"value\": \"Free Way Of ...\"}, \"Advanced Social Features in Ruby on Rails\": {\"frequency\": 1, \"value\": \"Advanced Social ...\"}, \"Fundamentals of Cosmometry\": {\"frequency\": 1, \"value\": \"Fundamentals of ...\"}, \"Google Calendar Essential Training (2011)\": {\"frequency\": 1, \"value\": \"Google Calendar ...\"}, \"Web Accessibility Principles\": {\"frequency\": 1, \"value\": \"Web Accessibility ...\"}, \"Mixing a Short Film with Logic Pro\": {\"frequency\": 1, \"value\": \"Mixing a Short ...\"}, \"Learn C# 2010 Part I\": {\"frequency\": 1, \"value\": \"Learn C# 2010 Part ...\"}, \"Business Plans for Startups\": {\"frequency\": 1, \"value\": \"Business Plans for ...\"}, \"GIMP Essential Training\": {\"frequency\": 1, \"value\": \"GIMP Essential ...\"}, \"Not Later. Write Now\": {\"frequency\": 1, \"value\": \"Not Later. Write ...\"}, \"Joomla!: Creating and Editing Custom Templates\": {\"frequency\": 1, \"value\": \"Joomla!: Creating ...\"}, \"Captivate 5 Introduction\": {\"frequency\": 1, \"value\": \"Captivate 5 ...\"}, \"Value Investing Code\": {\"frequency\": 1, \"value\": \"Value Investing ...\"}, \"Photoshop CS5 Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop CS5 ...\"}, \"Positive Thinking - Reprogram your mind for positivity\": {\"frequency\": 1, \"value\": \"Positive Thinking ...\"}, \"16.101x: Introduction to Aerodynamics\": {\"frequency\": 1, \"value\": \"16.101x: ...\"}, \"Photoshop CS4 for Photographers: Desktop Printing Techniques\": {\"frequency\": 1, \"value\": \"Photoshop CS4 for ...\"}, \"Connect Stage 3 Training\": {\"frequency\": 1, \"value\": \"Connect Stage 3 ...\"}, \"How to Generate Ideas\": {\"frequency\": 1, \"value\": \"How to Generate ...\"}, \"ActionScript 2.0 Essential Training\": {\"frequency\": 1, \"value\": \"ActionScript 2.0 ...\"}, \"The Fiction of Relationship\": {\"frequency\": 1, \"value\": \"The Fiction of ...\"}, \"Out Of Debt, Out Of Mind\": {\"frequency\": 1, \"value\": \"Out Of Debt, Out ...\"}, \"It's Time To Blog!\": {\"frequency\": 1, \"value\": \"It's Time To ...\"}, \"Learning Responsive Web Design\": {\"frequency\": 1, \"value\": \"Learning ...\"}, \"Options Spreads Bundle- the heart of Options Trading\": {\"frequency\": 1, \"value\": \"Options Spreads ...\"}, \"Up and Running with HTML\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Introduction to Physics\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"SharePoint Designer 2007: Branding SharePoint Sites\": {\"frequency\": 1, \"value\": \"SharePoint ...\"}, \"Create and Embed a Photo Gallery in a PDF\": {\"frequency\": 1, \"value\": \"Create and Embed a ...\"}, \"How and Why to Turn On Your Facebook Follow Button\": {\"frequency\": 1, \"value\": \"How and Why to ...\"}, \"Final Cut Pro: Lighting Effects in Post\": {\"frequency\": 1, \"value\": \"Final Cut Pro: ...\"}, \"InDesign Secrets\": {\"frequency\": 1, \"value\": \"InDesign Secrets\"}, \"Carefree Marketing System: 4 Simple Steps to Bigger Profits\": {\"frequency\": 1, \"value\": \"Carefree Marketing ...\"}, \"Financial Modeling Using Excel\": {\"frequency\": 1, \"value\": \"Financial Modeling ...\"}, \"Database Foundations\": {\"frequency\": 1, \"value\": \"Database ...\"}, \"Local Marketing Using The Internet and Social Media\": {\"frequency\": 1, \"value\": \"Local Marketing ...\"}, \"Facebook Advertising using Pay Per Click\": {\"frequency\": 1, \"value\": \"Facebook ...\"}, \"7 Business Steps for Your Personal Facebook Timeline\": {\"frequency\": 1, \"value\": \"7 Business Steps ...\"}, \"Creating Simulations in MassFX and 3ds Max\": {\"frequency\": 1, \"value\": \"Creating ...\"}, \"The Complete Guide to Motion\": {\"frequency\": 1, \"value\": \"The Complete Guide ...\"}, \"Learn SEO In An Hour\": {\"frequency\": 1, \"value\": \"Learn SEO In An ...\"}, \"ShortStocking\": {\"frequency\": 1, \"value\": \"ShortStocking\"}, \"Oracle PL/SQL Tutorial - A Comprehensive Training Course\": {\"frequency\": 1, \"value\": \"Oracle PL/SQL ...\"}, \"Photoshop Elements 11 Essentials: 03 Sharing and Printing Photos\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"Designing and Executing Information Security Strategies\": {\"frequency\": 1, \"value\": \"Designing and ...\"}, \"Introduction to Data Science\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Make Money Selling Domains (strategies)\": {\"frequency\": 1, \"value\": \"Make Money Selling ...\"}, \"Food, Nutrition & Your Health (FoodHlth)\": {\"frequency\": 1, \"value\": \"Food, Nutrition ...\"}, \"Photoshop for Designers: Working with Illustrator\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"After Effects CS4 New Creative Techniques\": {\"frequency\": 1, \"value\": \"After Effects CS4 ...\"}, \"Photoshop: Mastering the Fundamentals\": {\"frequency\": 1, \"value\": \"Photoshop: ...\"}, \"Complete Guitar System - Beginner to Advanced\": {\"frequency\": 1, \"value\": \"Complete Guitar ...\"}, \"Sony Vegas Pro Essential Training\": {\"frequency\": 1, \"value\": \"Sony Vegas Pro ...\"}, \"Create Your First Online Store with Magento Go\": {\"frequency\": 1, \"value\": \"Create Your First ...\"}, \"After Effects CS5 New Creative Techniques\": {\"frequency\": 1, \"value\": \"After Effects CS5 ...\"}, \"Blogging for Your Business\": {\"frequency\": 1, \"value\": \"Blogging for Your ...\"}, \"Twitter Marketing Best Practices & Analytics for Business\": {\"frequency\": 1, \"value\": \"Twitter Marketing ...\"}, \"Evidence-Based Care for Suspected Big Babies\": {\"frequency\": 1, \"value\": \"Evidence-Based ...\"}, \"Advanced search form with PHP and MySQL\": {\"frequency\": 1, \"value\": \"Advanced search ...\"}, \"Email Marketing Basics\": {\"frequency\": 1, \"value\": \"Email Marketing ...\"}, \"Create a Rotating Carousel with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create a Rotating ...\"}, \"Creating a Business Website\": {\"frequency\": 1, \"value\": \"Creating a ...\"}, \"Douglas Kirkland on Photography: Photographing Kids and Families\": {\"frequency\": 1, \"value\": \"Douglas Kirkland ...\"}, \"Pass the Cisco CAPPS 642-647 exam. Part of CCNP VOICE\": {\"frequency\": 1, \"value\": \"Pass the Cisco ...\"}, \"How to Run a Successful Blog Tour for Novelists\": {\"frequency\": 1, \"value\": \"How to Run a ...\"}, \"Monday Productivity Pointers\": {\"frequency\": 1, \"value\": \"Monday ...\"}, \"Landscape Photography\": {\"frequency\": 1, \"value\": \"Landscape ...\"}, \"Learn Adobe Premiere Pro CS6 Effects Professionally\": {\"frequency\": 1, \"value\": \"Learn Adobe ...\"}, \"InDesign CS3 Essential Training\": {\"frequency\": 1, \"value\": \"InDesign CS3 ...\"}, \"WordPress Social Media Automation\": {\"frequency\": 1, \"value\": \"WordPress Social ...\"}, \"WordPerfect 12 Essential Training\": {\"frequency\": 1, \"value\": \"WordPerfect 12 ...\"}, \"Organic Chemistry\": {\"frequency\": 1, \"value\": \"Organic Chemistry\"}, \"How to Be A Human Lie Detector\": {\"frequency\": 1, \"value\": \"How to Be A Human ...\"}, \"Learn Self-Hypnosis\": {\"frequency\": 1, \"value\": \"Learn Self- ...\"}, \"Creating 2d games in Unity\": {\"frequency\": 1, \"value\": \"Creating 2d games ...\"}, \"Game Development Crash Course with Corona SDK\": {\"frequency\": 1, \"value\": \"Game Development ...\"}, \"Premiere Pro CC Essential Training\": {\"frequency\": 1, \"value\": \"Premiere Pro CC ...\"}, \"Up and Running with MATLAB\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"JavaScript from Scratch\": {\"frequency\": 1, \"value\": \"JavaScript from ...\"}, \"Joomla - A Quickstart Introduction\": {\"frequency\": 1, \"value\": \"Joomla - A ...\"}, \"Excel 2010\": {\"frequency\": 1, \"value\": \"Excel 2010\"}, \"PowerPoint 2007 Advanced\": {\"frequency\": 1, \"value\": \"PowerPoint 2007 ...\"}, \"Excel 2013\": {\"frequency\": 1, \"value\": \"Excel 2013\"}, \"Drum Set for Beginners\": {\"frequency\": 1, \"value\": \"Drum Set for ...\"}, \"Enterprise Gamification\": {\"frequency\": 1, \"value\": \"Enterprise ...\"}, \"Ruby Bits Part 2\": {\"frequency\": 1, \"value\": \"Ruby Bits Part 2\"}, \"Flash CS4 Professional: Building UI Elements\": {\"frequency\": 1, \"value\": \"Flash CS4 ...\"}, \"InDesign CS5: Dynamic Publishing Workflows in XML\": {\"frequency\": 1, \"value\": \"InDesign CS5: ...\"}, \"Working with Difficult People\": {\"frequency\": 1, \"value\": \"Working with ...\"}, \"Trajectory: How to Build a Successful Business with Twitter\": {\"frequency\": 1, \"value\": \"Trajectory: How to ...\"}, \"Apple Final Cut Pro X Tutorial Video - Infinite Skills\": {\"frequency\": 1, \"value\": \"Apple Final Cut ...\"}, \"Flash Professional CS5.5 New Features\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Outlook for Mac 2011 Power Shortcuts\": {\"frequency\": 1, \"value\": \"Outlook for Mac ...\"}, \"Pentesting with BackTrack: Lite version\": {\"frequency\": 1, \"value\": \"Pentesting with ...\"}, \"Learn to Create Circuit Boards\": {\"frequency\": 1, \"value\": \"Learn to Create ...\"}, \"Kinetic Typography Crash Course (After Effects) (Video)\": {\"frequency\": 1, \"value\": \"Kinetic Typography ...\"}, \"Updating Your Digital Music Distribution\": {\"frequency\": 1, \"value\": \"Updating Your ...\"}, \"How to Get Hired\": {\"frequency\": 1, \"value\": \"How to Get Hired\"}, \"Zero Cost Marketing Strategies: Official Primer Course\": {\"frequency\": 1, \"value\": \"Zero Cost ...\"}, \"Photoshop Masking and Compositing: Fundamentals\": {\"frequency\": 1, \"value\": \"Photoshop Masking ...\"}, \"4.605x: A Global History of Architecture: Part 1\": {\"frequency\": 1, \"value\": \"4.605x: A Global ...\"}, \"CSS Floating Layouts\": {\"frequency\": 1, \"value\": \"CSS Floating ...\"}, \"Zen Cart Customization Fundamentals\": {\"frequency\": 1, \"value\": \"Zen Cart ...\"}, \"Fast ForWord Training for Schools\": {\"frequency\": 1, \"value\": \"Fast ForWord ...\"}, \"Entrepreneurship -- From Idea to Launch\": {\"frequency\": 1, \"value\": \"Entrepreneurship ...\"}, \"Unleash your Creativity\": {\"frequency\": 1, \"value\": \"Unleash your ...\"}, \"How To Choose a College or University\": {\"frequency\": 1, \"value\": \"How To Choose a ...\"}, \"Create a Rotating Carousel with jQuery\": {\"frequency\": 1, \"value\": \"Create a Rotating ...\"}, \"VFX Techniques: Building Replacement with After Effects\": {\"frequency\": 1, \"value\": \"VFX Techniques: ...\"}, \"Dale Herigstad & Schematic, Interactive Design Agency\": {\"frequency\": 1, \"value\": \"Dale Herigstad ...\"}, \"How to Teach Online and Create a Passive Income Stream\": {\"frequency\": 1, \"value\": \"How to Teach ...\"}, \"Parenting\": {\"frequency\": 1, \"value\": \"Parenting\"}, \"The Marketing Plan Seminar\": {\"frequency\": 1, \"value\": \"The Marketing Plan ...\"}, \"Photoshop CS3 One-on-One: Beyond the Basics\": {\"frequency\": 1, \"value\": \"Photoshop CS3 One- ...\"}, \"Microsoft Project: The Five Keys - Key 2 Task Links (Part A)\": {\"frequency\": 1, \"value\": \"Microsoft Project: ...\"}, \"Adobe Captivate 6 and 7 Training for Beginners\": {\"frequency\": 1, \"value\": \"Adobe Captivate 6 ...\"}, \"Foundations of Programming: Software Quality Assurance\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Recording and Mixing Music: Acoustic Guitar and Vocals\": {\"frequency\": 1, \"value\": \"Recording and ...\"}, \"Build a Simple Ruby on Rails Application\": {\"frequency\": 1, \"value\": \"Build a Simple ...\"}, \"Improve Your SEO in Six Ways Today!\": {\"frequency\": 1, \"value\": \"Improve Your SEO ...\"}, \"How to Build Your Business Through Blogging\": {\"frequency\": 1, \"value\": \"How to Build Your ...\"}, \"WordPress: The Geekified Guide\": {\"frequency\": 1, \"value\": \"WordPress: The ...\"}, \"Joomla! 2.5 Essential Training\": {\"frequency\": 1, \"value\": \"Joomla! 2.5 ...\"}, \"Choosing and Using Web Fonts\": {\"frequency\": 1, \"value\": \"Choosing and Using ...\"}, \"The Bootstrapper's Guide to the Mobile Web\": {\"frequency\": 1, \"value\": \"The ...\"}, \"HTML5: Geolocation in Depth\": {\"frequency\": 1, \"value\": \"HTML5: Geolocation ...\"}, \"Create a Single HTML5 Resume\": {\"frequency\": 1, \"value\": \"Create a Single ...\"}, \"Ze Frank, Comedic Digital Savant\": {\"frequency\": 1, \"value\": \"Ze Frank, Comedic ...\"}, \"1 Hour HTML\": {\"frequency\": 1, \"value\": \"1 Hour HTML\"}, \"Screenwriting Workshop\": {\"frequency\": 1, \"value\": \"Screenwriting ...\"}, \"How to Create a Udemy Course\": {\"frequency\": 1, \"value\": \"How to Create a ...\"}, \"Outlook 2013 The Basics\": {\"frequency\": 1, \"value\": \"Outlook 2013 The ...\"}, \"InfoPath 2007 Introduction\": {\"frequency\": 1, \"value\": \"InfoPath 2007 ...\"}, \"Building an Online Shopping Cart (2006)\": {\"frequency\": 1, \"value\": \"Building an Online ...\"}, \"Find Customers\": {\"frequency\": 1, \"value\": \"Find Customers\"}, \"Pro Tools 10 Tutorial - Makes Learning Pro Tools Easy\": {\"frequency\": 1, \"value\": \"Pro Tools 10 ...\"}, \"CSS: Visual Optimization\": {\"frequency\": 1, \"value\": \"CSS: Visual ...\"}, \"Master iOS App Development\": {\"frequency\": 1, \"value\": \"Master iOS App ...\"}, \"Email Marketing: How To Build an Email List of Customers\": {\"frequency\": 1, \"value\": \"Email Marketing: ...\"}, \"Foundations of Audio: Reverb\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Leveraging YouTube to Drive Sales and Traffic\": {\"frequency\": 1, \"value\": \"Leveraging YouTube ...\"}, \"Google SketchUp Pro: Tools and Techniques\": {\"frequency\": 1, \"value\": \"Google SketchUp ...\"}, \"Become a Professional Tarot Reader from Scratch\": {\"frequency\": 1, \"value\": \"Become a ...\"}, \"FREE Tools for Creating Dynamic HD Video Presentations\": {\"frequency\": 1, \"value\": \"FREE Tools for ...\"}, \"Job Search Strategies\": {\"frequency\": 1, \"value\": \"Job Search ...\"}, \"PHLX101-01: Introduction to Bioethics\": {\"frequency\": 1, \"value\": \"PHLX101-01: ...\"}, \"Foundations of Photography: Exposure\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Final Cut Pro 6 with Photoshop CS3 Integration\": {\"frequency\": 1, \"value\": \"Final Cut Pro 6 ...\"}, \"Adobe Edge HTML5 Web Animation for Desktop & Mobile devices\": {\"frequency\": 1, \"value\": \"Adobe Edge HTML5 ...\"}, \"Drupal 7 Advanced Training\": {\"frequency\": 1, \"value\": \"Drupal 7 Advanced ...\"}, \"How to Play Guitar and Really Understand Music Quickly!\": {\"frequency\": 1, \"value\": \"How to Play Guitar ...\"}, \"Macro Analysis Bootcamp\": {\"frequency\": 1, \"value\": \"Macro Analysis ...\"}, \"10 Steps to Dramatic Nature Photography\": {\"frequency\": 1, \"value\": \"10 Steps to ...\"}, \"Maya 2011: Modeling a Character\": {\"frequency\": 1, \"value\": \"Maya 2011: ...\"}, \"Whitehat Hacking and Penetration Testing Tutorial Video\": {\"frequency\": 1, \"value\": \"Whitehat Hacking ...\"}, \"QuickStart! - Adobe Photoshop CC\": {\"frequency\": 1, \"value\": \"QuickStart! - ...\"}, \"Learn SAP BW 7.3 Training - Modeling For Beginners\": {\"frequency\": 1, \"value\": \"Learn SAP BW 7.3 ...\"}, \"Be a Photoshop Guru\": {\"frequency\": 1, \"value\": \"Be a Photoshop ...\"}, \"After Effects CS3 Professional Beyond the Basics\": {\"frequency\": 1, \"value\": \"After Effects CS3 ...\"}, \"How to create anything for print, digital w/ Adobe inDesign\": {\"frequency\": 1, \"value\": \"How to create ...\"}, \"InCopy CS3 + InDesign CS3 Integration\": {\"frequency\": 1, \"value\": \"InCopy CS3 + ...\"}, \"Easy PHPeasy - PHP & MySQL for code-phobes!\": {\"frequency\": 1, \"value\": \"Easy PHPeasy - PHP ...\"}, \"How To Build An Email List From Scratch\": {\"frequency\": 1, \"value\": \"How To Build An ...\"}, \"Up and Running with HDR Efex Pro 2.0\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Flash CS3 Projects: Delivering Flash to Mobile Devices\": {\"frequency\": 1, \"value\": \"Flash CS3 ...\"}, \"Create a beautiful website in a few hours without any coding\": {\"frequency\": 1, \"value\": \"Create a beautiful ...\"}, \"Responsive Design with Dreamweaver CS6\": {\"frequency\": 1, \"value\": \"Responsive Design ...\"}, \"Neuroethics\": {\"frequency\": 1, \"value\": \"Neuroethics\"}, \"3.091x: Introduction to Solid State Chemistry\": {\"frequency\": 1, \"value\": \"3.091x: ...\"}, \"Project 2013 Essential Training\": {\"frequency\": 1, \"value\": \"Project 2013 ...\"}, \"Effective Email (2006)\": {\"frequency\": 1, \"value\": \"Effective Email ...\"}, \"15 Days to Social Media Success\": {\"frequency\": 1, \"value\": \"15 Days to Social ...\"}, \"Network Troubleshooting Video Mentor\": {\"frequency\": 1, \"value\": \"Network ...\"}, \"21st Century Brand Building\": {\"frequency\": 1, \"value\": \"21st Century Brand ...\"}, \"Designing for Productivity in the User eXperience\": {\"frequency\": 1, \"value\": \"Designing for ...\"}, \"Up and Running with Raspberry Pi\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Practical Project Management for Creative Projects\": {\"frequency\": 1, \"value\": \"Practical Project ...\"}, \"Set a Marquee to Autoplay with jQuery\": {\"frequency\": 1, \"value\": \"Set a Marquee to ...\"}, \"How to Learn and Memorize the Vocabulary of Any Language\": {\"frequency\": 1, \"value\": \"How to Learn and ...\"}, \"10 Killer Tips and Tricks for Unity\": {\"frequency\": 1, \"value\": \"10 Killer Tips and ...\"}, \"Photoshop 101\": {\"frequency\": 1, \"value\": \"Photoshop 101\"}, \"InDesign CS5 New Features\": {\"frequency\": 1, \"value\": \"InDesign CS5 New ...\"}, \"Final Cut Pro 5 Color Correction\": {\"frequency\": 1, \"value\": \"Final Cut Pro 5 ...\"}, \"Creating Game Environments in Maya and Photoshop\": {\"frequency\": 1, \"value\": \"Creating Game ...\"}, \"Postnatal Yoga - Basic Class\": {\"frequency\": 1, \"value\": \"Postnatal Yoga - ...\"}, \"Up and Running with Articulate Storyline\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Introduction to Ethical Hacking and Web Application Security\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Android 4.1 SDK Jelly Bean New Features\": {\"frequency\": 1, \"value\": \"Android 4.1 SDK ...\"}, \"How To Run A Philosophy Salon\": {\"frequency\": 1, \"value\": \"How To Run A ...\"}, \"Foundations of UX: Making the Case for Usability Testing\": {\"frequency\": 1, \"value\": \"Foundations of UX: ...\"}, \"Science from Superheroes to Global Warming\": {\"frequency\": 1, \"value\": \"Science from ...\"}, \"Creating a Mail Merge in Word 2010\": {\"frequency\": 1, \"value\": \"Creating a Mail ...\"}, \"Transform Your Health In This 30 Day Body Renovation Detox\": {\"frequency\": 1, \"value\": \"Transform Your ...\"}, \"SQL Server 2008 R2 Database Maintenance Skills\": {\"frequency\": 1, \"value\": \"SQL Server 2008 R2 ...\"}, \"How to Build a WordPress Theme\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"Project Photoshop: Compositing\": {\"frequency\": 1, \"value\": \"Project Photoshop: ...\"}, \"IP Adressing and Subnetting\": {\"frequency\": 1, \"value\": \"IP Adressing and ...\"}, \"Integral Lifestyle\": {\"frequency\": 1, \"value\": \"Integral Lifestyle\"}, \"MySQL Database Training - A Comprehensive Course\": {\"frequency\": 1, \"value\": \"MySQL Database ...\"}, \"Learn English (Elementary)\": {\"frequency\": 1, \"value\": \"Learn English ...\"}, \"Object-Oriented Programming with PHP\": {\"frequency\": 1, \"value\": \"Object-Oriented ...\"}, \"Maya 2014 New Features\": {\"frequency\": 1, \"value\": \"Maya 2014 New ...\"}, \"Unity 3D 3.5 Essential Training\": {\"frequency\": 1, \"value\": \"Unity 3D 3.5 ...\"}, \"How To Start A T Shirt Transfer Printing Business From Home\": {\"frequency\": 1, \"value\": \"How To Start A T ...\"}, \"Travel Photography - Amazing Tips and Techniques\": {\"frequency\": 1, \"value\": \"Travel Photography ...\"}, \"Photoshop for Designers: Layer Effects\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"Learning Flash MX\": {\"frequency\": 1, \"value\": \"Learning Flash MX\"}, \"How to teach an online course\": {\"frequency\": 1, \"value\": \"How to teach an ...\"}, \"Java Swing (GUI) Programming: From Beginner to Expert\": {\"frequency\": 1, \"value\": \"Java Swing (GUI) ...\"}, \"Cocoa Essential Training\": {\"frequency\": 1, \"value\": \"Cocoa Essential ...\"}, \"INFX523-01: Globalization's Winners and Losers: Challenges for Developed and Developing Countries\": {\"frequency\": 1, \"value\": \"INFX523-01: Global ...\"}, \"Learn Apple iPhone Training\": {\"frequency\": 1, \"value\": \"Learn Apple iPhone ...\"}, \"CPE for CPAs EAs - Federal Tax Updates Training 2013\": {\"frequency\": 1, \"value\": \"CPE for CPAs EAs - ...\"}, \"Photoshop For Artists\": {\"frequency\": 1, \"value\": \"Photoshop For ...\"}, \"Play by Ear: A Thousand Years\": {\"frequency\": 1, \"value\": \"Play by Ear: A ...\"}, \"Artist at Work: Complementary Colors\": {\"frequency\": 1, \"value\": \"Artist at Work: ...\"}, \"Unix for Mac OS X Users\": {\"frequency\": 1, \"value\": \"Unix for Mac OS X ...\"}, \"Beginners Guide to Codeigniter\": {\"frequency\": 1, \"value\": \"Beginners Guide to ...\"}, \"Up and Running with Pinterest\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Excel 2007: Advanced Formulas and Functions\": {\"frequency\": 1, \"value\": \"Excel 2007: ...\"}, \"Pro Tools Projects: Time Manipulation with Elastic Audio\": {\"frequency\": 1, \"value\": \"Pro Tools ...\"}, \"How to maximise Chartboost eCPM and revenue in iPhone apps\": {\"frequency\": 1, \"value\": \"How to maximise ...\"}, \"Build, design, edit custom wordpress themes with Dreamweaver\": {\"frequency\": 1, \"value\": \"Build, design, ...\"}, \"Mixing a Short Film with Audition\": {\"frequency\": 1, \"value\": \"Mixing a Short ...\"}, \"SEO Course for Beginners\": {\"frequency\": 1, \"value\": \"SEO Course for ...\"}, \"Mat Pilates for the Perfect Body\": {\"frequency\": 1, \"value\": \"Mat Pilates for ...\"}, \"The Social Media Road Trip Workshop\": {\"frequency\": 1, \"value\": \"The Social Media ...\"}, \"Microsoft Outlook 2010 Advanced\": {\"frequency\": 1, \"value\": \"Microsoft Outlook ...\"}, \"Financial Modeling Program\": {\"frequency\": 1, \"value\": \"Financial Modeling ...\"}, \"Create Your Own iPad & Android Publications\": {\"frequency\": 1, \"value\": \"Create Your Own ...\"}, \"Outlook 2010: Time Management with Calendar and Tasks\": {\"frequency\": 1, \"value\": \"Outlook 2010: Time ...\"}, \"3 Fun Ways to Release Limiting Beliefs\": {\"frequency\": 1, \"value\": \"3 Fun Ways to ...\"}, \"PowerPoint 2007: Audio and Video in Depth\": {\"frequency\": 1, \"value\": \"PowerPoint 2007: ...\"}, \"Flash Actionscript 3.0 (Beginner to Advanced)\": {\"frequency\": 1, \"value\": \"Flash Actionscript ...\"}, \"Maya UV Unwrapping a Digital Dinosaur in 2 hours\": {\"frequency\": 1, \"value\": \"Maya UV Unwrapping ...\"}, \"Motion Tracking and Stabilization with After Effects CS5.5\": {\"frequency\": 1, \"value\": \"Motion Tracking ...\"}, \"How to Discover Your Gifts, Talents, & Abilities\": {\"frequency\": 1, \"value\": \"How to Discover ...\"}, \"Facebook Page Essentials\": {\"frequency\": 1, \"value\": \"Facebook Page ...\"}, \"Biology\": {\"frequency\": 1, \"value\": \"Biology\"}, \"1 hour Xcode - Introduction\": {\"frequency\": 1, \"value\": \"1 hour Xcode - ...\"}, \"UT.9.01x: Effective Thinking Through Mathematics\": {\"frequency\": 1, \"value\": \"UT.9.01x: ...\"}, \"Web Design from the Ground Up\": {\"frequency\": 1, \"value\": \"Web Design from ...\"}, \"Lightroom 5 Photographer Workflow\": {\"frequency\": 1, \"value\": \"Lightroom 5 ...\"}, \"Photoshop Retouching Techniques: Fashion Editorial\": {\"frequency\": 1, \"value\": \"Photoshop ...\"}, \"Learn To Run Linux Servers From Scratch (LPI Level 1-101)\": {\"frequency\": 1, \"value\": \"Learn To Run Linux ...\"}, \"The Complete Forex Trader\": {\"frequency\": 1, \"value\": \"The Complete Forex ...\"}, \"After Effects Artist in Action: Eran Stern's Personal Transporter\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"CSS Fundamentals\": {\"frequency\": 2, \"value\": \"CSS Fundamentals\"}, \"Amazing Lower Thirds - Professional Video Titles Made Easy\": {\"frequency\": 1, \"value\": \"Amazing Lower ...\"}, \"Up and Running with Hype\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Travel Photography: Portrait of a City Neighborhood\": {\"frequency\": 1, \"value\": \"Travel ...\"}, \"Photoshop for Designers: Type Effects\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"Learning Motion\": {\"frequency\": 1, \"value\": \"Learning Motion\"}, \"CCNP TSHOOT 2013 Video Boot Camp with Chris Bryant\": {\"frequency\": 1, \"value\": \"CCNP TSHOOT 2013 ...\"}, \"How to Win at IT Freelancing\": {\"frequency\": 1, \"value\": \"How to Win at IT ...\"}, \"Job Interview Skills Training Course\": {\"frequency\": 1, \"value\": \"Job Interview ...\"}, \"Design the Web: Clipping Masks\": {\"frequency\": 1, \"value\": \"Design the Web: ...\"}, \"M101P: MongoDB for Developers\": {\"frequency\": 1, \"value\": \"M101P: MongoDB for ...\"}, \"Best of Livestock\": {\"frequency\": 1, \"value\": \"Best of Livestock\"}, \"A Practical Introduction to Responsive Design\": {\"frequency\": 1, \"value\": \"A Practical ...\"}, \"How To Start A Business: Turning Ideas Into Income\": {\"frequency\": 1, \"value\": \"How To Start A ...\"}, \"Business Ethics: How to Create an Ethical Organization\": {\"frequency\": 1, \"value\": \"Business Ethics: ...\"}, \"After Effects Project Workflow\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"3ds Max 2010 Essential Training\": {\"frequency\": 1, \"value\": \"3ds Max 2010 ...\"}, \"CorelDRAW Essential Training\": {\"frequency\": 1, \"value\": \"CorelDRAW ...\"}, \"Game Prop Creation in 3ds Max\": {\"frequency\": 1, \"value\": \"Game Prop Creation ...\"}, \"After Effects CS3 Professional Essential Training\": {\"frequency\": 1, \"value\": \"After Effects CS3 ...\"}, \"Learn Microsoft Excel 2010 by Example\": {\"frequency\": 1, \"value\": \"Learn Microsoft ...\"}, \"Add a Wraparound Effect for a Marquee with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Add a Wraparound ...\"}, \"Soundbooth CS4 Getting Started\": {\"frequency\": 1, \"value\": \"Soundbooth CS4 ...\"}, \"HTML & CSS for Beginners\": {\"frequency\": 1, \"value\": \"HTML & CSS for ...\"}, \"iPhoto 6 Essential Training\": {\"frequency\": 1, \"value\": \"iPhoto 6 Essential ...\"}, \"WordPress Mobile Solutions\": {\"frequency\": 1, \"value\": \"WordPress Mobile ...\"}, \"Using iPhoto and Aperture Together\": {\"frequency\": 1, \"value\": \"Using iPhoto and ...\"}, \"Photoshop for Photographers: Compositing\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"Public Relations for Startups and Small Business\": {\"frequency\": 1, \"value\": \"Public Relations ...\"}, \"Adobe Certified Training: PSD to HTML with Adobe Photoshop\": {\"frequency\": 1, \"value\": \"Adobe Certified ...\"}, \"Podcasting with GarageBand for Teachers\": {\"frequency\": 1, \"value\": \"Podcasting with ...\"}, \"Consulting Proposals: Your Guide to Winning More Business\": {\"frequency\": 1, \"value\": \"Consulting ...\"}, \"Probability\": {\"frequency\": 1, \"value\": \"Probability\"}, \"Understanding Social Media Measurement\": {\"frequency\": 1, \"value\": \"Understanding ...\"}, \"Control of Mobile Robots\": {\"frequency\": 1, \"value\": \"Control of Mobile ...\"}, \"Precalculus\": {\"frequency\": 1, \"value\": \"Precalculus\"}, \"Applied Interaction Design\": {\"frequency\": 1, \"value\": \"Applied ...\"}, \"Essential Chinese for Travelers (1)\": {\"frequency\": 1, \"value\": \"Essential Chinese ...\"}, \"How to Pass Exams\": {\"frequency\": 1, \"value\": \"How to Pass Exams\"}, \"Introduction to Genetics and Evolution\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"How To Start A Business\": {\"frequency\": 1, \"value\": \"How To Start A ...\"}, \"Shopper Psychology: Becoming a Smart Shopper\": {\"frequency\": 1, \"value\": \"Shopper ...\"}, \"QuickStart! - Adobe Illustrator CC\": {\"frequency\": 1, \"value\": \"QuickStart! - ...\"}, \"Enhancing a Simple PHP Application\": {\"frequency\": 1, \"value\": \"Enhancing a Simple ...\"}, \"Responsive web design with Twitter bootstrap & Dreamweaver\": {\"frequency\": 1, \"value\": \"Responsive web ...\"}, \"PHP with MySQL Essential Training\": {\"frequency\": 1, \"value\": \"PHP with MySQL ...\"}, \"JIRA and GreenHopper for Agile Teams\": {\"frequency\": 1, \"value\": \"JIRA and ...\"}, \"Clinical Terminology for International and U.S. Students\": {\"frequency\": 1, \"value\": \"Clinical ...\"}, \"Vaccines\": {\"frequency\": 1, \"value\": \"Vaccines\"}, \"4 Simple Leadership Tools for Every Team Member\": {\"frequency\": 1, \"value\": \"4 Simple ...\"}, \"Photoshop Essentials\": {\"frequency\": 1, \"value\": \"Photoshop ...\"}, \"TOEFL iBT Listening Comprehension Online Preparation Course\": {\"frequency\": 1, \"value\": \"TOEFL iBT ...\"}, \"Drupal 7: Reporting and Visualizing Data\": {\"frequency\": 1, \"value\": \"Drupal 7: ...\"}, \"CSS with LESS and Sass\": {\"frequency\": 1, \"value\": \"CSS with LESS and ...\"}, \"Dreamweaver 8 Dynamic Development\": {\"frequency\": 1, \"value\": \"Dreamweaver 8 ...\"}, \"Contribute CS3 Essential Training\": {\"frequency\": 1, \"value\": \"Contribute CS3 ...\"}, \"Aperture 2 Essential Training\": {\"frequency\": 1, \"value\": \"Aperture 2 ...\"}, \"Python and Python Django for Beginners 2 Course Package\": {\"frequency\": 1, \"value\": \"Python and Python ...\"}, \"Killer Beginners Web Design\": {\"frequency\": 1, \"value\": \"Killer Beginners ...\"}, \"Sounds good? Sounds great!\": {\"frequency\": 1, \"value\": \"Sounds good? ...\"}, \"Digital Marketing Management\": {\"frequency\": 1, \"value\": \"Digital Marketing ...\"}, \"Introduction to Small Business Accounting Training Tutorial\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Planning Your Podcast\": {\"frequency\": 1, \"value\": \"Planning Your ...\"}, \"FileMaker Pro 12 in Depth\": {\"frequency\": 1, \"value\": \"FileMaker Pro 12 ...\"}, \"Interaction Design: Process and Inspiration\": {\"frequency\": 1, \"value\": \"Interaction ...\"}, \"Flash MX 2004 Audio & Video Integration\": {\"frequency\": 1, \"value\": \"Flash MX 2004 ...\"}, \"The Complete Beginner's guide to ZBrush\": {\"frequency\": 1, \"value\": \"The Complete ...\"}, \"The Creative Spark: Erik Natzke, Generative Artist\": {\"frequency\": 1, \"value\": \"The Creative ...\"}, \"Google Boost your Start Up - how I get 1,000 visitors a day\": {\"frequency\": 1, \"value\": \"Google Boost your ...\"}, \"Managing Your Career\": {\"frequency\": 1, \"value\": \"Managing Your ...\"}, \"After Effects Apprentice 13: Paint, Roto, and Puppet\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"Evolution Teacher Training\": {\"frequency\": 1, \"value\": \"Evolution Teacher ...\"}, \"Build Your Personal Brand In 8 Easy Steps - Module 1\": {\"frequency\": 1, \"value\": \"Build Your ...\"}, \"Salesforce.com Admin Essentials for Beginners\": {\"frequency\": 1, \"value\": \"Salesforce.com ...\"}, \"Illustrator Insider Training: Type and Text\": {\"frequency\": 1, \"value\": \"Illustrator ...\"}, \"Learn about Eastern Medicine and Energy Psychology\": {\"frequency\": 1, \"value\": \"Learn about ...\"}, \"Lightroom 4 New Features\": {\"frequency\": 1, \"value\": \"Lightroom 4 New ...\"}, \"iOS SDK Essential Training (2012)\": {\"frequency\": 1, \"value\": \"iOS SDK Essential ...\"}, \"Maya 2010: Getting Started with MatchMover, Toxik, and Backburner\": {\"frequency\": 1, \"value\": \"Maya 2010: Getting ...\"}, \"Iphone Camera Essentials\": {\"frequency\": 1, \"value\": \"Iphone Camera ...\"}, \"Php & Mysql For Beginners\": {\"frequency\": 1, \"value\": \"Php & Mysql ...\"}, \"The Wonderful World of Digital Art and Photography\": {\"frequency\": 1, \"value\": \"The Wonderful ...\"}, \"Designing Gamification Level 2 (Expert) + Certification\": {\"frequency\": 1, \"value\": \"Designing ...\"}, \"Natural Light Fashion / Beauty Photography\": {\"frequency\": 1, \"value\": \"Natural Light ...\"}, \"Adwords for Beginners - The Ultimate Adwords Tutorial\": {\"frequency\": 1, \"value\": \"Adwords for ...\"}, \"Using Lightroom and Photoshop Together\": {\"frequency\": 1, \"value\": \"Using Lightroom ...\"}, \"Edge Animate Essential Training\": {\"frequency\": 1, \"value\": \"Edge Animate ...\"}, \"Up and Running with Acrobat X\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Android App Development Fundamentals II\": {\"frequency\": 1, \"value\": \"Android App ...\"}, \"Oracle Database Administration for Absolute Beginners\": {\"frequency\": 1, \"value\": \"Oracle Database ...\"}, \"iPhone App, Start to Finish\": {\"frequency\": 1, \"value\": \"iPhone App, Start ...\"}, \"Microsoft Outlook 2010 Tutorial - Learning Made Easy\": {\"frequency\": 1, \"value\": \"Microsoft Outlook ...\"}, \"Learn PowerPoint 2010\": {\"frequency\": 1, \"value\": \"Learn PowerPoint ...\"}, \"WordPress Ecommerce: Core Concepts\": {\"frequency\": 1, \"value\": \"WordPress ...\"}, \"The Mini Job Search Boot Camp\": {\"frequency\": 1, \"value\": \"The Mini Job ...\"}, \"Microsoft PowerPoint 2010 Tutorial\": {\"frequency\": 1, \"value\": \"Microsoft ...\"}, \"Search Engine Optimization For Wordpress\": {\"frequency\": 1, \"value\": \"Search Engine ...\"}, \"Google Sites Essential Training\": {\"frequency\": 1, \"value\": \"Google Sites ...\"}, \"Responsive Design Workflows\": {\"frequency\": 1, \"value\": \"Responsive Design ...\"}, \"jQuery UI In Depth\": {\"frequency\": 1, \"value\": \"jQuery UI In Depth\"}, \"Speakeasy Cocktails\": {\"frequency\": 1, \"value\": \"Speakeasy ...\"}, \"How To Burn Fat For Good\": {\"frequency\": 1, \"value\": \"How To Burn Fat ...\"}, \"Aperture 3.3/3.4 New Features Overview\": {\"frequency\": 1, \"value\": \"Aperture 3.3/3.4 ...\"}, \"Bento 2 Essential Training\": {\"frequency\": 1, \"value\": \"Bento 2 Essential ...\"}, \"Risk Management\": {\"frequency\": 1, \"value\": \"Risk Management\"}, \"Negotiation: Problems Solved, Not Battles Fought\": {\"frequency\": 1, \"value\": \"Negotiation: ...\"}, \"Setting Up PHP 5 for Windows with Apache or IIS\": {\"frequency\": 1, \"value\": \"Setting Up PHP 5 ...\"}, \"Write Your Memoir In A Weekend: Putting Life in Life Stories\": {\"frequency\": 1, \"value\": \"Write Your Memoir ...\"}, \"iTunes 5 and 6 + iPod Essential Training\": {\"frequency\": 1, \"value\": \"iTunes 5 and 6 + ...\"}, \"Bert Monroy: The Making of Times Square, The People\": {\"frequency\": 1, \"value\": \"Bert Monroy: The ...\"}, \"Enhancing a Landscape Photo with Lightroom\": {\"frequency\": 1, \"value\": \"Enhancing a ...\"}, \"Project Photoshop: Automation\": {\"frequency\": 1, \"value\": \"Project Photoshop: ...\"}, \"CINEMA 4D R13 New Features\": {\"frequency\": 1, \"value\": \"CINEMA 4D R13 New ...\"}, \"Windows 8 Essential Training\": {\"frequency\": 1, \"value\": \"Windows 8 ...\"}, \"Gmail Essential Training\": {\"frequency\": 1, \"value\": \"Gmail Essential ...\"}, \"Adobe Photoshop Lightroom 4\": {\"frequency\": 1, \"value\": \"Adobe Photoshop ...\"}, \"Discover How to Draw and paint Comics\": {\"frequency\": 1, \"value\": \"Discover How to ...\"}, \"Apps for Librarians & Educators\": {\"frequency\": 1, \"value\": \"Apps for ...\"}, \"Overcoming Life's Challenges, Are you hanging off the Z?\": {\"frequency\": 1, \"value\": \"Overcoming ...\"}, \"Job Search Boot Camp: Ready Yourself, Ready Your Resume\": {\"frequency\": 1, \"value\": \"Job Search Boot ...\"}, \"Core Finance\": {\"frequency\": 1, \"value\": \"Core Finance\"}, \"Business Mathematics for Enterprises\": {\"frequency\": 1, \"value\": \"Business ...\"}, \"Advanced Java Programming\": {\"frequency\": 1, \"value\": \"Advanced Java ...\"}, \"Adobe Photoshop for Photographers\": {\"frequency\": 1, \"value\": \"Adobe Photoshop ...\"}, \"X-Word Grammar: The Simple Sentence\": {\"frequency\": 1, \"value\": \"X-Word Grammar: ...\"}, \"Photoshop CS6 New Features\": {\"frequency\": 1, \"value\": \"Photoshop CS6 New ...\"}, \"After Effects CS4 New Features\": {\"frequency\": 1, \"value\": \"After Effects CS4 ...\"}, \"Video Marketing for Beginners\": {\"frequency\": 1, \"value\": \"Video Marketing ...\"}, \"2012 SBIFF Screenwriters' Panel: It Starts with the Script\": {\"frequency\": 1, \"value\": \"2012 SBIFF ...\"}, \"Learn Thai Yoga Massage\": {\"frequency\": 1, \"value\": \"Learn Thai Yoga ...\"}, \"FileMaker Pro 9 Beyond the Basics\": {\"frequency\": 1, \"value\": \"FileMaker Pro 9 ...\"}, \"Cardiac Arrest, Hypothermia, and Resuscitation Science\": {\"frequency\": 1, \"value\": \"Cardiac Arrest, ...\"}, \"How to Create Great Ecards\": {\"frequency\": 1, \"value\": \"How to Create ...\"}, \"Getting Started with Photoshop Elements 10\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Python\": {\"frequency\": 1, \"value\": \"Python\"}, \"Creating a CSS Style Guide: Hands-On Training\": {\"frequency\": 1, \"value\": \"Creating a CSS ...\"}, \"Getting Started with Premiere Pro CS5\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Core Data for iOS and OS X\": {\"frequency\": 1, \"value\": \"Core Data for iOS ...\"}, \"Conversational Spanish I: Spanish basic sentence patterns\": {\"frequency\": 1, \"value\": \"Conversational ...\"}, \"Kickstarter Equation: 6 Elements to a Kickass Kickstarter\": {\"frequency\": 1, \"value\": \"Kickstarter ...\"}, \"How to build an online business website with wordpress\": {\"frequency\": 1, \"value\": \"How to build an ...\"}, \"Excel 2008 for Mac: Pivot Tables for Data Analysis\": {\"frequency\": 1, \"value\": \"Excel 2008 for ...\"}, \"The Tragedy of Macbeth\": {\"frequency\": 1, \"value\": \"The Tragedy of ...\"}, \"Search Engine Optimization\": {\"frequency\": 1, \"value\": \"Search Engine ...\"}, \"The New Rules of Penny Stocking\": {\"frequency\": 1, \"value\": \"The New Rules of ...\"}, \"Organizational Analysis\": {\"frequency\": 1, \"value\": \"Organizational ...\"}, \"Captivate 5 New Features\": {\"frequency\": 1, \"value\": \"Captivate 5 New ...\"}, \"3ds Max 9 Modeling\": {\"frequency\": 1, \"value\": \"3ds Max 9 Modeling\"}, \"Up and Running with WebEx Training Center\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"jQuery: The Return Flight\": {\"frequency\": 1, \"value\": \"jQuery: The Return ...\"}, \"CSS Prep Course\": {\"frequency\": 1, \"value\": \"CSS Prep Course\"}, \"HOW to Focus For Golf - Discover the Psychology of Aiming\": {\"frequency\": 1, \"value\": \"HOW to Focus For ...\"}, \"Python 3 Essential Training\": {\"frequency\": 1, \"value\": \"Python 3 Essential ...\"}, \"Introduction to Web APIs\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Adobe Captivate 5 Training for Beginners\": {\"frequency\": 1, \"value\": \"Adobe Captivate 5 ...\"}, \"Kitchen Knife Skills\": {\"frequency\": 1, \"value\": \"Kitchen Knife ...\"}, \"Introduction to Systems Biology\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Getting Started with Native Instruments Maschine\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Making Sense Of Your Money\": {\"frequency\": 1, \"value\": \"Making Sense Of ...\"}, \"HTML and CSS for Beginners!\": {\"frequency\": 1, \"value\": \"HTML and CSS for ...\"}, \"After Effects CS6 Essential Training\": {\"frequency\": 1, \"value\": \"After Effects CS6 ...\"}, \"Teaching Online: Reflections on Practice\": {\"frequency\": 1, \"value\": \"Teaching Online: ...\"}, \"Write and Publish Your Book - Step by Step\": {\"frequency\": 1, \"value\": \"Write and Publish ...\"}, \"Applied Responsive Design\": {\"frequency\": 1, \"value\": \"Applied Responsive ...\"}, \"Learn Piano Today\": {\"frequency\": 1, \"value\": \"Learn Piano Today\"}, \"Editing Video in Photoshop CS6\": {\"frequency\": 1, \"value\": \"Editing Video in ...\"}, \"Access 2013 The Basics\": {\"frequency\": 1, \"value\": \"Access 2013 The ...\"}, \"QuickStart! - VirtualBox\": {\"frequency\": 1, \"value\": \"QuickStart! - ...\"}, \"How to Successfully Teach English Abroad\": {\"frequency\": 1, \"value\": \"How to ...\"}, \"Illustrator CS4 Getting Started\": {\"frequency\": 1, \"value\": \"Illustrator CS4 ...\"}, \"Orson Welles and the 1938 The War of the Worlds Broadcast\": {\"frequency\": 1, \"value\": \"Orson Welles and ...\"}, \"Novel Writing Workshop\": {\"frequency\": 1, \"value\": \"Novel Writing ...\"}, \"Feng Shui The Easiest Way\": {\"frequency\": 1, \"value\": \"Feng Shui The ...\"}, \"Adobe Flash CS5.5 for Beginners\": {\"frequency\": 1, \"value\": \"Adobe Flash CS5.5 ...\"}, \"HTML5: Web Forms in Depth\": {\"frequency\": 1, \"value\": \"HTML5: Web Forms ...\"}, \"iPhone Game Design with No Coding Required\": {\"frequency\": 1, \"value\": \"iPhone Game Design ...\"}, \"The 5 Keys to a Great Tagline\": {\"frequency\": 1, \"value\": \"The 5 Keys to a ...\"}, \"Up and Running with Online Social Video\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"User Experience: The Ultimate Guide to Usability\": {\"frequency\": 1, \"value\": \"User Experience: ...\"}, \"Groove 2007 Essential Training\": {\"frequency\": 1, \"value\": \"Groove 2007 ...\"}, \"ET3034TUx: Solar Energy\": {\"frequency\": 1, \"value\": \"ET3034TUx: Solar ...\"}, \"Truss Analysis in 7 Easy Steps\": {\"frequency\": 1, \"value\": \"Truss Analysis in ...\"}, \"Digital Matte Painting: Changing a Scene From Summer to Winter\": {\"frequency\": 1, \"value\": \"Digital Matte ...\"}, \"Excel 2013: Charts in Depth\": {\"frequency\": 1, \"value\": \"Excel 2013: Charts ...\"}, \"InDesign CC Essential Training\": {\"frequency\": 1, \"value\": \"InDesign CC ...\"}, \"Andy Phillips Webinar Profit Secrets\": {\"frequency\": 1, \"value\": \"Andy Phillips ...\"}, \"Healthcare and Medicine\": {\"frequency\": 1, \"value\": \"Healthcare and ...\"}, \"Photoshop CS3 Channels & Masks: Advanced Techniques\": {\"frequency\": 1, \"value\": \"Photoshop CS3 ...\"}, \"InCopy CS4 and InDesign CS4 Workflow Essential Training\": {\"frequency\": 1, \"value\": \"InCopy CS4 and ...\"}, \"Master "Technical Analysis and Chart reading skills" Bundle\": {\"frequency\": 1, \"value\": \"Master ...\"}, \"Mograph Techniques: Retiming and Tracking Footage\": {\"frequency\": 1, \"value\": \"Mograph ...\"}, \"ActionScript 3.0: Working with XML\": {\"frequency\": 1, \"value\": \"ActionScript 3.0: ...\"}, \"Character Rigging in Maya\": {\"frequency\": 1, \"value\": \"Character Rigging ...\"}, \"Validating and Processing Forms with JavaScript and PHP\": {\"frequency\": 1, \"value\": \"Validating and ...\"}, \"Game Character Creation in Maya\": {\"frequency\": 1, \"value\": \"Game Character ...\"}, \"How to Build a Blog and Create an Opt-in Offer that Converts\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"Excel Dashboards\": {\"frequency\": 1, \"value\": \"Excel Dashboards\"}, \"Principles of Public Health\": {\"frequency\": 1, \"value\": \"Principles of ...\"}, \"Learn to design your business website in WordPress\": {\"frequency\": 1, \"value\": \"Learn to design ...\"}, \"BlackBerry 10 App Development with HTML5\": {\"frequency\": 1, \"value\": \"BlackBerry 10 App ...\"}, \"Seal the Deal: Win Business and Influence Leadership\": {\"frequency\": 1, \"value\": \"Seal the Deal: Win ...\"}, \"Adobe Flash Professional CS6\": {\"frequency\": 1, \"value\": \"Adobe Flash ...\"}, \"Beginner Guitar Method\": {\"frequency\": 1, \"value\": \"Beginner Guitar ...\"}, \"How to Create Multiple Streams of Income\": {\"frequency\": 1, \"value\": \"How to Create ...\"}, \"Office 2008 for Mac: Small Business Projects\": {\"frequency\": 1, \"value\": \"Office 2008 for ...\"}, \"Dreamweaver CS6 Training - Tutorials Created By Experts\": {\"frequency\": 1, \"value\": \"Dreamweaver CS6 ...\"}, \"How to Build a Registration & Login System with CodeIgniter\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"How to TurboCharge Your Business with a Blog\": {\"frequency\": 1, \"value\": \"How to TurboCharge ...\"}, \"Photoshop Creative Effects and Filters\": {\"frequency\": 1, \"value\": \"Photoshop Creative ...\"}, \"Logic Pro 8 Essential Training\": {\"frequency\": 1, \"value\": \"Logic Pro 8 ...\"}, \"Learn To Apply Makeup Like a Pro - Multi-Cultural Skin Tones\": {\"frequency\": 1, \"value\": \"Learn To Apply ...\"}, \"InfoPath 2013 Essential Training\": {\"frequency\": 1, \"value\": \"InfoPath 2013 ...\"}, \"InDesign CS4 Essential Training\": {\"frequency\": 1, \"value\": \"InDesign CS4 ...\"}, \"Apple iPad Training\": {\"frequency\": 1, \"value\": \"Apple iPad ...\"}, \"Diagnosing the Financial Health of a Business (FinHlth)\": {\"frequency\": 1, \"value\": \"Diagnosing the ...\"}, \"Learn Deep House Production with Logic Pro\": {\"frequency\": 1, \"value\": \"Learn Deep House ...\"}, \"Flash Professional CS5: Code Snippets and Templates in Depth\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Photoshop CS6: Video QuickStart\": {\"frequency\": 1, \"value\": \"Photoshop CS6: ...\"}, \"The Power of PreViz at One & Co\": {\"frequency\": 1, \"value\": \"The Power of ...\"}, \"iOS Operation: MapKit\": {\"frequency\": 1, \"value\": \"iOS Operation: ...\"}, \"EASIER Than Wordpress: Design Your Business Website\": {\"frequency\": 1, \"value\": \"EASIER Than ...\"}, \"Ruby on Rails 3 Essential Training\": {\"frequency\": 1, \"value\": \"Ruby on Rails 3 ...\"}, \"How to Make iPhone Apps\": {\"frequency\": 1, \"value\": \"How to Make iPhone ...\"}, \"edXDEMO101: edX Demo\": {\"frequency\": 1, \"value\": \"edXDEMO101: edX ...\"}, \"Learn all about Microsoft Word 2010\": {\"frequency\": 1, \"value\": \"Learn all about ...\"}, \"Dreamweaver CS6 New Features\": {\"frequency\": 1, \"value\": \"Dreamweaver CS6 ...\"}, \"Designing a Logo for a Media Company\": {\"frequency\": 1, \"value\": \"Designing a Logo ...\"}, \"How to Make Money With Your Own Membership Site: Fast Start\": {\"frequency\": 1, \"value\": \"How to Make Money ...\"}, \"Social Media for Business Growth\": {\"frequency\": 1, \"value\": \"Social Media for ...\"}, \"HTML5 Projects: Interactive Charts\": {\"frequency\": 1, \"value\": \"HTML5 Projects: ...\"}, \"Ios ,Android and html5 development, No Coding - Mac and Win\": {\"frequency\": 1, \"value\": \"Ios ,Android and ...\"}, \"2011 SBIFF Directors' Panel: Directors On Directing\": {\"frequency\": 1, \"value\": \"2011 SBIFF ...\"}, \"JavaScript Prep Course\": {\"frequency\": 1, \"value\": \"JavaScript Prep ...\"}, \"Up and Running with Windows 8\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Finance and Accounting for Startups\": {\"frequency\": 1, \"value\": \"Finance and ...\"}, \"Photoshop for Web Design\": {\"frequency\": 1, \"value\": \"Photoshop for Web ...\"}, \"Setting Up MySQL 5 for PHP in Windows\": {\"frequency\": 1, \"value\": \"Setting Up MySQL 5 ...\"}, \"Running Lean Workshop\": {\"frequency\": 1, \"value\": \"Running Lean ...\"}, \"Introduction to Writing: Science Fiction and Fantasy\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"CPE for CPAs EAs -Moving and Selling Your Home Training 2013\": {\"frequency\": 1, \"value\": \"CPE for CPAs EAs ...\"}, \"Kids Coding -Introduction to HTML, CSS and JavaScript\": {\"frequency\": 1, \"value\": \"Kids Coding ...\"}, \"How to Self-Publish Children's Books on Kindle\": {\"frequency\": 1, \"value\": \"How to Self- ...\"}, \"Health Policy and the Affordable Care Act\": {\"frequency\": 1, \"value\": \"Health Policy and ...\"}, \"How to Run a Web Design Business\": {\"frequency\": 1, \"value\": \"How to Run a Web ...\"}, \"Build an Old School Side-Scroller with GameMaker: Studio\": {\"frequency\": 1, \"value\": \"Build an Old ...\"}, \"Let Go and Lose Weight\": {\"frequency\": 1, \"value\": \"Let Go and Lose ...\"}, \"Flash CS4 Professional Essential Training\": {\"frequency\": 1, \"value\": \"Flash CS4 ...\"}, \"HTML5 and CreateJS Tutorial - Learn Interactive Development\": {\"frequency\": 1, \"value\": \"HTML5 and CreateJS ...\"}, \"Consulting Skills Series - Communication\": {\"frequency\": 1, \"value\": \"Consulting Skills ...\"}, \"X3pure - 30 days to purity.\": {\"frequency\": 1, \"value\": \"X3pure - 30 days ...\"}, \"Create an Interactive Map with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create an ...\"}, \"20220332X: Principles of Electric Circuits: Part 1\": {\"frequency\": 1, \"value\": \"20220332X: ...\"}, \"Learn the Secrets Behind Cyber Attacks: Winning the Fight\": {\"frequency\": 1, \"value\": \"Learn the Secrets ...\"}, \"Captivate 2 Essential Training\": {\"frequency\": 1, \"value\": \"Captivate 2 ...\"}, \"How to Ace Your IT Exams\": {\"frequency\": 1, \"value\": \"How to Ace Your IT ...\"}, \"Yogasync.tv Fast Track Yoga - Beginners Yoga for Busy People\": {\"frequency\": 1, \"value\": \"Yogasync.tv Fast ...\"}, \"Logic Pro X New Features\": {\"frequency\": 1, \"value\": \"Logic Pro X New ...\"}, \"Solving quadratic equations using various methods\": {\"frequency\": 1, \"value\": \"Solving quadratic ...\"}, \"How To Build & Shape Your Body With The Under 20 Workout\": {\"frequency\": 1, \"value\": \"How To Build & ...\"}, \"Designing a Logo\": {\"frequency\": 1, \"value\": \"Designing a Logo\"}, \"Mobile Marketing for your WordPress Site\": {\"frequency\": 1, \"value\": \"Mobile Marketing ...\"}, \"DIY iPhone, Android & Web Apps with ManMade App Builder\": {\"frequency\": 1, \"value\": \"DIY iPhone, ...\"}, \"The India Heritage Experience\": {\"frequency\": 1, \"value\": \"The India Heritage ...\"}, \"Flash Builder 4.5 and Flex 4.5 New Features\": {\"frequency\": 1, \"value\": \"Flash Builder 4.5 ...\"}, \"Introduction to Computational Finance and Financial Econometrics\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"How to Set Simple Goals and Achieve Massive Success\": {\"frequency\": 1, \"value\": \"How to Set Simple ...\"}, \"Sketchbook Pro 2010 Essential Training\": {\"frequency\": 1, \"value\": \"Sketchbook Pro ...\"}, \"Prelude CS6 Workshop\": {\"frequency\": 1, \"value\": \"Prelude CS6 ...\"}, \"Project 2007 Introduction\": {\"frequency\": 1, \"value\": \"Project 2007 ...\"}, \"HTML5 First Look\": {\"frequency\": 1, \"value\": \"HTML5 First Look\"}, \"Texturing and Lighting in Discreet 3ds max 6\": {\"frequency\": 1, \"value\": \"Texturing and ...\"}, \"UT.5.01x: Linear Algebra - Foundations to Frontiers\": {\"frequency\": 1, \"value\": \"UT.5.01x: Linear ...\"}, \"Flash CS3 for Designers\": {\"frequency\": 1, \"value\": \"Flash CS3 for ...\"}, \"Outsource Your Service Business\": {\"frequency\": 1, \"value\": \"Outsource Your ...\"}, \"CINEMA 4D Essentials 5: Rendering and Compositing\": {\"frequency\": 1, \"value\": \"CINEMA 4D ...\"}, \"Word 2010: Forms in Depth\": {\"frequency\": 1, \"value\": \"Word 2010: Forms ...\"}, \"Adding Dynamic Functionality to Your Joomla! Site\": {\"frequency\": 1, \"value\": \"Adding Dynamic ...\"}, \"The Basics of Teaching English for Academic Purposes\": {\"frequency\": 1, \"value\": \"The Basics of ...\"}, \"Access 2010: Queries in Depth\": {\"frequency\": 1, \"value\": \"Access 2010: ...\"}, \"14.73x: The Challenges of Global Poverty\": {\"frequency\": 1, \"value\": \"14.73x: The ...\"}, \"Kick start your memoir - writing exercises\": {\"frequency\": 1, \"value\": \"Kick start your ...\"}, \"SEO Fundamentals\": {\"frequency\": 1, \"value\": \"SEO Fundamentals\"}, \"Learning Apple Mac OS X Mountain Lion (10.8) Tutorial Video\": {\"frequency\": 1, \"value\": \"Learning Apple Mac ...\"}, \"The Producers Guide to Screenplay Options and Purchases\": {\"frequency\": 1, \"value\": \"The Producers ...\"}, \"Make iPhone and iPad games without programming\": {\"frequency\": 1, \"value\": \"Make iPhone and ...\"}, \"Start A Home Based Business By Creating Information Products\": {\"frequency\": 1, \"value\": \"Start A Home Based ...\"}, \"Migrating from Excel 2003 to Excel 2010\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Up and Running with Basecamp\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Introduction to Databases\": {\"frequency\": 2, \"value\": \"Introduction to ...\"}, \"Up and Running with Google Cloud Platform\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Excel 2007 Power Shortcuts\": {\"frequency\": 1, \"value\": \"Excel 2007 Power ...\"}, \"Pixel Playground with Bert Monroy\": {\"frequency\": 1, \"value\": \"Pixel Playground ...\"}, \"Nutrition for Health Promotion and Disease Prevention\": {\"frequency\": 1, \"value\": \"Nutrition for ...\"}, \"The Eurozone Crisis\": {\"frequency\": 1, \"value\": \"The Eurozone ...\"}, \"Contribute 3 Essential Training\": {\"frequency\": 1, \"value\": \"Contribute 3 ...\"}, \"Make money with Android mobile apps\": {\"frequency\": 1, \"value\": \"Make money with ...\"}, \"Elementary Class for Chinese Pronunciation\": {\"frequency\": 1, \"value\": \"Elementary Class ...\"}, \"Spanish for Beginners: Yellow Belt (Lingo Live)\": {\"frequency\": 1, \"value\": \"Spanish for ...\"}, \"CINEMA 4D and After Effects Integration\": {\"frequency\": 1, \"value\": \"CINEMA 4D and ...\"}, \"CSS Crash Course by SitePoint\": {\"frequency\": 1, \"value\": \"CSS Crash Course ...\"}, \"Flickr Essential Training\": {\"frequency\": 1, \"value\": \"Flickr Essential ...\"}, \"Learn Adobe Dreamweaver CS6\": {\"frequency\": 1, \"value\": \"Learn Adobe ...\"}, \"Illustrator CS2 and Flash 8 Integration\": {\"frequency\": 1, \"value\": \"Illustrator CS2 ...\"}, \"Create an Animated Star Field with Edge Animate\": {\"frequency\": 1, \"value\": \"Create an Animated ...\"}, \"HTML5: Graphics and Animation with Canvas\": {\"frequency\": 1, \"value\": \"HTML5: Graphics ...\"}, \"TOEFL iBT Writing Online Preparation Course\": {\"frequency\": 1, \"value\": \"TOEFL iBT Writing ...\"}, \"JavaScript Fundamentals\": {\"frequency\": 1, \"value\": \"JavaScript ...\"}, \"Outlook 2010 Office Management\": {\"frequency\": 1, \"value\": \"Outlook 2010 ...\"}, \"SAP Basis and Netweaver Training\": {\"frequency\": 1, \"value\": \"SAP Basis and ...\"}, \"Wordpress Plugin Development for Beginners\": {\"frequency\": 1, \"value\": \"Wordpress Plugin ...\"}, \"Creating Fur in Maya\": {\"frequency\": 1, \"value\": \"Creating Fur in ...\"}, \"Word 2007: Mail Merge in Depth\": {\"frequency\": 1, \"value\": \"Word 2007: Mail ...\"}, \"Introduction to Business Communication\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Unity3d Environmental Series\": {\"frequency\": 1, \"value\": \"Unity3d ...\"}, \"Backspreads, Diagonals and Butterflies - Advanced Strategies\": {\"frequency\": 1, \"value\": \"Backspreads, ...\"}, \"After Effects CS5 New Features\": {\"frequency\": 1, \"value\": \"After Effects CS5 ...\"}, \"Learn to lose weight once...and manage your weight forever.\": {\"frequency\": 1, \"value\": \"Learn to lose ...\"}, \"Creating Long Documents with InDesign\": {\"frequency\": 1, \"value\": \"Creating Long ...\"}, \"Master Your Memory\": {\"frequency\": 1, \"value\": \"Master Your Memory\"}, \"From Xero to Hero - Mastering Cloud Accounting\": {\"frequency\": 1, \"value\": \"From Xero to Hero ...\"}, \"Learning Choice-Based Conjoint & Discrete Choice Experiments\": {\"frequency\": 1, \"value\": \"Learning Choice- ...\"}, \"On-Line Business Marketing Revealed\": {\"frequency\": 1, \"value\": \"On-Line Business ...\"}, \"Motion Control 3D: Bringing Your Photos to Life in Three Dimensions\": {\"frequency\": 1, \"value\": \"Motion Control 3D: ...\"}, \"After Effects: Creative Cloud Updates\": {\"frequency\": 1, \"value\": \"After Effects: ...\"}, \"How to create your Compelling Value Proposition\": {\"frequency\": 1, \"value\": \"How to create your ...\"}, \"Adobe Illustrator CS6\": {\"frequency\": 1, \"value\": \"Adobe Illustrator ...\"}, \"Project 2010 Essential Training\": {\"frequency\": 1, \"value\": \"Project 2010 ...\"}, \"jQuery Mobile Web Applications\": {\"frequency\": 1, \"value\": \"jQuery Mobile Web ...\"}, \"How To Build An Online Business Using Wordpress\": {\"frequency\": 1, \"value\": \"How To Build An ...\"}, \"McCullough and Berglund on Mastering Git\": {\"frequency\": 1, \"value\": \"McCullough and ...\"}, \"Pro Tools Projects: Editing Drums Using Beat Detective and Sound Replacer\": {\"frequency\": 1, \"value\": \"Pro Tools ...\"}, \"An Introduction to Neuroscience for Coaches\": {\"frequency\": 1, \"value\": \"An Introduction to ...\"}, \"create 9 professional logo design full version\": {\"frequency\": 1, \"value\": \"create 9 ...\"}, \"Black and White: From Snapshots to Great Shots\": {\"frequency\": 1, \"value\": \"Black and White: ...\"}, \"Jason Bentley's Twilight Remix: Start to Finish\": {\"frequency\": 1, \"value\": \"Jason ...\"}, \"EDIUS 6.5 New Features Workshop\": {\"frequency\": 1, \"value\": \"EDIUS 6.5 New ...\"}, \"Building Custom WordPress Sites from Scratch\": {\"frequency\": 1, \"value\": \"Building Custom ...\"}, \"Tube Raider: Search Engine Domination With YouTube\": {\"frequency\": 1, \"value\": \"Tube Raider: ...\"}, \"Discover How to Generate More Kick-Butt Leads Thru LinkedIn\": {\"frequency\": 1, \"value\": \"Discover How to ...\"}, \"Enhancing Product Photography with Aperture\": {\"frequency\": 1, \"value\": \"Enhancing Product ...\"}, \"Equity Research: A Comprehensive Analysts Program\": {\"frequency\": 1, \"value\": \"Equity Research: A ...\"}, \"Galaxies and Cosmology\": {\"frequency\": 1, \"value\": \"Galaxies and ...\"}, \"Anyone Can Learn to Make a Game\": {\"frequency\": 1, \"value\": \"Anyone Can Learn ...\"}, \"Office for Educators\": {\"frequency\": 1, \"value\": \"Office for ...\"}, \"WordPress 3: Creating and Editing Custom Themes\": {\"frequency\": 1, \"value\": \"WordPress 3: ...\"}, \"The Massey Method: Learn Spanish from a Former NSA Agent\": {\"frequency\": 1, \"value\": \"The Massey Method: ...\"}, \"A Guide to Copyright for Media Artists and Educators\": {\"frequency\": 1, \"value\": \"A Guide to ...\"}, \"Forums for a Future\": {\"frequency\": 1, \"value\": \"Forums for a ...\"}, \"SHAPE Your Future\": {\"frequency\": 1, \"value\": \"SHAPE Your Future\"}, \"Mr. Leads LinkedIn Bootcamp\": {\"frequency\": 1, \"value\": \"Mr. Leads LinkedIn ...\"}, \"How to create your FREE Blogs with blogger.com: Intermediate\": {\"frequency\": 1, \"value\": \"How to create your ...\"}, \"Ruby on Rails for Beginners\": {\"frequency\": 1, \"value\": \"Ruby on Rails for ...\"}, \"Adobe Audition CC Audio Production Course Basics to Expert\": {\"frequency\": 1, \"value\": \"Adobe Audition CC ...\"}, \"How To Lose 19.8 lbs In 21 Days\": {\"frequency\": 1, \"value\": \"How To Lose 19.8 ...\"}, \"Distributing Mac OS X Applications Through the App Store\": {\"frequency\": 1, \"value\": \"Distributing Mac ...\"}, \"Microsoft Project 2010 Advanced Training\": {\"frequency\": 1, \"value\": \"Microsoft Project ...\"}, \"Illustrator CS5 One-on-One: Mastery\": {\"frequency\": 1, \"value\": \"Illustrator CS5 ...\"}, \"Building Windows Phone 8 Live Tiles\": {\"frequency\": 1, \"value\": \"Building Windows ...\"}, \"HTML5: Structure, Syntax, and Semantics\": {\"frequency\": 1, \"value\": \"HTML5: Structure, ...\"}, \"PennyStocking: Penny Stock Trading Secrets\": {\"frequency\": 1, \"value\": \"PennyStocking: ...\"}, \"Functional Hardware Verification\": {\"frequency\": 1, \"value\": \"Functional ...\"}, \"Learn To Run Linux Servers Part 2 (LPI Level 1-102)\": {\"frequency\": 1, \"value\": \"Learn To Run Linux ...\"}, \"Mac OS X 10.4 Tiger Beyond the Basics\": {\"frequency\": 1, \"value\": \"Mac OS X 10.4 ...\"}, \"Scrum - An Introductory Course To Agile\": {\"frequency\": 1, \"value\": \"Scrum - An ...\"}, \"Learn to Design a Letterhead - A Beginners Course\": {\"frequency\": 1, \"value\": \"Learn to Design a ...\"}, \"Advanced Excel Training - Online Excel Course\": {\"frequency\": 1, \"value\": \"Advanced Excel ...\"}, \"Word 2007: Creating Envelopes and Labels\": {\"frequency\": 1, \"value\": \"Word 2007: ...\"}, \"Fast ForWord Support - Literacy & Literacy Advanced\": {\"frequency\": 1, \"value\": \"Fast ForWord ...\"}, \"Linux Command Line Volume1\": {\"frequency\": 1, \"value\": \"Linux Command Line ...\"}, \"Flex 2 Advanced: Using Data Services\": {\"frequency\": 1, \"value\": \"Flex 2 Advanced: ...\"}, \"trigonometry\": {\"frequency\": 1, \"value\": \"trigonometry\"}, \"YouTube Essential Training\": {\"frequency\": 1, \"value\": \"YouTube Essential ...\"}, \"Digital Photography: Shooting in Manual\": {\"frequency\": 1, \"value\": \"Digital ...\"}, \"Learn to code in c# in unity 3d in 1 hour for beginners\": {\"frequency\": 1, \"value\": \"Learn to code in ...\"}, \"Creating Fluid Effects in Maya\": {\"frequency\": 1, \"value\": \"Creating Fluid ...\"}, \"Learn Oral Chinese with Jijizhazha Chinese\": {\"frequency\": 1, \"value\": \"Learn Oral Chinese ...\"}, \"Build Your Leadership Brand For Success - Module 2\": {\"frequency\": 1, \"value\": \"Build Your ...\"}, \"Adobe Acrobat XI\": {\"frequency\": 1, \"value\": \"Adobe Acrobat XI\"}, \"Jazz Guitar Chords: Introduction\": {\"frequency\": 1, \"value\": \"Jazz Guitar ...\"}, \"Excel 2010: Pivot Tables in Depth\": {\"frequency\": 1, \"value\": \"Excel 2010: Pivot ...\"}, \"InDesign: 10 Things to Know About GREP\": {\"frequency\": 1, \"value\": \"InDesign: 10 ...\"}, \"Adobe CS6 New Features\": {\"frequency\": 1, \"value\": \"Adobe CS6 New ...\"}, \"Production Rendering Techniques in CINEMA 4D\": {\"frequency\": 1, \"value\": \"Production ...\"}, \"Basics of Starting an Online Business\": {\"frequency\": 1, \"value\": \"Basics of Starting ...\"}, \"Authentic Yoga Experience Series 2\": {\"frequency\": 1, \"value\": \"Authentic Yoga ...\"}, \"Learning Photoshop Elements\": {\"frequency\": 1, \"value\": \"Learning Photoshop ...\"}, \"Authentic Yoga Experience Series 1\": {\"frequency\": 1, \"value\": \"Authentic Yoga ...\"}, \"Singapore PSLE 2006 Exam SOLUTIONS with EXPLANATIONS.\": {\"frequency\": 1, \"value\": \"Singapore PSLE ...\"}, \"Keynote: Create a Killer Presentation!\": {\"frequency\": 1, \"value\": \"Keynote: Create a ...\"}, \"Copyright Basics: How to Protect Your Work from Piracy\": {\"frequency\": 1, \"value\": \"Copyright Basics: ...\"}, \"How To Turn Your Idea Into a Winning Product or Service\": {\"frequency\": 1, \"value\": \"How To Turn Your ...\"}, \"Flex 3 Beyond the Basics\": {\"frequency\": 1, \"value\": \"Flex 3 Beyond the ...\"}, \"A Non-Geek's Guide to Evernote\": {\"frequency\": 1, \"value\": \"A Non-Geek's ...\"}, \"BIO465X: Neuronal Dynamics - Computational Neuroscience of Single Neurons\": {\"frequency\": 1, \"value\": \"BIO465X: Neuronal ...\"}, \"Set a Marquee to Autoplay with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Set a Marquee to ...\"}, \"WordPress Website Optimization\": {\"frequency\": 1, \"value\": \"WordPress Website ...\"}, \"Design: Creation of Artifacts in Society\": {\"frequency\": 1, \"value\": \"Design: Creation ...\"}, \"Becoming a Thought Leader\": {\"frequency\": 1, \"value\": \"Becoming a Thought ...\"}, \"CSS: Styling Forms\": {\"frequency\": 1, \"value\": \"CSS: Styling Forms\"}, \"How to Buy a Home: Expert Advice on the Whole Buying Process\": {\"frequency\": 1, \"value\": \"How to Buy a Home: ...\"}, \"Sorting Your Love Baggage\": {\"frequency\": 1, \"value\": \"Sorting Your Love ...\"}, \"2010 SBIFF Writers' Panel: It Starts with the Script\": {\"frequency\": 1, \"value\": \"2010 SBIFF ...\"}, \"Drupal Gardens Essential Training\": {\"frequency\": 1, \"value\": \"Drupal Gardens ...\"}, \"Beginners Guide to Playing Guitar - Step-by-step System\": {\"frequency\": 1, \"value\": \"Beginners Guide to ...\"}, \"Mobile Marketing University by MCMoby\": {\"frequency\": 1, \"value\": \"Mobile Marketing ...\"}, \"Wordpress Nailed In 21 Days\": {\"frequency\": 1, \"value\": \"Wordpress Nailed ...\"}, \"After Effects Apprentice 10: Time Games\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"Hot Looks Using Floating Point in After Effects\": {\"frequency\": 1, \"value\": \"Hot Looks Using ...\"}, \"Learn Microsoft Windows 8\": {\"frequency\": 2, \"value\": \"Learn Microsoft ...\"}, \"Learning UltraDev 4\": {\"frequency\": 1, \"value\": \"Learning UltraDev ...\"}, \"ID:001: Chemistry of Life\": {\"frequency\": 1, \"value\": \"ID:001: Chemistry ...\"}, \"CINEMA 4D Essentials 6: HyperNURB Modeling and Sculpting\": {\"frequency\": 1, \"value\": \"CINEMA 4D ...\"}, \"How to Get and Keep the Job of Your Dreams\": {\"frequency\": 1, \"value\": \"How to Get and ...\"}, \"iPad Music Production: GarageBand\": {\"frequency\": 1, \"value\": \"iPad Music ...\"}, \"Java Essentials for Android\": {\"frequency\": 1, \"value\": \"Java Essentials ...\"}, \"Learning JQuery Mobile The Easy Way\": {\"frequency\": 1, \"value\": \"Learning JQuery ...\"}, \"Learn Microsoft Windows 7\": {\"frequency\": 1, \"value\": \"Learn Microsoft ...\"}, \"CS188.1x Artificial Intelligence\": {\"frequency\": 1, \"value\": \"CS188.1x ...\"}, \"Handling Investor Objections: Investor Objection Boomerang\": {\"frequency\": 1, \"value\": \"Handling Investor ...\"}, \"Video Journalism Shooting Techniques\": {\"frequency\": 1, \"value\": \"Video Journalism ...\"}, \"Illustrator CS2 Power Shortcuts\": {\"frequency\": 1, \"value\": \"Illustrator CS2 ...\"}, \"Learn SQL Reporting Services Beginning Report Training\": {\"frequency\": 1, \"value\": \"Learn SQL ...\"}, \"Windows 8.1 Preview First Look\": {\"frequency\": 1, \"value\": \"Windows 8.1 ...\"}, \"Typography with CSS in Dreamweaver\": {\"frequency\": 1, \"value\": \"Typography with ...\"}, \"Physical Metallurgy I\": {\"frequency\": 1, \"value\": \"Physical ...\"}, \"How to Repay Federal Student Loans\": {\"frequency\": 1, \"value\": \"How to Repay ...\"}, \"The Complete Guide to Google AdWords\": {\"frequency\": 1, \"value\": \"The Complete Guide ...\"}, \"Become a Top Internet Marketing Coach\": {\"frequency\": 1, \"value\": \"Become a Top ...\"}, \"The Mind Readers' Guide To Metaphor\": {\"frequency\": 1, \"value\": \"The Mind ...\"}, \"Editing and Animating to Sound with Adobe After Effects\": {\"frequency\": 1, \"value\": \"Editing and ...\"}, \"Beginner Photoshop to HTML5 and CSS3\": {\"frequency\": 1, \"value\": \"Beginner Photoshop ...\"}, \"Animating Characters in Toon Boom Animate\": {\"frequency\": 1, \"value\": \"Animating ...\"}, \"Maya 2011 New Features\": {\"frequency\": 1, \"value\": \"Maya 2011 New ...\"}, \"Aperture 1.1 Essential Training\": {\"frequency\": 1, \"value\": \"Aperture 1.1 ...\"}, \"Selling Social Media to Your Boss\": {\"frequency\": 1, \"value\": \"Selling Social ...\"}, \"5 Ways to Jumpstart an Emergency Fund\": {\"frequency\": 1, \"value\": \"5 Ways to ...\"}, \"How to draw Caricatures\": {\"frequency\": 1, \"value\": \"How to draw ...\"}, \"Integrating Payments with the Stripe API\": {\"frequency\": 1, \"value\": \"Integrating ...\"}, \"Discover Your Magic: Change Your Life\": {\"frequency\": 1, \"value\": \"Discover Your ...\"}, \"Mastering Color Correction in Photoshop\": {\"frequency\": 1, \"value\": \"Mastering Color ...\"}, \"Hilary Mason: Advanced Machine Learning\": {\"frequency\": 1, \"value\": \"Hilary Mason: ...\"}, \"HTML5 APIs For JavaScript - A Course For Web Developers\": {\"frequency\": 1, \"value\": \"HTML5 APIs For ...\"}, \"Email Marketing Made Easy: Building up a List\": {\"frequency\": 1, \"value\": \"Email Marketing ...\"}, \"Foundation: Incorporating Sass and Compass\": {\"frequency\": 1, \"value\": \"Foundation: ...\"}, \"Build a Blog Reader iPhone App\": {\"frequency\": 1, \"value\": \"Build a Blog ...\"}, \"XSLT Jump Start Training\": {\"frequency\": 1, \"value\": \"XSLT Jump Start ...\"}, \"How to: Makeup for Print, Fashion and Runway\": {\"frequency\": 1, \"value\": \"How to: Makeup for ...\"}, \"Principles of Project Management (ProjMgt)\": {\"frequency\": 1, \"value\": \"Principles of ...\"}, \"Coding the Matrix: Linear Algebra through Computer Science Applications\": {\"frequency\": 1, \"value\": \"Coding the Matrix: ...\"}, \"Margo Chase's Hand-Lettered Poster: Start to Finish\": {\"frequency\": 1, \"value\": \"Margo Chase's ...\"}, \"Creating a Fixed-Layout EPUB\": {\"frequency\": 1, \"value\": \"Creating a Fixed- ...\"}, \"Illustrator Insider Training: Drawing without the Pen Tool\": {\"frequency\": 1, \"value\": \"Illustrator ...\"}, \"Mark Mothersbaugh, Music Composer\": {\"frequency\": 1, \"value\": \"Mark Mothersbaugh, ...\"}, \"Microsoft Outlook 2010 Beginner\": {\"frequency\": 1, \"value\": \"Microsoft Outlook ...\"}, \"Digital Matte Painting Essentials 1: Concept\": {\"frequency\": 1, \"value\": \"Digital Matte ...\"}, \"Hacking Perception: Magic Tricks with Coins\": {\"frequency\": 1, \"value\": \"Hacking ...\"}, \"Matthew Russell on Mining the Social Web\": {\"frequency\": 1, \"value\": \"Matthew Russell on ...\"}, \"Photoshop for Designers: Color\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"Up and Running with Evernote for Windows\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Illustrator Insider Training: Seeing Through Transparency\": {\"frequency\": 1, \"value\": \"Illustrator ...\"}, \"SharePoint Designer 2010: Building Custom Workflows\": {\"frequency\": 1, \"value\": \"SharePoint ...\"}, \"Entrepreneurs Guide: Introduction to Startups\": {\"frequency\": 1, \"value\": \"Entrepreneurs ...\"}, \"Master Excel 2011 for the Mac\": {\"frequency\": 1, \"value\": \"Master Excel 2011 ...\"}, \"The Complete Beginner's Guide to Unity for Game Development\": {\"frequency\": 1, \"value\": \"The Complete ...\"}, \"Jewelry Making: Wire Wrapping Found Objects\": {\"frequency\": 1, \"value\": \"Jewelry Making: ...\"}, \"McCullough and Berglund on Mastering Advanced Git\": {\"frequency\": 1, \"value\": \"McCullough and ...\"}, \"Outlook 2010 Essential Training\": {\"frequency\": 1, \"value\": \"Outlook 2010 ...\"}, \"Fast ForWord Support - Reading 3, 4 and 5\": {\"frequency\": 1, \"value\": \"Fast ForWord ...\"}, \"Photoshop Tools Crash Course - Free Course\": {\"frequency\": 1, \"value\": \"Photoshop Tools ...\"}, \"How To Make A Magazine - Create an Apple Newsstand App\": {\"frequency\": 1, \"value\": \"How To Make A ...\"}, \"2012 SBIFF Producers' Panel: Movers & Shakers\": {\"frequency\": 1, \"value\": \"2012 SBIFF ...\"}, \"Everything You Need To Speed Up Your Website\": {\"frequency\": 1, \"value\": \"Everything You ...\"}, \"Create an Interactive Map with jQuery\": {\"frequency\": 1, \"value\": \"Create an ...\"}, \"ColdFusion Power Workshop\": {\"frequency\": 1, \"value\": \"ColdFusion Power ...\"}, \"Bond Market Guide for Beginners\": {\"frequency\": 1, \"value\": \"Bond Market Guide ...\"}, \"3D Using Photoshop CS6\": {\"frequency\": 1, \"value\": \"3D Using Photoshop ...\"}, \"How To Become a Master Communicator...Guaranteed!\": {\"frequency\": 1, \"value\": \"How To Become a ...\"}, \"Young Adult Fiction Writing Workshop\": {\"frequency\": 1, \"value\": \"Young Adult ...\"}, \"HDR (High Dynamic Range) Photography Made Easy\": {\"frequency\": 1, \"value\": \"HDR (High Dynamic ...\"}, \"On Camera: Video Makeup Techniques\": {\"frequency\": 1, \"value\": \"On Camera: Video ...\"}, \"Easy High Converting Pages With Bootstrap\": {\"frequency\": 1, \"value\": \"Easy High ...\"}, \"Developing a Style Guide\": {\"frequency\": 1, \"value\": \"Developing a Style ...\"}, \"Cosmology and Astronomy\": {\"frequency\": 1, \"value\": \"Cosmology and ...\"}, \"SQL Server: Triggers, Stored Procedures, and Functions\": {\"frequency\": 1, \"value\": \"SQL Server: ...\"}, \"Mudbox 2013 Essential Training\": {\"frequency\": 1, \"value\": \"Mudbox 2013 ...\"}, \"Photoshop CS5: Creative Compositing\": {\"frequency\": 1, \"value\": \"Photoshop CS5: ...\"}, \"Programming Java for Beginners - The Ultimate Java Tutorial\": {\"frequency\": 1, \"value\": \"Programming Java ...\"}, \"Journey Into Mobile\": {\"frequency\": 1, \"value\": \"Journey Into ...\"}, \"Marian Bantjes, Graphic Artist\": {\"frequency\": 1, \"value\": \"Marian Bantjes, ...\"}, \"Figure Drawing From Life Using The Reilly Technique.\": {\"frequency\": 1, \"value\": \"Figure Drawing ...\"}, \"Lightroom 4 Signature Courseware\": {\"frequency\": 1, \"value\": \"Lightroom 4 ...\"}, \"iOS Development for Beginners- iPhone and iPad\": {\"frequency\": 1, \"value\": \"iOS Development ...\"}, \"WordPress For Beginners\": {\"frequency\": 1, \"value\": \"WordPress For ...\"}, \"Drupal 7 Essential Training\": {\"frequency\": 1, \"value\": \"Drupal 7 Essential ...\"}, \"Developing A Social Media Policy\": {\"frequency\": 1, \"value\": \"Developing A ...\"}, \"Management for a Competitive Edge (MgtEdge)\": {\"frequency\": 1, \"value\": \"Management for a ...\"}, \"Advanced C++ Programming Training Course\": {\"frequency\": 1, \"value\": \"Advanced C++ ...\"}, \"Photoshop CS5: Prepress and Printing\": {\"frequency\": 1, \"value\": \"Photoshop CS5: ...\"}, \"ACT! 2010 Essential Training\": {\"frequency\": 1, \"value\": \"ACT! 2010 ...\"}, \"Digital Collage In Photoshop: Tutorials For Beginners\": {\"frequency\": 1, \"value\": \"Digital Collage In ...\"}, \"Flash CS3 Professional Essential Training\": {\"frequency\": 1, \"value\": \"Flash CS3 ...\"}, \"Flash Professional CS5: Animation Projects\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Essential Skills for Designers - Type\": {\"frequency\": 1, \"value\": \"Essential Skills ...\"}, \"Homeschooling - Getting Started\": {\"frequency\": 1, \"value\": \"Homeschooling - ...\"}, \"Secure PHP Online Contact Form with Attachment\": {\"frequency\": 1, \"value\": \"Secure PHP Online ...\"}, \"Sub-navigation for Multilingual Content Management System\": {\"frequency\": 1, \"value\": \"Sub-navigation for ...\"}, \"Change Your Thinking, Change Your Life\": {\"frequency\": 1, \"value\": \"Change Your ...\"}, \"Dreamweaver CS3 Dynamic Development\": {\"frequency\": 1, \"value\": \"Dreamweaver CS3 ...\"}, \"SharePoint Online Essential Training\": {\"frequency\": 1, \"value\": \"SharePoint Online ...\"}, \"Microsoft Excel - Level 3 - Advanced\": {\"frequency\": 1, \"value\": \"Microsoft Excel - ...\"}, \"Modeling a Character in 3ds Max\": {\"frequency\": 1, \"value\": \"Modeling a ...\"}, \"Learn Professional Wedding Photography\": {\"frequency\": 1, \"value\": \"Learn Professional ...\"}, \"Make $10k Per Month Using Facebook\": {\"frequency\": 1, \"value\": \"Make $10k Per ...\"}, \"Polite Puppy Dog Training Class\": {\"frequency\": 1, \"value\": \"Polite Puppy Dog ...\"}, \"Travel Photography: Seaside Road Trip\": {\"frequency\": 1, \"value\": \"Travel ...\"}, \"Photo Assignment: Off-Camera Flash\": {\"frequency\": 1, \"value\": \"Photo Assignment: ...\"}, \"Picasa 3 Essential Training\": {\"frequency\": 1, \"value\": \"Picasa 3 Essential ...\"}, \"Try Git\": {\"frequency\": 1, \"value\": \"Try Git\"}, \"Illustrator CS6 New Features\": {\"frequency\": 1, \"value\": \"Illustrator CS6 ...\"}, \"Navigating the MBA Admissions Process\": {\"frequency\": 1, \"value\": \"Navigating the MBA ...\"}, \"Breathing Made Easy\": {\"frequency\": 1, \"value\": \"Breathing Made ...\"}, \"Yoga @ Home with Meta - Immersion for Experienced Students\": {\"frequency\": 1, \"value\": \"Yoga @ Home with ...\"}, \"Meditation for Self Healing\": {\"frequency\": 1, \"value\": \"Meditation for ...\"}, \"Moodle 2.1 Essential Training for Teachers\": {\"frequency\": 1, \"value\": \"Moodle 2.1 ...\"}, \"Learn social media, the basics and beyond\": {\"frequency\": 1, \"value\": \"Learn social ...\"}, \"WordPress Rockstar\": {\"frequency\": 1, \"value\": \"WordPress Rockstar\"}, \"The SEO Formula\": {\"frequency\": 1, \"value\": \"The SEO Formula\"}, \"Learning Acrobat 6\": {\"frequency\": 1, \"value\": \"Learning Acrobat 6\"}, \"Making Interactive PDFs from InDesign\": {\"frequency\": 1, \"value\": \"Making Interactive ...\"}, \"Risk Management in Higher Education: Student Issues\": {\"frequency\": 1, \"value\": \"Risk Management in ...\"}, \"TDD and BDD in Ruby\": {\"frequency\": 1, \"value\": \"TDD and BDD in ...\"}, \"Photoshop CS6 for Photographers: Camera Raw 7\": {\"frequency\": 1, \"value\": \"Photoshop CS6 for ...\"}, \"After Effects CC Essential Training\": {\"frequency\": 1, \"value\": \"After Effects CC ...\"}, \"Introduction to Cloud Computing\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Learning Dynamic Website Design - PHP MySQL and JavaScript\": {\"frequency\": 1, \"value\": \"Learning Dynamic ...\"}, \"Photoshop for Web Design Beginners\": {\"frequency\": 1, \"value\": \"Photoshop for Web ...\"}, \"Acrobat X: Creating Forms\": {\"frequency\": 1, \"value\": \"Acrobat X: ...\"}, \"OmniFocus Essential Training\": {\"frequency\": 1, \"value\": \"OmniFocus ...\"}, \"2.03x: Dynamics\": {\"frequency\": 1, \"value\": \"2.03x: Dynamics\"}, \"ZBrush 4 Essential Training\": {\"frequency\": 1, \"value\": \"ZBrush 4 Essential ...\"}, \"The Zig Zag Principle\": {\"frequency\": 1, \"value\": \"The Zig Zag ...\"}, \"R.E.A.C.H. to Design Your Life\": {\"frequency\": 1, \"value\": \"R.E.A.C.H. to ...\"}, \"How to DJ: The Fundamentals and Beyond\": {\"frequency\": 1, \"value\": \"How to DJ: The ...\"}, \"How to Brand Yourself and Your Business\": {\"frequency\": 1, \"value\": \"How to Brand ...\"}, \"LinkedIn For Entrepreneurs\": {\"frequency\": 1, \"value\": \"LinkedIn For ...\"}, \"CPE for CPAs EAs - Canceled Debts Training 2013\": {\"frequency\": 1, \"value\": \"CPE for CPAs EAs - ...\"}, \"CPE for CPAs EAs - Business Use of the Home Training 2013\": {\"frequency\": 1, \"value\": \"CPE for CPAs EAs - ...\"}, \"Corel Painter 11: Mastering Brushes\": {\"frequency\": 1, \"value\": \"Corel Painter 11: ...\"}, \"Microsoft Word 2011 for Mac Tutorial\": {\"frequency\": 1, \"value\": \"Microsoft Word ...\"}, \"EasyDSLR Digital Photography Course for Beginners\": {\"frequency\": 1, \"value\": \"EasyDSLR Digital ...\"}, \"Foundations of Science\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Silverlight 3 Essential Training\": {\"frequency\": 1, \"value\": \"Silverlight 3 ...\"}, \"Rails 4: Zombie Outlaws\": {\"frequency\": 1, \"value\": \"Rails 4: Zombie ...\"}, \"How to Take Better Photos of Your Kids\": {\"frequency\": 1, \"value\": \"How to Take Better ...\"}, \"Up and Running with Bootstrap\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Excel 2007: Data Validation in Depth\": {\"frequency\": 1, \"value\": \"Excel 2007: Data ...\"}, \"Separating Personal Credit From Business Credit and Building Business Credit in the Process\": {\"frequency\": 1, \"value\": \"Separating ...\"}, \"How to Make Up a 3 Phase Panel\": {\"frequency\": 1, \"value\": \"How to Make Up a 3 ...\"}, \"Excel 2007: Creating Charts with Dynamic Data\": {\"frequency\": 1, \"value\": \"Excel 2007: ...\"}, \"Up and Running with Reason 6.5\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Inkjet Printing for Photographers\": {\"frequency\": 1, \"value\": \"Inkjet Printing ...\"}, \"Useful English for Second Language Learners\": {\"frequency\": 1, \"value\": \"Useful English for ...\"}, \"Build a Mobile App for Your Small Business in 1 Hour\": {\"frequency\": 1, \"value\": \"Build a Mobile App ...\"}, \"4 Steps to Happiness - Mindfulness Made Simple\": {\"frequency\": 1, \"value\": \"4 Steps to ...\"}, \"Introduction to Flash Animation\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Artificial Intelligence Planning\": {\"frequency\": 1, \"value\": \"Artificial ...\"}, \"Powerpoint 2010\": {\"frequency\": 1, \"value\": \"Powerpoint 2010\"}, \"Excel 2010 Essentials\": {\"frequency\": 1, \"value\": \"Excel 2010 ...\"}, \"Lightroom 4 Essentials: 02 Enhancing Photos with the Develop Module\": {\"frequency\": 1, \"value\": \"Lightroom 4 ...\"}, \"How to Create a Facebook Connect Login System for Websites\": {\"frequency\": 1, \"value\": \"How to Create a ...\"}, \"Becoming A Writer\": {\"frequency\": 1, \"value\": \"Becoming A Writer\"}, \"Elementary English Course EFL\": {\"frequency\": 1, \"value\": \"Elementary English ...\"}, \"How To Create A Sales Scripts Tool Using MS PowerPoint\": {\"frequency\": 1, \"value\": \"How To Create A ...\"}, \"Ruby on Rails Essential Training (2007)\": {\"frequency\": 1, \"value\": \"Ruby on Rails ...\"}, \"Prepare For the Future - Get the Best Education You Can!\": {\"frequency\": 1, \"value\": \"Prepare For the ...\"}, \"Chemistry: Concept Development and Application\": {\"frequency\": 1, \"value\": \"Chemistry: Concept ...\"}, \"Avid Media Composer 5 Essential Training\": {\"frequency\": 1, \"value\": \"Avid Media ...\"}, \"Industry Bible\": {\"frequency\": 1, \"value\": \"Industry Bible\"}, \"Create a Character in Blender3D - Vol.1 Modeling\": {\"frequency\": 1, \"value\": \"Create a Character ...\"}, \"Gamification\": {\"frequency\": 1, \"value\": \"Gamification\"}, \"Scott & Neil's Designing Web Interfaces Master Class\": {\"frequency\": 1, \"value\": \"Scott & ...\"}, \"Merger Modeling\": {\"frequency\": 1, \"value\": \"Merger Modeling\"}, \"Duarte Design, Presentation Design Studio\": {\"frequency\": 1, \"value\": \"Duarte Design, ...\"}, \"The Entrepreneurs Guide to Startup Funding\": {\"frequency\": 1, \"value\": \"The Entrepreneurs ...\"}, \"UT.8.01x: Jazz Appreciation\": {\"frequency\": 1, \"value\": \"UT.8.01x: Jazz ...\"}, \"QuickStart! - Adobe Muse CC\": {\"frequency\": 1, \"value\": \"QuickStart! - ...\"}, \"Avid Xpress Pro 5.5 Essential Editing\": {\"frequency\": 1, \"value\": \"Avid Xpress Pro ...\"}, \"Women and the Civil Rights Movement\": {\"frequency\": 1, \"value\": \"Women and the ...\"}, \"Start with a Theme: Photography Portfolios in WordPress\": {\"frequency\": 1, \"value\": \"Start with a ...\"}, \"PowerPoint for Teachers\": {\"frequency\": 1, \"value\": \"PowerPoint for ...\"}, \"Mobile Application Development made Easy: iOS and Android\": {\"frequency\": 1, \"value\": \"Mobile Application ...\"}, \"Your Future Is In the Cards\": {\"frequency\": 1, \"value\": \"Your Future Is In ...\"}, \"The Complete Guide to iOS 7 - iPhone Edition\": {\"frequency\": 1, \"value\": \"The Complete Guide ...\"}, \"Accessibility Features on Android\": {\"frequency\": 1, \"value\": \"Accessibility ...\"}, \"Deliver Money-Making Presentations: Put power in your pitch\": {\"frequency\": 1, \"value\": \"Deliver Money- ...\"}, \"Character Animation Fundamentals with Maya\": {\"frequency\": 1, \"value\": \"Character ...\"}, \"Projecting Your Brand Promise through New Media\": {\"frequency\": 1, \"value\": \"Projecting Your ...\"}, \"Compressor Essential Training\": {\"frequency\": 1, \"value\": \"Compressor ...\"}, \"SharePoint Designer 2010: Creating Data-Driven Web Pages\": {\"frequency\": 1, \"value\": \"SharePoint ...\"}, \"Joomla! 1.7 and Joomla! 2.5: Access Control Lists in Depth\": {\"frequency\": 1, \"value\": \"Joomla! 1.7 and ...\"}, \"School of Raising Money: Find & Assemble a DealTeam\": {\"frequency\": 1, \"value\": \"School of Raising ...\"}, \"Anatomy of Backbone.js Part 2\": {\"frequency\": 1, \"value\": \"Anatomy of ...\"}, \"Sound Amazing Singing From The Diaphragm\": {\"frequency\": 1, \"value\": \"Sound Amazing ...\"}, \"Wordpress Training Tutorials - What is Wordpress? Learn how to build a Wordpress Website from scratch!\": {\"frequency\": 1, \"value\": \"Wordpress Training ...\"}, \"The Art of Travel Photography\": {\"frequency\": 1, \"value\": \"The Art of Travel ...\"}, \"PowerPoint 2013 The Basics\": {\"frequency\": 1, \"value\": \"PowerPoint 2013 ...\"}, \"Design the Web: Layer Comps\": {\"frequency\": 1, \"value\": \"Design the Web: ...\"}, \"Total Training in Commercial Photography\": {\"frequency\": 1, \"value\": \"Total Training in ...\"}, \"Healthy Cooking Fundamentals\": {\"frequency\": 1, \"value\": \"Healthy Cooking ...\"}, \"Enhancing Digital Photography with Photoshop CS\": {\"frequency\": 1, \"value\": \"Enhancing Digital ...\"}, \"How to Improve Teacher Retention\": {\"frequency\": 1, \"value\": \"How to Improve ...\"}, \"iPhone Photography Secrets\": {\"frequency\": 1, \"value\": \"iPhone Photography ...\"}, \"Learning AutoCAD 2014 Editing Essentials\": {\"frequency\": 1, \"value\": \"Learning AutoCAD ...\"}, \"Calculus II: essentials\": {\"frequency\": 1, \"value\": \"Calculus II: ...\"}, \"SAP EDI Analyst\": {\"frequency\": 1, \"value\": \"SAP EDI Analyst\"}, \"Mailing List Management for Musicians and Bands\": {\"frequency\": 1, \"value\": \"Mailing List ...\"}, \"Complete Wordpress Training For Beginners\": {\"frequency\": 1, \"value\": \"Complete Wordpress ...\"}, \"Computational Neuroscience\": {\"frequency\": 1, \"value\": \"Computational ...\"}, \"Mac OS X Server 10.6 Snow Leopard New Features\": {\"frequency\": 1, \"value\": \"Mac OS X Server ...\"}, \"Hot Studio, Experience Design\": {\"frequency\": 1, \"value\": \"Hot Studio, ...\"}, \"Entourage 2008 for Mac Essential Training\": {\"frequency\": 1, \"value\": \"Entourage 2008 for ...\"}, \"Learn Selenium IDE and Webdriver\": {\"frequency\": 1, \"value\": \"Learn Selenium IDE ...\"}, \"Fast Track to Microsoft Excel Beginner + Advanced Training\": {\"frequency\": 1, \"value\": \"Fast Track to ...\"}, \"Word 2007 Essential Training\": {\"frequency\": 1, \"value\": \"Word 2007 ...\"}, \"Project Management Fundamentals\": {\"frequency\": 1, \"value\": \"Project Management ...\"}, \"Photoshop Flyer Design Secrets\": {\"frequency\": 1, \"value\": \"Photoshop Flyer ...\"}, \"iPad Literacy 101\": {\"frequency\": 1, \"value\": \"iPad Literacy 101\"}, \"Twitter Essential Training\": {\"frequency\": 1, \"value\": \"Twitter Essential ...\"}, \"Mastering Photoshop Elements 11 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"Mr. Spreadsheets Favorite Excel 2010 Tips & Tricks\": {\"frequency\": 1, \"value\": \"Mr. Spreadsheets ...\"}, \"Marketing Mobile Apps for Top Visibility and Lasting Success\": {\"frequency\": 1, \"value\": \"Marketing Mobile ...\"}, \"Pharmacokinetics: Basic principles\": {\"frequency\": 1, \"value\": \"Pharmacokinetics: ...\"}, \"Apple Pro Video Training: Aperture 3\": {\"frequency\": 1, \"value\": \"Apple Pro Video ...\"}, \"Building Professional Mobile Websites with WordPress\": {\"frequency\": 1, \"value\": \"Building ...\"}, \"FileMaker Pro 8.5 Essential Training\": {\"frequency\": 1, \"value\": \"FileMaker Pro 8.5 ...\"}, \"How to Smartoutsource Your Virtual Assistant\": {\"frequency\": 1, \"value\": \"How to ...\"}, \"Linear and Discrete Optimization\": {\"frequency\": 1, \"value\": \"Linear and ...\"}, \"Creating a Digital Painting with Photoshop CS5\": {\"frequency\": 1, \"value\": \"Creating a Digital ...\"}, \"Increase Your Profit: Create an Internet Marketing Video\": {\"frequency\": 1, \"value\": \"Increase Your ...\"}, \"RFPs, Proposals, and Contracts for Web Developers\": {\"frequency\": 1, \"value\": \"RFPs, Proposals, ...\"}, \"Create your First Computer Game with Stencyl\": {\"frequency\": 1, \"value\": \"Create your First ...\"}, \"The Art of Unit Testing and TDD in Java\": {\"frequency\": 1, \"value\": \"The Art of Unit ...\"}, \"Chief Financial Officer Leadership Program\": {\"frequency\": 1, \"value\": \"Chief Financial ...\"}, \"SmartSound Sonicfire Pro 5 Workshop\": {\"frequency\": 1, \"value\": \"SmartSound ...\"}, \"Learning AutoCAD - 3D Modeling and Rendering\": {\"frequency\": 1, \"value\": \"Learning AutoCAD - ...\"}, \"Robust Scrum Master\": {\"frequency\": 1, \"value\": \"Robust Scrum ...\"}, \"Ruby Training 360\": {\"frequency\": 1, \"value\": \"Ruby Training 360\"}, \"Beyond Compliance\": {\"frequency\": 1, \"value\": \"Beyond Compliance\"}, \"Data Analysis\": {\"frequency\": 1, \"value\": \"Data Analysis\"}, \"Photoshop CS4 for Photographers: Camera Raw\": {\"frequency\": 1, \"value\": \"Photoshop CS4 for ...\"}, \"Love, Peace & Stillness Meditation Retreat\": {\"frequency\": 1, \"value\": \"Love, Peace & ...\"}, \"Social Media for Photo and Video Pros\": {\"frequency\": 1, \"value\": \"Social Media for ...\"}, \"Getting Started Teaching Online - Online Teaching Jobs\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Premiere Elements 7 Essential Training\": {\"frequency\": 1, \"value\": \"Premiere Elements ...\"}, \"Silverlight 4 New Features\": {\"frequency\": 1, \"value\": \"Silverlight 4 New ...\"}, \"Microsoft Excel 2011 for Mac Tutorial - Learn The Easy Way.\": {\"frequency\": 1, \"value\": \"Microsoft Excel ...\"}, \"How to Get Started Making Money Online\": {\"frequency\": 1, \"value\": \"How to Get Started ...\"}, \"Deciphering ITIL Edition 2011\": {\"frequency\": 1, \"value\": \"Deciphering ITIL ...\"}, \"Online Fundraising Bootcamp for Nonprofits\": {\"frequency\": 1, \"value\": \"Online Fundraising ...\"}, \"Fireworks CS4 Essential Training\": {\"frequency\": 1, \"value\": \"Fireworks CS4 ...\"}, \"Intermediate Flash MX\": {\"frequency\": 1, \"value\": \"Intermediate Flash ...\"}, \"ZBrush 3 for Windows Essential Training\": {\"frequency\": 1, \"value\": \"ZBrush 3 for ...\"}, \"Photoshop CS6 One-on-One: Fundamentals\": {\"frequency\": 1, \"value\": \"Photoshop CS6 One- ...\"}, \"Forex Foundation Course (FFC)\": {\"frequency\": 1, \"value\": \"Forex Foundation ...\"}, \"04332960X: Music in the 20th Century\": {\"frequency\": 1, \"value\": \"04332960X: Music ...\"}, \"Flash Professional CS6 Essential Training\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Revit Deployment & Management for Medium Sized Offices\": {\"frequency\": 1, \"value\": \"Revit Deployment ...\"}, \"Stat2.1X: Introduction to Statistics: Descriptive Statistics\": {\"frequency\": 1, \"value\": \"Stat2.1X: ...\"}, \"Foundations of Biblical Interpretation\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"WordPress For E-Commerce Tutorial - A Definitive Guide\": {\"frequency\": 1, \"value\": \"WordPress For ...\"}, \"Final Cut Pro 6 Workflow\": {\"frequency\": 1, \"value\": \"Final Cut Pro 6 ...\"}, \"SkillMasters 2013 iPhone Programming for Beginners\": {\"frequency\": 1, \"value\": \"SkillMasters 2013 ...\"}, \"Photoshop CC for Photographers: Fundamentals\": {\"frequency\": 1, \"value\": \"Photoshop CC for ...\"}, \"Video Production with Creative Suite 6\": {\"frequency\": 1, \"value\": \"Video Production ...\"}, \"Sharing Photos with Instagram\": {\"frequency\": 1, \"value\": \"Sharing Photos ...\"}, \"Website Basics\": {\"frequency\": 1, \"value\": \"Website Basics\"}, \"Financial Statements Made Easy\": {\"frequency\": 1, \"value\": \"Financial ...\"}, \"Expand Your Business Network with Flickr Foto Fun\": {\"frequency\": 1, \"value\": \"Expand Your ...\"}, \"3ds max Mentor: Getting Started in 3ds max\": {\"frequency\": 1, \"value\": \"3ds max Mentor: ...\"}, \"How to Make an iPhone App From Scratch\": {\"frequency\": 1, \"value\": \"How to Make an ...\"}, \"Leadership Insights from Dan Rockwell\": {\"frequency\": 1, \"value\": \"Leadership ...\"}, \"Master Google Analytics\": {\"frequency\": 1, \"value\": \"Master Google ...\"}, \"Introduction to Lighting for Film & Video\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"2010 SBIFF Women's Panel: Creative Women in the Business\": {\"frequency\": 1, \"value\": \"2010 SBIFF ...\"}, \"10 Steps to Get Your Local Business Found Online\": {\"frequency\": 1, \"value\": \"10 Steps to Get ...\"}, \"How To Design Gorgeous Powerpoint Templates PPT Hackers\": {\"frequency\": 1, \"value\": \"How To Design ...\"}, \"How to Use the lynda.com Partners Site\": {\"frequency\": 1, \"value\": \"How to Use the ...\"}, \"Kendo UI Scheduler\": {\"frequency\": 1, \"value\": \"Kendo UI Scheduler\"}, \"Perl 5 Essential Training\": {\"frequency\": 1, \"value\": \"Perl 5 Essential ...\"}, \"Hands-on with OS X Mavericks\": {\"frequency\": 1, \"value\": \"Hands-on with OS X ...\"}, \"Ed Emberley, Children's Book Illustrator\": {\"frequency\": 1, \"value\": \"Ed Emberley, ...\"}, \"Beginner Mobile App Development with Appcelerator Titanium\": {\"frequency\": 1, \"value\": \"Beginner Mobile ...\"}, \"Hot Studio's Open Architecture Network: Start to Finish\": {\"frequency\": 1, \"value\": \"Hot Studio's ...\"}, \"iPhoto '09: 10 Things to Know About Facebook\": {\"frequency\": 1, \"value\": \"iPhoto '09: 10 ...\"}, \"Learning jQuery Mobile for Beginners\": {\"frequency\": 1, \"value\": \"Learning jQuery ...\"}, \"Flash User Experience Best Practices\": {\"frequency\": 1, \"value\": \"Flash User ...\"}, \"Tyler's Guitar Techniques\": {\"frequency\": 1, \"value\": \"Tyler's Guitar ...\"}, \"Interactive PDFs with Adobe InDesign: No-Code Digital\": {\"frequency\": 1, \"value\": \"Interactive PDFs ...\"}, \"Microsoft Excel 2010 Training Course - Online/Offline Access\": {\"frequency\": 1, \"value\": \"Microsoft Excel ...\"}, \"How to make lampshades\": {\"frequency\": 1, \"value\": \"How to make ...\"}, \"iPhone and iPod touch iOS 6 Essential Training\": {\"frequency\": 1, \"value\": \"iPhone and iPod ...\"}, \"Ancient Greek Religion\": {\"frequency\": 1, \"value\": \"Ancient Greek ...\"}, \"Mastering MS Excel (Beginners/Intermediate)\": {\"frequency\": 1, \"value\": \"Mastering MS Excel ...\"}, \"New England Color\": {\"frequency\": 1, \"value\": \"New England Color\"}, \"Illustrator Foundations\": {\"frequency\": 1, \"value\": \"Illustrator ...\"}, \"Excel 2010 Introduction\": {\"frequency\": 1, \"value\": \"Excel 2010 ...\"}, \"CSS3 First Look\": {\"frequency\": 1, \"value\": \"CSS3 First Look\"}, \"Introduction to Oracle SQL\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Photoshop CS and Flash MX 2004 Integration\": {\"frequency\": 1, \"value\": \"Photoshop CS and ...\"}, \"Digital Painting: Architecture\": {\"frequency\": 1, \"value\": \"Digital Painting: ...\"}, \"How To Invent\": {\"frequency\": 1, \"value\": \"How To Invent\"}, \"Console Foundations\": {\"frequency\": 1, \"value\": \"Console ...\"}, \"Masterful Social Skills For Men\": {\"frequency\": 1, \"value\": \"Masterful Social ...\"}, \"Learning C# .NET - Programming for Beginners.\": {\"frequency\": 1, \"value\": \"Learning C# .NET - ...\"}, \"After Effects 7 New Features\": {\"frequency\": 1, \"value\": \"After Effects 7 ...\"}, \"Foundations in Moodle 2 for Educators\": {\"frequency\": 1, \"value\": \"Foundations in ...\"}, \"Bridge: 10 Things Designers Need to Know\": {\"frequency\": 1, \"value\": \"Bridge: 10 Things ...\"}, \"Lightroom 5 Essentials: 06 Creating Slideshows and Web Galleries\": {\"frequency\": 1, \"value\": \"Lightroom 5 ...\"}, \"Trapcode Particular Essential Training\": {\"frequency\": 1, \"value\": \"Trapcode ...\"}, \"WordPress Express 30 Kick Start Videos And 14 Themes\": {\"frequency\": 1, \"value\": \"WordPress Express ...\"}, \"Oracle Java SCWCD / OCWCD 5 Certification Exam Preparation\": {\"frequency\": 1, \"value\": \"Oracle Java SCWCD ...\"}, \"Pre-Calculus\": {\"frequency\": 1, \"value\": \"Pre-Calculus\"}, \"SharePoint Quick Starts: Building GeoPhoto Mapping Websites\": {\"frequency\": 1, \"value\": \"SharePoint Quick ...\"}, \"Photoshop Elements 3 Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"Publishing Video with the Flash Platform\": {\"frequency\": 1, \"value\": \"Publishing Video ...\"}, \"Core Solutions of Microsoft SharePoint Server 2013 (70-331)\": {\"frequency\": 1, \"value\": \"Core Solutions of ...\"}, \"Citizenship and U.S. Immigration\": {\"frequency\": 1, \"value\": \"Citizenship and ...\"}, \"Maya Essentials 6: Lights and Rendering\": {\"frequency\": 1, \"value\": \"Maya Essentials 6: ...\"}, \"Make 3D Animation, Games, VFX - Making Sense of Maya\": {\"frequency\": 1, \"value\": \"Make 3D Animation, ...\"}, \"AppBaker TEDx Event App Starter Pack course\": {\"frequency\": 1, \"value\": \"AppBaker TEDx ...\"}, \"Photoshop Brushes\": {\"frequency\": 1, \"value\": \"Photoshop Brushes\"}, \"Adobe Muse\": {\"frequency\": 1, \"value\": \"Adobe Muse\"}, \"The Zen of Data - Part I: Stats for Analytics\": {\"frequency\": 1, \"value\": \"The Zen of Data - ...\"}, \"The Absolute Beginners Guide to Studio Portraiture\": {\"frequency\": 1, \"value\": \"The Absolute ...\"}, \"Photoshop Elements 10 Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"Blackboard 9.x Essential Training for Instructors\": {\"frequency\": 1, \"value\": \"Blackboard 9.x ...\"}, \"Intro to Quantum Leaping Your Business\": {\"frequency\": 1, \"value\": \"Intro to Quantum ...\"}, \"Fireworks CS5: Rapid Prototyping\": {\"frequency\": 1, \"value\": \"Fireworks CS5: ...\"}, \"Photoshop CS3 Extended for 3D + Video\": {\"frequency\": 1, \"value\": \"Photoshop CS3 ...\"}, \"Photoshop Tools in 10 easy Steps !\": {\"frequency\": 1, \"value\": \"Photoshop Tools in ...\"}, \"Photo Assignment: Fill Flash Portraits\": {\"frequency\": 1, \"value\": \"Photo Assignment: ...\"}, \"Photoshop CS6 One-on-One: Mastery\": {\"frequency\": 1, \"value\": \"Photoshop CS6 One- ...\"}, \"Generating the Wealth of Nations\": {\"frequency\": 1, \"value\": \"Generating the ...\"}, \"Facility Care and Stewardship (Trustees Training)\": {\"frequency\": 1, \"value\": \"Facility Care and ...\"}, \"Everybody Has An Accent\": {\"frequency\": 1, \"value\": \"Everybody Has An ...\"}, \"Acrobat 8 Professional Essential Training\": {\"frequency\": 1, \"value\": \"Acrobat 8 ...\"}, \"LinkedIn for Business\": {\"frequency\": 1, \"value\": \"LinkedIn for ...\"}, \"The Leader as CREATIVE Culture Architect & Builder\": {\"frequency\": 1, \"value\": \"The Leader as ...\"}, \"FileMaker 8.5 Web Publishing\": {\"frequency\": 1, \"value\": \"FileMaker 8.5 Web ...\"}, \"Java Advanced Training\": {\"frequency\": 1, \"value\": \"Java Advanced ...\"}, \""Deep Dive" Screencast Training: Camtasia Studio 8 (Windows)\": {\"frequency\": 1, \"value\": \""Deep ...\"}, \"Remixing a Song in Logic Pro\": {\"frequency\": 1, \"value\": \"Remixing a Song in ...\"}, \"Trigonometry: Trigonometric Identities II\": {\"frequency\": 1, \"value\": \"Trigonometry: ...\"}, \"Win Them Over with Web Video Part 2\": {\"frequency\": 1, \"value\": \"Win Them Over with ...\"}, \"Yoga for a Total Mind-Body Transformation\": {\"frequency\": 1, \"value\": \"Yoga for a Total ...\"}, \"Kindle Covers Made Easy\": {\"frequency\": 1, \"value\": \"Kindle Covers Made ...\"}, \"Photoshop CC Image Cleanup Workshop\": {\"frequency\": 1, \"value\": \"Photoshop CC Image ...\"}, \"Getting Started With WordPerfect Office X3\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Enviable Pregnancy\": {\"frequency\": 1, \"value\": \"Enviable Pregnancy\"}, \"Creating an HTML Email Newsletter\": {\"frequency\": 1, \"value\": \"Creating an HTML ...\"}, \"Learning From Data\": {\"frequency\": 1, \"value\": \"Learning From Data\"}, \"The Psychology of Personality -- A Video Textbook\": {\"frequency\": 1, \"value\": \"The Psychology of ...\"}, \"Creating Photo Books with Blurb\": {\"frequency\": 1, \"value\": \"Creating Photo ...\"}, \"Final Cut Pro 6 Essential Editing\": {\"frequency\": 1, \"value\": \"Final Cut Pro 6 ...\"}, \"GarageBand '11 Essential Training\": {\"frequency\": 1, \"value\": \"GarageBand '11 ...\"}, \"Andrew Warner's Interview Your Heroes\": {\"frequency\": 1, \"value\": \"Andrew ...\"}, \"Music Production, Marketing, and Publicity\": {\"frequency\": 1, \"value\": \"Music Production, ...\"}, \"Create Navigation Menus with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create Navigation ...\"}, \"Become a Web Developer from Scratch! (Complete Course)\": {\"frequency\": 1, \"value\": \"Become a Web ...\"}, \"Natural Language Processing\": {\"frequency\": 2, \"value\": \"Natural Language ...\"}, \"The Big Business Appraiser\": {\"frequency\": 1, \"value\": \"The Big Business ...\"}, \"Game Development using GameSalad\": {\"frequency\": 1, \"value\": \"Game Development ...\"}, \"Writing to Heal. Change your life through stories\": {\"frequency\": 1, \"value\": \"Writing to Heal. ...\"}, \"Intermediate Dreamweaver MX\": {\"frequency\": 1, \"value\": \"Intermediate ...\"}, \"Web Programming with Python\": {\"frequency\": 1, \"value\": \"Web Programming ...\"}, \"Photoshop Elements 11 Essentials: 01 Importing and Organizing Photos\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"Zen Cart E-Commerce Quick Start\": {\"frequency\": 1, \"value\": \"Zen Cart ...\"}, \"Melodyne Studio Essential Training\": {\"frequency\": 1, \"value\": \"Melodyne Studio ...\"}, \"7 Keys To Workplace Coaching\": {\"frequency\": 1, \"value\": \"7 Keys To ...\"}, \"14 Day Hatha Yoga for Detox and Weight Loss\": {\"frequency\": 1, \"value\": \"14 Day Hatha Yoga ...\"}, \"Thawing Your Inner Family of Self\": {\"frequency\": 1, \"value\": \"Thawing Your Inner ...\"}, \"Creating Rigid Body Simulations in Blender\": {\"frequency\": 1, \"value\": \"Creating Rigid ...\"}, \"How to Use Online Video to Flip the Classroom\": {\"frequency\": 1, \"value\": \"How to Use Online ...\"}, \"Mastering Windows 8 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering Windows ...\"}, \"Photoshop CS4 Getting Started\": {\"frequency\": 1, \"value\": \"Photoshop CS4 ...\"}, \"Jazz Guitar: Painless Scale Positions\": {\"frequency\": 1, \"value\": \"Jazz Guitar: ...\"}, \"Rails for Zombies Redux\": {\"frequency\": 1, \"value\": \"Rails for Zombies ...\"}, \"Entrepreneurial Recreation Management\": {\"frequency\": 1, \"value\": \"Entrepreneurial ...\"}, \"Introduction to 3D Animation with Autodesk Maya\": {\"frequency\": 1, \"value\": \"Introduction to 3D ...\"}, \"Make Your Own iPhone Game in One Day Without Coding\": {\"frequency\": 1, \"value\": \"Make Your Own ...\"}, \"Introduction to Philosophy\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Flipped University\": {\"frequency\": 1, \"value\": \"Flipped University\"}, \"Poetry: What It Is, and How to Understand It\": {\"frequency\": 1, \"value\": \"Poetry: What It ...\"}, \"Mastering Sage 50 v. 2013 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering Sage 50 ...\"}, \"Shooting with the Canon 60D\": {\"frequency\": 1, \"value\": \"Shooting with the ...\"}, \"How to build a Parallax Website\": {\"frequency\": 1, \"value\": \"How to build a ...\"}, \"Color 1.5 Essential Training\": {\"frequency\": 1, \"value\": \"Color 1.5 ...\"}, \"Build Your Brand: Blogging, SEO, Social & Relationships\": {\"frequency\": 1, \"value\": \"Build Your Brand: ...\"}, \"The Creative Spark: Beeple, Everyday Artist\": {\"frequency\": 1, \"value\": \"The Creative ...\"}, \"Creating Particle and Fire Effects with Maya\": {\"frequency\": 1, \"value\": \"Creating Particle ...\"}, \"Visual Basic Essential Training\": {\"frequency\": 1, \"value\": \"Visual Basic ...\"}, \"Creating Audio Visualizations with Audacity\": {\"frequency\": 1, \"value\": \"Creating Audio ...\"}, \"CompTIA A+ 220-701 and 220-702 Video Mentor, 2/e\": {\"frequency\": 1, \"value\": \"CompTIA A+ 220-701 ...\"}, \"Explore the Fundamentals of C# Programming\": {\"frequency\": 1, \"value\": \"Explore the ...\"}, \"Fireworks Web Workflow\": {\"frequency\": 1, \"value\": \"Fireworks Web ...\"}, \"jQuery Fundamentals Training\": {\"frequency\": 1, \"value\": \"jQuery ...\"}, \"Jumpstart Your Life In An Hour\": {\"frequency\": 1, \"value\": \"Jumpstart Your ...\"}, \"Being Happy: Your guide to true & lasting happiness\": {\"frequency\": 1, \"value\": \"Being Happy: Your ...\"}, \"Consulting Fees Guide: Make More Money With Every Project\": {\"frequency\": 1, \"value\": \"Consulting Fees ...\"}, \"The Hard Surface Vehicle Texturing Workflow\": {\"frequency\": 1, \"value\": \"The Hard Surface ...\"}, \"Kickstart Guide: Build a site with HTML and CSS\": {\"frequency\": 1, \"value\": \"Kickstart Guide: ...\"}, \"InDesign Creative Cloud Updates\": {\"frequency\": 1, \"value\": \"InDesign Creative ...\"}, \"Migrating from Windows 7 to Windows 8\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Creating Composites in Photoshop\": {\"frequency\": 1, \"value\": \"Creating ...\"}, \"Digital Citizenship & Social Media Safety for Tweens\": {\"frequency\": 1, \"value\": \"Digital ...\"}, \"Foundations of UX: Usability Testing\": {\"frequency\": 1, \"value\": \"Foundations of UX: ...\"}, \"7 Steps to a Life Long Yoga Practice You'll Love\": {\"frequency\": 1, \"value\": \"7 Steps to a Life ...\"}, \"Foundations of Programming: Fundamentals\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Digital SLR Cameras & Photography For Dummies Video Training\": {\"frequency\": 1, \"value\": \"Digital SLR ...\"}, \"Conversion Optimization\": {\"frequency\": 1, \"value\": \"Conversion ...\"}, \"Vehicle Rigging in Maya\": {\"frequency\": 1, \"value\": \"Vehicle Rigging in ...\"}, \"Flex 2 Beyond the Basics\": {\"frequency\": 1, \"value\": \"Flex 2 Beyond the ...\"}, \"Beginner PHP and MySQL Tutorial\": {\"frequency\": 1, \"value\": \"Beginner PHP and ...\"}, \"Stat2.3x: Introduction to Statistics: Inference\": {\"frequency\": 1, \"value\": \"Stat2.3x: ...\"}, \"Acrobat 9 Pro Getting Started\": {\"frequency\": 1, \"value\": \"Acrobat 9 Pro ...\"}, \"Energy 101\": {\"frequency\": 1, \"value\": \"Energy 101\"}, \"iPad Tips and Tricks\": {\"frequency\": 1, \"value\": \"iPad Tips and ...\"}, \"Time Management for College Survival\": {\"frequency\": 1, \"value\": \"Time Management ...\"}, \"CCNP 2013 All-in-One Video Boot Camp With Chris Bryant\": {\"frequency\": 1, \"value\": \"CCNP 2013 All-in- ...\"}, \"Market Positioning for Freelancers & Small Business Owners\": {\"frequency\": 1, \"value\": \"Market Positioning ...\"}, \"Digital Video Principles\": {\"frequency\": 1, \"value\": \"Digital Video ...\"}, \"Stereoscopic 3D Motion Graphics with After Effects\": {\"frequency\": 1, \"value\": \"Stereoscopic 3D ...\"}, \"Building a Windows Store Game Using HTML and JavaScript\": {\"frequency\": 1, \"value\": \"Building a Windows ...\"}, \"Artist at Work: Creating a Visual Hierarchy\": {\"frequency\": 1, \"value\": \"Artist at Work: ...\"}, \"The Ultimate Python Programming Tutorial\": {\"frequency\": 1, \"value\": \"The Ultimate ...\"}, \"Quick Fixes with Photoshop Elements 10\": {\"frequency\": 1, \"value\": \"Quick Fixes with ...\"}, \"C Programming: iPhone App Development Starts Here\": {\"frequency\": 1, \"value\": \"C Programming: ...\"}, \"Understanding Hashtags in Social Media\": {\"frequency\": 1, \"value\": \"Understanding ...\"}, \"Introduction to Transportation Risk Analysis\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Microsoft Word 2010 Advanced\": {\"frequency\": 1, \"value\": \"Microsoft Word ...\"}, \"Find Your Entrepreneurial Niche\": {\"frequency\": 1, \"value\": \"Find Your ...\"}, \"GCSE Biology\": {\"frequency\": 1, \"value\": \"GCSE Biology\"}, \"Adobe Illustrator for print design\": {\"frequency\": 1, \"value\": \"Adobe Illustrator ...\"}, \"Learning Creative Web Design The Easy Way.\": {\"frequency\": 1, \"value\": \"Learning Creative ...\"}, \"Developing Kids Motor Skills and Coordination from 0-6 years\": {\"frequency\": 1, \"value\": \"Developing Kids ...\"}, \"Photoshop for Designers: Filters\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"Learn Conversational Spanish\": {\"frequency\": 1, \"value\": \"Learn ...\"}, \"Creating Shader Networks in Maya and mental ray\": {\"frequency\": 1, \"value\": \"Creating Shader ...\"}, \"HTML5: Video and Audio in Depth\": {\"frequency\": 1, \"value\": \"HTML5: Video and ...\"}, \"Introduction to Astronomy\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Creating Ebooks with InDesign CS4 or CS5\": {\"frequency\": 1, \"value\": \"Creating Ebooks ...\"}, \"Digital Photography Made SimpleTM\": {\"frequency\": 1, \"value\": \"Digital ...\"}, \"Adobe Certified Training: Edge Animate Fundamentals\": {\"frequency\": 1, \"value\": \"Adobe Certified ...\"}, \"Introduction to Business Ownership\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Night Photography Unlocked - Beginner's Course\": {\"frequency\": 1, \"value\": \"Night Photography ...\"}, \"How To Move From Finance to a Tech Startup\": {\"frequency\": 1, \"value\": \"How To Move From ...\"}, \"Photoshop Elements 6 for Mac Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"Designing a Mobile Website with Muse\": {\"frequency\": 1, \"value\": \"Designing a Mobile ...\"}, \"Quick and Quirky Caricatures - Learn in an Hour!\": {\"frequency\": 1, \"value\": \"Quick and Quirky ...\"}, \"Introduction to Facebook Pages for Businesses and Orgs\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"iPhone and iPod touch iOS 5 Essential Training\": {\"frequency\": 1, \"value\": \"iPhone and iPod ...\"}, \"Become a Certified Web Developer\": {\"frequency\": 1, \"value\": \"Become a Certified ...\"}, \"Great Economists: Classical Economics and its Forerunners\": {\"frequency\": 1, \"value\": \"Great Economists: ...\"}, \"Building Blocks and Macros in Word\": {\"frequency\": 1, \"value\": \"Building Blocks ...\"}, \"History\": {\"frequency\": 1, \"value\": \"History\"}, \"Art History\": {\"frequency\": 1, \"value\": \"Art History\"}, \"Mastering Photoshop CS6 and CS5 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"The Yoga Of Laughter: From Stressed Out To Blissed Out!\": {\"frequency\": 1, \"value\": \"The Yoga Of ...\"}, \"How To Use Twitter To Build Authority In Your Market Sector\": {\"frequency\": 1, \"value\": \"How To Use Twitter ...\"}, \"Career Re-Launch for Moms\": {\"frequency\": 1, \"value\": \"Career Re-Launch ...\"}, \"Agile Project Management\": {\"frequency\": 1, \"value\": \"Agile Project ...\"}, \"Start with a Theme: Magazine Styles in WordPress\": {\"frequency\": 1, \"value\": \"Start with a ...\"}, \"Running A Web Design Business\": {\"frequency\": 1, \"value\": \"Running A Web ...\"}, \"Speed Reading for Business. How to speed read and save time!\": {\"frequency\": 1, \"value\": \"Speed Reading for ...\"}, \"Relationship Mind Mastery: The Essentials\": {\"frequency\": 1, \"value\": \"Relationship Mind ...\"}, \"Nuke 5 Essential Training\": {\"frequency\": 1, \"value\": \"Nuke 5 Essential ...\"}, \"Facebook for Your Business\": {\"frequency\": 1, \"value\": \"Facebook for Your ...\"}, \"Premiere Pro CS4 Essential Training\": {\"frequency\": 1, \"value\": \"Premiere Pro CS4 ...\"}, \"Cryptography II\": {\"frequency\": 1, \"value\": \"Cryptography II\"}, \"Practical Guide to Liquid Photography\": {\"frequency\": 1, \"value\": \"Practical Guide to ...\"}, \"Getting Started with Dreamweaver CS5 and Business Catalyst\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Learning Adobe After Effects CC Tutorial Videos\": {\"frequency\": 1, \"value\": \"Learning Adobe ...\"}, \"Up and Running with 3D in Photoshop CS5 Extended\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Medical Neuroscience\": {\"frequency\": 1, \"value\": \"Medical ...\"}, \"Creating and Managing a Blog Network with WordPress\": {\"frequency\": 1, \"value\": \"Creating and ...\"}, \"After Effects Apprentice 09: Expressions\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"TOGAF Architecture Framework Exam preparation Level 2\": {\"frequency\": 1, \"value\": \"TOGAF Architecture ...\"}, \"Premiere Pro 2 Essential Training\": {\"frequency\": 1, \"value\": \"Premiere Pro 2 ...\"}, \"Acrobat 8 Professional Beyond the Basics\": {\"frequency\": 1, \"value\": \"Acrobat 8 ...\"}, \"Advanced Ethical Hacking\": {\"frequency\": 1, \"value\": \"Advanced Ethical ...\"}, \"Publisher 2003 Essential Training\": {\"frequency\": 1, \"value\": \"Publisher 2003 ...\"}, \"Android Programming Tutorial Videos For Beginners\": {\"frequency\": 1, \"value\": \"Android ...\"}, \"Photography: Ditch Auto - Start Shooting in Manual\": {\"frequency\": 1, \"value\": \"Photography: Ditch ...\"}, \"How to Create Beautiful E-Books\": {\"frequency\": 1, \"value\": \"How to Create ...\"}, \"Law of Attraction\": {\"frequency\": 1, \"value\": \"Law of Attraction\"}, \"Color Correction with Premiere Pro CS5.5\": {\"frequency\": 1, \"value\": \"Color Correction ...\"}, \"Learn Korean Writing - Hana Hana Hangul\": {\"frequency\": 1, \"value\": \"Learn Korean ...\"}, \"After Effects: Lighting Effects in Post\": {\"frequency\": 1, \"value\": \"After Effects: ...\"}, \"Online AFFILIATE Academy - 12 Weeks To Freedom Course\": {\"frequency\": 1, \"value\": \"Online AFFILIATE ...\"}, \"Word 2003 Essential Training\": {\"frequency\": 1, \"value\": \"Word 2003 ...\"}, \"Organic Soil Building for the Backyard Organic Gardener\": {\"frequency\": 1, \"value\": \"Organic Soil ...\"}, \"YouTube Marketing Mastery\": {\"frequency\": 1, \"value\": \"YouTube Marketing ...\"}, \"The Neuroscience of Reframing & How to Do It\": {\"frequency\": 1, \"value\": \"The Neuroscience ...\"}, \"The Best Part Time Gig You've Never Heard Of\": {\"frequency\": 1, \"value\": \"The Best Part Time ...\"}, \"Illustrator CS5 New Features\": {\"frequency\": 1, \"value\": \"Illustrator CS5 ...\"}, \"Help - My Kid's A Musician\": {\"frequency\": 1, \"value\": \"Help - My ...\"}, \"Break into IT - How to Land Your Dream Job in IT\": {\"frequency\": 1, \"value\": \"Break into IT - ...\"}, \"Photoshop Elements 7 for Windows Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"Finale 2012 Essential Training\": {\"frequency\": 1, \"value\": \"Finale 2012 ...\"}, \"Drupal 6: Online Presentation of Data\": {\"frequency\": 1, \"value\": \"Drupal 6: Online ...\"}, \"Premiere Pro: Color Correction and Enhancement\": {\"frequency\": 1, \"value\": \"Premiere Pro: ...\"}, \"ColdFusion 9: AJAX Controls and Techniques\": {\"frequency\": 1, \"value\": \"ColdFusion 9: AJAX ...\"}, \"Migrating from PowerPoint 2003 to PowerPoint 2007\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"CSS3 Fundamentals\": {\"frequency\": 1, \"value\": \"CSS3 Fundamentals\"}, \"Make Deals That Matter: BD and Partnership at Startups\": {\"frequency\": 1, \"value\": \"Make Deals That ...\"}, \"Learn the Fundamentals of Programming with C#\": {\"frequency\": 1, \"value\": \"Learn the ...\"}, \"Photoshop CS5 One-on-One: Advanced\": {\"frequency\": 1, \"value\": \"Photoshop CS5 One- ...\"}, \"Advanced Compositing, Tracking, and Roto Techniques with After Effects\": {\"frequency\": 1, \"value\": \"Advanced ...\"}, \"Learning Flash 5\": {\"frequency\": 1, \"value\": \"Learning Flash 5\"}, \"Introduction to Theoretical Computer Science\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Computer Science 101\": {\"frequency\": 1, \"value\": \"Computer Science ...\"}, \"Master of AutoCAD 2012 2D / 3D in 4 hours\": {\"frequency\": 1, \"value\": \"Master of AutoCAD ...\"}, \"iPhone SDK: Developing iPad Applications\": {\"frequency\": 1, \"value\": \"iPhone SDK: ...\"}, \"Dreamweaver CS4 Getting Started\": {\"frequency\": 1, \"value\": \"Dreamweaver CS4 ...\"}, \"1 hour jQuery\": {\"frequency\": 1, \"value\": \"1 hour jQuery\"}, \"Autodesk Mudbox 2013\": {\"frequency\": 1, \"value\": \"Autodesk Mudbox ...\"}, \"iPhoto '09: 10 Things to Know About Places\": {\"frequency\": 1, \"value\": \"iPhoto '09: 10 ...\"}, \"JavaScript and AJAX\": {\"frequency\": 1, \"value\": \"JavaScript and ...\"}, \"CINEMA 4D R11.5 Essential Training\": {\"frequency\": 1, \"value\": \"CINEMA 4D R11.5 ...\"}, \"My Financial Playground\": {\"frequency\": 1, \"value\": \"My Financial ...\"}, \"Dreamweaver CS3 Essential Training\": {\"frequency\": 1, \"value\": \"Dreamweaver CS3 ...\"}, \"Photoshop CS4 Retouching: Fashion Photography Projects\": {\"frequency\": 1, \"value\": \"Photoshop CS4 ...\"}, \"Beginners FileMaker Pro 12 Training - A Practical Guide\": {\"frequency\": 1, \"value\": \"Beginners ...\"}, \"The Online Marketing Crash Course: Traffic, Leads & Clients\": {\"frequency\": 1, \"value\": \"The Online ...\"}, \"Websites and SEO for Photographers (lite)\": {\"frequency\": 1, \"value\": \"Websites and SEO ...\"}, \"How to Develop Business Videos for Customers\": {\"frequency\": 1, \"value\": \"How to Develop ...\"}, \"Pole Dancing Video Course with Noelle Wood\": {\"frequency\": 1, \"value\": \"Pole Dancing Video ...\"}, \"Running a Design Business: Creative Briefs\": {\"frequency\": 1, \"value\": \"Running a Design ...\"}, \"Introduction to Mobile Games Development\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"GCSE Chemistry: Edexcel C1 part 1\": {\"frequency\": 1, \"value\": \"GCSE Chemistry: ...\"}, \"The Art of Color Correction: Artistic Color Grading on the Timeline\": {\"frequency\": 1, \"value\": \"The Art of Color ...\"}, \"CSS Foundations\": {\"frequency\": 1, \"value\": \"CSS Foundations\"}, \"Spanish for Beginners\": {\"frequency\": 1, \"value\": \"Spanish for ...\"}, \"Learn how to make a song in GarageBand in 1 hour\": {\"frequency\": 1, \"value\": \"Learn how to make ...\"}, \"Networked Life\": {\"frequency\": 1, \"value\": \"Networked Life\"}, \"Mastering Microsoft Excel 2010 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"Excel 2007: Managing Multiple Worksheets and Workbooks\": {\"frequency\": 1, \"value\": \"Excel 2007: ...\"}, \"The Smartest Ways To Jumpstart Your Business!\": {\"frequency\": 1, \"value\": \"The Smartest Ways ...\"}, \"Access 2007 Essential Training\": {\"frequency\": 1, \"value\": \"Access 2007 ...\"}, \"Extreme Scuba Makeover\": {\"frequency\": 1, \"value\": \"Extreme Scuba ...\"}, \"Adobe Premiere Elements 11 Training - Tutorial Video\": {\"frequency\": 1, \"value\": \"Adobe Premiere ...\"}, \"Learning Spanish with Ana\": {\"frequency\": 1, \"value\": \"Learning Spanish ...\"}, \"Adobe Acrobat XI Tutorial - Learn Acrobat XI The Easy Way\": {\"frequency\": 1, \"value\": \"Adobe Acrobat XI ...\"}, \"Make iPhone and iPad games in 1 hour without programming\": {\"frequency\": 1, \"value\": \"Make iPhone and ...\"}, \"Healthy EatingThe Five Element Way\": {\"frequency\": 1, \"value\": \"Healthy EatingThe ...\"}, \"High Payback Meetings for Startups - Managers - Team Leaders\": {\"frequency\": 1, \"value\": \"High Payback ...\"}, \"Flex 4.6 and AIR 3.0 New Features for Mobile Apps\": {\"frequency\": 1, \"value\": \"Flex 4.6 and AIR ...\"}, \"VFX Techniques: Creating Explosions with 3D Layers\": {\"frequency\": 1, \"value\": \"VFX Techniques: ...\"}, \"Creative, Serious and Playful Science of Android Apps\": {\"frequency\": 1, \"value\": \"Creative, Serious ...\"}, \"Up and Running with Google Apps Script\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"AutoCAD 2014 - 2D Fundamentals\": {\"frequency\": 1, \"value\": \"AutoCAD 2014 - 2D ...\"}, \"Hacking B2B SaaS Fundraising\": {\"frequency\": 1, \"value\": \"Hacking B2B SaaS ...\"}, \"Become an Affiliate Marketing Expert with ShoeMoney\": {\"frequency\": 1, \"value\": \"Become an ...\"}, \"Microeconomics\": {\"frequency\": 1, \"value\": \"Microeconomics\"}, \"How to add In App Purchases to your iPhone app the easy way\": {\"frequency\": 1, \"value\": \"How to add In App ...\"}, \"Step-by-Step WordPress: Basics and Beyond\": {\"frequency\": 1, \"value\": \"Step-by-Step ...\"}, \"Simplified Drupal Sites with Drush\": {\"frequency\": 1, \"value\": \"Simplified Drupal ...\"}, \"PowerPoint 2013: Office Certification Series\": {\"frequency\": 1, \"value\": \"PowerPoint 2013: ...\"}, \"Self Publishing Secrets\": {\"frequency\": 1, \"value\": \"Self Publishing ...\"}, \"Cleaning Up Your Excel Data\": {\"frequency\": 1, \"value\": \"Cleaning Up Your ...\"}, \"Start with a Theme: Twenty Thirteen\": {\"frequency\": 1, \"value\": \"Start with a ...\"}, \"Java for Complete Beginners\": {\"frequency\": 1, \"value\": \"Java for Complete ...\"}, \"Is Networking, Working for you? What you need to know\": {\"frequency\": 1, \"value\": \"Is Networking, ...\"}, \"Dynamic Destruction in UDK\": {\"frequency\": 1, \"value\": \"Dynamic ...\"}, \"Designing a Photo Book\": {\"frequency\": 1, \"value\": \"Designing a Photo ...\"}, \"Make Your Own Games for Web, Mobile and Desktop\": {\"frequency\": 1, \"value\": \"Make Your Own ...\"}, \"How Educators Can Teach with Twitter and iPads\": {\"frequency\": 1, \"value\": \"How Educators Can ...\"}, \"Shooting a Photo Essay: An Artist at Work\": {\"frequency\": 1, \"value\": \"Shooting a Photo ...\"}, \"The lynda.com Story\": {\"frequency\": 1, \"value\": \"The lynda.com ...\"}, \"A Young Entrepreneur's Guide To Start And Grow A Business\": {\"frequency\": 1, \"value\": \"A Young ...\"}, \"Photoshop for Designers: Textures\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"5 P's of Marketing\": {\"frequency\": 1, \"value\": \"5 P's of ...\"}, \"How to be a Young Innovator\": {\"frequency\": 1, \"value\": \"How to be a Young ...\"}, \"Overview of Vlans, Access-List & NAT + Bonus Material!\": {\"frequency\": 1, \"value\": \"Overview of Vlans, ...\"}, \"OneNote 2007 Essential Training\": {\"frequency\": 1, \"value\": \"OneNote 2007 ...\"}, \"The Lean Startup Talk at Stanford E-Corner\": {\"frequency\": 1, \"value\": \"The Lean Startup ...\"}, \"PowerPoint 2003 Essential Training\": {\"frequency\": 1, \"value\": \"PowerPoint 2003 ...\"}, \"Social Media Marketing for Businesses\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"Moodle 1.9 Essential Training for Students\": {\"frequency\": 1, \"value\": \"Moodle 1.9 ...\"}, \"Creating a Business Website with a Responsive Design\": {\"frequency\": 1, \"value\": \"Creating a ...\"}, \"Acrobat 9 Pro: Creating Forms\": {\"frequency\": 1, \"value\": \"Acrobat 9 Pro: ...\"}, \"Photoshop CS5: Selections in Depth\": {\"frequency\": 1, \"value\": \"Photoshop CS5: ...\"}, \"Texturing and Baking Game Assets in ZBrush, xNormal and nDo\": {\"frequency\": 1, \"value\": \"Texturing and ...\"}, \"Foundations of Video: Interviews\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Writing Fundamentals: The Craft of Story\": {\"frequency\": 1, \"value\": \"Writing ...\"}, \"Enhancing Digital Photography with Photoshop CS2\": {\"frequency\": 1, \"value\": \"Enhancing Digital ...\"}, \"Digital Publishing Suite Workshop\": {\"frequency\": 1, \"value\": \"Digital Publishing ...\"}, \"Bridge CS6 for Photographers\": {\"frequency\": 1, \"value\": \"Bridge CS6 for ...\"}, \"How to Develop a Sales Funnel for Your Small Business\": {\"frequency\": 1, \"value\": \"How to Develop a ...\"}, \"Value Centric Selling - How to Sell on Value, Not Price\": {\"frequency\": 1, \"value\": \"Value Centric ...\"}, \"Small Office Networking to Connect, Share, and Print\": {\"frequency\": 1, \"value\": \"Small Office ...\"}, \"Introduction to Philosophy - from Ancient Greece to Today\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Bert Monroy: The Making of Times Square, The Techniques\": {\"frequency\": 1, \"value\": \"Bert Monroy: The ...\"}, \"Thumbs rating system with jQuery, PHP and MySQL\": {\"frequency\": 1, \"value\": \"Thumbs rating ...\"}, \"Up and Running with Photoshop Elements 10\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Up and Running with Photoshop Elements 11\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Online Sports Registration: 101\": {\"frequency\": 1, \"value\": \"Online Sports ...\"}, \"Lync 2013 Introduction\": {\"frequency\": 1, \"value\": \"Lync 2013 ...\"}, \"iMovie '09 Essential Training\": {\"frequency\": 1, \"value\": \"iMovie '09 ...\"}, \"Texturing for Games in Maya, Mudbox, and Photoshop\": {\"frequency\": 1, \"value\": \"Texturing for ...\"}, \"Introduction to Adobe Audition CS6\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Learning LiveType\": {\"frequency\": 1, \"value\": \"Learning LiveType\"}, \"Learn how companies like Groupon write their copy\": {\"frequency\": 1, \"value\": \"Learn how ...\"}, \"Your iPad: The New Mobile Office\": {\"frequency\": 1, \"value\": \"Your iPad: The New ...\"}, \"Gain Weight, Build Muscle and Increase Energy\": {\"frequency\": 1, \"value\": \"Gain Weight, Build ...\"}, \"Work Like a Pro Photographer in Aperture 3\": {\"frequency\": 1, \"value\": \"Work Like a Pro ...\"}, \"Understanding HIPAA for the Medical Office\": {\"frequency\": 1, \"value\": \"Understanding ...\"}, \"WordPress:Quick & Easy VIDEO Way To Learn How To Use It\": {\"frequency\": 1, \"value\": \"WordPress:Quick ...\"}, \"How to Grow a Medicinal Food Forest\": {\"frequency\": 1, \"value\": \"How to Grow a ...\"}, \"New Manager Fundamentals\": {\"frequency\": 1, \"value\": \"New Manager ...\"}, \"iWeb '08 Essential Training\": {\"frequency\": 1, \"value\": \"iWeb '08 ...\"}, \"LightWave 3D v11.5\": {\"frequency\": 1, \"value\": \"LightWave 3D v11.5\"}, \"Yoga for Stress\": {\"frequency\": 1, \"value\": \"Yoga for Stress\"}, \"Developing Ideas and Design Concepts\": {\"frequency\": 1, \"value\": \"Developing Ideas ...\"}, \"Computer Architecture\": {\"frequency\": 1, \"value\": \"Computer ...\"}, \"Learning ActionScript in Flash MX\": {\"frequency\": 1, \"value\": \"Learning ...\"}, \"Learn Backbone.js + StackMob\": {\"frequency\": 1, \"value\": \"Learn Backbone.js ...\"}, \"Moodle Course Creation for Educators\": {\"frequency\": 1, \"value\": \"Moodle Course ...\"}, \"Vegas 6 Essential Training\": {\"frequency\": 1, \"value\": \"Vegas 6 Essential ...\"}, \"Mobile Apps Development without Coding,100 Tools Analysis\": {\"frequency\": 1, \"value\": \"Mobile Apps ...\"}, \"3DS Max 2014 Tutorial Video. 3DS Max For Beginners\": {\"frequency\": 1, \"value\": \"3DS Max 2014 ...\"}, \"Up and Running with SpeedGrade CC\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Photoshop CS6 Raw Workshop\": {\"frequency\": 1, \"value\": \"Photoshop CS6 Raw ...\"}, \"Family Photography: Taking and Sharing Great Photographs\": {\"frequency\": 1, \"value\": \"Family ...\"}, \"Motion: Principles of Motion Graphics\": {\"frequency\": 1, \"value\": \"Motion: Principles ...\"}, \"Building an Ecommerce Web Site Using Dreamweaver with PHP\": {\"frequency\": 1, \"value\": \"Building an ...\"}, \"Kindle Cash Conversion for Selling More Books\": {\"frequency\": 1, \"value\": \"Kindle Cash ...\"}, \"Introduction to Java Programming for Online Learners\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"The Perfect Health\": {\"frequency\": 1, \"value\": \"The Perfect Health\"}, \"Up and Running with Mac OS X Mountain Lion\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"You're Hired: How to Get a Job in Product Management\": {\"frequency\": 1, \"value\": \"You're Hired: ...\"}, \"CPE for CPAs EAs - Charitable Contributions Training 2013\": {\"frequency\": 1, \"value\": \"CPE for CPAs EAs - ...\"}, \"Photography Studio Lighting On A Budget\": {\"frequency\": 1, \"value\": \"Photography Studio ...\"}, \"Final Cut Pro 7 Essential Training\": {\"frequency\": 1, \"value\": \"Final Cut Pro 7 ...\"}, \"Create a HTML5 Game from Scratch\": {\"frequency\": 1, \"value\": \"Create a HTML5 ...\"}, \"Windows XP Essential Training\": {\"frequency\": 1, \"value\": \"Windows XP ...\"}, \"The Ultimate Guide on How to Become a Designer\": {\"frequency\": 1, \"value\": \"The Ultimate Guide ...\"}, \"CoffeeScript\": {\"frequency\": 1, \"value\": \"CoffeeScript\"}, \"The American Housing Finance System\": {\"frequency\": 1, \"value\": \"The American ...\"}, \"Bert Monroy: The Making of Times Square, The Tools\": {\"frequency\": 1, \"value\": \"Bert Monroy: The ...\"}, \"Publicity For Authors\": {\"frequency\": 1, \"value\": \"Publicity For ...\"}, \"Designing a New Learning Environment\": {\"frequency\": 1, \"value\": \"Designing a New ...\"}, \"Balanced Scorecard\": {\"frequency\": 1, \"value\": \"Balanced Scorecard\"}, \"WP e-Commerce for WordPress\": {\"frequency\": 1, \"value\": \"WP e-Commerce for ...\"}, \"Basics of Health Insurance\": {\"frequency\": 1, \"value\": \"Basics of Health ...\"}, \"Wireless Hacking and Security\": {\"frequency\": 1, \"value\": \"Wireless Hacking ...\"}, \"Algorithms: Design and Analysis, Part 1\": {\"frequency\": 1, \"value\": \"Algorithms: Design ...\"}, \"U.S. Criminal Law\": {\"frequency\": 1, \"value\": \"U.S. Criminal Law\"}, \"Advanced Crystal Reports 2011 Training Video\": {\"frequency\": 1, \"value\": \"Advanced Crystal ...\"}, \"OneNote 2010 New Features\": {\"frequency\": 1, \"value\": \"OneNote 2010 New ...\"}, \"The US Constitution: A Biography\": {\"frequency\": 1, \"value\": \"The US ...\"}, \"PSD to HTML5/CSS3: Hand Code a Beautiful Website in 4-Hours!\": {\"frequency\": 1, \"value\": \"PSD to HTML5/CSS3: ...\"}, \"Premiere Pro CS5 New Features\": {\"frequency\": 1, \"value\": \"Premiere Pro CS5 ...\"}, \"Learning Photoshop 6\": {\"frequency\": 1, \"value\": \"Learning Photoshop ...\"}, \"The Basics of APIs\": {\"frequency\": 1, \"value\": \"The Basics of APIs\"}, \"Astronomy: Discovering the Universe (IntAstro)\": {\"frequency\": 1, \"value\": \"Astronomy: ...\"}, \"Flash MX 2004 Beyond the Basics\": {\"frequency\": 1, \"value\": \"Flash MX 2004 ...\"}, \"Up and Running with Premiere Elements 9\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Premiere Elements 8 for Windows Essential Training\": {\"frequency\": 1, \"value\": \"Premiere Elements ...\"}, \"24.00x: Introduction to Philosophy: God, Knowledge and Consciousness\": {\"frequency\": 1, \"value\": \"24.00x: ...\"}, \"Microsoft Project 2013\": {\"frequency\": 1, \"value\": \"Microsoft Project ...\"}, \"After Effects CS3: Animating Characters\": {\"frequency\": 1, \"value\": \"After Effects CS3: ...\"}, \"IT Troubleshooting Skill Training\": {\"frequency\": 1, \"value\": \"IT Troubleshooting ...\"}, \"Pro Tools 10 New Features\": {\"frequency\": 1, \"value\": \"Pro Tools 10 New ...\"}, \"Excel 2007: Pivot Tables for Data Analysis\": {\"frequency\": 1, \"value\": \"Excel 2007: Pivot ...\"}, \"WordPress Basics: How To Manage Your Website\": {\"frequency\": 1, \"value\": \"WordPress Basics: ...\"}, \"GoLive CS2 Essential Training\": {\"frequency\": 1, \"value\": \"GoLive CS2 ...\"}, \"How to Build an App Business - The App Code 2.0\": {\"frequency\": 1, \"value\": \"How to Build an ...\"}, \"Computational Photography\": {\"frequency\": 1, \"value\": \"Computational ...\"}, \"Heterogeneous Parallel Programming\": {\"frequency\": 1, \"value\": \"Heterogeneous ...\"}, \"Information Security and Risk Management in Context\": {\"frequency\": 1, \"value\": \"Information ...\"}, \"Focus on ESL Skills: Phrasal Verbs\": {\"frequency\": 1, \"value\": \"Focus on ESL ...\"}, \"The 5 IMMUTABLE Growth Principles for Every Small Business\": {\"frequency\": 1, \"value\": \"The 5 IMMUTABLE ...\"}, \"R Statistics Essential Training\": {\"frequency\": 1, \"value\": \"R Statistics ...\"}, \"HTML5 Projects: Engaging Ecommerce\": {\"frequency\": 1, \"value\": \"HTML5 Projects: ...\"}, \"Fireworks CS3 Essential Training\": {\"frequency\": 1, \"value\": \"Fireworks CS3 ...\"}, \"ELEC301x: Discrete Time Signals and Systems\": {\"frequency\": 1, \"value\": \"ELEC301x: Discrete ...\"}, \"MS Excel 2013 Basic-Intermediate Certified Training\": {\"frequency\": 1, \"value\": \"MS Excel 2013 ...\"}, \"Up and Running with Visio 2013\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Meditation: straightforward & unecumbered\": {\"frequency\": 1, \"value\": \"Meditation: ...\"}, \"Photoshop Foundations\": {\"frequency\": 1, \"value\": \"Photoshop ...\"}, \"Discover YOUR Formula for Success\": {\"frequency\": 1, \"value\": \"Discover YOUR ...\"}, \"Learn About Chemical Dependence\": {\"frequency\": 1, \"value\": \"Learn About ...\"}, \"Beyond Skin: Going Deeper with Photoshop CS3\": {\"frequency\": 1, \"value\": \"Beyond Skin: Going ...\"}, \"Brooke Shaden's Conceptual Photography: Start to Finish\": {\"frequency\": 1, \"value\": \"Brooke ...\"}, \"Social Entrepreneurship: An Introduction\": {\"frequency\": 1, \"value\": \"Social ...\"}, \"March MATHness\": {\"frequency\": 1, \"value\": \"March MATHness\"}, \"Java Database Integration with JDBC\": {\"frequency\": 1, \"value\": \"Java Database ...\"}, \"Sales Skills Fundamentals\": {\"frequency\": 1, \"value\": \"Sales Skills ...\"}, \"Outlook 2007 Power Shortcuts\": {\"frequency\": 1, \"value\": \"Outlook 2007 Power ...\"}, \"Flash Professional 8 Beyond the Basics\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Shooting and Processing Panoramas\": {\"frequency\": 1, \"value\": \"Shooting and ...\"}, \"Plein Air Essentials - Learn Basics of Plein Air Painting\": {\"frequency\": 1, \"value\": \"Plein Air ...\"}, \"CS50x: Introduction to Computer Science\": {\"frequency\": 1, \"value\": \"CS50x: ...\"}, \"Pitch for Success: Free Online Webinar\": {\"frequency\": 1, \"value\": \"Pitch for Success: ...\"}, \"Negotiation Fundamentals\": {\"frequency\": 1, \"value\": \"Negotiation ...\"}, \"Rick Morris, Motion Graphics Designer\": {\"frequency\": 1, \"value\": \"Rick Morris, ...\"}, \"Reinvent Yourself in 30 Days\": {\"frequency\": 1, \"value\": \"Reinvent Yourself ...\"}, \"Intro to Biohacking - Be Smarter, Stronger, and Happier\": {\"frequency\": 1, \"value\": \"Intro to ...\"}, \"The Art of Winning RFP's\": {\"frequency\": 1, \"value\": \"The Art of Winning ...\"}, \"1 hour corporate training - Coding for beginners\": {\"frequency\": 1, \"value\": \"1 hour corporate ...\"}, \"Thinking Like a Leader\": {\"frequency\": 1, \"value\": \"Thinking Like a ...\"}, \"Fast ForWord Support - Reading Readiness, 1, 2 and 3\": {\"frequency\": 1, \"value\": \"Fast ForWord ...\"}, \"Web Semantics\": {\"frequency\": 1, \"value\": \"Web Semantics\"}, \"Super-interactive, easy, fast introduction to SPREADSHEETS\": {\"frequency\": 1, \"value\": \"Super-interactive, ...\"}, \"EasyDSLR Digital Photography Course: Advanced\": {\"frequency\": 1, \"value\": \"EasyDSLR Digital ...\"}, \"Project Management Professional (PMP)\": {\"frequency\": 1, \"value\": \"Project Management ...\"}, \"Developing Applications for Amazon Kindle Devices\": {\"frequency\": 1, \"value\": \"Developing ...\"}, \"Upgrading from Office 2003 to Office 2010 - Essentials\": {\"frequency\": 1, \"value\": \"Upgrading from ...\"}, \"Kinetic Typography Techniques with After Effects\": {\"frequency\": 1, \"value\": \"Kinetic Typography ...\"}, \"Optimization & A/B Testing Statistics\": {\"frequency\": 1, \"value\": \"Optimization & ...\"}, \"Format Your Ebook For Kindle\": {\"frequency\": 1, \"value\": \"Format Your Ebook ...\"}, \"HACCP Food Safety Training\": {\"frequency\": 1, \"value\": \"HACCP Food Safety ...\"}, \"Medical Marijuana: Helpful or Harmful?\": {\"frequency\": 1, \"value\": \"Medical Marijuana: ...\"}, \"Access 2007 Introduction\": {\"frequency\": 1, \"value\": \"Access 2007 ...\"}, \"C++ in 1 hour\": {\"frequency\": 1, \"value\": \"C++ in 1 hour\"}, \"Microsoft Excel 2010 Advanced\": {\"frequency\": 2, \"value\": \"Microsoft Excel ...\"}, \"After Effects 7 and Photoshop CS2 Integration\": {\"frequency\": 1, \"value\": \"After Effects 7 ...\"}, \"Flash CS3 Professional Beyond the Basics\": {\"frequency\": 1, \"value\": \"Flash CS3 ...\"}, \"Final Cut Studio Overview\": {\"frequency\": 1, \"value\": \"Final Cut Studio ...\"}, \"Photoshop CS4 New Features\": {\"frequency\": 1, \"value\": \"Photoshop CS4 New ...\"}, \"Introduction to Microsoft Word 2010\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"The 21-Day Master Weight Loss Program\": {\"frequency\": 1, \"value\": \"The 21-Day Master ...\"}, \"Social Media for Trade Shows\": {\"frequency\": 1, \"value\": \"Social Media for ...\"}, \"Performance of Speaking: a Learnable set of Speaking Skills.\": {\"frequency\": 1, \"value\": \"Performance of ...\"}, \"FileMaker Pro 12 Essential Training\": {\"frequency\": 1, \"value\": \"FileMaker Pro 12 ...\"}, \"Learn Microsoft Outlook 2010\": {\"frequency\": 2, \"value\": \"Learn Microsoft ...\"}, \"iBooks Author for Teachers: Creating a Lab Manual\": {\"frequency\": 1, \"value\": \"iBooks Author for ...\"}, \"Drupal 7: Creating and Editing Custom Themes\": {\"frequency\": 1, \"value\": \"Drupal 7: Creating ...\"}, \"This Is How You Make iPhone Apps - iOS Development Course\": {\"frequency\": 1, \"value\": \"This Is How You ...\"}, \"iOS 7 App Development for Beginners\": {\"frequency\": 1, \"value\": \"iOS 7 App ...\"}, \"Premiere Pro CS6 New Features Overview\": {\"frequency\": 1, \"value\": \"Premiere Pro CS6 ...\"}, \"Becoming a Dynamic Educator\": {\"frequency\": 1, \"value\": \"Becoming a Dynamic ...\"}, \"How To Get Resellers To Sell More Of Your Products\": {\"frequency\": 1, \"value\": \"How To Get ...\"}, \"How to Publish Your First Kindle Book in 7 Days or Less\": {\"frequency\": 1, \"value\": \"How to Publish ...\"}, \"Learning to Learn\": {\"frequency\": 1, \"value\": \"Learning to Learn\"}, \"jQuery Projects\": {\"frequency\": 1, \"value\": \"jQuery Projects\"}, \"Pythonic Python Part I: The Basics\": {\"frequency\": 1, \"value\": \"Pythonic Python ...\"}, \"30 Day Yoga & Detox Diet Transformation System\": {\"frequency\": 1, \"value\": \"30 Day Yoga & ...\"}, \"Fear to Fantastic School Presentations\": {\"frequency\": 1, \"value\": \"Fear to Fantastic ...\"}, \"PHP and jQuery : two layered online form validation\": {\"frequency\": 1, \"value\": \"PHP and jQuery : ...\"}, \"Excel 2007: Financial Analysis\": {\"frequency\": 1, \"value\": \"Excel 2007: ...\"}, \"Lectures to Accompany Wheelock's Latin: Chapters 16-30\": {\"frequency\": 1, \"value\": \"Lectures to ...\"}, \"Video Foundations Course\": {\"frequency\": 1, \"value\": \"Video Foundations ...\"}, \"Fireworks CS6 Workshop\": {\"frequency\": 1, \"value\": \"Fireworks CS6 ...\"}, \"HTML Essential Training\": {\"frequency\": 1, \"value\": \"HTML Essential ...\"}, \"Faster Smarter Better (Ultimate Online Marketing Blueprint)\": {\"frequency\": 1, \"value\": \"Faster Smarter ...\"}, \"Building Business Relationships\": {\"frequency\": 1, \"value\": \"Building Business ...\"}, \"Access Your Genius with Richard Wilkins\": {\"frequency\": 1, \"value\": \"Access Your Genius ...\"}, \"QuickBooks Pro 2008 Essential Training\": {\"frequency\": 1, \"value\": \"QuickBooks Pro ...\"}, \"Introduction to Microsoft Excel\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"The Local Cash Machines\": {\"frequency\": 1, \"value\": \"The Local Cash ...\"}, \"Wufoo Ninja\": {\"frequency\": 1, \"value\": \"Wufoo Ninja\"}, \"InDesign CS5.5 New Features\": {\"frequency\": 1, \"value\": \"InDesign CS5.5 New ...\"}, \"OneNote 2013 Essential Training\": {\"frequency\": 1, \"value\": \"OneNote 2013 ...\"}, \"Fundamentals of Online Education: Planning and Application\": {\"frequency\": 1, \"value\": \"Fundamentals of ...\"}, \"Startup Attention and PR 101\": {\"frequency\": 1, \"value\": \"Startup Attention ...\"}, \"Build. Measure. Learn. Lean Startup SXSW 2012.\": {\"frequency\": 1, \"value\": \"Build. Measure. ...\"}, \"Photography Video Workflow: Final Cut Pro + Canon 5D Mark II\": {\"frequency\": 1, \"value\": \"Photography Video ...\"}, \"Adobe Illustrator CS6 for professional logo designers\": {\"frequency\": 1, \"value\": \"Adobe Illustrator ...\"}, \"Learn the Skill of Effective Mind Mapping\": {\"frequency\": 1, \"value\": \"Learn the Skill of ...\"}, \"Study Skills & Time Management for Students\": {\"frequency\": 1, \"value\": \"Study Skills & ...\"}, \"Encore CS4 Getting Started\": {\"frequency\": 1, \"value\": \"Encore CS4 Getting ...\"}, \"Narrative Portraiture: Foundations of Portraiture\": {\"frequency\": 1, \"value\": \"Narrative ...\"}, \"Encore CS5 New Features\": {\"frequency\": 1, \"value\": \"Encore CS5 New ...\"}, \"How to Build a CMS with PHP\": {\"frequency\": 1, \"value\": \"How to Build a CMS ...\"}, \"Mac OS X Mountain Lion Server Training Video\": {\"frequency\": 1, \"value\": \"Mac OS X Mountain ...\"}, \"How to Make Money Online: The Passive Income Business Plan\": {\"frequency\": 1, \"value\": \"How to Make Money ...\"}, \"HTML5 Projects: Customized Photo Cards\": {\"frequency\": 1, \"value\": \"HTML5 Projects: ...\"}, \"Bridge and Version Cue CS3 Essential Training\": {\"frequency\": 1, \"value\": \"Bridge and Version ...\"}, \"Game Theory\": {\"frequency\": 1, \"value\": \"Game Theory\"}, \"Digital Matte Painting Essentials 3: Tone\": {\"frequency\": 1, \"value\": \"Digital Matte ...\"}, \"Illustrator CS4 One-on-One: Advanced\": {\"frequency\": 1, \"value\": \"Illustrator CS4 ...\"}, \"PowerPoint 2008 for Mac Essential Training\": {\"frequency\": 1, \"value\": \"PowerPoint 2008 ...\"}, \"3ds Max 2009 Beyond the Basics\": {\"frequency\": 1, \"value\": \"3ds Max 2009 ...\"}, \"Climate Change\": {\"frequency\": 1, \"value\": \"Climate Change\"}, \"How to make a website: Dreamweaver HTML CSS Intro Course\": {\"frequency\": 1, \"value\": \"How to make a ...\"}, \"Become A Human Lie Detector\": {\"frequency\": 1, \"value\": \"Become A Human Lie ...\"}, \"Career Mind Mastery: Learn How To Get Your Dream Job\": {\"frequency\": 1, \"value\": \"Career Mind ...\"}, \"Building and Monetizing Game Apps for Android\": {\"frequency\": 1, \"value\": \"Building and ...\"}, \"Best Practices for Flash-based Banner Ads\": {\"frequency\": 1, \"value\": \"Best Practices for ...\"}, \"Attracting A Great Relationship\": {\"frequency\": 1, \"value\": \"Attracting A Great ...\"}, \"iOS SDK and SQLite: Building Data-Driven Apps\": {\"frequency\": 1, \"value\": \"iOS SDK and ...\"}, \"Lessons Learned from a First Time Author\": {\"frequency\": 1, \"value\": \"Lessons Learned ...\"}, \"Visio 2010 Essential Training\": {\"frequency\": 1, \"value\": \"Visio 2010 ...\"}, \"Final Cut Pro 5 Beyond the Basics\": {\"frequency\": 1, \"value\": \"Final Cut Pro 5 ...\"}, \"Running a Design Business: Starting Small\": {\"frequency\": 1, \"value\": \"Running a Design ...\"}, \"Soundbooth CS4 Essential Training\": {\"frequency\": 1, \"value\": \"Soundbooth CS4 ...\"}, \"Dysfunctional Families & How to Be a Better Parent\": {\"frequency\": 1, \"value\": \"Dysfunctional ...\"}, \"Pages Essential Training\": {\"frequency\": 1, \"value\": \"Pages Essential ...\"}, \"Lighting Asylum\": {\"frequency\": 1, \"value\": \"Lighting Asylum\"}, \"Programming Languages\": {\"frequency\": 2, \"value\": \"Programming ...\"}, \"Feeding your Little One: Nutrition for Infants & Toddlers\": {\"frequency\": 1, \"value\": \"Feeding your ...\"}, \"Visualizing Algebra (Entry Level Mathematics)\": {\"frequency\": 1, \"value\": \"Visualizing ...\"}, \"After Effects Artist in Action: Eran Stern's Broadcast Design\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"Pro Tools 8 Essential Training\": {\"frequency\": 1, \"value\": \"Pro Tools 8 ...\"}, \"Photoshop CS4 One-on-One: Advanced\": {\"frequency\": 1, \"value\": \"Photoshop CS4 One- ...\"}, \"How to Create an Internship Program\": {\"frequency\": 1, \"value\": \"How to Create an ...\"}, \"Designing a CD Cover\": {\"frequency\": 1, \"value\": \"Designing a CD ...\"}, \"Excel 2007 VBA\": {\"frequency\": 1, \"value\": \"Excel 2007 VBA\"}, \"PH278x: Human Health and Global Environmental Change\": {\"frequency\": 1, \"value\": \"PH278x: Human ...\"}, \"Time Management for Entrepreneurs\": {\"frequency\": 1, \"value\": \"Time Management ...\"}, \"Douglas Kirkland on Photography: Shooting with a Medium-Format Camera\": {\"frequency\": 1, \"value\": \"Douglas Kirkland ...\"}, \"Keynote 2 Essential Training\": {\"frequency\": 1, \"value\": \"Keynote 2 ...\"}, \"Graphic Design Secrets Revealed\": {\"frequency\": 1, \"value\": \"Graphic Design ...\"}, \"Outlook Web App (OWA) 2010 Essential Training\": {\"frequency\": 1, \"value\": \"Outlook Web App ...\"}, \"Coaching and Developing Employees\": {\"frequency\": 1, \"value\": \"Coaching and ...\"}, \"iPhone and iPod touch iOS 4 Essential Training\": {\"frequency\": 1, \"value\": \"iPhone and iPod ...\"}, \"Marketing Plan made easy!\": {\"frequency\": 1, \"value\": \"Marketing Plan ...\"}, \"How To Stop Smoking\": {\"frequency\": 1, \"value\": \"How To Stop ...\"}, \"Final Cut Pro X in 6 Easy Steps\": {\"frequency\": 1, \"value\": \"Final Cut Pro X in ...\"}, \"VBA & Macros: Part [2 of 2]\": {\"frequency\": 1, \"value\": \"VBA & Macros: ...\"}, \"How to build a simple Character Rig in Autodesk Maya?\": {\"frequency\": 1, \"value\": \"How to build a ...\"}, \"Build iPhone apps in 1 hour using Xcode\": {\"frequency\": 1, \"value\": \"Build iPhone apps ...\"}, \"The Fundamentals of Photo-Illustration in Photoshop\": {\"frequency\": 1, \"value\": \"The Fundamentals ...\"}, \"Photoshop CS6 for Photographers New Features\": {\"frequency\": 1, \"value\": \"Photoshop CS6 for ...\"}, \"Email Marketing Kickstart\": {\"frequency\": 1, \"value\": \"Email Marketing ...\"}, \"Job Search Boot Camp: GET HIRED!\": {\"frequency\": 1, \"value\": \"Job Search Boot ...\"}, \"Adobe After Effects CS5: Frequently Asked Questions\": {\"frequency\": 1, \"value\": \"Adobe After ...\"}, \"Option Spreads and Credit Spreads Bundle\": {\"frequency\": 1, \"value\": \"Option Spreads and ...\"}, \"Trade Show Samurai\": {\"frequency\": 1, \"value\": \"Trade Show Samurai\"}, \"Up and Running with Photoshop Elements 9\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Simple Contact Form with PHP\": {\"frequency\": 1, \"value\": \"Simple Contact ...\"}, \"HTML5 Mobile App Development with PhoneGap\": {\"frequency\": 1, \"value\": \"HTML5 Mobile App ...\"}, \"Poser 7 Essential Training\": {\"frequency\": 1, \"value\": \"Poser 7 Essential ...\"}, \"How to get the best out of eBay\": {\"frequency\": 1, \"value\": \"How to get the ...\"}, \"A Vampire in Photoshop\": {\"frequency\": 1, \"value\": \"A Vampire in ...\"}, \"Relationship Advice: How to STOP Fighting With Your Partner\": {\"frequency\": 1, \"value\": \"Relationship ...\"}, \"Compressor 4 Essential Training\": {\"frequency\": 1, \"value\": \"Compressor 4 ...\"}, \"Social Network Engagement\": {\"frequency\": 1, \"value\": \"Social Network ...\"}, \"Photography 101\": {\"frequency\": 1, \"value\": \"Photography 101\"}, \"Learn 4 truths that will change your life\": {\"frequency\": 1, \"value\": \"Learn 4 truths ...\"}, \"What the hell is Twitter?\": {\"frequency\": 1, \"value\": \"What the hell is ...\"}, \"Rails for Zombies 2\": {\"frequency\": 1, \"value\": \"Rails for Zombies ...\"}, \"Photoshop 7 Slices, Rollovers & Animation\": {\"frequency\": 1, \"value\": \"Photoshop 7 ...\"}, \"Japanese - KanaBeats - Hiragana and Katakana\": {\"frequency\": 1, \"value\": \"Japanese - ...\"}, \"Platform Yourself: How To Make It Big Using Social Media\": {\"frequency\": 1, \"value\": \"Platform Yourself: ...\"}, \"Introduction To Social Media In Education\": {\"frequency\": 1, \"value\": \"Introduction To ...\"}, \"SAFETY FUNCTION ACTION For Disaster Responders\": {\"frequency\": 1, \"value\": \"SAFETY FUNCTION ...\"}, \"How to Rapidly Create an Amazing Prototype\": {\"frequency\": 1, \"value\": \"How to Rapidly ...\"}, \"People Pictures\": {\"frequency\": 1, \"value\": \"People Pictures\"}, \"SW12x: China\": {\"frequency\": 1, \"value\": \"SW12x: China\"}, \"Adobe Illustrator CS6 Tutorial - Training Taught By Experts\": {\"frequency\": 1, \"value\": \"Adobe Illustrator ...\"}, \"Dustin Farrell's Time-Lapse Photography: Start to Finish\": {\"frequency\": 1, \"value\": \"Dustin ...\"}, \"CalebTheVideoMaker2 Database and MySQL Classes\": {\"frequency\": 1, \"value\": \"CalebTheVideoMaker ...\"}, \"Learning the After Effects Glow Plug-In\": {\"frequency\": 1, \"value\": \"Learning the After ...\"}, \"Up and Running with Premiere Elements 11\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Algorithms\": {\"frequency\": 1, \"value\": \"Algorithms\"}, \"Fundamentals of Excel for Business\": {\"frequency\": 1, \"value\": \"Fundamentals of ...\"}, \"Advanced HTML5 Tutorial for Web Developers\": {\"frequency\": 1, \"value\": \"Advanced HTML5 ...\"}, \"iOS 4 Web Applications with HTML5 and CSS3\": {\"frequency\": 1, \"value\": \"iOS 4 Web ...\"}, \"Introduction to Enterprise Architecture (EntrArch)\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Sex, Power, and the Law\": {\"frequency\": 1, \"value\": \"Sex, Power, and ...\"}, \"Fit for Life: The Science of Exercise\": {\"frequency\": 1, \"value\": \"Fit for Life: The ...\"}, \"How To Build A Killer Wordpress Blog\": {\"frequency\": 1, \"value\": \"How To Build A ...\"}, \"Fantasy and Science Fiction: The Human Mind, Our Modern World\": {\"frequency\": 1, \"value\": \"Fantasy and ...\"}, \"The Absolute Beginners Guide to Flash Photography\": {\"frequency\": 1, \"value\": \"The Absolute ...\"}, \"InDesign CS6: Interactive Documents\": {\"frequency\": 1, \"value\": \"InDesign CS6: ...\"}, \"Up and Running with Captivate 7\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Up and Running with Captivate 6\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Assembling Sass\": {\"frequency\": 1, \"value\": \"Assembling Sass\"}, \"Android Development for Beginners\": {\"frequency\": 1, \"value\": \"Android ...\"}, \"Drugs and the Brain\": {\"frequency\": 1, \"value\": \"Drugs and the ...\"}, \"On Camera: Video Lighting for the Web\": {\"frequency\": 1, \"value\": \"On Camera: Video ...\"}, \"Securing Digital Democracy\": {\"frequency\": 1, \"value\": \"Securing Digital ...\"}, \"Learn How to Create an Animated Promo Video in 1 Hour\": {\"frequency\": 1, \"value\": \"Learn How to ...\"}, \"Hacking Perception: Easy Card Tricks, and Cool Card Tricks!\": {\"frequency\": 1, \"value\": \"Hacking ...\"}, \"Flavours of Thought : Recipes for Fresh Thinking\": {\"frequency\": 1, \"value\": \"Flavours of ...\"}, \"QuickStart! - Adobe InDesign CC\": {\"frequency\": 1, \"value\": \"QuickStart! - ...\"}, \"Make Better Videos - Tips from a Professional Filmmaker\": {\"frequency\": 1, \"value\": \"Make Better Videos ...\"}, \"SharePoint 2007 Introduction\": {\"frequency\": 1, \"value\": \"SharePoint 2007 ...\"}, \"Social Media for Business\": {\"frequency\": 2, \"value\": \"Social Media for ...\"}, \"WordPress Plugins: SEO\": {\"frequency\": 1, \"value\": \"WordPress Plugins: ...\"}, \"Illustrator for Fashion Design: Creating Brushes\": {\"frequency\": 1, \"value\": \"Illustrator for ...\"}, \"Software Defined Networking\": {\"frequency\": 1, \"value\": \"Software Defined ...\"}, \"3ds Max 2010 Textures and Materials\": {\"frequency\": 1, \"value\": \"3ds Max 2010 ...\"}, \"FastMath Case Interview Preparation\": {\"frequency\": 1, \"value\": \"FastMath Case ...\"}, \"Managing Debt\": {\"frequency\": 1, \"value\": \"Managing Debt\"}, \"Improve Your Memory NOW: Easy Techniques\": {\"frequency\": 1, \"value\": \"Improve Your ...\"}, \"Learn To Program JavaScript (in ten easy steps)\": {\"frequency\": 1, \"value\": \"Learn To Program ...\"}, \"Advanced Flash 5\": {\"frequency\": 1, \"value\": \"Advanced Flash 5\"}, \"Divvy-Up for FileMaker 8\": {\"frequency\": 1, \"value\": \"Divvy-Up for ...\"}, \"Six Essential Steps to Successful Online Marketing\": {\"frequency\": 1, \"value\": \"Six Essential ...\"}, \"Compilers\": {\"frequency\": 1, \"value\": \"Compilers\"}, \"TOEFL iBT Speaking Online Preparation Course\": {\"frequency\": 1, \"value\": \"TOEFL iBT Speaking ...\"}, \"iMovie HD 6 + iDVD 6 Essential Training\": {\"frequency\": 1, \"value\": \"iMovie HD 6 + iDVD ...\"}, \"CS 107: Programming Paradigms\": {\"frequency\": 1, \"value\": \"CS 107: ...\"}, \"Essential Skills for Designers - Mastering the Pen Tool\": {\"frequency\": 1, \"value\": \"Essential Skills ...\"}, \"Scanning Techniques for Business and Home\": {\"frequency\": 1, \"value\": \"Scanning ...\"}, \"iWork '09 New Features\": {\"frequency\": 1, \"value\": \"iWork '09 New ...\"}, \"Is American Democracy Broken? Perspectives and Debates\": {\"frequency\": 1, \"value\": \"Is American ...\"}, \"Customer Referral Programs: What You Need To Know\": {\"frequency\": 1, \"value\": \"Customer Referral ...\"}, \"1 Hour CSS\": {\"frequency\": 1, \"value\": \"1 Hour CSS\"}, \"Maya Essentials 4: Creating Textures and Materials\": {\"frequency\": 1, \"value\": \"Maya Essentials 4: ...\"}, \"Up and Running with Windows Phone 8 Development\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"User Experience for the Web (WebUX)\": {\"frequency\": 1, \"value\": \"User Experience ...\"}, \"How to build a free A-Z e-commerce web store with Wordpress\": {\"frequency\": 1, \"value\": \"How to build a ...\"}, \"Modeling in Discreet 3ds max 6\": {\"frequency\": 1, \"value\": \"Modeling in ...\"}, \"Build Your Online Presence\": {\"frequency\": 1, \"value\": \"Build Your Online ...\"}, \"HTML5 Projects: Photo Card Titles\": {\"frequency\": 1, \"value\": \"HTML5 Projects: ...\"}, \"Modern Javascript: Develop and Design\": {\"frequency\": 1, \"value\": \"Modern Javascript: ...\"}, \"Mold / Mould: How to Improve Indoor Air Quality ?\": {\"frequency\": 1, \"value\": \"Mold / Mould: How ...\"}, \"Film Screenwriting: Writing and Business of Screenwriting\": {\"frequency\": 1, \"value\": \"Film ...\"}, \"Publisher 2010 Essential Training\": {\"frequency\": 1, \"value\": \"Publisher 2010 ...\"}, \"Foundations of Audio: EQ and Filters\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Mastering Your iPhone\": {\"frequency\": 1, \"value\": \"Mastering Your ...\"}, \"Lightroom 4 New Features Overview\": {\"frequency\": 1, \"value\": \"Lightroom 4 New ...\"}, \"HTML5: Document Editing in Depth\": {\"frequency\": 1, \"value\": \"HTML5: Document ...\"}, \"Easy CSS with Sass\": {\"frequency\": 1, \"value\": \"Easy CSS with Sass\"}, \"InDesign CS2 Essential Training\": {\"frequency\": 1, \"value\": \"InDesign CS2 ...\"}, \"Up and Running with Python\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Learning Autodesk Maya 2014 - A Practical Hands On Course\": {\"frequency\": 1, \"value\": \"Learning Autodesk ...\"}, \"Joomla! 3 Essential Training\": {\"frequency\": 1, \"value\": \"Joomla! 3 ...\"}, \"The Art of Black and White Photography\": {\"frequency\": 1, \"value\": \"The Art of Black ...\"}, \"Migrating from FreeHand to Illustrator CS3\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Flash Professional CS5: Creating a Simple Game for Android Devices\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"SketchUp Tutorial Video - A Practical Course\": {\"frequency\": 1, \"value\": \"SketchUp Tutorial ...\"}, \"Comprehensive Forex Mastery Program\": {\"frequency\": 1, \"value\": \"Comprehensive ...\"}, \"Excel 2003 Essential Training\": {\"frequency\": 1, \"value\": \"Excel 2003 ...\"}, \"iWork Keynote Training\": {\"frequency\": 1, \"value\": \"iWork Keynote ...\"}, \"Linkedin Training Course\": {\"frequency\": 1, \"value\": \"Linkedin Training ...\"}, \"Getting Started with CorelDRAW Graphics Suite 12\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"FileMaker Pro 8.5 Beyond the Basics\": {\"frequency\": 1, \"value\": \"FileMaker Pro 8.5 ...\"}, \"Foundations of Audio: Delay and Modulation\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Become a TV Anchor\": {\"frequency\": 1, \"value\": \"Become a TV Anchor\"}, \"Facebook in 10 minutes per day\": {\"frequency\": 1, \"value\": \"Facebook in 10 ...\"}, \"Vue 6 xStream Essential Training\": {\"frequency\": 1, \"value\": \"Vue 6 xStream ...\"}, \"The PRO90D Speech System 2.0: How to Stop Stuttering\": {\"frequency\": 1, \"value\": \"The PRO90D Speech ...\"}, \"Real-World XML\": {\"frequency\": 1, \"value\": \"Real-World XML\"}, \"Sleep Hacking: Have More Energy, Spend Less Time in Bed\": {\"frequency\": 1, \"value\": \"Sleep Hacking: ...\"}, \"Find Me A Job: How to Score a Job Before Your Friends\": {\"frequency\": 1, \"value\": \"Find Me A Job: How ...\"}, \"Learning Adobe Audition CS6 The Easy Way\": {\"frequency\": 1, \"value\": \"Learning Adobe ...\"}, \"Become a Better Photographer - Part II\": {\"frequency\": 1, \"value\": \"Become a Better ...\"}, \"Joomla 2.5 Template Design\": {\"frequency\": 1, \"value\": \"Joomla 2.5 ...\"}, \"Create an Expandable FAQ Listing with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create an ...\"}, \"Learning CSS\": {\"frequency\": 1, \"value\": \"Learning CSS\"}, \"Before & After: Graphic Design Techniques\": {\"frequency\": 1, \"value\": \"Before & ...\"}, \"The CSS and CSS3 Crash Course\": {\"frequency\": 1, \"value\": \"The CSS and CSS3 ...\"}, \"Math is Everywhere: Applications of Finite Math\": {\"frequency\": 1, \"value\": \"Math is ...\"}, \"Visio 2010 Introduction\": {\"frequency\": 1, \"value\": \"Visio 2010 ...\"}, \"iPhoto '09: 10 Things to Know About Faces\": {\"frequency\": 1, \"value\": \"iPhoto '09: 10 ...\"}, \"How to create an online brand that gets you clients and jobs\": {\"frequency\": 1, \"value\": \"How to create an ...\"}, \"Get a VA, outsource your app business and get your life back\": {\"frequency\": 1, \"value\": \"Get a VA, ...\"}, \"APRV, BiLevel, BiVent\": {\"frequency\": 1, \"value\": \"APRV, BiLevel, ...\"}, \"Creating a Map with Illustrator\": {\"frequency\": 1, \"value\": \"Creating a Map ...\"}, \"Cinema 4D Crash Course\": {\"frequency\": 1, \"value\": \"Cinema 4D Crash ...\"}, \"Photoshop CS5\": {\"frequency\": 1, \"value\": \"Photoshop CS5\"}, \"Fast Track To Microsoft Powerpoint\": {\"frequency\": 1, \"value\": \"Fast Track To ...\"}, \"Auto Profit Income Mentor Program\": {\"frequency\": 1, \"value\": \"Auto Profit Income ...\"}, \"Artistic Concepts with Bert Monroy\": {\"frequency\": 1, \"value\": \"Artistic Concepts ...\"}, \"AJAX Crash Course by SitePoint\": {\"frequency\": 1, \"value\": \"AJAX Crash Course ...\"}, \"CCNA Security 2013 640-554 Video Boot Camp With Chris Bryant\": {\"frequency\": 1, \"value\": \"CCNA Security 2013 ...\"}, \"iPhone App Interface Design for Beginners\": {\"frequency\": 1, \"value\": \"iPhone App ...\"}, \"iOS Development for Beginners\": {\"frequency\": 1, \"value\": \"iOS Development ...\"}, \"Six Sigma Green Belt Training and Certification\": {\"frequency\": 1, \"value\": \"Six Sigma Green ...\"}, \"Learn To Apply Makeup Like a Pro\": {\"frequency\": 1, \"value\": \"Learn To Apply ...\"}, \"3D Video Game Development with Unity 3D\": {\"frequency\": 1, \"value\": \"3D Video Game ...\"}, \"Create Great Tutorials, Videos & Web Shows with ScreenFlow\": {\"frequency\": 1, \"value\": \"Create Great ...\"}, \"HTML5 Projects: Personalized Ads\": {\"frequency\": 1, \"value\": \"HTML5 Projects: ...\"}, \"Microsoft Word 2010 Beginner\": {\"frequency\": 1, \"value\": \"Microsoft Word ...\"}, \"Ready to work in Microsoft Excel, Word, and Outlook\": {\"frequency\": 1, \"value\": \"Ready to work in ...\"}, \"Creative Quick Tips\": {\"frequency\": 1, \"value\": \"Creative Quick ...\"}, \"C# Tutorial For Beginners\": {\"frequency\": 1, \"value\": \"C# Tutorial For ...\"}, \"Building Facebook Applications with PHP and MySQL\": {\"frequency\": 1, \"value\": \"Building Facebook ...\"}, \"Advanced Photoshop 6\": {\"frequency\": 1, \"value\": \"Advanced Photoshop ...\"}, \"Learn How To Get Your Book On CreateSpace\": {\"frequency\": 1, \"value\": \"Learn How To Get ...\"}, \"Routing Video Mentor\": {\"frequency\": 1, \"value\": \"Routing Video ...\"}, \"Java - Make it your cup of Coffee\": {\"frequency\": 1, \"value\": \"Java - Make it ...\"}, \"Organizational Culture Change: Create Success with OCAI\": {\"frequency\": 1, \"value\": \"Organizational ...\"}, \"Light and Texture for Product Visualization in modo\": {\"frequency\": 1, \"value\": \"Light and Texture ...\"}, \"Building Mobile Apps for Multiple Devices with Flash Professional\": {\"frequency\": 1, \"value\": \"Building Mobile ...\"}, \"WordPress.com 2.7 Essential Training\": {\"frequency\": 1, \"value\": \"WordPress.com 2.7 ...\"}, \"Financial Modeling\": {\"frequency\": 1, \"value\": \"Financial Modeling\"}, \"ActionScript 3.0 in Flash Professional CS5 Essential Training\": {\"frequency\": 1, \"value\": \"ActionScript 3.0 ...\"}, \"Access 2007 Power Shortcuts\": {\"frequency\": 1, \"value\": \"Access 2007 Power ...\"}, \"Illustrator CS3 and Flash CS3 Professional Integration\": {\"frequency\": 1, \"value\": \"Illustrator CS3 ...\"}, \"Read SEC Filings\": {\"frequency\": 1, \"value\": \"Read SEC Filings\"}, \"Flash Professional CS5 Essential Training\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"After Effects CS5.5 New Features\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"Excel 2007: Macros in Depth\": {\"frequency\": 1, \"value\": \"Excel 2007: Macros ...\"}, \"Now What?\": {\"frequency\": 1, \"value\": \"Now What?\"}, \"HTML5 for Flash Developers\": {\"frequency\": 1, \"value\": \"HTML5 for Flash ...\"}, \"SQL Essential Training\": {\"frequency\": 1, \"value\": \"SQL Essential ...\"}, \"Solar Cells, Fuel Cells, & Batteries\": {\"frequency\": 1, \"value\": \"Solar Cells, Fuel ...\"}, \"Xcode 4 New Features\": {\"frequency\": 1, \"value\": \"Xcode 4 New ...\"}, \"The Ultimate Mystery Writing Course for Kids\": {\"frequency\": 1, \"value\": \"The Ultimate ...\"}, \"Celebrity Fashion Stylist: Fashion and Styling the Famous\": {\"frequency\": 1, \"value\": \"Celebrity Fashion ...\"}, \"Evernote For Online Marketers\": {\"frequency\": 1, \"value\": \"Evernote For ...\"}, \"Gentle Yoga to Relax, Nourish, and Center Your Self\": {\"frequency\": 1, \"value\": \"Gentle Yoga to ...\"}, \"Photoshop CS6 Selections and Layer Masking Workshop\": {\"frequency\": 1, \"value\": \"Photoshop CS6 ...\"}, \"Barry Method on a Gravity System\": {\"frequency\": 1, \"value\": \"Barry Method on a ...\"}, \"Basic C# With Visual Studio 2013\": {\"frequency\": 1, \"value\": \"Basic C# With ...\"}, \"Artist in Action: Joseph Linaschke's Large Scale Black-and-White Photographs\": {\"frequency\": 1, \"value\": \"Artist in Action: ...\"}, \"Adobe Premiere Pro CS6 Tutorial - MasterClass Training\": {\"frequency\": 1, \"value\": \"Adobe Premiere Pro ...\"}, \"3DS Max Tutorial. Learn The Art of Modelling and Animation\": {\"frequency\": 1, \"value\": \"3DS Max Tutorial. ...\"}, \"Beginners - How To Create iPhone And iPad Apps - Zero Coding\": {\"frequency\": 1, \"value\": \"Beginners - How To ...\"}, \"How to Start Your Online Business From Scratch and Win\": {\"frequency\": 1, \"value\": \"How to Start Your ...\"}, \"Introduction to High Poly Modeling for Games in 3ds Max\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Excel 2007 Introduction\": {\"frequency\": 1, \"value\": \"Excel 2007 ...\"}, \"Getting Started with Corel Painter IX\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"SUCCESS TOOLS\": {\"frequency\": 1, \"value\": \"SUCCESS TOOLS\"}, \"First-Year University Spanish (Spanish MOOC)\": {\"frequency\": 1, \"value\": \"First-Year ...\"}, \"Fireworks CS5 Essential Training\": {\"frequency\": 1, \"value\": \"Fireworks CS5 ...\"}, \"UT.2.01x: Ideas of the Twentieth Century\": {\"frequency\": 1, \"value\": \"UT.2.01x: Ideas of ...\"}, \"Traveling With Your iPhone\": {\"frequency\": 1, \"value\": \"Traveling With ...\"}, \"3ds Max 2011: Particle Effects\": {\"frequency\": 1, \"value\": \"3ds Max 2011: ...\"}, \"Cake Decorating For Fun and Profit\": {\"frequency\": 1, \"value\": \"Cake Decorating ...\"}, \"Create Your Marketing Calendar: From Mayhem to Mastery\": {\"frequency\": 1, \"value\": \"Create Your ...\"}, \"iDVD '09 Essential Training\": {\"frequency\": 1, \"value\": \"iDVD '09 ...\"}, \"Public Speaking the Fearless Way\": {\"frequency\": 1, \"value\": \"Public Speaking ...\"}, \"How learning The 12 Universal Laws will change your life\": {\"frequency\": 1, \"value\": \"How learning The ...\"}, \"SEO For Content Creators\": {\"frequency\": 1, \"value\": \"SEO For Content ...\"}, \"Zero Marketing Budget Workshop\": {\"frequency\": 1, \"value\": \"Zero Marketing ...\"}, \"Up and Running with Flash Professional\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Add a Wraparound Effect for a Marquee with jQuery\": {\"frequency\": 1, \"value\": \"Add a Wraparound ...\"}, \"Pro Tools 8 New Features\": {\"frequency\": 1, \"value\": \"Pro Tools 8 New ...\"}, \"Intro to UV Unwrapping in Maya for Games\": {\"frequency\": 1, \"value\": \"Intro to UV ...\"}, \"Excel For Real Estate Bootcamp from REFM\": {\"frequency\": 1, \"value\": \"Excel For Real ...\"}, \"Food is Your Best Medicine\": {\"frequency\": 1, \"value\": \"Food is Your Best ...\"}, \"HTML5: Local Storage and Offline Applications in Depth\": {\"frequency\": 1, \"value\": \"HTML5: Local ...\"}, \"Self-Hosting a WordPress 2.7 Site\": {\"frequency\": 1, \"value\": \"Self-Hosting a ...\"}, \"Design the Web: Multiple Graphic Sizes\": {\"frequency\": 1, \"value\": \"Design the Web: ...\"}, \"Designing a Business Card\": {\"frequency\": 1, \"value\": \"Designing a ...\"}, \"Character Rigging in Discreet 3ds max 6\": {\"frequency\": 1, \"value\": \"Character Rigging ...\"}, \"Account Manager for FileMaker 8\": {\"frequency\": 1, \"value\": \"Account Manager ...\"}, \"Accounting Cycle: The Foundation of Business Measurement and Reporting\": {\"frequency\": 1, \"value\": \"Accounting Cycle: ...\"}, \"Algebra\": {\"frequency\": 1, \"value\": \"Algebra\"}, \"UT.3.01x: Age of Globalization\": {\"frequency\": 1, \"value\": \"UT.3.01x: Age of ...\"}, \"The Introvert's Edge\": {\"frequency\": 1, \"value\": \"The ...\"}, \"Excel For Project Managers\": {\"frequency\": 1, \"value\": \"Excel For Project ...\"}, \"Karl Taylor's FREE Photography Course\": {\"frequency\": 1, \"value\": \"Karl Taylor's ...\"}, \"Muse Power Workshop\": {\"frequency\": 1, \"value\": \"Muse Power ...\"}, \"Become a Certified Pharmacy Technician\": {\"frequency\": 1, \"value\": \"Become a Certified ...\"}, \"Learn how to make games from scratch with no programming\": {\"frequency\": 1, \"value\": \"Learn how to make ...\"}, \"Applied Math\": {\"frequency\": 1, \"value\": \"Applied Math\"}, \"Learn Microsoft Excel 2013\": {\"frequency\": 1, \"value\": \"Learn Microsoft ...\"}, \"Learn Microsoft Excel 2010\": {\"frequency\": 2, \"value\": \"Learn Microsoft ...\"}, \"Up and Running with Desire2Learn\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Building a Profitable Business Network\": {\"frequency\": 1, \"value\": \"Building a ...\"}, \"Design the Web: Slice Tool\": {\"frequency\": 1, \"value\": \"Design the Web: ...\"}, \"Audition CC Essential Training\": {\"frequency\": 1, \"value\": \"Audition CC ...\"}, \"Aperture 3 Essential Training (2012)\": {\"frequency\": 1, \"value\": \"Aperture 3 ...\"}, \"Creating Video Games With YLC lite\": {\"frequency\": 1, \"value\": \"Creating Video ...\"}, \"Learn 2D Multimedia Animation using Adobe Flash.\": {\"frequency\": 1, \"value\": \"Learn 2D ...\"}, \"Final Cut Pro Optimization and Troubleshooting\": {\"frequency\": 1, \"value\": \"Final Cut Pro ...\"}, \"ServiceNow Kickstart: On-Demand Training for ServiceNow\": {\"frequency\": 1, \"value\": \"ServiceNow ...\"}, \"Start a home based web design/development business EASY 123\": {\"frequency\": 1, \"value\": \"Start a home based ...\"}, \"6 Shortcuts to Powerful Persuasion\": {\"frequency\": 1, \"value\": \"6 Shortcuts to ...\"}, \"Photography for Kids: Project-Based Beginner Photography\": {\"frequency\": 1, \"value\": \"Photography for ...\"}, \"Microsoft Excel - Pivot Tables\": {\"frequency\": 1, \"value\": \"Microsoft Excel - ...\"}, \"Fun, Simple and Useful Math for Kids! (Part 6/6)\": {\"frequency\": 1, \"value\": \"Fun, Simple and ...\"}, \"AIR for Flex Developers (2008)\": {\"frequency\": 1, \"value\": \"AIR for Flex ...\"}, \"iPad Boot Camp\": {\"frequency\": 1, \"value\": \"iPad Boot Camp\"}, \"Eye-catching presentations using Microsoft PowerPoint 2010\": {\"frequency\": 1, \"value\": \"Eye-catching ...\"}, \"JQuery For Mobile Tutorial - Learning Made Easy\": {\"frequency\": 1, \"value\": \"JQuery For Mobile ...\"}, \"Optimizing Performance with After Effects and Premiere Pro\": {\"frequency\": 1, \"value\": \"Optimizing ...\"}, \"Texturing an Industrial Door with nDo for CryENGINE 3\": {\"frequency\": 1, \"value\": \"Texturing an ...\"}, \"Learn Acrobat XI\": {\"frequency\": 1, \"value\": \"Learn Acrobat XI\"}, \"Android SDK: Local Data Storage\": {\"frequency\": 1, \"value\": \"Android SDK: Local ...\"}, \"Develop iPhone and iPad apps with no programming experience\": {\"frequency\": 1, \"value\": \"Develop iPhone and ...\"}, \"Espresso Coffee Maker Secrets Disclosed\": {\"frequency\": 1, \"value\": \"Espresso Coffee ...\"}, \"Search Engine Marketing, Inc. I, II, III, and IV\": {\"frequency\": 1, \"value\": \"Search Engine ...\"}, \"An Introduction to Interactive Programming in Python\": {\"frequency\": 1, \"value\": \"An Introduction to ...\"}, \"Visual Basic for Microsoft Excel Tutorial\": {\"frequency\": 1, \"value\": \"Visual Basic for ...\"}, \"Up and Running with Cubase 7\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Learn How to Paint by Painting this Picture\": {\"frequency\": 1, \"value\": \"Learn How to Paint ...\"}, \"Creating a Vacation Video with iMovie\": {\"frequency\": 1, \"value\": \"Creating a ...\"}, \"Time-Lapse Photography Workshop\": {\"frequency\": 1, \"value\": \"Time-Lapse ...\"}, \"lynda.com Presents: AIGA\": {\"frequency\": 1, \"value\": \"lynda.com ...\"}, \"Introduction to Performance Based Equipment Training (PBET)\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Microsoft Excel - Level 2 - Essentials\": {\"frequency\": 1, \"value\": \"Microsoft Excel - ...\"}, \"PowerPoint 2013 Essential Training\": {\"frequency\": 1, \"value\": \"PowerPoint 2013 ...\"}, \"Before & After: Things Every Designer Should Know\": {\"frequency\": 1, \"value\": \"Before & ...\"}, \"Posing and Directing\": {\"frequency\": 1, \"value\": \"Posing and ...\"}, \"InDesign CS2 Print Project Workflow\": {\"frequency\": 1, \"value\": \"InDesign CS2 Print ...\"}, \"Creating a Hallway Scene with Photoshop\": {\"frequency\": 1, \"value\": \"Creating a Hallway ...\"}, \"Speed Intuition\": {\"frequency\": 1, \"value\": \"Speed Intuition\"}, \"PRINCE2 Foundation Course - Management Plaza\": {\"frequency\": 1, \"value\": \"PRINCE2 Foundation ...\"}, \"Developing a Healthy GPS (Guy Picking System)\": {\"frequency\": 1, \"value\": \"Developing a ...\"}, \"Building Templates in Word\": {\"frequency\": 1, \"value\": \"Building Templates ...\"}, \"Online Advertising Simplified\": {\"frequency\": 1, \"value\": \"Online Advertising ...\"}, \"Mac OS X Server 10.6 Snow Leopard: DNS and Network Services\": {\"frequency\": 1, \"value\": \"Mac OS X Server ...\"}, \"Python for Beginners\": {\"frequency\": 1, \"value\": \"Python for ...\"}, \"Photoshop CS6 for Photographers\": {\"frequency\": 2, \"value\": \"Photoshop CS6 for ...\"}, \"Film School On Demand - How to Make & Sell your First Movie\": {\"frequency\": 1, \"value\": \"Film School On ...\"}, \"The Art of Craft Photography\": {\"frequency\": 1, \"value\": \"The Art of Craft ...\"}, \"Create Animated Rollovers with jQuery\": {\"frequency\": 1, \"value\": \"Create Animated ...\"}, \"CSS: Core Concepts\": {\"frequency\": 1, \"value\": \"CSS: Core Concepts\"}, \"Fireworks CS6 Essential Training\": {\"frequency\": 1, \"value\": \"Fireworks CS6 ...\"}, \"Final Cut Studio 2: Chroma Keying\": {\"frequency\": 1, \"value\": \"Final Cut Studio ...\"}, \"Migrating from FreeHand to Illustrator CS2\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Careers Foundations\": {\"frequency\": 1, \"value\": \"Careers ...\"}, \"The Complete Web Developer\": {\"frequency\": 1, \"value\": \"The Complete Web ...\"}, \"Build an instantly updating dynamic website with jQuery/AJAX\": {\"frequency\": 1, \"value\": \"Build an instantly ...\"}, \"Computational Methods for Data Analysis\": {\"frequency\": 1, \"value\": \"Computational ...\"}, \"SAP HANA Training\": {\"frequency\": 1, \"value\": \"SAP HANA Training\"}, \"Build an Interactive Website\": {\"frequency\": 1, \"value\": \"Build an ...\"}, \"The Basics of PHP for Web Development\": {\"frequency\": 1, \"value\": \"The Basics of PHP ...\"}, \"Bliss Every Day\": {\"frequency\": 1, \"value\": \"Bliss Every Day\"}, \"Working with Files and the File API Standard\": {\"frequency\": 1, \"value\": \"Working with Files ...\"}, \"Developing a Marketing Strategy for Small Businesses\": {\"frequency\": 1, \"value\": \"Developing a ...\"}, \"iBooks Author Essential Training\": {\"frequency\": 1, \"value\": \"iBooks Author ...\"}, \"Corel Painter X3\": {\"frequency\": 1, \"value\": \"Corel Painter X3\"}, \"Up and Running with Evernote for Mac\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Laser Cutting\": {\"frequency\": 1, \"value\": \"Laser Cutting\"}, \"Silverlight 5 Essential Training\": {\"frequency\": 1, \"value\": \"Silverlight 5 ...\"}, \"Foundations of Photoshop\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Astrology - Masterclass on the British Royal Family\": {\"frequency\": 1, \"value\": \"Astrology - ...\"}, \"Exploring Quantum Physics\": {\"frequency\": 1, \"value\": \"Exploring Quantum ...\"}, \"Learn Android Programming From Scratch - Beta\": {\"frequency\": 1, \"value\": \"Learn Android ...\"}, \"How to Create Stunning & Effective Presentations with Prezi\": {\"frequency\": 1, \"value\": \"How to Create ...\"}, \"Killer Beginners PHP\": {\"frequency\": 1, \"value\": \"Killer Beginners ...\"}, \"Fast ForWord Support - Language v2 & Language to Reading\": {\"frequency\": 1, \"value\": \"Fast ForWord ...\"}, \"Excel 2010: Real-World Projects\": {\"frequency\": 1, \"value\": \"Excel 2010: Real- ...\"}, \"Photo Editing on the Cheap\": {\"frequency\": 1, \"value\": \"Photo Editing on ...\"}, \"How to Powerpoint\": {\"frequency\": 1, \"value\": \"How to Powerpoint\"}, \"Maya 2009 New Features\": {\"frequency\": 1, \"value\": \"Maya 2009 New ...\"}, \"Social Media Marketing for Startups\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"Mobile App Development Made Easy Using Corona SDK\": {\"frequency\": 1, \"value\": \"Mobile App ...\"}, \"HTML5 Power Workshop\": {\"frequency\": 1, \"value\": \"HTML5 Power ...\"}, \"How to Develop an Affiliate Program & Build a List\": {\"frequency\": 1, \"value\": \"How to Develop an ...\"}, \"Football Simplified\": {\"frequency\": 1, \"value\": \"Football ...\"}, \"Excel 2007: Business Statistics\": {\"frequency\": 1, \"value\": \"Excel 2007: ...\"}, \"Level Design Basics in Unity\": {\"frequency\": 1, \"value\": \"Level Design ...\"}, \"2010 SBIFF Directors' Panel: On Directing\": {\"frequency\": 1, \"value\": \"2010 SBIFF ...\"}, \"Acrobat X Tips and Tricks\": {\"frequency\": 1, \"value\": \"Acrobat X Tips and ...\"}, \"Photoshop CS Prepress Essentials\": {\"frequency\": 1, \"value\": \"Photoshop CS ...\"}, \"SAP SD Training\": {\"frequency\": 1, \"value\": \"SAP SD Training\"}, \"Build a Simple Website\": {\"frequency\": 1, \"value\": \"Build a Simple ...\"}, \"Objective C for iPhone-iPad App Programming\": {\"frequency\": 1, \"value\": \"Objective C for ...\"}, \"Video SEO Basics\": {\"frequency\": 1, \"value\": \"Video SEO Basics\"}, \"Facebook for Musicians and Bands\": {\"frequency\": 1, \"value\": \"Facebook for ...\"}, \"Getting Started Dreamweaver CS6 Build an HTML5 CSS3 website\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Modern European Mysticism and Psychological Thought\": {\"frequency\": 1, \"value\": \"Modern European ...\"}, \"Joomla! 1.7: Programming and Packaging Extensions\": {\"frequency\": 1, \"value\": \"Joomla! 1.7: ...\"}, \"Shooting with the Canon Rebel T3i (600D and Kiss X5)\": {\"frequency\": 1, \"value\": \"Shooting with the ...\"}, \"Adapting Novel to Screenplay\": {\"frequency\": 1, \"value\": \"Adapting Novel to ...\"}, \"Learn to be an Animator. Part 1. "Good habits"\": {\"frequency\": 1, \"value\": \"Learn to be an ...\"}, \"Pro Tools 11 Essential Training\": {\"frequency\": 1, \"value\": \"Pro Tools 11 ...\"}, \"Planet Earth\": {\"frequency\": 1, \"value\": \"Planet Earth\"}, \"Designing Gamification Level 1 (Certification)\": {\"frequency\": 1, \"value\": \"Designing ...\"}, \"Breakthrough to Exam Excellence (Free Introduction)\": {\"frequency\": 1, \"value\": \"Breakthrough to ...\"}, \"PHP and MySQL for Beginners\": {\"frequency\": 1, \"value\": \"PHP and MySQL for ...\"}, \"How To: Prom Makeup\": {\"frequency\": 1, \"value\": \"How To: Prom ...\"}, \"The YOU Plan for Career Change!\": {\"frequency\": 1, \"value\": \"The YOU Plan for ...\"}, \"Intro to UVW Unwrapping in 3ds Max for Games\": {\"frequency\": 1, \"value\": \"Intro to UVW ...\"}, \"SharePoint 2007 Essential Training\": {\"frequency\": 1, \"value\": \"SharePoint 2007 ...\"}, \"Getting Started with Muse\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Pain Free at Work\": {\"frequency\": 1, \"value\": \"Pain Free at Work\"}, \"Photoshop CS3 for Photographers\": {\"frequency\": 1, \"value\": \"Photoshop CS3 for ...\"}, \"Key2bFit - Toning for Women\": {\"frequency\": 1, \"value\": \"Key2bFit - Toning ...\"}, \"Unity 3D Master Class - Game Development For Beginners\": {\"frequency\": 1, \"value\": \"Unity 3D Master ...\"}, \"Harnessing the Power of Growth Stocks\": {\"frequency\": 1, \"value\": \"Harnessing the ...\"}, \"Greek and Roman Mythology\": {\"frequency\": 1, \"value\": \"Greek and Roman ...\"}, \"The Power of PreViz at BMW Group DesignworksUSA\": {\"frequency\": 1, \"value\": \"The Power of ...\"}, \"Yoga for Weight Loss by YogaDownload.com\": {\"frequency\": 1, \"value\": \"Yoga for Weight ...\"}, \"Create an Engaging Website with Twitter Bootstrap 2.x\": {\"frequency\": 1, \"value\": \"Create an Engaging ...\"}, \"InDesign Insider Training: Interactive PDFs\": {\"frequency\": 1, \"value\": \"InDesign Insider ...\"}, \"Theme Park Design\": {\"frequency\": 1, \"value\": \"Theme Park Design\"}, \"Better Work - Life Balance in 4 Steps\": {\"frequency\": 1, \"value\": \"Better Work - Life ...\"}, \"Hebrew For Beginners\": {\"frequency\": 1, \"value\": \"Hebrew For ...\"}, \"Front Desk Safety and Security\": {\"frequency\": 1, \"value\": \"Front Desk Safety ...\"}, \"Soundbooth CS5 Essential Training\": {\"frequency\": 1, \"value\": \"Soundbooth CS5 ...\"}, \"Up and Running with Adobe Media Encoder\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Principles of Obesity Economics\": {\"frequency\": 1, \"value\": \"Principles of ...\"}, \"iOS and Android HTML5 Apps for Beginners\": {\"frequency\": 1, \"value\": \"iOS and Android ...\"}, \"Options Foundation - Time Decay, Implied Volatility, Greeks\": {\"frequency\": 1, \"value\": \"Options Foundation ...\"}, \"Ian Lurie on SEO and Marketing in 2013\": {\"frequency\": 1, \"value\": \"Ian Lurie on SEO ...\"}, \"2D Character Animation with After Effects\": {\"frequency\": 1, \"value\": \"2D Character ...\"}, \"SharePoint Server 2013 Essential Training\": {\"frequency\": 1, \"value\": \"SharePoint Server ...\"}, \"iPhoto '11 Essential Training\": {\"frequency\": 1, \"value\": \"iPhoto '11 ...\"}, \"Illustrator CS6 One-on-One: Fundamentals\": {\"frequency\": 1, \"value\": \"Illustrator CS6 ...\"}, \"OEE101x: Our Energetic Earth\": {\"frequency\": 1, \"value\": \"OEE101x: Our ...\"}, \"Photoshop CS5: Landscape Photography\": {\"frequency\": 1, \"value\": \"Photoshop CS5: ...\"}, \"Quickbooks 2013 Training - Bookkeeping Made Easy\": {\"frequency\": 1, \"value\": \"Quickbooks 2013 ...\"}, \"Lightroom 4 Catalogs in Depth\": {\"frequency\": 1, \"value\": \"Lightroom 4 ...\"}, \"Foundations of Programming: Databases\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Unreal Development Kit Level Dressing - Essential skills 1\": {\"frequency\": 1, \"value\": \"Unreal Development ...\"}, \"Web Form Design Best Practices\": {\"frequency\": 1, \"value\": \"Web Form Design ...\"}, \"Write the Book inside you\": {\"frequency\": 1, \"value\": \"Write the Book ...\"}, \"Blackboard Essential Training\": {\"frequency\": 1, \"value\": \"Blackboard ...\"}, \"GSE1x: Unlocking the Immunity to Change: A New Approach to Personal Improvement\": {\"frequency\": 1, \"value\": \"GSE1x: Unlocking ...\"}, \"Creating a First Web Site with Flash CS4 Professional\": {\"frequency\": 1, \"value\": \"Creating a First ...\"}, \"Servlets and JSPs: Creating Web Applications With Java\": {\"frequency\": 1, \"value\": \"Servlets and JSPs: ...\"}, \"SAT Video Training: 15 Lessons to Master SAT Strategy\": {\"frequency\": 1, \"value\": \"SAT Video ...\"}, \"iDVD '08 Essential Training\": {\"frequency\": 1, \"value\": \"iDVD '08 ...\"}, \"PowerPoint for Mac 2011 Essential Training\": {\"frequency\": 1, \"value\": \"PowerPoint for Mac ...\"}, \"Outlook 2007: Effective Email Management\": {\"frequency\": 1, \"value\": \"Outlook 2007: ...\"}, \"Adobe Flash CC\": {\"frequency\": 1, \"value\": \"Adobe Flash CC\"}, \"Quality Management\": {\"frequency\": 1, \"value\": \"Quality Management\"}, \"ColdBox Platform Developer Week 2012\": {\"frequency\": 1, \"value\": \"ColdBox Platform ...\"}, \"CSS: Page Layouts\": {\"frequency\": 1, \"value\": \"CSS: Page Layouts\"}, \"A basic introduction to a fun yoga class for Kids\": {\"frequency\": 1, \"value\": \"A basic ...\"}, \"Adobe InDesign CS6 Tutorial - Beginners to Advanced Training\": {\"frequency\": 1, \"value\": \"Adobe InDesign CS6 ...\"}, \"Building Mobile Apps with Google Maps Android API v2\": {\"frequency\": 1, \"value\": \"Building Mobile ...\"}, \"The Strategy of Bargaining\": {\"frequency\": 1, \"value\": \"The Strategy of ...\"}, \"VLSI CAD: Logic to Layout\": {\"frequency\": 1, \"value\": \"VLSI CAD: Logic ...\"}, \"Interaction Design Fundamentals\": {\"frequency\": 1, \"value\": \"Interaction Design ...\"}, \"Learn Ruby on Rails from Scratch\": {\"frequency\": 1, \"value\": \"Learn Ruby on ...\"}, \"How to Create Top Ranking Mobile App Icons - iOS Edition\": {\"frequency\": 1, \"value\": \"How to Create Top ...\"}, \"8.MReVx: Mechanics ReView\": {\"frequency\": 1, \"value\": \"8.MReVx: Mechanics ...\"}, \"Exploring Engineering\": {\"frequency\": 1, \"value\": \"Exploring ...\"}, \"Digital Anarchy Demonstration\": {\"frequency\": 1, \"value\": \"Digital Anarchy ...\"}, \"Microsoft PowerPoint 2010 Beginner\": {\"frequency\": 1, \"value\": \"Microsoft ...\"}, \"Learn How to Utilize Informants in Retail Loss Prevention\": {\"frequency\": 1, \"value\": \"Learn How to ...\"}, \"Learn Flowcharting and Pseudocode. Be a better programmer!\": {\"frequency\": 1, \"value\": \"Learn Flowcharting ...\"}, \"Animated Character Design with Illustrator\": {\"frequency\": 1, \"value\": \"Animated Character ...\"}, \"Mobile Game Development with Flash CS6 and ActionScript 3.0\": {\"frequency\": 1, \"value\": \"Mobile Game ...\"}, \"MySQL Essential Training\": {\"frequency\": 1, \"value\": \"MySQL Essential ...\"}, \"Java Essential Training\": {\"frequency\": 1, \"value\": \"Java Essential ...\"}, \"C++: From Beginner to Expert\": {\"frequency\": 1, \"value\": \"C++: From Beginner ...\"}, \"tokidoki, Character Illustrator\": {\"frequency\": 1, \"value\": \"tokidoki, ...\"}, \"Installing SQL Server 2012\": {\"frequency\": 1, \"value\": \"Installing SQL ...\"}, \"ColdFusion 9 Essential Training\": {\"frequency\": 1, \"value\": \"ColdFusion 9 ...\"}, \"Premiere Pro CS4 Beyond the Basics\": {\"frequency\": 1, \"value\": \"Premiere Pro CS4 ...\"}, \"Photoshop Elements 8 for Windows Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"Defining Your Business for Success\": {\"frequency\": 1, \"value\": \"Defining Your ...\"}, \"Introduction to Pharmacy\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Javascript\": {\"frequency\": 1, \"value\": \"Javascript\"}, \"Python with eclipse and InfoSec (Lite version)\": {\"frequency\": 1, \"value\": \"Python with ...\"}, \"Computer Security\": {\"frequency\": 1, \"value\": \"Computer Security\"}, \"A/B Testing The Easy Way\": {\"frequency\": 1, \"value\": \"A/B Testing The ...\"}, \"WordPress + Canvas Theme + Woocommerce Nuts and Bolts\": {\"frequency\": 1, \"value\": \"WordPress + Canvas ...\"}, \"Photo Assignment: Backlit Portraits\": {\"frequency\": 1, \"value\": \"Photo Assignment: ...\"}, \"Population PK Modeling for Beginners\": {\"frequency\": 1, \"value\": \"Population PK ...\"}, \"Absolute HTML with Mom\": {\"frequency\": 1, \"value\": \"Absolute HTML with ...\"}, \"Intermittent Fasting for Maximal Weight Loss\": {\"frequency\": 1, \"value\": \"Intermittent ...\"}, \"Distributing Windows Store Apps\": {\"frequency\": 1, \"value\": \"Distributing ...\"}, \"Lens-Reversal Macro Photography\": {\"frequency\": 1, \"value\": \"Lens-Reversal ...\"}, \"Premiere Pro CS3 Essential Training\": {\"frequency\": 1, \"value\": \"Premiere Pro CS3 ...\"}, \"Interactive Data Visualization with Processing\": {\"frequency\": 1, \"value\": \"Interactive Data ...\"}, \"Up and Running with Lotus Notes\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Joomla 3.0 For Absolute Beginners\": {\"frequency\": 1, \"value\": \"Joomla 3.0 For ...\"}, \"Documentary Editing with Avid Media Composer\": {\"frequency\": 1, \"value\": \"Documentary ...\"}, \"Managing CPF Money For Your Retirement\": {\"frequency\": 1, \"value\": \"Managing CPF Money ...\"}, \"Create an Infinite Flyer Game With Construct 2 (HTML5)\": {\"frequency\": 1, \"value\": \"Create an Infinite ...\"}, \"Blogging Success Program\": {\"frequency\": 1, \"value\": \"Blogging Success ...\"}, \"Casting Director: All about Casting Directors and being Cast\": {\"frequency\": 1, \"value\": \"Casting Director: ...\"}, \"Hard Rock Guitar Improvising with Curt Mitchell\": {\"frequency\": 1, \"value\": \"Hard Rock Guitar ...\"}, \"Programming for Non-Programmers: iOS\": {\"frequency\": 1, \"value\": \"Programming for ...\"}, \"Up and Running with Prelude CS6\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"The Intuition Code\": {\"frequency\": 1, \"value\": \"The Intuition Code\"}, \"Photoshop CS6 One-on-One: Intermediate\": {\"frequency\": 1, \"value\": \"Photoshop CS6 One- ...\"}, \"Git Basics\": {\"frequency\": 1, \"value\": \"Git Basics\"}, \"Outlook 2010 Introduction\": {\"frequency\": 1, \"value\": \"Outlook 2010 ...\"}, \"Douglas Kirkland, Photographer\": {\"frequency\": 1, \"value\": \"Douglas Kirkland, ...\"}, \"04832430X: Electronic Circuits\": {\"frequency\": 1, \"value\": \"04832430X: ...\"}, \"Options Trading Basics (3-Course Bundle)\": {\"frequency\": 1, \"value\": \"Options Trading ...\"}, \"Learning Mac OS X 10.2 Jaguar\": {\"frequency\": 1, \"value\": \"Learning Mac OS X ...\"}, \"Jerry Uelsmann & Maggie Taylor: This is not photography\": {\"frequency\": 1, \"value\": \"Jerry Uelsmann ...\"}, \"Wine 101:Fun & Informative Intro to Wonderful World of Wine\": {\"frequency\": 1, \"value\": \"Wine 101:Fun & ...\"}, \"Design the Web: Smart Objects\": {\"frequency\": 1, \"value\": \"Design the Web: ...\"}, \"First Steps Online\": {\"frequency\": 1, \"value\": \"First Steps Online\"}, \"Adobe Photoshop CS6 Tutorial. Self-Paced and Easy to Follow\": {\"frequency\": 1, \"value\": \"Adobe Photoshop ...\"}, \"Up and Running with Office Web Apps\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"eBook Creation Tutorial The Art Of Successful Publishing\": {\"frequency\": 1, \"value\": \"eBook Creation ...\"}, \"Computer Essentials\": {\"frequency\": 1, \"value\": \"Computer ...\"}, \"PHP 5.4 New Features\": {\"frequency\": 1, \"value\": \"PHP 5.4 New ...\"}, \"College writing like a boss\": {\"frequency\": 1, \"value\": \"College writing ...\"}, \"Raising Money for Startups\": {\"frequency\": 1, \"value\": \"Raising Money for ...\"}, \"Mastering Crystal Reports 2011 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering Crystal ...\"}, \"Access 2010 Power Shortcuts\": {\"frequency\": 1, \"value\": \"Access 2010 Power ...\"}, \"Start with a Theme: Creative Portfolios in WordPress\": {\"frequency\": 1, \"value\": \"Start with a ...\"}, \"Play Ukulele Now\": {\"frequency\": 1, \"value\": \"Play Ukulele Now\"}, \"Designing Web Accessibility for a Beautiful Web\": {\"frequency\": 1, \"value\": \"Designing Web ...\"}, \"Managing CSS in Dreamweaver\": {\"frequency\": 1, \"value\": \"Managing CSS in ...\"}, \"Practical Photoshop CS5 Level 1\": {\"frequency\": 1, \"value\": \"Practical ...\"}, \"Getting Started as a Wedding and Event Planner\": {\"frequency\": 1, \"value\": \"Getting Started as ...\"}, \"Enviable Post-Baby Body and Mind\": {\"frequency\": 1, \"value\": \"Enviable Post-Baby ...\"}, \"SAP EDI Professional\": {\"frequency\": 1, \"value\": \"SAP EDI ...\"}, \"How to Make Killer Green Screen Videos\": {\"frequency\": 1, \"value\": \"How to Make Killer ...\"}, \"How to make an Ad-Game from scratch without programming\": {\"frequency\": 1, \"value\": \"How to make an Ad- ...\"}, \"2012 SBIFF Directors' Panel: Directors on Directing\": {\"frequency\": 1, \"value\": \"2012 SBIFF ...\"}, \"Up and Running with Studio One\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Adobe Illustrator CC Tutorial - Training Taught By Experts\": {\"frequency\": 1, \"value\": \"Adobe Illustrator ...\"}, \"Overcome the Power of Frustration\": {\"frequency\": 1, \"value\": \"Overcome the Power ...\"}, \"Access 2010: Forms and Reports in Depth\": {\"frequency\": 1, \"value\": \"Access 2010: Forms ...\"}, \"How to create a dynamic CMS website w/ mySQL PHP Dreamweaver\": {\"frequency\": 1, \"value\": \"How to create a ...\"}, \"Quality Paragraph and Essay Writing\": {\"frequency\": 1, \"value\": \"Quality Paragraph ...\"}, \"Mastering OneNote 2010 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering OneNote ...\"}, \"AI12.2x: Poetry in America: Whitman\": {\"frequency\": 1, \"value\": \"AI12.2x: Poetry in ...\"}, \"Podcasting - From Zero To Hero\": {\"frequency\": 1, \"value\": \"Podcasting - From ...\"}, \"Tracing Artwork with Illustrator\": {\"frequency\": 1, \"value\": \"Tracing Artwork ...\"}, \"English Pronunciation I: Consonant Sounds\": {\"frequency\": 1, \"value\": \"English ...\"}, \"Photoshop CS2 and Flash 8 Integration\": {\"frequency\": 1, \"value\": \"Photoshop CS2 and ...\"}, \"Get Upside Down: An Introduction to Basic Hand Balancing\": {\"frequency\": 1, \"value\": \"Get Upside Down: ...\"}, \"Commercial Editing Techniques with Final Cut Pro X\": {\"frequency\": 1, \"value\": \"Commercial Editing ...\"}, \"Microsoft Excel 2013 Course Beginners/ Intermediate Training\": {\"frequency\": 1, \"value\": \"Microsoft Excel ...\"}, \"Learning Jasc Paint Shop Power Suite Photo Edition\": {\"frequency\": 1, \"value\": \"Learning Jasc ...\"}, \"Avid Media Composer 5 Getting Started\": {\"frequency\": 1, \"value\": \"Avid Media ...\"}, \"Forrest Girl - Photoshop Retouching\": {\"frequency\": 1, \"value\": \"Forrest Girl - ...\"}, \"Photoshop Artist in Action: Uli Staiger's Skytrain\": {\"frequency\": 1, \"value\": \"Photoshop Artist ...\"}, \"Adobe InDesign CC Tutorial - Beginners to Advanced Tutorial\": {\"frequency\": 1, \"value\": \"Adobe InDesign CC ...\"}, \"Build an App Business\": {\"frequency\": 1, \"value\": \"Build an App ...\"}, \"The Marriage Between Marketing Materials And Strategies\": {\"frequency\": 1, \"value\": \"The Marriage ...\"}, \"Software Testing\": {\"frequency\": 2, \"value\": \"Software Testing\"}, \"Photo Restoration with Photoshop\": {\"frequency\": 1, \"value\": \"Photo Restoration ...\"}, \"2012 SBIFF Women's Panel: Women in the Biz\": {\"frequency\": 1, \"value\": \"2012 SBIFF ...\"}, \"Introduction to Entrepreneurship\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Design Thinking Action Lab\": {\"frequency\": 1, \"value\": \"Design Thinking ...\"}, \"Developing an Entrepreneurial Personality\": {\"frequency\": 1, \"value\": \"Developing an ...\"}, \"Migrating from Windows XP to Windows 8\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Migrating from Windows XP to Windows 7\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Windows 7 Essential Training\": {\"frequency\": 1, \"value\": \"Windows 7 ...\"}, \"Illustrator CS6 New Features Overview\": {\"frequency\": 1, \"value\": \"Illustrator CS6 ...\"}, \"Up and Running with Flash Media Server 4.5\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Adobe Connect Essential Training\": {\"frequency\": 1, \"value\": \"Adobe Connect ...\"}, \"Adobe Story Workshop\": {\"frequency\": 1, \"value\": \"Adobe Story ...\"}, \"Build a Simple PHP Application\": {\"frequency\": 1, \"value\": \"Build a Simple PHP ...\"}, \"How to run a web design business & sell $15,000 websites\": {\"frequency\": 1, \"value\": \"How to run a web ...\"}, \"TOEFL iBT Complete Online Preparation Course!\": {\"frequency\": 1, \"value\": \"TOEFL iBT Complete ...\"}, \"Create Animated Rollovers with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create Animated ...\"}, \"A Beginner's Jumpstart Guide to Photography\": {\"frequency\": 1, \"value\": \"A Beginner's ...\"}, \"Make Money Selling Domains (basics)\": {\"frequency\": 1, \"value\": \"Make Money Selling ...\"}, \"How to paint on silk to make beautiful things\": {\"frequency\": 1, \"value\": \"How to paint on ...\"}, \"Video Marketing for Profits\": {\"frequency\": 1, \"value\": \"Video Marketing ...\"}, \"Foundations of Psychology (IntroPsy)\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Photography Projects For A Rainy Weekend\": {\"frequency\": 1, \"value\": \"Photography ...\"}, \"Photoshop Elements 11 and Beyond Road to Great Pictures\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"CB22x: The Ancient Greek Hero\": {\"frequency\": 1, \"value\": \"CB22x: The Ancient ...\"}, \"Migrating from Excel 2008 for Mac to Excel 2011\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Photoshop CS5 Extended One-on-One: 3D Scenes\": {\"frequency\": 1, \"value\": \"Photoshop CS5 ...\"}, \"Illustrator CS3 One-on-One: Advanced Techniques\": {\"frequency\": 1, \"value\": \"Illustrator CS3 ...\"}, \"New Business Essentials for Startups and Entrepreneurs\": {\"frequency\": 1, \"value\": \"New Business ...\"}, \"CS1156x: Learning From Data\": {\"frequency\": 1, \"value\": \"CS1156x: Learning ...\"}, \"Create an Interactive Homepage Marquee with jQuery\": {\"frequency\": 1, \"value\": \"Create an ...\"}, \"The Creative Spark: Iyeoka, Recording Artist and Poet\": {\"frequency\": 1, \"value\": \"The Creative ...\"}, \"The 1-Minute Meditation\": {\"frequency\": 1, \"value\": \"The 1-Minute ...\"}, \"LSATMax\": {\"frequency\": 1, \"value\": \"LSATMax\"}, \"Singapore P6 Math Aug-2007 prelim problems w/solutions\": {\"frequency\": 1, \"value\": \"Singapore P6 Math ...\"}, \"Jazz Guitar: Learn the Fretboard\": {\"frequency\": 1, \"value\": \"Jazz Guitar: Learn ...\"}, \"Foundations of Audio: Compression and Dynamic Processing\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Oracle iSupplier Portal Fundamentals (Oracle EBS 12i)\": {\"frequency\": 1, \"value\": \"Oracle iSupplier ...\"}, \"Community Change in Public Health\": {\"frequency\": 1, \"value\": \"Community Change ...\"}, \"AI12.1x: Poetry in America: The Poetry of Early New England\": {\"frequency\": 1, \"value\": \"AI12.1x: Poetry in ...\"}, \"Restoring Photos with Photoshop CS6\": {\"frequency\": 1, \"value\": \"Restoring Photos ...\"}, \"WordPress: Creating Custom Widgets and Plugins with PHP\": {\"frequency\": 1, \"value\": \"WordPress: ...\"}, \"Social Network Analysis\": {\"frequency\": 1, \"value\": \"Social Network ...\"}, \"Foundations of Business Strategy\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"How to run an effective sales meeting\": {\"frequency\": 1, \"value\": \"How to run an ...\"}, \"Machine Learning\": {\"frequency\": 2, \"value\": \"Machine Learning\"}, \"Internet Marketing for Local Businesses\": {\"frequency\": 1, \"value\": \"Internet Marketing ...\"}, \"Rails Best Practices\": {\"frequency\": 1, \"value\": \"Rails Best ...\"}, \"Become A Successful YouTuber\": {\"frequency\": 1, \"value\": \"Become A ...\"}, \"Getting Started with modo 601\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Premiere Pro CS5 for Avid Editors\": {\"frequency\": 1, \"value\": \"Premiere Pro CS5 ...\"}, \"Sharper skills using Microsoft Excel 2010 for business\": {\"frequency\": 1, \"value\": \"Sharper skills ...\"}, \"REThink: The Future of Real Estate\": {\"frequency\": 1, \"value\": \"REThink: The ...\"}, \"Launching a Successful 21st Century Law Practice\": {\"frequency\": 1, \"value\": \"Launching a ...\"}, \"Master Final Cut Pro 7\": {\"frequency\": 1, \"value\": \"Master Final Cut ...\"}, \"Photo Assignment: Natural Light Portraits\": {\"frequency\": 1, \"value\": \"Photo Assignment: ...\"}, \"Understanding Fields & Interlacing in After Effects\": {\"frequency\": 1, \"value\": \"Understanding ...\"}, \"How to Train a Puppy\": {\"frequency\": 1, \"value\": \"How to Train a ...\"}, \"How To Build A Mobile App\": {\"frequency\": 1, \"value\": \"How To Build A ...\"}, \"Startup Hiring: How to Attract, Hire and Retain the Best People\": {\"frequency\": 1, \"value\": \"Startup Hiring: ...\"}, \"Web ReDesign: Strategies for Success\": {\"frequency\": 1, \"value\": \"Web ReDesign: ...\"}, \"AIDS\": {\"frequency\": 1, \"value\": \"AIDS\"}, \"Adobe Photoshop Lightroom 4 Tutorial\": {\"frequency\": 1, \"value\": \"Adobe Photoshop ...\"}, \"Introductory Human Physiology\": {\"frequency\": 1, \"value\": \"Introductory Human ...\"}, \"QuickBooks Pro 2013 Training\": {\"frequency\": 1, \"value\": \"QuickBooks Pro ...\"}, \"Animation and Matinee in UDK\": {\"frequency\": 1, \"value\": \"Animation and ...\"}, \"Property and Liability: An Introduction to Law and Economics\": {\"frequency\": 1, \"value\": \"Property and ...\"}, \"Up and Running with InCopy CS5\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"iOS 4: Building Data-Driven Applications\": {\"frequency\": 1, \"value\": \"iOS 4: Building ...\"}, \"Learn New Testament Greek\": {\"frequency\": 1, \"value\": \"Learn New ...\"}, \"Analysis of Everyday Things.\": {\"frequency\": 1, \"value\": \"Analysis of ...\"}, \"Learn The Pastry Arts - The World Of Cookies\": {\"frequency\": 1, \"value\": \"Learn The Pastry ...\"}, \"Customer Choice Modeling with R\": {\"frequency\": 1, \"value\": \"Customer Choice ...\"}, \"Introductory Microsoft Project 2007\": {\"frequency\": 1, \"value\": \"Introductory ...\"}, \"The Creative Spark: Von Glitschka, Illustrative Designer\": {\"frequency\": 1, \"value\": \"The Creative ...\"}, \"iPads: What everyone should know!\": {\"frequency\": 1, \"value\": \"iPads: What ...\"}, \"Nutrition and Physical Activity for Health\": {\"frequency\": 1, \"value\": \"Nutrition and ...\"}, \"Multilingual Publishing Strategies with InDesign\": {\"frequency\": 1, \"value\": \"Multilingual ...\"}, \"Transforming Education with Google - Gmail and Calendar\": {\"frequency\": 1, \"value\": \"Transforming ...\"}, \"Total Transformation : A New Diet-Free Weight-loss Solution\": {\"frequency\": 1, \"value\": \"Total ...\"}, \"Excel 2010 Intermediate\": {\"frequency\": 1, \"value\": \"Excel 2010 ...\"}, \"Modeling for Product Visualization in modo\": {\"frequency\": 1, \"value\": \"Modeling for ...\"}, \"ColdFusion MX Essential Training\": {\"frequency\": 1, \"value\": \"ColdFusion MX ...\"}, \"iPhone App Design: How To Make A Top-Selling iPhone App With Great Design\": {\"frequency\": 1, \"value\": \"iPhone App Design: ...\"}, \"WordPress Ecommerce: WooCommerce\": {\"frequency\": 1, \"value\": \"WordPress ...\"}, \"Learn 3D Digital Sculpting with Mudbox\": {\"frequency\": 1, \"value\": \"Learn 3D Digital ...\"}, \"Kids Coding - Beginner HTML\": {\"frequency\": 1, \"value\": \"Kids Coding - ...\"}, \"MCB80.1x: Fundamentals of Neuroscience, Part I\": {\"frequency\": 1, \"value\": \"MCB80.1x: ...\"}, \"Social Media Selling System\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"CSS: Frameworks and Grids\": {\"frequency\": 1, \"value\": \"CSS: Frameworks ...\"}, \"Speed Reading for Business. Improve your mind in 2 hours.\": {\"frequency\": 1, \"value\": \"Speed Reading for ...\"}, \"FileMaker Pro 8.5 New Features\": {\"frequency\": 1, \"value\": \"FileMaker Pro 8.5 ...\"}, \"Wordpress 101 For Beginners: Wordpress Basic Training Videos\": {\"frequency\": 1, \"value\": \"Wordpress 101 For ...\"}, \"Facebook:Masters Course Everything you Need and Should Know.\": {\"frequency\": 1, \"value\": \"Facebook:Masters ...\"}, \"Crystal Reports 2011 Essential Training\": {\"frequency\": 1, \"value\": \"Crystal Reports ...\"}, \"Excel 2010 Productivity\": {\"frequency\": 1, \"value\": \"Excel 2010 ...\"}, \"Create a Gorgeous Photography Site with SmugMug in 90 mins\": {\"frequency\": 1, \"value\": \"Create a Gorgeous ...\"}, \"Experimental Genome Science\": {\"frequency\": 1, \"value\": \"Experimental ...\"}, \"Building Your First Windows Store App with XAML and C#\": {\"frequency\": 1, \"value\": \"Building Your ...\"}, \"Learn Massage For Lovers, Friends And Family\": {\"frequency\": 1, \"value\": \"Learn Massage For ...\"}, \"How To Start an Online Business for Free\": {\"frequency\": 1, \"value\": \"How To Start an ...\"}, \"Social Media 101\": {\"frequency\": 1, \"value\": \"Social Media 101\"}, \"iPhoto '08 Essential Training\": {\"frequency\": 1, \"value\": \"iPhoto '08 ...\"}, \"Projects for Interactive Data Visualization with Processing\": {\"frequency\": 1, \"value\": \"Projects for ...\"}, \"Creating a Sports Highlight Reel with iMovie\": {\"frequency\": 1, \"value\": \"Creating a Sports ...\"}, \"Gentle Sleep Success Workshop\": {\"frequency\": 1, \"value\": \"Gentle Sleep ...\"}, \"2011 SBIFF Women's Panel: Creative Forces: Women in the Business\": {\"frequency\": 1, \"value\": \"2011 SBIFF ...\"}, \"Red Hat Certified Engineer (RHCE) - Exam EX300\": {\"frequency\": 1, \"value\": \"Red Hat Certified ...\"}, \"Up and Running with iBooks Author\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Astronomy - State of the Art\": {\"frequency\": 1, \"value\": \"Astronomy - State ...\"}, \"Sports and Society\": {\"frequency\": 1, \"value\": \"Sports and Society\"}, \"C Programming: iOS Development Starts Here!\": {\"frequency\": 1, \"value\": \"C Programming: iOS ...\"}, \"Up and Running with DSLR Filmmaking\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"M101J: MongoDB for Java Developers\": {\"frequency\": 1, \"value\": \"M101J: MongoDB for ...\"}, \"Adobe Photoshop Elements 11 Tutorial Video - Infinite Skills\": {\"frequency\": 1, \"value\": \"Adobe Photoshop ...\"}, \"Doyald Young, Logotype Designer\": {\"frequency\": 1, \"value\": \"Doyald Young, ...\"}, \"MODO 3D v701 Signature Courseware\": {\"frequency\": 1, \"value\": \"MODO 3D v701 ...\"}, \"Photoshop Photographic Effects\": {\"frequency\": 1, \"value\": \"Photoshop ...\"}, \"Revealed: Profitable Principles of Successful Traders\": {\"frequency\": 1, \"value\": \"Revealed: ...\"}, \"Think Again: How to Reason and Argue\": {\"frequency\": 1, \"value\": \"Think Again: How ...\"}, \"Just Chords Piano: Piano and Keyboard made easy\": {\"frequency\": 1, \"value\": \"Just Chords Piano: ...\"}, \"Windows 7 Tips and Tricks\": {\"frequency\": 1, \"value\": \"Windows 7 Tips and ...\"}, \"5 Days to a Mini-Membership Site\": {\"frequency\": 1, \"value\": \"5 Days to a Mini- ...\"}, \"Rooftop Freedom - Photoshop Retouching\": {\"frequency\": 1, \"value\": \"Rooftop Freedom - ...\"}, \"Dreamweaver 8 Essential Training\": {\"frequency\": 1, \"value\": \"Dreamweaver 8 ...\"}, \"The Creative Spark: Krista Donaldson, Social Innovation Designer\": {\"frequency\": 1, \"value\": \"The Creative ...\"}, \"Building and Monetizing Game Apps for iOS\": {\"frequency\": 1, \"value\": \"Building and ...\"}, \"ColdFusion Builder Essential Training\": {\"frequency\": 1, \"value\": \"ColdFusion Builder ...\"}, \"Oracle :: Getting Started\": {\"frequency\": 1, \"value\": \"Oracle :: Getting ...\"}, \"Screenwriting Fundamentals\": {\"frequency\": 1, \"value\": \"Screenwriting ...\"}, \"Discover How to Make Perfect Omelets Every Time\": {\"frequency\": 1, \"value\": \"Discover How to ...\"}, \"Create a Sortable Photo Gallery with jQuery\": {\"frequency\": 1, \"value\": \"Create a Sortable ...\"}, \"Business Analysis: Working with Use Cases\": {\"frequency\": 1, \"value\": \"Business Analysis: ...\"}, \"Word 2010: Mail Merge in Depth\": {\"frequency\": 1, \"value\": \"Word 2010: Mail ...\"}, \"Up and Running with Word 2010\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Yin Yoga\": {\"frequency\": 1, \"value\": \"Yin Yoga\"}, \"Automata\": {\"frequency\": 1, \"value\": \"Automata\"}, \"Introduction to Business\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"JavaScript Road Trip Part 2\": {\"frequency\": 1, \"value\": \"JavaScript Road ...\"}, \"Master Iron Condors - Double the credit for half the risk\": {\"frequency\": 1, \"value\": \"Master Iron ...\"}, \"JavaScript Road Trip Part 1\": {\"frequency\": 1, \"value\": \"JavaScript Road ...\"}, \"Apple Color Essential Training\": {\"frequency\": 1, \"value\": \"Apple Color ...\"}, \"Aboriginal Worldviews and Education\": {\"frequency\": 1, \"value\": \"Aboriginal ...\"}, \"Best Beginner Guitar Lessons by Sam Lyons\": {\"frequency\": 1, \"value\": \"Best Beginner ...\"}, \"Learn JavaScript Training from the Ground up\": {\"frequency\": 1, \"value\": \"Learn JavaScript ...\"}, \"Introduction to Ashtanga Yoga: Power, Breath and Control\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Eli the Computer Guy Collection\": {\"frequency\": 1, \"value\": \"Eli the Computer ...\"}, \"GarageBand '08 Essential Training\": {\"frequency\": 1, \"value\": \"GarageBand '08 ...\"}, \"Learning Adobe Premiere Pro CS6 Bootcamp with Dave Basulto\": {\"frequency\": 1, \"value\": \"Learning Adobe ...\"}, \"Office 2013 First Look\": {\"frequency\": 1, \"value\": \"Office 2013 First ...\"}, \"Tony Sweet's Visual Literacy\": {\"frequency\": 1, \"value\": \"Tony Sweet's ...\"}, \"Computer Literacy for the Mac\": {\"frequency\": 1, \"value\": \"Computer Literacy ...\"}, \"Solo Ad Success\": {\"frequency\": 1, \"value\": \"Solo Ad Success\"}, \"Brazil for Beginners\": {\"frequency\": 1, \"value\": \"Brazil for ...\"}, \"Up and Running with Illustrator\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"The Art of Less Doing - Make Everything in Life Easier\": {\"frequency\": 1, \"value\": \"The Art of Less ...\"}, \"Wordpress Essentials For Beginners\": {\"frequency\": 1, \"value\": \"Wordpress ...\"}, \"The Art of Acrylic Glazing with a Modern Master\": {\"frequency\": 1, \"value\": \"The Art of Acrylic ...\"}, \"Frankenstein\": {\"frequency\": 1, \"value\": \"Frankenstein\"}, \"Mac OS X Server 10.4 Tiger Essential Training\": {\"frequency\": 1, \"value\": \"Mac OS X Server ...\"}, \"How to Create a Passive Income Teaching Online for Beginners\": {\"frequency\": 1, \"value\": \"How to Create a ...\"}, \"Instant PayPal Profits\": {\"frequency\": 1, \"value\": \"Instant PayPal ...\"}, \"LSAT\": {\"frequency\": 1, \"value\": \"LSAT\"}, \"Photoshop CS5 for Photographers: Camera Raw 6\": {\"frequency\": 1, \"value\": \"Photoshop CS5 for ...\"}, \"How to Get into the Event Industry\": {\"frequency\": 1, \"value\": \"How to Get into ...\"}, \"The 101% Brand: How Your Corporate Culture Creates Your Brand\": {\"frequency\": 1, \"value\": \"The 101% Brand: ...\"}, \"CINEMA 4D: Designing a Promo\": {\"frequency\": 1, \"value\": \"CINEMA 4D: ...\"}, \"Beowulf\": {\"frequency\": 1, \"value\": \"Beowulf\"}, \"Maya Essentials 2: Polygonal Modeling Techniques\": {\"frequency\": 1, \"value\": \"Maya Essentials 2: ...\"}, \"Dreamweaver CS4 with CSS Essential Training\": {\"frequency\": 1, \"value\": \"Dreamweaver CS4 ...\"}, \"WordPress.com Essential Training\": {\"frequency\": 1, \"value\": \"WordPress.com ...\"}, \"Photoshop Creative Cloud Updates\": {\"frequency\": 1, \"value\": \"Photoshop Creative ...\"}, \"Mastering Adobe Photoshop Filters\": {\"frequency\": 1, \"value\": \"Mastering Adobe ...\"}, \"American Civics\": {\"frequency\": 1, \"value\": \"American Civics\"}, \"A Young Entrepreneur's Guide To Growing A Business: Part 2\": {\"frequency\": 1, \"value\": \"A Young ...\"}, \"WordPress Essentials for Business\": {\"frequency\": 1, \"value\": \"WordPress ...\"}, \"Biotech Basics\": {\"frequency\": 1, \"value\": \"Biotech Basics\"}, \"Beginners Ruby Programming Training - No Experience Required\": {\"frequency\": 1, \"value\": \"Beginners Ruby ...\"}, \"Running A Dojo\": {\"frequency\": 1, \"value\": \"Running A Dojo\"}, \"Building PDFs with Acrobat XI\": {\"frequency\": 1, \"value\": \"Building PDFs with ...\"}, \"Leading Productive Meetings\": {\"frequency\": 1, \"value\": \"Leading Productive ...\"}, \"Up and Running with Trapcode Form\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"View Source\": {\"frequency\": 1, \"value\": \"View Source\"}, \"Mathematical Biostatistics Boot Camp 1\": {\"frequency\": 1, \"value\": \"Mathematical ...\"}, \"Commercial Editing Techniques with Premiere Pro\": {\"frequency\": 1, \"value\": \"Commercial Editing ...\"}, \"Moodle 2.1 Essential Training for Students\": {\"frequency\": 1, \"value\": \"Moodle 2.1 ...\"}, \"iPhone & iPad Development for Beginners\": {\"frequency\": 1, \"value\": \"iPhone & iPad ...\"}, \"Photoshop CC One-on-One: Advanced\": {\"frequency\": 1, \"value\": \"Photoshop CC One- ...\"}, \"How to avoid screwing up your kids\": {\"frequency\": 1, \"value\": \"How to avoid ...\"}, \"C# Essential Training\": {\"frequency\": 1, \"value\": \"C# Essential ...\"}, \"Final Cut X Basics\": {\"frequency\": 1, \"value\": \"Final Cut X Basics\"}, \"Getting in the Zone\": {\"frequency\": 1, \"value\": \"Getting in the ...\"}, \"Email Marketing For Bloggers - Easy Beginners Edition\": {\"frequency\": 1, \"value\": \"Email Marketing ...\"}, \"The Complete Guide to Wedding Videography\": {\"frequency\": 1, \"value\": \"The Complete Guide ...\"}, \"Education in a Changing World (EduChnge)\": {\"frequency\": 1, \"value\": \"Education in a ...\"}, \"Career Mind Mastery: Interview Success Blueprint\": {\"frequency\": 1, \"value\": \"Career Mind ...\"}, \"Learn Step-by-Step How to Build a Smart Home System\": {\"frequency\": 1, \"value\": \"Learn Step-by-Step ...\"}, \"AdSense Optimization for your Website or Blog\": {\"frequency\": 1, \"value\": \"AdSense ...\"}, \"Copywriting 101: Start making money from home!\": {\"frequency\": 1, \"value\": \"Copywriting 101: ...\"}, \"Photoshop Elements 11 Essentials: 04 Creative Effects and Projects\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"WordPress Security - Secure WordPress, Stop Hackers\": {\"frequency\": 1, \"value\": \"WordPress Security ...\"}, \"PHP and MySQL\": {\"frequency\": 1, \"value\": \"PHP and MySQL\"}, \"From Mediocre to Millions: Set prices that produce profits\": {\"frequency\": 1, \"value\": \"From Mediocre to ...\"}, \"Shooting with the Nikon D5100\": {\"frequency\": 1, \"value\": \"Shooting with the ...\"}, \"Setting Up Your Mobile Office to Work from Anywhere\": {\"frequency\": 1, \"value\": \"Setting Up Your ...\"}, \"Introduction to Flash CS5\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Authentication from Scratch with PHP and MySQL\": {\"frequency\": 1, \"value\": \"Authentication ...\"}, \"E-learning and Digital Cultures\": {\"frequency\": 1, \"value\": \"E-learning and ...\"}, \"Enter your Business successfully in LATIN countries!\": {\"frequency\": 1, \"value\": \"Enter your ...\"}, \"Creating Product Shots in modo\": {\"frequency\": 1, \"value\": \"Creating Product ...\"}, \"Titanium Mobile App Development Essential Training\": {\"frequency\": 1, \"value\": \"Titanium Mobile ...\"}, \"Up and Running with Adobe Digital Publishing Suite\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Simple News Coverage Strategies\": {\"frequency\": 1, \"value\": \"Simple News ...\"}, \"Dreamweaver CS6 Build HTML5 CSS3 multi-device fluid web apps\": {\"frequency\": 1, \"value\": \"Dreamweaver CS6 ...\"}, \"Drafting Social Media Policies\": {\"frequency\": 1, \"value\": \"Drafting Social ...\"}, \"Discover The 1 Thing You Were Born To Do In 5 Easy Steps!\": {\"frequency\": 1, \"value\": \"Discover The 1 ...\"}, \"Confirmation dialog / message with jQuery\": {\"frequency\": 1, \"value\": \"Confirmation ...\"}, \"Encore DVD 2.0 Essential Training\": {\"frequency\": 1, \"value\": \"Encore DVD 2.0 ...\"}, \"Creating and Texturing a Fantasy Shield with dDo\": {\"frequency\": 1, \"value\": \"Creating and ...\"}, \"Managing Content in WordPress\": {\"frequency\": 1, \"value\": \"Managing Content ...\"}, \"Artistic Painting with Illustrator: Object-Creation Brushes\": {\"frequency\": 1, \"value\": \"Artistic Painting ...\"}, \"Ruby Bits\": {\"frequency\": 1, \"value\": \"Ruby Bits\"}, \"VUVOX Collage: Online Media Mashups\": {\"frequency\": 1, \"value\": \"VUVOX Collage: ...\"}, \"UT.4.01x: Take Your Medicine - The Impact of Drug Development\": {\"frequency\": 1, \"value\": \"UT.4.01x: Take ...\"}, \"Introductory Algebra Review\": {\"frequency\": 1, \"value\": \"Introductory ...\"}, \"Learn to create beautiful web interfaces and logos\": {\"frequency\": 1, \"value\": \"Learn to create ...\"}, \"Melodyne Advanced Techniques\": {\"frequency\": 1, \"value\": \"Melodyne Advanced ...\"}, \"iOS App Development with Xcode: A Project-Based Approach\": {\"frequency\": 1, \"value\": \"iOS App ...\"}, \"Learn to Sell on eBay\": {\"frequency\": 1, \"value\": \"Learn to Sell on ...\"}, \"Flex 4.5 and PHP: Creating Data-Driven Applications\": {\"frequency\": 1, \"value\": \"Flex 4.5 and PHP: ...\"}, \"Integrating Social Media with F2F Customer Service\": {\"frequency\": 1, \"value\": \"Integrating Social ...\"}, \"How to Build a Million Dollar Company from Scratch\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"Learn Photoshop Elements 11\": {\"frequency\": 1, \"value\": \"Learn Photoshop ...\"}, \"Ruby on Rails Beyond the Basics (2007)\": {\"frequency\": 1, \"value\": \"Ruby on Rails ...\"}, \"Accountable Talk: Conversation that Works\": {\"frequency\": 1, \"value\": \"Accountable Talk: ...\"}, \"Introducing the JavaScript Language\": {\"frequency\": 1, \"value\": \"Introducing the ...\"}, \"Foundations of Animation\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"TIMRAW\": {\"frequency\": 1, \"value\": \"TIMRAW\"}, \"Lightroom 5 Essentials: 04 Develop Module Advanced Techniques\": {\"frequency\": 1, \"value\": \"Lightroom 5 ...\"}, \"CompTIA Network+ N10-005\": {\"frequency\": 1, \"value\": \"CompTIA Network+ ...\"}, \"Deke's Techniques: 2011\": {\"frequency\": 1, \"value\": \"Deke's ...\"}, \"Introduction to Music Production\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"A4 Reference for ITIL Edition 2011: Foundation Level\": {\"frequency\": 1, \"value\": \"A4 Reference for ...\"}, \"Adobe Acrobat XI - Creating Professional, Interactive Forms\": {\"frequency\": 1, \"value\": \"Adobe Acrobat XI - ...\"}, \"Audio for Film and Video with Pro Tools\": {\"frequency\": 1, \"value\": \"Audio for Film and ...\"}, \"Prove It! Testimonials That Sell\": {\"frequency\": 1, \"value\": \"Prove It! ...\"}, \"8.01x: Classical Mechanics\": {\"frequency\": 1, \"value\": \"8.01x: Classical ...\"}, \"Mastering Your Resume Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering Your ...\"}, \"FileMaker Pro 7 Essential Training\": {\"frequency\": 1, \"value\": \"FileMaker Pro 7 ...\"}, \"How to Get Job Interview Action by Building Your Foundation\": {\"frequency\": 1, \"value\": \"How to Get Job ...\"}, \"iPhone 101 (iOS 7 Version)\": {\"frequency\": 1, \"value\": \"iPhone 101 (iOS 7 ...\"}, \"How to Find College/University Online Teaching Jobs\": {\"frequency\": 1, \"value\": \"How to Find ...\"}, \"Introduction to Adobe Premiere Elements 11\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Building an E-Commerce Site with WordPress and WooCommerce\": {\"frequency\": 1, \"value\": \"Building an ...\"}, \"Web Video 101: Easily Make Web Videos With Your Smartphone!\": {\"frequency\": 1, \"value\": \"Web Video 101: ...\"}, \"How to lead, coach and manage a team from the front.\": {\"frequency\": 1, \"value\": \"How to lead, coach ...\"}, \"Microsoft Excel - VBA\": {\"frequency\": 1, \"value\": \"Microsoft Excel - ...\"}, \"In-Memory Data Management\": {\"frequency\": 1, \"value\": \"In-Memory Data ...\"}, \"Xcode fundamentals: Designing a user experience for iOS\": {\"frequency\": 1, \"value\": \"Xcode ...\"}, \"Master Overview of a Career in Solar Sales\": {\"frequency\": 1, \"value\": \"Master Overview of ...\"}, \"iPhone icons gone awesome\": {\"frequency\": 1, \"value\": \"iPhone icons gone ...\"}, \"HTML5: Managing Browser History\": {\"frequency\": 1, \"value\": \"HTML5: Managing ...\"}, \"iPhoto '09: 10 Things to Know About Flickr\": {\"frequency\": 1, \"value\": \"iPhoto '09: 10 ...\"}, \"Dynamical Modeling Methods for Systems Biology\": {\"frequency\": 1, \"value\": \"Dynamical Modeling ...\"}, \"Photoshop CS3 Prepress Essentials\": {\"frequency\": 1, \"value\": \"Photoshop CS3 ...\"}, \"Photoshop Artist in Action: Uli Staiger's Airship\": {\"frequency\": 1, \"value\": \"Photoshop Artist ...\"}, \"Digital Photography Principles: The Camera\": {\"frequency\": 1, \"value\": \"Digital ...\"}, \"iPad Music Production: Inputs, Mics, and MIDI\": {\"frequency\": 1, \"value\": \"iPad Music ...\"}, \"Illustrator for Fashion Design: Drawing Flats\": {\"frequency\": 1, \"value\": \"Illustrator for ...\"}, \"OpenOffice.org 2 Calc Getting Started\": {\"frequency\": 1, \"value\": \"OpenOffice.org 2 ...\"}, \"Anyone can edit videos: Movie Maker\": {\"frequency\": 1, \"value\": \"Anyone can edit ...\"}, \"Photoshop & Lightroom for Photographers\": {\"frequency\": 1, \"value\": \"Photoshop & ...\"}, \"Fun With Brazilian Portuguese\": {\"frequency\": 1, \"value\": \"Fun With Brazilian ...\"}, \"Insights from a Business Coach\": {\"frequency\": 1, \"value\": \"Insights from a ...\"}, \"Microsoft Word 2010 Intermediate\": {\"frequency\": 1, \"value\": \"Microsoft Word ...\"}, \"Sports and Recreation Management (SportRec)\": {\"frequency\": 1, \"value\": \"Sports and ...\"}, \"WordPress.com 2.5 Essential Training\": {\"frequency\": 1, \"value\": \"WordPress.com 2.5 ...\"}, \"HTML5: Drag and Drop in Depth\": {\"frequency\": 1, \"value\": \"HTML5: Drag and ...\"}, \"An Introduction to Lean & Agile - How to Enjoy Work More\": {\"frequency\": 1, \"value\": \"An Introduction to ...\"}, \"Premiere Pro: Creative Cloud Updates\": {\"frequency\": 1, \"value\": \"Premiere Pro: ...\"}, \"Marketing Principles - Option B\": {\"frequency\": 1, \"value\": \"Marketing ...\"}, \"Understanding Loans\": {\"frequency\": 1, \"value\": \"Understanding ...\"}, \"Creating Paperless Files for a Real Estate Office\": {\"frequency\": 1, \"value\": \"Creating Paperless ...\"}, \"Cold Calling: A New Approach\": {\"frequency\": 1, \"value\": \"Cold Calling: A ...\"}, \"Visual Studio 2010 Essential Training\": {\"frequency\": 1, \"value\": \"Visual Studio 2010 ...\"}, \"Quantum Leap Your Business in 6 Weeks\": {\"frequency\": 1, \"value\": \"Quantum Leap Your ...\"}, \"Fundamentals of Electrical Engineering\": {\"frequency\": 1, \"value\": \"Fundamentals of ...\"}, \"How to Ask Powerful, Emotionally Engaging Questions\": {\"frequency\": 1, \"value\": \"How to Ask ...\"}, \"How to Build a Language-Tutoring Business on the Cloud\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"Mixing a Short Film with Pro Tools\": {\"frequency\": 1, \"value\": \"Mixing a Short ...\"}, \"A Beginners Guide To Setting Up A WordPress Blog\": {\"frequency\": 1, \"value\": \"A Beginners Guide ...\"}, \"Serve Smart\": {\"frequency\": 1, \"value\": \"Serve Smart\"}, \"Revise and Edit Your Own Novel\": {\"frequency\": 1, \"value\": \"Revise and Edit ...\"}, \"Installing and Configuring Windows Server 2012 (70-410)\": {\"frequency\": 1, \"value\": \"Installing and ...\"}, \"Microsoft Excel 2010 Intermediate\": {\"frequency\": 1, \"value\": \"Microsoft Excel ...\"}, \"New in Photoshop 7\": {\"frequency\": 1, \"value\": \"New in Photoshop 7\"}, \"Easy Snowflakes and More with Adobe Creative Suite\": {\"frequency\": 1, \"value\": \"Easy Snowflakes ...\"}, \"Combining Images with Photoshop Elements 9\": {\"frequency\": 1, \"value\": \"Combining Images ...\"}, \"Apps For Local Business\": {\"frequency\": 1, \"value\": \"Apps For Local ...\"}, \"Photoshop Curves Workshop\": {\"frequency\": 1, \"value\": \"Photoshop Curves ...\"}, \"Writers Tips practical advice for creating better books\": {\"frequency\": 1, \"value\": \"Writers Tips ...\"}, \"Making Music with Ableton Push\": {\"frequency\": 1, \"value\": \"Making Music with ...\"}, \"JavaScript: Events\": {\"frequency\": 1, \"value\": \"JavaScript: Events\"}, \"Motivation to Dream Bigger\": {\"frequency\": 1, \"value\": \"Motivation to ...\"}, \"Designing a Newsletter\": {\"frequency\": 1, \"value\": \"Designing a ...\"}, \"CS169.1x: Software as a Service\": {\"frequency\": 1, \"value\": \"CS169.1x: Software ...\"}, \"Ethical Codes for Translators and Interpreters\": {\"frequency\": 1, \"value\": \"Ethical Codes for ...\"}, \"Demystifying Intellectual Property - An Actionable Intro\": {\"frequency\": 1, \"value\": \"Demystifying ...\"}, \"Create an Interactive Animated Timeline with jQuery\": {\"frequency\": 1, \"value\": \"Create an ...\"}, \"The Civil War Era: Dividing a Nation\": {\"frequency\": 1, \"value\": \"The Civil War Era: ...\"}, \"QuickStart! - 3D Printing\": {\"frequency\": 1, \"value\": \"QuickStart! - 3D ...\"}, \"Dreamweaver CS4 Essential Training\": {\"frequency\": 1, \"value\": \"Dreamweaver CS4 ...\"}, \"Health Informatics in the Cloud\": {\"frequency\": 1, \"value\": \"Health Informatics ...\"}, \"Fundamentals of Joomla! Training\": {\"frequency\": 1, \"value\": \"Fundamentals of ...\"}, \"Photoshop Retouching Techniques: Beauty Portraits\": {\"frequency\": 1, \"value\": \"Photoshop ...\"}, \"OpenOffice.org 2 Writer Getting Started\": {\"frequency\": 1, \"value\": \"OpenOffice.org 2 ...\"}, \"Color Basics for Print Designers\": {\"frequency\": 1, \"value\": \"Color Basics for ...\"}, \"Maya 2011 Essential Training\": {\"frequency\": 1, \"value\": \"Maya 2011 ...\"}, \"Export Consulting: Filling the Tremendous National Need\": {\"frequency\": 1, \"value\": \"Export Consulting: ...\"}, \"Learning GoLive 6\": {\"frequency\": 1, \"value\": \"Learning GoLive 6\"}, \"How to make money with local businesses online\": {\"frequency\": 1, \"value\": \"How to make money ...\"}, \"Foundations of Photography: Specialty Lenses\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Flash Professional Power Shortcuts\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Enhancing a Travel Photo with Photoshop and Lightroom\": {\"frequency\": 1, \"value\": \"Enhancing a Travel ...\"}, \"Adobe Certified Training: Adobe Photoshop CS6 Fundamentals\": {\"frequency\": 1, \"value\": \"Adobe Certified ...\"}, \"10 Weeks: holistic nutrition program\": {\"frequency\": 1, \"value\": \"10 Weeks: holistic ...\"}, \"7 Day Yoga Routine: Increase Energy & Balance Your Chakras\": {\"frequency\": 1, \"value\": \"7 Day Yoga ...\"}, \"Powerful Presentations\": {\"frequency\": 1, \"value\": \"Powerful ...\"}, \"Skate-Pro: Inline skating course for adult beginners.\": {\"frequency\": 1, \"value\": \"Skate-Pro: Inline ...\"}, \"Online Marketing Fundamentals\": {\"frequency\": 1, \"value\": \"Online Marketing ...\"}, \"Learn jQuery: An In-depth Course For Beginners\": {\"frequency\": 1, \"value\": \"Learn jQuery: An ...\"}, \"Exploring CSS Positioning\": {\"frequency\": 1, \"value\": \"Exploring CSS ...\"}, \"Up and Running with Typekit\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Brand Visibility - Master All Media\": {\"frequency\": 1, \"value\": \"Brand Visibility - ...\"}, \"Delegating Tasks to Your Team\": {\"frequency\": 1, \"value\": \"Delegating Tasks ...\"}, \"Introduction a la programmation orientee objet (en Java)\": {\"frequency\": 1, \"value\": \"Introduction a la ...\"}, \"Git Real\": {\"frequency\": 1, \"value\": \"Git Real\"}, \"How to DJ With Traktor Pro 2\": {\"frequency\": 1, \"value\": \"How to DJ With ...\"}, \"Narrative Scene Editing with Final Cut Pro X\": {\"frequency\": 1, \"value\": \"Narrative Scene ...\"}, \"Scala for Java Developers: Transition Up!\": {\"frequency\": 1, \"value\": \"Scala for Java ...\"}, \"Photoshop CS3 for Designers\": {\"frequency\": 1, \"value\": \"Photoshop CS3 for ...\"}, \"How To Podcast Like A Pro\": {\"frequency\": 1, \"value\": \"How To Podcast ...\"}, \"After Effects: Principles of Motion Graphics\": {\"frequency\": 1, \"value\": \"After Effects: ...\"}, \"Becoming Human: Anthropology (BeHuman)\": {\"frequency\": 1, \"value\": \"Becoming Human: ...\"}, \"Designing a Brochure\": {\"frequency\": 1, \"value\": \"Designing a ...\"}, \"Introduction to SQL Training\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Create an Awesome Book Trailer for Your Fiction Title\": {\"frequency\": 1, \"value\": \"Create an Awesome ...\"}, \"Social Media Success for Photographers\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"Up and Running with Flash Professional CC\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Film Scoring with Pro Tools\": {\"frequency\": 1, \"value\": \"Film Scoring with ...\"}, \"After Effects: Extended Vignette Techniques\": {\"frequency\": 1, \"value\": \"After Effects: ...\"}, \"Foundations of UX: Content Strategy\": {\"frequency\": 1, \"value\": \"Foundations of UX: ...\"}, \"After Effects Apprentice 01: Pre-Roll\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"Excel 2010: Working with Dates and Times\": {\"frequency\": 1, \"value\": \"Excel 2010: ...\"}, \"Deke's Techniques: 2012\": {\"frequency\": 1, \"value\": \"Deke's ...\"}, \"Distributing and Marketing Ebooks\": {\"frequency\": 1, \"value\": \"Distributing and ...\"}, \"Up and Running with AngularJS\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Time to Thrive...for Family Leaders\": {\"frequency\": 1, \"value\": \"Time to ...\"}, \"InDesign CS3 Professional Typography\": {\"frequency\": 1, \"value\": \"InDesign CS3 ...\"}, \"Triple Your Results with WALL YOGA for Whole Body Makeover\": {\"frequency\": 1, \"value\": \"Triple Your ...\"}, \"Sentence Diagramming - From Beginner to Expert in 12 Lessons\": {\"frequency\": 1, \"value\": \"Sentence ...\"}, \"Building iPhone Apps For Absolute Beginners\": {\"frequency\": 1, \"value\": \"Building iPhone ...\"}, \"Flash CS4 Professional: Object-Oriented Programming\": {\"frequency\": 1, \"value\": \"Flash CS4 ...\"}, \"Premium Arabic Online Course: Speaking, Reading and Writing!\": {\"frequency\": 1, \"value\": \"Premium Arabic ...\"}, \"Learn to Build Apps for Facebook and Chrome Store\": {\"frequency\": 1, \"value\": \"Learn to Build ...\"}, \"The Six Steps of GIS Problem Solvingor How to "Do" GIS\": {\"frequency\": 1, \"value\": \"The Six Steps of ...\"}, \"Flash CS3 Animation Secrets\": {\"frequency\": 1, \"value\": \"Flash CS3 ...\"}, \"A Journey through Medicine: How to Get into Medical School\": {\"frequency\": 1, \"value\": \"A Journey through ...\"}, \"Insights on Photojournalism\": {\"frequency\": 1, \"value\": \"Insights on ...\"}, \"Up and Running with Acrobat XI\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"eBay for Sellers Essential Training\": {\"frequency\": 1, \"value\": \"eBay for Sellers ...\"}, \"PowerPoint 2007 Introduction\": {\"frequency\": 1, \"value\": \"PowerPoint 2007 ...\"}, \"Money Basics: How to Manage and Understand Your Money\": {\"frequency\": 1, \"value\": \"Money Basics: How ...\"}, \"SQL Server Reporting Services in Depth\": {\"frequency\": 1, \"value\": \"SQL Server ...\"}, \"Objective C Programming: Learn iOS Programming In Depth\": {\"frequency\": 1, \"value\": \"Objective C ...\"}, \"After Effects 5.0 Overview\": {\"frequency\": 1, \"value\": \"After Effects 5.0 ...\"}, \"Introduction to Psychology\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Learn Effective Public Speaking with Impact.\": {\"frequency\": 1, \"value\": \"Learn Effective ...\"}, \"Music Production Secrets: Larry Crane on Recording\": {\"frequency\": 1, \"value\": \"Music Production ...\"}, \"PHP for Absolute Beginners\": {\"frequency\": 1, \"value\": \"PHP for Absolute ...\"}, \"Writing Effective Business Emails\": {\"frequency\": 1, \"value\": \"Writing Effective ...\"}, \"Final Draft Course: The #1 Screenwriting Software in World\": {\"frequency\": 1, \"value\": \"Final Draft ...\"}, \"MYOB AccountRight Reporting Necessities\": {\"frequency\": 1, \"value\": \"MYOB AccountRight ...\"}, \"Principles of Economics for Scientists\": {\"frequency\": 1, \"value\": \"Principles of ...\"}, \"Drupal 7 New Features\": {\"frequency\": 1, \"value\": \"Drupal 7 New ...\"}, \"Editing with Composites and Effects in Avid Media Composer\": {\"frequency\": 1, \"value\": \"Editing with ...\"}, \"SAP Basis Advanced Training Performing Upgrades in SAP\": {\"frequency\": 1, \"value\": \"SAP Basis Advanced ...\"}, \"How to Become a YouTube Rockstar\": {\"frequency\": 1, \"value\": \"How to Become a ...\"}, \"After Effects CS6 New Features Overview\": {\"frequency\": 1, \"value\": \"After Effects CS6 ...\"}, \"Distributing Windows Phone Apps through the Windows Phone Store\": {\"frequency\": 1, \"value\": \"Distributing ...\"}, \"Lightroom 4 Essentials: 03 Creating Prints and Books\": {\"frequency\": 1, \"value\": \"Lightroom 4 ...\"}, \"Fund Your Creative Startup\": {\"frequency\": 1, \"value\": \"Fund Your Creative ...\"}, \"MS Office - Advanced - Efficiency Training\": {\"frequency\": 1, \"value\": \"MS Office - ...\"}, \"How To Make App For Iphone, Android, Kindle Without Coding\": {\"frequency\": 1, \"value\": \"How To Make App ...\"}, \"American Counter Terrorism Law\": {\"frequency\": 1, \"value\": \"American Counter ...\"}, \"Practical Statistics for The User Experience I\": {\"frequency\": 1, \"value\": \"Practical ...\"}, \"Create Navigation Menus with jQuery\": {\"frequency\": 1, \"value\": \"Create Navigation ...\"}, \"Big Spaceship Animated Logo: Start to Finish\": {\"frequency\": 1, \"value\": \"Big Spaceship ...\"}, \"Discover How to Sell Your Book and eBook to Libraries\": {\"frequency\": 1, \"value\": \"Discover How to ...\"}, \"Up and Running with Amazon Web Services\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Grow Your Business Using The 8 Factors\": {\"frequency\": 1, \"value\": \"Grow Your Business ...\"}, \"Learn How To Build A Successful Forum for Beginners\": {\"frequency\": 1, \"value\": \"Learn How To Build ...\"}, \"Calculus: Single Variable\": {\"frequency\": 1, \"value\": \"Calculus: Single ...\"}, \"How to Market Yourself as a Coach or Consultant\": {\"frequency\": 1, \"value\": \"How to Market ...\"}, \"Mac OS X Mountain Lion Essential Training\": {\"frequency\": 1, \"value\": \"Mac OS X Mountain ...\"}, \"Model Thinking\": {\"frequency\": 1, \"value\": \"Model Thinking\"}, \"Flex "Hero" and Flash Builder "Burrito" Beta Preview\": {\"frequency\": 1, \"value\": \"Flex ...\"}, \"QuickBooks Pro 2010 Essential Training\": {\"frequency\": 1, \"value\": \"QuickBooks Pro ...\"}, \"Introduction to Applied Investing\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Up and Running with Eclipse\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"InDesign for Web Design\": {\"frequency\": 1, \"value\": \"InDesign for Web ...\"}, \"Photoshop CC Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop CC ...\"}, \"Ruby Essential Training\": {\"frequency\": 1, \"value\": \"Ruby Essential ...\"}, \"Android App Development by Example\": {\"frequency\": 1, \"value\": \"Android App ...\"}, \"Get Momentum: Start A Business You Love\": {\"frequency\": 1, \"value\": \"Get Momentum: ...\"}, \"Learning JavaScript Programming Tutorial. A Definitive Guide\": {\"frequency\": 1, \"value\": \"Learning ...\"}, \"Adding An iPhone & iPad To Your Photography Workflow\": {\"frequency\": 1, \"value\": \"Adding An iPhone ...\"}, \"Foundations of UX: Information Architecture\": {\"frequency\": 1, \"value\": \"Foundations of UX: ...\"}, \"Derivatives: An Introduction\": {\"frequency\": 1, \"value\": \"Derivatives: An ...\"}, \"Create ULTIMATE money making courses\": {\"frequency\": 1, \"value\": \"Create ULTIMATE ...\"}, \"After Effects: Light Transmission\": {\"frequency\": 1, \"value\": \"After Effects: ...\"}, \"Photoshop CS Power Shortcuts\": {\"frequency\": 1, \"value\": \"Photoshop CS Power ...\"}, \"Learn to Find Investors Quickly!\": {\"frequency\": 1, \"value\": \"Learn to Find ...\"}, \"How To Flip Houses & Divorce Your 9-5\": {\"frequency\": 1, \"value\": \"How To Flip Houses ...\"}, \"Intro To Fast and Easy App Development\": {\"frequency\": 1, \"value\": \"Intro To Fast and ...\"}, \"Introduction to Guitar\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Intro to C# Programming and Scripting for Games in Unity\": {\"frequency\": 1, \"value\": \"Intro to C# ...\"}, \"iBooks Author for Teachers: Creating a Math Lesson\": {\"frequency\": 1, \"value\": \"iBooks Author for ...\"}, \"Business Success Techniques\": {\"frequency\": 1, \"value\": \"Business Success ...\"}, \"HTML5 Projects: Video Bumpers\": {\"frequency\": 1, \"value\": \"HTML5 Projects: ...\"}, \"Master College Admissions: The Common Application\": {\"frequency\": 1, \"value\": \"Master College ...\"}, \"Nuke 6.3 New Features\": {\"frequency\": 1, \"value\": \"Nuke 6.3 New ...\"}, \"JavaScript Basics: Parts I and II\": {\"frequency\": 1, \"value\": \"JavaScript Basics: ...\"}, \"Richard Koci Hernandez, Multimedia Journalist\": {\"frequency\": 1, \"value\": \"Richard Koci ...\"}, \"Design For Coders\": {\"frequency\": 1, \"value\": \"Design For Coders\"}, \"Apple Mac OS X Lion Server Tutorial - A Definitive Guide\": {\"frequency\": 1, \"value\": \"Apple Mac OS X ...\"}, \"Scanning with SilverFast\": {\"frequency\": 1, \"value\": \"Scanning with ...\"}, \"Learn How to Make iPhone and iPad Apps in Under an Hour\": {\"frequency\": 1, \"value\": \"Learn How to Make ...\"}, \"Up and Running with Word 2007\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Learn How to Make Money Teaching Online as a Professor\": {\"frequency\": 1, \"value\": \"Learn How to Make ...\"}, \"Create a Sliding Tabbed Panel with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create a Sliding ...\"}, \"iTunes 7 New Features\": {\"frequency\": 1, \"value\": \"iTunes 7 New ...\"}, \"School of Raising Money: Use LinkedIn to Find Investors\": {\"frequency\": 1, \"value\": \"School of Raising ...\"}, \"Introduction to Computer Science\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Computer Repair For Beginners And Experts Alike\": {\"frequency\": 1, \"value\": \"Computer Repair ...\"}, \"The Ultimate Marketing System For Real Estate Agents\": {\"frequency\": 1, \"value\": \"The Ultimate ...\"}, \"Microsoft Powerpoint 2011 for Mac Tutorial\": {\"frequency\": 1, \"value\": \"Microsoft ...\"}, \"Dazzling Photoshop\": {\"frequency\": 1, \"value\": \"Dazzling Photoshop\"}, \"How to publish your ebook on Amazon's Kindle\": {\"frequency\": 1, \"value\": \"How to publish ...\"}, \"Publish Your Book Guaranteed\": {\"frequency\": 1, \"value\": \"Publish Your Book ...\"}, \"Compressor 3.5 Essential Training\": {\"frequency\": 1, \"value\": \"Compressor 3.5 ...\"}, \"Maya Essentials 1: Interface and Organization\": {\"frequency\": 1, \"value\": \"Maya Essentials 1: ...\"}, \"Android App Development with Java Essential Training\": {\"frequency\": 1, \"value\": \"Android App ...\"}, \"Start with a Theme: Video Blogs in WordPress\": {\"frequency\": 1, \"value\": \"Start with a ...\"}, \"Douglas Kirkland on Photography: Shooting with an 8x10 Camera\": {\"frequency\": 1, \"value\": \"Douglas Kirkland ...\"}, \"Reason 4 Essential Training\": {\"frequency\": 1, \"value\": \"Reason 4 Essential ...\"}, \"Dynamic Dreamweaver Websites: Creating Login Areas\": {\"frequency\": 1, \"value\": \"Dynamic ...\"}, \"Art History Renaissance to 20th Century\": {\"frequency\": 1, \"value\": \"Art History ...\"}, \"Pilates - The Master Trainer Series\": {\"frequency\": 1, \"value\": \"Pilates - The ...\"}, \"The Perfect Lightroom 5 Workflow\": {\"frequency\": 1, \"value\": \"The Perfect ...\"}, \"Introduction to Nursing in Healthcare\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"What does it take to become an Options Trading expert ?\": {\"frequency\": 1, \"value\": \"What does it take ...\"}, \"Create Your First Online Store with Drupal Commerce\": {\"frequency\": 1, \"value\": \"Create Your First ...\"}, \"SharePoint 2010 Introduction\": {\"frequency\": 1, \"value\": \"SharePoint 2010 ...\"}, \"Time Mastery\": {\"frequency\": 1, \"value\": \"Time Mastery\"}, \"Maya 6.5 Essential Training\": {\"frequency\": 1, \"value\": \"Maya 6.5 Essential ...\"}, \"2.01x: Elements of Structures\": {\"frequency\": 1, \"value\": \"2.01x: Elements of ...\"}, \"Yoga For Insomnia: The 4-week Cure\": {\"frequency\": 1, \"value\": \"Yoga For Insomnia: ...\"}, \"Game Theory 101\": {\"frequency\": 1, \"value\": \"Game Theory 101\"}, \"Photoshop CC for Photographers: Camera Raw 8 Fundamentals\": {\"frequency\": 1, \"value\": \"Photoshop CC for ...\"}, \"Selecting the Correct Franchise\": {\"frequency\": 1, \"value\": \"Selecting the ...\"}, \"Switching from Windows to Mac (2012)\": {\"frequency\": 1, \"value\": \"Switching from ...\"}, \"HTML5: Background Processes with Web Workers\": {\"frequency\": 1, \"value\": \"HTML5: Background ...\"}, \"8.02x: Electricity and Magnetism\": {\"frequency\": 1, \"value\": \"8.02x: Electricity ...\"}, \"Adding a Filmic Glow to Your Footage Using After Effects\": {\"frequency\": 1, \"value\": \"Adding a Filmic ...\"}, \"TIBCO ActiveMatrix BPM Essentials\": {\"frequency\": 1, \"value\": \"TIBCO ActiveMatrix ...\"}, \"App Games Producer Course: Reskin an iphone game from A to Z\": {\"frequency\": 1, \"value\": \"App Games Producer ...\"}, \"The Hardware/Software Interface\": {\"frequency\": 1, \"value\": \"The ...\"}, \"Final Cut Pro 7 Tutorial\": {\"frequency\": 1, \"value\": \"Final Cut Pro 7 ...\"}, \"Pitch for Success: Story in Presentations\": {\"frequency\": 1, \"value\": \"Pitch for Success: ...\"}, \"Build a Blog Reader Android App\": {\"frequency\": 1, \"value\": \"Build a Blog ...\"}, \"Write Your Life Story\": {\"frequency\": 1, \"value\": \"Write Your Life ...\"}, \"Mastering Microsoft Project 2010 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"Small Business and Managerial Accounting Training Tutorial\": {\"frequency\": 1, \"value\": \"Small Business and ...\"}, \"Become an iOS Developer from Scratch\": {\"frequency\": 1, \"value\": \"Become an iOS ...\"}, \"Applied Cryptography\": {\"frequency\": 1, \"value\": \"Applied ...\"}, \"Step by Step Sass\": {\"frequency\": 1, \"value\": \"Step by Step Sass\"}, \"Microsoft SQL Database Fundamentals\": {\"frequency\": 1, \"value\": \"Microsoft SQL ...\"}, \"Autodesk Inventor 2014 Fundamentals\": {\"frequency\": 1, \"value\": \"Autodesk Inventor ...\"}, \"Calculus\": {\"frequency\": 1, \"value\": \"Calculus\"}, \"Excel 2010 Power Shortcuts\": {\"frequency\": 1, \"value\": \"Excel 2010 Power ...\"}, \"Networks: Friends, Money, and Bytes\": {\"frequency\": 1, \"value\": \"Networks: Friends, ...\"}, \"Managing Teams\": {\"frequency\": 1, \"value\": \"Managing Teams\"}, \"Microsoft Excel 2013\": {\"frequency\": 1, \"value\": \"Microsoft Excel ...\"}, \"Learn Microsoft Word 2010\": {\"frequency\": 2, \"value\": \"Learn Microsoft ...\"}, \"Lighting with Flash: Basics\": {\"frequency\": 1, \"value\": \"Lighting with ...\"}, \"Adobe Green-Screen Workflow\": {\"frequency\": 1, \"value\": \"Adobe Green-Screen ...\"}, \"Using Presets in Lightroom\": {\"frequency\": 1, \"value\": \"Using Presets in ...\"}, \"Dog Training - Polite Leash Walking Class\": {\"frequency\": 1, \"value\": \"Dog Training - ...\"}, \"Photoshop Sharpening Power Workshop\": {\"frequency\": 1, \"value\": \"Photoshop ...\"}, \"Windows Vista Essential Training\": {\"frequency\": 1, \"value\": \"Windows Vista ...\"}, \"Kit Hinrichs, Graphic Designer\": {\"frequency\": 1, \"value\": \"Kit Hinrichs, ...\"}, \"Yoga @ Home with Meta - Immersion for Beginners and Beyond\": {\"frequency\": 1, \"value\": \"Yoga @ Home with ...\"}, \"Photoshop CS5 Extended One-on-One: 3D Fundamentals\": {\"frequency\": 1, \"value\": \"Photoshop CS5 ...\"}, \"Photoshop - Grunge Portrait Retouching\": {\"frequency\": 1, \"value\": \"Photoshop - Grunge ...\"}, \"Communication Secrets of Successful Asian American Leaders\": {\"frequency\": 1, \"value\": \"Communication ...\"}, \"Coding for Entrepreneurs Basic\": {\"frequency\": 1, \"value\": \"Coding for ...\"}, \"24 Hour Traffic Plan - How To Get 68.452 Visitors a Day\": {\"frequency\": 1, \"value\": \"24 Hour Traffic ...\"}, \"Become a Paid Life Coach Online\": {\"frequency\": 1, \"value\": \"Become a Paid Life ...\"}, \""No Equipment, No Excuses" Home Workout\": {\"frequency\": 1, \"value\": \""No ...\"}, \"Monopoly Guys - Photoshop Retouching\": {\"frequency\": 1, \"value\": \"Monopoly Guys - ...\"}, \"Creating Digital Products for Business Success\": {\"frequency\": 1, \"value\": \"Creating Digital ...\"}, \"Centercode Connect Training for Community Managers\": {\"frequency\": 1, \"value\": \"Centercode Connect ...\"}, \"International Relations 101\": {\"frequency\": 1, \"value\": \"International ...\"}, \"Boost Your Income From Home-How To Start An Online Business\": {\"frequency\": 1, \"value\": \"Boost Your Income ...\"}, \"How to encourage and teach our children entrepreneurship\": {\"frequency\": 1, \"value\": \"How to encourage ...\"}, \"How to make money and sell your websites, design and hosting\": {\"frequency\": 1, \"value\": \"How to make money ...\"}, \"Landing Page Design & Optimization - build pages that work!\": {\"frequency\": 1, \"value\": \"Landing Page ...\"}, \"Introduction to Agile\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"How to Build a Supply Chain Model in Microsoft Excel\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"Local Marketing Blue Print - Presented by ShoeMoney\": {\"frequency\": 1, \"value\": \"Local Marketing ...\"}, \"Migrating from Final Cut Pro 7 to Final Cut Pro X\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Sane Parents Guide: Getting Your Home Ready for Baby\": {\"frequency\": 1, \"value\": \"Sane Parents ...\"}, \"CCNA 200-120 On-The-Go Video Boot Camp With Chris Bryant\": {\"frequency\": 1, \"value\": \"CCNA 200-120 On- ...\"}, \"Trigonometry: Trigonometric Identities I\": {\"frequency\": 1, \"value\": \"Trigonometry: ...\"}, \"The 6 Habits of Highly Effective Leaders\": {\"frequency\": 1, \"value\": \"The 6 Habits of ...\"}, \"Line Producer: Understanding the Complete Producing Process\": {\"frequency\": 1, \"value\": \"Line Producer: ...\"}, \"Mastering Macro Photography\": {\"frequency\": 1, \"value\": \"Mastering Macro ...\"}, \"How to: Makeup Basics\": {\"frequency\": 1, \"value\": \"How to: Makeup ...\"}, \"Photoshop for Photographers Creative Cloud Updates\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"Secrets of Intuitive Design-How To Design a Conceptual Model\": {\"frequency\": 1, \"value\": \"Secrets of ...\"}, \"Word 2010 New Features\": {\"frequency\": 1, \"value\": \"Word 2010 New ...\"}, \"Narrative Scene Editing with Premiere Pro\": {\"frequency\": 1, \"value\": \"Narrative Scene ...\"}, \"Media Buy Academy: Get More Leads & Sales to Your Website\": {\"frequency\": 1, \"value\": \"Media Buy Academy: ...\"}, \"Shooting with Wireless Flash: Product Shots\": {\"frequency\": 1, \"value\": \"Shooting with ...\"}, \"Illustrator CS6 One-on-One: Intermediate\": {\"frequency\": 1, \"value\": \"Illustrator CS6 ...\"}, \"Beginner Adobe Premiere Pro CS5 Tutorial\": {\"frequency\": 1, \"value\": \"Beginner Adobe ...\"}, \"Tech Basics: Cables & Connectors\": {\"frequency\": 1, \"value\": \"Tech Basics: ...\"}, \"How to Start a Business\": {\"frequency\": 2, \"value\": \"How to Start a ...\"}, \"InDesign CS5.5 to EPUB, Kindle, and iPad\": {\"frequency\": 1, \"value\": \"InDesign CS5.5 to ...\"}, \"Dreamweaver 8 New Features\": {\"frequency\": 1, \"value\": \"Dreamweaver 8 New ...\"}, \"Technical Analysis - A practical approach for trade entry\": {\"frequency\": 1, \"value\": \"Technical Analysis ...\"}, \"After Effects Apprentice 12: Tracking and Keying\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"The Amplified Author: Creating ebooks\": {\"frequency\": 1, \"value\": \"The Amplified ...\"}, \"Trading: How Transformative Learning Drives Expertise\": {\"frequency\": 1, \"value\": \"Trading: How ...\"}, \"App Store Optimization - App Store SEO\": {\"frequency\": 1, \"value\": \"App Store ...\"}, \"From HTML to App Store in 60 Minutes\": {\"frequency\": 1, \"value\": \"From HTML to App ...\"}, \"Build Your First Drupal 7 Web Site\": {\"frequency\": 1, \"value\": \"Build Your First ...\"}, \"Photoshop CS6 Quick Start for Photographers\": {\"frequency\": 1, \"value\": \"Photoshop CS6 ...\"}, \"Learn Test Driven Development in Java\": {\"frequency\": 1, \"value\": \"Learn Test Driven ...\"}, \"Flash Professional 8 Video Integration\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Seven Secrets to Hitting a Baseball\": {\"frequency\": 1, \"value\": \"Seven Secrets to ...\"}, \"28 Loving ReAwakenings\": {\"frequency\": 1, \"value\": \"28 Loving ...\"}, \"Technical Web Testing 101\": {\"frequency\": 1, \"value\": \"Technical Web ...\"}, \"Digital Painting: Street Scene\": {\"frequency\": 1, \"value\": \"Digital Painting: ...\"}, \"Social Media Marketing For Dummies Video Training\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"Every Picture Tells A Story\": {\"frequency\": 1, \"value\": \"Every Picture ...\"}, \"Improve Your Longevity and Become a Longevity Coach\": {\"frequency\": 1, \"value\": \"Improve Your ...\"}, \"How To: Makeup for TV and Film\": {\"frequency\": 1, \"value\": \"How To: Makeup for ...\"}, \"Create an iPad Web App\": {\"frequency\": 1, \"value\": \"Create an iPad Web ...\"}, \"Hoop Core Fitness with Betty Hoops - Beginner Tricks\": {\"frequency\": 1, \"value\": \"Hoop Core Fitness ...\"}, \"Flash Professional 8 Building Data-Driven Applications\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Apple Video Training: Pages For iPad\": {\"frequency\": 1, \"value\": \"Apple Video ...\"}, \"Passion Driven Statistics\": {\"frequency\": 1, \"value\": \"Passion Driven ...\"}, \"Newsstand: Publish your magazine today\": {\"frequency\": 1, \"value\": \"Newsstand: Publish ...\"}, \"11 Things Every Beginner Needs to Learn to Love Illustrator\": {\"frequency\": 1, \"value\": \"11 Things Every ...\"}, \"Microsoft Project 2010 Tutorial Video - Beginners - Advanced\": {\"frequency\": 1, \"value\": \"Microsoft Project ...\"}, \"Same-sex Weddings for Photographers\": {\"frequency\": 1, \"value\": \"Same-sex Weddings ...\"}, \"Master Microsoft Publisher 2010 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Master Microsoft ...\"}, \"Test Turbocharger: Improve Your Exam and Test Scores Today!\": {\"frequency\": 1, \"value\": \"Test Turbocharger: ...\"}, \"Descriptive Statistics in SPSS Step by Step\": {\"frequency\": 1, \"value\": \"Descriptive ...\"}, \"How to develop true Customer Insight to grow your business\": {\"frequency\": 1, \"value\": \"How to develop ...\"}, \"How to Write and Publish an eBook\": {\"frequency\": 1, \"value\": \"How to Write and ...\"}, \"Ableton Live 8 Essential Training\": {\"frequency\": 1, \"value\": \"Ableton Live 8 ...\"}, \"The Book as iPad App\": {\"frequency\": 1, \"value\": \"The Book as iPad ...\"}, \"WordPress for Your Wedding Business\": {\"frequency\": 1, \"value\": \"WordPress for Your ...\"}, \"Liquid Simulation in Maya\": {\"frequency\": 1, \"value\": \"Liquid Simulation ...\"}, \"Faux Ninja: Essential Parkour Techniques\": {\"frequency\": 1, \"value\": \"Faux Ninja: ...\"}, \"CPE for CPAs EAs -Child and Dependent Expenses Training 2013\": {\"frequency\": 1, \"value\": \"CPE for CPAs EAs ...\"}, \"The Romantics\": {\"frequency\": 1, \"value\": \"The Romantics\"}, \"Mixing a Rock Song in Pro Tools\": {\"frequency\": 1, \"value\": \"Mixing a Rock Song ...\"}, \"How To Create A Podcast On iTunes\": {\"frequency\": 1, \"value\": \"How To Create A ...\"}, \"Build Your Own App Business From Home - Comprehensive Course\": {\"frequency\": 1, \"value\": \"Build Your Own App ...\"}, \"How to DRAFT a Business Plan?\": {\"frequency\": 1, \"value\": \"How to DRAFT a ...\"}, \"Technology Foundations\": {\"frequency\": 1, \"value\": \"Technology ...\"}, \"Learn SAP ABAP Objects - Online Training Course\": {\"frequency\": 1, \"value\": \"Learn SAP ABAP ...\"}, \"Photoshop CS5 for the Web\": {\"frequency\": 1, \"value\": \"Photoshop CS5 for ...\"}, \"Introduction to Programming\": {\"frequency\": 2, \"value\": \"Introduction to ...\"}, \"Illustrator CS4 One-on-One: Fundamentals\": {\"frequency\": 1, \"value\": \"Illustrator CS4 ...\"}, \"Facebook Marketing and Advertisement Strategies for Business\": {\"frequency\": 1, \"value\": \"Facebook Marketing ...\"}, \"Raising Startup Capital\": {\"frequency\": 1, \"value\": \"Raising Startup ...\"}, \"OpenOffice.org 2 Base Getting Started\": {\"frequency\": 1, \"value\": \"OpenOffice.org 2 ...\"}, \"The Ultimate Guide to WordPress for Beginners\": {\"frequency\": 1, \"value\": \"The Ultimate Guide ...\"}, \"Video Journalism Storytelling Techniques\": {\"frequency\": 1, \"value\": \"Video Journalism ...\"}, \"Illustrator CS3 One-on-One: Beyond the Basics\": {\"frequency\": 1, \"value\": \"Illustrator CS3 ...\"}, \"Microsoft OneNote 2013\": {\"frequency\": 1, \"value\": \"Microsoft OneNote ...\"}, \"ANTH207x: Introduction to Human Evolution\": {\"frequency\": 1, \"value\": \"ANTH207x: ...\"}, \"Adobe Encore CS6 Tutorial . A Course For Video Professionals\": {\"frequency\": 1, \"value\": \"Adobe Encore CS6 ...\"}, \"How To Be A GREAT Presenter\": {\"frequency\": 1, \"value\": \"How To Be A GREAT ...\"}, \"Your 1st Month of Guitar Lessons\": {\"frequency\": 1, \"value\": \"Your 1st Month of ...\"}, \"Mastering Dreamweaver CS5 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"C Plus Plus programming\": {\"frequency\": 1, \"value\": \"C Plus Plus ...\"}, \"How To Build a Passive Income Business\": {\"frequency\": 1, \"value\": \"How To Build a ...\"}, \"Lightroom 5 Essentials: 05 Creating Prints and Books\": {\"frequency\": 1, \"value\": \"Lightroom 5 ...\"}, \"Creating a Responsive HTML Email\": {\"frequency\": 2, \"value\": \"Creating a ...\"}, \"Drupal 7 Custom Module Development\": {\"frequency\": 1, \"value\": \"Drupal 7 Custom ...\"}, \"Learn Motion 5 Text Effects\": {\"frequency\": 1, \"value\": \"Learn Motion 5 ...\"}, \"Artist Series with Hillman Curtis\": {\"frequency\": 1, \"value\": \"Artist Series with ...\"}, \"Think Like Jesus, Lead Like Moses\": {\"frequency\": 1, \"value\": \"Think Like Jesus, ...\"}, \"Drawing Vector Graphics\": {\"frequency\": 1, \"value\": \"Drawing Vector ...\"}, \"Audition 2.0 Essential Training\": {\"frequency\": 1, \"value\": \"Audition 2.0 ...\"}, \"Getting Started with Adobe Camera Raw 5\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Julius Caesar Part One: Early Life and Career\": {\"frequency\": 1, \"value\": \"Julius Caesar Part ...\"}, \"Final Cut Studio: Round-Tripping\": {\"frequency\": 1, \"value\": \"Final Cut Studio: ...\"}, \"A+ Research Paper in Biology\": {\"frequency\": 1, \"value\": \"A+ Research Paper ...\"}, \"Introduction To Bash Scripting and Python 101\": {\"frequency\": 1, \"value\": \"Introduction To ...\"}, \"Marketing Principles - Option A\": {\"frequency\": 1, \"value\": \"Marketing ...\"}, \"Compressor 3 Essential Training\": {\"frequency\": 1, \"value\": \"Compressor 3 ...\"}, \"Fireworks CS4: Rapid Prototyping\": {\"frequency\": 1, \"value\": \"Fireworks CS4: ...\"}, \"Learn To Draw\": {\"frequency\": 1, \"value\": \"Learn To Draw\"}, \"Real-time Web with Node.js\": {\"frequency\": 1, \"value\": \"Real-time Web with ...\"}, \"TIMtactics\": {\"frequency\": 1, \"value\": \"TIMtactics\"}, \"Photoshop Artist in Action: Uli Staiger's Perestroika\": {\"frequency\": 1, \"value\": \"Photoshop Artist ...\"}, \"The Next Step: Guiding you from idea to startup\": {\"frequency\": 1, \"value\": \"The Next Step: ...\"}, \"PHYS102x: Electricity & Magnetism\": {\"frequency\": 1, \"value\": \"PHYS102x: ...\"}, \"Microsoft Lync 2013\": {\"frequency\": 1, \"value\": \"Microsoft Lync ...\"}, \"Up and Running with Photoshop for Photography\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Android Development with Appcelerator Titanium - Quick Start\": {\"frequency\": 1, \"value\": \"Android ...\"}, \"Kindle Book Promotion: Tips To Promote Your Book Right Now\": {\"frequency\": 1, \"value\": \"Kindle Book ...\"}, \"Create iPad Books with Interactivity, Video, Audio, Photos..\": {\"frequency\": 1, \"value\": \"Create iPad Books ...\"}, \"Social Media Monitoring with Google Reader\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"Preparation for PMI Risk Management Professional (RMP) Exam\": {\"frequency\": 1, \"value\": \"Preparation for ...\"}, \"Honest Yoga: Brand New Beginners\": {\"frequency\": 1, \"value\": \"Honest Yoga: Brand ...\"}, \"Premiere Pro Guru: Dynamic Link and the Adobe Workflow\": {\"frequency\": 1, \"value\": \"Premiere Pro Guru: ...\"}, \"Matting, Framing, and Hanging Your Photographs\": {\"frequency\": 1, \"value\": \"Matting, Framing, ...\"}, \"Lean Finance for Startups\": {\"frequency\": 1, \"value\": \"Lean Finance for ...\"}, \"CINEMA 4D Essentials 2: Polygon and Spline Modeling\": {\"frequency\": 1, \"value\": \"CINEMA 4D ...\"}, \"Photoshop Tutorial - Video & Animation Masterclass\": {\"frequency\": 1, \"value\": \"Photoshop Tutorial ...\"}, \"MySQL Database For Beginners\": {\"frequency\": 1, \"value\": \"MySQL Database For ...\"}, \"Smart and effective notes using Microsoft OneNote 2010\": {\"frequency\": 1, \"value\": \"Smart and ...\"}, \"The Emergent Human Series- SDi Primer\": {\"frequency\": 1, \"value\": \"The Emergent Human ...\"}, \"Freelancer Lifestyle\": {\"frequency\": 1, \"value\": \"Freelancer ...\"}, \"Create a User Registration System with PHP and MySQLi\": {\"frequency\": 1, \"value\": \"Create a User ...\"}, \"Photorealistic Lighting with Maya and Nuke\": {\"frequency\": 1, \"value\": \"Photorealistic ...\"}, \"Understanding Adobe Photoshop CS6 - Basics\": {\"frequency\": 1, \"value\": \"Understanding ...\"}, \"Modern & Contemporary American Poetry\": {\"frequency\": 1, \"value\": \"Modern & ...\"}, \"Online Fraudsters Exposed: Investigating Cyber Crime\": {\"frequency\": 1, \"value\": \"Online Fraudsters ...\"}, \"Big Data for Better Performance (BigData)\": {\"frequency\": 1, \"value\": \"Big Data for ...\"}, \"How to Raise Money for Your Business\": {\"frequency\": 1, \"value\": \"How to Raise Money ...\"}, \"An Introduction to Design as a Process for Innovation\": {\"frequency\": 1, \"value\": \"An Introduction to ...\"}, \"Master Your Time\": {\"frequency\": 1, \"value\": \"Master Your Time\"}, \"Faculty Guide to Online Teaching\": {\"frequency\": 1, \"value\": \"Faculty Guide to ...\"}, \"Photoshop Masking and Compositing: Advanced Blending\": {\"frequency\": 1, \"value\": \"Photoshop Masking ...\"}, \"Core iOS 7\": {\"frequency\": 1, \"value\": \"Core iOS 7\"}, \"Zero Risk Real Estate - Creating Wealth Through Tax Sales\": {\"frequency\": 1, \"value\": \"Zero Risk Real ...\"}, \"How to Build a Wordpress Website in a Weekend\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"How to Get Started with Social Media for Business\": {\"frequency\": 1, \"value\": \"How to Get Started ...\"}, \"BGP Mastery For The CCNP ROUTE And TSHOOT Exams\": {\"frequency\": 1, \"value\": \"BGP Mastery For ...\"}, \"A new approach to piano and playing songs for beginners\": {\"frequency\": 1, \"value\": \"A new approach to ...\"}, \"Sir Gawain and the Green Knight\": {\"frequency\": 1, \"value\": \"Sir Gawain and the ...\"}, \"Piano Improvisation from Day One\": {\"frequency\": 1, \"value\": \"Piano ...\"}, \"Economics of the Media\": {\"frequency\": 1, \"value\": \"Economics of the ...\"}, \"LAMP Web Development From the Ground Up - Course 1\": {\"frequency\": 1, \"value\": \"LAMP Web ...\"}, \"Screencasting: Tutorials Courses Videos Made Easy\": {\"frequency\": 1, \"value\": \"Screencasting: ...\"}, \"Japanese In Context - Elementary Japanese Course\": {\"frequency\": 1, \"value\": \"Japanese In ...\"}, \"Ultimate Beginner's Class to Learn Stand Up Comedy\": {\"frequency\": 1, \"value\": \"Ultimate ...\"}, \"Add a Video to an iBook for iPad\": {\"frequency\": 1, \"value\": \"Add a Video to an ...\"}, \"Fundamentals of Pharmacology\": {\"frequency\": 1, \"value\": \"Fundamentals of ...\"}, \"MYOB AccountRight Essential Training\": {\"frequency\": 1, \"value\": \"MYOB AccountRight ...\"}, \"Selling Residential Solar for Contractors and Entrepreneurs\": {\"frequency\": 1, \"value\": \"Selling ...\"}, \"Narrative Portraiture: On Location in New York City\": {\"frequency\": 1, \"value\": \"Narrative ...\"}, \"Create an Interactive Homepage Marquee with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create an ...\"}, \"Up and Running with VBA in Excel\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Social Media For the Time and Technology Challenged\": {\"frequency\": 1, \"value\": \"Social Media For ...\"}, \"Photoshop CS3 Portrait Retouching Techniques\": {\"frequency\": 1, \"value\": \"Photoshop CS3 ...\"}, \"Strategic Management (StratMgt)\": {\"frequency\": 1, \"value\": \"Strategic ...\"}, \"Back to School Web Development and Programming Bundle\": {\"frequency\": 1, \"value\": \"Back to School Web ...\"}, \"CCNP ROUTE 2013 Video Boot Camp With Chris Bryant\": {\"frequency\": 1, \"value\": \"CCNP ROUTE 2013 ...\"}, \"PHP Programming For Affiliate Marketers\": {\"frequency\": 1, \"value\": \"PHP Programming ...\"}, \"Lightroom 3 New Features\": {\"frequency\": 1, \"value\": \"Lightroom 3 New ...\"}, \"Mac OS X 10.5 Leopard New Features\": {\"frequency\": 1, \"value\": \"Mac OS X 10.5 ...\"}, \"Acrobat 3D Version 8 Essential Training\": {\"frequency\": 1, \"value\": \"Acrobat 3D Version ...\"}, \"Designing a Book Cover\": {\"frequency\": 1, \"value\": \"Designing a Book ...\"}, \"Debugging PHP: Advanced Techniques\": {\"frequency\": 1, \"value\": \"Debugging PHP: ...\"}, \"Learn C# 2010 Part III\": {\"frequency\": 1, \"value\": \"Learn C# 2010 Part ...\"}, \"Microsoft Outlook 2010 Intermediate\": {\"frequency\": 1, \"value\": \"Microsoft Outlook ...\"}, \"ASP.NET Essential Training\": {\"frequency\": 1, \"value\": \"ASP.NET Essential ...\"}, \"Photoshop CS2 Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop CS2 ...\"}, \"Artificial Intelligence for Robotics\": {\"frequency\": 1, \"value\": \"Artificial ...\"}, \"Accessibility\": {\"frequency\": 1, \"value\": \"Accessibility\"}, \"After Effects Apprentice 06: Type and Music\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"DVD Studio Pro 3 Essential Training\": {\"frequency\": 1, \"value\": \"DVD Studio Pro 3 ...\"}, \"Excel 2007: Charts in Depth\": {\"frequency\": 1, \"value\": \"Excel 2007: Charts ...\"}, \"Learn to Use jQuery UI Widgets\": {\"frequency\": 1, \"value\": \"Learn to Use ...\"}, \"Foundations of Video: Cameras and Shooting\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"How to create promo video with your logo?\": {\"frequency\": 1, \"value\": \"How to create ...\"}, \"Create A Business Plan - An UpStart Bootcamp Course\": {\"frequency\": 1, \"value\": \"Create A Business ...\"}, \"Introduction to Java Training Course\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Excel 2013: Advanced Formulas and Functions\": {\"frequency\": 1, \"value\": \"Excel 2013: ...\"}, \"Online Presentations with reveal.js\": {\"frequency\": 1, \"value\": \"Online ...\"}, \"iOS SDK: Building Apps with MapKit and Core Location\": {\"frequency\": 1, \"value\": \"iOS SDK: Building ...\"}, \"Ultimate Wedding Dance\": {\"frequency\": 1, \"value\": \"Ultimate Wedding ...\"}, \"Introduction to Parallel Programming\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Creating an Effective Content Strategy for Your Website\": {\"frequency\": 1, \"value\": \"Creating an ...\"}, \"After Effects 7 Title Design Techniques\": {\"frequency\": 1, \"value\": \"After Effects 7 ...\"}, \"Green Screen Techniques for Video and Photography\": {\"frequency\": 1, \"value\": \"Green Screen ...\"}, \"JavaScript Essential Training\": {\"frequency\": 1, \"value\": \"JavaScript ...\"}, \"DSLR Video Tips\": {\"frequency\": 1, \"value\": \"DSLR Video Tips\"}, \"Wedding Photography for Everyone: Fundamentals\": {\"frequency\": 1, \"value\": \"Wedding ...\"}, \"Learn how to save your life in 60 minutes\": {\"frequency\": 1, \"value\": \"Learn how to save ...\"}, \"How To Run Your Business On Cloud Systems\": {\"frequency\": 1, \"value\": \"How To Run Your ...\"}, \"How To Flip A Website\": {\"frequency\": 1, \"value\": \"How To Flip A ...\"}, \"How To Get Your Blog To Pay Your Bills\": {\"frequency\": 1, \"value\": \"How To Get Your ...\"}, \"Flash CS3 Professional Fundamentals\": {\"frequency\": 1, \"value\": \"Flash CS3 ...\"}, \"Retailing\": {\"frequency\": 1, \"value\": \"Retailing\"}, \"Creating iOS games for beginners\": {\"frequency\": 1, \"value\": \"Creating iOS games ...\"}, \"SharePoint 2010 Getting Started\": {\"frequency\": 1, \"value\": \"SharePoint 2010 ...\"}, \"Learning Fireworks MX\": {\"frequency\": 1, \"value\": \"Learning Fireworks ...\"}, \"Become a WordPress Trainer\": {\"frequency\": 1, \"value\": \"Become a WordPress ...\"}, \"Mass Outsource Mastermind 2.0\": {\"frequency\": 1, \"value\": \"Mass Outsource ...\"}, \"About Life Coaching & Life Coach Training\": {\"frequency\": 1, \"value\": \"About Life ...\"}, \"Excel 2010: Financial Functions in Depth\": {\"frequency\": 1, \"value\": \"Excel 2010: ...\"}, \"Natalie Fobes, Photographer\": {\"frequency\": 1, \"value\": \"Natalie Fobes, ...\"}, \"FrontPage 2003 Essential Training\": {\"frequency\": 1, \"value\": \"FrontPage 2003 ...\"}, \"Photo Gallery with Image Tagging\": {\"frequency\": 1, \"value\": \"Photo Gallery with ...\"}, \"MEDX202-01: Genomic Medicine Gets Personal\": {\"frequency\": 1, \"value\": \"MEDX202-01: ...\"}, \"Writing in the Sciences\": {\"frequency\": 1, \"value\": \"Writing in the ...\"}, \"Adobe Illustrator: Mastering the Fundamentals\": {\"frequency\": 1, \"value\": \"Adobe Illustrator: ...\"}, \"Learning Autodesk Revit Architecture 2014 Essentials\": {\"frequency\": 1, \"value\": \"Learning Autodesk ...\"}, \"Foundations of Programming: Refactoring Code\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Training the Athletic Brain\": {\"frequency\": 1, \"value\": \"Training the ...\"}, \"How to Make an iPhone app: Part 1 - the Killer Idea!\": {\"frequency\": 1, \"value\": \"How to Make an ...\"}, \"Migrating from Word 2003 to Word 2010\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"College Peas: Tipping the Admissions Odds in Your Favor\": {\"frequency\": 1, \"value\": \"College Peas: ...\"}, \"Working with Raw-Format Photos in Lightroom and Photoshop\": {\"frequency\": 1, \"value\": \"Working with Raw- ...\"}, \"Niche Marketing made easy\": {\"frequency\": 1, \"value\": \"Niche Marketing ...\"}, \"PH207x: Health in Numbers: Quantitative Methods in Clinical & Public Health Research\": {\"frequency\": 1, \"value\": \"PH207x: Health in ...\"}, \"Mastering WordPress Like A Pro (Advanced Techniques)\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"The Living Big Program\": {\"frequency\": 1, \"value\": \"The Living Big ...\"}, \"Creating Urban Game Environments in 3ds Max\": {\"frequency\": 1, \"value\": \"Creating Urban ...\"}, \"Photoshop Artist in Action: Uli Staiger's Wasp Attack\": {\"frequency\": 1, \"value\": \"Photoshop Artist ...\"}, \"Audio Recording Techniques\": {\"frequency\": 1, \"value\": \"Audio Recording ...\"}, \"Free Beginner Electric Guitar Lessons (JamPlay.com)\": {\"frequency\": 1, \"value\": \"Free Beginner ...\"}, \"TechniTrader Leading Hybrid Indicator Trading\": {\"frequency\": 1, \"value\": \"TechniTrader ...\"}, \"Excel 2007 - Advanced\": {\"frequency\": 1, \"value\": \"Excel 2007 - ...\"}, \"Udemy Course SEO for Instructors\": {\"frequency\": 1, \"value\": \"Udemy Course SEO ...\"}, \"Confidence: A practical guide to boosting self-confidence.\": {\"frequency\": 1, \"value\": \"Confidence: A ...\"}, \"Conversion Rate Optimisation - From Beginner to Expert\": {\"frequency\": 1, \"value\": \"Conversion Rate ...\"}, \"XML Essential Training\": {\"frequency\": 1, \"value\": \"XML Essential ...\"}, \"Wordpress For Noobs - Building a Money Making Blog\": {\"frequency\": 1, \"value\": \"Wordpress For ...\"}, \"How to Make Money as a DIY Musician\": {\"frequency\": 1, \"value\": \"How to Make Money ...\"}, \"Incentive Freebie Website Formula\": {\"frequency\": 1, \"value\": \"Incentive Freebie ...\"}, \"Introduction to Statistics\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Freelancing for Beginners\": {\"frequency\": 1, \"value\": \"Freelancing for ...\"}, \"CSS Web Site Design\": {\"frequency\": 1, \"value\": \"CSS Web Site ...\"}, \"Your Job Search Is A Spiritual Journey\": {\"frequency\": 1, \"value\": \"Your Job Search Is ...\"}, \"Greensleeves - A Chromatic Autoharp Journey\": {\"frequency\": 1, \"value\": \"Greensleeves - A ...\"}, \"Illustrator Insider Training: Coloring Artwork\": {\"frequency\": 1, \"value\": \"Illustrator ...\"}, \"The Enterprise Lean Startup Survival Guide\": {\"frequency\": 1, \"value\": \"The Enterprise ...\"}, \"Up and Running with R\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Excel 2013 Power Shortcuts\": {\"frequency\": 1, \"value\": \"Excel 2013 Power ...\"}, \"Nanotechnology: The Basics\": {\"frequency\": 1, \"value\": \"Nanotechnology: ...\"}, \"PHP and MySQL Tutorial Video - Web Development The Easy Way\": {\"frequency\": 1, \"value\": \"PHP and MySQL ...\"}, \"Photoshop CS4 for Photographers: Creative Color\": {\"frequency\": 1, \"value\": \"Photoshop CS4 for ...\"}, \"GarageBand 2 Essential Training\": {\"frequency\": 1, \"value\": \"GarageBand 2 ...\"}, \"Installing and Running WordPress: BitNami\": {\"frequency\": 1, \"value\": \"Installing and ...\"}, \"Connect Stage 2 Training\": {\"frequency\": 1, \"value\": \"Connect Stage 2 ...\"}, \"Android Apps in 1 Hour: No Coding Required\": {\"frequency\": 1, \"value\": \"Android Apps in 1 ...\"}, \"Contraception: Choices, Culture and Consequences\": {\"frequency\": 1, \"value\": \"Contraception: ...\"}, \"Entrepreneurs: It is more than just a pitch deck\": {\"frequency\": 1, \"value\": \"Entrepreneurs: It ...\"}, \"Accounting Skills for Managers\": {\"frequency\": 1, \"value\": \"Accounting Skills ...\"}, \"SharePoint 2010 Essential Training\": {\"frequency\": 1, \"value\": \"SharePoint 2010 ...\"}, \"Rigging a Face in Flash Professional\": {\"frequency\": 1, \"value\": \"Rigging a Face in ...\"}, \"Learning Dreamweaver 4\": {\"frequency\": 1, \"value\": \"Learning ...\"}, \"Pages 2 Essential Training\": {\"frequency\": 1, \"value\": \"Pages 2 Essential ...\"}, \"A Look at Nuclear Science and Technology\": {\"frequency\": 1, \"value\": \"A Look at Nuclear ...\"}, \"Outlook 2007 Advanced\": {\"frequency\": 1, \"value\": \"Outlook 2007 ...\"}, \"Assessing Your Financial Fitness\": {\"frequency\": 1, \"value\": \"Assessing Your ...\"}, \"How to live a longer, healthier life\": {\"frequency\": 1, \"value\": \"How to live a ...\"}, \"Excel 2007 Essential Training\": {\"frequency\": 1, \"value\": \"Excel 2007 ...\"}, \"Trigonometry: Trigonometric Functions II\": {\"frequency\": 1, \"value\": \"Trigonometry: ...\"}, \"The Outsource Profit Machine\": {\"frequency\": 1, \"value\": \"The Outsource ...\"}, \"Discrete Optimization\": {\"frequency\": 1, \"value\": \"Discrete ...\"}, \"Pro Tools Mixing and Mastering\": {\"frequency\": 1, \"value\": \"Pro Tools Mixing ...\"}, \"How to Create a Social Network Site from Scratch\": {\"frequency\": 1, \"value\": \"How to Create a ...\"}, \"Make Your Relationship Last Forever: The Shorter Course\": {\"frequency\": 1, \"value\": \"Make Your ...\"}, \"iPad for Beginners\": {\"frequency\": 1, \"value\": \"iPad for Beginners\"}, \"Microsoft Access 2010 Tutorial - Learn At Your Own Pace\": {\"frequency\": 1, \"value\": \"Microsoft Access ...\"}, \"Excel 2010: Advanced Formatting Techniques\": {\"frequency\": 1, \"value\": \"Excel 2010: ...\"}, \"LinkedIn -Excel your Career & Online Presence w Social Media\": {\"frequency\": 1, \"value\": \"LinkedIn -Excel ...\"}, \"Speak Japanese Fluently - Master Conversational Japanese\": {\"frequency\": 1, \"value\": \"Speak Japanese ...\"}, \"Second Story, Interactive Design Studio\": {\"frequency\": 1, \"value\": \"Second Story, ...\"}, \"How to produce a Retro Techno House Record in Ableton\": {\"frequency\": 1, \"value\": \"How to produce a ...\"}, \"Introduction to R\": {\"frequency\": 1, \"value\": \"Introduction to R\"}, \"Mograph Techniques: Animating with C4D Effectors\": {\"frequency\": 1, \"value\": \"Mograph ...\"}, \"Introduction to Google Tools\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Routing Configuration & Router Administration\": {\"frequency\": 1, \"value\": \"Routing ...\"}, \"Russian Literature and Music\": {\"frequency\": 1, \"value\": \"Russian Literature ...\"}, \"Sonnets\": {\"frequency\": 1, \"value\": \"Sonnets\"}, \"InfoPath 2007 Essential Training\": {\"frequency\": 1, \"value\": \"InfoPath 2007 ...\"}, \"Exploring Chemistry\": {\"frequency\": 1, \"value\": \"Exploring ...\"}, \"Photoshop Blend Mode Magic\": {\"frequency\": 1, \"value\": \"Photoshop Blend ...\"}, \"6.00.1x: Introduction to Computer Science and Programming Using Python\": {\"frequency\": 1, \"value\": \"6.00.1x: ...\"}, \"Introduction to Oracle 11g Database Administration\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Social Media Marketing Crash Course\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"Lightroom 5 Essentials: 03 Develop Module Basics\": {\"frequency\": 1, \"value\": \"Lightroom 5 ...\"}, \"Internet Marketing: Online Branding and Display Ads\": {\"frequency\": 1, \"value\": \"Internet ...\"}, \"Use Outsourcing to be More Productive & More Profitable!\": {\"frequency\": 1, \"value\": \"Use Outsourcing to ...\"}, \"Become a Winner in the World of Kindle Publishing\": {\"frequency\": 1, \"value\": \"Become a Winner in ...\"}, \"Color 1.5 New Features\": {\"frequency\": 1, \"value\": \"Color 1.5 New ...\"}, \"RoboHelp 9 HTML Essential Training\": {\"frequency\": 1, \"value\": \"RoboHelp 9 HTML ...\"}, \"QuarkXPress 8 Essential Training\": {\"frequency\": 1, \"value\": \"QuarkXPress 8 ...\"}, \"How to price your photography for top dollar\": {\"frequency\": 1, \"value\": \"How to price your ...\"}, \"CINEMA 4D: Rendering Motion Graphics for After Effects\": {\"frequency\": 1, \"value\": \"CINEMA 4D: ...\"}, \"Excel 2010 Advanced\": {\"frequency\": 1, \"value\": \"Excel 2010 ...\"}, \"CSS: Gradients\": {\"frequency\": 1, \"value\": \"CSS: Gradients\"}, \"WOW Factor Sales Success Training\": {\"frequency\": 1, \"value\": \"WOW Factor Sales ...\"}, \"Flash Professional CS5: Creating a Simple Game for iOS Devices\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Codename One 101 - Write Native Mobile Apps In Java\": {\"frequency\": 1, \"value\": \"Codename One 101 - ...\"}, \"Web Development\": {\"frequency\": 1, \"value\": \"Web Development\"}, \"Technology Entrepreneurship Part 2\": {\"frequency\": 1, \"value\": \"Technology ...\"}, \"Energy, Balance and Power Flow Vinyasa Yoga\": {\"frequency\": 1, \"value\": \"Energy, Balance ...\"}, \"Build a Self-Destructing Message iPhone App\": {\"frequency\": 1, \"value\": \"Build a Self- ...\"}, \"Technology Entrepreneurship Part 1\": {\"frequency\": 1, \"value\": \"Technology ...\"}, \"Photoshop Elements 11 Essentials: 02 Editing and Retouching Photos\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"AJAX Development\": {\"frequency\": 1, \"value\": \"AJAX Development\"}, \"Quickly and Easily Create Content For the Web!\": {\"frequency\": 1, \"value\": \"Quickly and Easily ...\"}, \"Google Adwords Course: Invest & profit with live training\": {\"frequency\": 1, \"value\": \"Google Adwords ...\"}, \"Small Business Internet Marketing\": {\"frequency\": 1, \"value\": \"Small Business ...\"}, \"Visual Studio 2012 Essential Training\": {\"frequency\": 1, \"value\": \"Visual Studio 2012 ...\"}, \"Operations Management\": {\"frequency\": 1, \"value\": \"Operations ...\"}, \"Final Cut Express HD 3.5 Essential Training\": {\"frequency\": 1, \"value\": \"Final Cut Express ...\"}, \"PostgreSQL 9 with PHP Essential Training\": {\"frequency\": 1, \"value\": \"PostgreSQL 9 with ...\"}, \"The Nina Foch Online Course for Filmmakers and Actors\": {\"frequency\": 1, \"value\": \"The Nina Foch ...\"}, \"Blue Water Strategies for Business\": {\"frequency\": 1, \"value\": \"Blue Water ...\"}, \"Turbo Start on Web Design with ZURB's Foundation 4 Framework\": {\"frequency\": 1, \"value\": \"Turbo Start on Web ...\"}, \"CPE for CPAs EAs - Residential Rental Property Training 2013\": {\"frequency\": 1, \"value\": \"CPE for CPAs EAs - ...\"}, \"Acrobat 9 Pro Essential Training\": {\"frequency\": 1, \"value\": \"Acrobat 9 Pro ...\"}, \"Learning MySQL5 - An Easy Way To Master MySQL\": {\"frequency\": 1, \"value\": \"Learning MySQL5 - ...\"}, \"Douglas Kirkland on Photography: A Conversation with Gerd Ludwig\": {\"frequency\": 1, \"value\": \"Douglas Kirkland ...\"}, \"Insights from a Content Marketer\": {\"frequency\": 1, \"value\": \"Insights from a ...\"}, \"Learn Estimating & Cost Control\": {\"frequency\": 1, \"value\": \"Learn Estimating ...\"}, \"How To Fire a CustoMonster\": {\"frequency\": 1, \"value\": \"How To Fire a ...\"}, \"Excel 2010: Advanced Formulas and Functions\": {\"frequency\": 1, \"value\": \"Excel 2010: ...\"}, \"Mastering Vyatta Firewall! (Beginner to Advanced)\": {\"frequency\": 1, \"value\": \"Mastering Vyatta ...\"}, \"Building an Information Risk Management Toolkit\": {\"frequency\": 1, \"value\": \"Building an ...\"}, \"SEO Training\": {\"frequency\": 1, \"value\": \"SEO Training\"}, \"Finally Lose Weight without A Gym Membership\": {\"frequency\": 1, \"value\": \"Finally Lose ...\"}, \"How to Create Bestselling Kindle Ebook Covers - Series 1\": {\"frequency\": 1, \"value\": \"How to Create ...\"}, \"How to Become a Six Figure Income Professional Speaker\": {\"frequency\": 1, \"value\": \"How to Become a ...\"}, \"Premiere Elements 10 Essential Training\": {\"frequency\": 1, \"value\": \"Premiere Elements ...\"}, \"Flash CS4 Professional: Building Search Engine Friendly Sites\": {\"frequency\": 1, \"value\": \"Flash CS4 ...\"}, \"The Power of Persuasion\": {\"frequency\": 1, \"value\": \"The Power of ...\"}, \"6.002x: Circuits and Electronics\": {\"frequency\": 1, \"value\": \"6.002x: Circuits ...\"}, \"CPE for CPAs EAs - Accounting Ethics Training 2013\": {\"frequency\": 1, \"value\": \"CPE for CPAs EAs - ...\"}, \"Try Ruby\": {\"frequency\": 1, \"value\": \"Try Ruby\"}, \"Troika's ABC Brand Campaign: Start to Finish\": {\"frequency\": 1, \"value\": \"Troika's ABC ...\"}, \"Learn about Attention Deficit Disorder\": {\"frequency\": 1, \"value\": \"Learn about ...\"}, \"Fundamentals of Structured Writing for Technical Documentation\": {\"frequency\": 1, \"value\": \"Fundamentals of ...\"}, \"Differentiate or Die\": {\"frequency\": 1, \"value\": \"Differentiate or ...\"}, \"Assess Your Startup Idea - How to make a go/no-go decision\": {\"frequency\": 1, \"value\": \"Assess Your ...\"}, \"Fundraising Masters: The Ultimate Resource to Raising Money\": {\"frequency\": 1, \"value\": \"Fundraising ...\"}, \"How to Make a WordPress Blog\": {\"frequency\": 1, \"value\": \"How to Make a ...\"}, \"Up and Running with Excel 2010\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Negotiate Successfully in China\": {\"frequency\": 1, \"value\": \"Negotiate ...\"}, \"Picasa 2 Essential Training\": {\"frequency\": 1, \"value\": \"Picasa 2 Essential ...\"}, \"Outlook 2007: Time Management with Calendar and Tasks\": {\"frequency\": 1, \"value\": \"Outlook 2007: Time ...\"}, \"Introduction to Logic\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Learn Ableton Live - Quick Start\": {\"frequency\": 1, \"value\": \"Learn Ableton Live ...\"}, \"UT.1.01x: Energy 101\": {\"frequency\": 1, \"value\": \"UT.1.01x: Energy ...\"}, \"Flash Professional: Creative Cloud Updates\": {\"frequency\": 1, \"value\": \"Flash ...\"}, \"Advanced Craft Photography\": {\"frequency\": 1, \"value\": \"Advanced Craft ...\"}, \"Photoshop CS4 Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop CS4 ...\"}, \"IOS & Mac OS X Programming Tutorial - Objective C & Xcode\": {\"frequency\": 1, \"value\": \"IOS & Mac OS X ...\"}, \"Illustrator CS4 One-on-One: Mastery\": {\"frequency\": 1, \"value\": \"Illustrator CS4 ...\"}, \"iOS 6: iOS System Resources\": {\"frequency\": 1, \"value\": \"iOS 6: iOS System ...\"}, \"Yoga @ Home with Meta - Immersion for Intermediate Students\": {\"frequency\": 1, \"value\": \"Yoga @ Home with ...\"}, \"Learn Avid Media Composer\": {\"frequency\": 1, \"value\": \"Learn Avid Media ...\"}, \"Business Planning for the Average Human\": {\"frequency\": 1, \"value\": \"Business Planning ...\"}, \"Up and Running with CINEMA 4D Lite for After Effects\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Premiere Pro: Frequently Asked Questions\": {\"frequency\": 1, \"value\": \"Premiere Pro: ...\"}, \"Kick Start Your Coaching Program\": {\"frequency\": 1, \"value\": \"Kick Start Your ...\"}, \"Flash CS4 Professional Getting Started\": {\"frequency\": 1, \"value\": \"Flash CS4 ...\"}, \"Make crazy money serving in restaurants.\": {\"frequency\": 1, \"value\": \"Make crazy money ...\"}, \"Getting Started with Corel Paint Shop Pro Photo X2\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Social Media Marketing with Facebook and Twitter\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"C++ Fundamentals Part I and II\": {\"frequency\": 1, \"value\": \"C++ Fundamentals ...\"}, \"InDesign CS2 Professional Typography\": {\"frequency\": 1, \"value\": \"InDesign CS2 ...\"}, \"Essential Photography Skills - Beginner Digital SLR Training\": {\"frequency\": 1, \"value\": \"Essential ...\"}, \"Critical Thinking in Global Challenges\": {\"frequency\": 1, \"value\": \"Critical Thinking ...\"}, \"Screencasting with the Mac\": {\"frequency\": 1, \"value\": \"Screencasting with ...\"}, \"How to create an Impressive & Creative "Website Resume"\": {\"frequency\": 1, \"value\": \"How to create an ...\"}, \"Learn to Program: The Fundamentals\": {\"frequency\": 1, \"value\": \"Learn to Program: ...\"}, \"Up and Running with FileMaker Go\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"DVD Studio Pro 4 Essential Training\": {\"frequency\": 1, \"value\": \"DVD Studio Pro 4 ...\"}, \"Getting Started with CAT Rigging Tools in 3ds Max\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"A Young Entrepreneur's Guide To Starting A Business: Part 1\": {\"frequency\": 1, \"value\": \"A Young ...\"}, \"Fixing Video Exposure Problems in Premiere Pro\": {\"frequency\": 1, \"value\": \"Fixing Video ...\"}, \"Photorealism with Bert Monroy: Volume 2\": {\"frequency\": 1, \"value\": \"Photorealism with ...\"}, \"Rapid Prototyping: From Wireframes to HTML\": {\"frequency\": 1, \"value\": \"Rapid Prototyping: ...\"}, \"Rails 4 Patterns\": {\"frequency\": 1, \"value\": \"Rails 4 Patterns\"}, \"Optimizing The Early Phases of Innovation\": {\"frequency\": 1, \"value\": \"Optimizing The ...\"}, \"Photoshop Insider Training: Photo Restoration\": {\"frequency\": 1, \"value\": \"Photoshop Insider ...\"}, \"Smart Object Workflows - Adobe Photoshop\": {\"frequency\": 1, \"value\": \"Smart Object ...\"}, \"Game Asset Modeling - The SciFi Pistol Workflow\": {\"frequency\": 1, \"value\": \"Game Asset ...\"}, \"Getting Started with Corel Paint Shop Pro Photo XI\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Introduction to Lashes\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"The ACT Math Test Made Easy\": {\"frequency\": 1, \"value\": \"The ACT Math Test ...\"}, \"Bloggers Creed - The Fastest Way To Become A Pro Blogger\": {\"frequency\": 1, \"value\": \"Bloggers Creed - ...\"}, \"Number 1 Mistake in Corporate Communications\": {\"frequency\": 1, \"value\": \"Number 1 Mistake ...\"}, \"After Effects Apprentice 07: Parenting\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"How To Rake In Thousands Of Facebook Page Likes Overnight!\": {\"frequency\": 1, \"value\": \"How To Rake In ...\"}, \"CSS Development (with CSS3!)\": {\"frequency\": 1, \"value\": \"CSS Development ...\"}, \"Oracle 11g PL/SQL Fundamentals 1\": {\"frequency\": 1, \"value\": \"Oracle 11g PL/SQL ...\"}, \"InDesign CS4 Beyond the Basics\": {\"frequency\": 1, \"value\": \"InDesign CS4 ...\"}, \"Yoga for Neck and Back Care\": {\"frequency\": 1, \"value\": \"Yoga for Neck and ...\"}, \"The Passive Income Stream Marketing Funnel\": {\"frequency\": 1, \"value\": \"The Passive Income ...\"}, \"Regression Therapy With NLP & Hypnosis\": {\"frequency\": 1, \"value\": \"Regression Therapy ...\"}, \"Shooting on the Road, from Gear to Workflow\": {\"frequency\": 1, \"value\": \"Shooting on the ...\"}, \"Dreamweaver CS5 Essential Training\": {\"frequency\": 1, \"value\": \"Dreamweaver CS5 ...\"}, \"Understand your Business: Earn More Money\": {\"frequency\": 1, \"value\": \"Understand your ...\"}, \"Office 2010 New Features\": {\"frequency\": 1, \"value\": \"Office 2010 New ...\"}, \"Up and Running with Linux for PHP Developers\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"iMovie '08 Essential Training\": {\"frequency\": 1, \"value\": \"iMovie '08 ...\"}, \"The Financial Relief Mindset: Rich or Poor -- YOUR Choice!\": {\"frequency\": 1, \"value\": \"The Financial ...\"}, \"Excel 2013: Introducing Excel\": {\"frequency\": 1, \"value\": \"Excel 2013: ...\"}, \"Outlook 2013 Essential Training\": {\"frequency\": 1, \"value\": \"Outlook 2013 ...\"}, \"Clean & Organize Your Mac In Under 2 Hours\": {\"frequency\": 1, \"value\": \"Clean & ...\"}, \"Unleashing the Power of Publicity\": {\"frequency\": 1, \"value\": \"Unleashing the ...\"}, \"PowerPoint 2010 Essential Training\": {\"frequency\": 1, \"value\": \"PowerPoint 2010 ...\"}, \"How to create web apps for desktop & mobile Dreamweaver CC\": {\"frequency\": 1, \"value\": \"How to create web ...\"}, \"Excel 2013 The Basics\": {\"frequency\": 1, \"value\": \"Excel 2013 The ...\"}, \"Revit Architecture for Beginners\": {\"frequency\": 1, \"value\": \"Revit Architecture ...\"}, \"After Effects Apprentice 04: Layer Control\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"Excel 2010 Beginner: ZERO to HERO in just 1 day\": {\"frequency\": 1, \"value\": \"Excel 2010 ...\"}, \"High Performance Scientific Computing\": {\"frequency\": 1, \"value\": \"High Performance ...\"}, \"Flash Professional CS5: Character Animation\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"How to Create a Successful WordPress Site\": {\"frequency\": 1, \"value\": \"How to Create a ...\"}, \"Reaching Your Kickstarter Goals\": {\"frequency\": 1, \"value\": \"Reaching Your ...\"}, \"After Effects Advanced Motion Graphics\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"Career Mind Mastery: Bring Who You Are to What You Do\": {\"frequency\": 1, \"value\": \"Career Mind ...\"}, \"Task Analysis Boot Camp-What You Need To Know Before Design\": {\"frequency\": 1, \"value\": \"Task Analysis Boot ...\"}, \"Excel 2010 VBA\": {\"frequency\": 1, \"value\": \"Excel 2010 VBA\"}, \"Foundations of Programming: Object-Oriented Design\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"4 Proven Principles For Creating A Life Worth Living\": {\"frequency\": 1, \"value\": \"4 Proven ...\"}, \"How to coach to develop the skills of your team\": {\"frequency\": 1, \"value\": \"How to coach to ...\"}, \"Joomla! 1.5: Styling with CSS\": {\"frequency\": 1, \"value\": \"Joomla! 1.5: ...\"}, \"Creating an MP3 Player with HTML5\": {\"frequency\": 1, \"value\": \"Creating an MP3 ...\"}, \"Learn To Program with Pascal\": {\"frequency\": 1, \"value\": \"Learn To Program ...\"}, \"Try iOS\": {\"frequency\": 1, \"value\": \"Try iOS\"}, \"Creating an Online Resume: Hands-On Training\": {\"frequency\": 1, \"value\": \"Creating an Online ...\"}, \"Thrive90 Fitness Program: Real Results for the Really Busy\": {\"frequency\": 1, \"value\": \"Thrive90 Fitness ...\"}, \"Documentary Editing with Premiere Pro\": {\"frequency\": 1, \"value\": \"Documentary ...\"}, \"Internet History, Technology, and Security\": {\"frequency\": 1, \"value\": \"Internet History, ...\"}, \"Building Android and iOS Applications with Flex\": {\"frequency\": 1, \"value\": \"Building Android ...\"}, \"Create a website in 6 hours - guaranteed\": {\"frequency\": 1, \"value\": \"Create a website ...\"}, \"Twitter for Real Estate\": {\"frequency\": 1, \"value\": \"Twitter for Real ...\"}, \"Trigger, Interactive Design Studio\": {\"frequency\": 1, \"value\": \"Trigger, ...\"}, \"Creating Perspective with Photoshop\": {\"frequency\": 1, \"value\": \"Creating ...\"}, \"Photoshop CS5 for Photographers\": {\"frequency\": 1, \"value\": \"Photoshop CS5 for ...\"}, \"Introduction to Sustainability\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"On Getting Published\": {\"frequency\": 1, \"value\": \"On Getting ...\"}, \"ActionScript 3.0: Building Particle Systems\": {\"frequency\": 1, \"value\": \"ActionScript 3.0: ...\"}, \"Hilary Mason: An Intro to Machine Learning with Web Data\": {\"frequency\": 1, \"value\": \"Hilary Mason: An ...\"}, \"Basic Steps In Retirement Planning\": {\"frequency\": 1, \"value\": \"Basic Steps In ...\"}, \"Tourism Industry Analysis\": {\"frequency\": 1, \"value\": \"Tourism Industry ...\"}, \"Building Android and iOS Apps with Dreamweaver CS5.5\": {\"frequency\": 1, \"value\": \"Building Android ...\"}, \"Painter 11 Essential Training\": {\"frequency\": 1, \"value\": \"Painter 11 ...\"}, \"Sustainable Energy Innovation\": {\"frequency\": 1, \"value\": \"Sustainable Energy ...\"}, \"Adobe Digital Publishing Suite (DPS) for Beginners\": {\"frequency\": 1, \"value\": \"Adobe Digital ...\"}, \"Build Wordpress Custom Child Themes:The Easy Dreamweaver Way\": {\"frequency\": 1, \"value\": \"Build Wordpress ...\"}, \"How To Build Lasting Relationships With Journalists\": {\"frequency\": 1, \"value\": \"How To Build ...\"}, \"Physics\": {\"frequency\": 1, \"value\": \"Physics\"}, \"SAP Security Training for Beginners to Advance Users\": {\"frequency\": 1, \"value\": \"SAP Security ...\"}, \"Migrating from Access 2003 to Access 2007\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Up and Running with Sublime Text 2\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Long Exposure Photography\": {\"frequency\": 1, \"value\": \"Long Exposure ...\"}, \"Learn SAP Financial Accounting - Online Training\": {\"frequency\": 1, \"value\": \"Learn SAP ...\"}, \"Accessibility Features of iOS for the iPad and iPhone\": {\"frequency\": 1, \"value\": \"Accessibility ...\"}, \"HTML5 & CSS3 Site Design\": {\"frequency\": 1, \"value\": \"HTML5 & CSS3 ...\"}, \"Discover DevTools\": {\"frequency\": 1, \"value\": \"Discover DevTools\"}, \"Aesthetic Foundations\": {\"frequency\": 1, \"value\": \"Aesthetic ...\"}, \"The Creative Spark: Brian Taylor, Handmade Photography\": {\"frequency\": 1, \"value\": \"The Creative ...\"}, \"FOREX The Complete Trading System\": {\"frequency\": 1, \"value\": \"FOREX The Complete ...\"}, \"2011 SBIFF Writers' Panel: It Starts with the Script\": {\"frequency\": 1, \"value\": \"2011 SBIFF ...\"}, \"C# 2012 Fundamentals Part I\": {\"frequency\": 1, \"value\": \"C# 2012 ...\"}, \"Hacking School Training - Try it now!\": {\"frequency\": 1, \"value\": \"Hacking School ...\"}, \"Jazz Guitar Chords: "Lesson 2"\": {\"frequency\": 1, \"value\": \"Jazz Guitar ...\"}, \"The Elements of Effective Photographs\": {\"frequency\": 1, \"value\": \"The Elements of ...\"}, \"Makeup: Becoming a Professional Hollywood Makeup Artist\": {\"frequency\": 1, \"value\": \"Makeup: Becoming a ...\"}, \"Migrating from Final Cut Pro 7 to Avid Media Composer 5.5\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Designing an Invitation\": {\"frequency\": 1, \"value\": \"Designing an ...\"}, \"App Development for Beginners - Without a Line of Code\": {\"frequency\": 1, \"value\": \"App Development ...\"}, \"Ruby\": {\"frequency\": 1, \"value\": \"Ruby\"}, \"Vaccine Trials: Methods and Best Practices\": {\"frequency\": 1, \"value\": \"Vaccine Trials: ...\"}, \"Up and Running with REAPER 4\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Try jQuery\": {\"frequency\": 1, \"value\": \"Try jQuery\"}, \"Narrative Portraiture: On Location in Texas with Keith Carter\": {\"frequency\": 1, \"value\": \"Narrative ...\"}, \"Oracle 11g Tutorial - A Comprehensive Training Course\": {\"frequency\": 1, \"value\": \"Oracle 11g ...\"}, \"HTML5 Mobile Game Development for Beginners\": {\"frequency\": 1, \"value\": \"HTML5 Mobile Game ...\"}, \"Fortune Favors the Brave: Ancient Lessons for Modern Success\": {\"frequency\": 1, \"value\": \"Fortune Favors the ...\"}, \"Fashion Design Illustration For Beginners\": {\"frequency\": 1, \"value\": \"Fashion Design ...\"}, \"Twitter Bootstrap for Beginners\": {\"frequency\": 1, \"value\": \"Twitter Bootstrap ...\"}, \"Migrating from Word 2003 to Word 2007\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Mac OS X Server 10.5 Leopard Essential Training\": {\"frequency\": 1, \"value\": \"Mac OS X Server ...\"}, \"Autodesk Revit MEP 2013\": {\"frequency\": 1, \"value\": \"Autodesk Revit MEP ...\"}, \"Creating Time-Lapse Video\": {\"frequency\": 1, \"value\": \"Creating Time- ...\"}, \"Get Job Interviews using Social Media (Self-Branding Studio)\": {\"frequency\": 1, \"value\": \"Get Job Interviews ...\"}, \"Fast Track to Microsoft Word\": {\"frequency\": 1, \"value\": \"Fast Track to ...\"}, \"SQL Server 2008 Essential Training\": {\"frequency\": 1, \"value\": \"SQL Server 2008 ...\"}, \"Joomla! 1.6 and 1.7 Essential Training\": {\"frequency\": 1, \"value\": \"Joomla! 1.6 and ...\"}, \"Learning Autodesk AutoCAD - Crash Course\": {\"frequency\": 1, \"value\": \"Learning Autodesk ...\"}, \"Mobile Marketing Academy\": {\"frequency\": 1, \"value\": \"Mobile Marketing ...\"}, \"Buying Websites\": {\"frequency\": 1, \"value\": \"Buying Websites\"}, \"After Effects: Insight into Effects\": {\"frequency\": 1, \"value\": \"After Effects: ...\"}, \"Inspired Entrepreneurs: Make a Difference. Get Things Done.\": {\"frequency\": 1, \"value\": \"Inspired ...\"}, \"Lighting for Photographers: Flash Exposure Fundamentals\": {\"frequency\": 1, \"value\": \"Lighting for ...\"}, \"Spanish 1-4: Beginner, Elementary, Intermediate and Advanced\": {\"frequency\": 1, \"value\": \"Spanish 1-4: ...\"}, \"Illustrator CS5 New Features Overview\": {\"frequency\": 1, \"value\": \"Illustrator CS5 ...\"}, \"Joomla! 1.5: Creating and Editing Custom Templates\": {\"frequency\": 1, \"value\": \"Joomla! 1.5: ...\"}, \"Moodle 1.9 Essential Training for Teachers\": {\"frequency\": 1, \"value\": \"Moodle 1.9 ...\"}, \"ITIL Foundation Course\": {\"frequency\": 1, \"value\": \"ITIL Foundation ...\"}, \"How to Make D.I.Y. Videos for Business\": {\"frequency\": 1, \"value\": \"How to Make D.I.Y. ...\"}, \"Discover the 7 Secrets to Figure Drawing: Draw Awesome ...\": {\"frequency\": 1, \"value\": \"Discover the 7 ...\"}, \"PennyStocking Part Deux: Penny Stock Trading\": {\"frequency\": 1, \"value\": \"PennyStocking Part ...\"}, \"Computational Investing, Part I\": {\"frequency\": 1, \"value\": \"Computational ...\"}, \"HTML\": {\"frequency\": 2, \"value\": \"HTML\"}, \"First Peoples to the Early Republic: Born in Colonialism\": {\"frequency\": 1, \"value\": \"First Peoples to ...\"}, \"Photoshop CS4 Extended for Video\": {\"frequency\": 1, \"value\": \"Photoshop CS4 ...\"}, \"Office 2007 New Features\": {\"frequency\": 1, \"value\": \"Office 2007 New ...\"}, \"Learn Python, it's CAKE (Beginners)\": {\"frequency\": 1, \"value\": \"Learn Python, ...\"}, \"Create an HTML5 Video Gallery with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create an HTML5 ...\"}, \"SPSS Statistics Essential Training\": {\"frequency\": 1, \"value\": \"SPSS Statistics ...\"}, \"Fabulae Faciles: Perseus 1-11\": {\"frequency\": 1, \"value\": \"Fabulae Faciles: ...\"}, \"Photoshop CS6 Image Cleanup Workshop\": {\"frequency\": 1, \"value\": \"Photoshop CS6 ...\"}, \"Foundations of Photography: Composition\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Inferential Statistics in SPSS Step by Step\": {\"frequency\": 1, \"value\": \"Inferential ...\"}, \"How to Make a Podcast with Garageband\": {\"frequency\": 1, \"value\": \"How to Make a ...\"}, \"Create a Damn Good Business Plan !?\": {\"frequency\": 1, \"value\": \"Create a Damn Good ...\"}, \"Learn Python GUI programming using Qt framework\": {\"frequency\": 1, \"value\": \"Learn Python GUI ...\"}, \"SAP LSMW ( Legacy System Migration Workbench )\": {\"frequency\": 1, \"value\": \"SAP LSMW ( Legacy ...\"}, \"How To Innovate: Move Beyond The Idea\": {\"frequency\": 1, \"value\": \"How To Innovate: ...\"}, \"Java Fundamentals I and II\": {\"frequency\": 1, \"value\": \"Java Fundamentals ...\"}, \"CPE for CPAs EAs - Reporting Tip Income Training 2013\": {\"frequency\": 1, \"value\": \"CPE for CPAs EAs - ...\"}, \"Web Design Fundamentals\": {\"frequency\": 1, \"value\": \"Web Design ...\"}, \"Google Analytics Essential Training\": {\"frequency\": 1, \"value\": \"Google Analytics ...\"}, \"Photoshop and Bridge CS5 for Photographers New Features\": {\"frequency\": 1, \"value\": \"Photoshop and ...\"}, \"Photoshop CS3 Sharpening Images\": {\"frequency\": 1, \"value\": \"Photoshop CS3 ...\"}, \"Captivate 5 Essential Training\": {\"frequency\": 1, \"value\": \"Captivate 5 ...\"}, \"Small Business. Marketing Media Communication PR Training\": {\"frequency\": 1, \"value\": \"Small Business. ...\"}, \"Software Debugging\": {\"frequency\": 1, \"value\": \"Software Debugging\"}, \"Islam for Busy People\": {\"frequency\": 1, \"value\": \"Islam for Busy ...\"}, \"Rapid Kindle eBook Creation For Beginners\": {\"frequency\": 1, \"value\": \"Rapid Kindle eBook ...\"}, \"Your First $100 Photography Gig\": {\"frequency\": 1, \"value\": \"Your First $100 ...\"}, \"SAP OS/DB Migrations A SAP Basis Advanced Training\": {\"frequency\": 1, \"value\": \"SAP OS/DB ...\"}, \"Microsoft Word 2010 Tutorial - Learning Made Easy\": {\"frequency\": 1, \"value\": \"Microsoft Word ...\"}, \"InDesign: 10 Tips for Troubleshooting Files\": {\"frequency\": 1, \"value\": \"InDesign: 10 Tips ...\"}, \"Adobe InDesign CS6\": {\"frequency\": 1, \"value\": \"Adobe InDesign CS6\"}, \"Adobe After Effects CS6\": {\"frequency\": 1, \"value\": \"Adobe After ...\"}, \"Build Your Email List With MailChimp Or Aweber\": {\"frequency\": 1, \"value\": \"Build Your Email ...\"}, \"ASP.NET MVC 4\": {\"frequency\": 1, \"value\": \"ASP.NET MVC 4\"}, \"Get a Job in the Video Game Industry\": {\"frequency\": 1, \"value\": \"Get a Job in the ...\"}, \"Dreamweaver CS5: Getting Started with HTML5\": {\"frequency\": 1, \"value\": \"Dreamweaver CS5: ...\"}, \"Semantic Search Optimization Techniques for Webmasters\": {\"frequency\": 1, \"value\": \"Semantic Search ...\"}, \"iMovie '11 Essential Training\": {\"frequency\": 1, \"value\": \"iMovie '11 ...\"}, \"Python with eclipse and InfoSec\": {\"frequency\": 1, \"value\": \"Python with ...\"}, \"Creating a Digital Illustration with Photoshop CS5\": {\"frequency\": 1, \"value\": \"Creating a Digital ...\"}, \"How to Build Your Own Online Business with WordPress\": {\"frequency\": 1, \"value\": \"How to Build Your ...\"}, \"Living Yoga: 7 Pathways to Liberated Living\": {\"frequency\": 1, \"value\": \"Living Yoga: 7 ...\"}, \"Music System modeling in Maya\": {\"frequency\": 1, \"value\": \"Music System ...\"}, \"Personal Development: 10 Power Elements For Success\": {\"frequency\": 1, \"value\": \"Personal ...\"}, \"Get fit with Extreme Kickboxing Workout!\": {\"frequency\": 1, \"value\": \"Get fit with ...\"}, \"CorelDRAW 12 Beyond the Basics\": {\"frequency\": 1, \"value\": \"CorelDRAW 12 ...\"}, \"How to Lose Fat and Keep it Off\": {\"frequency\": 1, \"value\": \"How to Lose Fat ...\"}, \"Shooting with Wireless Flash: Studio Portraits\": {\"frequency\": 1, \"value\": \"Shooting with ...\"}, \"HDS1544.1x: Early Christianity: The Letters of Paul\": {\"frequency\": 1, \"value\": \"HDS1544.1x: Early ...\"}, \"After Effects CS5.5 New Creative Techniques\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"Android Programming I\": {\"frequency\": 1, \"value\": \"Android ...\"}, \"Oil/Acrylic Painting Techniques and Color Theory\": {\"frequency\": 1, \"value\": \"Oil/Acrylic ...\"}, \"HTML5 Projects: Integrating Google Store Locator\": {\"frequency\": 1, \"value\": \"HTML5 Projects: ...\"}, \"Rockstar Teacher Training\": {\"frequency\": 1, \"value\": \"Rockstar Teacher ...\"}, \"Bridge CC for Photographers\": {\"frequency\": 1, \"value\": \"Bridge CC for ...\"}, \"2013 Essential Wordpress 3.6 Basic Training\": {\"frequency\": 1, \"value\": \"2013 Essential ...\"}, \"How to Build an Email List without a Website\": {\"frequency\": 1, \"value\": \"How to Build an ...\"}, \"Linkedin Profile Optimization for Search\": {\"frequency\": 1, \"value\": \"Linkedin Profile ...\"}, \"CTB3365x: Introduction to Water Treatment\": {\"frequency\": 1, \"value\": \"CTB3365x: ...\"}, \"College Algebra\": {\"frequency\": 1, \"value\": \"College Algebra\"}, \"The Essential Guide to Adobe Digital Publishing Suite\": {\"frequency\": 1, \"value\": \"The Essential ...\"}, \"Learning iPad Programming: Building iPad Apps with iOS 5\": {\"frequency\": 1, \"value\": \"Learning iPad ...\"}, \"Dreamweaver CS4 New Features\": {\"frequency\": 1, \"value\": \"Dreamweaver CS4 ...\"}, \"Building Your First Windows Store App with XAML and Visual Basic\": {\"frequency\": 1, \"value\": \"Building Your ...\"}, \"Developing and Measuring Training The Agile Way\": {\"frequency\": 1, \"value\": \"Developing and ...\"}, \"Master College Admissions: Financial Aid Made Simple\": {\"frequency\": 1, \"value\": \"Master College ...\"}, \"Advanced Microsoft Excel 2013. Online Excel Training Course\": {\"frequency\": 1, \"value\": \"Advanced Microsoft ...\"}, \"Image and video processing: From Mars to Hollywood with a stop at the hospital\": {\"frequency\": 1, \"value\": \"Image and video ...\"}, \"iBooks Author for Teachers: Fundamentals\": {\"frequency\": 1, \"value\": \"iBooks Author for ...\"}, \"Small Business Success with John Spence\": {\"frequency\": 1, \"value\": \"Small Business ...\"}, \"Implementing SFA using Salesforce Professional Edition\": {\"frequency\": 1, \"value\": \"Implementing SFA ...\"}, \"Illustrator CS5 Essential Training\": {\"frequency\": 1, \"value\": \"Illustrator CS5 ...\"}, \"Flash Catalyst CS5.5 Essential Training\": {\"frequency\": 1, \"value\": \"Flash Catalyst ...\"}, \"Become a Certified Traditional Usui Reiki Master\": {\"frequency\": 1, \"value\": \"Become a Certified ...\"}, \"Freelance Journalism in 90 minutes\": {\"frequency\": 1, \"value\": \"Freelance ...\"}, \"Beginners - Learning Regular Expressions For Programmers\": {\"frequency\": 1, \"value\": \"Beginners - ...\"}, \"Understanding and Complying with HIPAA\": {\"frequency\": 1, \"value\": \"Understanding and ...\"}, \"Photoshop CS3 Extended for BioMedical Research\": {\"frequency\": 1, \"value\": \"Photoshop CS3 ...\"}, \"Learn English (PreIntermediate / Intermediate)\": {\"frequency\": 1, \"value\": \"Learn English ...\"}, \"Info Marketing Classroom - Kindle and Beyond\": {\"frequency\": 1, \"value\": \"Info Marketing ...\"}, \"Add Your jQuery Project to a Digital Magazine\": {\"frequency\": 1, \"value\": \"Add Your jQuery ...\"}, \"CSS for Designers\": {\"frequency\": 1, \"value\": \"CSS for Designers\"}, \"AutoCAD Tutorial\": {\"frequency\": 1, \"value\": \"AutoCAD Tutorial\"}, \"Soundtrack Pro 2 Essential Training\": {\"frequency\": 1, \"value\": \"Soundtrack Pro 2 ...\"}, \"Geometry\": {\"frequency\": 2, \"value\": \"Geometry\"}, \"iPhoto For Beginners\": {\"frequency\": 1, \"value\": \"iPhoto For ...\"}, \"OpenOffice.org 2 Draw Getting Started\": {\"frequency\": 1, \"value\": \"OpenOffice.org 2 ...\"}, \"Adding a Filmic Glow to Your Footage Using Motion\": {\"frequency\": 1, \"value\": \"Adding a Filmic ...\"}, \"Generation Rx: The Science Behind Prescription Drug Abuse\": {\"frequency\": 1, \"value\": \"Generation Rx: The ...\"}, \"Learning V-Ray for Maya: A Professional Reference Guide\": {\"frequency\": 1, \"value\": \"Learning V-Ray for ...\"}, \"Color Management Fundamentals\": {\"frequency\": 1, \"value\": \"Color Management ...\"}, \"Equine Nutrition\": {\"frequency\": 1, \"value\": \"Equine Nutrition\"}, \"Migrating from Joomla! 1.5 to Joomla! 2.5\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Photoshop CS6 Text Workshop\": {\"frequency\": 1, \"value\": \"Photoshop CS6 Text ...\"}, \"ActionScript 3.0 in Flash CS3 Professional Beyond the Basics\": {\"frequency\": 1, \"value\": \"ActionScript 3.0 ...\"}, \"Everyday Mind Mastery\": {\"frequency\": 1, \"value\": \"Everyday Mind ...\"}, \"4 Steps: Get Cash Promoting Products Online w/ Social Sites.\": {\"frequency\": 1, \"value\": \"4 Steps: Get Cash ...\"}, \"GCSE Maths- Your ultimate In-depth video guide\": {\"frequency\": 1, \"value\": \"GCSE Maths- Your ...\"}, \"How to Buy or Invest in Real Estate in the Post-Bubble Era\": {\"frequency\": 1, \"value\": \"How to Buy or ...\"}, \"Up and Running with Audacity\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Build a Responsive Website\": {\"frequency\": 1, \"value\": \"Build a Responsive ...\"}, \"MVC Frameworks for Building PHP Web Applications\": {\"frequency\": 1, \"value\": \"MVC Frameworks for ...\"}, \"Outlook 2010 Advanced\": {\"frequency\": 1, \"value\": \"Outlook 2010 ...\"}, \"Git Essential Training\": {\"frequency\": 1, \"value\": \"Git Essential ...\"}, \"Git Basics: In Theory and Practice\": {\"frequency\": 1, \"value\": \"Git Basics: In ...\"}, \"Health for All Through Primary Health Care\": {\"frequency\": 1, \"value\": \"Health for All ...\"}, \"How to Start a Profitable Wordpress Blog\": {\"frequency\": 1, \"value\": \"How to Start a ...\"}, \"Leading Productive One-on-One Meetings\": {\"frequency\": 1, \"value\": \"Leading Productive ...\"}, \"Advanced Ruby Programming: 10 Steps to Mastery\": {\"frequency\": 1, \"value\": \"Advanced Ruby ...\"}, \"Time Management Training with Outlook\": {\"frequency\": 1, \"value\": \"Time Management ...\"}, \"Branding, Public Relations, and Social Media Foundations\": {\"frequency\": 1, \"value\": \"Branding, Public ...\"}, \"Copywriting for Pros\": {\"frequency\": 1, \"value\": \"Copywriting for ...\"}, \"Finding Your Ideal Customer: Get More Sales Almost Overnight\": {\"frequency\": 1, \"value\": \"Finding Your Ideal ...\"}, \"Digital Security Awareness\": {\"frequency\": 1, \"value\": \"Digital Security ...\"}, \"Learning InDesign 2\": {\"frequency\": 1, \"value\": \"Learning InDesign ...\"}, \"JavaScript and JSON\": {\"frequency\": 1, \"value\": \"JavaScript and ...\"}, \"Adobe Edge Reflow: How to build a Responsive Design Website\": {\"frequency\": 1, \"value\": \"Adobe Edge Reflow: ...\"}, \"Improve Your Physical and Mental Success with Tai Chi\": {\"frequency\": 1, \"value\": \"Improve Your ...\"}, \"FrameMaker 10 Essential Training\": {\"frequency\": 1, \"value\": \"FrameMaker 10 ...\"}, \"SQLite 3 with PHP Essential Training\": {\"frequency\": 1, \"value\": \"SQLite 3 with PHP ...\"}, \"Kids Coding - Beginners CSS\": {\"frequency\": 1, \"value\": \"Kids Coding - ...\"}, \"The Creative Spark: Brian Kaufman, Visual Journalist\": {\"frequency\": 1, \"value\": \"The Creative ...\"}, \"Completing Your Outdoor Photography with Landscape Filters\": {\"frequency\": 1, \"value\": \"Completing Your ...\"}, \"Photoshop CS3 New Features\": {\"frequency\": 1, \"value\": \"Photoshop CS3 New ...\"}, \"How to Design a Logo - a Beginners Course\": {\"frequency\": 1, \"value\": \"How to Design a ...\"}, \"Promoting Your Content With Internet Radio and Podcasts\": {\"frequency\": 1, \"value\": \"Promoting Your ...\"}, \"HLS1x: Copyright\": {\"frequency\": 1, \"value\": \"HLS1x: Copyright\"}, \"Negotiating Your Salary\": {\"frequency\": 1, \"value\": \"Negotiating Your ...\"}, \"Learning Internet Explorer 6\": {\"frequency\": 1, \"value\": \"Learning Internet ...\"}, \"Git Real 2\": {\"frequency\": 1, \"value\": \"Git Real 2\"}, \"Photoshop for Video Editors: Core Skills\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"Access 2007: Forms and Reports in Depth\": {\"frequency\": 1, \"value\": \"Access 2007: Forms ...\"}, \"Healthcare Innovation and Entrepreneurship\": {\"frequency\": 1, \"value\": \"Healthcare ...\"}, \"No Pixels Harmed!\": {\"frequency\": 1, \"value\": \"No Pixels Harmed!\"}, \"Marketing Research for Profit\": {\"frequency\": 1, \"value\": \"Marketing Research ...\"}, \"QuickBooks Pro 2012 Essential Training\": {\"frequency\": 1, \"value\": \"QuickBooks Pro ...\"}, \"Learning QuarkXPress 5\": {\"frequency\": 1, \"value\": \"Learning ...\"}, \"Up and Running with Adobe Story\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Yoga Facial - Effective Facial Exercises\": {\"frequency\": 1, \"value\": \"Yoga Facial - ...\"}, \"Excel 2010: Managing Multiple Worksheets and Workbooks\": {\"frequency\": 1, \"value\": \"Excel 2010: ...\"}, \"Aperture 2 New Features\": {\"frequency\": 1, \"value\": \"Aperture 2 New ...\"}, \"Acrobat 9 Pro Tips and Tricks\": {\"frequency\": 1, \"value\": \"Acrobat 9 Pro Tips ...\"}, \"Learn HTML5 At Your Own Pace. Ideal for Beginners\": {\"frequency\": 1, \"value\": \"Learn HTML5 At ...\"}, \"Word 2010 Power Shortcuts\": {\"frequency\": 1, \"value\": \"Word 2010 Power ...\"}, \"Brand Building Basics\": {\"frequency\": 1, \"value\": \"Brand Building ...\"}, \"WordPress Essentials\": {\"frequency\": 1, \"value\": \"WordPress ...\"}, \"Interactive 3D Graphics\": {\"frequency\": 1, \"value\": \"Interactive 3D ...\"}, \"Photoshop CS5 Extended One-on-One: 3D Objects\": {\"frequency\": 1, \"value\": \"Photoshop CS5 ...\"}, \"Functional Programming Principles in Scala\": {\"frequency\": 1, \"value\": \"Functional ...\"}, \"Photoshop Selections Workshop\": {\"frequency\": 1, \"value\": \"Photoshop ...\"}, \"Cisco 640-816 (ICND2) Exam Training Made Easy\": {\"frequency\": 1, \"value\": \"Cisco 640-816 ...\"}, \"Frugal Living\": {\"frequency\": 1, \"value\": \"Frugal Living\"}, \"The Modern and the Postmodern\": {\"frequency\": 1, \"value\": \"The Modern and the ...\"}, \"Mastercam X7 Multi-Axis Video Tutorial Training\": {\"frequency\": 1, \"value\": \"Mastercam X7 ...\"}, \"Become a Professional Photographer\": {\"frequency\": 1, \"value\": \"Become a ...\"}, \"Pinterest POWER! Discover this HOT social network.\": {\"frequency\": 1, \"value\": \"Pinterest POWER! ...\"}, \"Introduction to Directing in the Real World\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Off-Road Driving - Tips & Skills\": {\"frequency\": 1, \"value\": \"Off-Road Driving - ...\"}, \"Composition: From Snapshots to Great Shots\": {\"frequency\": 1, \"value\": \"Composition: From ...\"}, \"Illustrator CC One-on-One: Fundamentals\": {\"frequency\": 1, \"value\": \"Illustrator CC ...\"}, \"Mastering Exposure in Digital Photography\": {\"frequency\": 1, \"value\": \"Mastering Exposure ...\"}, \"Maya Particle Effects\": {\"frequency\": 1, \"value\": \"Maya Particle ...\"}, \"Design, Develop & Sell WordPress Themes\": {\"frequency\": 1, \"value\": \"Design, Develop ...\"}, \"Exercise Physiology: Understanding the Athlete Within\": {\"frequency\": 1, \"value\": \"Exercise ...\"}, \"F5 LTM Introduction - Learn to Load Balance\": {\"frequency\": 1, \"value\": \"F5 LTM ...\"}, \"5 Low-Cost Ways to Get Clients Now\": {\"frequency\": 1, \"value\": \"5 Low-Cost Ways to ...\"}, \"Intro to Online Ad Operations: Unraveling the Mysteries\": {\"frequency\": 1, \"value\": \"Intro to Online Ad ...\"}, \"Mastering Breakout sessions: Policy and Procedure workshops\": {\"frequency\": 1, \"value\": \"Mastering Breakout ...\"}, \"The Lean Startup\": {\"frequency\": 1, \"value\": \"The Lean Startup\"}, \"InDesign CS6 New Features\": {\"frequency\": 1, \"value\": \"InDesign CS6 New ...\"}, \"Facebook Ads Domination: Basic Guide To Facebook Advertising\": {\"frequency\": 1, \"value\": \"Facebook Ads ...\"}, \"Rocking G-School. School of Love,Fun, Sex & Relationships\": {\"frequency\": 1, \"value\": \"Rocking G-School. ...\"}, \"Master Calendar Spreads with this live trade on Gold (GLD)\": {\"frequency\": 1, \"value\": \"Master Calendar ...\"}, \"HTML5 Game Development\": {\"frequency\": 1, \"value\": \"HTML5 Game ...\"}, \"Family and Group Portraiture\": {\"frequency\": 1, \"value\": \"Family and Group ...\"}, \"InDesign CS5: Print Production Guidelines\": {\"frequency\": 1, \"value\": \"InDesign CS5: ...\"}, \"Organizing and Archiving Digital Photos\": {\"frequency\": 1, \"value\": \"Organizing and ...\"}, \"HIST229x: Was Alexander Great? The Life, Leadership, and Legacies of Historys Greatest Warrior\": {\"frequency\": 1, \"value\": \"HIST229x: Was ...\"}, \"The Small Biz Doers' Guide to Small Biz Accounting\": {\"frequency\": 1, \"value\": \"The Small Biz ...\"}, \"Food and Drink Photography\": {\"frequency\": 1, \"value\": \"Food and Drink ...\"}, \"The Traffic Blackbook 2.0: Business Class\": {\"frequency\": 1, \"value\": \"The Traffic ...\"}, \"Mac OS X 10.4 Tiger Essential Training\": {\"frequency\": 1, \"value\": \"Mac OS X 10.4 ...\"}, \"Creating iPhone & iPad Apps Training - No Coding Required\": {\"frequency\": 1, \"value\": \"Creating iPhone ...\"}, \"Beginning Flute Lessons\": {\"frequency\": 1, \"value\": \"Beginning Flute ...\"}, \"InDesign CS5 to EPUB, Kindle, and iPad\": {\"frequency\": 1, \"value\": \"InDesign CS5 to ...\"}, \"SOC108x: Introduction to Global Sociology\": {\"frequency\": 1, \"value\": \"SOC108x: ...\"}, \"Developing Innovative Ideas for New Companies: The First Step in Entrepreneurship\": {\"frequency\": 1, \"value\": \"Developing ...\"}, \"Learn Boundaries, Communication & Assertiveness Skills\": {\"frequency\": 1, \"value\": \"Learn Boundaries, ...\"}, \"Photoshop Selections and Masks\": {\"frequency\": 1, \"value\": \"Photoshop ...\"}, \"Excel 2008 for Mac Essential Training\": {\"frequency\": 1, \"value\": \"Excel 2008 for Mac ...\"}, \"The Complete Bipedal Rigging in Maya Course\": {\"frequency\": 1, \"value\": \"The Complete ...\"}, \"Creativity and Learning: A Conversation with Lynda Barry\": {\"frequency\": 1, \"value\": \"Creativity and ...\"}, \"iMovie HD + iDVD 5 Essential Training\": {\"frequency\": 1, \"value\": \"iMovie HD + iDVD 5 ...\"}, \"Illustrator CC Essential Training\": {\"frequency\": 1, \"value\": \"Illustrator CC ...\"}, \"Learning Photoshop CS for the Web\": {\"frequency\": 1, \"value\": \"Learning Photoshop ...\"}, \"Lightroom 4 Essentials: 01 Organizing and Sharing with the Library Module\": {\"frequency\": 1, \"value\": \"Lightroom 4 ...\"}, \"Audacity Crash Course\": {\"frequency\": 1, \"value\": \"Audacity Crash ...\"}, \"Word 2010: Real-World Projects\": {\"frequency\": 1, \"value\": \"Word 2010: Real- ...\"}, \"CSS & CSS 3 Beginners Course - create beautiful websites\": {\"frequency\": 1, \"value\": \"CSS & CSS 3 ...\"}, \"WordPress 3.5\": {\"frequency\": 1, \"value\": \"WordPress 3.5\"}, \"How to Bend and Stretch Time\": {\"frequency\": 1, \"value\": \"How to Bend and ...\"}, \"Help With GCSE Maths\": {\"frequency\": 1, \"value\": \"Help With GCSE ...\"}, \"Raising the Financial Bar: Lifepro (Part 2)\": {\"frequency\": 1, \"value\": \"Raising the ...\"}, \"Debut Grade Guitar for Complete Beginners by Gigajam\": {\"frequency\": 1, \"value\": \"Debut Grade Guitar ...\"}, \"How To Stay Relevant Online\": {\"frequency\": 1, \"value\": \"How To Stay ...\"}, \"Television Screenwriting: Business and Technical Learning\": {\"frequency\": 1, \"value\": \"Television ...\"}, \"5 Steps to Get the 3 Results You Want Most!\": {\"frequency\": 1, \"value\": \"5 Steps to Get the ...\"}, \"Up and Running with Adobe Creative Cloud\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Get "Patent Pending" - How to Write and File Your Own Patent\": {\"frequency\": 1, \"value\": \"Get "Patent ...\"}, \"HDR and Beyond\": {\"frequency\": 1, \"value\": \"HDR and Beyond\"}, \"Drupal 6 Essential Training\": {\"frequency\": 1, \"value\": \"Drupal 6 Essential ...\"}, \"Microsoft Excel - Recording Macros\": {\"frequency\": 1, \"value\": \"Microsoft Excel - ...\"}, \"The Complete Orc Bust Sculpting Course with ZBrush\": {\"frequency\": 1, \"value\": \"The Complete Orc ...\"}, \"3ds Max 2011 New Features\": {\"frequency\": 1, \"value\": \"3ds Max 2011 New ...\"}, \"WordPress Ecommerce: Easy Digital Downloads\": {\"frequency\": 1, \"value\": \"WordPress ...\"}, \"iMovie for iPad Essential Training\": {\"frequency\": 1, \"value\": \"iMovie for iPad ...\"}, \"Arithmetic and Pre-Algebra\": {\"frequency\": 1, \"value\": \"Arithmetic and ...\"}, \"Crazy Wild Love: Bombshell Bootcamp\": {\"frequency\": 1, \"value\": \"Crazy Wild Love: ...\"}, \"Vaccines Demystified\": {\"frequency\": 1, \"value\": \"Vaccines ...\"}, \"Storytelling Basics and Scriptwriting with Celtx\": {\"frequency\": 1, \"value\": \"Storytelling ...\"}, \"Essential SEO Training For Successful Web Marketing\": {\"frequency\": 1, \"value\": \"Essential SEO ...\"}, \"How to make a Career Transition (in 5 steps)\": {\"frequency\": 1, \"value\": \"How to make a ...\"}, \"Developing Custom Timer Jobs for SharePoint 2013\": {\"frequency\": 1, \"value\": \"Developing Custom ...\"}, \"Life in the UK - Passing The British Citizenship Test\": {\"frequency\": 1, \"value\": \"Life in the UK - ...\"}, \"SAT Essay Mastery: A Better Score Guaranteed\": {\"frequency\": 1, \"value\": \"SAT Essay Mastery: ...\"}, \"Stefan G. Bucher, Designer, Illustrator, and Writer\": {\"frequency\": 1, \"value\": \"Stefan G. Bucher, ...\"}, \"Numbers '08 Essential Training\": {\"frequency\": 1, \"value\": \"Numbers '08 ...\"}, \"Creating an Animated Infographic with Edge Animate\": {\"frequency\": 1, \"value\": \"Creating an ...\"}, \"Designing Web Pages with CSS - for Beginners\": {\"frequency\": 1, \"value\": \"Designing Web ...\"}, \"Development Economics\": {\"frequency\": 1, \"value\": \"Development ...\"}, \"Acupuncture in the Treatment of Bells Palsy\": {\"frequency\": 1, \"value\": \"Acupuncture in the ...\"}, \"Platform Game Creation With Construct 2 (HTML5)\": {\"frequency\": 1, \"value\": \"Platform Game ...\"}, \"How to Build a WordPress Website in a Day (for beginners)\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"iPad Music Production: AmpliTube\": {\"frequency\": 1, \"value\": \"iPad Music ...\"}, \"Learn Android Programming in Java\": {\"frequency\": 1, \"value\": \"Learn Android ...\"}, \"Audio Creation Secrets\": {\"frequency\": 1, \"value\": \"Audio Creation ...\"}, \"Raise Seed and Series A Capital\": {\"frequency\": 1, \"value\": \"Raise Seed and ...\"}, \"AIR Essential Training (2008)\": {\"frequency\": 1, \"value\": \"AIR Essential ...\"}, \"Introduction to Hypnotherapy and the secrets within.\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Developing Brand Identity Collateral\": {\"frequency\": 1, \"value\": \"Developing Brand ...\"}, \"Create FREE Webpages with Google sites. Basics\": {\"frequency\": 1, \"value\": \"Create FREE ...\"}, \"Tales from the Genome\": {\"frequency\": 1, \"value\": \"Tales from the ...\"}, \"ActionScript 3.0 in Flash CS4 Professional for Designers\": {\"frequency\": 1, \"value\": \"ActionScript 3.0 ...\"}, \"Web Analytics Fundamentals\": {\"frequency\": 1, \"value\": \"Web Analytics ...\"}, \"Photoshop Artist in Action: Uli Staiger's Balloonatic\": {\"frequency\": 1, \"value\": \"Photoshop Artist ...\"}, \"How To Overcome Fears\": {\"frequency\": 1, \"value\": \"How To Overcome ...\"}, \"An Introduction to the U.S. Food System: Perspectives from Public Health\": {\"frequency\": 1, \"value\": \"An Introduction to ...\"}, \"Hacking App Store Growth : Get More Mobile App Downloads\": {\"frequency\": 1, \"value\": \"Hacking App Store ...\"}, \"How To Build a Massive Engaged Following on Twitter\": {\"frequency\": 1, \"value\": \"How To Build a ...\"}, \"Mastering Microsoft Office 2010 Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"Real Pilates 7 Day Core Strength & Stamina Transformation\": {\"frequency\": 1, \"value\": \"Real Pilates 7 Day ...\"}, \"CorelDRAW Graphics Suite X3 Essential Training\": {\"frequency\": 1, \"value\": \"CorelDRAW Graphics ...\"}, \"jQuery\": {\"frequency\": 1, \"value\": \"jQuery\"}, \"Mastering Modbus RS485 Network Communication\": {\"frequency\": 1, \"value\": \"Mastering Modbus ...\"}, \"Reinventing School - A Design Thinking Challenge\": {\"frequency\": 1, \"value\": \"Reinventing School ...\"}, \"Statistics\": {\"frequency\": 1, \"value\": \"Statistics\"}, \"WordPress 3: Developing Secure Sites\": {\"frequency\": 1, \"value\": \"WordPress 3: ...\"}, \"How to interview clients to understand their needs.\": {\"frequency\": 1, \"value\": \"How to interview ...\"}, \"Migrating from Access 2003 to Access 2010\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"Podcasting with GarageBand 3\": {\"frequency\": 1, \"value\": \"Podcasting with ...\"}, \"Outlook 2010: Effective Email Management\": {\"frequency\": 1, \"value\": \"Outlook 2010: ...\"}, \"Dreamweaver CC Essential Training\": {\"frequency\": 1, \"value\": \"Dreamweaver CC ...\"}, \"Scanning Techniques for Photography, Art, and Design\": {\"frequency\": 1, \"value\": \"Scanning ...\"}, \"Getting Started with 3ds Max\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"16.110x: Flight Vehicle Aerodynamics\": {\"frequency\": 1, \"value\": \"16.110x: Flight ...\"}, \"The Psychology of Learning -- A Video Textbook\": {\"frequency\": 1, \"value\": \"The Psychology of ...\"}, \"The Wide World of MOOCs\": {\"frequency\": 1, \"value\": \"The Wide World of ...\"}, \"SQL Server Essentials: What you should know!\": {\"frequency\": 1, \"value\": \"SQL Server ...\"}, \"How To Create Teleseminars, A Must-Have Business Tool\": {\"frequency\": 1, \"value\": \"How To Create ...\"}, \"Marketing Strategies for Creative Professionals\": {\"frequency\": 1, \"value\": \"Marketing ...\"}, \"Interpreting Financial Statements\": {\"frequency\": 1, \"value\": \"Interpreting ...\"}, \"CS-191x: Quantum Mechanics and Quantum Computation\": {\"frequency\": 1, \"value\": \"CS-191x: Quantum ...\"}, \"Discover Your Value: Turning Experience into College Credit\": {\"frequency\": 1, \"value\": \"Discover Your ...\"}, \"Create a Budget that Works\": {\"frequency\": 1, \"value\": \"Create a Budget ...\"}, \"Wedding Photography for Everyone: Bridal Portraits\": {\"frequency\": 1, \"value\": \"Wedding ...\"}, \"International Health Systems: Incorporating Sustainability Strategies\": {\"frequency\": 1, \"value\": \"International ...\"}, \"Anatomy of Backbone.js\": {\"frequency\": 1, \"value\": \"Anatomy of ...\"}, \"Create an HTML5 Video Gallery with jQuery\": {\"frequency\": 1, \"value\": \"Create an HTML5 ...\"}, \"Fireworks CS6:Web Graphics and Design Comp A-Z Master Course\": {\"frequency\": 1, \"value\": \"Fireworks CS6:Web ...\"}, \"Dreamweaver: Creative Cloud Updates\": {\"frequency\": 1, \"value\": \"Dreamweaver: ...\"}, \"1 Hour JavaScript\": {\"frequency\": 1, \"value\": \"1 Hour JavaScript\"}, \"Learn How to Get Your First Million Users\": {\"frequency\": 1, \"value\": \"Learn How to Get ...\"}, \"Proven steps for better life in 30 days\": {\"frequency\": 1, \"value\": \"Proven steps for ...\"}, \"Play by Ear: The Cave\": {\"frequency\": 1, \"value\": \"Play by Ear: The ...\"}, \"Shooting with the Canon 5D Mark III\": {\"frequency\": 1, \"value\": \"Shooting with the ...\"}, \"C# 2012 Fundamentals Part II\": {\"frequency\": 1, \"value\": \"C# 2012 ...\"}, \"Ableton Live Beginners Crash Course\": {\"frequency\": 1, \"value\": \"Ableton Live ...\"}, \"Stunt Writing for Personal Growth\": {\"frequency\": 1, \"value\": \"Stunt Writing for ...\"}, \"Create winning, differentiated business strategy\": {\"frequency\": 1, \"value\": \"Create winning, ...\"}, \"An Introduction to Computer Networks\": {\"frequency\": 1, \"value\": \"An Introduction to ...\"}, \"iOS 6 App Development Fundamentals LiveLessons Part I\": {\"frequency\": 1, \"value\": \"iOS 6 App ...\"}, \"Chemistry 101 - Part 4 Chemistry in Society\": {\"frequency\": 1, \"value\": \"Chemistry 101 - ...\"}, \"Oracle Procurement Contracts Fundamentals (Oracle EBS R12i)\": {\"frequency\": 1, \"value\": \"Oracle Procurement ...\"}, \"Social Media for SEO\": {\"frequency\": 1, \"value\": \"Social Media for ...\"}, \"Intro to Java Programming\": {\"frequency\": 1, \"value\": \"Intro to Java ...\"}, \"Casual Japanese conversation - Absolute Beginner\": {\"frequency\": 1, \"value\": \"Casual Japanese ...\"}, \"Photoshop CS6 Creative Cloud New Features Workshop\": {\"frequency\": 1, \"value\": \"Photoshop CS6 ...\"}, \"Computing for Data Analysis\": {\"frequency\": 1, \"value\": \"Computing for Data ...\"}, \"Introduction to Quality Management\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Logo, Header and Image Basics for Online Business/Wordpress\": {\"frequency\": 1, \"value\": \"Logo, Header and ...\"}, \"SQL Server 2012 New Features\": {\"frequency\": 1, \"value\": \"SQL Server 2012 ...\"}, \"Using a Photographic Light Meter\": {\"frequency\": 1, \"value\": \"Using a ...\"}, \"Compressor 2.1 Essential Training\": {\"frequency\": 1, \"value\": \"Compressor 2.1 ...\"}, \"Clip Your Budget\": {\"frequency\": 1, \"value\": \"Clip Your Budget\"}, \"Testing with RSpec\": {\"frequency\": 1, \"value\": \"Testing with RSpec\"}, \"Bert Monroy, Digital Painter and Illustrator\": {\"frequency\": 1, \"value\": \"Bert Monroy, ...\"}, \"Video Creation Fast Track\": {\"frequency\": 1, \"value\": \"Video Creation ...\"}, \"Photoshop CS5 Smart Objects Workshop\": {\"frequency\": 1, \"value\": \"Photoshop CS5 ...\"}, \"Acrobat X Essential Training\": {\"frequency\": 1, \"value\": \"Acrobat X ...\"}, \"7.00x: Introduction to Biology - The Secret of Life\": {\"frequency\": 1, \"value\": \"7.00x: ...\"}, \"Up and Running with Lighting: Natural Light\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Build a Simple iPhone App\": {\"frequency\": 1, \"value\": \"Build a Simple ...\"}, \"Cryptography I\": {\"frequency\": 1, \"value\": \"Cryptography I\"}, \"CSS\": {\"frequency\": 1, \"value\": \"CSS\"}, \"Algorithms: Design and Analysis, Part 2\": {\"frequency\": 1, \"value\": \"Algorithms: Design ...\"}, \"jQuery Essential Training\": {\"frequency\": 1, \"value\": \"jQuery Essential ...\"}, \"Java Multithreading\": {\"frequency\": 1, \"value\": \"Java ...\"}, \"Customer Service Training\": {\"frequency\": 1, \"value\": \"Customer Service ...\"}, \"How To Take Better Photographs\": {\"frequency\": 1, \"value\": \"How To Take Better ...\"}, \"HTML5 + CSS3 Responsive Web Design\": {\"frequency\": 1, \"value\": \"HTML5 + CSS3 ...\"}, \"Design in Motion\": {\"frequency\": 1, \"value\": \"Design in Motion\"}, \"The Under 20 Workout 6 Week Fat Blaster Challenge\": {\"frequency\": 1, \"value\": \"The Under 20 ...\"}, \"Your Start-Up Company as a Business Experiment\": {\"frequency\": 1, \"value\": \"Your Start-Up ...\"}, \"A New History for a New China, 1700-2000: New Data and New Methods, Part 1\": {\"frequency\": 1, \"value\": \"A New History for ...\"}, \"Public Speaking Fundamentals\": {\"frequency\": 1, \"value\": \"Public Speaking ...\"}, \"Selenium 2 WebDriver Basics With Java\": {\"frequency\": 1, \"value\": \"Selenium 2 ...\"}, \"CS-169.1x: Software as a Service\": {\"frequency\": 2, \"value\": \"CS-169.1x: ...\"}, \"CSS: Animations\": {\"frequency\": 1, \"value\": \"CSS: Animations\"}, \"Lean Canvas Course\": {\"frequency\": 1, \"value\": \"Lean Canvas Course\"}, \"After Effects CS4: Wiggle Transform Tips\": {\"frequency\": 1, \"value\": \"After Effects CS4: ...\"}, \"Nuke 7 New Features\": {\"frequency\": 1, \"value\": \"Nuke 7 New ...\"}, \"Get Started: Radiant Meditations and Techniques with Shae\": {\"frequency\": 1, \"value\": \"Get Started: ...\"}, \"Photoshop CS2 Channels & Masks\": {\"frequency\": 1, \"value\": \"Photoshop CS2 ...\"}, \"Creating a First Web Site with Dreamweaver CS4\": {\"frequency\": 1, \"value\": \"Creating a First ...\"}, \"Creating a First Web Site with Dreamweaver CS5\": {\"frequency\": 1, \"value\": \"Creating a First ...\"}, \"Photoshop CS5 Extended One-on-One: 3D Type Effects\": {\"frequency\": 1, \"value\": \"Photoshop CS5 ...\"}, \"3D Modeling in Photoshop - An In Depth Tutorial\": {\"frequency\": 1, \"value\": \"3D Modeling in ...\"}, \"Flash CS6 Tutorial - An Essential Guide For Web Developers\": {\"frequency\": 1, \"value\": \"Flash CS6 Tutorial ...\"}, \"Neural Networks for Machine Learning\": {\"frequency\": 1, \"value\": \"Neural Networks ...\"}, \"Design Your Own eBook Cover That Sells - Complete Guide\": {\"frequency\": 1, \"value\": \"Design Your Own ...\"}, \"Supercharge Your Photography Website\": {\"frequency\": 1, \"value\": \"Supercharge Your ...\"}, \"Ableton Live 9 Essential Training\": {\"frequency\": 1, \"value\": \"Ableton Live 9 ...\"}, \"Core Excel - Microsoft Excel 2010 Training\": {\"frequency\": 1, \"value\": \"Core Excel - ...\"}, \"Learn to animate. Part 2. "Human Walk Cycle".\": {\"frequency\": 1, \"value\": \"Learn to animate. ...\"}, \"AppLovin - Your Mobile Audience delivered\": {\"frequency\": 1, \"value\": \"AppLovin - Your ...\"}, \"How To Achieve 10/10 Self-Esteem for Life!\": {\"frequency\": 1, \"value\": \"How To Achieve ...\"}, \"Bruce Heavin, The Thinkable Presentation\": {\"frequency\": 1, \"value\": \"Bruce Heavin, The ...\"}, \"Brew Real Beer\": {\"frequency\": 1, \"value\": \"Brew Real Beer\"}, \"InDesign CS4 New Features\": {\"frequency\": 1, \"value\": \"InDesign CS4 New ...\"}, \"Delivering Keynote Presentations\": {\"frequency\": 1, \"value\": \"Delivering Keynote ...\"}, \"How To Create Your Own Website\": {\"frequency\": 1, \"value\": \"How To Create Your ...\"}, \"Cure Chronic Thyroid Disease: Live Happy and Healthy Now!\": {\"frequency\": 1, \"value\": \"Cure Chronic ...\"}, \"Become a Pinterest Expert\": {\"frequency\": 1, \"value\": \"Become a Pinterest ...\"}, \"Trigonometry: Trigonometric Functions I\": {\"frequency\": 1, \"value\": \"Trigonometry: ...\"}, \"2D Character Animation\": {\"frequency\": 1, \"value\": \"2D Character ...\"}, \"Photoshop CS4: Image Compositing for Photographers\": {\"frequency\": 1, \"value\": \"Photoshop CS4: ...\"}, \"The Student's Advantage: Getting the most out of school\": {\"frequency\": 1, \"value\": \"The Student's ...\"}, \"JavaScript with BackboneJS and Bootstrap CSS - Advanced\": {\"frequency\": 1, \"value\": \"JavaScript with ...\"}, \"Mac OS X Lion Server Essential Training\": {\"frequency\": 1, \"value\": \"Mac OS X Lion ...\"}, \"Mexico's Economy: Current Prospects and History\": {\"frequency\": 1, \"value\": \"Mexico's ...\"}, \"InDesign CS4: 10 Things to Know About Interactive PDFs\": {\"frequency\": 1, \"value\": \"InDesign CS4: 10 ...\"}, \"Logic Production Techniques: Making Beats\": {\"frequency\": 1, \"value\": \"Logic Production ...\"}, \"GMail, IFTTT, Virtual Assistant - Ultimate Productivity Trio\": {\"frequency\": 1, \"value\": \"GMail, IFTTT, ...\"}, \"CS-169.2x: Software as a Service\": {\"frequency\": 1, \"value\": \"CS-169.2x: ...\"}, \"Maya Rendering for After Effects Composites\": {\"frequency\": 1, \"value\": \"Maya Rendering for ...\"}, \"Introduction to Tissue Engineering\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Build iPhone, Android and HTML 5 Apps - No Coding Required!\": {\"frequency\": 1, \"value\": \"Build iPhone, ...\"}, \"Ableton Live 9 Tips and Tricks\": {\"frequency\": 1, \"value\": \"Ableton Live 9 ...\"}, \"ActionScript 2.0 Beyond the Basics\": {\"frequency\": 1, \"value\": \"ActionScript 2.0 ...\"}, \"Android Programming fot the Absolute Beginner\": {\"frequency\": 1, \"value\": \"Android ...\"}, \"Internationalization (i18n) with PHP and gettext\": {\"frequency\": 1, \"value\": \"Internationalizati ...\"}, \"Pinterest Advantage\": {\"frequency\": 1, \"value\": \"Pinterest ...\"}, \"iPhone Photography, from Shooting to Storytelling\": {\"frequency\": 1, \"value\": \"iPhone ...\"}, \"Twitter Success for your Business\": {\"frequency\": 1, \"value\": \"Twitter Success ...\"}, \"Ultra CS3 Essential Training\": {\"frequency\": 1, \"value\": \"Ultra CS3 ...\"}, \"Getting Started with Quark Interactive Designer\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Learning Samurai - How to Kick @$$ in School!\": {\"frequency\": 1, \"value\": \"Learning Samurai - ...\"}, \"Investigative Concepts: FBI Major Case #203 "Pizza Bomber"\": {\"frequency\": 1, \"value\": \"Investigative ...\"}, \"Managing a Hosted Web Site\": {\"frequency\": 1, \"value\": \"Managing a Hosted ...\"}, \"Buying Call and Put Options - Options beginner strategies\": {\"frequency\": 1, \"value\": \"Buying Call and ...\"}, \"Discover Your Calling\": {\"frequency\": 1, \"value\": \"Discover Your ...\"}, \"Photoshop CS4 for Photographers\": {\"frequency\": 1, \"value\": \"Photoshop CS4 for ...\"}, \"Fundamentals of Design\": {\"frequency\": 1, \"value\": \"Fundamentals of ...\"}, \"Lectures on Greek History and Culture\": {\"frequency\": 1, \"value\": \"Lectures on Greek ...\"}, \"Up and Running with WebMatrix and ASP.NET\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Principles of Macroeconomics\": {\"frequency\": 1, \"value\": \"Principles of ...\"}, \"Excel Best Practices\": {\"frequency\": 1, \"value\": \"Excel Best ...\"}, \"Adwords 101: Get More Customers Today with Search Marketing\": {\"frequency\": 1, \"value\": \"Adwords 101: Get ...\"}, \"Illustrator CS2 Creative Techniques\": {\"frequency\": 1, \"value\": \"Illustrator CS2 ...\"}, \"InDesign CS4 Getting Started\": {\"frequency\": 1, \"value\": \"InDesign CS4 ...\"}, \"Job Search Boot Camp: AIM Your Search\": {\"frequency\": 1, \"value\": \"Job Search Boot ...\"}, \"WordPress Security Tricks Hackers Don't Want You To Know\": {\"frequency\": 1, \"value\": \"WordPress Security ...\"}, \"iOS Operation: Models\": {\"frequency\": 1, \"value\": \"iOS Operation: ...\"}, \"Access 2003 Essential Training\": {\"frequency\": 1, \"value\": \"Access 2003 ...\"}, \"Professional Video Game Art School\": {\"frequency\": 1, \"value\": \"Professional Video ...\"}, \"Constructing Your Retirement Plan\": {\"frequency\": 1, \"value\": \"Constructing Your ...\"}, \"Mastering Microsoft Access 2010 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"Complete Game Asset Workflow: The Briefcase\": {\"frequency\": 1, \"value\": \"Complete Game ...\"}, \"Learn to Program: Crafting Quality Code\": {\"frequency\": 1, \"value\": \"Learn to Program: ...\"}, \"Infographic How To: Data, Design, Distribute\": {\"frequency\": 1, \"value\": \"Infographic How ...\"}, \"XHTML and HTML Essential Training\": {\"frequency\": 1, \"value\": \"XHTML and HTML ...\"}, \"QuickStart! - Adobe After Effects CC\": {\"frequency\": 1, \"value\": \"QuickStart! - ...\"}, \"Enhanced WordPress Strategies For Business\": {\"frequency\": 1, \"value\": \"Enhanced WordPress ...\"}, \"Introduction to Foursquare for Business\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Macroeconomics\": {\"frequency\": 1, \"value\": \"Macroeconomics\"}, \"ActionScript 3.0 Projects: Game Development\": {\"frequency\": 1, \"value\": \"ActionScript 3.0 ...\"}, \"Excel 2007: Creating Business Budgets\": {\"frequency\": 1, \"value\": \"Excel 2007: ...\"}, \"WordPress Essentials in Under an Hour\": {\"frequency\": 1, \"value\": \"WordPress ...\"}, \"Premiere Pro CS4 Getting Started\": {\"frequency\": 1, \"value\": \"Premiere Pro CS4 ...\"}, \"Fairy Tales: Origins and Evolution of Princess Stories\": {\"frequency\": 1, \"value\": \"Fairy Tales: ...\"}, \"Internet Marketing Roadmap For Business\": {\"frequency\": 1, \"value\": \"Internet Marketing ...\"}, \"Adobe Illustrator CS6 Master pro techniques for print & web\": {\"frequency\": 1, \"value\": \"Adobe Illustrator ...\"}, \"Mountain Plants of South-West China\": {\"frequency\": 1, \"value\": \"Mountain Plants of ...\"}, \"Beginners Adobe Photoshop CS5 Tutorial\": {\"frequency\": 1, \"value\": \"Beginners Adobe ...\"}, \"After Effects CS4 Essential Training\": {\"frequency\": 1, \"value\": \"After Effects CS4 ...\"}, \"How to Negotiate Salary: The Negotiation Mindset\": {\"frequency\": 1, \"value\": \"How to Negotiate ...\"}, \"Final Cut Pro X Training\": {\"frequency\": 1, \"value\": \"Final Cut Pro X ...\"}, \"Mograph Techniques: Creating a Product Endpage\": {\"frequency\": 1, \"value\": \"Mograph ...\"}, \"Photoshop CS6 Essentials Getting Started with Photoshop CS6\": {\"frequency\": 1, \"value\": \"Photoshop CS6 ...\"}, \"Outlook for Mac 2011 Essential Training\": {\"frequency\": 1, \"value\": \"Outlook for Mac ...\"}, \"From Invisible to Invincible - Career Advancement Success\": {\"frequency\": 1, \"value\": \"From Invisible to ...\"}, \"Clinical Problem Solving\": {\"frequency\": 1, \"value\": \"Clinical Problem ...\"}, \"Introduction to Artificial Intelligence\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Coding for Entrepreneurs\": {\"frequency\": 1, \"value\": \"Coding for ...\"}, \"Mixing a Hip-Hop and R&B Song in Pro Tools\": {\"frequency\": 1, \"value\": \"Mixing a Hip-Hop ...\"}, \"Leadership for Real\": {\"frequency\": 1, \"value\": \"Leadership for ...\"}, \"CSS Fundamentals Class\": {\"frequency\": 1, \"value\": \"CSS Fundamentals ...\"}, \"Flash Catalyst CS5 Essential Training\": {\"frequency\": 1, \"value\": \"Flash Catalyst CS5 ...\"}, \"A Parent's Guide to Making College More Affordable\": {\"frequency\": 1, \"value\": \"A Parent's ...\"}, \"How to Design Your Own Brand\": {\"frequency\": 1, \"value\": \"How to Design Your ...\"}, \"28 Day IBS Relief: Self IBS Treatment System\": {\"frequency\": 1, \"value\": \"28 Day IBS Relief: ...\"}, \"Macro Watch: Third Quarter 2013\": {\"frequency\": 1, \"value\": \"Macro Watch: Third ...\"}, \"Creating a First Web Site with Flash Professional CS5\": {\"frequency\": 1, \"value\": \"Creating a First ...\"}, \"AWS Certified Solutions Architect (Amazon Web Services)\": {\"frequency\": 1, \"value\": \"AWS Certified ...\"}, \"CSS2 Essential Training (2003)\": {\"frequency\": 1, \"value\": \"CSS2 Essential ...\"}, \"Using Regular Expressions\": {\"frequency\": 1, \"value\": \"Using Regular ...\"}, \"Linear Algebra\": {\"frequency\": 1, \"value\": \"Linear Algebra\"}, \"The Life of Moses\": {\"frequency\": 1, \"value\": \"The Life of Moses\"}, \"Adobe Lightroom 5 Learn By Video\": {\"frequency\": 1, \"value\": \"Adobe Lightroom 5 ...\"}, \"WordPress.org Vs. WordPress.com: Getting Started\": {\"frequency\": 1, \"value\": \"WordPress.org Vs. ...\"}, \"SharePoint 2010 Development Tutorial\": {\"frequency\": 1, \"value\": \"SharePoint 2010 ...\"}, \"Crystal Reports 2008 Introduction\": {\"frequency\": 1, \"value\": \"Crystal Reports ...\"}, \"Learn 2D Digital Character Animation using Adobe Flash.\": {\"frequency\": 1, \"value\": \"Learn 2D Digital ...\"}, \"Up and Running with iCloud\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"After Effects CS3 Effects\": {\"frequency\": 1, \"value\": \"After Effects CS3 ...\"}, \"Outlook 2010: Real-World Projects\": {\"frequency\": 1, \"value\": \"Outlook 2010: ...\"}, \"Designing Web Sites from Photoshop to Dreamweaver\": {\"frequency\": 1, \"value\": \"Designing Web ...\"}, \"Green Screen Video Editing - All Editing Programs\": {\"frequency\": 1, \"value\": \"Green Screen Video ...\"}, \"Financial Literacy (FinLitrc)\": {\"frequency\": 1, \"value\": \"Financial Literacy ...\"}, \"Advanced Mind Mastery: The Science of Getting Rich\": {\"frequency\": 1, \"value\": \"Advanced Mind ...\"}, \"Flash CS4 Professional Tools for Character Animation\": {\"frequency\": 1, \"value\": \"Flash CS4 ...\"}, \"Design the Web: Video Graphics and Animation\": {\"frequency\": 1, \"value\": \"Design the Web: ...\"}, \"Mobile Web Design & Development Fundamentals\": {\"frequency\": 1, \"value\": \"Mobile Web Design ...\"}, \"WordPerfect Office X4 Essential Training\": {\"frequency\": 1, \"value\": \"WordPerfect Office ...\"}, \"Designing a Magazine Cover\": {\"frequency\": 1, \"value\": \"Designing a ...\"}, \"Final Cut Pro 5 Essential Editing\": {\"frequency\": 1, \"value\": \"Final Cut Pro 5 ...\"}, \"Skate-Pro: The complete Intermediate inline skating course.\": {\"frequency\": 1, \"value\": \"Skate-Pro: The ...\"}, \"How to Read Music\": {\"frequency\": 1, \"value\": \"How to Read Music\"}, \"SEO Made Simple For Beginners To Start Web Business\": {\"frequency\": 1, \"value\": \"SEO Made Simple ...\"}, \"Jason Bentley, Radio DJ and Musician\": {\"frequency\": 1, \"value\": \"Jason Bentley, ...\"}, \"Commodities\": {\"frequency\": 1, \"value\": \"Commodities\"}, \"Intro to Adobe InDesign\": {\"frequency\": 1, \"value\": \"Intro to Adobe ...\"}, \"Mobile Web Development\": {\"frequency\": 1, \"value\": \"Mobile Web ...\"}, \"Emotional Intelligence in the Classroom\": {\"frequency\": 1, \"value\": \"Emotional ...\"}, \"Animal Behaviour\": {\"frequency\": 1, \"value\": \"Animal Behaviour\"}, \"Maximizing Your Web Video and Podcast Audience with Hypersyndication\": {\"frequency\": 1, \"value\": \"Maximizing Your ...\"}, \"Yummy in my Tummy\": {\"frequency\": 1, \"value\": \"Yummy in my Tummy\"}, \"HSPH-HMS214x: Fundamentals of Clinical Trials\": {\"frequency\": 1, \"value\": \"HSPH-HMS214x: ...\"}, \"A mathematical way to think about biology\": {\"frequency\": 1, \"value\": \"A mathematical way ...\"}, \"Life Happens Online - Personal Financial Management Course\": {\"frequency\": 1, \"value\": \"Life Happens ...\"}, \"Photoshop CS5 Top 5\": {\"frequency\": 1, \"value\": \"Photoshop CS5 Top ...\"}, \"PowerPoint 2010: Audio and Video in Depth\": {\"frequency\": 1, \"value\": \"PowerPoint 2010: ...\"}, \"M102: MongoDB for DBAs\": {\"frequency\": 1, \"value\": \"M102: MongoDB for ...\"}, \"Photoshop CS6 for Coders\": {\"frequency\": 1, \"value\": \"Photoshop CS6 for ...\"}, \"Photoshop Filters\": {\"frequency\": 1, \"value\": \"Photoshop Filters\"}, \"Premiere Pro CS6 Essential Training\": {\"frequency\": 1, \"value\": \"Premiere Pro CS6 ...\"}, \"Trigonometry: The Unit Circle\": {\"frequency\": 1, \"value\": \"Trigonometry: The ...\"}, \"Node.js First Look\": {\"frequency\": 1, \"value\": \"Node.js First Look\"}, \"(C.C.I.I.) Certified Cyber Intelligence Investigator\": {\"frequency\": 1, \"value\": \"(C.C.I.I.) ...\"}, \"Audio Post Workflow with Final Cut Pro X and Pro Tools\": {\"frequency\": 1, \"value\": \"Audio Post ...\"}, \"jQuery for Beginners\": {\"frequency\": 1, \"value\": \"jQuery for ...\"}, \"How To Develop & Document Personas & Scenarios\": {\"frequency\": 1, \"value\": \"How To Develop ...\"}, \"Publish Your Book On Kindle\": {\"frequency\": 1, \"value\": \"Publish Your Book ...\"}, \"Introduction to HTML 4 Training Tutorial\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"How to setup a Monthly Budget: Organize your financial life\": {\"frequency\": 1, \"value\": \"How to setup a ...\"}, \"Beginner's Guide to PostgreSQL\": {\"frequency\": 1, \"value\": \"Beginner's ...\"}, \"Illustrator CS6 One-on-One: Mastery\": {\"frequency\": 1, \"value\": \"Illustrator CS6 ...\"}, \"Arthur Explicit - creative flow in Ableton Live\": {\"frequency\": 1, \"value\": \"Arthur Explicit - ...\"}, \"Java Design Patterns and Architecture\": {\"frequency\": 1, \"value\": \"Java Design ...\"}, \"Dreamweaver CS3 Beyond the Basics\": {\"frequency\": 1, \"value\": \"Dreamweaver CS3 ...\"}, \"Photoshop Artist in Action: Tim Grey's "Prayer Sticks"\": {\"frequency\": 1, \"value\": \"Photoshop Artist ...\"}, \"Mortgage Fraud Prevention & Detection\": {\"frequency\": 1, \"value\": \"Mortgage Fraud ...\"}, \"Introduction to Sociology\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Access 2010 New Features\": {\"frequency\": 1, \"value\": \"Access 2010 New ...\"}, \"The Modern Genius: Art and Culture in the 19th Century\": {\"frequency\": 1, \"value\": \"The Modern Genius: ...\"}, \"Leading with Emotional Intelligence\": {\"frequency\": 1, \"value\": \"Leading with ...\"}, \"Basics of SAP HANA Introduction\": {\"frequency\": 1, \"value\": \"Basics of SAP HANA ...\"}, \"Building Social Features in Ruby on Rails\": {\"frequency\": 1, \"value\": \"Building Social ...\"}, \"Excel 2013: Pivot Tables in Depth\": {\"frequency\": 1, \"value\": \"Excel 2013: Pivot ...\"}, \"Aquaponic Gardening: Growing Fish and Vegetables Together\": {\"frequency\": 1, \"value\": \"Aquaponic ...\"}, \"PowerPoint 2013\": {\"frequency\": 1, \"value\": \"PowerPoint 2013\"}, \"Public Speaking Made Easy\": {\"frequency\": 1, \"value\": \"Public Speaking ...\"}, \"Premiere Pro and After Effects: Creating Title Graphics\": {\"frequency\": 1, \"value\": \"Premiere Pro and ...\"}, \"LiveType 2 Essential Training\": {\"frequency\": 1, \"value\": \"LiveType 2 ...\"}, \"Entrepreneur Success Series\": {\"frequency\": 1, \"value\": \"Entrepreneur ...\"}, \"Time Management for the Entrepreneur\": {\"frequency\": 1, \"value\": \"Time Management ...\"}, \"Dragon Web Surveys for FileMaker 8.5\": {\"frequency\": 1, \"value\": \"Dragon Web Surveys ...\"}, \"Create That EBook\": {\"frequency\": 1, \"value\": \"Create That EBook\"}, \"Learn the Secrets to Being an Unstoppable Woman\": {\"frequency\": 1, \"value\": \"Learn the Secrets ...\"}, \"Up and Running with Cloud Storage APIs\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Archaeology's Dirty Little Secrets\": {\"frequency\": 1, \"value\": \"Archaeology's ...\"}, \"Learning Acrobat 5\": {\"frequency\": 1, \"value\": \"Learning Acrobat 5\"}, \"Accounting in 60 Minutes - A Brief Introduction\": {\"frequency\": 1, \"value\": \"Accounting in 60 ...\"}, \"Adobe Premiere Pro CS6 Essential Production Techniques & FX\": {\"frequency\": 1, \"value\": \"Adobe Premiere Pro ...\"}, \"Teacher Tips\": {\"frequency\": 1, \"value\": \"Teacher Tips\"}, \"Insights from a College Career Coach\": {\"frequency\": 1, \"value\": \"Insights from a ...\"}, \"Learn SAP Course - Online Beginner Training\": {\"frequency\": 1, \"value\": \"Learn SAP Course - ...\"}, \"Readiness to Learn\": {\"frequency\": 1, \"value\": \"Readiness to Learn\"}, \"Creating Dynamic Menus\": {\"frequency\": 1, \"value\": \"Creating Dynamic ...\"}, \"1st Degree Reiki Practitioners Training\": {\"frequency\": 1, \"value\": \"1st Degree Reiki ...\"}, \"Building an Integrated Online Marketing Plan\": {\"frequency\": 1, \"value\": \"Building an ...\"}, \"Basics of Using a Mac\": {\"frequency\": 1, \"value\": \"Basics of Using a ...\"}, \"Illustrator CS6 Essential Training\": {\"frequency\": 1, \"value\": \"Illustrator CS6 ...\"}, \"Douglas Kirkland on Photography: Editorial Assignment\": {\"frequency\": 1, \"value\": \"Douglas Kirkland ...\"}, \"Elementary Statistics\": {\"frequency\": 1, \"value\": \"Elementary ...\"}, \"SAP Security Training for all\": {\"frequency\": 1, \"value\": \"SAP Security ...\"}, \"Premiere Elements 4 Essential Training\": {\"frequency\": 1, \"value\": \"Premiere Elements ...\"}, \"Office 2013 For Dummies Video Training, Deluxe Edition\": {\"frequency\": 1, \"value\": \"Office 2013 For ...\"}, \"Photoshop CS5 One-on-One: Fundamentals\": {\"frequency\": 1, \"value\": \"Photoshop CS5 One- ...\"}, \"Persuasive Writing For Online Business\": {\"frequency\": 1, \"value\": \"Persuasive Writing ...\"}, \"Intermediate Dreamweaver 4\": {\"frequency\": 1, \"value\": \"Intermediate ...\"}, \"Done in 60 seconds or less: Social media productivity apps for business and work\": {\"frequency\": 1, \"value\": \"Done in 60 seconds ...\"}, \"The Great Depression to the War on Terror: Enter the World Stage\": {\"frequency\": 1, \"value\": \"The Great ...\"}, \"Mastering QuickBooks 2013 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"Centercode Connect Training for Project Managers\": {\"frequency\": 1, \"value\": \"Centercode Connect ...\"}, \"LightWave 10 Essential Training\": {\"frequency\": 1, \"value\": \"LightWave 10 ...\"}, \"Photoshop CS2 Mastering Camera Raw\": {\"frequency\": 1, \"value\": \"Photoshop CS2 ...\"}, \"30 Minute Self Defence: The Knockout Punch System\": {\"frequency\": 1, \"value\": \"30 Minute Self ...\"}, \"3ds Max 2013 Essential Training\": {\"frequency\": 1, \"value\": \"3ds Max 2013 ...\"}, \"Daily Tune-Up: Meditation Practice for Inspired Living\": {\"frequency\": 1, \"value\": \"Daily Tune-Up: ...\"}, \"Survival Chinese for Beginners\": {\"frequency\": 1, \"value\": \"Survival Chinese ...\"}, \"Smarter Branding Without Breaking the Bank\": {\"frequency\": 1, \"value\": \"Smarter Branding ...\"}, \"Photoshop for Photographers: Portrait Retouching\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"Design Your User Experience in 7 Simple Steps\": {\"frequency\": 1, \"value\": \"Design Your User ...\"}, \"Excel 2013 For Dummies Video Training, Deluxe Edition\": {\"frequency\": 1, \"value\": \"Excel 2013 For ...\"}, \"Wistia Course Creation Compilation\": {\"frequency\": 1, \"value\": \"Wistia Course ...\"}, \"Blues and Advanced Guitar Lessons\": {\"frequency\": 1, \"value\": \"Blues and Advanced ...\"}, \"3D Printing on Shapeways Using Maya\": {\"frequency\": 1, \"value\": \"3D Printing on ...\"}, \"How to Shoot Portraits on a Budget with Off-Camera Flash\": {\"frequency\": 1, \"value\": \"How to Shoot ...\"}, \"Learn SALSA in 5 Hours and Dance Your Way to Fun & Excitement!\": {\"frequency\": 1, \"value\": \"Learn SALSA in 5 ...\"}, \"A Beginners Guide to Technical Analysis of Stock Charts\": {\"frequency\": 1, \"value\": \"A Beginners Guide ...\"}, \"SAP Basis and Netweaver complete Training\": {\"frequency\": 1, \"value\": \"SAP Basis and ...\"}, \"Local Business Marketing Classroom\": {\"frequency\": 1, \"value\": \"Local Business ...\"}, \"Portrait Photography with Simple Gear\": {\"frequency\": 1, \"value\": \"Portrait ...\"}, \"jQuery Mobile Essential Training\": {\"frequency\": 1, \"value\": \"jQuery Mobile ...\"}, \"Creating an Effective Resume\": {\"frequency\": 1, \"value\": \"Creating an ...\"}, \"Adobe Lightroom 5 Crash Course\": {\"frequency\": 1, \"value\": \"Adobe Lightroom 5 ...\"}, \"Contribute CS4 Essential Training\": {\"frequency\": 1, \"value\": \"Contribute CS4 ...\"}, \"Plan, Build, and Launch A WordPress Website\": {\"frequency\": 1, \"value\": \"Plan, Build, and ...\"}, \"Pay Per Click Advertising\": {\"frequency\": 1, \"value\": \"Pay Per Click ...\"}, \"Sew Boutique Childrens Clothes for Fun and Profit\": {\"frequency\": 1, \"value\": \"Sew Boutique ...\"}, \"How To Screen Share With A iPad or iPhone\": {\"frequency\": 1, \"value\": \"How To Screen ...\"}, \"Ethics and Values in a Multicultural World\": {\"frequency\": 1, \"value\": \"Ethics and Values ...\"}, \"SAP ABAP Programming For Beginners Online Training\": {\"frequency\": 1, \"value\": \"SAP ABAP ...\"}, \"Upgrading to Microsoft Outlook 2010\": {\"frequency\": 1, \"value\": \"Upgrading to ...\"}, \"Learning GoLive CS\": {\"frequency\": 1, \"value\": \"Learning GoLive CS\"}, \"Ultimate Side Job: How To Fire Your Boss.....By Blogging!\": {\"frequency\": 1, \"value\": \"Ultimate Side Job: ...\"}, \"Learn What's New in Office 2010\": {\"frequency\": 1, \"value\": \"Learn What's ...\"}, \"Computer Literacy for Windows\": {\"frequency\": 1, \"value\": \"Computer Literacy ...\"}, \"Learn What's New in Office 2013\": {\"frequency\": 1, \"value\": \"Learn What's ...\"}, \"The Piano Revolution! - The fastest way to learn piano\": {\"frequency\": 1, \"value\": \"The Piano ...\"}, \"Teaching Adult Learners (WPTrain)\": {\"frequency\": 1, \"value\": \"Teaching Adult ...\"}, \"Photoshop CS5 New Features Overview\": {\"frequency\": 1, \"value\": \"Photoshop CS5 New ...\"}, \"Microsoft Project: The Five Keys - Key 1 Navigation\": {\"frequency\": 1, \"value\": \"Microsoft Project: ...\"}, \"Profit From Small Business Online Marketing the Easy Way\": {\"frequency\": 1, \"value\": \"Profit From Small ...\"}, \"Photoshop CS6 One-on-One: Advanced\": {\"frequency\": 1, \"value\": \"Photoshop CS6 One- ...\"}, \"Design the Web: Simulating Web Text\": {\"frequency\": 1, \"value\": \"Design the Web: ...\"}, \"Make Money With Apps - iPhone iPad iOS Development EASY WAY.\": {\"frequency\": 1, \"value\": \"Make Money With ...\"}, \"Beginning Perl\": {\"frequency\": 1, \"value\": \"Beginning Perl\"}, \"Microsoft Excel 2010 Training - Beginner to Advanced Lessons\": {\"frequency\": 1, \"value\": \"Microsoft Excel ...\"}, \"Getting Started with Apple Color\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Pentesting with BackTrack\": {\"frequency\": 1, \"value\": \"Pentesting with ...\"}, \"Good Clinical Practice (GCP)\": {\"frequency\": 1, \"value\": \"Good Clinical ...\"}, \"Photoshop For Professional Photographers\": {\"frequency\": 1, \"value\": \"Photoshop For ...\"}, \"Create an Expandable FAQ Listing with jQuery\": {\"frequency\": 1, \"value\": \"Create an ...\"}, \"Intro to Sustainable Energy\": {\"frequency\": 1, \"value\": \"Intro to ...\"}, \"Self Publish Weekend\": {\"frequency\": 1, \"value\": \"Self Publish ...\"}, \"CSS: Formatting Visual Data\": {\"frequency\": 1, \"value\": \"CSS: Formatting ...\"}, \"Functional HTML5 & CSS3\": {\"frequency\": 1, \"value\": \"Functional HTML5 ...\"}, \"Make Videos with Camtasia 8\": {\"frequency\": 1, \"value\": \"Make Videos with ...\"}, \"After Effects CS4 Getting Started\": {\"frequency\": 1, \"value\": \"After Effects CS4 ...\"}, \"Google AdWords Essential Training\": {\"frequency\": 1, \"value\": \"Google AdWords ...\"}, \"How to communicate authentically on camera\": {\"frequency\": 1, \"value\": \"How to communicate ...\"}, \"New in Director MX 2004\": {\"frequency\": 1, \"value\": \"New in Director MX ...\"}, \"How to use Fiverr to make money online!\": {\"frequency\": 1, \"value\": \"How to use Fiverr ...\"}, \"Computer Organization and How to Organize Computer Files\": {\"frequency\": 1, \"value\": \"Computer ...\"}, \"Build a Joomla 2.5 Website in Hours\": {\"frequency\": 1, \"value\": \"Build a Joomla 2.5 ...\"}, \"Grow Your Social Media Presence\": {\"frequency\": 1, \"value\": \"Grow Your Social ...\"}, \"Mac OS X 10.5 Leopard Beyond the Basics\": {\"frequency\": 1, \"value\": \"Mac OS X 10.5 ...\"}, \"Bootstrap 3: Advanced Web Development\": {\"frequency\": 1, \"value\": \"Bootstrap 3: ...\"}, \"CSS: Styling Navigation\": {\"frequency\": 1, \"value\": \"CSS: Styling ...\"}, \"Building Flash Games with Starling\": {\"frequency\": 1, \"value\": \"Building Flash ...\"}, \"User Experience Fundamentals for Web Design\": {\"frequency\": 1, \"value\": \"User Experience ...\"}, \"Access 2010 Introduction\": {\"frequency\": 1, \"value\": \"Access 2010 ...\"}, \"HTML5 Beginners Crash Course\": {\"frequency\": 1, \"value\": \"HTML5 Beginners ...\"}, \"Apple Pro Video Training: Final Cut Pro X\": {\"frequency\": 1, \"value\": \"Apple Pro Video ...\"}, \"SAP Materials Management - Purchasing & Material Master Data\": {\"frequency\": 1, \"value\": \"SAP Materials ...\"}, \"Muse Essential Training\": {\"frequency\": 1, \"value\": \"Muse Essential ...\"}, \"Anime Studio Pro 9 Tutorial - A Practical Training Course\": {\"frequency\": 1, \"value\": \"Anime Studio Pro 9 ...\"}, \"Photoshop Masking and Compositing: Hair\": {\"frequency\": 1, \"value\": \"Photoshop Masking ...\"}, \"The Growth Hacker Interviews\": {\"frequency\": 1, \"value\": \"The Growth Hacker ...\"}, \"Photoshop CS2 FAQs\": {\"frequency\": 1, \"value\": \"Photoshop CS2 FAQs\"}, \"How to Create an Awesome Online Course\": {\"frequency\": 1, \"value\": \"How to Create an ...\"}, \"Infographics: Area Bubbles\": {\"frequency\": 1, \"value\": \"Infographics: Area ...\"}, \"Painter X Essential Training\": {\"frequency\": 1, \"value\": \"Painter X ...\"}, \"The Java Spring Tutorial\": {\"frequency\": 1, \"value\": \"The Java Spring ...\"}, \"Installing and Setting up WordPress: The Easy Way\": {\"frequency\": 1, \"value\": \"Installing and ...\"}, \"Mastering for iTunes\": {\"frequency\": 1, \"value\": \"Mastering for ...\"}, \"Cloud Computing with Amazon Web Services\": {\"frequency\": 1, \"value\": \"Cloud Computing ...\"}, \"Lighting with Flash: Capturing a Dancer in Motion\": {\"frequency\": 1, \"value\": \"Lighting with ...\"}, \"Introduction to Digital Sound Design\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"21 Critical Lessons for Entrepreneurs\": {\"frequency\": 1, \"value\": \"21 Critical ...\"}, \"Dreamweaver CS3 with CSS Essential Training\": {\"frequency\": 1, \"value\": \"Dreamweaver CS3 ...\"}, \"Dynamic Dreamweaver Websites: Creating and Validating Forms\": {\"frequency\": 1, \"value\": \"Dynamic ...\"}, \"Premiere Pro CS5 Essential Training\": {\"frequency\": 1, \"value\": \"Premiere Pro CS5 ...\"}, \"Learn Russian Language - Russian For Beginners\": {\"frequency\": 1, \"value\": \"Learn Russian ...\"}, \"Excel 2010 for Beginners\": {\"frequency\": 1, \"value\": \"Excel 2010 for ...\"}, \"Band as Business, Musician as Entrepreneur\": {\"frequency\": 1, \"value\": \"Band as Business, ...\"}, \"Getting Started with ColdFusion 10\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Print Production Essentials: Spot Colors and Varnish\": {\"frequency\": 1, \"value\": \"Print Production ...\"}, \"The Early Protestant Reformation\": {\"frequency\": 1, \"value\": \"The Early ...\"}, \"Learn to make HTML 5, Facebook, Chrome Store games and more!\": {\"frequency\": 1, \"value\": \"Learn to make HTML ...\"}, \"Microsoft Windows Server 2012 Certification - Exam 70-410\": {\"frequency\": 1, \"value\": \"Microsoft Windows ...\"}, \"Build Your Own Damn WordPress Theme!\": {\"frequency\": 1, \"value\": \"Build Your Own ...\"}, \"Facebook Timeline Pages For Business\": {\"frequency\": 1, \"value\": \"Facebook Timeline ...\"}, \"Corporate Valuation\": {\"frequency\": 1, \"value\": \"Corporate ...\"}, \"A History of the World since 1300\": {\"frequency\": 1, \"value\": \"A History of the ...\"}, \"MySQL and PHP Fundamentals\": {\"frequency\": 1, \"value\": \"MySQL and PHP ...\"}, \"I.T. Project Management for Beginners: A Step-by-Step Guide\": {\"frequency\": 1, \"value\": \"I.T. Project ...\"}, \"Excel 2010 New Features\": {\"frequency\": 1, \"value\": \"Excel 2010 New ...\"}, \"Beginner Guitar - 8 Lessons Everyone Needs!\": {\"frequency\": 1, \"value\": \"Beginner Guitar - ...\"}, \"Beginning Drum Technique\": {\"frequency\": 1, \"value\": \"Beginning Drum ...\"}, \"How to create an awesome demo video in Keynote\": {\"frequency\": 1, \"value\": \"How to create an ...\"}, \"The Optimistic Child\": {\"frequency\": 1, \"value\": \"The Optimistic ...\"}, \"Enhancing Your Productivity\": {\"frequency\": 1, \"value\": \"Enhancing Your ...\"}, \"Effective HTML Email and Newsletters\": {\"frequency\": 1, \"value\": \"Effective HTML ...\"}, \"Design the Web: Sprite Sheets\": {\"frequency\": 1, \"value\": \"Design the Web: ...\"}, \"Basics of Life Insurance\": {\"frequency\": 1, \"value\": \"Basics of Life ...\"}, \"Photoshop CS5 New Features\": {\"frequency\": 1, \"value\": \"Photoshop CS5 New ...\"}, \"Soundbooth CS3 Essential Training\": {\"frequency\": 1, \"value\": \"Soundbooth CS3 ...\"}, \"(C.C.I.P.) Certified Cyber Intelligence Professional\": {\"frequency\": 1, \"value\": \"(C.C.I.P.) ...\"}, \"PHP 5.5 First Look\": {\"frequency\": 1, \"value\": \"PHP 5.5 First Look\"}, \"InDesign CS4 Power Shortcuts\": {\"frequency\": 1, \"value\": \"InDesign CS4 Power ...\"}, \"FileMaker Pro 11 Essential Training\": {\"frequency\": 1, \"value\": \"FileMaker Pro 11 ...\"}, \"Make 6 Figures in 6 Months With Local Business Marketing\": {\"frequency\": 1, \"value\": \"Make 6 Figures in ...\"}, \"Photoshop CS4 One-on-One: Fundamentals\": {\"frequency\": 1, \"value\": \"Photoshop CS4 One- ...\"}, \"Songwriting\": {\"frequency\": 1, \"value\": \"Songwriting\"}, \"Pro Tools 9 Essential Training\": {\"frequency\": 1, \"value\": \"Pro Tools 9 ...\"}, \"PowerPoint Psychology - Creating Amazing PowerPoint Slides!\": {\"frequency\": 1, \"value\": \"PowerPoint ...\"}, \"Learn how to use Adobe software:Beginner to Power User Level\": {\"frequency\": 1, \"value\": \"Learn how to use ...\"}, \"Responsive Design with Drupal\": {\"frequency\": 1, \"value\": \"Responsive Design ...\"}, \"InDesign CS4: 10 Free Must-Have Plug-ins\": {\"frequency\": 1, \"value\": \"InDesign CS4: 10 ...\"}, \"UP and to the RIGHT: Magic Quadrant Strategy and Tactics\": {\"frequency\": 1, \"value\": \"UP and to the ...\"}, \"Studio 8 Web Workflow\": {\"frequency\": 1, \"value\": \"Studio 8 Web ...\"}, \"Photoshop - Beauty Retouching\": {\"frequency\": 1, \"value\": \"Photoshop - Beauty ...\"}, \"Ultimate Excel VBA\": {\"frequency\": 1, \"value\": \"Ultimate Excel VBA\"}, \"The Six Simple Keys To Prosperity\": {\"frequency\": 1, \"value\": \"The Six Simple ...\"}, \"BCOR 101: Intro to Coaching + CEC's\": {\"frequency\": 1, \"value\": \"BCOR 101: Intro to ...\"}, \"Numbers\": {\"frequency\": 1, \"value\": \"Numbers\"}, \"Word 2007 Introduction\": {\"frequency\": 1, \"value\": \"Word 2007 ...\"}, \"Digital Photography: Capturing the Moment\": {\"frequency\": 1, \"value\": \"Digital ...\"}, \"Thinking Skills for Students\": {\"frequency\": 1, \"value\": \"Thinking Skills ...\"}, \"Maya 2009 Essential Training\": {\"frequency\": 1, \"value\": \"Maya 2009 ...\"}, \"Mobile Game Development Made Easy - Corona SDK Tutorial\": {\"frequency\": 1, \"value\": \"Mobile Game ...\"}, \"Killer Beginners JavaScript\": {\"frequency\": 1, \"value\": \"Killer Beginners ...\"}, \"Build Your Compelling Personal Brand\": {\"frequency\": 1, \"value\": \"Build Your ...\"}, \"Branden Hall: Interactive Architect and Digital Maker\": {\"frequency\": 1, \"value\": \"Branden Hall: ...\"}, \"Designing a Portfolio Website with Muse\": {\"frequency\": 1, \"value\": \"Designing a ...\"}, \"Making Money with Online Advertising\": {\"frequency\": 1, \"value\": \"Making Money with ...\"}, \"ER22x: Justice\": {\"frequency\": 1, \"value\": \"ER22x: Justice\"}, \"Create a Remix in Logic Pro 9\": {\"frequency\": 1, \"value\": \"Create a Remix in ...\"}, \"Encore CS5 Essential Training\": {\"frequency\": 1, \"value\": \"Encore CS5 ...\"}, \"Building a Commercial Soundtrack in Audition\": {\"frequency\": 1, \"value\": \"Building a ...\"}, \"Shooting with the Nikon D800\": {\"frequency\": 1, \"value\": \"Shooting with the ...\"}, \"Power Excel 2010 with MrExcel\": {\"frequency\": 1, \"value\": \"Power Excel 2010 ...\"}, \"Master Adobe Business Catalyst In Ten Easy Steps\": {\"frequency\": 1, \"value\": \"Master Adobe ...\"}, \"Having Difficult Conversations\": {\"frequency\": 1, \"value\": \"Having Difficult ...\"}, \"Entrepreneurial Writing: Discovering Your Purpose\": {\"frequency\": 1, \"value\": \"Entrepreneurial ...\"}, \"InDesign CS2 Power Shortcuts\": {\"frequency\": 1, \"value\": \"InDesign CS2 Power ...\"}, \"Photoshop Artist in Action: Uli Staiger's Powered by Nature\": {\"frequency\": 1, \"value\": \"Photoshop Artist ...\"}, \"German for Travelers\": {\"frequency\": 1, \"value\": \"German for ...\"}, \"Making Profits with Pinterest\": {\"frequency\": 1, \"value\": \"Making Profits ...\"}, \"Adobe Photoshop CS6\": {\"frequency\": 1, \"value\": \"Adobe Photoshop ...\"}, \"Block Buster: Overcoming Writer's Block\": {\"frequency\": 1, \"value\": \"Block Buster: ...\"}, \"Hello Design, Interactive Design Studio\": {\"frequency\": 1, \"value\": \"Hello Design, ...\"}, \"How to Build a Blog on WordPress\": {\"frequency\": 1, \"value\": \"How to Build a ...\"}, \"Build and Sell Your Own eLearning Courses and Make Money\": {\"frequency\": 1, \"value\": \"Build and Sell ...\"}, \"Getting Things Done\": {\"frequency\": 1, \"value\": \"Getting Things ...\"}, \"Thai Language For Beginners\": {\"frequency\": 1, \"value\": \"Thai Language For ...\"}, \"Using Word and InDesign Together\": {\"frequency\": 1, \"value\": \"Using Word and ...\"}, \"Digital Photos from Concept to Completion\": {\"frequency\": 1, \"value\": \"Digital Photos ...\"}, \"Mastering Microsoft PowerPoint Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"Project Management for Business Professionals\": {\"frequency\": 1, \"value\": \"Project Management ...\"}, \"Grow to Greatness: Smart Growth for Private Businesses, Part II\": {\"frequency\": 1, \"value\": \"Grow to Greatness: ...\"}, \"How to make your first iPhone app BOOTCAMP\": {\"frequency\": 1, \"value\": \"How to make your ...\"}, \"InDesign CC: Interactive Document Fundamentals\": {\"frequency\": 1, \"value\": \"InDesign CC: ...\"}, \"CSS3 MasterClass - Transformations And Animations\": {\"frequency\": 1, \"value\": \"CSS3 MasterClass - ...\"}, \"Yoga Poses Decoded\": {\"frequency\": 1, \"value\": \"Yoga Poses Decoded\"}, \"Intermediate Algebra\": {\"frequency\": 1, \"value\": \"Intermediate ...\"}, \"Create an Animated Bar Chart with jQuery\": {\"frequency\": 1, \"value\": \"Create an Animated ...\"}, \"Mastering Landscape Photography\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"Mac OS X Server 10.6 Snow Leopard Essential Training\": {\"frequency\": 1, \"value\": \"Mac OS X Server ...\"}, \"Jazz Improvisation\": {\"frequency\": 1, \"value\": \"Jazz Improvisation\"}, \"The 5 Pillars of Optimal Health\": {\"frequency\": 1, \"value\": \"The 5 Pillars of ...\"}, \"How to Write a Great Book Fast\": {\"frequency\": 1, \"value\": \"How to Write a ...\"}, \"Blogger Training\": {\"frequency\": 1, \"value\": \"Blogger Training\"}, \"iPhone Photography Pro\": {\"frequency\": 1, \"value\": \"iPhone Photography ...\"}, \"Introduction To Story Boarding\": {\"frequency\": 1, \"value\": \"Introduction To ...\"}, \"Learning Discreet 3ds max 6\": {\"frequency\": 1, \"value\": \"Learning Discreet ...\"}, \"Back To War - Photoshop Retouching\": {\"frequency\": 1, \"value\": \"Back To War - ...\"}, \"Investing Basics: A Framework for your Financial Future\": {\"frequency\": 1, \"value\": \"Investing Basics: ...\"}, \"Google+ for Business\": {\"frequency\": 1, \"value\": \"Google+ for ...\"}, \"Learning Illustrator 9\": {\"frequency\": 1, \"value\": \"Learning ...\"}, \"Basic Behavioral Neurology\": {\"frequency\": 1, \"value\": \"Basic Behavioral ...\"}, \"Maya 2011: Creating Natural Environments\": {\"frequency\": 1, \"value\": \"Maya 2011: ...\"}, \"Advanced White Hat Hacking & Penetration Testing Tutorial\": {\"frequency\": 1, \"value\": \"Advanced White Hat ...\"}, \"Mastercam X1-X7 Mill Video Tutorial Training\": {\"frequency\": 1, \"value\": \"Mastercam X1-X7 ...\"}, \"Writing Articles\": {\"frequency\": 1, \"value\": \"Writing Articles\"}, \"Mastering iPhone programming - Lite\": {\"frequency\": 1, \"value\": \"Mastering iPhone ...\"}, \"Make Your Relationship Last Forever: The Problems\": {\"frequency\": 1, \"value\": \"Make Your ...\"}, \"Creating Art Basics-NOT FOR CREDIT\": {\"frequency\": 1, \"value\": \"Creating Art ...\"}, \"Crisis Intervention Seminar\": {\"frequency\": 1, \"value\": \"Crisis ...\"}, \"Youth Marketing Academy: Meet the Social Customer\": {\"frequency\": 1, \"value\": \"Youth Marketing ...\"}, \"Practical Photoshop Selections\": {\"frequency\": 1, \"value\": \"Practical ...\"}, \"Intermediate English Course\": {\"frequency\": 1, \"value\": \"Intermediate ...\"}, \"Migrating from Entourage 2008 for Mac to Outlook 2011\": {\"frequency\": 1, \"value\": \"Migrating from ...\"}, \"How To Build an Ecommerce Website - Step By Step\": {\"frequency\": 1, \"value\": \"How To Build an ...\"}, \"Layouts with CSS in Dreamweaver\": {\"frequency\": 1, \"value\": \"Layouts with CSS ...\"}, \"Bringing Baby Home\": {\"frequency\": 1, \"value\": \"Bringing Baby Home\"}, \"Outlook 2010 New Features\": {\"frequency\": 1, \"value\": \"Outlook 2010 New ...\"}, \"Windows Phone SDK Essential Training\": {\"frequency\": 1, \"value\": \"Windows Phone SDK ...\"}, \"InDesign CS3 Prepress Essentials\": {\"frequency\": 1, \"value\": \"InDesign CS3 ...\"}, \"Fireworks CS4 Getting Started\": {\"frequency\": 1, \"value\": \"Fireworks CS4 ...\"}, \"Introduction to Business in Asia (BusAsia)\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"The Social Media Survival Guide\": {\"frequency\": 1, \"value\": \"The Social Media ...\"}, \"William Blake: Songs of Innocence and Experience\": {\"frequency\": 1, \"value\": \"William Blake: ...\"}, \"RapidAction Podcasting\": {\"frequency\": 1, \"value\": \"RapidAction ...\"}, \"Introduction to Microsoft Excel 2010\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Learn how to make iPhone and iPad apps in 1 hour without any programming\": {\"frequency\": 1, \"value\": \"Learn how to make ...\"}, \"The Design of Everyday Things\": {\"frequency\": 1, \"value\": \"The Design of ...\"}, \"Premiere Pro CS4 New Features\": {\"frequency\": 1, \"value\": \"Premiere Pro CS4 ...\"}, \"Create a Homepage Marquee with Edge Animate\": {\"frequency\": 1, \"value\": \"Create a Homepage ...\"}, \"Avid Media Composer 6\": {\"frequency\": 1, \"value\": \"Avid Media ...\"}, \"Mastering Jobs-to-be-Done Interviews\": {\"frequency\": 1, \"value\": \"Mastering Jobs-to- ...\"}, \"Pages '08 Essential Training\": {\"frequency\": 1, \"value\": \"Pages '08 ...\"}, \"Photoshop CS6 for Beginners\": {\"frequency\": 1, \"value\": \"Photoshop CS6 for ...\"}, \"ASP.NET MVC 4 Essential Training\": {\"frequency\": 1, \"value\": \"ASP.NET MVC 4 ...\"}, \"How To Self Publish a Book on Kindle\": {\"frequency\": 1, \"value\": \"How To Self ...\"}, \"Photoshop Creative Effects Workshop\": {\"frequency\": 1, \"value\": \"Photoshop Creative ...\"}, \"Flash Professional CS6 New Features\": {\"frequency\": 1, \"value\": \"Flash Professional ...\"}, \"Learn PHP Programming From Scratch\": {\"frequency\": 1, \"value\": \"Learn PHP ...\"}, \"Enhancing an Environmental Portrait with Photoshop\": {\"frequency\": 1, \"value\": \"Enhancing an ...\"}, \"Listening to World Music\": {\"frequency\": 1, \"value\": \"Listening to World ...\"}, \"Building Foliage for Games using 3ds Max and UDK\": {\"frequency\": 1, \"value\": \"Building Foliage ...\"}, \"Dynamic Cloth for Games with Maya and UDK\": {\"frequency\": 1, \"value\": \"Dynamic Cloth for ...\"}, \"The Fast Track To Forex Candle Pattern Trading\": {\"frequency\": 1, \"value\": \"The Fast Track To ...\"}, \"Create Sleek Professional Video Using Microsoft PowerPoint\": {\"frequency\": 1, \"value\": \"Create Sleek ...\"}, \"Xcode 4 Essential Training\": {\"frequency\": 1, \"value\": \"Xcode 4 Essential ...\"}, \"Watch Over My Shoulder And Be A Mac Expert In 90 Min or Less\": {\"frequency\": 1, \"value\": \"Watch Over My ...\"}, \"Create an Interactive Photo Gallery with jQuery and Dreamweaver\": {\"frequency\": 1, \"value\": \"Create an ...\"}, \"Illustrator CS Essential Training\": {\"frequency\": 1, \"value\": \"Illustrator CS ...\"}, \"Introduction to Autodesk's Motionbuilder\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Developing Mobile Websites\": {\"frequency\": 1, \"value\": \"Developing Mobile ...\"}, \"How to Become a Master Marketer\": {\"frequency\": 1, \"value\": \"How to Become a ...\"}, \"Mastering FTP\": {\"frequency\": 1, \"value\": \"Mastering FTP\"}, \"Federal Grant Writing 101\": {\"frequency\": 1, \"value\": \"Federal Grant ...\"}, \"How to Market Your Business\": {\"frequency\": 2, \"value\": \"How to Market Your ...\"}, \"The Magic of Snapseed\": {\"frequency\": 1, \"value\": \"The Magic of ...\"}, \"Mixing and Mastering with Pro Tools\": {\"frequency\": 1, \"value\": \"Mixing and ...\"}, \""Deep Dive" Screencast Training: Camtasia for Mac v2\": {\"frequency\": 1, \"value\": \""Deep ...\"}, \"Unity3d Concepts\": {\"frequency\": 1, \"value\": \"Unity3d Concepts\"}, \"Cisco 640-822 (ICND1) Exam Training Made Easy\": {\"frequency\": 1, \"value\": \"Cisco 640-822 ...\"}, \"How to Take Full Advantage of 2012\": {\"frequency\": 1, \"value\": \"How to Take Full ...\"}, \"Bioelectricity: A Quantitative Approach\": {\"frequency\": 1, \"value\": \"Bioelectricity: A ...\"}, \"Epigenetic Control of Gene Expression\": {\"frequency\": 1, \"value\": \"Epigenetic Control ...\"}, \"Proper Running Form\": {\"frequency\": 1, \"value\": \"Proper Running ...\"}, \"Lighting Tricks in After Effects\": {\"frequency\": 1, \"value\": \"Lighting Tricks in ...\"}, \"Start with a Theme: Food Blogs in WordPress\": {\"frequency\": 1, \"value\": \"Start with a ...\"}, \"Up and Running with Java Applications\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Intermediate Organic Chemistry - Part 1\": {\"frequency\": 1, \"value\": \"Intermediate ...\"}, \"Intermediate Organic Chemistry - Part 2\": {\"frequency\": 1, \"value\": \"Intermediate ...\"}, \"Toon.FX in Motion\": {\"frequency\": 1, \"value\": \"Toon.FX in Motion\"}, \"Speak Up! - Stand Out.\": {\"frequency\": 1, \"value\": \"Speak Up! - Stand ...\"}, \"Stat2.2x: Introduction to Statistics: Probability\": {\"frequency\": 1, \"value\": \"Stat2.2x: ...\"}, \"Market Your Message: Ignite Curiosity. Inspire Action.\": {\"frequency\": 1, \"value\": \"Market Your ...\"}, \"Film your TV show or movie for theater, television, DVD\": {\"frequency\": 1, \"value\": \"Film your TV show ...\"}, \"iOS Foundations\": {\"frequency\": 1, \"value\": \"iOS Foundations\"}, \"Photoshop Elements 9 Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop Elements ...\"}, \"AIR for Flash Developers (2008)\": {\"frequency\": 1, \"value\": \"AIR for Flash ...\"}, \"Excel for Mac 2011 Essential Training\": {\"frequency\": 1, \"value\": \"Excel for Mac 2011 ...\"}, \"The Modern World: Global History since 1760\": {\"frequency\": 1, \"value\": \"The Modern World: ...\"}, \"Building An Online Business From Scratch In 30 Easy Steps\": {\"frequency\": 1, \"value\": \"Building An Online ...\"}, \"Mapping Online - Easy to create professional map mash-ups\": {\"frequency\": 1, \"value\": \"Mapping Online - ...\"}, \"How to Create Apps The Easy Way -No Tech Experience Needed\": {\"frequency\": 1, \"value\": \"How to Create Apps ...\"}, \"Mac OS X 10.6 Snow Leopard New Features\": {\"frequency\": 1, \"value\": \"Mac OS X 10.6 Snow ...\"}, \"Learning AutoCAD 2014 Drawing Essentials\": {\"frequency\": 1, \"value\": \"Learning AutoCAD ...\"}, \"Connect Stage 1 Training\": {\"frequency\": 1, \"value\": \"Connect Stage 1 ...\"}, \"Motion 2 Essential Training\": {\"frequency\": 1, \"value\": \"Motion 2 Essential ...\"}, \"Advanced Microsoft Access 2010 Tutorial\": {\"frequency\": 1, \"value\": \"Advanced Microsoft ...\"}, \"Photoshop CS5: Fashion Retouching Projects\": {\"frequency\": 1, \"value\": \"Photoshop CS5: ...\"}, \"Creativity and Personal Mastery for Business Success\": {\"frequency\": 1, \"value\": \"Creativity and ...\"}, \"Analytical Chemistry / Instrumental Analysis\": {\"frequency\": 1, \"value\": \"Analytical ...\"}, \"How to: Retail, Bridal and Special Event Makeup Application\": {\"frequency\": 1, \"value\": \"How to: Retail, ...\"}, \"iOS Development Code Camp\": {\"frequency\": 1, \"value\": \"iOS Development ...\"}, \"Autotune 7\": {\"frequency\": 1, \"value\": \"Autotune 7\"}, \"WordPress Essential Training\": {\"frequency\": 1, \"value\": \"WordPress ...\"}, \"Design of Computer Programs\": {\"frequency\": 1, \"value\": \"Design of Computer ...\"}, \"After Effects Apprentice 02: Basic Animation\": {\"frequency\": 1, \"value\": \"After Effects ...\"}, \"Photoshop CS4: Sharpening Images New Features\": {\"frequency\": 1, \"value\": \"Photoshop CS4: ...\"}, \"YouTube for Musicians and Bands\": {\"frequency\": 1, \"value\": \"YouTube for ...\"}, \"Master Gmail to Be 10x More Productive\": {\"frequency\": 1, \"value\": \"Master Gmail to Be ...\"}, \"Outlook 2003 Essential Training\": {\"frequency\": 1, \"value\": \"Outlook 2003 ...\"}, \"Facebook Advertising Boot Camp\": {\"frequency\": 1, \"value\": \"Facebook ...\"}, \"CSS Cross-Country\": {\"frequency\": 1, \"value\": \"CSS Cross-Country\"}, \"Switching from Windows to Mac (2008)\": {\"frequency\": 1, \"value\": \"Switching from ...\"}, \"Dreamweaver CS6 Essential Training\": {\"frequency\": 1, \"value\": \"Dreamweaver CS6 ...\"}, \"Develop a logistic regression model in 1 week\": {\"frequency\": 1, \"value\": \"Develop a logistic ...\"}, \"Enterprise Ajax Tutorial\": {\"frequency\": 1, \"value\": \"Enterprise Ajax ...\"}, \"How to Build Your Company\": {\"frequency\": 1, \"value\": \"How to Build Your ...\"}, \"Get hired as a video game artist\": {\"frequency\": 1, \"value\": \"Get hired as a ...\"}, \"How to Create Amazing eBooks\": {\"frequency\": 1, \"value\": \"How to Create ...\"}, \"11 Things Every Newspaper Should Know About PDFs\": {\"frequency\": 1, \"value\": \"11 Things Every ...\"}, \"Twitter for Business\": {\"frequency\": 2, \"value\": \"Twitter for ...\"}, \"Word 2007: Forms in Depth\": {\"frequency\": 1, \"value\": \"Word 2007: Forms ...\"}, \"Up and Running with Encore CS5\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"R12i Oracle E Business Suite Fundamentals\": {\"frequency\": 1, \"value\": \"R12i Oracle E ...\"}, \"Android App Development Fundamentals I\": {\"frequency\": 1, \"value\": \"Android App ...\"}, \"Up and Running with Encore CS6\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Arithmetique: en route pour la cryptographie\": {\"frequency\": 1, \"value\": \"Arithmetique: en ...\"}, \"Collaborative Workflows with InDesign and InCopy\": {\"frequency\": 1, \"value\": \"Collaborative ...\"}, \"Logic Pro 9 New Features\": {\"frequency\": 1, \"value\": \"Logic Pro 9 New ...\"}, \"CSS Positioning Best Practices\": {\"frequency\": 1, \"value\": \"CSS Positioning ...\"}, \"Zero Budget Typesetting\": {\"frequency\": 1, \"value\": \"Zero Budget ...\"}, \"How To Become a Bestselling Author on Amazon Kindle\": {\"frequency\": 1, \"value\": \"How To Become a ...\"}, \"PHP with MySQL Beyond the Basics\": {\"frequency\": 1, \"value\": \"PHP with MySQL ...\"}, \"mocha Essential Training\": {\"frequency\": 1, \"value\": \"mocha Essential ...\"}, \"Adobe Audition CC Tutorial - Audition Made Easy\": {\"frequency\": 1, \"value\": \"Adobe Audition CC ...\"}, \"How to Use Content Marketing to Become Known as an Expert\": {\"frequency\": 1, \"value\": \"How to Use Content ...\"}, \"How to Make an iPhone app Through Outsourcing\": {\"frequency\": 1, \"value\": \"How to Make an ...\"}, \"Dreamweaver with PHP and MySQL\": {\"frequency\": 1, \"value\": \"Dreamweaver with ...\"}, \"Fireworks CS4 New Features\": {\"frequency\": 1, \"value\": \"Fireworks CS4 New ...\"}, \"Basic Concepts of Music\": {\"frequency\": 1, \"value\": \"Basic Concepts of ...\"}, \"Compositing with Premiere Pro CS5.5\": {\"frequency\": 1, \"value\": \"Compositing with ...\"}, \"Maya 2011: Creating Textures and Shaders\": {\"frequency\": 1, \"value\": \"Maya 2011: ...\"}, \"InDesign CS5 New Features Overview\": {\"frequency\": 1, \"value\": \"InDesign CS5 New ...\"}, \"QuickBooks Pro 2012 Training\": {\"frequency\": 1, \"value\": \"QuickBooks Pro ...\"}, \"Learning Dreamweaver MX\": {\"frequency\": 1, \"value\": \"Learning ...\"}, \"Disaster Preparedness\": {\"frequency\": 1, \"value\": \"Disaster ...\"}, \"Statistics in Education for Mere Mortals\": {\"frequency\": 1, \"value\": \"Statistics in ...\"}, \"Build Mobile Apps in a Flash!\": {\"frequency\": 1, \"value\": \"Build Mobile Apps ...\"}, \"Lightroom 2 Essential Training\": {\"frequency\": 1, \"value\": \"Lightroom 2 ...\"}, \"Enhancing Patient Safety through Interprofessional Collaborative Practice\": {\"frequency\": 1, \"value\": \"Enhancing Patient ...\"}, \"ABC for Designers: Tips & Exercises for the Design Practice\": {\"frequency\": 1, \"value\": \"ABC for Designers: ...\"}, \"InfoPath 2010 Essential Training\": {\"frequency\": 1, \"value\": \"InfoPath 2010 ...\"}, \"Creating Responsive Web Design\": {\"frequency\": 1, \"value\": \"Creating ...\"}, \"Learn How To Juggle\": {\"frequency\": 1, \"value\": \"Learn How To ...\"}, \"Unit Testing iOS Applications with Xcode 4\": {\"frequency\": 1, \"value\": \"Unit Testing iOS ...\"}, \"Basics of Business Finance\": {\"frequency\": 1, \"value\": \"Basics of Business ...\"}, \"Become a Better Photographer - Part I\": {\"frequency\": 1, \"value\": \"Become a Better ...\"}, \"Introduction to Google AdWords\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Intermediate Flash 5\": {\"frequency\": 1, \"value\": \"Intermediate Flash ...\"}, \"Photoshop Secrets & Dirty Tricks\": {\"frequency\": 1, \"value\": \"Photoshop Secrets ...\"}, \"Ableton Live 9 - New Features\": {\"frequency\": 1, \"value\": \"Ableton Live 9 - ...\"}, \"Synapses, Neurons and Brains\": {\"frequency\": 1, \"value\": \"Synapses, Neurons ...\"}, \"Social Media Marketing Classroom\": {\"frequency\": 1, \"value\": \"Social Media ...\"}, \"Deke's Techniques\": {\"frequency\": 1, \"value\": \"Deke's ...\"}, \"Baby Massage - "The Gift of Loving Touch"\": {\"frequency\": 1, \"value\": \"Baby Massage - ...\"}, \"Photoshop CS Essential Training\": {\"frequency\": 1, \"value\": \"Photoshop CS ...\"}, \"Part-Time Entrepreneurship & Startups\": {\"frequency\": 1, \"value\": \"Part-Time ...\"}, \"SEO Content Strategy for The Web\": {\"frequency\": 1, \"value\": \"SEO Content ...\"}, \"The Blog Writing Workshop\": {\"frequency\": 1, \"value\": \"The Blog Writing ...\"}, \"New Ways to Create Music with Logic Pro X\": {\"frequency\": 1, \"value\": \"New Ways to Create ...\"}, \"Introduction To Linux (Run Linux As Your Desktop)\": {\"frequency\": 1, \"value\": \"Introduction To ...\"}, \"The Creative Spark: Stacey Williams-Ng, Interactive Book Designer\": {\"frequency\": 1, \"value\": \"The Creative ...\"}, \"iTunes 10 Essential Training\": {\"frequency\": 1, \"value\": \"iTunes 10 ...\"}, \"Angel Investor Supercharger: Speed Up Your Investor Funding\": {\"frequency\": 1, \"value\": \"Angel Investor ...\"}, \"Building Windows Store Apps Essential Training\": {\"frequency\": 1, \"value\": \"Building Windows ...\"}, \"Solidworks Step By Step Beginner's Training\": {\"frequency\": 1, \"value\": \"Solidworks Step By ...\"}, \"Toon Boom Studio Tutorial - Cartoon Animation Made Simple\": {\"frequency\": 1, \"value\": \"Toon Boom Studio ...\"}, \"Up and Running with Illustrator CS6\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"How To Create Your Own Website (eCommerce)\": {\"frequency\": 1, \"value\": \"How To Create Your ...\"}, \"WordPress 3: Building Child Themes\": {\"frequency\": 1, \"value\": \"WordPress 3: ...\"}, \"Adapt Your Screenplay into a Kindle Novel - Make Money\": {\"frequency\": 1, \"value\": \"Adapt Your ...\"}, \"Introduction to Mathematical Thinking\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"The Language of Hollywood: Storytelling, Sound, and Color\": {\"frequency\": 1, \"value\": \"The Language of ...\"}, \"Budget - Save - Win. Simplify your financial life.\": {\"frequency\": 1, \"value\": \"Budget - Save - ...\"}, \"Differential Equations in Action\": {\"frequency\": 1, \"value\": \"Differential ...\"}, \"The Social Context of Mental Health and Illness\": {\"frequency\": 1, \"value\": \"The Social Context ...\"}, \"Practical Transformation Using XSLT and XPath (5-hour free preview; 24 hours total)\": {\"frequency\": 1, \"value\": \"Practical ...\"}, \"Publishing Prodigy: Outsource and Self Publish Kindle eBooks\": {\"frequency\": 1, \"value\": \"Publishing ...\"}, \"Foundations of Programming: Test-Driven Development\": {\"frequency\": 1, \"value\": \"Foundations of ...\"}, \"Tracking the Institutions with TechniTrader\": {\"frequency\": 1, \"value\": \"Tracking the ...\"}, \"SolidWorks Fundamentals\": {\"frequency\": 1, \"value\": \"SolidWorks ...\"}, \"Learn Microsoft Access 2010\": {\"frequency\": 1, \"value\": \"Learn Microsoft ...\"}, \"Up and Running with Photoshop Automation\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"The Ultimate Lightroom 4 Experience\": {\"frequency\": 1, \"value\": \"The Ultimate ...\"}, \"21 Steps to Start Speaking More Smoothly & Confidently\": {\"frequency\": 1, \"value\": \"21 Steps to Start ...\"}, \"Enterprise Gamification (Deutsch)\": {\"frequency\": 1, \"value\": \"Enterprise ...\"}, \"Beginning Algebra: Building a Foundation\": {\"frequency\": 1, \"value\": \"Beginning Algebra: ...\"}, \"AIR 1.5 for Dreamweaver and AJAX Developers\": {\"frequency\": 1, \"value\": \"AIR 1.5 for ...\"}, \"The Best Excel Training On The Web - Microsoft Excel 2014\": {\"frequency\": 1, \"value\": \"The Best Excel ...\"}, \"From the Gilded Age to the Roaring Twenties: The Emergence of Modern America\": {\"frequency\": 1, \"value\": \"From the Gilded ...\"}, \"Create Stunning Promo Videos in 30 Minutes or Less\": {\"frequency\": 1, \"value\": \"Create Stunning ...\"}, \"Essential Skills for Designers - Masking\": {\"frequency\": 1, \"value\": \"Essential Skills ...\"}, \"How to create your own Intranet Video Streaming Server\": {\"frequency\": 1, \"value\": \"How to create your ...\"}, \"Windows Live Movie Maker Essential Training\": {\"frequency\": 1, \"value\": \"Windows Live Movie ...\"}, \"Learn the basics of PRINCE2 and prepare for both exams\": {\"frequency\": 1, \"value\": \"Learn the basics ...\"}, \"Turn your BLAH photos into WOW Photos\": {\"frequency\": 1, \"value\": \"Turn your BLAH ...\"}, \"Up and Running with HTML5 Video\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Chemistry\": {\"frequency\": 1, \"value\": \"Chemistry\"}, \"Hiring Your Team\": {\"frequency\": 1, \"value\": \"Hiring Your Team\"}, \"Influence Investors: Secret Twitter Tactics for Fundraising\": {\"frequency\": 1, \"value\": \"Influence ...\"}, \"Happily Ever After\": {\"frequency\": 1, \"value\": \"Happily Ever After\"}, \"High Value Low Pressure Expert Sales Course\": {\"frequency\": 1, \"value\": \"High Value Low ...\"}, \"Cocoa Programming Fundamentals\": {\"frequency\": 1, \"value\": \"Cocoa Programming ...\"}, \"How to Make Money Online the Real Way\": {\"frequency\": 1, \"value\": \"How to Make Money ...\"}, \"Illustrator CS3 Essential Training\": {\"frequency\": 1, \"value\": \"Illustrator CS3 ...\"}, \"After Effects 7 and Flash 8 Integration\": {\"frequency\": 1, \"value\": \"After Effects 7 ...\"}, \"Learn Android Development From Scratch\": {\"frequency\": 1, \"value\": \"Learn Android ...\"}, \"Photoshop CS3 Extended: Research Methods and Workflows\": {\"frequency\": 1, \"value\": \"Photoshop CS3 ...\"}, \"Word 2007: Styles in Depth\": {\"frequency\": 1, \"value\": \"Word 2007: Styles ...\"}, \"TIBCO ActiveMatrix BusinessWorks Essentials\": {\"frequency\": 1, \"value\": \"TIBCO ActiveMatrix ...\"}, \"Create an Online Portfolio with WordPress\": {\"frequency\": 1, \"value\": \"Create an Online ...\"}, \"iPad Music Production: Auria\": {\"frequency\": 1, \"value\": \"iPad Music ...\"}, \"Introductory Financial Accounting\": {\"frequency\": 1, \"value\": \"Introductory ...\"}, \"Pandora Internet Radio: Your Customized Music Experience\": {\"frequency\": 1, \"value\": \"Pandora Internet ...\"}, \"Learn How To Build A Corporate Website Using Joomla!\": {\"frequency\": 1, \"value\": \"Learn How To Build ...\"}, \"Photoshop for Photographers: Creative Effects\": {\"frequency\": 1, \"value\": \"Photoshop for ...\"}, \"Online Vegan Vegetarian Cooking School\": {\"frequency\": 1, \"value\": \"Online Vegan ...\"}, \"Post-Traumatic Stress Disorder Causes, Symptoms, Treatments\": {\"frequency\": 1, \"value\": \"Post-Traumatic ...\"}, \"How to Have Financial Security and Live Debt Free\": {\"frequency\": 1, \"value\": \"How to Have ...\"}, \"Javascript for Programmers\": {\"frequency\": 1, \"value\": \"Javascript for ...\"}, \"Soundtrack Pro Essential Training\": {\"frequency\": 1, \"value\": \"Soundtrack Pro ...\"}, \"TOEFL iBT Speaking Question 1 Strategy (Free Course)\": {\"frequency\": 1, \"value\": \"TOEFL iBT Speaking ...\"}, \"Office 2013 New Features - Learn Now!\": {\"frequency\": 1, \"value\": \"Office 2013 New ...\"}, \"The Total Hot Body Fitness Workout\": {\"frequency\": 1, \"value\": \"The Total Hot Body ...\"}, \"Director MX Essential Training\": {\"frequency\": 1, \"value\": \"Director MX ...\"}, \"ESL Troubleshooting: Selected Topics in English Skills\": {\"frequency\": 1, \"value\": \"ESL ...\"}, \"Computer Networks\": {\"frequency\": 1, \"value\": \"Computer Networks\"}, \"Creating a Responsive Web Design\": {\"frequency\": 1, \"value\": \"Creating a ...\"}, \"Mastering Logos Bible Software\": {\"frequency\": 1, \"value\": \"Mastering Logos ...\"}, \"Pages '09 Essential Training\": {\"frequency\": 1, \"value\": \"Pages '09 ...\"}, \"ColdFusion 8 Essential Training\": {\"frequency\": 1, \"value\": \"ColdFusion 8 ...\"}, \"Final Cut Server 1.5 Getting Started\": {\"frequency\": 1, \"value\": \"Final Cut Server ...\"}, \"Premiere Pro 2 New Features\": {\"frequency\": 1, \"value\": \"Premiere Pro 2 New ...\"}, \"Web Intelligence and Big Data\": {\"frequency\": 1, \"value\": \"Web Intelligence ...\"}, \"The Outsource Course\": {\"frequency\": 1, \"value\": \"The Outsource ...\"}, \"HTML5: File API in Depth\": {\"frequency\": 1, \"value\": \"HTML5: File API in ...\"}, \"CPE for CPAs EAs - Business Expenses Training 2013\": {\"frequency\": 1, \"value\": \"CPE for CPAs EAs - ...\"}, \"Introduction to Finance\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Learn to Program with C++\": {\"frequency\": 1, \"value\": \"Learn to Program ...\"}, \"The Science of Gastronomy\": {\"frequency\": 1, \"value\": \"The Science of ...\"}, \"Microeconomics Principles\": {\"frequency\": 1, \"value\": \"Microeconomics ...\"}, \"HTML5 for Beginners\": {\"frequency\": 2, \"value\": \"HTML5 for ...\"}, \"Authenticity on Twitter\": {\"frequency\": 1, \"value\": \"Authenticity on ...\"}, \"SEO: Link Building in Depth\": {\"frequency\": 1, \"value\": \"SEO: Link Building ...\"}, \"Create a Killer Personal Brand\": {\"frequency\": 1, \"value\": \"Create a Killer ...\"}, \"Task-based Language Teaching with Digital Tools\": {\"frequency\": 1, \"value\": \"Task-based ...\"}, \"Astrobiology and the Search for Extraterrestrial Life\": {\"frequency\": 1, \"value\": \"Astrobiology and ...\"}, \"Bluehost and Wordpress - The Quick & Easy Guide\": {\"frequency\": 1, \"value\": \"Bluehost and ...\"}, \"Home Improvement Project Survivor\": {\"frequency\": 1, \"value\": \"Home Improvement ...\"}, \"How To Conquer The Excuses That Keep You From Finishing\": {\"frequency\": 1, \"value\": \"How To Conquer The ...\"}, \"Learn Perl 5 By Doing It\": {\"frequency\": 1, \"value\": \"Learn Perl 5 By ...\"}, \"QuarkXPress 6 Essential Training\": {\"frequency\": 1, \"value\": \"QuarkXPress 6 ...\"}, \"Lightroom 4 Video Workshop\": {\"frequency\": 1, \"value\": \"Lightroom 4 Video ...\"}, \"Lightroom 4 Image Management Workshop\": {\"frequency\": 1, \"value\": \"Lightroom 4 Image ...\"}, \"Getting Started with WordPerfect Office X4\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Bento Essential Training\": {\"frequency\": 1, \"value\": \"Bento Essential ...\"}, \"Create Your Business Narrative: Bank on Content\": {\"frequency\": 1, \"value\": \"Create Your ...\"}, \"Getting Started with Corel Painter 8\": {\"frequency\": 1, \"value\": \"Getting Started ...\"}, \"Photoshop CS6 Image Optimization Workshop\": {\"frequency\": 1, \"value\": \"Photoshop CS6 ...\"}, \"14-Day Yoga Detox and Empowerment Course\": {\"frequency\": 1, \"value\": \"14-Day Yoga Detox ...\"}, \"Up and Running with Lightroom 5\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"WordPress for Wedding Photographers\": {\"frequency\": 1, \"value\": \"WordPress for ...\"}, \"Publish Your Own Poetry Chapbook\": {\"frequency\": 1, \"value\": \"Publish Your Own ...\"}, \"Apple Video Training: Numbers for iPad\": {\"frequency\": 1, \"value\": \"Apple Video ...\"}, \"ENG112x: Shakespeare: On the Page and in Performance\": {\"frequency\": 1, \"value\": \"ENG112x: ...\"}, \"Narrative Scene Editing with Avid Media Composer\": {\"frequency\": 1, \"value\": \"Narrative Scene ...\"}, \"Mastering Your Profile on LinkedIn\": {\"frequency\": 1, \"value\": \"Mastering Your ...\"}, \"Introduction to Web and eCommerce User eXperience Design\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"Advanced Excel For Accounting, Corp. Finance & MIS Reporting\": {\"frequency\": 1, \"value\": \"Advanced Excel For ...\"}, \"Understanding Maya nCloth\": {\"frequency\": 1, \"value\": \"Understanding Maya ...\"}, \"Premiere Pro CS6 New Features\": {\"frequency\": 1, \"value\": \"Premiere Pro CS6 ...\"}, \"Essential Options: Strategies for Mastering the Stock Market\": {\"frequency\": 1, \"value\": \"Essential Options: ...\"}, \"Sharing Photos Online with Lightroom 5\": {\"frequency\": 1, \"value\": \"Sharing Photos ...\"}, \"Lightroom 1.3 for Digital Photographers\": {\"frequency\": 1, \"value\": \"Lightroom 1.3 for ...\"}, \"InDesign CS Essential Training\": {\"frequency\": 1, \"value\": \"InDesign CS ...\"}, \"FileMaker Pro 11 New Features\": {\"frequency\": 1, \"value\": \"FileMaker Pro 11 ...\"}, \"Introducing PHP\": {\"frequency\": 1, \"value\": \"Introducing PHP\"}, \"Common Cents Personal Finance\": {\"frequency\": 1, \"value\": \"Common Cents ...\"}, \"Up and Running with Photoshop for Design\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Animating Characters with Mecanim in Unity 3D\": {\"frequency\": 1, \"value\": \"Animating ...\"}, \"Dreamweaver and WordPress: Building Themes\": {\"frequency\": 1, \"value\": \"Dreamweaver and ...\"}, \"Digital Signal Processing\": {\"frequency\": 1, \"value\": \"Digital Signal ...\"}, \"Sales and Persuasion Skills for Startups\": {\"frequency\": 1, \"value\": \"Sales and ...\"}, \"24 Hour Success - The Art of Making Money Online\": {\"frequency\": 1, \"value\": \"24 Hour Success - ...\"}, \"The Perfect Golf Swing\": {\"frequency\": 1, \"value\": \"The Perfect Golf ...\"}, \"Camtasia Essentials\": {\"frequency\": 1, \"value\": \"Camtasia ...\"}, \"Facebook Page: effective community building\": {\"frequency\": 1, \"value\": \"Facebook Page: ...\"}, \"How to Create an Awesome Demo Video for Your Business\": {\"frequency\": 1, \"value\": \"How to Create an ...\"}, \"Mudbox/3DS MAX Character Modeling\": {\"frequency\": 1, \"value\": \"Mudbox/3DS MAX ...\"}, \"How To Turn Flea Market Trash Into eBay Treasure\": {\"frequency\": 1, \"value\": \"How To Turn Flea ...\"}, \"Insights on Architectural Photography\": {\"frequency\": 1, \"value\": \"Insights on ...\"}, \"PHP Punch in the Face\": {\"frequency\": 1, \"value\": \"PHP Punch in the ...\"}, \"Game Development Fundamentals with Python\": {\"frequency\": 1, \"value\": \"Game Development ...\"}, \"Illustrator CS4 Essential Training\": {\"frequency\": 1, \"value\": \"Illustrator CS4 ...\"}, \"Overcoming Debt\": {\"frequency\": 1, \"value\": \"Overcoming Debt\"}, \"Photoshop CS6 New Features Overview\": {\"frequency\": 1, \"value\": \"Photoshop CS6 New ...\"}, \"V-Ray 2.0 for Maya Essential Training\": {\"frequency\": 1, \"value\": \"V-Ray 2.0 for Maya ...\"}, \"17 Day Radiant Meditation Cleanse\": {\"frequency\": 1, \"value\": \"17 Day Radiant ...\"}, \"6.00x: Introduction to Computer Science and Programming\": {\"frequency\": 1, \"value\": \"6.00x: ...\"}, \"The Future of You: Creating Your Enduring Brand\": {\"frequency\": 1, \"value\": \"The Future of You: ...\"}, \"Objective C for Beginners\": {\"frequency\": 1, \"value\": \"Objective C for ...\"}, \"ActionScript 3.0 in Flash CS3 Professional Essential Training\": {\"frequency\": 1, \"value\": \"ActionScript 3.0 ...\"}, \"Learn C# 2010 Part II\": {\"frequency\": 1, \"value\": \"Learn C# 2010 Part ...\"}, \"Photoshop CS6 Essentials\": {\"frequency\": 1, \"value\": \"Photoshop CS6 ...\"}, \"Blackboard 9.x Essential Training for Students\": {\"frequency\": 1, \"value\": \"Blackboard 9.x ...\"}, \"Learn After Effects in 90 Minutes\": {\"frequency\": 1, \"value\": \"Learn After ...\"}, \"There's No Place Like Home\": {\"frequency\": 1, \"value\": \"There's No ...\"}, \"Deliver Value: A Cash Source Crash Course\": {\"frequency\": 1, \"value\": \"Deliver Value: A ...\"}, \"Project 2007 Advanced\": {\"frequency\": 1, \"value\": \"Project 2007 ...\"}, \"Maya Modeling Quadrilateral Based Dinosaur in 3 hours\": {\"frequency\": 1, \"value\": \"Maya Modeling ...\"}, \"Node.js and Socket.IO for beginners\": {\"frequency\": 1, \"value\": \"Node.js and ...\"}, \"How to carry out a usability expert review\": {\"frequency\": 1, \"value\": \"How to carry out a ...\"}, \"Learning Photoshop Elements 2\": {\"frequency\": 1, \"value\": \"Learning Photoshop ...\"}, \"Build a Simple Android App\": {\"frequency\": 1, \"value\": \"Build a Simple ...\"}, \"The Secrets of Body Language\": {\"frequency\": 1, \"value\": \"The Secrets of ...\"}, \"Game Development Made Easy\": {\"frequency\": 1, \"value\": \"Game Development ...\"}, \"Practical and Effective JavaScript\": {\"frequency\": 1, \"value\": \"Practical and ...\"}, \"School of Raising Capital: Use Crowdfunding to Raise Money\": {\"frequency\": 1, \"value\": \"School of Raising ...\"}, \"Create a WordPress blog\": {\"frequency\": 1, \"value\": \"Create a WordPress ...\"}, \"Lightroom 3 Advanced Techniques\": {\"frequency\": 1, \"value\": \"Lightroom 3 ...\"}, \"Up and Running with Foundation\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Introduction to Drupal\": {\"frequency\": 1, \"value\": \"Introduction to ...\"}, \"TOEFL iBT Reading Comprehension Online Preparation Course\": {\"frequency\": 1, \"value\": \"TOEFL iBT Reading ...\"}, \"Managing your Cashflow\": {\"frequency\": 1, \"value\": \"Managing your ...\"}, \"Negotiation for Entrepreneurs\": {\"frequency\": 1, \"value\": \"Negotiation for ...\"}, \"Try Objective-C\": {\"frequency\": 1, \"value\": \"Try Objective-C\"}, \"Fireworks 8 Essential Training\": {\"frequency\": 1, \"value\": \"Fireworks 8 ...\"}, \"Healthy Living for a Busy Life\": {\"frequency\": 1, \"value\": \"Healthy Living for ...\"}, \"Brew Your Own Beer with the Mr. Beer Kit\": {\"frequency\": 1, \"value\": \"Brew Your Own Beer ...\"}, \"The Social Growth System\": {\"frequency\": 1, \"value\": \"The Social Growth ...\"}, \"iPhone icons in iOS7 - learn flat design\": {\"frequency\": 1, \"value\": \"iPhone icons in ...\"}, \"A Beginner's Guide to Irrational Behavior\": {\"frequency\": 1, \"value\": \"A Beginner's ...\"}, \"Brand Yourself with a Custom WordPress Site\": {\"frequency\": 1, \"value\": \"Brand Yourself ...\"}, \"Camtasia Studio 8 Essential Training\": {\"frequency\": 1, \"value\": \"Camtasia Studio 8 ...\"}, \"ColdFusion 9 New Features\": {\"frequency\": 1, \"value\": \"ColdFusion 9 New ...\"}, \"After Effects CS6 New Features\": {\"frequency\": 1, \"value\": \"After Effects CS6 ...\"}, \"Using Symbols in Illustrator\": {\"frequency\": 1, \"value\": \"Using Symbols in ...\"}, \"Site Navigation with CSS in Dreamweaver\": {\"frequency\": 1, \"value\": \"Site Navigation ...\"}, \"Simple, Healthy Fall Recipes\": {\"frequency\": 1, \"value\": \"Simple, Healthy ...\"}, \"Photoshop CS3 One-on-One: Advanced Techniques\": {\"frequency\": 1, \"value\": \"Photoshop CS3 One- ...\"}, \"Adobe Photoshop Elements 10 Made Easy\": {\"frequency\": 1, \"value\": \"Adobe Photoshop ...\"}, \"Wacom Essential Training\": {\"frequency\": 1, \"value\": \"Wacom Essential ...\"}, \"Marketing Your Mastery\": {\"frequency\": 1, \"value\": \"Marketing Your ...\"}, \"Microsoft Excel - Level 1 - Foundations\": {\"frequency\": 1, \"value\": \"Microsoft Excel - ...\"}, \"Mastering Microsoft Project 2013 Made Easy Training Tutorial\": {\"frequency\": 1, \"value\": \"Mastering ...\"}, \"Statistics One\": {\"frequency\": 1, \"value\": \"Statistics One\"}, \"Authentic Yoga Experience Series 1 - 3\": {\"frequency\": 1, \"value\": \"Authentic Yoga ...\"}, \"Game Development In Unity 3D Tutorial\": {\"frequency\": 1, \"value\": \"Game Development ...\"}, \"Discovering Your Strengths\": {\"frequency\": 1, \"value\": \"Discovering Your ...\"}, \"InDesign: 10 Essential Tips\": {\"frequency\": 1, \"value\": \"InDesign: 10 ...\"}, \"Creating Simulations in Maya Dynamics\": {\"frequency\": 1, \"value\": \"Creating ...\"}, \"QuarkXPress 7 New Features\": {\"frequency\": 1, \"value\": \"QuarkXPress 7 New ...\"}, \"After Effects CS5 Essential Training\": {\"frequency\": 1, \"value\": \"After Effects CS5 ...\"}, \"Quicken 2009 for Windows Essential Training\": {\"frequency\": 1, \"value\": \"Quicken 2009 for ...\"}, \"Learn To Dominate Affiliate Marketing Using Linkedin, FAST!\": {\"frequency\": 1, \"value\": \"Learn To Dominate ...\"}, \"Excel 2007: Working with Dates and Times\": {\"frequency\": 1, \"value\": \"Excel 2007: ...\"}, \"Up and Running with InDesign\": {\"frequency\": 1, \"value\": \"Up and Running ...\"}, \"Algorithms, Part I\": {\"frequency\": 1, \"value\": \"Algorithms, Part I\"}, \"Douglas Kirkland on Photography: Studio Portraiture\": {\"frequency\": 1, \"value\": \"Douglas Kirkland ...\"}, \"Bert Monroy: Dreamscapes Volume 2\": {\"frequency\": 1, \"value\": \"Bert Monroy: ...\"}, \"Bert Monroy: Dreamscapes Volume 3\": {\"frequency\": 1, \"value\": \"Bert Monroy: ...\"}, \"Managing Your Time\": {\"frequency\": 1, \"value\": \"Managing Your Time\"}, \"Bert Monroy: Dreamscapes Volume 1\": {\"frequency\": 1, \"value\": \"Bert Monroy: ...\"}, \"The Marketplace & Creativity: Lifepro (Parts 3 & 4)\": {\"frequency\": 1, \"value\": \"The Marketplace ...\"}, \"Javascript for Beginners\": {\"frequency\": 1, \"value\": \"Javascript for ...\"}, \"Cisco CCNA in 60 Days - Preview\": {\"frequency\": 1, \"value\": \"Cisco CCNA in 60 ...\"}}, \"size\": 5597}, \"avg_rating\": {\"std\": 0.6940364617109795, \"complete\": true, \"min\": 1.3, \"max\": 4.9, \"quantile\": [1.3, 1.8, 1.9, 2.1, 2.4, 2.7, 2.7, 2.8, 2.9, 3.0, 3.0, 3.1, 3.1, 3.2, 3.2, 3.3, 3.3, 3.3, 3.3, 3.4, 3.4, 3.5, 3.6, 3.6, 3.6, 3.6, 3.6, 3.6, 3.6, 3.6, 3.7, 3.8, 3.8, 3.8, 3.8, 3.8, 3.9, 3.9, 3.9, 3.9, 3.9, 3.9, 3.9, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.1, 4.1, 4.1, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.2, 4.3, 4.3, 4.3, 4.3, 4.3, 4.3, 4.3, 4.3, 4.3, 4.3, 4.3, 4.4, 4.4, 4.4, 4.4, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 4.5, 4.6, 4.6, 4.6, 4.7, 4.7, 4.7, 4.7, 4.7, 4.7, 4.8, 4.8, 4.8, 4.8, 4.9, 4.9, 4.9], \"median\": 4.1, \"numeric\": true, \"num_unique\": 31, \"num_undefined\": 5383, \"var\": 0.48168661018429604, \"progress\": 1.0, \"size\": 5597, \"frequent_items\": {\"4.5\": {\"frequency\": 22, \"value\": 4.5}, \"3.5\": {\"frequency\": 4, \"value\": 3.5}, \"2.0\": {\"frequency\": 1, \"value\": 2.0}, \"3.0\": {\"frequency\": 5, \"value\": 3.0}, \"4.0\": {\"frequency\": 13, \"value\": 4.0}, \"3.9\": {\"frequency\": 16, \"value\": 3.9}, \"3.7\": {\"frequency\": 2, \"value\": 3.7}, \"1.4\": {\"frequency\": 1, \"value\": 1.4}, \"2.8\": {\"frequency\": 1, \"value\": 2.8}, \"4.6\": {\"frequency\": 6, \"value\": 4.6}, \"4.1\": {\"frequency\": 8, \"value\": 4.1}, \"2.9\": {\"frequency\": 3, \"value\": 2.9}, \"4.7\": {\"frequency\": 13, \"value\": 4.7}, \"3.2\": {\"frequency\": 4, \"value\": 3.2}, \"4.8\": {\"frequency\": 8, \"value\": 4.8}, \"3.3\": {\"frequency\": 9, \"value\": 3.3}, \"1.3\": {\"frequency\": 1, \"value\": 1.3}, \"4.3\": {\"frequency\": 22, \"value\": 4.3}, \"4.2\": {\"frequency\": 15, \"value\": 4.2}, \"2.4\": {\"frequency\": 2, \"value\": 2.4}, \"3.4\": {\"frequency\": 4, \"value\": 3.4}, \"4.4\": {\"frequency\": 9, \"value\": 4.4}, \"1.9\": {\"frequency\": 2, \"value\": 1.9}, \"1.8\": {\"frequency\": 1, \"value\": 1.8}, \"4.9\": {\"frequency\": 6, \"value\": 4.9}, \"2.7\": {\"frequency\": 4, \"value\": 2.7}, \"2.1\": {\"frequency\": 1, \"value\": 2.1}, \"3.6\": {\"frequency\": 17, \"value\": 3.6}, \"3.1\": {\"frequency\": 3, \"value\": 3.1}, \"3.8\": {\"frequency\": 10, \"value\": 3.8}, \"2.2\": {\"frequency\": 1, \"value\": 2.2}}, \"mean\": 3.9373831775700943}, \"difficulty\": {\"complete\": true, \"numeric\": false, \"num_unique\": 11, \"num_undefined\": 0, \"progress\": 1.0, \"frequent_items\": {\"MATH 006L\": {\"frequency\": 1, \"value\": \"MATH 006L\"}, \"Medium\": {\"frequency\": 78, \"value\": \"Medium\"}, \"Medium/hard\": {\"frequency\": 39, \"value\": \"Medium/hard\"}, \"Easy/medium\": {\"frequency\": 37, \"value\": \"Easy/medium\"}, \"MATH 008\": {\"frequency\": 1, \"value\": \"MATH 008\"}, \"Hard\": {\"frequency\": 20, \"value\": \"Hard\"}, \"-\": {\"frequency\": 5381, \"value\": \"-\"}, \"STAT095\": {\"frequency\": 1, \"value\": \"STAT095\"}, \"CS046A\": {\"frequency\": 1, \"value\": \"CS046A\"}, \"Easy\": {\"frequency\": 37, \"value\": \"Easy\"}, \"PSYC001\": {\"frequency\": 1, \"value\": \"PSYC001\"}}, \"size\": 5597}, \"provider\": {\"complete\": true, \"numeric\": false, \"num_unique\": 14, \"num_undefined\": 0, \"progress\": 1.0, \"frequent_items\": {\"None\": {\"frequency\": 10, \"value\": \"None\"}, \"open2study\": {\"frequency\": 19, \"value\": \"open2study\"}, \"khanacademy\": {\"frequency\": 23, \"value\": \"khanacademy\"}, \"lynda\": {\"frequency\": 2091, \"value\": \"lynda\"}, \"coursera\": {\"frequency\": 173, \"value\": \"coursera\"}, \"udacity\": {\"frequency\": 28, \"value\": \"udacity\"}, \"udemy\": {\"frequency\": 3049, \"value\": \"udemy\"}, \"codeschool\": {\"frequency\": 34, \"value\": \"codeschool\"}, \"codecademy\": {\"frequency\": 6, \"value\": \"codecademy\"}, \"canvas\": {\"frequency\": 43, \"value\": \"canvas\"}, \"novoed\": {\"frequency\": 5, \"value\": \"novoed\"}, \"edx\": {\"frequency\": 73, \"value\": \"edx\"}, \"mruniversity\": {\"frequency\": 6, \"value\": \"mruniversity\"}, \"treehouse\": {\"frequency\": 37, \"value\": \"treehouse\"}}, \"size\": 5597}, \"course_id\": {\"std\": 1615.7147025387867, \"complete\": true, \"min\": 1.0, \"max\": 5597.0, \"quantile\": [1.0, 56.0, 112.0, 168.0, 224.0, 280.0, 336.0, 392.0, 448.0, 504.0, 560.0, 616.0, 672.0, 728.0, 783.0, 839.0, 895.0, 951.0, 1007.0, 1063.0, 1119.0, 1175.0, 1231.0, 1287.0, 1343.0, 1399.0, 1455.0, 1510.0, 1566.0, 1622.0, 1678.0, 1734.0, 1790.0, 1846.0, 1902.0, 1958.0, 2014.0, 2070.0, 2126.0, 2182.0, 2237.0, 2293.0, 2349.0, 2405.0, 2461.0, 2517.0, 2573.0, 2629.0, 2689.0, 2745.0, 2801.0, 2857.0, 2913.0, 2969.0, 3025.0, 3081.0, 3137.0, 3193.0, 3249.0, 3305.0, 3361.0, 3416.0, 3472.0, 3528.0, 3584.0, 3640.0, 3696.0, 3752.0, 3808.0, 3864.0, 3920.0, 3976.0, 4032.0, 4088.0, 4143.0, 4199.0, 4255.0, 4311.0, 4367.0, 4423.0, 4479.0, 4535.0, 4591.0, 4647.0, 4703.0, 4759.0, 4815.0, 4870.0, 4926.0, 4982.0, 5038.0, 5094.0, 5150.0, 5206.0, 5262.0, 5318.0, 5374.0, 5430.0, 5486.0, 5542.0, 5597.0], \"median\": 2801.0, \"numeric\": true, \"num_unique\": 5586, \"num_undefined\": 0, \"var\": 2610534.0, \"progress\": 1.0, \"size\": 5597, \"frequent_items\": {\"1\": {\"frequency\": 1, \"value\": 1}, \"2\": {\"frequency\": 1, \"value\": 2}, \"3\": {\"frequency\": 1, \"value\": 3}, \"4\": {\"frequency\": 1, \"value\": 4}, \"5\": {\"frequency\": 1, \"value\": 5}, \"6\": {\"frequency\": 1, \"value\": 6}, \"7\": {\"frequency\": 1, \"value\": 7}, \"8\": {\"frequency\": 1, \"value\": 8}, \"9\": {\"frequency\": 1, \"value\": 9}, \"10\": {\"frequency\": 1, \"value\": 10}, \"11\": {\"frequency\": 1, \"value\": 11}, \"12\": {\"frequency\": 1, \"value\": 12}, \"13\": {\"frequency\": 1, \"value\": 13}, \"14\": {\"frequency\": 1, \"value\": 14}, \"15\": {\"frequency\": 1, \"value\": 15}, \"16\": {\"frequency\": 1, \"value\": 16}, \"17\": {\"frequency\": 1, \"value\": 17}, \"18\": {\"frequency\": 1, \"value\": 18}, \"19\": {\"frequency\": 1, \"value\": 19}, \"20\": {\"frequency\": 1, \"value\": 20}, \"21\": {\"frequency\": 1, \"value\": 21}, \"22\": {\"frequency\": 1, \"value\": 22}, \"23\": {\"frequency\": 1, \"value\": 23}, \"24\": {\"frequency\": 1, \"value\": 24}, \"25\": {\"frequency\": 1, \"value\": 25}, \"26\": {\"frequency\": 1, \"value\": 26}, \"27\": {\"frequency\": 1, \"value\": 27}, \"28\": {\"frequency\": 1, \"value\": 28}, \"29\": {\"frequency\": 1, \"value\": 29}, \"30\": {\"frequency\": 1, \"value\": 30}, \"31\": {\"frequency\": 1, \"value\": 31}, \"32\": {\"frequency\": 1, \"value\": 32}, \"33\": {\"frequency\": 1, \"value\": 33}, \"34\": {\"frequency\": 1, \"value\": 34}, \"35\": {\"frequency\": 1, \"value\": 35}, \"36\": {\"frequency\": 1, \"value\": 36}, \"37\": {\"frequency\": 1, \"value\": 37}, \"38\": {\"frequency\": 1, \"value\": 38}, \"39\": {\"frequency\": 1, \"value\": 39}, \"40\": {\"frequency\": 1, \"value\": 40}, \"41\": {\"frequency\": 1, \"value\": 41}, \"42\": {\"frequency\": 1, \"value\": 42}, \"43\": {\"frequency\": 1, \"value\": 43}, \"44\": {\"frequency\": 1, \"value\": 44}, \"45\": {\"frequency\": 1, \"value\": 45}, \"46\": {\"frequency\": 1, \"value\": 46}, \"47\": {\"frequency\": 1, \"value\": 47}, \"48\": {\"frequency\": 1, \"value\": 48}, \"49\": {\"frequency\": 1, \"value\": 49}, \"50\": {\"frequency\": 1, \"value\": 50}, \"51\": {\"frequency\": 1, \"value\": 51}, \"52\": {\"frequency\": 1, \"value\": 52}, \"53\": {\"frequency\": 1, \"value\": 53}, \"54\": {\"frequency\": 1, \"value\": 54}, \"55\": {\"frequency\": 1, \"value\": 55}, \"56\": {\"frequency\": 1, \"value\": 56}, \"57\": {\"frequency\": 1, \"value\": 57}, \"58\": {\"frequency\": 1, \"value\": 58}, \"59\": {\"frequency\": 1, \"value\": 59}, \"60\": {\"frequency\": 1, \"value\": 60}, \"61\": {\"frequency\": 1, \"value\": 61}, \"62\": {\"frequency\": 1, \"value\": 62}, \"63\": {\"frequency\": 1, \"value\": 63}, \"64\": {\"frequency\": 1, \"value\": 64}, \"65\": {\"frequency\": 1, \"value\": 65}, \"66\": {\"frequency\": 1, \"value\": 66}, \"67\": {\"frequency\": 1, \"value\": 67}, \"68\": {\"frequency\": 1, \"value\": 68}, \"69\": {\"frequency\": 1, \"value\": 69}, \"70\": {\"frequency\": 1, \"value\": 70}, \"71\": {\"frequency\": 1, \"value\": 71}, \"72\": {\"frequency\": 1, \"value\": 72}, \"73\": {\"frequency\": 1, \"value\": 73}, \"74\": {\"frequency\": 1, \"value\": 74}, \"75\": {\"frequency\": 1, \"value\": 75}, \"76\": {\"frequency\": 1, \"value\": 76}, \"77\": {\"frequency\": 1, \"value\": 77}, \"78\": {\"frequency\": 1, \"value\": 78}, \"79\": {\"frequency\": 1, \"value\": 79}, \"80\": {\"frequency\": 1, \"value\": 80}, \"81\": {\"frequency\": 1, \"value\": 81}, \"82\": {\"frequency\": 1, \"value\": 82}, \"83\": {\"frequency\": 1, \"value\": 83}, \"84\": {\"frequency\": 1, \"value\": 84}, \"85\": {\"frequency\": 1, \"value\": 85}, \"86\": {\"frequency\": 1, \"value\": 86}, \"87\": {\"frequency\": 1, \"value\": 87}, \"88\": {\"frequency\": 1, \"value\": 88}, \"89\": {\"frequency\": 1, \"value\": 89}, \"90\": {\"frequency\": 1, \"value\": 90}, \"91\": {\"frequency\": 1, \"value\": 91}, \"92\": {\"frequency\": 1, \"value\": 92}, \"93\": {\"frequency\": 1, \"value\": 93}, \"94\": {\"frequency\": 1, \"value\": 94}, \"95\": {\"frequency\": 1, \"value\": 95}, \"96\": {\"frequency\": 1, \"value\": 96}, \"97\": {\"frequency\": 1, \"value\": 97}, \"98\": {\"frequency\": 1, \"value\": 98}, \"99\": {\"frequency\": 1, \"value\": 99}, \"100\": {\"frequency\": 1, \"value\": 100}, \"101\": {\"frequency\": 1, \"value\": 101}, \"102\": {\"frequency\": 1, \"value\": 102}, \"103\": {\"frequency\": 1, \"value\": 103}, \"104\": {\"frequency\": 1, \"value\": 104}, \"105\": {\"frequency\": 1, \"value\": 105}, \"106\": {\"frequency\": 1, \"value\": 106}, \"107\": {\"frequency\": 1, \"value\": 107}, \"108\": {\"frequency\": 1, \"value\": 108}, \"109\": {\"frequency\": 1, \"value\": 109}, \"110\": {\"frequency\": 1, \"value\": 110}, \"111\": {\"frequency\": 1, \"value\": 111}, \"112\": {\"frequency\": 1, \"value\": 112}, \"113\": {\"frequency\": 1, \"value\": 113}, \"114\": {\"frequency\": 1, \"value\": 114}, \"115\": {\"frequency\": 1, \"value\": 115}, \"116\": {\"frequency\": 1, \"value\": 116}, \"117\": {\"frequency\": 1, \"value\": 117}, \"118\": {\"frequency\": 1, \"value\": 118}, \"119\": {\"frequency\": 1, \"value\": 119}, \"120\": {\"frequency\": 1, \"value\": 120}, \"121\": {\"frequency\": 1, \"value\": 121}, \"122\": {\"frequency\": 1, \"value\": 122}, \"123\": {\"frequency\": 1, \"value\": 123}, \"124\": {\"frequency\": 1, \"value\": 124}, \"125\": {\"frequency\": 1, \"value\": 125}, \"126\": {\"frequency\": 1, \"value\": 126}, \"127\": {\"frequency\": 1, \"value\": 127}, \"128\": {\"frequency\": 1, \"value\": 128}, \"129\": {\"frequency\": 1, \"value\": 129}, \"130\": {\"frequency\": 1, \"value\": 130}, \"131\": {\"frequency\": 1, \"value\": 131}, \"132\": {\"frequency\": 1, \"value\": 132}, \"133\": {\"frequency\": 1, \"value\": 133}, \"134\": {\"frequency\": 1, \"value\": 134}, \"135\": {\"frequency\": 1, \"value\": 135}, \"136\": {\"frequency\": 1, \"value\": 136}, \"137\": {\"frequency\": 1, \"value\": 137}, \"138\": {\"frequency\": 1, \"value\": 138}, \"139\": {\"frequency\": 1, \"value\": 139}, \"140\": {\"frequency\": 1, \"value\": 140}, \"141\": {\"frequency\": 1, \"value\": 141}, \"142\": {\"frequency\": 1, \"value\": 142}, \"143\": {\"frequency\": 1, \"value\": 143}, \"144\": {\"frequency\": 1, \"value\": 144}, \"145\": {\"frequency\": 1, \"value\": 145}, \"146\": {\"frequency\": 1, \"value\": 146}, \"147\": {\"frequency\": 1, \"value\": 147}, \"148\": {\"frequency\": 1, \"value\": 148}, \"149\": {\"frequency\": 1, \"value\": 149}, \"150\": {\"frequency\": 1, \"value\": 150}, \"151\": {\"frequency\": 1, \"value\": 151}, \"152\": {\"frequency\": 1, \"value\": 152}, \"153\": {\"frequency\": 1, \"value\": 153}, \"154\": {\"frequency\": 1, \"value\": 154}, \"155\": {\"frequency\": 1, \"value\": 155}, \"156\": {\"frequency\": 1, \"value\": 156}, \"157\": {\"frequency\": 1, \"value\": 157}, \"158\": {\"frequency\": 1, \"value\": 158}, \"159\": {\"frequency\": 1, \"value\": 159}, \"160\": {\"frequency\": 1, \"value\": 160}, \"161\": {\"frequency\": 1, \"value\": 161}, \"162\": {\"frequency\": 1, \"value\": 162}, \"163\": {\"frequency\": 1, \"value\": 163}, \"164\": {\"frequency\": 1, \"value\": 164}, \"165\": {\"frequency\": 1, \"value\": 165}, \"166\": {\"frequency\": 1, \"value\": 166}, \"167\": {\"frequency\": 1, \"value\": 167}, \"168\": {\"frequency\": 1, \"value\": 168}, \"169\": {\"frequency\": 1, \"value\": 169}, \"170\": {\"frequency\": 1, \"value\": 170}, \"171\": {\"frequency\": 1, \"value\": 171}, \"172\": {\"frequency\": 1, \"value\": 172}, \"173\": {\"frequency\": 1, \"value\": 173}, \"174\": {\"frequency\": 1, \"value\": 174}, \"175\": {\"frequency\": 1, \"value\": 175}, \"176\": {\"frequency\": 1, \"value\": 176}, \"177\": {\"frequency\": 1, \"value\": 177}, \"178\": {\"frequency\": 1, \"value\": 178}, \"179\": {\"frequency\": 1, \"value\": 179}, \"180\": {\"frequency\": 1, \"value\": 180}, \"181\": {\"frequency\": 1, \"value\": 181}, \"182\": {\"frequency\": 1, \"value\": 182}, \"183\": {\"frequency\": 1, \"value\": 183}, \"184\": {\"frequency\": 1, \"value\": 184}, \"185\": {\"frequency\": 1, \"value\": 185}, \"186\": {\"frequency\": 1, \"value\": 186}, \"187\": {\"frequency\": 1, \"value\": 187}, \"188\": {\"frequency\": 1, \"value\": 188}, \"189\": {\"frequency\": 1, \"value\": 189}, \"190\": {\"frequency\": 1, \"value\": 190}, \"191\": {\"frequency\": 1, \"value\": 191}, \"192\": {\"frequency\": 1, \"value\": 192}, \"193\": {\"frequency\": 1, \"value\": 193}, \"194\": {\"frequency\": 1, \"value\": 194}, \"195\": {\"frequency\": 1, \"value\": 195}, \"196\": {\"frequency\": 1, \"value\": 196}, \"197\": {\"frequency\": 1, \"value\": 197}, \"198\": {\"frequency\": 1, \"value\": 198}, \"199\": {\"frequency\": 1, \"value\": 199}, \"200\": {\"frequency\": 1, \"value\": 200}, \"201\": {\"frequency\": 1, \"value\": 201}, \"202\": {\"frequency\": 1, \"value\": 202}, \"203\": {\"frequency\": 1, \"value\": 203}, \"204\": {\"frequency\": 1, \"value\": 204}, \"205\": {\"frequency\": 1, \"value\": 205}, \"206\": {\"frequency\": 1, \"value\": 206}, \"207\": {\"frequency\": 1, \"value\": 207}, \"208\": {\"frequency\": 1, \"value\": 208}, \"209\": {\"frequency\": 1, \"value\": 209}, \"210\": {\"frequency\": 1, \"value\": 210}, \"211\": {\"frequency\": 1, \"value\": 211}, \"212\": {\"frequency\": 1, \"value\": 212}, \"213\": {\"frequency\": 1, \"value\": 213}, \"214\": {\"frequency\": 1, \"value\": 214}, \"215\": {\"frequency\": 1, \"value\": 215}, \"216\": {\"frequency\": 1, \"value\": 216}, \"217\": {\"frequency\": 1, \"value\": 217}, \"218\": {\"frequency\": 1, \"value\": 218}, \"219\": {\"frequency\": 1, \"value\": 219}, \"220\": {\"frequency\": 1, \"value\": 220}, \"221\": {\"frequency\": 1, \"value\": 221}, \"222\": {\"frequency\": 1, \"value\": 222}, \"223\": {\"frequency\": 1, \"value\": 223}, \"224\": {\"frequency\": 1, \"value\": 224}, \"225\": {\"frequency\": 1, \"value\": 225}, \"226\": {\"frequency\": 1, \"value\": 226}, \"227\": {\"frequency\": 1, \"value\": 227}, \"228\": {\"frequency\": 1, \"value\": 228}, \"229\": {\"frequency\": 1, \"value\": 229}, \"230\": {\"frequency\": 1, \"value\": 230}, \"231\": {\"frequency\": 1, \"value\": 231}, \"232\": {\"frequency\": 1, \"value\": 232}, \"233\": {\"frequency\": 1, \"value\": 233}, \"234\": {\"frequency\": 1, \"value\": 234}, \"235\": {\"frequency\": 1, \"value\": 235}, \"236\": {\"frequency\": 1, \"value\": 236}, \"237\": {\"frequency\": 1, \"value\": 237}, \"238\": {\"frequency\": 1, \"value\": 238}, \"239\": {\"frequency\": 1, \"value\": 239}, \"240\": {\"frequency\": 1, \"value\": 240}, \"241\": {\"frequency\": 1, \"value\": 241}, \"242\": {\"frequency\": 1, \"value\": 242}, \"243\": {\"frequency\": 1, \"value\": 243}, \"244\": {\"frequency\": 1, \"value\": 244}, \"245\": {\"frequency\": 1, \"value\": 245}, \"246\": {\"frequency\": 1, \"value\": 246}, \"247\": {\"frequency\": 1, \"value\": 247}, \"248\": {\"frequency\": 1, \"value\": 248}, \"249\": {\"frequency\": 1, \"value\": 249}, \"250\": {\"frequency\": 1, \"value\": 250}, \"251\": {\"frequency\": 1, \"value\": 251}, \"252\": {\"frequency\": 1, \"value\": 252}, \"253\": {\"frequency\": 1, \"value\": 253}, \"254\": {\"frequency\": 1, \"value\": 254}, \"255\": {\"frequency\": 1, \"value\": 255}, \"256\": {\"frequency\": 1, \"value\": 256}, \"257\": {\"frequency\": 1, \"value\": 257}, \"258\": {\"frequency\": 1, \"value\": 258}, \"259\": {\"frequency\": 1, \"value\": 259}, \"260\": {\"frequency\": 1, \"value\": 260}, \"261\": {\"frequency\": 1, \"value\": 261}, \"262\": {\"frequency\": 1, \"value\": 262}, \"263\": {\"frequency\": 1, \"value\": 263}, \"264\": {\"frequency\": 1, \"value\": 264}, \"265\": {\"frequency\": 1, \"value\": 265}, \"266\": {\"frequency\": 1, \"value\": 266}, \"267\": {\"frequency\": 1, \"value\": 267}, \"268\": {\"frequency\": 1, \"value\": 268}, \"269\": {\"frequency\": 1, \"value\": 269}, \"270\": {\"frequency\": 1, \"value\": 270}, \"271\": {\"frequency\": 1, \"value\": 271}, \"272\": {\"frequency\": 1, \"value\": 272}, \"273\": {\"frequency\": 1, \"value\": 273}, \"274\": {\"frequency\": 1, \"value\": 274}, \"275\": {\"frequency\": 1, \"value\": 275}, \"276\": {\"frequency\": 1, \"value\": 276}, \"277\": {\"frequency\": 1, \"value\": 277}, \"278\": {\"frequency\": 1, \"value\": 278}, \"279\": {\"frequency\": 1, \"value\": 279}, \"280\": {\"frequency\": 1, \"value\": 280}, \"281\": {\"frequency\": 1, \"value\": 281}, \"282\": {\"frequency\": 1, \"value\": 282}, \"283\": {\"frequency\": 1, \"value\": 283}, \"284\": {\"frequency\": 1, \"value\": 284}, \"285\": {\"frequency\": 1, \"value\": 285}, \"286\": {\"frequency\": 1, \"value\": 286}, \"287\": {\"frequency\": 1, \"value\": 287}, \"288\": {\"frequency\": 1, \"value\": 288}, \"289\": {\"frequency\": 1, \"value\": 289}, \"290\": {\"frequency\": 1, \"value\": 290}, \"291\": {\"frequency\": 1, \"value\": 291}, \"292\": {\"frequency\": 1, \"value\": 292}, \"293\": {\"frequency\": 1, \"value\": 293}, \"294\": {\"frequency\": 1, \"value\": 294}, \"295\": {\"frequency\": 1, \"value\": 295}, \"296\": {\"frequency\": 1, \"value\": 296}, \"297\": {\"frequency\": 1, \"value\": 297}, \"298\": {\"frequency\": 1, \"value\": 298}, \"299\": {\"frequency\": 1, \"value\": 299}, \"300\": {\"frequency\": 1, \"value\": 300}, \"301\": {\"frequency\": 1, \"value\": 301}, \"302\": {\"frequency\": 1, \"value\": 302}, \"303\": {\"frequency\": 1, \"value\": 303}, \"304\": {\"frequency\": 1, \"value\": 304}, \"305\": {\"frequency\": 1, \"value\": 305}, \"306\": {\"frequency\": 1, \"value\": 306}, \"307\": {\"frequency\": 1, \"value\": 307}, \"308\": {\"frequency\": 1, \"value\": 308}, \"309\": {\"frequency\": 1, \"value\": 309}, \"310\": {\"frequency\": 1, \"value\": 310}, \"311\": {\"frequency\": 1, \"value\": 311}, \"312\": {\"frequency\": 1, \"value\": 312}, \"313\": {\"frequency\": 1, \"value\": 313}, \"314\": {\"frequency\": 1, \"value\": 314}, \"315\": {\"frequency\": 1, \"value\": 315}, \"316\": {\"frequency\": 1, \"value\": 316}, \"317\": {\"frequency\": 1, \"value\": 317}, \"318\": {\"frequency\": 1, \"value\": 318}, \"319\": {\"frequency\": 1, \"value\": 319}, \"320\": {\"frequency\": 1, \"value\": 320}, \"321\": {\"frequency\": 1, \"value\": 321}, \"322\": {\"frequency\": 1, \"value\": 322}, \"323\": {\"frequency\": 1, \"value\": 323}, \"324\": {\"frequency\": 1, \"value\": 324}, \"325\": {\"frequency\": 1, \"value\": 325}, \"326\": {\"frequency\": 1, \"value\": 326}, \"327\": {\"frequency\": 1, \"value\": 327}, \"328\": {\"frequency\": 1, \"value\": 328}, \"329\": {\"frequency\": 1, \"value\": 329}, \"330\": {\"frequency\": 1, \"value\": 330}, \"331\": {\"frequency\": 1, \"value\": 331}, \"332\": {\"frequency\": 1, \"value\": 332}, \"333\": {\"frequency\": 1, \"value\": 333}, \"334\": {\"frequency\": 1, \"value\": 334}, \"335\": {\"frequency\": 1, \"value\": 335}, \"336\": {\"frequency\": 1, \"value\": 336}, \"337\": {\"frequency\": 1, \"value\": 337}, \"338\": {\"frequency\": 1, \"value\": 338}, \"339\": {\"frequency\": 1, \"value\": 339}, \"340\": {\"frequency\": 1, \"value\": 340}, \"341\": {\"frequency\": 1, \"value\": 341}, \"342\": {\"frequency\": 1, \"value\": 342}, \"343\": {\"frequency\": 1, \"value\": 343}, \"344\": {\"frequency\": 1, \"value\": 344}, \"345\": {\"frequency\": 1, \"value\": 345}, \"346\": {\"frequency\": 1, \"value\": 346}, \"347\": {\"frequency\": 1, \"value\": 347}, \"348\": {\"frequency\": 1, \"value\": 348}, \"349\": {\"frequency\": 1, \"value\": 349}, \"350\": {\"frequency\": 1, \"value\": 350}, \"351\": {\"frequency\": 1, \"value\": 351}, \"352\": {\"frequency\": 1, \"value\": 352}, \"353\": {\"frequency\": 1, \"value\": 353}, \"354\": {\"frequency\": 1, \"value\": 354}, \"355\": {\"frequency\": 1, \"value\": 355}, \"356\": {\"frequency\": 1, \"value\": 356}, \"357\": {\"frequency\": 1, \"value\": 357}, \"358\": {\"frequency\": 1, \"value\": 358}, \"359\": {\"frequency\": 1, \"value\": 359}, \"360\": {\"frequency\": 1, \"value\": 360}, \"361\": {\"frequency\": 1, \"value\": 361}, \"362\": {\"frequency\": 1, \"value\": 362}, \"363\": {\"frequency\": 1, \"value\": 363}, \"364\": {\"frequency\": 1, \"value\": 364}, \"365\": {\"frequency\": 1, \"value\": 365}, \"366\": {\"frequency\": 1, \"value\": 366}, \"367\": {\"frequency\": 1, \"value\": 367}, \"368\": {\"frequency\": 1, \"value\": 368}, \"369\": {\"frequency\": 1, \"value\": 369}, \"370\": {\"frequency\": 1, \"value\": 370}, \"371\": {\"frequency\": 1, \"value\": 371}, \"372\": {\"frequency\": 1, \"value\": 372}, \"373\": {\"frequency\": 1, \"value\": 373}, \"374\": {\"frequency\": 1, \"value\": 374}, \"375\": {\"frequency\": 1, \"value\": 375}, \"376\": {\"frequency\": 1, \"value\": 376}, \"377\": {\"frequency\": 1, \"value\": 377}, \"378\": {\"frequency\": 1, \"value\": 378}, \"379\": {\"frequency\": 1, \"value\": 379}, \"380\": {\"frequency\": 1, \"value\": 380}, \"381\": {\"frequency\": 1, \"value\": 381}, \"382\": {\"frequency\": 1, \"value\": 382}, \"383\": {\"frequency\": 1, \"value\": 383}, \"384\": {\"frequency\": 1, \"value\": 384}, \"385\": {\"frequency\": 1, \"value\": 385}, \"386\": {\"frequency\": 1, \"value\": 386}, \"387\": {\"frequency\": 1, \"value\": 387}, \"388\": {\"frequency\": 1, \"value\": 388}, \"389\": {\"frequency\": 1, \"value\": 389}, \"390\": {\"frequency\": 1, \"value\": 390}, \"391\": {\"frequency\": 1, \"value\": 391}, \"392\": {\"frequency\": 1, \"value\": 392}, \"393\": {\"frequency\": 1, \"value\": 393}, \"394\": {\"frequency\": 1, \"value\": 394}, \"395\": {\"frequency\": 1, \"value\": 395}, \"396\": {\"frequency\": 1, \"value\": 396}, \"397\": {\"frequency\": 1, \"value\": 397}, \"398\": {\"frequency\": 1, \"value\": 398}, \"399\": {\"frequency\": 1, \"value\": 399}, \"400\": {\"frequency\": 1, \"value\": 400}, \"401\": {\"frequency\": 1, \"value\": 401}, \"402\": {\"frequency\": 1, \"value\": 402}, \"403\": {\"frequency\": 1, \"value\": 403}, \"404\": {\"frequency\": 1, \"value\": 404}, \"405\": {\"frequency\": 1, \"value\": 405}, \"406\": {\"frequency\": 1, \"value\": 406}, \"407\": {\"frequency\": 1, \"value\": 407}, \"408\": {\"frequency\": 1, \"value\": 408}, \"409\": {\"frequency\": 1, \"value\": 409}, \"410\": {\"frequency\": 1, \"value\": 410}, \"411\": {\"frequency\": 1, \"value\": 411}, \"412\": {\"frequency\": 1, \"value\": 412}, \"413\": {\"frequency\": 1, \"value\": 413}, \"414\": {\"frequency\": 1, \"value\": 414}, \"415\": {\"frequency\": 1, \"value\": 415}, \"416\": {\"frequency\": 1, \"value\": 416}, \"417\": {\"frequency\": 1, \"value\": 417}, \"418\": {\"frequency\": 1, \"value\": 418}, \"419\": {\"frequency\": 1, \"value\": 419}, \"420\": {\"frequency\": 1, \"value\": 420}, \"421\": {\"frequency\": 1, \"value\": 421}, \"422\": {\"frequency\": 1, \"value\": 422}, \"423\": {\"frequency\": 1, \"value\": 423}, \"424\": {\"frequency\": 1, \"value\": 424}, \"425\": {\"frequency\": 1, \"value\": 425}, \"426\": {\"frequency\": 1, \"value\": 426}, \"427\": {\"frequency\": 1, \"value\": 427}, \"428\": {\"frequency\": 1, \"value\": 428}, \"429\": {\"frequency\": 1, \"value\": 429}, \"430\": {\"frequency\": 1, \"value\": 430}, \"431\": {\"frequency\": 1, \"value\": 431}, \"432\": {\"frequency\": 1, \"value\": 432}, \"433\": {\"frequency\": 1, \"value\": 433}, \"434\": {\"frequency\": 1, \"value\": 434}, \"435\": {\"frequency\": 1, \"value\": 435}, \"436\": {\"frequency\": 1, \"value\": 436}, \"437\": {\"frequency\": 1, \"value\": 437}, \"438\": {\"frequency\": 1, \"value\": 438}, \"439\": {\"frequency\": 1, \"value\": 439}, \"440\": {\"frequency\": 1, \"value\": 440}, \"441\": {\"frequency\": 1, \"value\": 441}, \"442\": {\"frequency\": 1, \"value\": 442}, \"443\": {\"frequency\": 1, \"value\": 443}, \"444\": {\"frequency\": 1, \"value\": 444}, \"445\": {\"frequency\": 1, \"value\": 445}, \"446\": {\"frequency\": 1, \"value\": 446}, \"447\": {\"frequency\": 1, \"value\": 447}, \"448\": {\"frequency\": 1, \"value\": 448}, \"449\": {\"frequency\": 1, \"value\": 449}, \"450\": {\"frequency\": 1, \"value\": 450}, \"451\": {\"frequency\": 1, \"value\": 451}, \"452\": {\"frequency\": 1, \"value\": 452}, \"453\": {\"frequency\": 1, \"value\": 453}, \"454\": {\"frequency\": 1, \"value\": 454}, \"455\": {\"frequency\": 1, \"value\": 455}, \"456\": {\"frequency\": 1, \"value\": 456}, \"457\": {\"frequency\": 1, \"value\": 457}, \"458\": {\"frequency\": 1, \"value\": 458}, \"459\": {\"frequency\": 1, \"value\": 459}, \"460\": {\"frequency\": 1, \"value\": 460}, \"461\": {\"frequency\": 1, \"value\": 461}, \"462\": {\"frequency\": 1, \"value\": 462}, \"463\": {\"frequency\": 1, \"value\": 463}, \"464\": {\"frequency\": 1, \"value\": 464}, \"465\": {\"frequency\": 1, \"value\": 465}, \"466\": {\"frequency\": 1, \"value\": 466}, \"467\": {\"frequency\": 1, \"value\": 467}, \"468\": {\"frequency\": 1, \"value\": 468}, \"469\": {\"frequency\": 1, \"value\": 469}, \"470\": {\"frequency\": 1, \"value\": 470}, \"471\": {\"frequency\": 1, \"value\": 471}, \"472\": {\"frequency\": 1, \"value\": 472}, \"473\": {\"frequency\": 1, \"value\": 473}, \"474\": {\"frequency\": 1, \"value\": 474}, \"475\": {\"frequency\": 1, \"value\": 475}, \"476\": {\"frequency\": 1, \"value\": 476}, \"477\": {\"frequency\": 1, \"value\": 477}, \"478\": {\"frequency\": 1, \"value\": 478}, \"479\": {\"frequency\": 1, \"value\": 479}, \"480\": {\"frequency\": 1, \"value\": 480}, \"481\": {\"frequency\": 1, \"value\": 481}, \"482\": {\"frequency\": 1, \"value\": 482}, \"483\": {\"frequency\": 1, \"value\": 483}, \"484\": {\"frequency\": 1, \"value\": 484}, \"485\": {\"frequency\": 1, \"value\": 485}, \"486\": {\"frequency\": 1, \"value\": 486}, \"487\": {\"frequency\": 1, \"value\": 487}, \"488\": {\"frequency\": 1, \"value\": 488}, \"489\": {\"frequency\": 1, \"value\": 489}, \"490\": {\"frequency\": 1, \"value\": 490}, \"491\": {\"frequency\": 1, \"value\": 491}, \"492\": {\"frequency\": 1, \"value\": 492}, \"493\": {\"frequency\": 1, \"value\": 493}, \"494\": {\"frequency\": 1, \"value\": 494}, \"495\": {\"frequency\": 1, \"value\": 495}, \"496\": {\"frequency\": 1, \"value\": 496}, \"497\": {\"frequency\": 1, \"value\": 497}, \"498\": {\"frequency\": 1, \"value\": 498}, \"499\": {\"frequency\": 1, \"value\": 499}, \"500\": {\"frequency\": 1, \"value\": 500}, \"501\": {\"frequency\": 1, \"value\": 501}, \"502\": {\"frequency\": 1, \"value\": 502}, \"503\": {\"frequency\": 1, \"value\": 503}, \"504\": {\"frequency\": 1, \"value\": 504}, \"505\": {\"frequency\": 1, \"value\": 505}, \"506\": {\"frequency\": 1, \"value\": 506}, \"507\": {\"frequency\": 1, \"value\": 507}, \"508\": {\"frequency\": 1, \"value\": 508}, \"509\": {\"frequency\": 1, \"value\": 509}, \"510\": {\"frequency\": 1, \"value\": 510}, \"511\": {\"frequency\": 1, \"value\": 511}, \"512\": {\"frequency\": 1, \"value\": 512}, \"513\": {\"frequency\": 1, \"value\": 513}, \"514\": {\"frequency\": 1, \"value\": 514}, \"515\": {\"frequency\": 1, \"value\": 515}, \"516\": {\"frequency\": 1, \"value\": 516}, \"517\": {\"frequency\": 1, \"value\": 517}, \"518\": {\"frequency\": 1, \"value\": 518}, \"519\": {\"frequency\": 1, \"value\": 519}, \"520\": {\"frequency\": 1, \"value\": 520}, \"521\": {\"frequency\": 1, \"value\": 521}, \"522\": {\"frequency\": 1, \"value\": 522}, \"523\": {\"frequency\": 1, \"value\": 523}, \"524\": {\"frequency\": 1, \"value\": 524}, \"525\": {\"frequency\": 1, \"value\": 525}, \"526\": {\"frequency\": 1, \"value\": 526}, \"527\": {\"frequency\": 1, \"value\": 527}, \"528\": {\"frequency\": 1, \"value\": 528}, \"529\": {\"frequency\": 1, \"value\": 529}, \"530\": {\"frequency\": 1, \"value\": 530}, \"531\": {\"frequency\": 1, \"value\": 531}, \"532\": {\"frequency\": 1, \"value\": 532}, \"533\": {\"frequency\": 1, \"value\": 533}, \"534\": {\"frequency\": 1, \"value\": 534}, \"535\": {\"frequency\": 1, \"value\": 535}, \"536\": {\"frequency\": 1, \"value\": 536}, \"537\": {\"frequency\": 1, \"value\": 537}, \"538\": {\"frequency\": 1, \"value\": 538}, \"539\": {\"frequency\": 1, \"value\": 539}, \"540\": {\"frequency\": 1, \"value\": 540}, \"541\": {\"frequency\": 1, \"value\": 541}, \"542\": {\"frequency\": 1, \"value\": 542}, \"543\": {\"frequency\": 1, \"value\": 543}, \"544\": {\"frequency\": 1, \"value\": 544}, \"545\": {\"frequency\": 1, \"value\": 545}, \"546\": {\"frequency\": 1, \"value\": 546}, \"547\": {\"frequency\": 1, \"value\": 547}, \"548\": {\"frequency\": 1, \"value\": 548}, \"549\": {\"frequency\": 1, \"value\": 549}, \"550\": {\"frequency\": 1, \"value\": 550}, \"551\": {\"frequency\": 1, \"value\": 551}, \"552\": {\"frequency\": 1, \"value\": 552}, \"553\": {\"frequency\": 1, \"value\": 553}, \"554\": {\"frequency\": 1, \"value\": 554}, \"555\": {\"frequency\": 1, \"value\": 555}, \"556\": {\"frequency\": 1, \"value\": 556}, \"557\": {\"frequency\": 1, \"value\": 557}, \"558\": {\"frequency\": 1, \"value\": 558}, \"559\": {\"frequency\": 1, \"value\": 559}, \"560\": {\"frequency\": 1, \"value\": 560}, \"561\": {\"frequency\": 1, \"value\": 561}, \"562\": {\"frequency\": 1, \"value\": 562}, \"563\": {\"frequency\": 1, \"value\": 563}, \"564\": {\"frequency\": 1, \"value\": 564}, \"565\": {\"frequency\": 1, \"value\": 565}, \"566\": {\"frequency\": 1, \"value\": 566}, \"567\": {\"frequency\": 1, \"value\": 567}, \"568\": {\"frequency\": 1, \"value\": 568}, \"569\": {\"frequency\": 1, \"value\": 569}, \"570\": {\"frequency\": 1, \"value\": 570}, \"571\": {\"frequency\": 1, \"value\": 571}, \"572\": {\"frequency\": 1, \"value\": 572}, \"573\": {\"frequency\": 1, \"value\": 573}, \"574\": {\"frequency\": 1, \"value\": 574}, \"575\": {\"frequency\": 1, \"value\": 575}, \"576\": {\"frequency\": 1, \"value\": 576}, \"577\": {\"frequency\": 1, \"value\": 577}, \"578\": {\"frequency\": 1, \"value\": 578}, \"579\": {\"frequency\": 1, \"value\": 579}, \"580\": {\"frequency\": 1, \"value\": 580}, \"581\": {\"frequency\": 1, \"value\": 581}, \"582\": {\"frequency\": 1, \"value\": 582}, \"583\": {\"frequency\": 1, \"value\": 583}, \"584\": {\"frequency\": 1, \"value\": 584}, \"585\": {\"frequency\": 1, \"value\": 585}, \"586\": {\"frequency\": 1, \"value\": 586}, \"587\": {\"frequency\": 1, \"value\": 587}, \"588\": {\"frequency\": 1, \"value\": 588}, \"589\": {\"frequency\": 1, \"value\": 589}, \"590\": {\"frequency\": 1, \"value\": 590}, \"591\": {\"frequency\": 1, \"value\": 591}, \"592\": {\"frequency\": 1, \"value\": 592}, \"593\": {\"frequency\": 1, \"value\": 593}, \"594\": {\"frequency\": 1, \"value\": 594}, \"595\": {\"frequency\": 1, \"value\": 595}, \"596\": {\"frequency\": 1, \"value\": 596}, \"597\": {\"frequency\": 1, \"value\": 597}, \"598\": {\"frequency\": 1, \"value\": 598}, \"599\": {\"frequency\": 1, \"value\": 599}, \"600\": {\"frequency\": 1, \"value\": 600}, \"601\": {\"frequency\": 1, \"value\": 601}, \"602\": {\"frequency\": 1, \"value\": 602}, \"603\": {\"frequency\": 1, \"value\": 603}, \"604\": {\"frequency\": 1, \"value\": 604}, \"605\": {\"frequency\": 1, \"value\": 605}, \"606\": {\"frequency\": 1, \"value\": 606}, \"607\": {\"frequency\": 1, \"value\": 607}, \"608\": {\"frequency\": 1, \"value\": 608}, \"609\": {\"frequency\": 1, \"value\": 609}, \"610\": {\"frequency\": 1, \"value\": 610}, \"611\": {\"frequency\": 1, \"value\": 611}, \"612\": {\"frequency\": 1, \"value\": 612}, \"613\": {\"frequency\": 1, \"value\": 613}, \"614\": {\"frequency\": 1, \"value\": 614}, \"615\": {\"frequency\": 1, \"value\": 615}, \"616\": {\"frequency\": 1, \"value\": 616}, \"617\": {\"frequency\": 1, \"value\": 617}, \"618\": {\"frequency\": 1, \"value\": 618}, \"619\": {\"frequency\": 1, \"value\": 619}, \"620\": {\"frequency\": 1, \"value\": 620}, \"621\": {\"frequency\": 1, \"value\": 621}, \"622\": {\"frequency\": 1, \"value\": 622}, \"623\": {\"frequency\": 1, \"value\": 623}, \"624\": {\"frequency\": 1, \"value\": 624}, \"625\": {\"frequency\": 1, \"value\": 625}, \"626\": {\"frequency\": 1, \"value\": 626}, \"627\": {\"frequency\": 1, \"value\": 627}, \"628\": {\"frequency\": 1, \"value\": 628}, \"629\": {\"frequency\": 1, \"value\": 629}, \"630\": {\"frequency\": 1, \"value\": 630}, \"631\": {\"frequency\": 1, \"value\": 631}, \"632\": {\"frequency\": 1, \"value\": 632}, \"633\": {\"frequency\": 1, \"value\": 633}, \"634\": {\"frequency\": 1, \"value\": 634}, \"635\": {\"frequency\": 1, \"value\": 635}, \"636\": {\"frequency\": 1, \"value\": 636}, \"637\": {\"frequency\": 1, \"value\": 637}, \"638\": {\"frequency\": 1, \"value\": 638}, \"639\": {\"frequency\": 1, \"value\": 639}, \"640\": {\"frequency\": 1, \"value\": 640}, \"641\": {\"frequency\": 1, \"value\": 641}, \"642\": {\"frequency\": 1, \"value\": 642}, \"643\": {\"frequency\": 1, \"value\": 643}, \"644\": {\"frequency\": 1, \"value\": 644}, \"645\": {\"frequency\": 1, \"value\": 645}, \"646\": {\"frequency\": 1, \"value\": 646}, \"647\": {\"frequency\": 1, \"value\": 647}, \"648\": {\"frequency\": 1, \"value\": 648}, \"649\": {\"frequency\": 1, \"value\": 649}, \"650\": {\"frequency\": 1, \"value\": 650}, \"651\": {\"frequency\": 1, \"value\": 651}, \"652\": {\"frequency\": 1, \"value\": 652}, \"653\": {\"frequency\": 1, \"value\": 653}, \"654\": {\"frequency\": 1, \"value\": 654}, \"655\": {\"frequency\": 1, \"value\": 655}, \"656\": {\"frequency\": 1, \"value\": 656}, \"657\": {\"frequency\": 1, \"value\": 657}, \"658\": {\"frequency\": 1, \"value\": 658}, \"659\": {\"frequency\": 1, \"value\": 659}, \"660\": {\"frequency\": 1, \"value\": 660}, \"661\": {\"frequency\": 1, \"value\": 661}, \"662\": {\"frequency\": 1, \"value\": 662}, \"663\": {\"frequency\": 1, \"value\": 663}, \"664\": {\"frequency\": 1, \"value\": 664}, \"665\": {\"frequency\": 1, \"value\": 665}, \"666\": {\"frequency\": 1, \"value\": 666}, \"667\": {\"frequency\": 1, \"value\": 667}, \"668\": {\"frequency\": 1, \"value\": 668}, \"669\": {\"frequency\": 1, \"value\": 669}, \"670\": {\"frequency\": 1, \"value\": 670}, \"671\": {\"frequency\": 1, \"value\": 671}, \"672\": {\"frequency\": 1, \"value\": 672}, \"673\": {\"frequency\": 1, \"value\": 673}, \"674\": {\"frequency\": 1, \"value\": 674}, \"675\": {\"frequency\": 1, \"value\": 675}, \"676\": {\"frequency\": 1, \"value\": 676}, \"677\": {\"frequency\": 1, \"value\": 677}, \"678\": {\"frequency\": 1, \"value\": 678}, \"679\": {\"frequency\": 1, \"value\": 679}, \"680\": {\"frequency\": 1, \"value\": 680}, \"681\": {\"frequency\": 1, \"value\": 681}, \"682\": {\"frequency\": 1, \"value\": 682}, \"683\": {\"frequency\": 1, \"value\": 683}, \"684\": {\"frequency\": 1, \"value\": 684}, \"685\": {\"frequency\": 1, \"value\": 685}, \"686\": {\"frequency\": 1, \"value\": 686}, \"687\": {\"frequency\": 1, \"value\": 687}, \"688\": {\"frequency\": 1, \"value\": 688}, \"689\": {\"frequency\": 1, \"value\": 689}, \"690\": {\"frequency\": 1, \"value\": 690}, \"691\": {\"frequency\": 1, \"value\": 691}, \"692\": {\"frequency\": 1, \"value\": 692}, \"693\": {\"frequency\": 1, \"value\": 693}, \"694\": {\"frequency\": 1, \"value\": 694}, \"695\": {\"frequency\": 1, \"value\": 695}, \"696\": {\"frequency\": 1, \"value\": 696}, \"697\": {\"frequency\": 1, \"value\": 697}, \"698\": {\"frequency\": 1, \"value\": 698}, \"699\": {\"frequency\": 1, \"value\": 699}, \"700\": {\"frequency\": 1, \"value\": 700}, \"701\": {\"frequency\": 1, \"value\": 701}, \"702\": {\"frequency\": 1, \"value\": 702}, \"703\": {\"frequency\": 1, \"value\": 703}, \"704\": {\"frequency\": 1, \"value\": 704}, \"705\": {\"frequency\": 1, \"value\": 705}, \"706\": {\"frequency\": 1, \"value\": 706}, \"707\": {\"frequency\": 1, \"value\": 707}, \"708\": {\"frequency\": 1, \"value\": 708}, \"709\": {\"frequency\": 1, \"value\": 709}, \"710\": {\"frequency\": 1, \"value\": 710}, \"711\": {\"frequency\": 1, \"value\": 711}, \"712\": {\"frequency\": 1, \"value\": 712}, \"713\": {\"frequency\": 1, \"value\": 713}, \"714\": {\"frequency\": 1, \"value\": 714}, \"715\": {\"frequency\": 1, \"value\": 715}, \"716\": {\"frequency\": 1, \"value\": 716}, \"717\": {\"frequency\": 1, \"value\": 717}, \"718\": {\"frequency\": 1, \"value\": 718}, \"719\": {\"frequency\": 1, \"value\": 719}, \"720\": {\"frequency\": 1, \"value\": 720}, \"721\": {\"frequency\": 1, \"value\": 721}, \"722\": {\"frequency\": 1, \"value\": 722}, \"723\": {\"frequency\": 1, \"value\": 723}, \"724\": {\"frequency\": 1, \"value\": 724}, \"725\": {\"frequency\": 1, \"value\": 725}, \"726\": {\"frequency\": 1, \"value\": 726}, \"727\": {\"frequency\": 1, \"value\": 727}, \"728\": {\"frequency\": 1, \"value\": 728}, \"729\": {\"frequency\": 1, \"value\": 729}, \"730\": {\"frequency\": 1, \"value\": 730}, \"731\": {\"frequency\": 1, \"value\": 731}, \"732\": {\"frequency\": 1, \"value\": 732}, \"733\": {\"frequency\": 1, \"value\": 733}, \"734\": {\"frequency\": 1, \"value\": 734}, \"735\": {\"frequency\": 1, \"value\": 735}, \"736\": {\"frequency\": 1, \"value\": 736}, \"737\": {\"frequency\": 1, \"value\": 737}, \"738\": {\"frequency\": 1, \"value\": 738}, \"739\": {\"frequency\": 1, \"value\": 739}, \"740\": {\"frequency\": 1, \"value\": 740}, \"741\": {\"frequency\": 1, \"value\": 741}, \"742\": {\"frequency\": 1, \"value\": 742}, \"743\": {\"frequency\": 1, \"value\": 743}, \"744\": {\"frequency\": 1, \"value\": 744}, \"745\": {\"frequency\": 1, \"value\": 745}, \"746\": {\"frequency\": 1, \"value\": 746}, \"747\": {\"frequency\": 1, \"value\": 747}, \"748\": {\"frequency\": 1, \"value\": 748}, \"749\": {\"frequency\": 1, \"value\": 749}, \"750\": {\"frequency\": 1, \"value\": 750}, \"751\": {\"frequency\": 1, \"value\": 751}, \"752\": {\"frequency\": 1, \"value\": 752}, \"753\": {\"frequency\": 1, \"value\": 753}, \"754\": {\"frequency\": 1, \"value\": 754}, \"755\": {\"frequency\": 1, \"value\": 755}, \"756\": {\"frequency\": 1, \"value\": 756}, \"757\": {\"frequency\": 1, \"value\": 757}, \"758\": {\"frequency\": 1, \"value\": 758}, \"759\": {\"frequency\": 1, \"value\": 759}, \"760\": {\"frequency\": 1, \"value\": 760}, \"761\": {\"frequency\": 1, \"value\": 761}, \"762\": {\"frequency\": 1, \"value\": 762}, \"763\": {\"frequency\": 1, \"value\": 763}, \"764\": {\"frequency\": 1, \"value\": 764}, \"765\": {\"frequency\": 1, \"value\": 765}, \"766\": {\"frequency\": 1, \"value\": 766}, \"767\": {\"frequency\": 1, \"value\": 767}, \"768\": {\"frequency\": 1, \"value\": 768}, \"769\": {\"frequency\": 1, \"value\": 769}, \"770\": {\"frequency\": 1, \"value\": 770}, \"771\": {\"frequency\": 1, \"value\": 771}, \"772\": {\"frequency\": 1, \"value\": 772}, \"773\": {\"frequency\": 1, \"value\": 773}, \"774\": {\"frequency\": 1, \"value\": 774}, \"775\": {\"frequency\": 1, \"value\": 775}, \"776\": {\"frequency\": 1, \"value\": 776}, \"777\": {\"frequency\": 1, \"value\": 777}, \"778\": {\"frequency\": 1, \"value\": 778}, \"779\": {\"frequency\": 1, \"value\": 779}, \"780\": {\"frequency\": 1, \"value\": 780}, \"781\": {\"frequency\": 1, \"value\": 781}, \"782\": {\"frequency\": 1, \"value\": 782}, \"783\": {\"frequency\": 1, \"value\": 783}, \"784\": {\"frequency\": 1, \"value\": 784}, \"785\": {\"frequency\": 1, \"value\": 785}, \"786\": {\"frequency\": 1, \"value\": 786}, \"787\": {\"frequency\": 1, \"value\": 787}, \"788\": {\"frequency\": 1, \"value\": 788}, \"789\": {\"frequency\": 1, \"value\": 789}, \"790\": {\"frequency\": 1, \"value\": 790}, \"791\": {\"frequency\": 1, \"value\": 791}, \"792\": {\"frequency\": 1, \"value\": 792}, \"793\": {\"frequency\": 1, \"value\": 793}, \"794\": {\"frequency\": 1, \"value\": 794}, \"795\": {\"frequency\": 1, \"value\": 795}, \"796\": {\"frequency\": 1, \"value\": 796}, \"797\": {\"frequency\": 1, \"value\": 797}, \"798\": {\"frequency\": 1, \"value\": 798}, \"799\": {\"frequency\": 1, \"value\": 799}, \"800\": {\"frequency\": 1, \"value\": 800}, \"801\": {\"frequency\": 1, \"value\": 801}, \"802\": {\"frequency\": 1, \"value\": 802}, \"803\": {\"frequency\": 1, \"value\": 803}, \"804\": {\"frequency\": 1, \"value\": 804}, \"805\": {\"frequency\": 1, \"value\": 805}, \"806\": {\"frequency\": 1, \"value\": 806}, \"807\": {\"frequency\": 1, \"value\": 807}, \"808\": {\"frequency\": 1, \"value\": 808}, \"809\": {\"frequency\": 1, \"value\": 809}, \"810\": {\"frequency\": 1, \"value\": 810}, \"811\": {\"frequency\": 1, \"value\": 811}, \"812\": {\"frequency\": 1, \"value\": 812}, \"813\": {\"frequency\": 1, \"value\": 813}, \"814\": {\"frequency\": 1, \"value\": 814}, \"815\": {\"frequency\": 1, \"value\": 815}, \"816\": {\"frequency\": 1, \"value\": 816}, \"817\": {\"frequency\": 1, \"value\": 817}, \"818\": {\"frequency\": 1, \"value\": 818}, \"819\": {\"frequency\": 1, \"value\": 819}, \"820\": {\"frequency\": 1, \"value\": 820}, \"821\": {\"frequency\": 1, \"value\": 821}, \"822\": {\"frequency\": 1, \"value\": 822}, \"823\": {\"frequency\": 1, \"value\": 823}, \"824\": {\"frequency\": 1, \"value\": 824}, \"825\": {\"frequency\": 1, \"value\": 825}, \"826\": {\"frequency\": 1, \"value\": 826}, \"827\": {\"frequency\": 1, \"value\": 827}, \"828\": {\"frequency\": 1, \"value\": 828}, \"829\": {\"frequency\": 1, \"value\": 829}, \"830\": {\"frequency\": 1, \"value\": 830}, \"831\": {\"frequency\": 1, \"value\": 831}, \"832\": {\"frequency\": 1, \"value\": 832}, \"833\": {\"frequency\": 1, \"value\": 833}, \"834\": {\"frequency\": 1, \"value\": 834}, \"835\": {\"frequency\": 1, \"value\": 835}, \"836\": {\"frequency\": 1, \"value\": 836}, \"837\": {\"frequency\": 1, \"value\": 837}, \"838\": {\"frequency\": 1, \"value\": 838}, \"839\": {\"frequency\": 1, \"value\": 839}, \"840\": {\"frequency\": 1, \"value\": 840}, \"841\": {\"frequency\": 1, \"value\": 841}, \"842\": {\"frequency\": 1, \"value\": 842}, \"843\": {\"frequency\": 1, \"value\": 843}, \"844\": {\"frequency\": 1, \"value\": 844}, \"845\": {\"frequency\": 1, \"value\": 845}, \"846\": {\"frequency\": 1, \"value\": 846}, \"847\": {\"frequency\": 1, \"value\": 847}, \"848\": {\"frequency\": 1, \"value\": 848}, \"849\": {\"frequency\": 1, \"value\": 849}, \"850\": {\"frequency\": 1, \"value\": 850}, \"851\": {\"frequency\": 1, \"value\": 851}, \"852\": {\"frequency\": 1, \"value\": 852}, \"853\": {\"frequency\": 1, \"value\": 853}, \"854\": {\"frequency\": 1, \"value\": 854}, \"855\": {\"frequency\": 1, \"value\": 855}, \"856\": {\"frequency\": 1, \"value\": 856}, \"857\": {\"frequency\": 1, \"value\": 857}, \"858\": {\"frequency\": 1, \"value\": 858}, \"859\": {\"frequency\": 1, \"value\": 859}, \"860\": {\"frequency\": 1, \"value\": 860}, \"861\": {\"frequency\": 1, \"value\": 861}, \"862\": {\"frequency\": 1, \"value\": 862}, \"863\": {\"frequency\": 1, \"value\": 863}, \"864\": {\"frequency\": 1, \"value\": 864}, \"865\": {\"frequency\": 1, \"value\": 865}, \"866\": {\"frequency\": 1, \"value\": 866}, \"867\": {\"frequency\": 1, \"value\": 867}, \"868\": {\"frequency\": 1, \"value\": 868}, \"869\": {\"frequency\": 1, \"value\": 869}, \"870\": {\"frequency\": 1, \"value\": 870}, \"871\": {\"frequency\": 1, \"value\": 871}, \"872\": {\"frequency\": 1, \"value\": 872}, \"873\": {\"frequency\": 1, \"value\": 873}, \"874\": {\"frequency\": 1, \"value\": 874}, \"875\": {\"frequency\": 1, \"value\": 875}, \"876\": {\"frequency\": 1, \"value\": 876}, \"877\": {\"frequency\": 1, \"value\": 877}, \"878\": {\"frequency\": 1, \"value\": 878}, \"879\": {\"frequency\": 1, \"value\": 879}, \"880\": {\"frequency\": 1, \"value\": 880}, \"881\": {\"frequency\": 1, \"value\": 881}, \"882\": {\"frequency\": 1, \"value\": 882}, \"883\": {\"frequency\": 1, \"value\": 883}, \"884\": {\"frequency\": 1, \"value\": 884}, \"885\": {\"frequency\": 1, \"value\": 885}, \"886\": {\"frequency\": 1, \"value\": 886}, \"887\": {\"frequency\": 1, \"value\": 887}, \"888\": {\"frequency\": 1, \"value\": 888}, \"889\": {\"frequency\": 1, \"value\": 889}, \"890\": {\"frequency\": 1, \"value\": 890}, \"891\": {\"frequency\": 1, \"value\": 891}, \"892\": {\"frequency\": 1, \"value\": 892}, \"893\": {\"frequency\": 1, \"value\": 893}, \"894\": {\"frequency\": 1, \"value\": 894}, \"895\": {\"frequency\": 1, \"value\": 895}, \"896\": {\"frequency\": 1, \"value\": 896}, \"897\": {\"frequency\": 1, \"value\": 897}, \"898\": {\"frequency\": 1, \"value\": 898}, \"899\": {\"frequency\": 1, \"value\": 899}, \"900\": {\"frequency\": 1, \"value\": 900}, \"901\": {\"frequency\": 1, \"value\": 901}, \"902\": {\"frequency\": 1, \"value\": 902}, \"903\": {\"frequency\": 1, \"value\": 903}, \"904\": {\"frequency\": 1, \"value\": 904}, \"905\": {\"frequency\": 1, \"value\": 905}, \"906\": {\"frequency\": 1, \"value\": 906}, \"907\": {\"frequency\": 1, \"value\": 907}, \"908\": {\"frequency\": 1, \"value\": 908}, \"909\": {\"frequency\": 1, \"value\": 909}, \"910\": {\"frequency\": 1, \"value\": 910}, \"911\": {\"frequency\": 1, \"value\": 911}, \"912\": {\"frequency\": 1, \"value\": 912}, \"913\": {\"frequency\": 1, \"value\": 913}, \"914\": {\"frequency\": 1, \"value\": 914}, \"915\": {\"frequency\": 1, \"value\": 915}, \"916\": {\"frequency\": 1, \"value\": 916}, \"917\": {\"frequency\": 1, \"value\": 917}, \"918\": {\"frequency\": 1, \"value\": 918}, \"919\": {\"frequency\": 1, \"value\": 919}, \"920\": {\"frequency\": 1, \"value\": 920}, \"921\": {\"frequency\": 1, \"value\": 921}, \"922\": {\"frequency\": 1, \"value\": 922}, \"923\": {\"frequency\": 1, \"value\": 923}, \"924\": {\"frequency\": 1, \"value\": 924}, \"925\": {\"frequency\": 1, \"value\": 925}, \"926\": {\"frequency\": 1, \"value\": 926}, \"927\": {\"frequency\": 1, \"value\": 927}, \"928\": {\"frequency\": 1, \"value\": 928}, \"929\": {\"frequency\": 1, \"value\": 929}, \"930\": {\"frequency\": 1, \"value\": 930}, \"931\": {\"frequency\": 1, \"value\": 931}, \"932\": {\"frequency\": 1, \"value\": 932}, \"933\": {\"frequency\": 1, \"value\": 933}, \"934\": {\"frequency\": 1, \"value\": 934}, \"935\": {\"frequency\": 1, \"value\": 935}, \"936\": {\"frequency\": 1, \"value\": 936}, \"937\": {\"frequency\": 1, \"value\": 937}, \"938\": {\"frequency\": 1, \"value\": 938}, \"939\": {\"frequency\": 1, \"value\": 939}, \"940\": {\"frequency\": 1, \"value\": 940}, \"941\": {\"frequency\": 1, \"value\": 941}, \"942\": {\"frequency\": 1, \"value\": 942}, \"943\": {\"frequency\": 1, \"value\": 943}, \"944\": {\"frequency\": 1, \"value\": 944}, \"945\": {\"frequency\": 1, \"value\": 945}, \"946\": {\"frequency\": 1, \"value\": 946}, \"947\": {\"frequency\": 1, \"value\": 947}, \"948\": {\"frequency\": 1, \"value\": 948}, \"949\": {\"frequency\": 1, \"value\": 949}, \"950\": {\"frequency\": 1, \"value\": 950}, \"951\": {\"frequency\": 1, \"value\": 951}, \"952\": {\"frequency\": 1, \"value\": 952}, \"953\": {\"frequency\": 1, \"value\": 953}, \"954\": {\"frequency\": 1, \"value\": 954}, \"955\": {\"frequency\": 1, \"value\": 955}, \"956\": {\"frequency\": 1, \"value\": 956}, \"957\": {\"frequency\": 1, \"value\": 957}, \"958\": {\"frequency\": 1, \"value\": 958}, \"959\": {\"frequency\": 1, \"value\": 959}, \"960\": {\"frequency\": 1, \"value\": 960}, \"961\": {\"frequency\": 1, \"value\": 961}, \"962\": {\"frequency\": 1, \"value\": 962}, \"963\": {\"frequency\": 1, \"value\": 963}, \"964\": {\"frequency\": 1, \"value\": 964}, \"965\": {\"frequency\": 1, \"value\": 965}, \"966\": {\"frequency\": 1, \"value\": 966}, \"967\": {\"frequency\": 1, \"value\": 967}, \"969\": {\"frequency\": 1, \"value\": 969}, \"970\": {\"frequency\": 1, \"value\": 970}, \"971\": {\"frequency\": 1, \"value\": 971}, \"972\": {\"frequency\": 1, \"value\": 972}, \"973\": {\"frequency\": 1, \"value\": 973}, \"974\": {\"frequency\": 1, \"value\": 974}, \"975\": {\"frequency\": 1, \"value\": 975}, \"976\": {\"frequency\": 1, \"value\": 976}, \"977\": {\"frequency\": 1, \"value\": 977}, \"978\": {\"frequency\": 1, \"value\": 978}, \"979\": {\"frequency\": 1, \"value\": 979}, \"980\": {\"frequency\": 1, \"value\": 980}, \"981\": {\"frequency\": 1, \"value\": 981}, \"982\": {\"frequency\": 1, \"value\": 982}, \"983\": {\"frequency\": 1, \"value\": 983}, \"984\": {\"frequency\": 1, \"value\": 984}, \"985\": {\"frequency\": 1, \"value\": 985}, \"986\": {\"frequency\": 1, \"value\": 986}, \"987\": {\"frequency\": 1, \"value\": 987}, \"988\": {\"frequency\": 1, \"value\": 988}, \"989\": {\"frequency\": 1, \"value\": 989}, \"990\": {\"frequency\": 1, \"value\": 990}, \"991\": {\"frequency\": 1, \"value\": 991}, \"992\": {\"frequency\": 1, \"value\": 992}, \"993\": {\"frequency\": 1, \"value\": 993}, \"994\": {\"frequency\": 1, \"value\": 994}, \"995\": {\"frequency\": 1, \"value\": 995}, \"996\": {\"frequency\": 1, \"value\": 996}, \"997\": {\"frequency\": 1, \"value\": 997}, \"998\": {\"frequency\": 1, \"value\": 998}, \"999\": {\"frequency\": 1, \"value\": 999}, \"1000\": {\"frequency\": 1, \"value\": 1000}, \"1001\": {\"frequency\": 1, \"value\": 1001}, \"1002\": {\"frequency\": 1, \"value\": 1002}, \"1003\": {\"frequency\": 1, \"value\": 1003}, \"1004\": {\"frequency\": 1, \"value\": 1004}, \"1005\": {\"frequency\": 1, \"value\": 1005}, \"1006\": {\"frequency\": 1, \"value\": 1006}, \"1007\": {\"frequency\": 1, \"value\": 1007}, \"1008\": {\"frequency\": 1, \"value\": 1008}, \"1009\": {\"frequency\": 1, \"value\": 1009}, \"1010\": {\"frequency\": 1, \"value\": 1010}, \"1011\": {\"frequency\": 1, \"value\": 1011}, \"1012\": {\"frequency\": 1, \"value\": 1012}, \"1013\": {\"frequency\": 1, \"value\": 1013}, \"1014\": {\"frequency\": 1, \"value\": 1014}, \"1015\": {\"frequency\": 1, \"value\": 1015}, \"1016\": {\"frequency\": 1, \"value\": 1016}, \"1017\": {\"frequency\": 1, \"value\": 1017}, \"1018\": {\"frequency\": 1, \"value\": 1018}, \"1019\": {\"frequency\": 1, \"value\": 1019}, \"1020\": {\"frequency\": 1, \"value\": 1020}, \"1021\": {\"frequency\": 1, \"value\": 1021}, \"1022\": {\"frequency\": 1, \"value\": 1022}, \"1023\": {\"frequency\": 1, \"value\": 1023}, \"1024\": {\"frequency\": 1, \"value\": 1024}, \"1025\": {\"frequency\": 1, \"value\": 1025}, \"1026\": {\"frequency\": 1, \"value\": 1026}, \"1027\": {\"frequency\": 1, \"value\": 1027}, \"1028\": {\"frequency\": 1, \"value\": 1028}, \"1029\": {\"frequency\": 1, \"value\": 1029}, \"1030\": {\"frequency\": 1, \"value\": 1030}, \"1031\": {\"frequency\": 1, \"value\": 1031}, \"1032\": {\"frequency\": 1, \"value\": 1032}, \"1033\": {\"frequency\": 1, \"value\": 1033}, \"1034\": {\"frequency\": 1, \"value\": 1034}, \"1035\": {\"frequency\": 1, \"value\": 1035}, \"1036\": {\"frequency\": 1, \"value\": 1036}, \"1037\": {\"frequency\": 1, \"value\": 1037}, \"1038\": {\"frequency\": 1, \"value\": 1038}, \"1039\": {\"frequency\": 1, \"value\": 1039}, \"1040\": {\"frequency\": 1, \"value\": 1040}, \"1041\": {\"frequency\": 1, \"value\": 1041}, \"1042\": {\"frequency\": 1, \"value\": 1042}, \"1043\": {\"frequency\": 1, \"value\": 1043}, \"1044\": {\"frequency\": 1, \"value\": 1044}, \"1045\": {\"frequency\": 1, \"value\": 1045}, \"1046\": {\"frequency\": 1, \"value\": 1046}, \"1047\": {\"frequency\": 1, \"value\": 1047}, \"1048\": {\"frequency\": 1, \"value\": 1048}, \"1049\": {\"frequency\": 1, \"value\": 1049}, \"1050\": {\"frequency\": 1, \"value\": 1050}, \"1051\": {\"frequency\": 1, \"value\": 1051}, \"1052\": {\"frequency\": 1, \"value\": 1052}, \"1053\": {\"frequency\": 1, \"value\": 1053}, \"1054\": {\"frequency\": 1, \"value\": 1054}, \"1055\": {\"frequency\": 1, \"value\": 1055}, \"1056\": {\"frequency\": 1, \"value\": 1056}, \"1057\": {\"frequency\": 1, \"value\": 1057}, \"1058\": {\"frequency\": 1, \"value\": 1058}, \"1059\": {\"frequency\": 1, \"value\": 1059}, \"1060\": {\"frequency\": 1, \"value\": 1060}, \"1061\": {\"frequency\": 1, \"value\": 1061}, \"1062\": {\"frequency\": 1, \"value\": 1062}, \"1063\": {\"frequency\": 1, \"value\": 1063}, \"1064\": {\"frequency\": 1, \"value\": 1064}, \"1065\": {\"frequency\": 1, \"value\": 1065}, \"1066\": {\"frequency\": 1, \"value\": 1066}, \"1067\": {\"frequency\": 1, \"value\": 1067}, \"1068\": {\"frequency\": 1, \"value\": 1068}, \"1069\": {\"frequency\": 1, \"value\": 1069}, \"1070\": {\"frequency\": 1, \"value\": 1070}, \"1071\": {\"frequency\": 1, \"value\": 1071}, \"1072\": {\"frequency\": 1, \"value\": 1072}, \"1073\": {\"frequency\": 1, \"value\": 1073}, \"1074\": {\"frequency\": 1, \"value\": 1074}, \"1075\": {\"frequency\": 1, \"value\": 1075}, \"1076\": {\"frequency\": 1, \"value\": 1076}, \"1077\": {\"frequency\": 1, \"value\": 1077}, \"1078\": {\"frequency\": 1, \"value\": 1078}, \"1079\": {\"frequency\": 1, \"value\": 1079}, \"1080\": {\"frequency\": 1, \"value\": 1080}, \"1081\": {\"frequency\": 1, \"value\": 1081}, \"1082\": {\"frequency\": 1, \"value\": 1082}, \"1083\": {\"frequency\": 1, \"value\": 1083}, \"1084\": {\"frequency\": 1, \"value\": 1084}, \"1085\": {\"frequency\": 1, \"value\": 1085}, \"1086\": {\"frequency\": 1, \"value\": 1086}, \"1087\": {\"frequency\": 1, \"value\": 1087}, \"1088\": {\"frequency\": 1, \"value\": 1088}, \"1089\": {\"frequency\": 1, \"value\": 1089}, \"1090\": {\"frequency\": 1, \"value\": 1090}, \"1091\": {\"frequency\": 1, \"value\": 1091}, \"1092\": {\"frequency\": 1, \"value\": 1092}, \"1093\": {\"frequency\": 1, \"value\": 1093}, \"1094\": {\"frequency\": 1, \"value\": 1094}, \"1095\": {\"frequency\": 1, \"value\": 1095}, \"1096\": {\"frequency\": 1, \"value\": 1096}, \"1097\": {\"frequency\": 1, \"value\": 1097}, \"1098\": {\"frequency\": 1, \"value\": 1098}, \"1099\": {\"frequency\": 1, \"value\": 1099}, \"1100\": {\"frequency\": 1, \"value\": 1100}, \"1101\": {\"frequency\": 1, \"value\": 1101}, \"1102\": {\"frequency\": 1, \"value\": 1102}, \"1103\": {\"frequency\": 1, \"value\": 1103}, \"1104\": {\"frequency\": 1, \"value\": 1104}, \"1105\": {\"frequency\": 1, \"value\": 1105}, \"1106\": {\"frequency\": 1, \"value\": 1106}, \"1107\": {\"frequency\": 1, \"value\": 1107}, \"1108\": {\"frequency\": 1, \"value\": 1108}, \"1109\": {\"frequency\": 1, \"value\": 1109}, \"1110\": {\"frequency\": 1, \"value\": 1110}, \"1111\": {\"frequency\": 1, \"value\": 1111}, \"1112\": {\"frequency\": 1, \"value\": 1112}, \"1113\": {\"frequency\": 1, \"value\": 1113}, \"1114\": {\"frequency\": 1, \"value\": 1114}, \"1115\": {\"frequency\": 1, \"value\": 1115}, \"1116\": {\"frequency\": 1, \"value\": 1116}, \"1117\": {\"frequency\": 1, \"value\": 1117}, \"1118\": {\"frequency\": 1, \"value\": 1118}, \"1119\": {\"frequency\": 1, \"value\": 1119}, \"1120\": {\"frequency\": 1, \"value\": 1120}, \"1121\": {\"frequency\": 1, \"value\": 1121}, \"1122\": {\"frequency\": 1, \"value\": 1122}, \"1123\": {\"frequency\": 1, \"value\": 1123}, \"1124\": {\"frequency\": 1, \"value\": 1124}, \"1125\": {\"frequency\": 1, \"value\": 1125}, \"1126\": {\"frequency\": 1, \"value\": 1126}, \"1127\": {\"frequency\": 1, \"value\": 1127}, \"1128\": {\"frequency\": 1, \"value\": 1128}, \"1129\": {\"frequency\": 1, \"value\": 1129}, \"1130\": {\"frequency\": 1, \"value\": 1130}, \"1131\": {\"frequency\": 1, \"value\": 1131}, \"1132\": {\"frequency\": 1, \"value\": 1132}, \"1133\": {\"frequency\": 1, \"value\": 1133}, \"1134\": {\"frequency\": 1, \"value\": 1134}, \"1135\": {\"frequency\": 1, \"value\": 1135}, \"1136\": {\"frequency\": 1, \"value\": 1136}, \"1137\": {\"frequency\": 1, \"value\": 1137}, \"1138\": {\"frequency\": 1, \"value\": 1138}, \"1139\": {\"frequency\": 1, \"value\": 1139}, \"1140\": {\"frequency\": 1, \"value\": 1140}, \"1141\": {\"frequency\": 1, \"value\": 1141}, \"1142\": {\"frequency\": 1, \"value\": 1142}, \"1143\": {\"frequency\": 1, \"value\": 1143}, \"1144\": {\"frequency\": 1, \"value\": 1144}, \"1145\": {\"frequency\": 1, \"value\": 1145}, \"1146\": {\"frequency\": 1, \"value\": 1146}, \"1147\": {\"frequency\": 1, \"value\": 1147}, \"1148\": {\"frequency\": 1, \"value\": 1148}, \"1149\": {\"frequency\": 1, \"value\": 1149}, \"1150\": {\"frequency\": 1, \"value\": 1150}, \"1151\": {\"frequency\": 1, \"value\": 1151}, \"1152\": {\"frequency\": 1, \"value\": 1152}, \"1153\": {\"frequency\": 1, \"value\": 1153}, \"1154\": {\"frequency\": 1, \"value\": 1154}, \"1155\": {\"frequency\": 1, \"value\": 1155}, \"1156\": {\"frequency\": 1, \"value\": 1156}, \"1157\": {\"frequency\": 1, \"value\": 1157}, \"1158\": {\"frequency\": 1, \"value\": 1158}, \"1159\": {\"frequency\": 1, \"value\": 1159}, \"1160\": {\"frequency\": 1, \"value\": 1160}, \"1161\": {\"frequency\": 1, \"value\": 1161}, \"1162\": {\"frequency\": 1, \"value\": 1162}, \"1163\": {\"frequency\": 1, \"value\": 1163}, \"1164\": {\"frequency\": 1, \"value\": 1164}, \"1165\": {\"frequency\": 1, \"value\": 1165}, \"1166\": {\"frequency\": 1, \"value\": 1166}, \"1167\": {\"frequency\": 1, \"value\": 1167}, \"1168\": {\"frequency\": 1, \"value\": 1168}, \"1169\": {\"frequency\": 1, \"value\": 1169}, \"1170\": {\"frequency\": 1, \"value\": 1170}, \"1171\": {\"frequency\": 1, \"value\": 1171}, \"1172\": {\"frequency\": 1, \"value\": 1172}, \"1173\": {\"frequency\": 1, \"value\": 1173}, \"1174\": {\"frequency\": 1, \"value\": 1174}, \"1175\": {\"frequency\": 1, \"value\": 1175}, \"1176\": {\"frequency\": 1, \"value\": 1176}, \"1177\": {\"frequency\": 1, \"value\": 1177}, \"1178\": {\"frequency\": 1, \"value\": 1178}, \"1179\": {\"frequency\": 1, \"value\": 1179}, \"1180\": {\"frequency\": 1, \"value\": 1180}, \"1181\": {\"frequency\": 1, \"value\": 1181}, \"1182\": {\"frequency\": 1, \"value\": 1182}, \"1183\": {\"frequency\": 1, \"value\": 1183}, \"1184\": {\"frequency\": 1, \"value\": 1184}, \"1185\": {\"frequency\": 1, \"value\": 1185}, \"1186\": {\"frequency\": 1, \"value\": 1186}, \"1187\": {\"frequency\": 1, \"value\": 1187}, \"1188\": {\"frequency\": 1, \"value\": 1188}, \"1189\": {\"frequency\": 1, \"value\": 1189}, \"1190\": {\"frequency\": 1, \"value\": 1190}, \"1191\": {\"frequency\": 1, \"value\": 1191}, \"1192\": {\"frequency\": 1, \"value\": 1192}, \"1193\": {\"frequency\": 1, \"value\": 1193}, \"1194\": {\"frequency\": 1, \"value\": 1194}, \"1195\": {\"frequency\": 1, \"value\": 1195}, \"1196\": {\"frequency\": 1, \"value\": 1196}, \"1197\": {\"frequency\": 1, \"value\": 1197}, \"1198\": {\"frequency\": 1, \"value\": 1198}, \"1199\": {\"frequency\": 1, \"value\": 1199}, \"1200\": {\"frequency\": 1, \"value\": 1200}, \"1201\": {\"frequency\": 1, \"value\": 1201}, \"1202\": {\"frequency\": 1, \"value\": 1202}, \"1203\": {\"frequency\": 1, \"value\": 1203}, \"1204\": {\"frequency\": 1, \"value\": 1204}, \"1205\": {\"frequency\": 1, \"value\": 1205}, \"1206\": {\"frequency\": 1, \"value\": 1206}, \"1207\": {\"frequency\": 1, \"value\": 1207}, \"1208\": {\"frequency\": 1, \"value\": 1208}, \"1209\": {\"frequency\": 1, \"value\": 1209}, \"1210\": {\"frequency\": 1, \"value\": 1210}, \"1211\": {\"frequency\": 1, \"value\": 1211}, \"1212\": {\"frequency\": 1, \"value\": 1212}, \"1213\": {\"frequency\": 1, \"value\": 1213}, \"1214\": {\"frequency\": 1, \"value\": 1214}, \"1215\": {\"frequency\": 1, \"value\": 1215}, \"1216\": {\"frequency\": 1, \"value\": 1216}, \"1217\": {\"frequency\": 1, \"value\": 1217}, \"1218\": {\"frequency\": 1, \"value\": 1218}, \"1219\": {\"frequency\": 1, \"value\": 1219}, \"1220\": {\"frequency\": 1, \"value\": 1220}, \"1221\": {\"frequency\": 1, \"value\": 1221}, \"1222\": {\"frequency\": 1, \"value\": 1222}, \"1223\": {\"frequency\": 1, \"value\": 1223}, \"1224\": {\"frequency\": 1, \"value\": 1224}, \"1225\": {\"frequency\": 1, \"value\": 1225}, \"1226\": {\"frequency\": 1, \"value\": 1226}, \"1227\": {\"frequency\": 1, \"value\": 1227}, \"1228\": {\"frequency\": 1, \"value\": 1228}, \"1229\": {\"frequency\": 1, \"value\": 1229}, \"1230\": {\"frequency\": 1, \"value\": 1230}, \"1231\": {\"frequency\": 1, \"value\": 1231}, \"1232\": {\"frequency\": 1, \"value\": 1232}, \"1233\": {\"frequency\": 1, \"value\": 1233}, \"1234\": {\"frequency\": 1, \"value\": 1234}, \"1235\": {\"frequency\": 1, \"value\": 1235}, \"1236\": {\"frequency\": 1, \"value\": 1236}, \"1237\": {\"frequency\": 1, \"value\": 1237}, \"1238\": {\"frequency\": 1, \"value\": 1238}, \"1239\": {\"frequency\": 1, \"value\": 1239}, \"1240\": {\"frequency\": 1, \"value\": 1240}, \"1241\": {\"frequency\": 1, \"value\": 1241}, \"1242\": {\"frequency\": 1, \"value\": 1242}, \"1243\": {\"frequency\": 1, \"value\": 1243}, \"1244\": {\"frequency\": 1, \"value\": 1244}, \"1245\": {\"frequency\": 1, \"value\": 1245}, \"1246\": {\"frequency\": 1, \"value\": 1246}, \"1247\": {\"frequency\": 1, \"value\": 1247}, \"1248\": {\"frequency\": 1, \"value\": 1248}, \"1249\": {\"frequency\": 1, \"value\": 1249}, \"1250\": {\"frequency\": 1, \"value\": 1250}, \"1251\": {\"frequency\": 1, \"value\": 1251}, \"1252\": {\"frequency\": 1, \"value\": 1252}, \"1253\": {\"frequency\": 1, \"value\": 1253}, \"1254\": {\"frequency\": 1, \"value\": 1254}, \"1255\": {\"frequency\": 1, \"value\": 1255}, \"1256\": {\"frequency\": 1, \"value\": 1256}, \"1257\": {\"frequency\": 1, \"value\": 1257}, \"1259\": {\"frequency\": 1, \"value\": 1259}, \"1260\": {\"frequency\": 1, \"value\": 1260}, \"1261\": {\"frequency\": 1, \"value\": 1261}, \"1262\": {\"frequency\": 1, \"value\": 1262}, \"1263\": {\"frequency\": 1, \"value\": 1263}, \"1264\": {\"frequency\": 1, \"value\": 1264}, \"1265\": {\"frequency\": 1, \"value\": 1265}, \"1266\": {\"frequency\": 1, \"value\": 1266}, \"1267\": {\"frequency\": 1, \"value\": 1267}, \"1268\": {\"frequency\": 1, \"value\": 1268}, \"1269\": {\"frequency\": 1, \"value\": 1269}, \"1270\": {\"frequency\": 1, \"value\": 1270}, \"1271\": {\"frequency\": 1, \"value\": 1271}, \"1272\": {\"frequency\": 1, \"value\": 1272}, \"1273\": {\"frequency\": 1, \"value\": 1273}, \"1274\": {\"frequency\": 1, \"value\": 1274}, \"1275\": {\"frequency\": 1, \"value\": 1275}, \"1276\": {\"frequency\": 1, \"value\": 1276}, \"1277\": {\"frequency\": 1, \"value\": 1277}, \"1278\": {\"frequency\": 1, \"value\": 1278}, \"1279\": {\"frequency\": 1, \"value\": 1279}, \"1280\": {\"frequency\": 1, \"value\": 1280}, \"1281\": {\"frequency\": 1, \"value\": 1281}, \"1282\": {\"frequency\": 1, \"value\": 1282}, \"1283\": {\"frequency\": 1, \"value\": 1283}, \"1284\": {\"frequency\": 1, \"value\": 1284}, \"1285\": {\"frequency\": 1, \"value\": 1285}, \"1286\": {\"frequency\": 1, \"value\": 1286}, \"1287\": {\"frequency\": 1, \"value\": 1287}, \"1288\": {\"frequency\": 1, \"value\": 1288}, \"1289\": {\"frequency\": 1, \"value\": 1289}, \"1290\": {\"frequency\": 1, \"value\": 1290}, \"1291\": {\"frequency\": 1, \"value\": 1291}, \"1292\": {\"frequency\": 1, \"value\": 1292}, \"1293\": {\"frequency\": 1, \"value\": 1293}, \"1294\": {\"frequency\": 1, \"value\": 1294}, \"1295\": {\"frequency\": 1, \"value\": 1295}, \"1296\": {\"frequency\": 1, \"value\": 1296}, \"1297\": {\"frequency\": 1, \"value\": 1297}, \"1298\": {\"frequency\": 1, \"value\": 1298}, \"1299\": {\"frequency\": 1, \"value\": 1299}, \"1300\": {\"frequency\": 1, \"value\": 1300}, \"1301\": {\"frequency\": 1, \"value\": 1301}, \"1302\": {\"frequency\": 1, \"value\": 1302}, \"1303\": {\"frequency\": 1, \"value\": 1303}, \"1304\": {\"frequency\": 1, \"value\": 1304}, \"1305\": {\"frequency\": 1, \"value\": 1305}, \"1306\": {\"frequency\": 1, \"value\": 1306}, \"1307\": {\"frequency\": 1, \"value\": 1307}, \"1308\": {\"frequency\": 1, \"value\": 1308}, \"1309\": {\"frequency\": 1, \"value\": 1309}, \"1310\": {\"frequency\": 1, \"value\": 1310}, \"1311\": {\"frequency\": 1, \"value\": 1311}, \"1312\": {\"frequency\": 1, \"value\": 1312}, \"1313\": {\"frequency\": 1, \"value\": 1313}, \"1314\": {\"frequency\": 1, \"value\": 1314}, \"1315\": {\"frequency\": 1, \"value\": 1315}, \"1316\": {\"frequency\": 1, \"value\": 1316}, \"1317\": {\"frequency\": 1, \"value\": 1317}, \"1318\": {\"frequency\": 1, \"value\": 1318}, \"1319\": {\"frequency\": 1, \"value\": 1319}, \"1320\": {\"frequency\": 1, \"value\": 1320}, \"1321\": {\"frequency\": 1, \"value\": 1321}, \"1322\": {\"frequency\": 1, \"value\": 1322}, \"1323\": {\"frequency\": 1, \"value\": 1323}, \"1324\": {\"frequency\": 1, \"value\": 1324}, \"1325\": {\"frequency\": 1, \"value\": 1325}, \"1326\": {\"frequency\": 1, \"value\": 1326}, \"1327\": {\"frequency\": 1, \"value\": 1327}, \"1328\": {\"frequency\": 1, \"value\": 1328}, \"1329\": {\"frequency\": 1, \"value\": 1329}, \"1330\": {\"frequency\": 1, \"value\": 1330}, \"1331\": {\"frequency\": 1, \"value\": 1331}, \"1332\": {\"frequency\": 1, \"value\": 1332}, \"1333\": {\"frequency\": 1, \"value\": 1333}, \"1334\": {\"frequency\": 1, \"value\": 1334}, \"1335\": {\"frequency\": 1, \"value\": 1335}, \"1336\": {\"frequency\": 1, \"value\": 1336}, \"1337\": {\"frequency\": 1, \"value\": 1337}, \"1338\": {\"frequency\": 1, \"value\": 1338}, \"1339\": {\"frequency\": 1, \"value\": 1339}, \"1340\": {\"frequency\": 1, \"value\": 1340}, \"1341\": {\"frequency\": 1, \"value\": 1341}, \"1342\": {\"frequency\": 1, \"value\": 1342}, \"1343\": {\"frequency\": 1, \"value\": 1343}, \"1344\": {\"frequency\": 1, \"value\": 1344}, \"1345\": {\"frequency\": 1, \"value\": 1345}, \"1346\": {\"frequency\": 1, \"value\": 1346}, \"1347\": {\"frequency\": 1, \"value\": 1347}, \"1348\": {\"frequency\": 1, \"value\": 1348}, \"1349\": {\"frequency\": 1, \"value\": 1349}, \"1350\": {\"frequency\": 1, \"value\": 1350}, \"1351\": {\"frequency\": 1, \"value\": 1351}, \"1352\": {\"frequency\": 1, \"value\": 1352}, \"1353\": {\"frequency\": 1, \"value\": 1353}, \"1354\": {\"frequency\": 1, \"value\": 1354}, \"1355\": {\"frequency\": 1, \"value\": 1355}, \"1356\": {\"frequency\": 1, \"value\": 1356}, \"1357\": {\"frequency\": 1, \"value\": 1357}, \"1358\": {\"frequency\": 1, \"value\": 1358}, \"1359\": {\"frequency\": 1, \"value\": 1359}, \"1360\": {\"frequency\": 1, \"value\": 1360}, \"1361\": {\"frequency\": 1, \"value\": 1361}, \"1362\": {\"frequency\": 1, \"value\": 1362}, \"1363\": {\"frequency\": 1, \"value\": 1363}, \"1364\": {\"frequency\": 1, \"value\": 1364}, \"1365\": {\"frequency\": 1, \"value\": 1365}, \"1366\": {\"frequency\": 1, \"value\": 1366}, \"1367\": {\"frequency\": 1, \"value\": 1367}, \"1368\": {\"frequency\": 1, \"value\": 1368}, \"1369\": {\"frequency\": 1, \"value\": 1369}, \"1370\": {\"frequency\": 1, \"value\": 1370}, \"1371\": {\"frequency\": 1, \"value\": 1371}, \"1372\": {\"frequency\": 1, \"value\": 1372}, \"1373\": {\"frequency\": 1, \"value\": 1373}, \"1374\": {\"frequency\": 1, \"value\": 1374}, \"1375\": {\"frequency\": 1, \"value\": 1375}, \"1376\": {\"frequency\": 1, \"value\": 1376}, \"1377\": {\"frequency\": 1, \"value\": 1377}, \"1378\": {\"frequency\": 1, \"value\": 1378}, \"1379\": {\"frequency\": 1, \"value\": 1379}, \"1380\": {\"frequency\": 1, \"value\": 1380}, \"1381\": {\"frequency\": 1, \"value\": 1381}, \"1382\": {\"frequency\": 1, \"value\": 1382}, \"1383\": {\"frequency\": 1, \"value\": 1383}, \"1384\": {\"frequency\": 1, \"value\": 1384}, \"1385\": {\"frequency\": 1, \"value\": 1385}, \"1386\": {\"frequency\": 1, \"value\": 1386}, \"1387\": {\"frequency\": 1, \"value\": 1387}, \"1388\": {\"frequency\": 1, \"value\": 1388}, \"1389\": {\"frequency\": 1, \"value\": 1389}, \"1390\": {\"frequency\": 1, \"value\": 1390}, \"1391\": {\"frequency\": 1, \"value\": 1391}, \"1392\": {\"frequency\": 1, \"value\": 1392}, \"1393\": {\"frequency\": 1, \"value\": 1393}, \"1394\": {\"frequency\": 1, \"value\": 1394}, \"1395\": {\"frequency\": 1, \"value\": 1395}, \"1396\": {\"frequency\": 1, \"value\": 1396}, \"1397\": {\"frequency\": 1, \"value\": 1397}, \"1398\": {\"frequency\": 1, \"value\": 1398}, \"1399\": {\"frequency\": 1, \"value\": 1399}, \"1400\": {\"frequency\": 1, \"value\": 1400}, \"1401\": {\"frequency\": 1, \"value\": 1401}, \"1402\": {\"frequency\": 1, \"value\": 1402}, \"1403\": {\"frequency\": 1, \"value\": 1403}, \"1404\": {\"frequency\": 1, \"value\": 1404}, \"1405\": {\"frequency\": 1, \"value\": 1405}, \"1406\": {\"frequency\": 1, \"value\": 1406}, \"1407\": {\"frequency\": 1, \"value\": 1407}, \"1408\": {\"frequency\": 1, \"value\": 1408}, \"1409\": {\"frequency\": 1, \"value\": 1409}, \"1410\": {\"frequency\": 1, \"value\": 1410}, \"1411\": {\"frequency\": 1, \"value\": 1411}, \"1412\": {\"frequency\": 1, \"value\": 1412}, \"1413\": {\"frequency\": 1, \"value\": 1413}, \"1414\": {\"frequency\": 1, \"value\": 1414}, \"1415\": {\"frequency\": 1, \"value\": 1415}, \"1416\": {\"frequency\": 1, \"value\": 1416}, \"1417\": {\"frequency\": 1, \"value\": 1417}, \"1418\": {\"frequency\": 1, \"value\": 1418}, \"1419\": {\"frequency\": 1, \"value\": 1419}, \"1420\": {\"frequency\": 1, \"value\": 1420}, \"1421\": {\"frequency\": 1, \"value\": 1421}, \"1422\": {\"frequency\": 1, \"value\": 1422}, \"1423\": {\"frequency\": 1, \"value\": 1423}, \"1424\": {\"frequency\": 1, \"value\": 1424}, \"1425\": {\"frequency\": 1, \"value\": 1425}, \"1426\": {\"frequency\": 1, \"value\": 1426}, \"1427\": {\"frequency\": 1, \"value\": 1427}, \"1428\": {\"frequency\": 1, \"value\": 1428}, \"1429\": {\"frequency\": 1, \"value\": 1429}, \"1430\": {\"frequency\": 1, \"value\": 1430}, \"1431\": {\"frequency\": 1, \"value\": 1431}, \"1432\": {\"frequency\": 1, \"value\": 1432}, \"1433\": {\"frequency\": 1, \"value\": 1433}, \"1434\": {\"frequency\": 1, \"value\": 1434}, \"1435\": {\"frequency\": 1, \"value\": 1435}, \"1436\": {\"frequency\": 1, \"value\": 1436}, \"1437\": {\"frequency\": 1, \"value\": 1437}, \"1438\": {\"frequency\": 1, \"value\": 1438}, \"1439\": {\"frequency\": 1, \"value\": 1439}, \"1440\": {\"frequency\": 1, \"value\": 1440}, \"1441\": {\"frequency\": 1, \"value\": 1441}, \"1442\": {\"frequency\": 1, \"value\": 1442}, \"1443\": {\"frequency\": 1, \"value\": 1443}, \"1444\": {\"frequency\": 1, \"value\": 1444}, \"1445\": {\"frequency\": 1, \"value\": 1445}, \"1446\": {\"frequency\": 1, \"value\": 1446}, \"1447\": {\"frequency\": 1, \"value\": 1447}, \"1448\": {\"frequency\": 1, \"value\": 1448}, \"1449\": {\"frequency\": 1, \"value\": 1449}, \"1450\": {\"frequency\": 1, \"value\": 1450}, \"1451\": {\"frequency\": 1, \"value\": 1451}, \"1452\": {\"frequency\": 1, \"value\": 1452}, \"1453\": {\"frequency\": 1, \"value\": 1453}, \"1454\": {\"frequency\": 1, \"value\": 1454}, \"1455\": {\"frequency\": 1, \"value\": 1455}, \"1456\": {\"frequency\": 1, \"value\": 1456}, \"1457\": {\"frequency\": 1, \"value\": 1457}, \"1458\": {\"frequency\": 1, \"value\": 1458}, \"1459\": {\"frequency\": 1, \"value\": 1459}, \"1460\": {\"frequency\": 1, \"value\": 1460}, \"1461\": {\"frequency\": 1, \"value\": 1461}, \"1462\": {\"frequency\": 1, \"value\": 1462}, \"1463\": {\"frequency\": 1, \"value\": 1463}, \"1464\": {\"frequency\": 1, \"value\": 1464}, \"1465\": {\"frequency\": 1, \"value\": 1465}, \"1466\": {\"frequency\": 1, \"value\": 1466}, \"1467\": {\"frequency\": 1, \"value\": 1467}, \"1468\": {\"frequency\": 1, \"value\": 1468}, \"1469\": {\"frequency\": 1, \"value\": 1469}, \"1470\": {\"frequency\": 1, \"value\": 1470}, \"1471\": {\"frequency\": 1, \"value\": 1471}, \"1472\": {\"frequency\": 1, \"value\": 1472}, \"1473\": {\"frequency\": 1, \"value\": 1473}, \"1474\": {\"frequency\": 1, \"value\": 1474}, \"1475\": {\"frequency\": 1, \"value\": 1475}, \"1476\": {\"frequency\": 1, \"value\": 1476}, \"1477\": {\"frequency\": 1, \"value\": 1477}, \"1478\": {\"frequency\": 1, \"value\": 1478}, \"1479\": {\"frequency\": 1, \"value\": 1479}, \"1480\": {\"frequency\": 1, \"value\": 1480}, \"1481\": {\"frequency\": 1, \"value\": 1481}, \"1482\": {\"frequency\": 1, \"value\": 1482}, \"1483\": {\"frequency\": 1, \"value\": 1483}, \"1484\": {\"frequency\": 1, \"value\": 1484}, \"1485\": {\"frequency\": 1, \"value\": 1485}, \"1486\": {\"frequency\": 1, \"value\": 1486}, \"1487\": {\"frequency\": 1, \"value\": 1487}, \"1488\": {\"frequency\": 1, \"value\": 1488}, \"1489\": {\"frequency\": 1, \"value\": 1489}, \"1490\": {\"frequency\": 1, \"value\": 1490}, \"1491\": {\"frequency\": 1, \"value\": 1491}, \"1492\": {\"frequency\": 1, \"value\": 1492}, \"1493\": {\"frequency\": 1, \"value\": 1493}, \"1494\": {\"frequency\": 1, \"value\": 1494}, \"1495\": {\"frequency\": 1, \"value\": 1495}, \"1496\": {\"frequency\": 1, \"value\": 1496}, \"1497\": {\"frequency\": 1, \"value\": 1497}, \"1498\": {\"frequency\": 1, \"value\": 1498}, \"1499\": {\"frequency\": 1, \"value\": 1499}, \"1500\": {\"frequency\": 1, \"value\": 1500}, \"1501\": {\"frequency\": 1, \"value\": 1501}, \"1502\": {\"frequency\": 1, \"value\": 1502}, \"1503\": {\"frequency\": 1, \"value\": 1503}, \"1504\": {\"frequency\": 1, \"value\": 1504}, \"1505\": {\"frequency\": 1, \"value\": 1505}, \"1506\": {\"frequency\": 1, \"value\": 1506}, \"1507\": {\"frequency\": 1, \"value\": 1507}, \"1508\": {\"frequency\": 1, \"value\": 1508}, \"1509\": {\"frequency\": 1, \"value\": 1509}, \"1510\": {\"frequency\": 1, \"value\": 1510}, \"1511\": {\"frequency\": 1, \"value\": 1511}, \"1512\": {\"frequency\": 1, \"value\": 1512}, \"1513\": {\"frequency\": 1, \"value\": 1513}, \"1514\": {\"frequency\": 1, \"value\": 1514}, \"1515\": {\"frequency\": 1, \"value\": 1515}, \"1516\": {\"frequency\": 1, \"value\": 1516}, \"1517\": {\"frequency\": 1, \"value\": 1517}, \"1518\": {\"frequency\": 1, \"value\": 1518}, \"1519\": {\"frequency\": 1, \"value\": 1519}, \"1520\": {\"frequency\": 1, \"value\": 1520}, \"1521\": {\"frequency\": 1, \"value\": 1521}, \"1522\": {\"frequency\": 1, \"value\": 1522}, \"1523\": {\"frequency\": 1, \"value\": 1523}, \"1524\": {\"frequency\": 1, \"value\": 1524}, \"1525\": {\"frequency\": 1, \"value\": 1525}, \"1526\": {\"frequency\": 1, \"value\": 1526}, \"1527\": {\"frequency\": 1, \"value\": 1527}, \"1528\": {\"frequency\": 1, \"value\": 1528}, \"1529\": {\"frequency\": 1, \"value\": 1529}, \"1530\": {\"frequency\": 1, \"value\": 1530}, \"1531\": {\"frequency\": 1, \"value\": 1531}, \"1532\": {\"frequency\": 1, \"value\": 1532}, \"1533\": {\"frequency\": 1, \"value\": 1533}, \"1534\": {\"frequency\": 1, \"value\": 1534}, \"1535\": {\"frequency\": 1, \"value\": 1535}, \"1536\": {\"frequency\": 1, \"value\": 1536}, \"1537\": {\"frequency\": 1, \"value\": 1537}, \"1538\": {\"frequency\": 1, \"value\": 1538}, \"1539\": {\"frequency\": 1, \"value\": 1539}, \"1540\": {\"frequency\": 1, \"value\": 1540}, \"1541\": {\"frequency\": 1, \"value\": 1541}, \"1542\": {\"frequency\": 1, \"value\": 1542}, \"1543\": {\"frequency\": 1, \"value\": 1543}, \"1544\": {\"frequency\": 1, \"value\": 1544}, \"1545\": {\"frequency\": 1, \"value\": 1545}, \"1546\": {\"frequency\": 1, \"value\": 1546}, \"1547\": {\"frequency\": 1, \"value\": 1547}, \"1548\": {\"frequency\": 1, \"value\": 1548}, \"1549\": {\"frequency\": 1, \"value\": 1549}, \"1550\": {\"frequency\": 1, \"value\": 1550}, \"1551\": {\"frequency\": 1, \"value\": 1551}, \"1552\": {\"frequency\": 1, \"value\": 1552}, \"1553\": {\"frequency\": 1, \"value\": 1553}, \"1554\": {\"frequency\": 1, \"value\": 1554}, \"1555\": {\"frequency\": 1, \"value\": 1555}, \"1556\": {\"frequency\": 1, \"value\": 1556}, \"1557\": {\"frequency\": 1, \"value\": 1557}, \"1558\": {\"frequency\": 1, \"value\": 1558}, \"1559\": {\"frequency\": 1, \"value\": 1559}, \"1560\": {\"frequency\": 1, \"value\": 1560}, \"1561\": {\"frequency\": 1, \"value\": 1561}, \"1562\": {\"frequency\": 1, \"value\": 1562}, \"1563\": {\"frequency\": 1, \"value\": 1563}, \"1564\": {\"frequency\": 1, \"value\": 1564}, \"1565\": {\"frequency\": 1, \"value\": 1565}, \"1566\": {\"frequency\": 1, \"value\": 1566}, \"1567\": {\"frequency\": 1, \"value\": 1567}, \"1568\": {\"frequency\": 1, \"value\": 1568}, \"1569\": {\"frequency\": 1, \"value\": 1569}, \"1570\": {\"frequency\": 1, \"value\": 1570}, \"1571\": {\"frequency\": 1, \"value\": 1571}, \"1572\": {\"frequency\": 1, \"value\": 1572}, \"1573\": {\"frequency\": 1, \"value\": 1573}, \"1574\": {\"frequency\": 1, \"value\": 1574}, \"1575\": {\"frequency\": 1, \"value\": 1575}, \"1576\": {\"frequency\": 1, \"value\": 1576}, \"1577\": {\"frequency\": 1, \"value\": 1577}, \"1578\": {\"frequency\": 1, \"value\": 1578}, \"1579\": {\"frequency\": 1, \"value\": 1579}, \"1580\": {\"frequency\": 1, \"value\": 1580}, \"1581\": {\"frequency\": 1, \"value\": 1581}, \"1582\": {\"frequency\": 1, \"value\": 1582}, \"1583\": {\"frequency\": 1, \"value\": 1583}, \"1584\": {\"frequency\": 1, \"value\": 1584}, \"1585\": {\"frequency\": 1, \"value\": 1585}, \"1586\": {\"frequency\": 1, \"value\": 1586}, \"1587\": {\"frequency\": 1, \"value\": 1587}, \"1588\": {\"frequency\": 1, \"value\": 1588}, \"1589\": {\"frequency\": 1, \"value\": 1589}, \"1590\": {\"frequency\": 1, \"value\": 1590}, \"1591\": {\"frequency\": 1, \"value\": 1591}, \"1592\": {\"frequency\": 1, \"value\": 1592}, \"1593\": {\"frequency\": 1, \"value\": 1593}, \"1594\": {\"frequency\": 1, \"value\": 1594}, \"1595\": {\"frequency\": 1, \"value\": 1595}, \"1596\": {\"frequency\": 1, \"value\": 1596}, \"1597\": {\"frequency\": 1, \"value\": 1597}, \"1598\": {\"frequency\": 1, \"value\": 1598}, \"1599\": {\"frequency\": 1, \"value\": 1599}, \"1600\": {\"frequency\": 1, \"value\": 1600}, \"1601\": {\"frequency\": 1, \"value\": 1601}, \"1602\": {\"frequency\": 1, \"value\": 1602}, \"1603\": {\"frequency\": 1, \"value\": 1603}, \"1604\": {\"frequency\": 1, \"value\": 1604}, \"1605\": {\"frequency\": 1, \"value\": 1605}, \"1606\": {\"frequency\": 1, \"value\": 1606}, \"1607\": {\"frequency\": 1, \"value\": 1607}, \"1608\": {\"frequency\": 1, \"value\": 1608}, \"1609\": {\"frequency\": 1, \"value\": 1609}, \"1610\": {\"frequency\": 1, \"value\": 1610}, \"1611\": {\"frequency\": 1, \"value\": 1611}, \"1612\": {\"frequency\": 1, \"value\": 1612}, \"1613\": {\"frequency\": 1, \"value\": 1613}, \"1614\": {\"frequency\": 1, \"value\": 1614}, \"1615\": {\"frequency\": 1, \"value\": 1615}, \"1616\": {\"frequency\": 1, \"value\": 1616}, \"1617\": {\"frequency\": 1, \"value\": 1617}, \"1618\": {\"frequency\": 1, \"value\": 1618}, \"1619\": {\"frequency\": 1, \"value\": 1619}, \"1620\": {\"frequency\": 1, \"value\": 1620}, \"1621\": {\"frequency\": 1, \"value\": 1621}, \"1622\": {\"frequency\": 1, \"value\": 1622}, \"1623\": {\"frequency\": 1, \"value\": 1623}, \"1624\": {\"frequency\": 1, \"value\": 1624}, \"1625\": {\"frequency\": 1, \"value\": 1625}, \"1626\": {\"frequency\": 1, \"value\": 1626}, \"1627\": {\"frequency\": 1, \"value\": 1627}, \"1628\": {\"frequency\": 1, \"value\": 1628}, \"1629\": {\"frequency\": 1, \"value\": 1629}, \"1630\": {\"frequency\": 1, \"value\": 1630}, \"1631\": {\"frequency\": 1, \"value\": 1631}, \"1632\": {\"frequency\": 1, \"value\": 1632}, \"1633\": {\"frequency\": 1, \"value\": 1633}, \"1634\": {\"frequency\": 1, \"value\": 1634}, \"1635\": {\"frequency\": 1, \"value\": 1635}, \"1636\": {\"frequency\": 1, \"value\": 1636}, \"1637\": {\"frequency\": 1, \"value\": 1637}, \"1638\": {\"frequency\": 1, \"value\": 1638}, \"1639\": {\"frequency\": 1, \"value\": 1639}, \"1640\": {\"frequency\": 1, \"value\": 1640}, \"1641\": {\"frequency\": 1, \"value\": 1641}, \"1642\": {\"frequency\": 1, \"value\": 1642}, \"1643\": {\"frequency\": 1, \"value\": 1643}, \"1644\": {\"frequency\": 1, \"value\": 1644}, \"1645\": {\"frequency\": 1, \"value\": 1645}, \"1646\": {\"frequency\": 1, \"value\": 1646}, \"1647\": {\"frequency\": 1, \"value\": 1647}, \"1648\": {\"frequency\": 1, \"value\": 1648}, \"1649\": {\"frequency\": 1, \"value\": 1649}, \"1650\": {\"frequency\": 1, \"value\": 1650}, \"1651\": {\"frequency\": 1, \"value\": 1651}, \"1652\": {\"frequency\": 1, \"value\": 1652}, \"1653\": {\"frequency\": 1, \"value\": 1653}, \"1654\": {\"frequency\": 1, \"value\": 1654}, \"1655\": {\"frequency\": 1, \"value\": 1655}, \"1656\": {\"frequency\": 1, \"value\": 1656}, \"1657\": {\"frequency\": 1, \"value\": 1657}, \"1658\": {\"frequency\": 1, \"value\": 1658}, \"1659\": {\"frequency\": 1, \"value\": 1659}, \"1660\": {\"frequency\": 1, \"value\": 1660}, \"1661\": {\"frequency\": 1, \"value\": 1661}, \"1662\": {\"frequency\": 1, \"value\": 1662}, \"1663\": {\"frequency\": 1, \"value\": 1663}, \"1664\": {\"frequency\": 1, \"value\": 1664}, \"1665\": {\"frequency\": 1, \"value\": 1665}, \"1666\": {\"frequency\": 1, \"value\": 1666}, \"1667\": {\"frequency\": 1, \"value\": 1667}, \"1668\": {\"frequency\": 1, \"value\": 1668}, \"1669\": {\"frequency\": 1, \"value\": 1669}, \"1670\": {\"frequency\": 1, \"value\": 1670}, \"1671\": {\"frequency\": 1, \"value\": 1671}, \"1672\": {\"frequency\": 1, \"value\": 1672}, \"1673\": {\"frequency\": 1, \"value\": 1673}, \"1674\": {\"frequency\": 1, \"value\": 1674}, \"1675\": {\"frequency\": 1, \"value\": 1675}, \"1676\": {\"frequency\": 1, \"value\": 1676}, \"1677\": {\"frequency\": 1, \"value\": 1677}, \"1678\": {\"frequency\": 1, \"value\": 1678}, \"1679\": {\"frequency\": 1, \"value\": 1679}, \"1680\": {\"frequency\": 1, \"value\": 1680}, \"1681\": {\"frequency\": 1, \"value\": 1681}, \"1682\": {\"frequency\": 1, \"value\": 1682}, \"1683\": {\"frequency\": 1, \"value\": 1683}, \"1684\": {\"frequency\": 1, \"value\": 1684}, \"1685\": {\"frequency\": 1, \"value\": 1685}, \"1686\": {\"frequency\": 1, \"value\": 1686}, \"1687\": {\"frequency\": 1, \"value\": 1687}, \"1688\": {\"frequency\": 1, \"value\": 1688}, \"1689\": {\"frequency\": 1, \"value\": 1689}, \"1690\": {\"frequency\": 1, \"value\": 1690}, \"1691\": {\"frequency\": 1, \"value\": 1691}, \"1692\": {\"frequency\": 1, \"value\": 1692}, \"1693\": {\"frequency\": 1, \"value\": 1693}, \"1694\": {\"frequency\": 1, \"value\": 1694}, \"1695\": {\"frequency\": 1, \"value\": 1695}, \"1696\": {\"frequency\": 1, \"value\": 1696}, \"1697\": {\"frequency\": 1, \"value\": 1697}, \"1698\": {\"frequency\": 1, \"value\": 1698}, \"1699\": {\"frequency\": 1, \"value\": 1699}, \"1700\": {\"frequency\": 1, \"value\": 1700}, \"1701\": {\"frequency\": 1, \"value\": 1701}, \"1702\": {\"frequency\": 1, \"value\": 1702}, \"1703\": {\"frequency\": 1, \"value\": 1703}, \"1704\": {\"frequency\": 1, \"value\": 1704}, \"1705\": {\"frequency\": 1, \"value\": 1705}, \"1706\": {\"frequency\": 1, \"value\": 1706}, \"1707\": {\"frequency\": 1, \"value\": 1707}, \"1708\": {\"frequency\": 1, \"value\": 1708}, \"1709\": {\"frequency\": 1, \"value\": 1709}, \"1710\": {\"frequency\": 1, \"value\": 1710}, \"1711\": {\"frequency\": 1, \"value\": 1711}, \"1712\": {\"frequency\": 1, \"value\": 1712}, \"1713\": {\"frequency\": 1, \"value\": 1713}, \"1714\": {\"frequency\": 1, \"value\": 1714}, \"1715\": {\"frequency\": 1, \"value\": 1715}, \"1716\": {\"frequency\": 1, \"value\": 1716}, \"1717\": {\"frequency\": 1, \"value\": 1717}, \"1718\": {\"frequency\": 1, \"value\": 1718}, \"1719\": {\"frequency\": 1, \"value\": 1719}, \"1720\": {\"frequency\": 1, \"value\": 1720}, \"1721\": {\"frequency\": 1, \"value\": 1721}, \"1722\": {\"frequency\": 1, \"value\": 1722}, \"1723\": {\"frequency\": 1, \"value\": 1723}, \"1724\": {\"frequency\": 1, \"value\": 1724}, \"1725\": {\"frequency\": 1, \"value\": 1725}, \"1726\": {\"frequency\": 1, \"value\": 1726}, \"1727\": {\"frequency\": 1, \"value\": 1727}, \"1728\": {\"frequency\": 1, \"value\": 1728}, \"1729\": {\"frequency\": 1, \"value\": 1729}, \"1730\": {\"frequency\": 1, \"value\": 1730}, \"1731\": {\"frequency\": 1, \"value\": 1731}, \"1732\": {\"frequency\": 1, \"value\": 1732}, \"1733\": {\"frequency\": 1, \"value\": 1733}, \"1734\": {\"frequency\": 1, \"value\": 1734}, \"1735\": {\"frequency\": 1, \"value\": 1735}, \"1736\": {\"frequency\": 1, \"value\": 1736}, \"1737\": {\"frequency\": 1, \"value\": 1737}, \"1738\": {\"frequency\": 1, \"value\": 1738}, \"1739\": {\"frequency\": 1, \"value\": 1739}, \"1740\": {\"frequency\": 1, \"value\": 1740}, \"1741\": {\"frequency\": 1, \"value\": 1741}, \"1742\": {\"frequency\": 1, \"value\": 1742}, \"1743\": {\"frequency\": 1, \"value\": 1743}, \"1744\": {\"frequency\": 1, \"value\": 1744}, \"1745\": {\"frequency\": 1, \"value\": 1745}, \"1746\": {\"frequency\": 1, \"value\": 1746}, \"1747\": {\"frequency\": 1, \"value\": 1747}, \"1748\": {\"frequency\": 1, \"value\": 1748}, \"1749\": {\"frequency\": 1, \"value\": 1749}, \"1750\": {\"frequency\": 1, \"value\": 1750}, \"1751\": {\"frequency\": 1, \"value\": 1751}, \"1752\": {\"frequency\": 1, \"value\": 1752}, \"1753\": {\"frequency\": 1, \"value\": 1753}, \"1754\": {\"frequency\": 1, \"value\": 1754}, \"1755\": {\"frequency\": 1, \"value\": 1755}, \"1756\": {\"frequency\": 1, \"value\": 1756}, \"1757\": {\"frequency\": 1, \"value\": 1757}, \"1758\": {\"frequency\": 1, \"value\": 1758}, \"1759\": {\"frequency\": 1, \"value\": 1759}, \"1760\": {\"frequency\": 1, \"value\": 1760}, \"1761\": {\"frequency\": 1, \"value\": 1761}, \"1762\": {\"frequency\": 1, \"value\": 1762}, \"1763\": {\"frequency\": 1, \"value\": 1763}, \"1764\": {\"frequency\": 1, \"value\": 1764}, \"1765\": {\"frequency\": 1, \"value\": 1765}, \"1766\": {\"frequency\": 1, \"value\": 1766}, \"1767\": {\"frequency\": 1, \"value\": 1767}, \"1768\": {\"frequency\": 1, \"value\": 1768}, \"1769\": {\"frequency\": 1, \"value\": 1769}, \"1770\": {\"frequency\": 1, \"value\": 1770}, \"1771\": {\"frequency\": 1, \"value\": 1771}, \"1772\": {\"frequency\": 1, \"value\": 1772}, \"1773\": {\"frequency\": 1, \"value\": 1773}, \"1774\": {\"frequency\": 1, \"value\": 1774}, \"1775\": {\"frequency\": 1, \"value\": 1775}, \"1776\": {\"frequency\": 1, \"value\": 1776}, \"1777\": {\"frequency\": 1, \"value\": 1777}, \"1778\": {\"frequency\": 1, \"value\": 1778}, \"1779\": {\"frequency\": 1, \"value\": 1779}, \"1780\": {\"frequency\": 1, \"value\": 1780}, \"1781\": {\"frequency\": 1, \"value\": 1781}, \"1782\": {\"frequency\": 1, \"value\": 1782}, \"1783\": {\"frequency\": 1, \"value\": 1783}, \"1784\": {\"frequency\": 1, \"value\": 1784}, \"1785\": {\"frequency\": 1, \"value\": 1785}, \"1786\": {\"frequency\": 1, \"value\": 1786}, \"1787\": {\"frequency\": 1, \"value\": 1787}, \"1788\": {\"frequency\": 1, \"value\": 1788}, \"1789\": {\"frequency\": 1, \"value\": 1789}, \"1790\": {\"frequency\": 1, \"value\": 1790}, \"1791\": {\"frequency\": 1, \"value\": 1791}, \"1792\": {\"frequency\": 1, \"value\": 1792}, \"1793\": {\"frequency\": 1, \"value\": 1793}, \"1794\": {\"frequency\": 1, \"value\": 1794}, \"1795\": {\"frequency\": 1, \"value\": 1795}, \"1796\": {\"frequency\": 1, \"value\": 1796}, \"1797\": {\"frequency\": 1, \"value\": 1797}, \"1798\": {\"frequency\": 1, \"value\": 1798}, \"1799\": {\"frequency\": 1, \"value\": 1799}, \"1800\": {\"frequency\": 1, \"value\": 1800}, \"1801\": {\"frequency\": 1, \"value\": 1801}, \"1802\": {\"frequency\": 1, \"value\": 1802}, \"1803\": {\"frequency\": 1, \"value\": 1803}, \"1804\": {\"frequency\": 1, \"value\": 1804}, \"1805\": {\"frequency\": 1, \"value\": 1805}, \"1806\": {\"frequency\": 1, \"value\": 1806}, \"1807\": {\"frequency\": 1, \"value\": 1807}, \"1808\": {\"frequency\": 1, \"value\": 1808}, \"1809\": {\"frequency\": 1, \"value\": 1809}, \"1810\": {\"frequency\": 1, \"value\": 1810}, \"1811\": {\"frequency\": 1, \"value\": 1811}, \"1812\": {\"frequency\": 1, \"value\": 1812}, \"1813\": {\"frequency\": 1, \"value\": 1813}, \"1814\": {\"frequency\": 1, \"value\": 1814}, \"1815\": {\"frequency\": 1, \"value\": 1815}, \"1816\": {\"frequency\": 1, \"value\": 1816}, \"1817\": {\"frequency\": 1, \"value\": 1817}, \"1818\": {\"frequency\": 1, \"value\": 1818}, \"1819\": {\"frequency\": 1, \"value\": 1819}, \"1820\": {\"frequency\": 1, \"value\": 1820}, \"1821\": {\"frequency\": 1, \"value\": 1821}, \"1822\": {\"frequency\": 1, \"value\": 1822}, \"1823\": {\"frequency\": 1, \"value\": 1823}, \"1824\": {\"frequency\": 1, \"value\": 1824}, \"1825\": {\"frequency\": 1, \"value\": 1825}, \"1826\": {\"frequency\": 1, \"value\": 1826}, \"1827\": {\"frequency\": 1, \"value\": 1827}, \"1828\": {\"frequency\": 1, \"value\": 1828}, \"1829\": {\"frequency\": 1, \"value\": 1829}, \"1830\": {\"frequency\": 1, \"value\": 1830}, \"1831\": {\"frequency\": 1, \"value\": 1831}, \"1832\": {\"frequency\": 1, \"value\": 1832}, \"1833\": {\"frequency\": 1, \"value\": 1833}, \"1834\": {\"frequency\": 1, \"value\": 1834}, \"1835\": {\"frequency\": 1, \"value\": 1835}, \"1836\": {\"frequency\": 1, \"value\": 1836}, \"1837\": {\"frequency\": 1, \"value\": 1837}, \"1838\": {\"frequency\": 1, \"value\": 1838}, \"1839\": {\"frequency\": 1, \"value\": 1839}, \"1840\": {\"frequency\": 1, \"value\": 1840}, \"1841\": {\"frequency\": 1, \"value\": 1841}, \"1842\": {\"frequency\": 1, \"value\": 1842}, \"1843\": {\"frequency\": 1, \"value\": 1843}, \"1844\": {\"frequency\": 1, \"value\": 1844}, \"1845\": {\"frequency\": 1, \"value\": 1845}, \"1846\": {\"frequency\": 1, \"value\": 1846}, \"1847\": {\"frequency\": 1, \"value\": 1847}, \"1848\": {\"frequency\": 1, \"value\": 1848}, \"1849\": {\"frequency\": 1, \"value\": 1849}, \"1850\": {\"frequency\": 1, \"value\": 1850}, \"1851\": {\"frequency\": 1, \"value\": 1851}, \"1852\": {\"frequency\": 1, \"value\": 1852}, \"1853\": {\"frequency\": 1, \"value\": 1853}, \"1854\": {\"frequency\": 1, \"value\": 1854}, \"1855\": {\"frequency\": 1, \"value\": 1855}, \"1856\": {\"frequency\": 1, \"value\": 1856}, \"1857\": {\"frequency\": 1, \"value\": 1857}, \"1858\": {\"frequency\": 1, \"value\": 1858}, \"1859\": {\"frequency\": 1, \"value\": 1859}, \"1860\": {\"frequency\": 1, \"value\": 1860}, \"1861\": {\"frequency\": 1, \"value\": 1861}, \"1862\": {\"frequency\": 1, \"value\": 1862}, \"1863\": {\"frequency\": 1, \"value\": 1863}, \"1864\": {\"frequency\": 1, \"value\": 1864}, \"1865\": {\"frequency\": 1, \"value\": 1865}, \"1866\": {\"frequency\": 1, \"value\": 1866}, \"1867\": {\"frequency\": 1, \"value\": 1867}, \"1868\": {\"frequency\": 1, \"value\": 1868}, \"1869\": {\"frequency\": 1, \"value\": 1869}, \"1870\": {\"frequency\": 1, \"value\": 1870}, \"1871\": {\"frequency\": 1, \"value\": 1871}, \"1872\": {\"frequency\": 1, \"value\": 1872}, \"1873\": {\"frequency\": 1, \"value\": 1873}, \"1874\": {\"frequency\": 1, \"value\": 1874}, \"1875\": {\"frequency\": 1, \"value\": 1875}, \"1876\": {\"frequency\": 1, \"value\": 1876}, \"1877\": {\"frequency\": 1, \"value\": 1877}, \"1878\": {\"frequency\": 1, \"value\": 1878}, \"1879\": {\"frequency\": 1, \"value\": 1879}, \"1880\": {\"frequency\": 1, \"value\": 1880}, \"1881\": {\"frequency\": 1, \"value\": 1881}, \"1882\": {\"frequency\": 1, \"value\": 1882}, \"1883\": {\"frequency\": 1, \"value\": 1883}, \"1884\": {\"frequency\": 1, \"value\": 1884}, \"1885\": {\"frequency\": 1, \"value\": 1885}, \"1886\": {\"frequency\": 1, \"value\": 1886}, \"1887\": {\"frequency\": 1, \"value\": 1887}, \"1888\": {\"frequency\": 1, \"value\": 1888}, \"1889\": {\"frequency\": 1, \"value\": 1889}, \"1890\": {\"frequency\": 1, \"value\": 1890}, \"1891\": {\"frequency\": 1, \"value\": 1891}, \"1892\": {\"frequency\": 1, \"value\": 1892}, \"1893\": {\"frequency\": 1, \"value\": 1893}, \"1894\": {\"frequency\": 1, \"value\": 1894}, \"1895\": {\"frequency\": 1, \"value\": 1895}, \"1896\": {\"frequency\": 1, \"value\": 1896}, \"1897\": {\"frequency\": 1, \"value\": 1897}, \"1898\": {\"frequency\": 1, \"value\": 1898}, \"1899\": {\"frequency\": 1, \"value\": 1899}, \"1900\": {\"frequency\": 1, \"value\": 1900}, \"1901\": {\"frequency\": 1, \"value\": 1901}, \"1902\": {\"frequency\": 1, \"value\": 1902}, \"1903\": {\"frequency\": 1, \"value\": 1903}, \"1904\": {\"frequency\": 1, \"value\": 1904}, \"1905\": {\"frequency\": 1, \"value\": 1905}, \"1906\": {\"frequency\": 1, \"value\": 1906}, \"1907\": {\"frequency\": 1, \"value\": 1907}, \"1908\": {\"frequency\": 1, \"value\": 1908}, \"1909\": {\"frequency\": 1, \"value\": 1909}, \"1910\": {\"frequency\": 1, \"value\": 1910}, \"1911\": {\"frequency\": 1, \"value\": 1911}, \"1912\": {\"frequency\": 1, \"value\": 1912}, \"1913\": {\"frequency\": 1, \"value\": 1913}, \"1914\": {\"frequency\": 1, \"value\": 1914}, \"1915\": {\"frequency\": 1, \"value\": 1915}, \"1916\": {\"frequency\": 1, \"value\": 1916}, \"1917\": {\"frequency\": 1, \"value\": 1917}, \"1918\": {\"frequency\": 1, \"value\": 1918}, \"1919\": {\"frequency\": 1, \"value\": 1919}, \"1920\": {\"frequency\": 1, \"value\": 1920}, \"1921\": {\"frequency\": 1, \"value\": 1921}, \"1922\": {\"frequency\": 1, \"value\": 1922}, \"1923\": {\"frequency\": 1, \"value\": 1923}, \"1924\": {\"frequency\": 1, \"value\": 1924}, \"1925\": {\"frequency\": 1, \"value\": 1925}, \"1926\": {\"frequency\": 1, \"value\": 1926}, \"1927\": {\"frequency\": 1, \"value\": 1927}, \"1928\": {\"frequency\": 1, \"value\": 1928}, \"1929\": {\"frequency\": 1, \"value\": 1929}, \"1930\": {\"frequency\": 1, \"value\": 1930}, \"1931\": {\"frequency\": 1, \"value\": 1931}, \"1932\": {\"frequency\": 1, \"value\": 1932}, \"1933\": {\"frequency\": 1, \"value\": 1933}, \"1934\": {\"frequency\": 1, \"value\": 1934}, \"1935\": {\"frequency\": 1, \"value\": 1935}, \"1936\": {\"frequency\": 1, \"value\": 1936}, \"1937\": {\"frequency\": 1, \"value\": 1937}, \"1938\": {\"frequency\": 1, \"value\": 1938}, \"1939\": {\"frequency\": 1, \"value\": 1939}, \"1940\": {\"frequency\": 1, \"value\": 1940}, \"1941\": {\"frequency\": 1, \"value\": 1941}, \"1942\": {\"frequency\": 1, \"value\": 1942}, \"1943\": {\"frequency\": 1, \"value\": 1943}, \"1944\": {\"frequency\": 1, \"value\": 1944}, \"1945\": {\"frequency\": 1, \"value\": 1945}, \"1946\": {\"frequency\": 1, \"value\": 1946}, \"1947\": {\"frequency\": 1, \"value\": 1947}, \"1948\": {\"frequency\": 1, \"value\": 1948}, \"1949\": {\"frequency\": 1, \"value\": 1949}, \"1950\": {\"frequency\": 1, \"value\": 1950}, \"1951\": {\"frequency\": 1, \"value\": 1951}, \"1952\": {\"frequency\": 1, \"value\": 1952}, \"1953\": {\"frequency\": 1, \"value\": 1953}, \"1954\": {\"frequency\": 1, \"value\": 1954}, \"1955\": {\"frequency\": 1, \"value\": 1955}, \"1956\": {\"frequency\": 1, \"value\": 1956}, \"1957\": {\"frequency\": 1, \"value\": 1957}, \"1958\": {\"frequency\": 1, \"value\": 1958}, \"1959\": {\"frequency\": 1, \"value\": 1959}, \"1960\": {\"frequency\": 1, \"value\": 1960}, \"1961\": {\"frequency\": 1, \"value\": 1961}, \"1962\": {\"frequency\": 1, \"value\": 1962}, \"1963\": {\"frequency\": 1, \"value\": 1963}, \"1964\": {\"frequency\": 1, \"value\": 1964}, \"1965\": {\"frequency\": 1, \"value\": 1965}, \"1966\": {\"frequency\": 1, \"value\": 1966}, \"1967\": {\"frequency\": 1, \"value\": 1967}, \"1968\": {\"frequency\": 1, \"value\": 1968}, \"1969\": {\"frequency\": 1, \"value\": 1969}, \"1970\": {\"frequency\": 1, \"value\": 1970}, \"1971\": {\"frequency\": 1, \"value\": 1971}, \"1972\": {\"frequency\": 1, \"value\": 1972}, \"1973\": {\"frequency\": 1, \"value\": 1973}, \"1974\": {\"frequency\": 1, \"value\": 1974}, \"1975\": {\"frequency\": 1, \"value\": 1975}, \"1976\": {\"frequency\": 1, \"value\": 1976}, \"1977\": {\"frequency\": 1, \"value\": 1977}, \"1978\": {\"frequency\": 1, \"value\": 1978}, \"1979\": {\"frequency\": 1, \"value\": 1979}, \"1980\": {\"frequency\": 1, \"value\": 1980}, \"1981\": {\"frequency\": 1, \"value\": 1981}, \"1982\": {\"frequency\": 1, \"value\": 1982}, \"1983\": {\"frequency\": 1, \"value\": 1983}, \"1984\": {\"frequency\": 1, \"value\": 1984}, \"1985\": {\"frequency\": 1, \"value\": 1985}, \"1986\": {\"frequency\": 1, \"value\": 1986}, \"1987\": {\"frequency\": 1, \"value\": 1987}, \"1988\": {\"frequency\": 1, \"value\": 1988}, \"1989\": {\"frequency\": 1, \"value\": 1989}, \"1990\": {\"frequency\": 1, \"value\": 1990}, \"1991\": {\"frequency\": 1, \"value\": 1991}, \"1992\": {\"frequency\": 1, \"value\": 1992}, \"1993\": {\"frequency\": 1, \"value\": 1993}, \"1994\": {\"frequency\": 1, \"value\": 1994}, \"1995\": {\"frequency\": 1, \"value\": 1995}, \"1996\": {\"frequency\": 1, \"value\": 1996}, \"1997\": {\"frequency\": 1, \"value\": 1997}, \"1998\": {\"frequency\": 1, \"value\": 1998}, \"1999\": {\"frequency\": 1, \"value\": 1999}, \"2000\": {\"frequency\": 1, \"value\": 2000}, \"2001\": {\"frequency\": 1, \"value\": 2001}, \"2002\": {\"frequency\": 1, \"value\": 2002}, \"2003\": {\"frequency\": 1, \"value\": 2003}, \"2004\": {\"frequency\": 1, \"value\": 2004}, \"2005\": {\"frequency\": 1, \"value\": 2005}, \"2006\": {\"frequency\": 1, \"value\": 2006}, \"2007\": {\"frequency\": 1, \"value\": 2007}, \"2008\": {\"frequency\": 1, \"value\": 2008}, \"2009\": {\"frequency\": 1, \"value\": 2009}, \"2010\": {\"frequency\": 1, \"value\": 2010}, \"2011\": {\"frequency\": 1, \"value\": 2011}, \"2012\": {\"frequency\": 1, \"value\": 2012}, \"2013\": {\"frequency\": 1, \"value\": 2013}, \"2014\": {\"frequency\": 1, \"value\": 2014}, \"2015\": {\"frequency\": 1, \"value\": 2015}, \"2016\": {\"frequency\": 1, \"value\": 2016}, \"2017\": {\"frequency\": 1, \"value\": 2017}, \"2018\": {\"frequency\": 1, \"value\": 2018}, \"2019\": {\"frequency\": 1, \"value\": 2019}, \"2020\": {\"frequency\": 1, \"value\": 2020}, \"2021\": {\"frequency\": 1, \"value\": 2021}, \"2022\": {\"frequency\": 1, \"value\": 2022}, \"2023\": {\"frequency\": 1, \"value\": 2023}, \"2024\": {\"frequency\": 1, \"value\": 2024}, \"2025\": {\"frequency\": 1, \"value\": 2025}, \"2026\": {\"frequency\": 1, \"value\": 2026}, \"2027\": {\"frequency\": 1, \"value\": 2027}, \"2028\": {\"frequency\": 1, \"value\": 2028}, \"2029\": {\"frequency\": 1, \"value\": 2029}, \"2030\": {\"frequency\": 1, \"value\": 2030}, \"2031\": {\"frequency\": 1, \"value\": 2031}, \"2032\": {\"frequency\": 1, \"value\": 2032}, \"2033\": {\"frequency\": 1, \"value\": 2033}, \"2034\": {\"frequency\": 1, \"value\": 2034}, \"2035\": {\"frequency\": 1, \"value\": 2035}, \"2036\": {\"frequency\": 1, \"value\": 2036}, \"2037\": {\"frequency\": 1, \"value\": 2037}, \"2038\": {\"frequency\": 1, \"value\": 2038}, \"2039\": {\"frequency\": 1, \"value\": 2039}, \"2040\": {\"frequency\": 1, \"value\": 2040}, \"2041\": {\"frequency\": 1, \"value\": 2041}, \"2042\": {\"frequency\": 1, \"value\": 2042}, \"2043\": {\"frequency\": 1, \"value\": 2043}, \"2044\": {\"frequency\": 1, \"value\": 2044}, \"2045\": {\"frequency\": 1, \"value\": 2045}, \"2046\": {\"frequency\": 1, \"value\": 2046}, \"2047\": {\"frequency\": 1, \"value\": 2047}, \"2048\": {\"frequency\": 1, \"value\": 2048}, \"2049\": {\"frequency\": 1, \"value\": 2049}, \"2050\": {\"frequency\": 1, \"value\": 2050}, \"2051\": {\"frequency\": 1, \"value\": 2051}, \"2052\": {\"frequency\": 1, \"value\": 2052}, \"2053\": {\"frequency\": 1, \"value\": 2053}, \"2054\": {\"frequency\": 1, \"value\": 2054}, \"2055\": {\"frequency\": 1, \"value\": 2055}, \"2056\": {\"frequency\": 1, \"value\": 2056}, \"2057\": {\"frequency\": 1, \"value\": 2057}, \"2058\": {\"frequency\": 1, \"value\": 2058}, \"2059\": {\"frequency\": 1, \"value\": 2059}, \"2060\": {\"frequency\": 1, \"value\": 2060}, \"2061\": {\"frequency\": 1, \"value\": 2061}, \"2062\": {\"frequency\": 1, \"value\": 2062}, \"2063\": {\"frequency\": 1, \"value\": 2063}, \"2064\": {\"frequency\": 1, \"value\": 2064}, \"2065\": {\"frequency\": 1, \"value\": 2065}, \"2066\": {\"frequency\": 1, \"value\": 2066}, \"2067\": {\"frequency\": 1, \"value\": 2067}, \"2068\": {\"frequency\": 1, \"value\": 2068}, \"2069\": {\"frequency\": 1, \"value\": 2069}, \"2070\": {\"frequency\": 1, \"value\": 2070}, \"2071\": {\"frequency\": 1, \"value\": 2071}, \"2072\": {\"frequency\": 1, \"value\": 2072}, \"2073\": {\"frequency\": 1, \"value\": 2073}, \"2074\": {\"frequency\": 1, \"value\": 2074}, \"2075\": {\"frequency\": 1, \"value\": 2075}, \"2076\": {\"frequency\": 1, \"value\": 2076}, \"2077\": {\"frequency\": 1, \"value\": 2077}, \"2078\": {\"frequency\": 1, \"value\": 2078}, \"2079\": {\"frequency\": 1, \"value\": 2079}, \"2080\": {\"frequency\": 1, \"value\": 2080}, \"2081\": {\"frequency\": 1, \"value\": 2081}, \"2082\": {\"frequency\": 1, \"value\": 2082}, \"2083\": {\"frequency\": 1, \"value\": 2083}, \"2084\": {\"frequency\": 1, \"value\": 2084}, \"2085\": {\"frequency\": 1, \"value\": 2085}, \"2086\": {\"frequency\": 1, \"value\": 2086}, \"2087\": {\"frequency\": 1, \"value\": 2087}, \"2088\": {\"frequency\": 1, \"value\": 2088}, \"2089\": {\"frequency\": 1, \"value\": 2089}, \"2090\": {\"frequency\": 1, \"value\": 2090}, \"2091\": {\"frequency\": 1, \"value\": 2091}, \"2092\": {\"frequency\": 1, \"value\": 2092}, \"2093\": {\"frequency\": 1, \"value\": 2093}, \"2094\": {\"frequency\": 1, \"value\": 2094}, \"2095\": {\"frequency\": 1, \"value\": 2095}, \"2096\": {\"frequency\": 1, \"value\": 2096}, \"2097\": {\"frequency\": 1, \"value\": 2097}, \"2098\": {\"frequency\": 1, \"value\": 2098}, \"2099\": {\"frequency\": 1, \"value\": 2099}, \"2100\": {\"frequency\": 1, \"value\": 2100}, \"2101\": {\"frequency\": 1, \"value\": 2101}, \"2102\": {\"frequency\": 1, \"value\": 2102}, \"2103\": {\"frequency\": 1, \"value\": 2103}, \"2104\": {\"frequency\": 1, \"value\": 2104}, \"2105\": {\"frequency\": 1, \"value\": 2105}, \"2106\": {\"frequency\": 1, \"value\": 2106}, \"2107\": {\"frequency\": 1, \"value\": 2107}, \"2108\": {\"frequency\": 1, \"value\": 2108}, \"2109\": {\"frequency\": 1, \"value\": 2109}, \"2110\": {\"frequency\": 1, \"value\": 2110}, \"2111\": {\"frequency\": 1, \"value\": 2111}, \"2112\": {\"frequency\": 1, \"value\": 2112}, \"2113\": {\"frequency\": 1, \"value\": 2113}, \"2114\": {\"frequency\": 1, \"value\": 2114}, \"2115\": {\"frequency\": 1, \"value\": 2115}, \"2116\": {\"frequency\": 1, \"value\": 2116}, \"2117\": {\"frequency\": 1, \"value\": 2117}, \"2118\": {\"frequency\": 1, \"value\": 2118}, \"2119\": {\"frequency\": 1, \"value\": 2119}, \"2120\": {\"frequency\": 1, \"value\": 2120}, \"2121\": {\"frequency\": 1, \"value\": 2121}, \"2122\": {\"frequency\": 1, \"value\": 2122}, \"2123\": {\"frequency\": 1, \"value\": 2123}, \"2124\": {\"frequency\": 1, \"value\": 2124}, \"2125\": {\"frequency\": 1, \"value\": 2125}, \"2126\": {\"frequency\": 1, \"value\": 2126}, \"2127\": {\"frequency\": 1, \"value\": 2127}, \"2128\": {\"frequency\": 1, \"value\": 2128}, \"2129\": {\"frequency\": 1, \"value\": 2129}, \"2130\": {\"frequency\": 1, \"value\": 2130}, \"2131\": {\"frequency\": 1, \"value\": 2131}, \"2132\": {\"frequency\": 1, \"value\": 2132}, \"2133\": {\"frequency\": 1, \"value\": 2133}, \"2134\": {\"frequency\": 1, \"value\": 2134}, \"2135\": {\"frequency\": 1, \"value\": 2135}, \"2136\": {\"frequency\": 1, \"value\": 2136}, \"2137\": {\"frequency\": 1, \"value\": 2137}, \"2138\": {\"frequency\": 1, \"value\": 2138}, \"2139\": {\"frequency\": 1, \"value\": 2139}, \"2140\": {\"frequency\": 1, \"value\": 2140}, \"2141\": {\"frequency\": 1, \"value\": 2141}, \"2142\": {\"frequency\": 1, \"value\": 2142}, \"2143\": {\"frequency\": 1, \"value\": 2143}, \"2144\": {\"frequency\": 1, \"value\": 2144}, \"2145\": {\"frequency\": 1, \"value\": 2145}, \"2146\": {\"frequency\": 1, \"value\": 2146}, \"2147\": {\"frequency\": 1, \"value\": 2147}, \"2148\": {\"frequency\": 1, \"value\": 2148}, \"2149\": {\"frequency\": 1, \"value\": 2149}, \"2150\": {\"frequency\": 1, \"value\": 2150}, \"2151\": {\"frequency\": 1, \"value\": 2151}, \"2152\": {\"frequency\": 1, \"value\": 2152}, \"2153\": {\"frequency\": 1, \"value\": 2153}, \"2154\": {\"frequency\": 1, \"value\": 2154}, \"2155\": {\"frequency\": 1, \"value\": 2155}, \"2156\": {\"frequency\": 1, \"value\": 2156}, \"2157\": {\"frequency\": 1, \"value\": 2157}, \"2158\": {\"frequency\": 1, \"value\": 2158}, \"2159\": {\"frequency\": 1, \"value\": 2159}, \"2160\": {\"frequency\": 1, \"value\": 2160}, \"2161\": {\"frequency\": 1, \"value\": 2161}, \"2162\": {\"frequency\": 1, \"value\": 2162}, \"2163\": {\"frequency\": 1, \"value\": 2163}, \"2164\": {\"frequency\": 1, \"value\": 2164}, \"2165\": {\"frequency\": 1, \"value\": 2165}, \"2166\": {\"frequency\": 1, \"value\": 2166}, \"2167\": {\"frequency\": 1, \"value\": 2167}, \"2168\": {\"frequency\": 1, \"value\": 2168}, \"2169\": {\"frequency\": 1, \"value\": 2169}, \"2170\": {\"frequency\": 1, \"value\": 2170}, \"2171\": {\"frequency\": 1, \"value\": 2171}, \"2172\": {\"frequency\": 1, \"value\": 2172}, \"2173\": {\"frequency\": 1, \"value\": 2173}, \"2174\": {\"frequency\": 1, \"value\": 2174}, \"2175\": {\"frequency\": 1, \"value\": 2175}, \"2176\": {\"frequency\": 1, \"value\": 2176}, \"2178\": {\"frequency\": 1, \"value\": 2178}, \"2179\": {\"frequency\": 1, \"value\": 2179}, \"2180\": {\"frequency\": 1, \"value\": 2180}, \"2181\": {\"frequency\": 1, \"value\": 2181}, \"2182\": {\"frequency\": 1, \"value\": 2182}, \"2183\": {\"frequency\": 1, \"value\": 2183}, \"2184\": {\"frequency\": 1, \"value\": 2184}, \"2185\": {\"frequency\": 1, \"value\": 2185}, \"2186\": {\"frequency\": 1, \"value\": 2186}, \"2187\": {\"frequency\": 1, \"value\": 2187}, \"2188\": {\"frequency\": 1, \"value\": 2188}, \"2189\": {\"frequency\": 1, \"value\": 2189}, \"2190\": {\"frequency\": 1, \"value\": 2190}, \"2191\": {\"frequency\": 1, \"value\": 2191}, \"2192\": {\"frequency\": 1, \"value\": 2192}, \"2193\": {\"frequency\": 1, \"value\": 2193}, \"2194\": {\"frequency\": 1, \"value\": 2194}, \"2195\": {\"frequency\": 1, \"value\": 2195}, \"2196\": {\"frequency\": 1, \"value\": 2196}, \"2197\": {\"frequency\": 1, \"value\": 2197}, \"2198\": {\"frequency\": 1, \"value\": 2198}, \"2199\": {\"frequency\": 1, \"value\": 2199}, \"2200\": {\"frequency\": 1, \"value\": 2200}, \"2201\": {\"frequency\": 1, \"value\": 2201}, \"2202\": {\"frequency\": 1, \"value\": 2202}, \"2203\": {\"frequency\": 1, \"value\": 2203}, \"2204\": {\"frequency\": 1, \"value\": 2204}, \"2205\": {\"frequency\": 1, \"value\": 2205}, \"2206\": {\"frequency\": 1, \"value\": 2206}, \"2207\": {\"frequency\": 1, \"value\": 2207}, \"2208\": {\"frequency\": 1, \"value\": 2208}, \"2209\": {\"frequency\": 1, \"value\": 2209}, \"2210\": {\"frequency\": 1, \"value\": 2210}, \"2211\": {\"frequency\": 1, \"value\": 2211}, \"2212\": {\"frequency\": 1, \"value\": 2212}, \"2213\": {\"frequency\": 1, \"value\": 2213}, \"2214\": {\"frequency\": 1, \"value\": 2214}, \"2215\": {\"frequency\": 1, \"value\": 2215}, \"2216\": {\"frequency\": 1, \"value\": 2216}, \"2217\": {\"frequency\": 1, \"value\": 2217}, \"2218\": {\"frequency\": 1, \"value\": 2218}, \"2219\": {\"frequency\": 1, \"value\": 2219}, \"2220\": {\"frequency\": 1, \"value\": 2220}, \"2221\": {\"frequency\": 1, \"value\": 2221}, \"2222\": {\"frequency\": 1, \"value\": 2222}, \"2223\": {\"frequency\": 1, \"value\": 2223}, \"2224\": {\"frequency\": 1, \"value\": 2224}, \"2225\": {\"frequency\": 1, \"value\": 2225}, \"2226\": {\"frequency\": 1, \"value\": 2226}, \"2227\": {\"frequency\": 1, \"value\": 2227}, \"2228\": {\"frequency\": 1, \"value\": 2228}, \"2229\": {\"frequency\": 1, \"value\": 2229}, \"2230\": {\"frequency\": 1, \"value\": 2230}, \"2231\": {\"frequency\": 1, \"value\": 2231}, \"2232\": {\"frequency\": 1, \"value\": 2232}, \"2233\": {\"frequency\": 1, \"value\": 2233}, \"2234\": {\"frequency\": 1, \"value\": 2234}, \"2235\": {\"frequency\": 1, \"value\": 2235}, \"2236\": {\"frequency\": 1, \"value\": 2236}, \"2237\": {\"frequency\": 1, \"value\": 2237}, \"2238\": {\"frequency\": 1, \"value\": 2238}, \"2239\": {\"frequency\": 1, \"value\": 2239}, \"2240\": {\"frequency\": 1, \"value\": 2240}, \"2241\": {\"frequency\": 1, \"value\": 2241}, \"2242\": {\"frequency\": 1, \"value\": 2242}, \"2243\": {\"frequency\": 1, \"value\": 2243}, \"2244\": {\"frequency\": 1, \"value\": 2244}, \"2245\": {\"frequency\": 1, \"value\": 2245}, \"2246\": {\"frequency\": 1, \"value\": 2246}, \"2247\": {\"frequency\": 1, \"value\": 2247}, \"2248\": {\"frequency\": 1, \"value\": 2248}, \"2249\": {\"frequency\": 1, \"value\": 2249}, \"2250\": {\"frequency\": 1, \"value\": 2250}, \"2251\": {\"frequency\": 1, \"value\": 2251}, \"2252\": {\"frequency\": 1, \"value\": 2252}, \"2253\": {\"frequency\": 1, \"value\": 2253}, \"2254\": {\"frequency\": 1, \"value\": 2254}, \"2255\": {\"frequency\": 1, \"value\": 2255}, \"2256\": {\"frequency\": 1, \"value\": 2256}, \"2257\": {\"frequency\": 1, \"value\": 2257}, \"2258\": {\"frequency\": 1, \"value\": 2258}, \"2259\": {\"frequency\": 1, \"value\": 2259}, \"2260\": {\"frequency\": 1, \"value\": 2260}, \"2261\": {\"frequency\": 1, \"value\": 2261}, \"2262\": {\"frequency\": 1, \"value\": 2262}, \"2263\": {\"frequency\": 1, \"value\": 2263}, \"2264\": {\"frequency\": 1, \"value\": 2264}, \"2265\": {\"frequency\": 1, \"value\": 2265}, \"2266\": {\"frequency\": 1, \"value\": 2266}, \"2267\": {\"frequency\": 1, \"value\": 2267}, \"2268\": {\"frequency\": 1, \"value\": 2268}, \"2269\": {\"frequency\": 1, \"value\": 2269}, \"2270\": {\"frequency\": 1, \"value\": 2270}, \"2271\": {\"frequency\": 1, \"value\": 2271}, \"2272\": {\"frequency\": 1, \"value\": 2272}, \"2273\": {\"frequency\": 1, \"value\": 2273}, \"2274\": {\"frequency\": 1, \"value\": 2274}, \"2275\": {\"frequency\": 1, \"value\": 2275}, \"2276\": {\"frequency\": 1, \"value\": 2276}, \"2277\": {\"frequency\": 1, \"value\": 2277}, \"2278\": {\"frequency\": 1, \"value\": 2278}, \"2279\": {\"frequency\": 1, \"value\": 2279}, \"2280\": {\"frequency\": 1, \"value\": 2280}, \"2281\": {\"frequency\": 1, \"value\": 2281}, \"2282\": {\"frequency\": 1, \"value\": 2282}, \"2283\": {\"frequency\": 1, \"value\": 2283}, \"2284\": {\"frequency\": 1, \"value\": 2284}, \"2285\": {\"frequency\": 1, \"value\": 2285}, \"2286\": {\"frequency\": 1, \"value\": 2286}, \"2287\": {\"frequency\": 1, \"value\": 2287}, \"2288\": {\"frequency\": 1, \"value\": 2288}, \"2289\": {\"frequency\": 1, \"value\": 2289}, \"2290\": {\"frequency\": 1, \"value\": 2290}, \"2291\": {\"frequency\": 1, \"value\": 2291}, \"2292\": {\"frequency\": 1, \"value\": 2292}, \"2293\": {\"frequency\": 1, \"value\": 2293}, \"2294\": {\"frequency\": 1, \"value\": 2294}, \"2295\": {\"frequency\": 1, \"value\": 2295}, \"2296\": {\"frequency\": 1, \"value\": 2296}, \"2297\": {\"frequency\": 1, \"value\": 2297}, \"2298\": {\"frequency\": 1, \"value\": 2298}, \"2299\": {\"frequency\": 1, \"value\": 2299}, \"2300\": {\"frequency\": 1, \"value\": 2300}, \"2301\": {\"frequency\": 1, \"value\": 2301}, \"2302\": {\"frequency\": 1, \"value\": 2302}, \"2303\": {\"frequency\": 1, \"value\": 2303}, \"2304\": {\"frequency\": 1, \"value\": 2304}, \"2305\": {\"frequency\": 1, \"value\": 2305}, \"2306\": {\"frequency\": 1, \"value\": 2306}, \"2307\": {\"frequency\": 1, \"value\": 2307}, \"2308\": {\"frequency\": 1, \"value\": 2308}, \"2309\": {\"frequency\": 1, \"value\": 2309}, \"2310\": {\"frequency\": 1, \"value\": 2310}, \"2311\": {\"frequency\": 1, \"value\": 2311}, \"2312\": {\"frequency\": 1, \"value\": 2312}, \"2313\": {\"frequency\": 1, \"value\": 2313}, \"2314\": {\"frequency\": 1, \"value\": 2314}, \"2315\": {\"frequency\": 1, \"value\": 2315}, \"2316\": {\"frequency\": 1, \"value\": 2316}, \"2317\": {\"frequency\": 1, \"value\": 2317}, \"2318\": {\"frequency\": 1, \"value\": 2318}, \"2319\": {\"frequency\": 1, \"value\": 2319}, \"2320\": {\"frequency\": 1, \"value\": 2320}, \"2321\": {\"frequency\": 1, \"value\": 2321}, \"2322\": {\"frequency\": 1, \"value\": 2322}, \"2323\": {\"frequency\": 1, \"value\": 2323}, \"2324\": {\"frequency\": 1, \"value\": 2324}, \"2325\": {\"frequency\": 1, \"value\": 2325}, \"2326\": {\"frequency\": 1, \"value\": 2326}, \"2327\": {\"frequency\": 1, \"value\": 2327}, \"2328\": {\"frequency\": 1, \"value\": 2328}, \"2329\": {\"frequency\": 1, \"value\": 2329}, \"2330\": {\"frequency\": 1, \"value\": 2330}, \"2331\": {\"frequency\": 1, \"value\": 2331}, \"2332\": {\"frequency\": 1, \"value\": 2332}, \"2333\": {\"frequency\": 1, \"value\": 2333}, \"2334\": {\"frequency\": 1, \"value\": 2334}, \"2335\": {\"frequency\": 1, \"value\": 2335}, \"2336\": {\"frequency\": 1, \"value\": 2336}, \"2337\": {\"frequency\": 1, \"value\": 2337}, \"2338\": {\"frequency\": 1, \"value\": 2338}, \"2339\": {\"frequency\": 1, \"value\": 2339}, \"2340\": {\"frequency\": 1, \"value\": 2340}, \"2341\": {\"frequency\": 1, \"value\": 2341}, \"2342\": {\"frequency\": 1, \"value\": 2342}, \"2343\": {\"frequency\": 1, \"value\": 2343}, \"2344\": {\"frequency\": 1, \"value\": 2344}, \"2345\": {\"frequency\": 1, \"value\": 2345}, \"2346\": {\"frequency\": 1, \"value\": 2346}, \"2347\": {\"frequency\": 1, \"value\": 2347}, \"2348\": {\"frequency\": 1, \"value\": 2348}, \"2349\": {\"frequency\": 1, \"value\": 2349}, \"2350\": {\"frequency\": 1, \"value\": 2350}, \"2351\": {\"frequency\": 1, \"value\": 2351}, \"2352\": {\"frequency\": 1, \"value\": 2352}, \"2353\": {\"frequency\": 1, \"value\": 2353}, \"2354\": {\"frequency\": 1, \"value\": 2354}, \"2355\": {\"frequency\": 1, \"value\": 2355}, \"2356\": {\"frequency\": 1, \"value\": 2356}, \"2357\": {\"frequency\": 1, \"value\": 2357}, \"2358\": {\"frequency\": 1, \"value\": 2358}, \"2359\": {\"frequency\": 1, \"value\": 2359}, \"2360\": {\"frequency\": 1, \"value\": 2360}, \"2361\": {\"frequency\": 1, \"value\": 2361}, \"2362\": {\"frequency\": 1, \"value\": 2362}, \"2363\": {\"frequency\": 1, \"value\": 2363}, \"2364\": {\"frequency\": 1, \"value\": 2364}, \"2365\": {\"frequency\": 1, \"value\": 2365}, \"2366\": {\"frequency\": 1, \"value\": 2366}, \"2367\": {\"frequency\": 1, \"value\": 2367}, \"2368\": {\"frequency\": 1, \"value\": 2368}, \"2369\": {\"frequency\": 1, \"value\": 2369}, \"2370\": {\"frequency\": 1, \"value\": 2370}, \"2371\": {\"frequency\": 1, \"value\": 2371}, \"2372\": {\"frequency\": 1, \"value\": 2372}, \"2373\": {\"frequency\": 1, \"value\": 2373}, \"2374\": {\"frequency\": 1, \"value\": 2374}, \"2375\": {\"frequency\": 1, \"value\": 2375}, \"2376\": {\"frequency\": 1, \"value\": 2376}, \"2377\": {\"frequency\": 1, \"value\": 2377}, \"2378\": {\"frequency\": 1, \"value\": 2378}, \"2379\": {\"frequency\": 1, \"value\": 2379}, \"2380\": {\"frequency\": 1, \"value\": 2380}, \"2381\": {\"frequency\": 1, \"value\": 2381}, \"2382\": {\"frequency\": 1, \"value\": 2382}, \"2383\": {\"frequency\": 1, \"value\": 2383}, \"2384\": {\"frequency\": 1, \"value\": 2384}, \"2385\": {\"frequency\": 1, \"value\": 2385}, \"2386\": {\"frequency\": 1, \"value\": 2386}, \"2387\": {\"frequency\": 1, \"value\": 2387}, \"2388\": {\"frequency\": 1, \"value\": 2388}, \"2389\": {\"frequency\": 1, \"value\": 2389}, \"2390\": {\"frequency\": 1, \"value\": 2390}, \"2391\": {\"frequency\": 1, \"value\": 2391}, \"2392\": {\"frequency\": 1, \"value\": 2392}, \"2393\": {\"frequency\": 1, \"value\": 2393}, \"2394\": {\"frequency\": 1, \"value\": 2394}, \"2395\": {\"frequency\": 1, \"value\": 2395}, \"2396\": {\"frequency\": 1, \"value\": 2396}, \"2397\": {\"frequency\": 1, \"value\": 2397}, \"2398\": {\"frequency\": 1, \"value\": 2398}, \"2399\": {\"frequency\": 1, \"value\": 2399}, \"2400\": {\"frequency\": 1, \"value\": 2400}, \"2401\": {\"frequency\": 1, \"value\": 2401}, \"2402\": {\"frequency\": 1, \"value\": 2402}, \"2403\": {\"frequency\": 1, \"value\": 2403}, \"2404\": {\"frequency\": 1, \"value\": 2404}, \"2405\": {\"frequency\": 1, \"value\": 2405}, \"2406\": {\"frequency\": 1, \"value\": 2406}, \"2407\": {\"frequency\": 1, \"value\": 2407}, \"2408\": {\"frequency\": 1, \"value\": 2408}, \"2409\": {\"frequency\": 1, \"value\": 2409}, \"2410\": {\"frequency\": 1, \"value\": 2410}, \"2411\": {\"frequency\": 1, \"value\": 2411}, \"2412\": {\"frequency\": 1, \"value\": 2412}, \"2413\": {\"frequency\": 1, \"value\": 2413}, \"2414\": {\"frequency\": 1, \"value\": 2414}, \"2415\": {\"frequency\": 1, \"value\": 2415}, \"2416\": {\"frequency\": 1, \"value\": 2416}, \"2417\": {\"frequency\": 1, \"value\": 2417}, \"2418\": {\"frequency\": 1, \"value\": 2418}, \"2419\": {\"frequency\": 1, \"value\": 2419}, \"2420\": {\"frequency\": 1, \"value\": 2420}, \"2421\": {\"frequency\": 1, \"value\": 2421}, \"2422\": {\"frequency\": 1, \"value\": 2422}, \"2423\": {\"frequency\": 1, \"value\": 2423}, \"2424\": {\"frequency\": 1, \"value\": 2424}, \"2425\": {\"frequency\": 1, \"value\": 2425}, \"2426\": {\"frequency\": 1, \"value\": 2426}, \"2427\": {\"frequency\": 1, \"value\": 2427}, \"2428\": {\"frequency\": 1, \"value\": 2428}, \"2429\": {\"frequency\": 1, \"value\": 2429}, \"2430\": {\"frequency\": 1, \"value\": 2430}, \"2431\": {\"frequency\": 1, \"value\": 2431}, \"2432\": {\"frequency\": 1, \"value\": 2432}, \"2433\": {\"frequency\": 1, \"value\": 2433}, \"2434\": {\"frequency\": 1, \"value\": 2434}, \"2435\": {\"frequency\": 1, \"value\": 2435}, \"2436\": {\"frequency\": 1, \"value\": 2436}, \"2437\": {\"frequency\": 1, \"value\": 2437}, \"2438\": {\"frequency\": 1, \"value\": 2438}, \"2439\": {\"frequency\": 1, \"value\": 2439}, \"2440\": {\"frequency\": 1, \"value\": 2440}, \"2441\": {\"frequency\": 1, \"value\": 2441}, \"2442\": {\"frequency\": 1, \"value\": 2442}, \"2443\": {\"frequency\": 1, \"value\": 2443}, \"2444\": {\"frequency\": 1, \"value\": 2444}, \"2445\": {\"frequency\": 1, \"value\": 2445}, \"2446\": {\"frequency\": 1, \"value\": 2446}, \"2447\": {\"frequency\": 1, \"value\": 2447}, \"2448\": {\"frequency\": 1, \"value\": 2448}, \"2449\": {\"frequency\": 1, \"value\": 2449}, \"2450\": {\"frequency\": 1, \"value\": 2450}, \"2451\": {\"frequency\": 1, \"value\": 2451}, \"2452\": {\"frequency\": 1, \"value\": 2452}, \"2453\": {\"frequency\": 1, \"value\": 2453}, \"2454\": {\"frequency\": 1, \"value\": 2454}, \"2455\": {\"frequency\": 1, \"value\": 2455}, \"2456\": {\"frequency\": 1, \"value\": 2456}, \"2457\": {\"frequency\": 1, \"value\": 2457}, \"2458\": {\"frequency\": 1, \"value\": 2458}, \"2459\": {\"frequency\": 1, \"value\": 2459}, \"2460\": {\"frequency\": 1, \"value\": 2460}, \"2461\": {\"frequency\": 1, \"value\": 2461}, \"2462\": {\"frequency\": 1, \"value\": 2462}, \"2463\": {\"frequency\": 1, \"value\": 2463}, \"2464\": {\"frequency\": 1, \"value\": 2464}, \"2465\": {\"frequency\": 1, \"value\": 2465}, \"2466\": {\"frequency\": 1, \"value\": 2466}, \"2467\": {\"frequency\": 1, \"value\": 2467}, \"2468\": {\"frequency\": 1, \"value\": 2468}, \"2469\": {\"frequency\": 1, \"value\": 2469}, \"2470\": {\"frequency\": 1, \"value\": 2470}, \"2471\": {\"frequency\": 1, \"value\": 2471}, \"2472\": {\"frequency\": 1, \"value\": 2472}, \"2473\": {\"frequency\": 1, \"value\": 2473}, \"2474\": {\"frequency\": 1, \"value\": 2474}, \"2475\": {\"frequency\": 1, \"value\": 2475}, \"2476\": {\"frequency\": 1, \"value\": 2476}, \"2477\": {\"frequency\": 1, \"value\": 2477}, \"2478\": {\"frequency\": 1, \"value\": 2478}, \"2479\": {\"frequency\": 1, \"value\": 2479}, \"2480\": {\"frequency\": 1, \"value\": 2480}, \"2481\": {\"frequency\": 1, \"value\": 2481}, \"2482\": {\"frequency\": 1, \"value\": 2482}, \"2483\": {\"frequency\": 1, \"value\": 2483}, \"2484\": {\"frequency\": 1, \"value\": 2484}, \"2485\": {\"frequency\": 1, \"value\": 2485}, \"2486\": {\"frequency\": 1, \"value\": 2486}, \"2487\": {\"frequency\": 1, \"value\": 2487}, \"2488\": {\"frequency\": 1, \"value\": 2488}, \"2489\": {\"frequency\": 1, \"value\": 2489}, \"2490\": {\"frequency\": 1, \"value\": 2490}, \"2491\": {\"frequency\": 1, \"value\": 2491}, \"2492\": {\"frequency\": 1, \"value\": 2492}, \"2493\": {\"frequency\": 1, \"value\": 2493}, \"2494\": {\"frequency\": 1, \"value\": 2494}, \"2495\": {\"frequency\": 1, \"value\": 2495}, \"2496\": {\"frequency\": 1, \"value\": 2496}, \"2497\": {\"frequency\": 1, \"value\": 2497}, \"2498\": {\"frequency\": 1, \"value\": 2498}, \"2499\": {\"frequency\": 1, \"value\": 2499}, \"2500\": {\"frequency\": 1, \"value\": 2500}, \"2501\": {\"frequency\": 1, \"value\": 2501}, \"2502\": {\"frequency\": 1, \"value\": 2502}, \"2503\": {\"frequency\": 1, \"value\": 2503}, \"2504\": {\"frequency\": 1, \"value\": 2504}, \"2505\": {\"frequency\": 1, \"value\": 2505}, \"2506\": {\"frequency\": 1, \"value\": 2506}, \"2507\": {\"frequency\": 1, \"value\": 2507}, \"2508\": {\"frequency\": 1, \"value\": 2508}, \"2509\": {\"frequency\": 1, \"value\": 2509}, \"2510\": {\"frequency\": 1, \"value\": 2510}, \"2511\": {\"frequency\": 1, \"value\": 2511}, \"2512\": {\"frequency\": 1, \"value\": 2512}, \"2513\": {\"frequency\": 1, \"value\": 2513}, \"2514\": {\"frequency\": 1, \"value\": 2514}, \"2515\": {\"frequency\": 1, \"value\": 2515}, \"2516\": {\"frequency\": 1, \"value\": 2516}, \"2517\": {\"frequency\": 1, \"value\": 2517}, \"2518\": {\"frequency\": 1, \"value\": 2518}, \"2519\": {\"frequency\": 1, \"value\": 2519}, \"2520\": {\"frequency\": 1, \"value\": 2520}, \"2521\": {\"frequency\": 1, \"value\": 2521}, \"2522\": {\"frequency\": 1, \"value\": 2522}, \"2523\": {\"frequency\": 1, \"value\": 2523}, \"2524\": {\"frequency\": 1, \"value\": 2524}, \"2525\": {\"frequency\": 1, \"value\": 2525}, \"2526\": {\"frequency\": 1, \"value\": 2526}, \"2527\": {\"frequency\": 1, \"value\": 2527}, \"2528\": {\"frequency\": 1, \"value\": 2528}, \"2529\": {\"frequency\": 1, \"value\": 2529}, \"2530\": {\"frequency\": 1, \"value\": 2530}, \"2531\": {\"frequency\": 1, \"value\": 2531}, \"2532\": {\"frequency\": 1, \"value\": 2532}, \"2533\": {\"frequency\": 1, \"value\": 2533}, \"2534\": {\"frequency\": 1, \"value\": 2534}, \"2535\": {\"frequency\": 1, \"value\": 2535}, \"2536\": {\"frequency\": 1, \"value\": 2536}, \"2537\": {\"frequency\": 1, \"value\": 2537}, \"2538\": {\"frequency\": 1, \"value\": 2538}, \"2539\": {\"frequency\": 1, \"value\": 2539}, \"2540\": {\"frequency\": 1, \"value\": 2540}, \"2541\": {\"frequency\": 1, \"value\": 2541}, \"2542\": {\"frequency\": 1, \"value\": 2542}, \"2543\": {\"frequency\": 1, \"value\": 2543}, \"2544\": {\"frequency\": 1, \"value\": 2544}, \"2545\": {\"frequency\": 1, \"value\": 2545}, \"2546\": {\"frequency\": 1, \"value\": 2546}, \"2547\": {\"frequency\": 1, \"value\": 2547}, \"2548\": {\"frequency\": 1, \"value\": 2548}, \"2549\": {\"frequency\": 1, \"value\": 2549}, \"2550\": {\"frequency\": 1, \"value\": 2550}, \"2551\": {\"frequency\": 1, \"value\": 2551}, \"2552\": {\"frequency\": 1, \"value\": 2552}, \"2553\": {\"frequency\": 1, \"value\": 2553}, \"2554\": {\"frequency\": 1, \"value\": 2554}, \"2555\": {\"frequency\": 1, \"value\": 2555}, \"2556\": {\"frequency\": 1, \"value\": 2556}, \"2557\": {\"frequency\": 1, \"value\": 2557}, \"2558\": {\"frequency\": 1, \"value\": 2558}, \"2559\": {\"frequency\": 1, \"value\": 2559}, \"2560\": {\"frequency\": 1, \"value\": 2560}, \"2561\": {\"frequency\": 1, \"value\": 2561}, \"2562\": {\"frequency\": 1, \"value\": 2562}, \"2563\": {\"frequency\": 1, \"value\": 2563}, \"2564\": {\"frequency\": 1, \"value\": 2564}, \"2565\": {\"frequency\": 1, \"value\": 2565}, \"2566\": {\"frequency\": 1, \"value\": 2566}, \"2567\": {\"frequency\": 1, \"value\": 2567}, \"2568\": {\"frequency\": 1, \"value\": 2568}, \"2569\": {\"frequency\": 1, \"value\": 2569}, \"2570\": {\"frequency\": 1, \"value\": 2570}, \"2571\": {\"frequency\": 1, \"value\": 2571}, \"2572\": {\"frequency\": 1, \"value\": 2572}, \"2573\": {\"frequency\": 1, \"value\": 2573}, \"2574\": {\"frequency\": 1, \"value\": 2574}, \"2575\": {\"frequency\": 1, \"value\": 2575}, \"2576\": {\"frequency\": 1, \"value\": 2576}, \"2577\": {\"frequency\": 1, \"value\": 2577}, \"2578\": {\"frequency\": 1, \"value\": 2578}, \"2579\": {\"frequency\": 1, \"value\": 2579}, \"2580\": {\"frequency\": 1, \"value\": 2580}, \"2581\": {\"frequency\": 1, \"value\": 2581}, \"2582\": {\"frequency\": 1, \"value\": 2582}, \"2583\": {\"frequency\": 1, \"value\": 2583}, \"2584\": {\"frequency\": 1, \"value\": 2584}, \"2585\": {\"frequency\": 1, \"value\": 2585}, \"2586\": {\"frequency\": 1, \"value\": 2586}, \"2587\": {\"frequency\": 1, \"value\": 2587}, \"2588\": {\"frequency\": 1, \"value\": 2588}, \"2589\": {\"frequency\": 1, \"value\": 2589}, \"2590\": {\"frequency\": 1, \"value\": 2590}, \"2591\": {\"frequency\": 1, \"value\": 2591}, \"2592\": {\"frequency\": 1, \"value\": 2592}, \"2593\": {\"frequency\": 1, \"value\": 2593}, \"2594\": {\"frequency\": 1, \"value\": 2594}, \"2595\": {\"frequency\": 1, \"value\": 2595}, \"2596\": {\"frequency\": 1, \"value\": 2596}, \"2597\": {\"frequency\": 1, \"value\": 2597}, \"2598\": {\"frequency\": 1, \"value\": 2598}, \"2599\": {\"frequency\": 1, \"value\": 2599}, \"2600\": {\"frequency\": 1, \"value\": 2600}, \"2601\": {\"frequency\": 1, \"value\": 2601}, \"2602\": {\"frequency\": 1, \"value\": 2602}, \"2603\": {\"frequency\": 1, \"value\": 2603}, \"2604\": {\"frequency\": 1, \"value\": 2604}, \"2605\": {\"frequency\": 1, \"value\": 2605}, \"2606\": {\"frequency\": 1, \"value\": 2606}, \"2607\": {\"frequency\": 1, \"value\": 2607}, \"2608\": {\"frequency\": 1, \"value\": 2608}, \"2609\": {\"frequency\": 1, \"value\": 2609}, \"2610\": {\"frequency\": 1, \"value\": 2610}, \"2611\": {\"frequency\": 1, \"value\": 2611}, \"2612\": {\"frequency\": 1, \"value\": 2612}, \"2613\": {\"frequency\": 1, \"value\": 2613}, \"2614\": {\"frequency\": 1, \"value\": 2614}, \"2615\": {\"frequency\": 1, \"value\": 2615}, \"2616\": {\"frequency\": 1, \"value\": 2616}, \"2617\": {\"frequency\": 1, \"value\": 2617}, \"2618\": {\"frequency\": 1, \"value\": 2618}, \"2619\": {\"frequency\": 1, \"value\": 2619}, \"2620\": {\"frequency\": 1, \"value\": 2620}, \"2621\": {\"frequency\": 1, \"value\": 2621}, \"2622\": {\"frequency\": 1, \"value\": 2622}, \"2623\": {\"frequency\": 1, \"value\": 2623}, \"2624\": {\"frequency\": 1, \"value\": 2624}, \"2625\": {\"frequency\": 1, \"value\": 2625}, \"2626\": {\"frequency\": 1, \"value\": 2626}, \"2627\": {\"frequency\": 1, \"value\": 2627}, \"2628\": {\"frequency\": 1, \"value\": 2628}, \"2629\": {\"frequency\": 1, \"value\": 2629}, \"2630\": {\"frequency\": 1, \"value\": 2630}, \"2631\": {\"frequency\": 1, \"value\": 2631}, \"2632\": {\"frequency\": 1, \"value\": 2632}, \"2633\": {\"frequency\": 1, \"value\": 2633}, \"2634\": {\"frequency\": 1, \"value\": 2634}, \"2635\": {\"frequency\": 1, \"value\": 2635}, \"2636\": {\"frequency\": 1, \"value\": 2636}, \"2637\": {\"frequency\": 1, \"value\": 2637}, \"2638\": {\"frequency\": 1, \"value\": 2638}, \"2639\": {\"frequency\": 1, \"value\": 2639}, \"2640\": {\"frequency\": 1, \"value\": 2640}, \"2641\": {\"frequency\": 1, \"value\": 2641}, \"2642\": {\"frequency\": 1, \"value\": 2642}, \"2643\": {\"frequency\": 1, \"value\": 2643}, \"2644\": {\"frequency\": 1, \"value\": 2644}, \"2645\": {\"frequency\": 1, \"value\": 2645}, \"2646\": {\"frequency\": 1, \"value\": 2646}, \"2647\": {\"frequency\": 1, \"value\": 2647}, \"2648\": {\"frequency\": 1, \"value\": 2648}, \"2649\": {\"frequency\": 1, \"value\": 2649}, \"2650\": {\"frequency\": 1, \"value\": 2650}, \"2651\": {\"frequency\": 1, \"value\": 2651}, \"2652\": {\"frequency\": 1, \"value\": 2652}, \"2653\": {\"frequency\": 1, \"value\": 2653}, \"2654\": {\"frequency\": 1, \"value\": 2654}, \"2655\": {\"frequency\": 1, \"value\": 2655}, \"2656\": {\"frequency\": 1, \"value\": 2656}, \"2657\": {\"frequency\": 1, \"value\": 2657}, \"2658\": {\"frequency\": 1, \"value\": 2658}, \"2659\": {\"frequency\": 1, \"value\": 2659}, \"2660\": {\"frequency\": 1, \"value\": 2660}, \"2661\": {\"frequency\": 1, \"value\": 2661}, \"2662\": {\"frequency\": 1, \"value\": 2662}, \"2663\": {\"frequency\": 1, \"value\": 2663}, \"2664\": {\"frequency\": 1, \"value\": 2664}, \"2665\": {\"frequency\": 1, \"value\": 2665}, \"2666\": {\"frequency\": 1, \"value\": 2666}, \"2667\": {\"frequency\": 1, \"value\": 2667}, \"2668\": {\"frequency\": 1, \"value\": 2668}, \"2669\": {\"frequency\": 1, \"value\": 2669}, \"2670\": {\"frequency\": 1, \"value\": 2670}, \"2671\": {\"frequency\": 1, \"value\": 2671}, \"2672\": {\"frequency\": 1, \"value\": 2672}, \"2673\": {\"frequency\": 1, \"value\": 2673}, \"2674\": {\"frequency\": 1, \"value\": 2674}, \"2675\": {\"frequency\": 1, \"value\": 2675}, \"2676\": {\"frequency\": 1, \"value\": 2676}, \"2677\": {\"frequency\": 1, \"value\": 2677}, \"2678\": {\"frequency\": 1, \"value\": 2678}, \"2679\": {\"frequency\": 1, \"value\": 2679}, \"2680\": {\"frequency\": 1, \"value\": 2680}, \"2681\": {\"frequency\": 1, \"value\": 2681}, \"2682\": {\"frequency\": 1, \"value\": 2682}, \"2683\": {\"frequency\": 1, \"value\": 2683}, \"2684\": {\"frequency\": 1, \"value\": 2684}, \"2685\": {\"frequency\": 1, \"value\": 2685}, \"2686\": {\"frequency\": 1, \"value\": 2686}, \"2687\": {\"frequency\": 1, \"value\": 2687}, \"2688\": {\"frequency\": 1, \"value\": 2688}, \"2689\": {\"frequency\": 1, \"value\": 2689}, \"2690\": {\"frequency\": 1, \"value\": 2690}, \"2691\": {\"frequency\": 1, \"value\": 2691}, \"2692\": {\"frequency\": 1, \"value\": 2692}, \"2693\": {\"frequency\": 1, \"value\": 2693}, \"2694\": {\"frequency\": 1, \"value\": 2694}, \"2695\": {\"frequency\": 1, \"value\": 2695}, \"2696\": {\"frequency\": 1, \"value\": 2696}, \"2697\": {\"frequency\": 1, \"value\": 2697}, \"2698\": {\"frequency\": 1, \"value\": 2698}, \"2699\": {\"frequency\": 1, \"value\": 2699}, \"2700\": {\"frequency\": 1, \"value\": 2700}, \"2701\": {\"frequency\": 1, \"value\": 2701}, \"2702\": {\"frequency\": 1, \"value\": 2702}, \"2703\": {\"frequency\": 1, \"value\": 2703}, \"2704\": {\"frequency\": 1, \"value\": 2704}, \"2705\": {\"frequency\": 1, \"value\": 2705}, \"2706\": {\"frequency\": 1, \"value\": 2706}, \"2707\": {\"frequency\": 1, \"value\": 2707}, \"2708\": {\"frequency\": 1, \"value\": 2708}, \"2709\": {\"frequency\": 1, \"value\": 2709}, \"2710\": {\"frequency\": 1, \"value\": 2710}, \"2711\": {\"frequency\": 1, \"value\": 2711}, \"2712\": {\"frequency\": 1, \"value\": 2712}, \"2713\": {\"frequency\": 1, \"value\": 2713}, \"2714\": {\"frequency\": 1, \"value\": 2714}, \"2715\": {\"frequency\": 1, \"value\": 2715}, \"2716\": {\"frequency\": 1, \"value\": 2716}, \"2717\": {\"frequency\": 1, \"value\": 2717}, \"2718\": {\"frequency\": 1, \"value\": 2718}, \"2719\": {\"frequency\": 1, \"value\": 2719}, \"2720\": {\"frequency\": 1, \"value\": 2720}, \"2721\": {\"frequency\": 1, \"value\": 2721}, \"2722\": {\"frequency\": 1, \"value\": 2722}, \"2723\": {\"frequency\": 1, \"value\": 2723}, \"2724\": {\"frequency\": 1, \"value\": 2724}, \"2725\": {\"frequency\": 1, \"value\": 2725}, \"2726\": {\"frequency\": 1, \"value\": 2726}, \"2727\": {\"frequency\": 1, \"value\": 2727}, \"2728\": {\"frequency\": 1, \"value\": 2728}, \"2729\": {\"frequency\": 1, \"value\": 2729}, \"2730\": {\"frequency\": 1, \"value\": 2730}, \"2731\": {\"frequency\": 1, \"value\": 2731}, \"2732\": {\"frequency\": 1, \"value\": 2732}, \"2733\": {\"frequency\": 1, \"value\": 2733}, \"2734\": {\"frequency\": 1, \"value\": 2734}, \"2735\": {\"frequency\": 1, \"value\": 2735}, \"2736\": {\"frequency\": 1, \"value\": 2736}, \"2737\": {\"frequency\": 1, \"value\": 2737}, \"2738\": {\"frequency\": 1, \"value\": 2738}, \"2739\": {\"frequency\": 1, \"value\": 2739}, \"2740\": {\"frequency\": 1, \"value\": 2740}, \"2741\": {\"frequency\": 1, \"value\": 2741}, \"2742\": {\"frequency\": 1, \"value\": 2742}, \"2743\": {\"frequency\": 1, \"value\": 2743}, \"2744\": {\"frequency\": 1, \"value\": 2744}, \"2745\": {\"frequency\": 1, \"value\": 2745}, \"2746\": {\"frequency\": 1, \"value\": 2746}, \"2747\": {\"frequency\": 1, \"value\": 2747}, \"2748\": {\"frequency\": 1, \"value\": 2748}, \"2749\": {\"frequency\": 1, \"value\": 2749}, \"2750\": {\"frequency\": 1, \"value\": 2750}, \"2751\": {\"frequency\": 1, \"value\": 2751}, \"2752\": {\"frequency\": 1, \"value\": 2752}, \"2753\": {\"frequency\": 1, \"value\": 2753}, \"2754\": {\"frequency\": 1, \"value\": 2754}, \"2755\": {\"frequency\": 1, \"value\": 2755}, \"2756\": {\"frequency\": 1, \"value\": 2756}, \"2757\": {\"frequency\": 1, \"value\": 2757}, \"2758\": {\"frequency\": 1, \"value\": 2758}, \"2759\": {\"frequency\": 1, \"value\": 2759}, \"2760\": {\"frequency\": 1, \"value\": 2760}, \"2761\": {\"frequency\": 1, \"value\": 2761}, \"2762\": {\"frequency\": 1, \"value\": 2762}, \"2763\": {\"frequency\": 1, \"value\": 2763}, \"2764\": {\"frequency\": 1, \"value\": 2764}, \"2765\": {\"frequency\": 1, \"value\": 2765}, \"2766\": {\"frequency\": 1, \"value\": 2766}, \"2767\": {\"frequency\": 1, \"value\": 2767}, \"2768\": {\"frequency\": 1, \"value\": 2768}, \"2769\": {\"frequency\": 1, \"value\": 2769}, \"2770\": {\"frequency\": 1, \"value\": 2770}, \"2771\": {\"frequency\": 1, \"value\": 2771}, \"2772\": {\"frequency\": 1, \"value\": 2772}, \"2773\": {\"frequency\": 1, \"value\": 2773}, \"2774\": {\"frequency\": 1, \"value\": 2774}, \"2775\": {\"frequency\": 1, \"value\": 2775}, \"2776\": {\"frequency\": 1, \"value\": 2776}, \"2777\": {\"frequency\": 1, \"value\": 2777}, \"2778\": {\"frequency\": 1, \"value\": 2778}, \"2779\": {\"frequency\": 1, \"value\": 2779}, \"2780\": {\"frequency\": 1, \"value\": 2780}, \"2781\": {\"frequency\": 1, \"value\": 2781}, \"2782\": {\"frequency\": 1, \"value\": 2782}, \"2783\": {\"frequency\": 1, \"value\": 2783}, \"2784\": {\"frequency\": 1, \"value\": 2784}, \"2785\": {\"frequency\": 1, \"value\": 2785}, \"2786\": {\"frequency\": 1, \"value\": 2786}, \"2787\": {\"frequency\": 1, \"value\": 2787}, \"2788\": {\"frequency\": 1, \"value\": 2788}, \"2789\": {\"frequency\": 1, \"value\": 2789}, \"2790\": {\"frequency\": 1, \"value\": 2790}, \"2791\": {\"frequency\": 1, \"value\": 2791}, \"2792\": {\"frequency\": 1, \"value\": 2792}, \"2793\": {\"frequency\": 1, \"value\": 2793}, \"2794\": {\"frequency\": 1, \"value\": 2794}, \"2795\": {\"frequency\": 1, \"value\": 2795}, \"2796\": {\"frequency\": 1, \"value\": 2796}, \"2797\": {\"frequency\": 1, \"value\": 2797}, \"2798\": {\"frequency\": 1, \"value\": 2798}, \"2799\": {\"frequency\": 1, \"value\": 2799}, \"2800\": {\"frequency\": 1, \"value\": 2800}, \"2801\": {\"frequency\": 1, \"value\": 2801}, \"2802\": {\"frequency\": 1, \"value\": 2802}, \"2803\": {\"frequency\": 1, \"value\": 2803}, \"2804\": {\"frequency\": 1, \"value\": 2804}, \"2805\": {\"frequency\": 1, \"value\": 2805}, \"2806\": {\"frequency\": 1, \"value\": 2806}, \"2807\": {\"frequency\": 1, \"value\": 2807}, \"2808\": {\"frequency\": 1, \"value\": 2808}, \"2809\": {\"frequency\": 1, \"value\": 2809}, \"2810\": {\"frequency\": 1, \"value\": 2810}, \"2811\": {\"frequency\": 1, \"value\": 2811}, \"2812\": {\"frequency\": 1, \"value\": 2812}, \"2813\": {\"frequency\": 1, \"value\": 2813}, \"2814\": {\"frequency\": 1, \"value\": 2814}, \"2815\": {\"frequency\": 1, \"value\": 2815}, \"2816\": {\"frequency\": 1, \"value\": 2816}, \"2817\": {\"frequency\": 1, \"value\": 2817}, \"2818\": {\"frequency\": 1, \"value\": 2818}, \"2819\": {\"frequency\": 1, \"value\": 2819}, \"2820\": {\"frequency\": 1, \"value\": 2820}, \"2821\": {\"frequency\": 1, \"value\": 2821}, \"2822\": {\"frequency\": 1, \"value\": 2822}, \"2823\": {\"frequency\": 1, \"value\": 2823}, \"2824\": {\"frequency\": 1, \"value\": 2824}, \"2825\": {\"frequency\": 1, \"value\": 2825}, \"2826\": {\"frequency\": 1, \"value\": 2826}, \"2827\": {\"frequency\": 1, \"value\": 2827}, \"2828\": {\"frequency\": 1, \"value\": 2828}, \"2829\": {\"frequency\": 1, \"value\": 2829}, \"2830\": {\"frequency\": 1, \"value\": 2830}, \"2831\": {\"frequency\": 1, \"value\": 2831}, \"2832\": {\"frequency\": 1, \"value\": 2832}, \"2833\": {\"frequency\": 1, \"value\": 2833}, \"2834\": {\"frequency\": 1, \"value\": 2834}, \"2835\": {\"frequency\": 1, \"value\": 2835}, \"2836\": {\"frequency\": 1, \"value\": 2836}, \"2837\": {\"frequency\": 1, \"value\": 2837}, \"2838\": {\"frequency\": 1, \"value\": 2838}, \"2839\": {\"frequency\": 1, \"value\": 2839}, \"2840\": {\"frequency\": 1, \"value\": 2840}, \"2841\": {\"frequency\": 1, \"value\": 2841}, \"2842\": {\"frequency\": 1, \"value\": 2842}, \"2843\": {\"frequency\": 1, \"value\": 2843}, \"2844\": {\"frequency\": 1, \"value\": 2844}, \"2845\": {\"frequency\": 1, \"value\": 2845}, \"2846\": {\"frequency\": 1, \"value\": 2846}, \"2847\": {\"frequency\": 1, \"value\": 2847}, \"2848\": {\"frequency\": 1, \"value\": 2848}, \"2849\": {\"frequency\": 1, \"value\": 2849}, \"2850\": {\"frequency\": 1, \"value\": 2850}, \"2851\": {\"frequency\": 1, \"value\": 2851}, \"2852\": {\"frequency\": 1, \"value\": 2852}, \"2853\": {\"frequency\": 1, \"value\": 2853}, \"2854\": {\"frequency\": 1, \"value\": 2854}, \"2855\": {\"frequency\": 1, \"value\": 2855}, \"2856\": {\"frequency\": 1, \"value\": 2856}, \"2857\": {\"frequency\": 1, \"value\": 2857}, \"2858\": {\"frequency\": 1, \"value\": 2858}, \"2859\": {\"frequency\": 1, \"value\": 2859}, \"2860\": {\"frequency\": 1, \"value\": 2860}, \"2861\": {\"frequency\": 1, \"value\": 2861}, \"2862\": {\"frequency\": 1, \"value\": 2862}, \"2863\": {\"frequency\": 1, \"value\": 2863}, \"2864\": {\"frequency\": 1, \"value\": 2864}, \"2865\": {\"frequency\": 1, \"value\": 2865}, \"2866\": {\"frequency\": 1, \"value\": 2866}, \"2867\": {\"frequency\": 1, \"value\": 2867}, \"2868\": {\"frequency\": 1, \"value\": 2868}, \"2869\": {\"frequency\": 1, \"value\": 2869}, \"2870\": {\"frequency\": 1, \"value\": 2870}, \"2871\": {\"frequency\": 1, \"value\": 2871}, \"2872\": {\"frequency\": 1, \"value\": 2872}, \"2873\": {\"frequency\": 1, \"value\": 2873}, \"2874\": {\"frequency\": 1, \"value\": 2874}, \"2875\": {\"frequency\": 1, \"value\": 2875}, \"2876\": {\"frequency\": 1, \"value\": 2876}, \"2877\": {\"frequency\": 1, \"value\": 2877}, \"2878\": {\"frequency\": 1, \"value\": 2878}, \"2879\": {\"frequency\": 1, \"value\": 2879}, \"2880\": {\"frequency\": 1, \"value\": 2880}, \"2881\": {\"frequency\": 1, \"value\": 2881}, \"2882\": {\"frequency\": 1, \"value\": 2882}, \"2883\": {\"frequency\": 1, \"value\": 2883}, \"2884\": {\"frequency\": 1, \"value\": 2884}, \"2885\": {\"frequency\": 1, \"value\": 2885}, \"2886\": {\"frequency\": 1, \"value\": 2886}, \"2887\": {\"frequency\": 1, \"value\": 2887}, \"2888\": {\"frequency\": 1, \"value\": 2888}, \"2889\": {\"frequency\": 1, \"value\": 2889}, \"2890\": {\"frequency\": 1, \"value\": 2890}, \"2891\": {\"frequency\": 1, \"value\": 2891}, \"2892\": {\"frequency\": 1, \"value\": 2892}, \"2893\": {\"frequency\": 1, \"value\": 2893}, \"2894\": {\"frequency\": 1, \"value\": 2894}, \"2895\": {\"frequency\": 1, \"value\": 2895}, \"2896\": {\"frequency\": 1, \"value\": 2896}, \"2897\": {\"frequency\": 1, \"value\": 2897}, \"2898\": {\"frequency\": 1, \"value\": 2898}, \"2899\": {\"frequency\": 1, \"value\": 2899}, \"2900\": {\"frequency\": 1, \"value\": 2900}, \"2901\": {\"frequency\": 1, \"value\": 2901}, \"2902\": {\"frequency\": 1, \"value\": 2902}, \"2903\": {\"frequency\": 1, \"value\": 2903}, \"2904\": {\"frequency\": 1, \"value\": 2904}, \"2905\": {\"frequency\": 1, \"value\": 2905}, \"2906\": {\"frequency\": 1, \"value\": 2906}, \"2907\": {\"frequency\": 1, \"value\": 2907}, \"2908\": {\"frequency\": 1, \"value\": 2908}, \"2909\": {\"frequency\": 1, \"value\": 2909}, \"2910\": {\"frequency\": 1, \"value\": 2910}, \"2911\": {\"frequency\": 1, \"value\": 2911}, \"2912\": {\"frequency\": 1, \"value\": 2912}, \"2913\": {\"frequency\": 1, \"value\": 2913}, \"2914\": {\"frequency\": 1, \"value\": 2914}, \"2915\": {\"frequency\": 1, \"value\": 2915}, \"2916\": {\"frequency\": 1, \"value\": 2916}, \"2917\": {\"frequency\": 1, \"value\": 2917}, \"2918\": {\"frequency\": 1, \"value\": 2918}, \"2919\": {\"frequency\": 1, \"value\": 2919}, \"2920\": {\"frequency\": 1, \"value\": 2920}, \"2921\": {\"frequency\": 1, \"value\": 2921}, \"2922\": {\"frequency\": 1, \"value\": 2922}, \"2923\": {\"frequency\": 1, \"value\": 2923}, \"2924\": {\"frequency\": 1, \"value\": 2924}, \"2925\": {\"frequency\": 1, \"value\": 2925}, \"2926\": {\"frequency\": 1, \"value\": 2926}, \"2927\": {\"frequency\": 1, \"value\": 2927}, \"2928\": {\"frequency\": 1, \"value\": 2928}, \"2929\": {\"frequency\": 1, \"value\": 2929}, \"2930\": {\"frequency\": 1, \"value\": 2930}, \"2931\": {\"frequency\": 1, \"value\": 2931}, \"2932\": {\"frequency\": 1, \"value\": 2932}, \"2933\": {\"frequency\": 1, \"value\": 2933}, \"2934\": {\"frequency\": 1, \"value\": 2934}, \"2935\": {\"frequency\": 1, \"value\": 2935}, \"2936\": {\"frequency\": 1, \"value\": 2936}, \"2937\": {\"frequency\": 1, \"value\": 2937}, \"2938\": {\"frequency\": 1, \"value\": 2938}, \"2939\": {\"frequency\": 1, \"value\": 2939}, \"2940\": {\"frequency\": 1, \"value\": 2940}, \"2941\": {\"frequency\": 1, \"value\": 2941}, \"2942\": {\"frequency\": 1, \"value\": 2942}, \"2943\": {\"frequency\": 1, \"value\": 2943}, \"2944\": {\"frequency\": 1, \"value\": 2944}, \"2945\": {\"frequency\": 1, \"value\": 2945}, \"2946\": {\"frequency\": 1, \"value\": 2946}, \"2947\": {\"frequency\": 1, \"value\": 2947}, \"2948\": {\"frequency\": 1, \"value\": 2948}, \"2949\": {\"frequency\": 1, \"value\": 2949}, \"2950\": {\"frequency\": 1, \"value\": 2950}, \"2951\": {\"frequency\": 1, \"value\": 2951}, \"2952\": {\"frequency\": 1, \"value\": 2952}, \"2953\": {\"frequency\": 1, \"value\": 2953}, \"2954\": {\"frequency\": 1, \"value\": 2954}, \"2955\": {\"frequency\": 1, \"value\": 2955}, \"2956\": {\"frequency\": 1, \"value\": 2956}, \"2957\": {\"frequency\": 1, \"value\": 2957}, \"2958\": {\"frequency\": 1, \"value\": 2958}, \"2959\": {\"frequency\": 1, \"value\": 2959}, \"2960\": {\"frequency\": 1, \"value\": 2960}, \"2961\": {\"frequency\": 1, \"value\": 2961}, \"2962\": {\"frequency\": 1, \"value\": 2962}, \"2963\": {\"frequency\": 1, \"value\": 2963}, \"2964\": {\"frequency\": 1, \"value\": 2964}, \"2965\": {\"frequency\": 1, \"value\": 2965}, \"2966\": {\"frequency\": 1, \"value\": 2966}, \"2967\": {\"frequency\": 1, \"value\": 2967}, \"2968\": {\"frequency\": 1, \"value\": 2968}, \"2969\": {\"frequency\": 1, \"value\": 2969}, \"2970\": {\"frequency\": 1, \"value\": 2970}, \"2971\": {\"frequency\": 1, \"value\": 2971}, \"2972\": {\"frequency\": 1, \"value\": 2972}, \"2973\": {\"frequency\": 1, \"value\": 2973}, \"2974\": {\"frequency\": 1, \"value\": 2974}, \"2975\": {\"frequency\": 1, \"value\": 2975}, \"2976\": {\"frequency\": 1, \"value\": 2976}, \"2977\": {\"frequency\": 1, \"value\": 2977}, \"2978\": {\"frequency\": 1, \"value\": 2978}, \"2979\": {\"frequency\": 1, \"value\": 2979}, \"2980\": {\"frequency\": 1, \"value\": 2980}, \"2981\": {\"frequency\": 1, \"value\": 2981}, \"2982\": {\"frequency\": 1, \"value\": 2982}, \"2983\": {\"frequency\": 1, \"value\": 2983}, \"2984\": {\"frequency\": 1, \"value\": 2984}, \"2985\": {\"frequency\": 1, \"value\": 2985}, \"2986\": {\"frequency\": 1, \"value\": 2986}, \"2987\": {\"frequency\": 1, \"value\": 2987}, \"2988\": {\"frequency\": 1, \"value\": 2988}, \"2989\": {\"frequency\": 1, \"value\": 2989}, \"2990\": {\"frequency\": 1, \"value\": 2990}, \"2991\": {\"frequency\": 1, \"value\": 2991}, \"2992\": {\"frequency\": 1, \"value\": 2992}, \"2993\": {\"frequency\": 1, \"value\": 2993}, \"2994\": {\"frequency\": 1, \"value\": 2994}, \"2995\": {\"frequency\": 1, \"value\": 2995}, \"2996\": {\"frequency\": 1, \"value\": 2996}, \"2997\": {\"frequency\": 1, \"value\": 2997}, \"2998\": {\"frequency\": 1, \"value\": 2998}, \"2999\": {\"frequency\": 1, \"value\": 2999}, \"3000\": {\"frequency\": 1, \"value\": 3000}, \"3001\": {\"frequency\": 1, \"value\": 3001}, \"3002\": {\"frequency\": 1, \"value\": 3002}, \"3003\": {\"frequency\": 1, \"value\": 3003}, \"3004\": {\"frequency\": 1, \"value\": 3004}, \"3005\": {\"frequency\": 1, \"value\": 3005}, \"3006\": {\"frequency\": 1, \"value\": 3006}, \"3007\": {\"frequency\": 1, \"value\": 3007}, \"3008\": {\"frequency\": 1, \"value\": 3008}, \"3009\": {\"frequency\": 1, \"value\": 3009}, \"3010\": {\"frequency\": 1, \"value\": 3010}, \"3011\": {\"frequency\": 1, \"value\": 3011}, \"3012\": {\"frequency\": 1, \"value\": 3012}, \"3013\": {\"frequency\": 1, \"value\": 3013}, \"3014\": {\"frequency\": 1, \"value\": 3014}, \"3015\": {\"frequency\": 1, \"value\": 3015}, \"3016\": {\"frequency\": 1, \"value\": 3016}, \"3017\": {\"frequency\": 1, \"value\": 3017}, \"3018\": {\"frequency\": 1, \"value\": 3018}, \"3019\": {\"frequency\": 1, \"value\": 3019}, \"3020\": {\"frequency\": 1, \"value\": 3020}, \"3021\": {\"frequency\": 1, \"value\": 3021}, \"3022\": {\"frequency\": 1, \"value\": 3022}, \"3023\": {\"frequency\": 1, \"value\": 3023}, \"3024\": {\"frequency\": 1, \"value\": 3024}, \"3025\": {\"frequency\": 1, \"value\": 3025}, \"3026\": {\"frequency\": 1, \"value\": 3026}, \"3027\": {\"frequency\": 1, \"value\": 3027}, \"3028\": {\"frequency\": 1, \"value\": 3028}, \"3029\": {\"frequency\": 1, \"value\": 3029}, \"3030\": {\"frequency\": 1, \"value\": 3030}, \"3031\": {\"frequency\": 1, \"value\": 3031}, \"3032\": {\"frequency\": 1, \"value\": 3032}, \"3033\": {\"frequency\": 1, \"value\": 3033}, \"3034\": {\"frequency\": 1, \"value\": 3034}, \"3035\": {\"frequency\": 1, \"value\": 3035}, \"3036\": {\"frequency\": 1, \"value\": 3036}, \"3037\": {\"frequency\": 1, \"value\": 3037}, \"3038\": {\"frequency\": 1, \"value\": 3038}, \"3039\": {\"frequency\": 1, \"value\": 3039}, \"3040\": {\"frequency\": 1, \"value\": 3040}, \"3041\": {\"frequency\": 1, \"value\": 3041}, \"3042\": {\"frequency\": 1, \"value\": 3042}, \"3043\": {\"frequency\": 1, \"value\": 3043}, \"3044\": {\"frequency\": 1, \"value\": 3044}, \"3045\": {\"frequency\": 1, \"value\": 3045}, \"3046\": {\"frequency\": 1, \"value\": 3046}, \"3047\": {\"frequency\": 1, \"value\": 3047}, \"3048\": {\"frequency\": 1, \"value\": 3048}, \"3049\": {\"frequency\": 1, \"value\": 3049}, \"3050\": {\"frequency\": 1, \"value\": 3050}, \"3051\": {\"frequency\": 1, \"value\": 3051}, \"3052\": {\"frequency\": 1, \"value\": 3052}, \"3053\": {\"frequency\": 1, \"value\": 3053}, \"3054\": {\"frequency\": 1, \"value\": 3054}, \"3055\": {\"frequency\": 1, \"value\": 3055}, \"3056\": {\"frequency\": 1, \"value\": 3056}, \"3057\": {\"frequency\": 1, \"value\": 3057}, \"3058\": {\"frequency\": 1, \"value\": 3058}, \"3059\": {\"frequency\": 1, \"value\": 3059}, \"3060\": {\"frequency\": 1, \"value\": 3060}, \"3061\": {\"frequency\": 1, \"value\": 3061}, \"3062\": {\"frequency\": 1, \"value\": 3062}, \"3063\": {\"frequency\": 1, \"value\": 3063}, \"3064\": {\"frequency\": 1, \"value\": 3064}, \"3065\": {\"frequency\": 1, \"value\": 3065}, \"3066\": {\"frequency\": 1, \"value\": 3066}, \"3067\": {\"frequency\": 1, \"value\": 3067}, \"3068\": {\"frequency\": 1, \"value\": 3068}, \"3069\": {\"frequency\": 1, \"value\": 3069}, \"3070\": {\"frequency\": 1, \"value\": 3070}, \"3071\": {\"frequency\": 1, \"value\": 3071}, \"3072\": {\"frequency\": 1, \"value\": 3072}, \"3073\": {\"frequency\": 1, \"value\": 3073}, \"3074\": {\"frequency\": 1, \"value\": 3074}, \"3075\": {\"frequency\": 1, \"value\": 3075}, \"3076\": {\"frequency\": 1, \"value\": 3076}, \"3077\": {\"frequency\": 1, \"value\": 3077}, \"3078\": {\"frequency\": 1, \"value\": 3078}, \"3079\": {\"frequency\": 1, \"value\": 3079}, \"3080\": {\"frequency\": 1, \"value\": 3080}, \"3081\": {\"frequency\": 1, \"value\": 3081}, \"3082\": {\"frequency\": 1, \"value\": 3082}, \"3083\": {\"frequency\": 1, \"value\": 3083}, \"3084\": {\"frequency\": 1, \"value\": 3084}, \"3085\": {\"frequency\": 1, \"value\": 3085}, \"3086\": {\"frequency\": 1, \"value\": 3086}, \"3087\": {\"frequency\": 1, \"value\": 3087}, \"3088\": {\"frequency\": 1, \"value\": 3088}, \"3089\": {\"frequency\": 1, \"value\": 3089}, \"3090\": {\"frequency\": 1, \"value\": 3090}, \"3091\": {\"frequency\": 1, \"value\": 3091}, \"3092\": {\"frequency\": 1, \"value\": 3092}, \"3093\": {\"frequency\": 1, \"value\": 3093}, \"3094\": {\"frequency\": 1, \"value\": 3094}, \"3095\": {\"frequency\": 1, \"value\": 3095}, \"3096\": {\"frequency\": 1, \"value\": 3096}, \"3097\": {\"frequency\": 1, \"value\": 3097}, \"3098\": {\"frequency\": 1, \"value\": 3098}, \"3099\": {\"frequency\": 1, \"value\": 3099}, \"3100\": {\"frequency\": 1, \"value\": 3100}, \"3101\": {\"frequency\": 1, \"value\": 3101}, \"3102\": {\"frequency\": 1, \"value\": 3102}, \"3103\": {\"frequency\": 1, \"value\": 3103}, \"3104\": {\"frequency\": 1, \"value\": 3104}, \"3105\": {\"frequency\": 1, \"value\": 3105}, \"3106\": {\"frequency\": 1, \"value\": 3106}, \"3107\": {\"frequency\": 1, \"value\": 3107}, \"3108\": {\"frequency\": 1, \"value\": 3108}, \"3109\": {\"frequency\": 1, \"value\": 3109}, \"3110\": {\"frequency\": 1, \"value\": 3110}, \"3111\": {\"frequency\": 1, \"value\": 3111}, \"3112\": {\"frequency\": 1, \"value\": 3112}, \"3113\": {\"frequency\": 1, \"value\": 3113}, \"3114\": {\"frequency\": 1, \"value\": 3114}, \"3115\": {\"frequency\": 1, \"value\": 3115}, \"3116\": {\"frequency\": 1, \"value\": 3116}, \"3117\": {\"frequency\": 1, \"value\": 3117}, \"3118\": {\"frequency\": 1, \"value\": 3118}, \"3119\": {\"frequency\": 1, \"value\": 3119}, \"3120\": {\"frequency\": 1, \"value\": 3120}, \"3121\": {\"frequency\": 1, \"value\": 3121}, \"3122\": {\"frequency\": 1, \"value\": 3122}, \"3123\": {\"frequency\": 1, \"value\": 3123}, \"3124\": {\"frequency\": 1, \"value\": 3124}, \"3125\": {\"frequency\": 1, \"value\": 3125}, \"3126\": {\"frequency\": 1, \"value\": 3126}, \"3127\": {\"frequency\": 1, \"value\": 3127}, \"3128\": {\"frequency\": 1, \"value\": 3128}, \"3129\": {\"frequency\": 1, \"value\": 3129}, \"3130\": {\"frequency\": 1, \"value\": 3130}, \"3131\": {\"frequency\": 1, \"value\": 3131}, \"3132\": {\"frequency\": 1, \"value\": 3132}, \"3133\": {\"frequency\": 1, \"value\": 3133}, \"3134\": {\"frequency\": 1, \"value\": 3134}, \"3135\": {\"frequency\": 1, \"value\": 3135}, \"3136\": {\"frequency\": 1, \"value\": 3136}, \"3137\": {\"frequency\": 1, \"value\": 3137}, \"3138\": {\"frequency\": 1, \"value\": 3138}, \"3139\": {\"frequency\": 1, \"value\": 3139}, \"3140\": {\"frequency\": 1, \"value\": 3140}, \"3141\": {\"frequency\": 1, \"value\": 3141}, \"3142\": {\"frequency\": 1, \"value\": 3142}, \"3143\": {\"frequency\": 1, \"value\": 3143}, \"3144\": {\"frequency\": 1, \"value\": 3144}, \"3145\": {\"frequency\": 1, \"value\": 3145}, \"3146\": {\"frequency\": 1, \"value\": 3146}, \"3147\": {\"frequency\": 1, \"value\": 3147}, \"3148\": {\"frequency\": 1, \"value\": 3148}, \"3149\": {\"frequency\": 1, \"value\": 3149}, \"3150\": {\"frequency\": 1, \"value\": 3150}, \"3151\": {\"frequency\": 1, \"value\": 3151}, \"3152\": {\"frequency\": 1, \"value\": 3152}, \"3153\": {\"frequency\": 1, \"value\": 3153}, \"3154\": {\"frequency\": 1, \"value\": 3154}, \"3155\": {\"frequency\": 1, \"value\": 3155}, \"3156\": {\"frequency\": 1, \"value\": 3156}, \"3157\": {\"frequency\": 1, \"value\": 3157}, \"3158\": {\"frequency\": 1, \"value\": 3158}, \"3159\": {\"frequency\": 1, \"value\": 3159}, \"3160\": {\"frequency\": 1, \"value\": 3160}, \"3161\": {\"frequency\": 1, \"value\": 3161}, \"3162\": {\"frequency\": 1, \"value\": 3162}, \"3163\": {\"frequency\": 1, \"value\": 3163}, \"3164\": {\"frequency\": 1, \"value\": 3164}, \"3165\": {\"frequency\": 1, \"value\": 3165}, \"3166\": {\"frequency\": 1, \"value\": 3166}, \"3167\": {\"frequency\": 1, \"value\": 3167}, \"3168\": {\"frequency\": 1, \"value\": 3168}, \"3169\": {\"frequency\": 1, \"value\": 3169}, \"3170\": {\"frequency\": 1, \"value\": 3170}, \"3171\": {\"frequency\": 1, \"value\": 3171}, \"3172\": {\"frequency\": 1, \"value\": 3172}, \"3173\": {\"frequency\": 1, \"value\": 3173}, \"3174\": {\"frequency\": 1, \"value\": 3174}, \"3175\": {\"frequency\": 1, \"value\": 3175}, \"3176\": {\"frequency\": 1, \"value\": 3176}, \"3177\": {\"frequency\": 1, \"value\": 3177}, \"3178\": {\"frequency\": 1, \"value\": 3178}, \"3179\": {\"frequency\": 1, \"value\": 3179}, \"3180\": {\"frequency\": 1, \"value\": 3180}, \"3181\": {\"frequency\": 1, \"value\": 3181}, \"3182\": {\"frequency\": 1, \"value\": 3182}, \"3183\": {\"frequency\": 1, \"value\": 3183}, \"3184\": {\"frequency\": 1, \"value\": 3184}, \"3185\": {\"frequency\": 1, \"value\": 3185}, \"3186\": {\"frequency\": 1, \"value\": 3186}, \"3187\": {\"frequency\": 1, \"value\": 3187}, \"3188\": {\"frequency\": 1, \"value\": 3188}, \"3189\": {\"frequency\": 1, \"value\": 3189}, \"3190\": {\"frequency\": 1, \"value\": 3190}, \"3191\": {\"frequency\": 1, \"value\": 3191}, \"3192\": {\"frequency\": 1, \"value\": 3192}, \"3193\": {\"frequency\": 1, \"value\": 3193}, \"3194\": {\"frequency\": 1, \"value\": 3194}, \"3195\": {\"frequency\": 1, \"value\": 3195}, \"3196\": {\"frequency\": 1, \"value\": 3196}, \"3197\": {\"frequency\": 1, \"value\": 3197}, \"3198\": {\"frequency\": 1, \"value\": 3198}, \"3199\": {\"frequency\": 1, \"value\": 3199}, \"3200\": {\"frequency\": 1, \"value\": 3200}, \"3201\": {\"frequency\": 1, \"value\": 3201}, \"3202\": {\"frequency\": 1, \"value\": 3202}, \"3203\": {\"frequency\": 1, \"value\": 3203}, \"3204\": {\"frequency\": 1, \"value\": 3204}, \"3205\": {\"frequency\": 1, \"value\": 3205}, \"3206\": {\"frequency\": 1, \"value\": 3206}, \"3207\": {\"frequency\": 1, \"value\": 3207}, \"3208\": {\"frequency\": 1, \"value\": 3208}, \"3209\": {\"frequency\": 1, \"value\": 3209}, \"3210\": {\"frequency\": 1, \"value\": 3210}, \"3211\": {\"frequency\": 1, \"value\": 3211}, \"3212\": {\"frequency\": 1, \"value\": 3212}, \"3213\": {\"frequency\": 1, \"value\": 3213}, \"3214\": {\"frequency\": 1, \"value\": 3214}, \"3215\": {\"frequency\": 1, \"value\": 3215}, \"3216\": {\"frequency\": 1, \"value\": 3216}, \"3217\": {\"frequency\": 1, \"value\": 3217}, \"3218\": {\"frequency\": 1, \"value\": 3218}, \"3219\": {\"frequency\": 1, \"value\": 3219}, \"3220\": {\"frequency\": 1, \"value\": 3220}, \"3221\": {\"frequency\": 1, \"value\": 3221}, \"3222\": {\"frequency\": 1, \"value\": 3222}, \"3223\": {\"frequency\": 1, \"value\": 3223}, \"3224\": {\"frequency\": 1, \"value\": 3224}, \"3225\": {\"frequency\": 1, \"value\": 3225}, \"3226\": {\"frequency\": 1, \"value\": 3226}, \"3227\": {\"frequency\": 1, \"value\": 3227}, \"3228\": {\"frequency\": 1, \"value\": 3228}, \"3229\": {\"frequency\": 1, \"value\": 3229}, \"3230\": {\"frequency\": 1, \"value\": 3230}, \"3231\": {\"frequency\": 1, \"value\": 3231}, \"3232\": {\"frequency\": 1, \"value\": 3232}, \"3233\": {\"frequency\": 1, \"value\": 3233}, \"3234\": {\"frequency\": 1, \"value\": 3234}, \"3235\": {\"frequency\": 1, \"value\": 3235}, \"3236\": {\"frequency\": 1, \"value\": 3236}, \"3237\": {\"frequency\": 1, \"value\": 3237}, \"3238\": {\"frequency\": 1, \"value\": 3238}, \"3239\": {\"frequency\": 1, \"value\": 3239}, \"3240\": {\"frequency\": 1, \"value\": 3240}, \"3241\": {\"frequency\": 1, \"value\": 3241}, \"3242\": {\"frequency\": 1, \"value\": 3242}, \"3243\": {\"frequency\": 1, \"value\": 3243}, \"3244\": {\"frequency\": 1, \"value\": 3244}, \"3245\": {\"frequency\": 1, \"value\": 3245}, \"3246\": {\"frequency\": 1, \"value\": 3246}, \"3247\": {\"frequency\": 1, \"value\": 3247}, \"3248\": {\"frequency\": 1, \"value\": 3248}, \"3249\": {\"frequency\": 1, \"value\": 3249}, \"3250\": {\"frequency\": 1, \"value\": 3250}, \"3251\": {\"frequency\": 1, \"value\": 3251}, \"3252\": {\"frequency\": 1, \"value\": 3252}, \"3253\": {\"frequency\": 1, \"value\": 3253}, \"3254\": {\"frequency\": 1, \"value\": 3254}, \"3255\": {\"frequency\": 1, \"value\": 3255}, \"3256\": {\"frequency\": 1, \"value\": 3256}, \"3257\": {\"frequency\": 1, \"value\": 3257}, \"3258\": {\"frequency\": 1, \"value\": 3258}, \"3259\": {\"frequency\": 1, \"value\": 3259}, \"3260\": {\"frequency\": 1, \"value\": 3260}, \"3261\": {\"frequency\": 1, \"value\": 3261}, \"3262\": {\"frequency\": 1, \"value\": 3262}, \"3263\": {\"frequency\": 1, \"value\": 3263}, \"3264\": {\"frequency\": 1, \"value\": 3264}, \"3265\": {\"frequency\": 1, \"value\": 3265}, \"3266\": {\"frequency\": 1, \"value\": 3266}, \"3267\": {\"frequency\": 1, \"value\": 3267}, \"3268\": {\"frequency\": 1, \"value\": 3268}, \"3269\": {\"frequency\": 1, \"value\": 3269}, \"3270\": {\"frequency\": 1, \"value\": 3270}, \"3271\": {\"frequency\": 1, \"value\": 3271}, \"3272\": {\"frequency\": 1, \"value\": 3272}, \"3273\": {\"frequency\": 1, \"value\": 3273}, \"3274\": {\"frequency\": 1, \"value\": 3274}, \"3275\": {\"frequency\": 1, \"value\": 3275}, \"3276\": {\"frequency\": 1, \"value\": 3276}, \"3277\": {\"frequency\": 1, \"value\": 3277}, \"3278\": {\"frequency\": 1, \"value\": 3278}, \"3279\": {\"frequency\": 1, \"value\": 3279}, \"3280\": {\"frequency\": 1, \"value\": 3280}, \"3281\": {\"frequency\": 1, \"value\": 3281}, \"3282\": {\"frequency\": 1, \"value\": 3282}, \"3283\": {\"frequency\": 1, \"value\": 3283}, \"3284\": {\"frequency\": 1, \"value\": 3284}, \"3285\": {\"frequency\": 1, \"value\": 3285}, \"3286\": {\"frequency\": 1, \"value\": 3286}, \"3287\": {\"frequency\": 1, \"value\": 3287}, \"3288\": {\"frequency\": 1, \"value\": 3288}, \"3289\": {\"frequency\": 1, \"value\": 3289}, \"3290\": {\"frequency\": 1, \"value\": 3290}, \"3291\": {\"frequency\": 1, \"value\": 3291}, \"3292\": {\"frequency\": 1, \"value\": 3292}, \"3293\": {\"frequency\": 1, \"value\": 3293}, \"3294\": {\"frequency\": 1, \"value\": 3294}, \"3295\": {\"frequency\": 1, \"value\": 3295}, \"3296\": {\"frequency\": 1, \"value\": 3296}, \"3297\": {\"frequency\": 1, \"value\": 3297}, \"3298\": {\"frequency\": 1, \"value\": 3298}, \"3299\": {\"frequency\": 1, \"value\": 3299}, \"3300\": {\"frequency\": 1, \"value\": 3300}, \"3301\": {\"frequency\": 1, \"value\": 3301}, \"3302\": {\"frequency\": 1, \"value\": 3302}, \"3303\": {\"frequency\": 1, \"value\": 3303}, \"3304\": {\"frequency\": 1, \"value\": 3304}, \"3305\": {\"frequency\": 1, \"value\": 3305}, \"3306\": {\"frequency\": 1, \"value\": 3306}, \"3307\": {\"frequency\": 1, \"value\": 3307}, \"3308\": {\"frequency\": 1, \"value\": 3308}, \"3309\": {\"frequency\": 1, \"value\": 3309}, \"3310\": {\"frequency\": 1, \"value\": 3310}, \"3311\": {\"frequency\": 1, \"value\": 3311}, \"3312\": {\"frequency\": 1, \"value\": 3312}, \"3313\": {\"frequency\": 1, \"value\": 3313}, \"3314\": {\"frequency\": 1, \"value\": 3314}, \"3315\": {\"frequency\": 1, \"value\": 3315}, \"3316\": {\"frequency\": 1, \"value\": 3316}, \"3317\": {\"frequency\": 1, \"value\": 3317}, \"3318\": {\"frequency\": 1, \"value\": 3318}, \"3319\": {\"frequency\": 1, \"value\": 3319}, \"3320\": {\"frequency\": 1, \"value\": 3320}, \"3321\": {\"frequency\": 1, \"value\": 3321}, \"3322\": {\"frequency\": 1, \"value\": 3322}, \"3323\": {\"frequency\": 1, \"value\": 3323}, \"3324\": {\"frequency\": 1, \"value\": 3324}, \"3325\": {\"frequency\": 1, \"value\": 3325}, \"3326\": {\"frequency\": 1, \"value\": 3326}, \"3327\": {\"frequency\": 1, \"value\": 3327}, \"3328\": {\"frequency\": 1, \"value\": 3328}, \"3329\": {\"frequency\": 1, \"value\": 3329}, \"3330\": {\"frequency\": 1, \"value\": 3330}, \"3331\": {\"frequency\": 1, \"value\": 3331}, \"3332\": {\"frequency\": 1, \"value\": 3332}, \"3333\": {\"frequency\": 1, \"value\": 3333}, \"3334\": {\"frequency\": 1, \"value\": 3334}, \"3335\": {\"frequency\": 1, \"value\": 3335}, \"3336\": {\"frequency\": 1, \"value\": 3336}, \"3337\": {\"frequency\": 1, \"value\": 3337}, \"3338\": {\"frequency\": 1, \"value\": 3338}, \"3339\": {\"frequency\": 1, \"value\": 3339}, \"3340\": {\"frequency\": 1, \"value\": 3340}, \"3341\": {\"frequency\": 1, \"value\": 3341}, \"3342\": {\"frequency\": 1, \"value\": 3342}, \"3343\": {\"frequency\": 1, \"value\": 3343}, \"3344\": {\"frequency\": 1, \"value\": 3344}, \"3345\": {\"frequency\": 1, \"value\": 3345}, \"3346\": {\"frequency\": 1, \"value\": 3346}, \"3347\": {\"frequency\": 1, \"value\": 3347}, \"3348\": {\"frequency\": 1, \"value\": 3348}, \"3349\": {\"frequency\": 1, \"value\": 3349}, \"3350\": {\"frequency\": 1, \"value\": 3350}, \"3351\": {\"frequency\": 1, \"value\": 3351}, \"3352\": {\"frequency\": 1, \"value\": 3352}, \"3353\": {\"frequency\": 1, \"value\": 3353}, \"3354\": {\"frequency\": 1, \"value\": 3354}, \"3355\": {\"frequency\": 1, \"value\": 3355}, \"3356\": {\"frequency\": 1, \"value\": 3356}, \"3357\": {\"frequency\": 1, \"value\": 3357}, \"3358\": {\"frequency\": 1, \"value\": 3358}, \"3359\": {\"frequency\": 1, \"value\": 3359}, \"3360\": {\"frequency\": 1, \"value\": 3360}, \"3361\": {\"frequency\": 1, \"value\": 3361}, \"3362\": {\"frequency\": 1, \"value\": 3362}, \"3363\": {\"frequency\": 1, \"value\": 3363}, \"3364\": {\"frequency\": 1, \"value\": 3364}, \"3365\": {\"frequency\": 1, \"value\": 3365}, \"3366\": {\"frequency\": 1, \"value\": 3366}, \"3367\": {\"frequency\": 1, \"value\": 3367}, \"3368\": {\"frequency\": 1, \"value\": 3368}, \"3369\": {\"frequency\": 1, \"value\": 3369}, \"3370\": {\"frequency\": 1, \"value\": 3370}, \"3371\": {\"frequency\": 1, \"value\": 3371}, \"3372\": {\"frequency\": 1, \"value\": 3372}, \"3373\": {\"frequency\": 1, \"value\": 3373}, \"3374\": {\"frequency\": 1, \"value\": 3374}, \"3375\": {\"frequency\": 1, \"value\": 3375}, \"3376\": {\"frequency\": 1, \"value\": 3376}, \"3377\": {\"frequency\": 1, \"value\": 3377}, \"3378\": {\"frequency\": 1, \"value\": 3378}, \"3379\": {\"frequency\": 1, \"value\": 3379}, \"3380\": {\"frequency\": 1, \"value\": 3380}, \"3381\": {\"frequency\": 1, \"value\": 3381}, \"3382\": {\"frequency\": 1, \"value\": 3382}, \"3383\": {\"frequency\": 1, \"value\": 3383}, \"3384\": {\"frequency\": 1, \"value\": 3384}, \"3385\": {\"frequency\": 1, \"value\": 3385}, \"3386\": {\"frequency\": 1, \"value\": 3386}, \"3387\": {\"frequency\": 1, \"value\": 3387}, \"3388\": {\"frequency\": 1, \"value\": 3388}, \"3389\": {\"frequency\": 1, \"value\": 3389}, \"3390\": {\"frequency\": 1, \"value\": 3390}, \"3391\": {\"frequency\": 1, \"value\": 3391}, \"3392\": {\"frequency\": 1, \"value\": 3392}, \"3393\": {\"frequency\": 1, \"value\": 3393}, \"3394\": {\"frequency\": 1, \"value\": 3394}, \"3395\": {\"frequency\": 1, \"value\": 3395}, \"3396\": {\"frequency\": 1, \"value\": 3396}, \"3397\": {\"frequency\": 1, \"value\": 3397}, \"3398\": {\"frequency\": 1, \"value\": 3398}, \"3399\": {\"frequency\": 1, \"value\": 3399}, \"3400\": {\"frequency\": 1, \"value\": 3400}, \"3401\": {\"frequency\": 1, \"value\": 3401}, \"3402\": {\"frequency\": 1, \"value\": 3402}, \"3403\": {\"frequency\": 1, \"value\": 3403}, \"3404\": {\"frequency\": 1, \"value\": 3404}, \"3405\": {\"frequency\": 1, \"value\": 3405}, \"3406\": {\"frequency\": 1, \"value\": 3406}, \"3407\": {\"frequency\": 1, \"value\": 3407}, \"3408\": {\"frequency\": 1, \"value\": 3408}, \"3409\": {\"frequency\": 1, \"value\": 3409}, \"3410\": {\"frequency\": 1, \"value\": 3410}, \"3411\": {\"frequency\": 1, \"value\": 3411}, \"3412\": {\"frequency\": 1, \"value\": 3412}, \"3413\": {\"frequency\": 1, \"value\": 3413}, \"3414\": {\"frequency\": 1, \"value\": 3414}, \"3415\": {\"frequency\": 1, \"value\": 3415}, \"3416\": {\"frequency\": 1, \"value\": 3416}, \"3417\": {\"frequency\": 1, \"value\": 3417}, \"3418\": {\"frequency\": 1, \"value\": 3418}, \"3419\": {\"frequency\": 1, \"value\": 3419}, \"3420\": {\"frequency\": 1, \"value\": 3420}, \"3421\": {\"frequency\": 1, \"value\": 3421}, \"3422\": {\"frequency\": 1, \"value\": 3422}, \"3423\": {\"frequency\": 1, \"value\": 3423}, \"3424\": {\"frequency\": 1, \"value\": 3424}, \"3425\": {\"frequency\": 1, \"value\": 3425}, \"3426\": {\"frequency\": 1, \"value\": 3426}, \"3427\": {\"frequency\": 1, \"value\": 3427}, \"3428\": {\"frequency\": 1, \"value\": 3428}, \"3429\": {\"frequency\": 1, \"value\": 3429}, \"3430\": {\"frequency\": 1, \"value\": 3430}, \"3431\": {\"frequency\": 1, \"value\": 3431}, \"3432\": {\"frequency\": 1, \"value\": 3432}, \"3433\": {\"frequency\": 1, \"value\": 3433}, \"3434\": {\"frequency\": 1, \"value\": 3434}, \"3435\": {\"frequency\": 1, \"value\": 3435}, \"3436\": {\"frequency\": 1, \"value\": 3436}, \"3437\": {\"frequency\": 1, \"value\": 3437}, \"3438\": {\"frequency\": 1, \"value\": 3438}, \"3439\": {\"frequency\": 1, \"value\": 3439}, \"3440\": {\"frequency\": 1, \"value\": 3440}, \"3441\": {\"frequency\": 1, \"value\": 3441}, \"3442\": {\"frequency\": 1, \"value\": 3442}, \"3443\": {\"frequency\": 1, \"value\": 3443}, \"3444\": {\"frequency\": 1, \"value\": 3444}, \"3445\": {\"frequency\": 1, \"value\": 3445}, \"3446\": {\"frequency\": 1, \"value\": 3446}, \"3447\": {\"frequency\": 1, \"value\": 3447}, \"3448\": {\"frequency\": 1, \"value\": 3448}, \"3449\": {\"frequency\": 1, \"value\": 3449}, \"3450\": {\"frequency\": 1, \"value\": 3450}, \"3451\": {\"frequency\": 1, \"value\": 3451}, \"3452\": {\"frequency\": 1, \"value\": 3452}, \"3453\": {\"frequency\": 1, \"value\": 3453}, \"3454\": {\"frequency\": 1, \"value\": 3454}, \"3455\": {\"frequency\": 1, \"value\": 3455}, \"3456\": {\"frequency\": 1, \"value\": 3456}, \"3457\": {\"frequency\": 1, \"value\": 3457}, \"3458\": {\"frequency\": 1, \"value\": 3458}, \"3459\": {\"frequency\": 1, \"value\": 3459}, \"3460\": {\"frequency\": 1, \"value\": 3460}, \"3461\": {\"frequency\": 1, \"value\": 3461}, \"3462\": {\"frequency\": 1, \"value\": 3462}, \"3463\": {\"frequency\": 1, \"value\": 3463}, \"3464\": {\"frequency\": 1, \"value\": 3464}, \"3465\": {\"frequency\": 1, \"value\": 3465}, \"3466\": {\"frequency\": 1, \"value\": 3466}, \"3467\": {\"frequency\": 1, \"value\": 3467}, \"3468\": {\"frequency\": 1, \"value\": 3468}, \"3469\": {\"frequency\": 1, \"value\": 3469}, \"3470\": {\"frequency\": 1, \"value\": 3470}, \"3471\": {\"frequency\": 1, \"value\": 3471}, \"3472\": {\"frequency\": 1, \"value\": 3472}, \"3473\": {\"frequency\": 1, \"value\": 3473}, \"3474\": {\"frequency\": 1, \"value\": 3474}, \"3475\": {\"frequency\": 1, \"value\": 3475}, \"3476\": {\"frequency\": 1, \"value\": 3476}, \"3477\": {\"frequency\": 1, \"value\": 3477}, \"3478\": {\"frequency\": 1, \"value\": 3478}, \"3479\": {\"frequency\": 1, \"value\": 3479}, \"3480\": {\"frequency\": 1, \"value\": 3480}, \"3481\": {\"frequency\": 1, \"value\": 3481}, \"3482\": {\"frequency\": 1, \"value\": 3482}, \"3483\": {\"frequency\": 1, \"value\": 3483}, \"3484\": {\"frequency\": 1, \"value\": 3484}, \"3485\": {\"frequency\": 1, \"value\": 3485}, \"3486\": {\"frequency\": 1, \"value\": 3486}, \"3487\": {\"frequency\": 1, \"value\": 3487}, \"3488\": {\"frequency\": 1, \"value\": 3488}, \"3489\": {\"frequency\": 1, \"value\": 3489}, \"3490\": {\"frequency\": 1, \"value\": 3490}, \"3491\": {\"frequency\": 1, \"value\": 3491}, \"3492\": {\"frequency\": 1, \"value\": 3492}, \"3493\": {\"frequency\": 1, \"value\": 3493}, \"3494\": {\"frequency\": 1, \"value\": 3494}, \"3495\": {\"frequency\": 1, \"value\": 3495}, \"3496\": {\"frequency\": 1, \"value\": 3496}, \"3497\": {\"frequency\": 1, \"value\": 3497}, \"3498\": {\"frequency\": 1, \"value\": 3498}, \"3499\": {\"frequency\": 1, \"value\": 3499}, \"3500\": {\"frequency\": 1, \"value\": 3500}, \"3501\": {\"frequency\": 1, \"value\": 3501}, \"3502\": {\"frequency\": 1, \"value\": 3502}, \"3503\": {\"frequency\": 1, \"value\": 3503}, \"3504\": {\"frequency\": 1, \"value\": 3504}, \"3505\": {\"frequency\": 1, \"value\": 3505}, \"3506\": {\"frequency\": 1, \"value\": 3506}, \"3507\": {\"frequency\": 1, \"value\": 3507}, \"3508\": {\"frequency\": 1, \"value\": 3508}, \"3509\": {\"frequency\": 1, \"value\": 3509}, \"3510\": {\"frequency\": 1, \"value\": 3510}, \"3511\": {\"frequency\": 1, \"value\": 3511}, \"3512\": {\"frequency\": 1, \"value\": 3512}, \"3513\": {\"frequency\": 1, \"value\": 3513}, \"3514\": {\"frequency\": 1, \"value\": 3514}, \"3515\": {\"frequency\": 1, \"value\": 3515}, \"3516\": {\"frequency\": 1, \"value\": 3516}, \"3517\": {\"frequency\": 1, \"value\": 3517}, \"3518\": {\"frequency\": 1, \"value\": 3518}, \"3519\": {\"frequency\": 1, \"value\": 3519}, \"3520\": {\"frequency\": 1, \"value\": 3520}, \"3521\": {\"frequency\": 1, \"value\": 3521}, \"3522\": {\"frequency\": 1, \"value\": 3522}, \"3523\": {\"frequency\": 1, \"value\": 3523}, \"3524\": {\"frequency\": 1, \"value\": 3524}, \"3525\": {\"frequency\": 1, \"value\": 3525}, \"3526\": {\"frequency\": 1, \"value\": 3526}, \"3527\": {\"frequency\": 1, \"value\": 3527}, \"3528\": {\"frequency\": 1, \"value\": 3528}, \"3529\": {\"frequency\": 1, \"value\": 3529}, \"3530\": {\"frequency\": 1, \"value\": 3530}, \"3531\": {\"frequency\": 1, \"value\": 3531}, \"3532\": {\"frequency\": 1, \"value\": 3532}, \"3533\": {\"frequency\": 1, \"value\": 3533}, \"3534\": {\"frequency\": 1, \"value\": 3534}, \"3535\": {\"frequency\": 1, \"value\": 3535}, \"3536\": {\"frequency\": 1, \"value\": 3536}, \"3537\": {\"frequency\": 1, \"value\": 3537}, \"3538\": {\"frequency\": 1, \"value\": 3538}, \"3539\": {\"frequency\": 1, \"value\": 3539}, \"3540\": {\"frequency\": 1, \"value\": 3540}, \"3541\": {\"frequency\": 1, \"value\": 3541}, \"3542\": {\"frequency\": 1, \"value\": 3542}, \"3543\": {\"frequency\": 1, \"value\": 3543}, \"3544\": {\"frequency\": 1, \"value\": 3544}, \"3545\": {\"frequency\": 1, \"value\": 3545}, \"3546\": {\"frequency\": 1, \"value\": 3546}, \"3547\": {\"frequency\": 1, \"value\": 3547}, \"3548\": {\"frequency\": 1, \"value\": 3548}, \"3549\": {\"frequency\": 1, \"value\": 3549}, \"3550\": {\"frequency\": 1, \"value\": 3550}, \"3551\": {\"frequency\": 1, \"value\": 3551}, \"3552\": {\"frequency\": 1, \"value\": 3552}, \"3553\": {\"frequency\": 1, \"value\": 3553}, \"3554\": {\"frequency\": 1, \"value\": 3554}, \"3555\": {\"frequency\": 1, \"value\": 3555}, \"3556\": {\"frequency\": 1, \"value\": 3556}, \"3557\": {\"frequency\": 1, \"value\": 3557}, \"3558\": {\"frequency\": 1, \"value\": 3558}, \"3559\": {\"frequency\": 1, \"value\": 3559}, \"3560\": {\"frequency\": 1, \"value\": 3560}, \"3561\": {\"frequency\": 1, \"value\": 3561}, \"3562\": {\"frequency\": 1, \"value\": 3562}, \"3563\": {\"frequency\": 1, \"value\": 3563}, \"3564\": {\"frequency\": 1, \"value\": 3564}, \"3565\": {\"frequency\": 1, \"value\": 3565}, \"3566\": {\"frequency\": 1, \"value\": 3566}, \"3567\": {\"frequency\": 1, \"value\": 3567}, \"3568\": {\"frequency\": 1, \"value\": 3568}, \"3569\": {\"frequency\": 1, \"value\": 3569}, \"3570\": {\"frequency\": 1, \"value\": 3570}, \"3571\": {\"frequency\": 1, \"value\": 3571}, \"3572\": {\"frequency\": 1, \"value\": 3572}, \"3573\": {\"frequency\": 1, \"value\": 3573}, \"3574\": {\"frequency\": 1, \"value\": 3574}, \"3575\": {\"frequency\": 1, \"value\": 3575}, \"3576\": {\"frequency\": 1, \"value\": 3576}, \"3577\": {\"frequency\": 1, \"value\": 3577}, \"3578\": {\"frequency\": 1, \"value\": 3578}, \"3579\": {\"frequency\": 1, \"value\": 3579}, \"3580\": {\"frequency\": 1, \"value\": 3580}, \"3581\": {\"frequency\": 1, \"value\": 3581}, \"3582\": {\"frequency\": 1, \"value\": 3582}, \"3583\": {\"frequency\": 1, \"value\": 3583}, \"3584\": {\"frequency\": 1, \"value\": 3584}, \"3585\": {\"frequency\": 1, \"value\": 3585}, \"3586\": {\"frequency\": 1, \"value\": 3586}, \"3587\": {\"frequency\": 1, \"value\": 3587}, \"3588\": {\"frequency\": 1, \"value\": 3588}, \"3589\": {\"frequency\": 1, \"value\": 3589}, \"3590\": {\"frequency\": 1, \"value\": 3590}, \"3591\": {\"frequency\": 1, \"value\": 3591}, \"3592\": {\"frequency\": 1, \"value\": 3592}, \"3593\": {\"frequency\": 1, \"value\": 3593}, \"3594\": {\"frequency\": 1, \"value\": 3594}, \"3595\": {\"frequency\": 1, \"value\": 3595}, \"3596\": {\"frequency\": 1, \"value\": 3596}, \"3597\": {\"frequency\": 1, \"value\": 3597}, \"3598\": {\"frequency\": 1, \"value\": 3598}, \"3599\": {\"frequency\": 1, \"value\": 3599}, \"3600\": {\"frequency\": 1, \"value\": 3600}, \"3601\": {\"frequency\": 1, \"value\": 3601}, \"3602\": {\"frequency\": 1, \"value\": 3602}, \"3603\": {\"frequency\": 1, \"value\": 3603}, \"3604\": {\"frequency\": 1, \"value\": 3604}, \"3605\": {\"frequency\": 1, \"value\": 3605}, \"3606\": {\"frequency\": 1, \"value\": 3606}, \"3607\": {\"frequency\": 1, \"value\": 3607}, \"3608\": {\"frequency\": 1, \"value\": 3608}, \"3609\": {\"frequency\": 1, \"value\": 3609}, \"3610\": {\"frequency\": 1, \"value\": 3610}, \"3611\": {\"frequency\": 1, \"value\": 3611}, \"3612\": {\"frequency\": 1, \"value\": 3612}, \"3613\": {\"frequency\": 1, \"value\": 3613}, \"3614\": {\"frequency\": 1, \"value\": 3614}, \"3615\": {\"frequency\": 1, \"value\": 3615}, \"3616\": {\"frequency\": 1, \"value\": 3616}, \"3617\": {\"frequency\": 1, \"value\": 3617}, \"3618\": {\"frequency\": 1, \"value\": 3618}, \"3619\": {\"frequency\": 1, \"value\": 3619}, \"3620\": {\"frequency\": 1, \"value\": 3620}, \"3621\": {\"frequency\": 1, \"value\": 3621}, \"3622\": {\"frequency\": 1, \"value\": 3622}, \"3623\": {\"frequency\": 1, \"value\": 3623}, \"3624\": {\"frequency\": 1, \"value\": 3624}, \"3625\": {\"frequency\": 1, \"value\": 3625}, \"3626\": {\"frequency\": 1, \"value\": 3626}, \"3627\": {\"frequency\": 1, \"value\": 3627}, \"3628\": {\"frequency\": 1, \"value\": 3628}, \"3629\": {\"frequency\": 1, \"value\": 3629}, \"3630\": {\"frequency\": 1, \"value\": 3630}, \"3631\": {\"frequency\": 1, \"value\": 3631}, \"3632\": {\"frequency\": 1, \"value\": 3632}, \"3633\": {\"frequency\": 1, \"value\": 3633}, \"3634\": {\"frequency\": 1, \"value\": 3634}, \"3635\": {\"frequency\": 1, \"value\": 3635}, \"3636\": {\"frequency\": 1, \"value\": 3636}, \"3637\": {\"frequency\": 1, \"value\": 3637}, \"3638\": {\"frequency\": 1, \"value\": 3638}, \"3639\": {\"frequency\": 1, \"value\": 3639}, \"3640\": {\"frequency\": 1, \"value\": 3640}, \"3641\": {\"frequency\": 1, \"value\": 3641}, \"3642\": {\"frequency\": 1, \"value\": 3642}, \"3643\": {\"frequency\": 1, \"value\": 3643}, \"3644\": {\"frequency\": 1, \"value\": 3644}, \"3645\": {\"frequency\": 1, \"value\": 3645}, \"3646\": {\"frequency\": 1, \"value\": 3646}, \"3647\": {\"frequency\": 1, \"value\": 3647}, \"3648\": {\"frequency\": 1, \"value\": 3648}, \"3649\": {\"frequency\": 1, \"value\": 3649}, \"3650\": {\"frequency\": 1, \"value\": 3650}, \"3651\": {\"frequency\": 1, \"value\": 3651}, \"3652\": {\"frequency\": 1, \"value\": 3652}, \"3653\": {\"frequency\": 1, \"value\": 3653}, \"3654\": {\"frequency\": 1, \"value\": 3654}, \"3655\": {\"frequency\": 1, \"value\": 3655}, \"3656\": {\"frequency\": 1, \"value\": 3656}, \"3657\": {\"frequency\": 1, \"value\": 3657}, \"3658\": {\"frequency\": 1, \"value\": 3658}, \"3659\": {\"frequency\": 1, \"value\": 3659}, \"3660\": {\"frequency\": 1, \"value\": 3660}, \"3661\": {\"frequency\": 1, \"value\": 3661}, \"3662\": {\"frequency\": 1, \"value\": 3662}, \"3663\": {\"frequency\": 1, \"value\": 3663}, \"3664\": {\"frequency\": 1, \"value\": 3664}, \"3665\": {\"frequency\": 1, \"value\": 3665}, \"3666\": {\"frequency\": 1, \"value\": 3666}, \"3667\": {\"frequency\": 1, \"value\": 3667}, \"3668\": {\"frequency\": 1, \"value\": 3668}, \"3669\": {\"frequency\": 1, \"value\": 3669}, \"3670\": {\"frequency\": 1, \"value\": 3670}, \"3671\": {\"frequency\": 1, \"value\": 3671}, \"3672\": {\"frequency\": 1, \"value\": 3672}, \"3673\": {\"frequency\": 1, \"value\": 3673}, \"3674\": {\"frequency\": 1, \"value\": 3674}, \"3675\": {\"frequency\": 1, \"value\": 3675}, \"3676\": {\"frequency\": 1, \"value\": 3676}, \"3677\": {\"frequency\": 1, \"value\": 3677}, \"3678\": {\"frequency\": 1, \"value\": 3678}, \"3679\": {\"frequency\": 1, \"value\": 3679}, \"3680\": {\"frequency\": 1, \"value\": 3680}, \"3681\": {\"frequency\": 1, \"value\": 3681}, \"3682\": {\"frequency\": 1, \"value\": 3682}, \"3683\": {\"frequency\": 1, \"value\": 3683}, \"3684\": {\"frequency\": 1, \"value\": 3684}, \"3685\": {\"frequency\": 1, \"value\": 3685}, \"3686\": {\"frequency\": 1, \"value\": 3686}, \"3687\": {\"frequency\": 1, \"value\": 3687}, \"3688\": {\"frequency\": 1, \"value\": 3688}, \"3689\": {\"frequency\": 1, \"value\": 3689}, \"3690\": {\"frequency\": 1, \"value\": 3690}, \"3691\": {\"frequency\": 1, \"value\": 3691}, \"3692\": {\"frequency\": 1, \"value\": 3692}, \"3693\": {\"frequency\": 1, \"value\": 3693}, \"3694\": {\"frequency\": 1, \"value\": 3694}, \"3695\": {\"frequency\": 1, \"value\": 3695}, \"3696\": {\"frequency\": 1, \"value\": 3696}, \"3697\": {\"frequency\": 1, \"value\": 3697}, \"3698\": {\"frequency\": 1, \"value\": 3698}, \"3699\": {\"frequency\": 1, \"value\": 3699}, \"3700\": {\"frequency\": 1, \"value\": 3700}, \"3701\": {\"frequency\": 1, \"value\": 3701}, \"3702\": {\"frequency\": 1, \"value\": 3702}, \"3703\": {\"frequency\": 1, \"value\": 3703}, \"3704\": {\"frequency\": 1, \"value\": 3704}, \"3705\": {\"frequency\": 1, \"value\": 3705}, \"3706\": {\"frequency\": 1, \"value\": 3706}, \"3707\": {\"frequency\": 1, \"value\": 3707}, \"3708\": {\"frequency\": 1, \"value\": 3708}, \"3709\": {\"frequency\": 1, \"value\": 3709}, \"3710\": {\"frequency\": 1, \"value\": 3710}, \"3711\": {\"frequency\": 1, \"value\": 3711}, \"3712\": {\"frequency\": 1, \"value\": 3712}, \"3713\": {\"frequency\": 1, \"value\": 3713}, \"3714\": {\"frequency\": 1, \"value\": 3714}, \"3715\": {\"frequency\": 1, \"value\": 3715}, \"3716\": {\"frequency\": 1, \"value\": 3716}, \"3717\": {\"frequency\": 1, \"value\": 3717}, \"3718\": {\"frequency\": 1, \"value\": 3718}, \"3719\": {\"frequency\": 1, \"value\": 3719}, \"3720\": {\"frequency\": 1, \"value\": 3720}, \"3721\": {\"frequency\": 1, \"value\": 3721}, \"3722\": {\"frequency\": 1, \"value\": 3722}, \"3723\": {\"frequency\": 1, \"value\": 3723}, \"3724\": {\"frequency\": 1, \"value\": 3724}, \"3725\": {\"frequency\": 1, \"value\": 3725}, \"3726\": {\"frequency\": 1, \"value\": 3726}, \"3727\": {\"frequency\": 1, \"value\": 3727}, \"3728\": {\"frequency\": 1, \"value\": 3728}, \"3729\": {\"frequency\": 1, \"value\": 3729}, \"3730\": {\"frequency\": 1, \"value\": 3730}, \"3731\": {\"frequency\": 1, \"value\": 3731}, \"3732\": {\"frequency\": 1, \"value\": 3732}, \"3733\": {\"frequency\": 1, \"value\": 3733}, \"3734\": {\"frequency\": 1, \"value\": 3734}, \"3735\": {\"frequency\": 1, \"value\": 3735}, \"3736\": {\"frequency\": 1, \"value\": 3736}, \"3737\": {\"frequency\": 1, \"value\": 3737}, \"3738\": {\"frequency\": 1, \"value\": 3738}, \"3739\": {\"frequency\": 1, \"value\": 3739}, \"3740\": {\"frequency\": 1, \"value\": 3740}, \"3741\": {\"frequency\": 1, \"value\": 3741}, \"3742\": {\"frequency\": 1, \"value\": 3742}, \"3743\": {\"frequency\": 1, \"value\": 3743}, \"3744\": {\"frequency\": 1, \"value\": 3744}, \"3745\": {\"frequency\": 1, \"value\": 3745}, \"3746\": {\"frequency\": 1, \"value\": 3746}, \"3747\": {\"frequency\": 1, \"value\": 3747}, \"3748\": {\"frequency\": 1, \"value\": 3748}, \"3749\": {\"frequency\": 1, \"value\": 3749}, \"3750\": {\"frequency\": 1, \"value\": 3750}, \"3751\": {\"frequency\": 1, \"value\": 3751}, \"3752\": {\"frequency\": 1, \"value\": 3752}, \"3753\": {\"frequency\": 1, \"value\": 3753}, \"3754\": {\"frequency\": 1, \"value\": 3754}, \"3755\": {\"frequency\": 1, \"value\": 3755}, \"3756\": {\"frequency\": 1, \"value\": 3756}, \"3757\": {\"frequency\": 1, \"value\": 3757}, \"3758\": {\"frequency\": 1, \"value\": 3758}, \"3759\": {\"frequency\": 1, \"value\": 3759}, \"3760\": {\"frequency\": 1, \"value\": 3760}, \"3761\": {\"frequency\": 1, \"value\": 3761}, \"3762\": {\"frequency\": 1, \"value\": 3762}, \"3763\": {\"frequency\": 1, \"value\": 3763}, \"3764\": {\"frequency\": 1, \"value\": 3764}, \"3765\": {\"frequency\": 1, \"value\": 3765}, \"3766\": {\"frequency\": 1, \"value\": 3766}, \"3767\": {\"frequency\": 1, \"value\": 3767}, \"3768\": {\"frequency\": 1, \"value\": 3768}, \"3769\": {\"frequency\": 1, \"value\": 3769}, \"3770\": {\"frequency\": 1, \"value\": 3770}, \"3771\": {\"frequency\": 1, \"value\": 3771}, \"3772\": {\"frequency\": 1, \"value\": 3772}, \"3773\": {\"frequency\": 1, \"value\": 3773}, \"3774\": {\"frequency\": 1, \"value\": 3774}, \"3775\": {\"frequency\": 1, \"value\": 3775}, \"3776\": {\"frequency\": 1, \"value\": 3776}, \"3777\": {\"frequency\": 1, \"value\": 3777}, \"3778\": {\"frequency\": 1, \"value\": 3778}, \"3779\": {\"frequency\": 1, \"value\": 3779}, \"3780\": {\"frequency\": 1, \"value\": 3780}, \"3781\": {\"frequency\": 1, \"value\": 3781}, \"3782\": {\"frequency\": 1, \"value\": 3782}, \"3783\": {\"frequency\": 1, \"value\": 3783}, \"3784\": {\"frequency\": 1, \"value\": 3784}, \"3785\": {\"frequency\": 1, \"value\": 3785}, \"3786\": {\"frequency\": 1, \"value\": 3786}, \"3787\": {\"frequency\": 1, \"value\": 3787}, \"3788\": {\"frequency\": 1, \"value\": 3788}, \"3789\": {\"frequency\": 1, \"value\": 3789}, \"3790\": {\"frequency\": 1, \"value\": 3790}, \"3791\": {\"frequency\": 1, \"value\": 3791}, \"3792\": {\"frequency\": 1, \"value\": 3792}, \"3793\": {\"frequency\": 1, \"value\": 3793}, \"3794\": {\"frequency\": 1, \"value\": 3794}, \"3795\": {\"frequency\": 1, \"value\": 3795}, \"3796\": {\"frequency\": 1, \"value\": 3796}, \"3797\": {\"frequency\": 1, \"value\": 3797}, \"3798\": {\"frequency\": 1, \"value\": 3798}, \"3799\": {\"frequency\": 1, \"value\": 3799}, \"3800\": {\"frequency\": 1, \"value\": 3800}, \"3801\": {\"frequency\": 1, \"value\": 3801}, \"3802\": {\"frequency\": 1, \"value\": 3802}, \"3803\": {\"frequency\": 1, \"value\": 3803}, \"3804\": {\"frequency\": 1, \"value\": 3804}, \"3805\": {\"frequency\": 1, \"value\": 3805}, \"3806\": {\"frequency\": 1, \"value\": 3806}, \"3807\": {\"frequency\": 1, \"value\": 3807}, \"3808\": {\"frequency\": 1, \"value\": 3808}, \"3809\": {\"frequency\": 1, \"value\": 3809}, \"3810\": {\"frequency\": 1, \"value\": 3810}, \"3811\": {\"frequency\": 1, \"value\": 3811}, \"3812\": {\"frequency\": 1, \"value\": 3812}, \"3813\": {\"frequency\": 1, \"value\": 3813}, \"3814\": {\"frequency\": 1, \"value\": 3814}, \"3815\": {\"frequency\": 1, \"value\": 3815}, \"3816\": {\"frequency\": 1, \"value\": 3816}, \"3817\": {\"frequency\": 1, \"value\": 3817}, \"3818\": {\"frequency\": 1, \"value\": 3818}, \"3819\": {\"frequency\": 1, \"value\": 3819}, \"3820\": {\"frequency\": 1, \"value\": 3820}, \"3821\": {\"frequency\": 1, \"value\": 3821}, \"3822\": {\"frequency\": 1, \"value\": 3822}, \"3823\": {\"frequency\": 1, \"value\": 3823}, \"3824\": {\"frequency\": 1, \"value\": 3824}, \"3825\": {\"frequency\": 1, \"value\": 3825}, \"3826\": {\"frequency\": 1, \"value\": 3826}, \"3827\": {\"frequency\": 1, \"value\": 3827}, \"3828\": {\"frequency\": 1, \"value\": 3828}, \"3829\": {\"frequency\": 1, \"value\": 3829}, \"3830\": {\"frequency\": 1, \"value\": 3830}, \"3831\": {\"frequency\": 1, \"value\": 3831}, \"3832\": {\"frequency\": 1, \"value\": 3832}, \"3833\": {\"frequency\": 1, \"value\": 3833}, \"3834\": {\"frequency\": 1, \"value\": 3834}, \"3835\": {\"frequency\": 1, \"value\": 3835}, \"3836\": {\"frequency\": 1, \"value\": 3836}, \"3837\": {\"frequency\": 1, \"value\": 3837}, \"3838\": {\"frequency\": 1, \"value\": 3838}, \"3839\": {\"frequency\": 1, \"value\": 3839}, \"3840\": {\"frequency\": 1, \"value\": 3840}, \"3841\": {\"frequency\": 1, \"value\": 3841}, \"3842\": {\"frequency\": 1, \"value\": 3842}, \"3843\": {\"frequency\": 1, \"value\": 3843}, \"3844\": {\"frequency\": 1, \"value\": 3844}, \"3845\": {\"frequency\": 1, \"value\": 3845}, \"3846\": {\"frequency\": 1, \"value\": 3846}, \"3847\": {\"frequency\": 1, \"value\": 3847}, \"3848\": {\"frequency\": 1, \"value\": 3848}, \"3849\": {\"frequency\": 1, \"value\": 3849}, \"3850\": {\"frequency\": 1, \"value\": 3850}, \"3851\": {\"frequency\": 1, \"value\": 3851}, \"3852\": {\"frequency\": 1, \"value\": 3852}, \"3853\": {\"frequency\": 1, \"value\": 3853}, \"3854\": {\"frequency\": 1, \"value\": 3854}, \"3855\": {\"frequency\": 1, \"value\": 3855}, \"3856\": {\"frequency\": 1, \"value\": 3856}, \"3857\": {\"frequency\": 1, \"value\": 3857}, \"3858\": {\"frequency\": 1, \"value\": 3858}, \"3859\": {\"frequency\": 1, \"value\": 3859}, \"3860\": {\"frequency\": 1, \"value\": 3860}, \"3861\": {\"frequency\": 1, \"value\": 3861}, \"3862\": {\"frequency\": 1, \"value\": 3862}, \"3863\": {\"frequency\": 1, \"value\": 3863}, \"3864\": {\"frequency\": 1, \"value\": 3864}, \"3865\": {\"frequency\": 1, \"value\": 3865}, \"3866\": {\"frequency\": 1, \"value\": 3866}, \"3867\": {\"frequency\": 1, \"value\": 3867}, \"3868\": {\"frequency\": 1, \"value\": 3868}, \"3869\": {\"frequency\": 1, \"value\": 3869}, \"3870\": {\"frequency\": 1, \"value\": 3870}, \"3871\": {\"frequency\": 1, \"value\": 3871}, \"3872\": {\"frequency\": 1, \"value\": 3872}, \"3873\": {\"frequency\": 1, \"value\": 3873}, \"3874\": {\"frequency\": 1, \"value\": 3874}, \"3875\": {\"frequency\": 1, \"value\": 3875}, \"3876\": {\"frequency\": 1, \"value\": 3876}, \"3877\": {\"frequency\": 1, \"value\": 3877}, \"3878\": {\"frequency\": 1, \"value\": 3878}, \"3879\": {\"frequency\": 1, \"value\": 3879}, \"3880\": {\"frequency\": 1, \"value\": 3880}, \"3881\": {\"frequency\": 1, \"value\": 3881}, \"3882\": {\"frequency\": 1, \"value\": 3882}, \"3883\": {\"frequency\": 1, \"value\": 3883}, \"3884\": {\"frequency\": 1, \"value\": 3884}, \"3885\": {\"frequency\": 1, \"value\": 3885}, \"3886\": {\"frequency\": 1, \"value\": 3886}, \"3887\": {\"frequency\": 1, \"value\": 3887}, \"3888\": {\"frequency\": 1, \"value\": 3888}, \"3889\": {\"frequency\": 1, \"value\": 3889}, \"3890\": {\"frequency\": 1, \"value\": 3890}, \"3891\": {\"frequency\": 1, \"value\": 3891}, \"3892\": {\"frequency\": 1, \"value\": 3892}, \"3893\": {\"frequency\": 1, \"value\": 3893}, \"3894\": {\"frequency\": 1, \"value\": 3894}, \"3895\": {\"frequency\": 1, \"value\": 3895}, \"3896\": {\"frequency\": 1, \"value\": 3896}, \"3897\": {\"frequency\": 1, \"value\": 3897}, \"3898\": {\"frequency\": 1, \"value\": 3898}, \"3899\": {\"frequency\": 1, \"value\": 3899}, \"3900\": {\"frequency\": 1, \"value\": 3900}, \"3901\": {\"frequency\": 1, \"value\": 3901}, \"3902\": {\"frequency\": 1, \"value\": 3902}, \"3903\": {\"frequency\": 1, \"value\": 3903}, \"3904\": {\"frequency\": 1, \"value\": 3904}, \"3905\": {\"frequency\": 1, \"value\": 3905}, \"3906\": {\"frequency\": 1, \"value\": 3906}, \"3907\": {\"frequency\": 1, \"value\": 3907}, \"3908\": {\"frequency\": 1, \"value\": 3908}, \"3909\": {\"frequency\": 1, \"value\": 3909}, \"3910\": {\"frequency\": 1, \"value\": 3910}, \"3911\": {\"frequency\": 1, \"value\": 3911}, \"3912\": {\"frequency\": 1, \"value\": 3912}, \"3913\": {\"frequency\": 1, \"value\": 3913}, \"3914\": {\"frequency\": 1, \"value\": 3914}, \"3915\": {\"frequency\": 1, \"value\": 3915}, \"3916\": {\"frequency\": 1, \"value\": 3916}, \"3917\": {\"frequency\": 1, \"value\": 3917}, \"3918\": {\"frequency\": 1, \"value\": 3918}, \"3919\": {\"frequency\": 1, \"value\": 3919}, \"3920\": {\"frequency\": 1, \"value\": 3920}, \"3921\": {\"frequency\": 1, \"value\": 3921}, \"3922\": {\"frequency\": 1, \"value\": 3922}, \"3923\": {\"frequency\": 1, \"value\": 3923}, \"3924\": {\"frequency\": 1, \"value\": 3924}, \"3925\": {\"frequency\": 1, \"value\": 3925}, \"3926\": {\"frequency\": 1, \"value\": 3926}, \"3927\": {\"frequency\": 1, \"value\": 3927}, \"3928\": {\"frequency\": 1, \"value\": 3928}, \"3929\": {\"frequency\": 1, \"value\": 3929}, \"3930\": {\"frequency\": 1, \"value\": 3930}, \"3931\": {\"frequency\": 1, \"value\": 3931}, \"3932\": {\"frequency\": 1, \"value\": 3932}, \"3933\": {\"frequency\": 1, \"value\": 3933}, \"3934\": {\"frequency\": 1, \"value\": 3934}, \"3935\": {\"frequency\": 1, \"value\": 3935}, \"3936\": {\"frequency\": 1, \"value\": 3936}, \"3937\": {\"frequency\": 1, \"value\": 3937}, \"3938\": {\"frequency\": 1, \"value\": 3938}, \"3939\": {\"frequency\": 1, \"value\": 3939}, \"3940\": {\"frequency\": 1, \"value\": 3940}, \"3941\": {\"frequency\": 1, \"value\": 3941}, \"3942\": {\"frequency\": 1, \"value\": 3942}, \"3943\": {\"frequency\": 1, \"value\": 3943}, \"3944\": {\"frequency\": 1, \"value\": 3944}, \"3945\": {\"frequency\": 1, \"value\": 3945}, \"3946\": {\"frequency\": 1, \"value\": 3946}, \"3947\": {\"frequency\": 1, \"value\": 3947}, \"3948\": {\"frequency\": 1, \"value\": 3948}, \"3949\": {\"frequency\": 1, \"value\": 3949}, \"3950\": {\"frequency\": 1, \"value\": 3950}, \"3951\": {\"frequency\": 1, \"value\": 3951}, \"3952\": {\"frequency\": 1, \"value\": 3952}, \"3953\": {\"frequency\": 1, \"value\": 3953}, \"3954\": {\"frequency\": 1, \"value\": 3954}, \"3955\": {\"frequency\": 1, \"value\": 3955}, \"3956\": {\"frequency\": 1, \"value\": 3956}, \"3957\": {\"frequency\": 1, \"value\": 3957}, \"3958\": {\"frequency\": 1, \"value\": 3958}, \"3959\": {\"frequency\": 1, \"value\": 3959}, \"3960\": {\"frequency\": 1, \"value\": 3960}, \"3961\": {\"frequency\": 1, \"value\": 3961}, \"3962\": {\"frequency\": 1, \"value\": 3962}, \"3963\": {\"frequency\": 1, \"value\": 3963}, \"3964\": {\"frequency\": 1, \"value\": 3964}, \"3965\": {\"frequency\": 1, \"value\": 3965}, \"3966\": {\"frequency\": 1, \"value\": 3966}, \"3967\": {\"frequency\": 1, \"value\": 3967}, \"3968\": {\"frequency\": 1, \"value\": 3968}, \"3969\": {\"frequency\": 1, \"value\": 3969}, \"3970\": {\"frequency\": 1, \"value\": 3970}, \"3971\": {\"frequency\": 1, \"value\": 3971}, \"3972\": {\"frequency\": 1, \"value\": 3972}, \"3973\": {\"frequency\": 1, \"value\": 3973}, \"3974\": {\"frequency\": 1, \"value\": 3974}, \"3975\": {\"frequency\": 1, \"value\": 3975}, \"3976\": {\"frequency\": 1, \"value\": 3976}, \"3977\": {\"frequency\": 1, \"value\": 3977}, \"3978\": {\"frequency\": 1, \"value\": 3978}, \"3979\": {\"frequency\": 1, \"value\": 3979}, \"3980\": {\"frequency\": 1, \"value\": 3980}, \"3981\": {\"frequency\": 1, \"value\": 3981}, \"3982\": {\"frequency\": 1, \"value\": 3982}, \"3983\": {\"frequency\": 1, \"value\": 3983}, \"3984\": {\"frequency\": 1, \"value\": 3984}, \"3985\": {\"frequency\": 1, \"value\": 3985}, \"3986\": {\"frequency\": 1, \"value\": 3986}, \"3987\": {\"frequency\": 1, \"value\": 3987}, \"3988\": {\"frequency\": 1, \"value\": 3988}, \"3989\": {\"frequency\": 1, \"value\": 3989}, \"3990\": {\"frequency\": 1, \"value\": 3990}, \"3991\": {\"frequency\": 1, \"value\": 3991}, \"3992\": {\"frequency\": 1, \"value\": 3992}, \"3993\": {\"frequency\": 1, \"value\": 3993}, \"3994\": {\"frequency\": 1, \"value\": 3994}, \"3995\": {\"frequency\": 1, \"value\": 3995}, \"3996\": {\"frequency\": 1, \"value\": 3996}, \"3997\": {\"frequency\": 1, \"value\": 3997}, \"3998\": {\"frequency\": 1, \"value\": 3998}, \"3999\": {\"frequency\": 1, \"value\": 3999}, \"4000\": {\"frequency\": 1, \"value\": 4000}, \"4001\": {\"frequency\": 1, \"value\": 4001}, \"4002\": {\"frequency\": 1, \"value\": 4002}, \"4003\": {\"frequency\": 1, \"value\": 4003}, \"4004\": {\"frequency\": 1, \"value\": 4004}, \"4005\": {\"frequency\": 1, \"value\": 4005}, \"4006\": {\"frequency\": 1, \"value\": 4006}, \"4007\": {\"frequency\": 1, \"value\": 4007}, \"4008\": {\"frequency\": 1, \"value\": 4008}, \"4009\": {\"frequency\": 1, \"value\": 4009}, \"4010\": {\"frequency\": 1, \"value\": 4010}, \"4011\": {\"frequency\": 1, \"value\": 4011}, \"4012\": {\"frequency\": 1, \"value\": 4012}, \"4013\": {\"frequency\": 1, \"value\": 4013}, \"4014\": {\"frequency\": 1, \"value\": 4014}, \"4015\": {\"frequency\": 1, \"value\": 4015}, \"4016\": {\"frequency\": 1, \"value\": 4016}, \"4017\": {\"frequency\": 1, \"value\": 4017}, \"4018\": {\"frequency\": 1, \"value\": 4018}, \"4019\": {\"frequency\": 1, \"value\": 4019}, \"4020\": {\"frequency\": 1, \"value\": 4020}, \"4021\": {\"frequency\": 1, \"value\": 4021}, \"4022\": {\"frequency\": 1, \"value\": 4022}, \"4023\": {\"frequency\": 1, \"value\": 4023}, \"4024\": {\"frequency\": 1, \"value\": 4024}, \"4025\": {\"frequency\": 1, \"value\": 4025}, \"4026\": {\"frequency\": 1, \"value\": 4026}, \"4027\": {\"frequency\": 1, \"value\": 4027}, \"4028\": {\"frequency\": 1, \"value\": 4028}, \"4029\": {\"frequency\": 1, \"value\": 4029}, \"4030\": {\"frequency\": 1, \"value\": 4030}, \"4031\": {\"frequency\": 1, \"value\": 4031}, \"4032\": {\"frequency\": 1, \"value\": 4032}, \"4033\": {\"frequency\": 1, \"value\": 4033}, \"4034\": {\"frequency\": 1, \"value\": 4034}, \"4035\": {\"frequency\": 1, \"value\": 4035}, \"4036\": {\"frequency\": 1, \"value\": 4036}, \"4037\": {\"frequency\": 1, \"value\": 4037}, \"4038\": {\"frequency\": 1, \"value\": 4038}, \"4039\": {\"frequency\": 1, \"value\": 4039}, \"4040\": {\"frequency\": 1, \"value\": 4040}, \"4041\": {\"frequency\": 1, \"value\": 4041}, \"4042\": {\"frequency\": 1, \"value\": 4042}, \"4043\": {\"frequency\": 1, \"value\": 4043}, \"4044\": {\"frequency\": 1, \"value\": 4044}, \"4046\": {\"frequency\": 1, \"value\": 4046}, \"4047\": {\"frequency\": 1, \"value\": 4047}, \"4048\": {\"frequency\": 1, \"value\": 4048}, \"4049\": {\"frequency\": 1, \"value\": 4049}, \"4050\": {\"frequency\": 1, \"value\": 4050}, \"4051\": {\"frequency\": 1, \"value\": 4051}, \"4052\": {\"frequency\": 1, \"value\": 4052}, \"4053\": {\"frequency\": 1, \"value\": 4053}, \"4054\": {\"frequency\": 1, \"value\": 4054}, \"4055\": {\"frequency\": 1, \"value\": 4055}, \"4056\": {\"frequency\": 1, \"value\": 4056}, \"4057\": {\"frequency\": 1, \"value\": 4057}, \"4058\": {\"frequency\": 1, \"value\": 4058}, \"4059\": {\"frequency\": 1, \"value\": 4059}, \"4060\": {\"frequency\": 1, \"value\": 4060}, \"4061\": {\"frequency\": 1, \"value\": 4061}, \"4062\": {\"frequency\": 1, \"value\": 4062}, \"4063\": {\"frequency\": 1, \"value\": 4063}, \"4064\": {\"frequency\": 1, \"value\": 4064}, \"4065\": {\"frequency\": 1, \"value\": 4065}, \"4066\": {\"frequency\": 1, \"value\": 4066}, \"4067\": {\"frequency\": 1, \"value\": 4067}, \"4068\": {\"frequency\": 1, \"value\": 4068}, \"4069\": {\"frequency\": 1, \"value\": 4069}, \"4070\": {\"frequency\": 1, \"value\": 4070}, \"4071\": {\"frequency\": 1, \"value\": 4071}, \"4072\": {\"frequency\": 1, \"value\": 4072}, \"4073\": {\"frequency\": 1, \"value\": 4073}, \"4074\": {\"frequency\": 1, \"value\": 4074}, \"4075\": {\"frequency\": 1, \"value\": 4075}, \"4076\": {\"frequency\": 1, \"value\": 4076}, \"4077\": {\"frequency\": 1, \"value\": 4077}, \"4078\": {\"frequency\": 1, \"value\": 4078}, \"4079\": {\"frequency\": 1, \"value\": 4079}, \"4080\": {\"frequency\": 1, \"value\": 4080}, \"4081\": {\"frequency\": 1, \"value\": 4081}, \"4082\": {\"frequency\": 1, \"value\": 4082}, \"4083\": {\"frequency\": 1, \"value\": 4083}, \"4084\": {\"frequency\": 1, \"value\": 4084}, \"4085\": {\"frequency\": 1, \"value\": 4085}, \"4086\": {\"frequency\": 1, \"value\": 4086}, \"4087\": {\"frequency\": 1, \"value\": 4087}, \"4088\": {\"frequency\": 1, \"value\": 4088}, \"4089\": {\"frequency\": 1, \"value\": 4089}, \"4090\": {\"frequency\": 1, \"value\": 4090}, \"4091\": {\"frequency\": 1, \"value\": 4091}, \"4092\": {\"frequency\": 1, \"value\": 4092}, \"4093\": {\"frequency\": 1, \"value\": 4093}, \"4094\": {\"frequency\": 1, \"value\": 4094}, \"4095\": {\"frequency\": 1, \"value\": 4095}, \"4096\": {\"frequency\": 1, \"value\": 4096}, \"4097\": {\"frequency\": 1, \"value\": 4097}, \"4098\": {\"frequency\": 1, \"value\": 4098}, \"4099\": {\"frequency\": 1, \"value\": 4099}, \"4100\": {\"frequency\": 1, \"value\": 4100}, \"4101\": {\"frequency\": 1, \"value\": 4101}, \"4102\": {\"frequency\": 1, \"value\": 4102}, \"4103\": {\"frequency\": 1, \"value\": 4103}, \"4104\": {\"frequency\": 1, \"value\": 4104}, \"4105\": {\"frequency\": 1, \"value\": 4105}, \"4106\": {\"frequency\": 1, \"value\": 4106}, \"4107\": {\"frequency\": 1, \"value\": 4107}, \"4108\": {\"frequency\": 1, \"value\": 4108}, \"4109\": {\"frequency\": 1, \"value\": 4109}, \"4110\": {\"frequency\": 1, \"value\": 4110}, \"4111\": {\"frequency\": 1, \"value\": 4111}, \"4112\": {\"frequency\": 1, \"value\": 4112}, \"4113\": {\"frequency\": 1, \"value\": 4113}, \"4114\": {\"frequency\": 1, \"value\": 4114}, \"4115\": {\"frequency\": 1, \"value\": 4115}, \"4116\": {\"frequency\": 1, \"value\": 4116}, \"4117\": {\"frequency\": 1, \"value\": 4117}, \"4118\": {\"frequency\": 1, \"value\": 4118}, \"4119\": {\"frequency\": 1, \"value\": 4119}, \"4120\": {\"frequency\": 1, \"value\": 4120}, \"4121\": {\"frequency\": 1, \"value\": 4121}, \"4122\": {\"frequency\": 1, \"value\": 4122}, \"4123\": {\"frequency\": 1, \"value\": 4123}, \"4124\": {\"frequency\": 1, \"value\": 4124}, \"4125\": {\"frequency\": 1, \"value\": 4125}, \"4126\": {\"frequency\": 1, \"value\": 4126}, \"4127\": {\"frequency\": 1, \"value\": 4127}, \"4128\": {\"frequency\": 1, \"value\": 4128}, \"4129\": {\"frequency\": 1, \"value\": 4129}, \"4130\": {\"frequency\": 1, \"value\": 4130}, \"4131\": {\"frequency\": 1, \"value\": 4131}, \"4132\": {\"frequency\": 1, \"value\": 4132}, \"4133\": {\"frequency\": 1, \"value\": 4133}, \"4134\": {\"frequency\": 1, \"value\": 4134}, \"4135\": {\"frequency\": 1, \"value\": 4135}, \"4136\": {\"frequency\": 1, \"value\": 4136}, \"4137\": {\"frequency\": 1, \"value\": 4137}, \"4138\": {\"frequency\": 1, \"value\": 4138}, \"4139\": {\"frequency\": 1, \"value\": 4139}, \"4140\": {\"frequency\": 1, \"value\": 4140}, \"4141\": {\"frequency\": 1, \"value\": 4141}, \"4142\": {\"frequency\": 1, \"value\": 4142}, \"4143\": {\"frequency\": 1, \"value\": 4143}, \"4144\": {\"frequency\": 1, \"value\": 4144}, \"4145\": {\"frequency\": 1, \"value\": 4145}, \"4146\": {\"frequency\": 1, \"value\": 4146}, \"4147\": {\"frequency\": 1, \"value\": 4147}, \"4148\": {\"frequency\": 1, \"value\": 4148}, \"4149\": {\"frequency\": 1, \"value\": 4149}, \"4150\": {\"frequency\": 1, \"value\": 4150}, \"4151\": {\"frequency\": 1, \"value\": 4151}, \"4152\": {\"frequency\": 1, \"value\": 4152}, \"4153\": {\"frequency\": 1, \"value\": 4153}, \"4154\": {\"frequency\": 1, \"value\": 4154}, \"4155\": {\"frequency\": 1, \"value\": 4155}, \"4156\": {\"frequency\": 1, \"value\": 4156}, \"4157\": {\"frequency\": 1, \"value\": 4157}, \"4158\": {\"frequency\": 1, \"value\": 4158}, \"4159\": {\"frequency\": 1, \"value\": 4159}, \"4160\": {\"frequency\": 1, \"value\": 4160}, \"4161\": {\"frequency\": 1, \"value\": 4161}, \"4162\": {\"frequency\": 1, \"value\": 4162}, \"4163\": {\"frequency\": 1, \"value\": 4163}, \"4164\": {\"frequency\": 1, \"value\": 4164}, \"4165\": {\"frequency\": 1, \"value\": 4165}, \"4166\": {\"frequency\": 1, \"value\": 4166}, \"4167\": {\"frequency\": 1, \"value\": 4167}, \"4168\": {\"frequency\": 1, \"value\": 4168}, \"4169\": {\"frequency\": 1, \"value\": 4169}, \"4170\": {\"frequency\": 1, \"value\": 4170}, \"4171\": {\"frequency\": 1, \"value\": 4171}, \"4172\": {\"frequency\": 1, \"value\": 4172}, \"4173\": {\"frequency\": 1, \"value\": 4173}, \"4174\": {\"frequency\": 1, \"value\": 4174}, \"4175\": {\"frequency\": 1, \"value\": 4175}, \"4176\": {\"frequency\": 1, \"value\": 4176}, \"4177\": {\"frequency\": 1, \"value\": 4177}, \"4178\": {\"frequency\": 1, \"value\": 4178}, \"4179\": {\"frequency\": 1, \"value\": 4179}, \"4180\": {\"frequency\": 1, \"value\": 4180}, \"4181\": {\"frequency\": 1, \"value\": 4181}, \"4182\": {\"frequency\": 1, \"value\": 4182}, \"4183\": {\"frequency\": 1, \"value\": 4183}, \"4184\": {\"frequency\": 1, \"value\": 4184}, \"4185\": {\"frequency\": 1, \"value\": 4185}, \"4186\": {\"frequency\": 1, \"value\": 4186}, \"4187\": {\"frequency\": 1, \"value\": 4187}, \"4188\": {\"frequency\": 1, \"value\": 4188}, \"4189\": {\"frequency\": 1, \"value\": 4189}, \"4190\": {\"frequency\": 1, \"value\": 4190}, \"4191\": {\"frequency\": 1, \"value\": 4191}, \"4192\": {\"frequency\": 1, \"value\": 4192}, \"4193\": {\"frequency\": 1, \"value\": 4193}, \"4194\": {\"frequency\": 1, \"value\": 4194}, \"4195\": {\"frequency\": 1, \"value\": 4195}, \"4196\": {\"frequency\": 1, \"value\": 4196}, \"4197\": {\"frequency\": 1, \"value\": 4197}, \"4198\": {\"frequency\": 1, \"value\": 4198}, \"4199\": {\"frequency\": 1, \"value\": 4199}, \"4200\": {\"frequency\": 1, \"value\": 4200}, \"4201\": {\"frequency\": 1, \"value\": 4201}, \"4202\": {\"frequency\": 1, \"value\": 4202}, \"4203\": {\"frequency\": 1, \"value\": 4203}, \"4204\": {\"frequency\": 1, \"value\": 4204}, \"4205\": {\"frequency\": 1, \"value\": 4205}, \"4206\": {\"frequency\": 1, \"value\": 4206}, \"4207\": {\"frequency\": 1, \"value\": 4207}, \"4208\": {\"frequency\": 1, \"value\": 4208}, \"4209\": {\"frequency\": 1, \"value\": 4209}, \"4210\": {\"frequency\": 1, \"value\": 4210}, \"4211\": {\"frequency\": 1, \"value\": 4211}, \"4212\": {\"frequency\": 1, \"value\": 4212}, \"4213\": {\"frequency\": 1, \"value\": 4213}, \"4214\": {\"frequency\": 1, \"value\": 4214}, \"4215\": {\"frequency\": 1, \"value\": 4215}, \"4216\": {\"frequency\": 1, \"value\": 4216}, \"4217\": {\"frequency\": 1, \"value\": 4217}, \"4218\": {\"frequency\": 1, \"value\": 4218}, \"4219\": {\"frequency\": 1, \"value\": 4219}, \"4220\": {\"frequency\": 1, \"value\": 4220}, \"4221\": {\"frequency\": 1, \"value\": 4221}, \"4222\": {\"frequency\": 1, \"value\": 4222}, \"4223\": {\"frequency\": 1, \"value\": 4223}, \"4224\": {\"frequency\": 1, \"value\": 4224}, \"4225\": {\"frequency\": 1, \"value\": 4225}, \"4226\": {\"frequency\": 1, \"value\": 4226}, \"4227\": {\"frequency\": 1, \"value\": 4227}, \"4228\": {\"frequency\": 1, \"value\": 4228}, \"4229\": {\"frequency\": 1, \"value\": 4229}, \"4230\": {\"frequency\": 1, \"value\": 4230}, \"4231\": {\"frequency\": 1, \"value\": 4231}, \"4232\": {\"frequency\": 1, \"value\": 4232}, \"4233\": {\"frequency\": 1, \"value\": 4233}, \"4234\": {\"frequency\": 1, \"value\": 4234}, \"4235\": {\"frequency\": 1, \"value\": 4235}, \"4236\": {\"frequency\": 1, \"value\": 4236}, \"4237\": {\"frequency\": 1, \"value\": 4237}, \"4238\": {\"frequency\": 1, \"value\": 4238}, \"4239\": {\"frequency\": 1, \"value\": 4239}, \"4240\": {\"frequency\": 1, \"value\": 4240}, \"4241\": {\"frequency\": 1, \"value\": 4241}, \"4242\": {\"frequency\": 1, \"value\": 4242}, \"4243\": {\"frequency\": 1, \"value\": 4243}, \"4244\": {\"frequency\": 1, \"value\": 4244}, \"4245\": {\"frequency\": 1, \"value\": 4245}, \"4246\": {\"frequency\": 1, \"value\": 4246}, \"4247\": {\"frequency\": 1, \"value\": 4247}, \"4248\": {\"frequency\": 1, \"value\": 4248}, \"4249\": {\"frequency\": 1, \"value\": 4249}, \"4250\": {\"frequency\": 1, \"value\": 4250}, \"4251\": {\"frequency\": 1, \"value\": 4251}, \"4252\": {\"frequency\": 1, \"value\": 4252}, \"4253\": {\"frequency\": 1, \"value\": 4253}, \"4254\": {\"frequency\": 1, \"value\": 4254}, \"4255\": {\"frequency\": 1, \"value\": 4255}, \"4256\": {\"frequency\": 1, \"value\": 4256}, \"4257\": {\"frequency\": 1, \"value\": 4257}, \"4258\": {\"frequency\": 1, \"value\": 4258}, \"4259\": {\"frequency\": 1, \"value\": 4259}, \"4260\": {\"frequency\": 1, \"value\": 4260}, \"4261\": {\"frequency\": 1, \"value\": 4261}, \"4262\": {\"frequency\": 1, \"value\": 4262}, \"4263\": {\"frequency\": 1, \"value\": 4263}, \"4264\": {\"frequency\": 1, \"value\": 4264}, \"4265\": {\"frequency\": 1, \"value\": 4265}, \"4266\": {\"frequency\": 1, \"value\": 4266}, \"4267\": {\"frequency\": 1, \"value\": 4267}, \"4268\": {\"frequency\": 1, \"value\": 4268}, \"4269\": {\"frequency\": 1, \"value\": 4269}, \"4270\": {\"frequency\": 1, \"value\": 4270}, \"4271\": {\"frequency\": 1, \"value\": 4271}, \"4272\": {\"frequency\": 1, \"value\": 4272}, \"4273\": {\"frequency\": 1, \"value\": 4273}, \"4274\": {\"frequency\": 1, \"value\": 4274}, \"4275\": {\"frequency\": 1, \"value\": 4275}, \"4276\": {\"frequency\": 1, \"value\": 4276}, \"4277\": {\"frequency\": 1, \"value\": 4277}, \"4278\": {\"frequency\": 1, \"value\": 4278}, \"4279\": {\"frequency\": 1, \"value\": 4279}, \"4280\": {\"frequency\": 1, \"value\": 4280}, \"4281\": {\"frequency\": 1, \"value\": 4281}, \"4282\": {\"frequency\": 1, \"value\": 4282}, \"4283\": {\"frequency\": 1, \"value\": 4283}, \"4284\": {\"frequency\": 1, \"value\": 4284}, \"4285\": {\"frequency\": 1, \"value\": 4285}, \"4286\": {\"frequency\": 1, \"value\": 4286}, \"4287\": {\"frequency\": 1, \"value\": 4287}, \"4288\": {\"frequency\": 1, \"value\": 4288}, \"4289\": {\"frequency\": 1, \"value\": 4289}, \"4290\": {\"frequency\": 1, \"value\": 4290}, \"4291\": {\"frequency\": 1, \"value\": 4291}, \"4292\": {\"frequency\": 1, \"value\": 4292}, \"4293\": {\"frequency\": 1, \"value\": 4293}, \"4294\": {\"frequency\": 1, \"value\": 4294}, \"4295\": {\"frequency\": 1, \"value\": 4295}, \"4296\": {\"frequency\": 1, \"value\": 4296}, \"4297\": {\"frequency\": 1, \"value\": 4297}, \"4298\": {\"frequency\": 1, \"value\": 4298}, \"4299\": {\"frequency\": 1, \"value\": 4299}, \"4300\": {\"frequency\": 1, \"value\": 4300}, \"4301\": {\"frequency\": 1, \"value\": 4301}, \"4302\": {\"frequency\": 1, \"value\": 4302}, \"4303\": {\"frequency\": 1, \"value\": 4303}, \"4304\": {\"frequency\": 1, \"value\": 4304}, \"4305\": {\"frequency\": 1, \"value\": 4305}, \"4306\": {\"frequency\": 1, \"value\": 4306}, \"4307\": {\"frequency\": 1, \"value\": 4307}, \"4308\": {\"frequency\": 1, \"value\": 4308}, \"4309\": {\"frequency\": 1, \"value\": 4309}, \"4310\": {\"frequency\": 1, \"value\": 4310}, \"4311\": {\"frequency\": 1, \"value\": 4311}, \"4312\": {\"frequency\": 1, \"value\": 4312}, \"4313\": {\"frequency\": 1, \"value\": 4313}, \"4314\": {\"frequency\": 1, \"value\": 4314}, \"4315\": {\"frequency\": 1, \"value\": 4315}, \"4316\": {\"frequency\": 1, \"value\": 4316}, \"4317\": {\"frequency\": 1, \"value\": 4317}, \"4318\": {\"frequency\": 1, \"value\": 4318}, \"4319\": {\"frequency\": 1, \"value\": 4319}, \"4320\": {\"frequency\": 1, \"value\": 4320}, \"4321\": {\"frequency\": 1, \"value\": 4321}, \"4322\": {\"frequency\": 1, \"value\": 4322}, \"4323\": {\"frequency\": 1, \"value\": 4323}, \"4324\": {\"frequency\": 1, \"value\": 4324}, \"4325\": {\"frequency\": 1, \"value\": 4325}, \"4326\": {\"frequency\": 1, \"value\": 4326}, \"4327\": {\"frequency\": 1, \"value\": 4327}, \"4328\": {\"frequency\": 1, \"value\": 4328}, \"4329\": {\"frequency\": 1, \"value\": 4329}, \"4330\": {\"frequency\": 1, \"value\": 4330}, \"4331\": {\"frequency\": 1, \"value\": 4331}, \"4332\": {\"frequency\": 1, \"value\": 4332}, \"4333\": {\"frequency\": 1, \"value\": 4333}, \"4334\": {\"frequency\": 1, \"value\": 4334}, \"4335\": {\"frequency\": 1, \"value\": 4335}, \"4336\": {\"frequency\": 1, \"value\": 4336}, \"4337\": {\"frequency\": 1, \"value\": 4337}, \"4338\": {\"frequency\": 1, \"value\": 4338}, \"4339\": {\"frequency\": 1, \"value\": 4339}, \"4340\": {\"frequency\": 1, \"value\": 4340}, \"4341\": {\"frequency\": 1, \"value\": 4341}, \"4342\": {\"frequency\": 1, \"value\": 4342}, \"4343\": {\"frequency\": 1, \"value\": 4343}, \"4344\": {\"frequency\": 1, \"value\": 4344}, \"4345\": {\"frequency\": 1, \"value\": 4345}, \"4346\": {\"frequency\": 1, \"value\": 4346}, \"4347\": {\"frequency\": 1, \"value\": 4347}, \"4348\": {\"frequency\": 1, \"value\": 4348}, \"4349\": {\"frequency\": 1, \"value\": 4349}, \"4350\": {\"frequency\": 1, \"value\": 4350}, \"4351\": {\"frequency\": 1, \"value\": 4351}, \"4352\": {\"frequency\": 1, \"value\": 4352}, \"4353\": {\"frequency\": 1, \"value\": 4353}, \"4354\": {\"frequency\": 1, \"value\": 4354}, \"4355\": {\"frequency\": 1, \"value\": 4355}, \"4356\": {\"frequency\": 1, \"value\": 4356}, \"4357\": {\"frequency\": 1, \"value\": 4357}, \"4358\": {\"frequency\": 1, \"value\": 4358}, \"4359\": {\"frequency\": 1, \"value\": 4359}, \"4360\": {\"frequency\": 1, \"value\": 4360}, \"4361\": {\"frequency\": 1, \"value\": 4361}, \"4362\": {\"frequency\": 1, \"value\": 4362}, \"4363\": {\"frequency\": 1, \"value\": 4363}, \"4364\": {\"frequency\": 1, \"value\": 4364}, \"4365\": {\"frequency\": 1, \"value\": 4365}, \"4366\": {\"frequency\": 1, \"value\": 4366}, \"4367\": {\"frequency\": 1, \"value\": 4367}, \"4368\": {\"frequency\": 1, \"value\": 4368}, \"4369\": {\"frequency\": 1, \"value\": 4369}, \"4370\": {\"frequency\": 1, \"value\": 4370}, \"4371\": {\"frequency\": 1, \"value\": 4371}, \"4372\": {\"frequency\": 1, \"value\": 4372}, \"4373\": {\"frequency\": 1, \"value\": 4373}, \"4374\": {\"frequency\": 1, \"value\": 4374}, \"4375\": {\"frequency\": 1, \"value\": 4375}, \"4376\": {\"frequency\": 1, \"value\": 4376}, \"4377\": {\"frequency\": 1, \"value\": 4377}, \"4378\": {\"frequency\": 1, \"value\": 4378}, \"4379\": {\"frequency\": 1, \"value\": 4379}, \"4380\": {\"frequency\": 1, \"value\": 4380}, \"4381\": {\"frequency\": 1, \"value\": 4381}, \"4382\": {\"frequency\": 1, \"value\": 4382}, \"4383\": {\"frequency\": 1, \"value\": 4383}, \"4384\": {\"frequency\": 1, \"value\": 4384}, \"4385\": {\"frequency\": 1, \"value\": 4385}, \"4386\": {\"frequency\": 1, \"value\": 4386}, \"4387\": {\"frequency\": 1, \"value\": 4387}, \"4388\": {\"frequency\": 1, \"value\": 4388}, \"4389\": {\"frequency\": 1, \"value\": 4389}, \"4390\": {\"frequency\": 1, \"value\": 4390}, \"4391\": {\"frequency\": 1, \"value\": 4391}, \"4392\": {\"frequency\": 1, \"value\": 4392}, \"4393\": {\"frequency\": 1, \"value\": 4393}, \"4394\": {\"frequency\": 1, \"value\": 4394}, \"4395\": {\"frequency\": 1, \"value\": 4395}, \"4396\": {\"frequency\": 1, \"value\": 4396}, \"4397\": {\"frequency\": 1, \"value\": 4397}, \"4398\": {\"frequency\": 1, \"value\": 4398}, \"4399\": {\"frequency\": 1, \"value\": 4399}, \"4400\": {\"frequency\": 1, \"value\": 4400}, \"4401\": {\"frequency\": 1, \"value\": 4401}, \"4402\": {\"frequency\": 1, \"value\": 4402}, \"4403\": {\"frequency\": 1, \"value\": 4403}, \"4404\": {\"frequency\": 1, \"value\": 4404}}, \"mean\": 2799.0}, \"university\": {\"complete\": true, \"numeric\": false, \"num_unique\": 82, \"num_undefined\": 0, \"progress\": 1.0, \"frequent_items\": {\"\": {\"frequency\": 5293, \"value\": \"\"}, \"Indian Institute of Technology Delhi\": {\"frequency\": 1, \"value\": \"Indian Institute ...\"}, \"Berklee College of Music\": {\"frequency\": 4, \"value\": \"Berklee College of ...\"}, \"Brown University\": {\"frequency\": 4, \"value\": \"Brown University\"}, \"Rice University\": {\"frequency\": 5, \"value\": \"Rice University\"}, \"open2study-industry\": {\"frequency\": 1, \"value\": \"open2study- ...\"}, \"Stanford University\": {\"frequency\": 26, \"value\": \"Stanford ...\"}, \"University of Michigan\": {\"frequency\": 6, \"value\": \"University of ...\"}, \"Wesleyan University\": {\"frequency\": 5, \"value\": \"Wesleyan ...\"}, \"UCSF\": {\"frequency\": 3, \"value\": \"UCSF\"}, \"Flat World Knowledge\": {\"frequency\": 1, \"value\": \"Flat World ...\"}, \"University of Washington\": {\"frequency\": 13, \"value\": \"University of ...\"}, \"Kirkwood Community College\": {\"frequency\": 1, \"value\": \"Kirkwood Community ...\"}, \"University of TorontoX\": {\"frequency\": 2, \"value\": \"University of ...\"}, \"Harvard University\": {\"frequency\": 17, \"value\": \"Harvard University\"}, \"Academic Partnerships\": {\"frequency\": 1, \"value\": \"Academic ...\"}, \"Mount Sinai School of Medicine\": {\"frequency\": 3, \"value\": \"Mount Sinai School ...\"}, \"Ohio State University\": {\"frequency\": 2, \"value\": \"Ohio State ...\"}, \"MIT\": {\"frequency\": 16, \"value\": \"MIT\"}, \"California Institute of Technology\": {\"frequency\": 4, \"value\": \"California ...\"}, \"Concordia University Wisconsin\": {\"frequency\": 1, \"value\": \"Concordia ...\"}, \"PekingX\": {\"frequency\": 4, \"value\": \"PekingX\"}, \"Marquette University\": {\"frequency\": 1, \"value\": \"Marquette ...\"}, \"TsinghuaX\": {\"frequency\": 2, \"value\": \"TsinghuaX\"}, \"griffith-university\": {\"frequency\": 1, \"value\": \"griffith- ...\"}, \"UC Berkeley\": {\"frequency\": 10, \"value\": \"UC Berkeley\"}, \"Johns Hopkins University\": {\"frequency\": 8, \"value\": \"Johns Hopkins ...\"}, \"University of Maryland, College Park\": {\"frequency\": 4, \"value\": \"University of ...\"}, \"UC Irvine\": {\"frequency\": 5, \"value\": \"UC Irvine\"}, \"Elements of Pain\": {\"frequency\": 1, \"value\": \"Elements of Pain\"}, \"The University of British Columbia\": {\"frequency\": 1, \"value\": \"The University of ...\"}, \"Georgetown University\": {\"frequency\": 3, \"value\": \"Georgetown ...\"}, \"macquarie-graduate-school-of-management\": {\"frequency\": 1, \"value\": \"macquarie- ...\"}, \"Otis College of Art and Design\": {\"frequency\": 1, \"value\": \"Otis College of ...\"}, \"Bowling Green State University\": {\"frequency\": 1, \"value\": \"Bowling Green ...\"}, \"Hasso Plattner Institut\": {\"frequency\": 1, \"value\": \"Hasso Plattner ...\"}, \"MemoirClass.com\": {\"frequency\": 1, \"value\": \"MemoirClass.com\"}, \"edX\": {\"frequency\": 1, \"value\": \"edX\"}, \"Kyoto University\": {\"frequency\": 1, \"value\": \"Kyoto University\"}, \"Ecole Polytechnique Federale de Lausanne\": {\"frequency\": 4, \"value\": \"Ecole ...\"}, \"University of Pittsburgh\": {\"frequency\": 5, \"value\": \"University of ...\"}, \"RiceX\": {\"frequency\": 2, \"value\": \"RiceX\"}, \"curtin-university\": {\"frequency\": 1, \"value\": \"curtin-university\"}, \"University of Pennsylvania\": {\"frequency\": 16, \"value\": \"University of ...\"}, \"Gannon University\": {\"frequency\": 1, \"value\": \"Gannon University\"}, \"San Diego County Office of Education\": {\"frequency\": 1, \"value\": \"San Diego County ...\"}, \"Delft University of Technology\": {\"frequency\": 2, \"value\": \"Delft University ...\"}, \"McHenry County College\": {\"frequency\": 1, \"value\": \"McHenry County ...\"}, \"Shaping Tomorrow\": {\"frequency\": 1, \"value\": \"Shaping Tomorrow\"}, \"Wellesley College\": {\"frequency\": 4, \"value\": \"Wellesley College\"}, \"Arizona State University\": {\"frequency\": 1, \"value\": \"Arizona State ...\"}, \"Center for Creative Leadership\": {\"frequency\": 1, \"value\": \"Center for ...\"}, \"Columbia University\": {\"frequency\": 1, \"value\": \"Columbia ...\"}, \"University of Virginia\": {\"frequency\": 3, \"value\": \"University of ...\"}, \"Duke University\": {\"frequency\": 10, \"value\": \"Duke University\"}, \"Georgia Institute of Technology\": {\"frequency\": 6, \"value\": \"Georgia Institute ...\"}, \"Broward College\": {\"frequency\": 1, \"value\": \"Broward College\"}, \"enterprise-architects\": {\"frequency\": 1, \"value\": \"enterprise- ...\"}, \"Barry University\": {\"frequency\": 1, \"value\": \"Barry University\"}, \"Princeton University\": {\"frequency\": 7, \"value\": \"Princeton ...\"}, \"Canvas Network\": {\"frequency\": 7, \"value\": \"Canvas Network\"}, \"Hebrew University of Jerusalem\": {\"frequency\": 3, \"value\": \"Hebrew University ...\"}, \"The University of Texas at Austin\": {\"frequency\": 7, \"value\": \"The University of ...\"}, \"University of Edinburgh\": {\"frequency\": 6, \"value\": \"University of ...\"}, \"JER Online\": {\"frequency\": 1, \"value\": \"JER Online\"}, \"University of South Florida\": {\"frequency\": 2, \"value\": \"University of ...\"}, \"Michigan State University\": {\"frequency\": 1, \"value\": \"Michigan State ...\"}, \"CaltechX\": {\"frequency\": 1, \"value\": \"CaltechX\"}, \"Seattle Central Community College\": {\"frequency\": 4, \"value\": \"Seattle Central ...\"}, \"Emory University\": {\"frequency\": 3, \"value\": \"Emory University\"}, \"University of Toronto\": {\"frequency\": 5, \"value\": \"University of ...\"}, \"The Hong Kong University of Science and Technology\": {\"frequency\": 3, \"value\": \"The Hong Kong ...\"}, \"American College of Education\": {\"frequency\": 1, \"value\": \"American College ...\"}, \"Renton Technical College\": {\"frequency\": 1, \"value\": \"Renton Technical ...\"}, \"University of Melbourne\": {\"frequency\": 7, \"value\": \"University of ...\"}, \"University of Central Florida\": {\"frequency\": 2, \"value\": \"University of ...\"}, \"San Diego State University\": {\"frequency\": 1, \"value\": \"San Diego State ...\"}, \"Flatworld Knowledge\": {\"frequency\": 1, \"value\": \"Flatworld ...\"}, \"Bellevue University\": {\"frequency\": 1, \"value\": \"Bellevue ...\"}, \"Utah State University\": {\"frequency\": 1, \"value\": \"Utah State ...\"}, \"EPFLx\": {\"frequency\": 1, \"value\": \"EPFLx\"}, \"University of Illinois at Urbana-Champaign\": {\"frequency\": 10, \"value\": \"University of ...\"}, \"Clemson University\": {\"frequency\": 2, \"value\": \"Clemson University\"}}, \"size\": 5597}}, \"selected_variable\": {\"name\": [\"courses\"], \"descriptives\": {\"rows\": 5597, \"columns\": 7}, \"view_component\": \"Summary\", \"view_file\": \"sframe\", \"view_params\": {\"y\": null, \"x\": null, \"columns\": [\"course_id\", \"title\", \"avg_rating\", \"workload\", \"university\", \"difficulty\", \"provider\"], \"view\": null}, \"view_components\": [\"Summary\", \"Table\", \"Bar Chart\", \"BoxWhisker Plot\", \"Line Chart\", \"Scatter Plot\", \"Heat Map\", \"Plots\"], \"type\": \"SFrame\", \"columns\": [{\"dtype\": \"int\", \"name\": \"course_id\"}, {\"dtype\": \"str\", \"name\": \"title\"}, {\"dtype\": \"float\", \"name\": \"avg_rating\"}, {\"dtype\": \"str\", \"name\": \"workload\"}, {\"dtype\": \"str\", \"name\": \"university\"}, {\"dtype\": \"str\", \"name\": \"difficulty\"}, {\"dtype\": \"str\", \"name\": \"provider\"}], \"column_identifiers\": [\"workload\", \"title\", \"avg_rating\", \"difficulty\", \"provider\", \"course_id\", \"university\"]}, \"columns\": [{\"dtype\": \"int\", \"name\": \"course_id\"}, {\"dtype\": \"str\", \"name\": \"title\"}, {\"dtype\": \"float\", \"name\": \"avg_rating\"}, {\"dtype\": \"str\", \"name\": \"workload\"}, {\"dtype\": \"str\", \"name\": \"university\"}, {\"dtype\": \"str\", \"name\": \"difficulty\"}, {\"dtype\": \"str\", \"name\": \"provider\"}]}, e);\n", " });\n", " })();\n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Get the meta data of the courses\n", "courses = gl.SFrame.read_csv('/Users/chengjun/GitHub/cjc2016/data/cursos.dat', header=False, delimiter='|', verbose=False)\n", "courses.rename({'X1':'course_id', 'X2':'title', 'X3':'avg_rating', \n", " 'X4':'workload', 'X5':'university', 'X6':'difficulty', 'X7':'provider'}).show()\n", "\n", "courses = courses[['course_id', 'title', 'provider']]\n", "results = recs.join(courses, on='course_id', how='inner')\n", "\n", "# Populate observed user-course data with course info\n", "userset = frozenset(users)\n", "ix = sf['user_id'].apply(lambda x: x in userset, int) \n", "user_data = sf[ix]\n", "user_data = user_data.join(courses, on='course_id')[['user_id', 'title', 'provider']]" ] }, { "cell_type": "code", "execution_count": 23, "metadata": { "collapsed": false, "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "User: 1\n", "We were told that the user liked these courses: \n", "+-------------------------------+----------+\n", "| title | provider |\n", "+-------------------------------+----------+\n", "| An Introduction to Interac... | coursera |\n", "+-------------------------------+----------+\n", "[1 rows x 2 columns]\n", "\n", "We recommend these other courses:\n", "+-------+----------+\n", "| title | provider |\n", "+-------+----------+\n", "+-------+----------+\n", "[0 rows x 2 columns]\n", "\n", "\n", "User: 2\n", "We were told that the user liked these courses: \n", "+-------------------------------+----------+\n", "| title | provider |\n", "+-------------------------------+----------+\n", "| An Introduction to Interac... | coursera |\n", "+-------------------------------+----------+\n", "[1 rows x 2 columns]\n", "\n", "We recommend these other courses:\n", "+-------+----------+\n", "| title | provider |\n", "+-------+----------+\n", "+-------+----------+\n", "[0 rows x 2 columns]\n", "\n", "\n", "User: 3\n", "We were told that the user liked these courses: \n", "+-------------------------------+----------+\n", "| title | provider |\n", "+-------------------------------+----------+\n", "| An Introduction to Interac... | coursera |\n", "+-------------------------------+----------+\n", "[1 rows x 2 columns]\n", "\n", "We recommend these other courses:\n", "+-------+----------+\n", "| title | provider |\n", "+-------+----------+\n", "+-------+----------+\n", "[0 rows x 2 columns]\n", "\n", "\n", "User: 4\n", "We were told that the user liked these courses: \n", "+-------------------------------+----------+\n", "| title | provider |\n", "+-------------------------------+----------+\n", "| A Beginner's Guide to ... | coursera |\n", "| Gamification | coursera |\n", "+-------------------------------+----------+\n", "[2 rows x 2 columns]\n", "\n", "We recommend these other courses:\n", "+-------+----------+\n", "| title | provider |\n", "+-------+----------+\n", "+-------+----------+\n", "[0 rows x 2 columns]\n", "\n", "\n", "User: 5\n", "We were told that the user liked these courses: \n", "+-------------------------------+----------+\n", "| title | provider |\n", "+-------------------------------+----------+\n", "| Web Intelligence and Big Data | coursera |\n", "+-------------------------------+----------+\n", "[1 rows x 2 columns]\n", "\n", "We recommend these other courses:\n", "+-------+----------+\n", "| title | provider |\n", "+-------+----------+\n", "+-------+----------+\n", "[0 rows x 2 columns]\n", "\n", "\n" ] } ], "source": [ "# Print out some recommendations \n", "for i in range(5):\n", " user = list(users)[i]\n", " print \"User: \" + str(i + 1)\n", " user_obs = user_data[user_data['user_id'] == user].head(K)\n", " del user_obs['user_id']\n", " user_recs = results[results['user_id'] == str(user)][['title', 'provider']]\n", "\n", " print \"We were told that the user liked these courses: \"\n", " print user_obs.head(K)\n", "\n", " print \"We recommend these other courses:\"\n", " print user_recs.head(K)\n", "\n", " print \"\"" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Readings\n", "- (Looking for more details about the modules and functions? Check out the API docs.)\n", "- Toby Segaran, 2007, Programming Collective Intelligence. O'Reilly. Chapter 2 Making Recommendations\n", " - programming-collective-intelligence-code/blob/master/chapter2/recommendations.py\n", "- 项亮 2012 推荐系统实践 人民邮电出版社" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "celltoolbar": "Slideshow", "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.11" } }, "nbformat": 4, "nbformat_minor": 0 }