PageRenderTime 51ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/projecte eclipse/TI/data/2011-documentos/62/2011-62-014.html

https://gitlab.com/bernagg/TI
HTML | 455 lines | 380 code | 68 blank | 7 comment | 0 complexity | ff02ad0e935d2e1a5dbf02a3e72e0fe1 MD5 | raw file
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  4. <title>Old Nabble - Database World (DBWorld) - [Dbworld] UPDATE: Workshop on Ubiquitous Crowdsourcing at UbiComp 2010 - CfP</title>
  5. <link rel="stylesheet" href="/site6.css" type="text/css" />
  6. <script type="text/javascript" src="/util/jquery.pack.js"></script>
  7. <script type="text/javascript" src="/util/nabbledropdown.pack.js"></script>
  8. <script type="text/javascript" src="/Javascript.jtp"></script>
  9. <script type="text/javascript">
  10. Nabble.setVar("skin",null);
  11. </script>
  12. <script type="text/javascript">
  13. var f = 729;
  14. if (Nabble.isEmbedded) {
  15. f = Nabble.embedForumID;
  16. }
  17. if (f) {
  18. Nabble.setVar('customStyle', f);
  19. document.write('<link rel="stylesheet" hr' + 'ef="/catalog/CustomStyle.jtp?forum=' + f + '" type="text/css" />');
  20. }
  21. </script>
  22. <script type="text/javascript">
  23. Nabble.setFontSize();
  24. </script>
  25. <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
  26. <script src="http://old.nabble.com/static/analytics.js?5" type="text/javascript"></script>
  27. <script type="text/javascript">
  28. Nabble.page = 'forum.TopicDump';
  29. </script>
  30. <META NAME="description" CONTENT="[Dbworld] UPDATE: Workshop on Ubiquitous Crowdsourcing at UbiComp 2010 - CfP. Summary: Crowdsourcing is successfully engaging networked people to collect...">
  31. <META NAME="keywords" CONTENT="update, cfp, workshop, crowdsourcing, dbworld, at, on, 2010, ubiquitous, world, database, ubicomp">
  32. <META NAME="robots" CONTENT="index,follow">
  33. <script>
  34. // flagging
  35. Nabble.setFlag = function(postId) {
  36. if( this.user==null ) {
  37. if( confirm(
  38. "You must be logged in to flag a message.\n"
  39. +"Would you like to login now?"
  40. ) ) {
  41. parent.location = "/user/Login.jtp?nextUrl="+encodeURIComponent(parent.location);
  42. }
  43. return;
  44. }
  45. this.isFlagged[postId] = !this.isFlagged[postId];
  46. parent.location = "/forum/Flag.jtp?post=" + postId + "&flag=" + this.isFlagged[postId];
  47. this.showFlag(postId);
  48. };
  49. Nabble.flaggedImg = new Image();
  50. Nabble.flaggedImg.src = "/images/icon_flagged.png";
  51. Nabble.unflaggedImg = new Image();
  52. Nabble.unflaggedImg.src = "/images/icon_unflagged.png";
  53. Nabble.showFlag = function(postId) {
  54. var img = this.get("nabble.flag"+postId);
  55. if( this.isFlagged[postId] ) {
  56. img.src = this.flaggedImg.src;
  57. img.alt = "Flagged, click to clear flag";
  58. } else {
  59. img.src = this.unflaggedImg.src;
  60. img.alt = "Click to flag this post";
  61. }
  62. this.get("nabble.aflag"+postId).title = img.alt;
  63. }
  64. // rating
  65. Nabble.emptyStar = new Image();
  66. Nabble.emptyStar.src = "/images/icon_star_grey.png";
  67. Nabble.ratedStar = new Image();
  68. Nabble.ratedStar.src = "/images/icon_star_red.png";
  69. Nabble.emptySpam = new Image();
  70. Nabble.emptySpam.src = "/images/icon_blocked_gray.png";
  71. Nabble.ratedSpam = new Image();
  72. Nabble.ratedSpam.src = "/images/icon_blocked_red.png";
  73. Nabble.clicked = function(postId,n) {
  74. if( this.user==null ) {
  75. if( confirm(
  76. "You must be logged in to rate a post.\n"
  77. +"Would you like to login now?"
  78. ) ) {
  79. parent.location = "/user/Login.jtp?nextUrl="+encodeURIComponent(self.location);
  80. }
  81. return;
  82. }
  83. this.ratedStars[postId] = n;
  84. Nabble.loadScript("/rating/SetRating.jtp?post="+postId+"&rating="+n+"&pwd="+this.getCookie("password"));
  85. };
  86. Nabble.mouseover = function(postId,n) {
  87. this.get('nabble.spam'+postId).src = n==0 ? this.ratedSpam.src : this.emptySpam.src;
  88. for( i=1; i<=n; i++ ) {
  89. this.get('nabble.star'+postId+'-'+i).src = this.ratedStar.src;
  90. }
  91. for( ; i<=5; i++ ) {
  92. this.get('nabble.star'+postId+'-'+i).src = this.emptyStar.src;
  93. }
  94. status = n == -1 ? null : this.get('nabble.star'+postId+'-'+n).alt;
  95. this.get("nabble.descriptor"+postId).innerHTML =
  96. n == -1 ? "Clear Rating" :
  97. [
  98. "Spam",
  99. "Poor Post",
  100. "Below Average Post",
  101. "Average Post",
  102. "Above Average Post",
  103. "Excellent Post",
  104. ][n];
  105. };
  106. Nabble.mouseout = function(postId) {
  107. this.get('nabble.spam'+postId).src = this.ratedStars[postId]==0 ? this.ratedSpam.src : this.emptySpam.src;
  108. for( i=1; i<=this.ratedStars[postId]; i++ ) {
  109. this.get('nabble.star'+postId+'-'+i).src = this.ratedStar.src;
  110. }
  111. for( ; i<=5; i++ ) {
  112. this.get('nabble.star'+postId+'-'+i).src = this.emptyStar.src;
  113. }
  114. status = defaultStatus;
  115. this.get("nabble.descriptor"+postId).innerHTML = '- Use ratings to moderate (<a title="Click for more info" href="http://old.nabble.com/help/Answer.jtp?id=16">?</a>)';
  116. };
  117. Nabble.setEditAlert = function(alertId) {
  118. var link = this.get('nabble.alertlink');
  119. link.href = "/alerts/EmailAlerts.jtp?id="+alertId+"&from=modify&back="+encodeURIComponent(self.location);
  120. link.innerHTML = 'Edit alert';
  121. };
  122. Nabble.searchterms = Nabble.getSearchterms();
  123. if( Nabble.gquery!=null && Nabble.hideAd )
  124. Nabble.hasAdSense = false;
  125. Nabble.tview = "dump";
  126. Nabble.setView = function(newView,post) {
  127. Nabble.setVar("tview",newView);
  128. if (newView=="newthreaded")
  129. var url = "http://old.nabble.com/-Dbworld--UPDATE%3A-Workshop-on-Ubiquitous-Crowdsourcing-at-UbiComp-2010---CfP-tt29183997.html";
  130. else if (newView=="newchron")
  131. var url = "http://old.nabble.com/-Dbworld--UPDATE%3A-Workshop-on-Ubiquitous-Crowdsourcing-at-UbiComp-2010---CfP-tc29183997.html";
  132. else
  133. var url = "http://old.nabble.com/-Dbworld--UPDATE%3A-Workshop-on-Ubiquitous-Crowdsourcing-at-UbiComp-2010---CfP-to29183997.html";
  134. if( post != null )
  135. url += "#a" + post;
  136. location.replace(url);
  137. };
  138. Nabble.cur = location.hash ? location.hash.substr(2) : null;
  139. Nabble.setMarker = function(post) {
  140. if( Nabble.cur ) {
  141. var t = Nabble.get( "nabble.i" + Nabble.cur );
  142. if( t ) {
  143. t.style.visibility = "hidden";
  144. }
  145. }
  146. Nabble.cur = post;
  147. var t = Nabble.get( "nabble.i" + Nabble.cur );
  148. if( t ) {
  149. t.style.visibility = "visible";
  150. }
  151. }
  152. Nabble.messageTextWidth();
  153. $(document).ready(function(){
  154. hideQuotes();
  155. });
  156. </script>
  157. </head>
  158. <body embed="fixScroll">
  159. <script>
  160. Nabble.addCssRule(document.styleSheets[0],'.nabble a:link','color:'+document.linkColor);
  161. Nabble.addCssRule(document.styleSheets[0],'.nabble a:visited','color:'+document.vlinkColor);
  162. </script>
  163. <div class="nabble" id="nabble">
  164. <div class="top-bar">
  165. <div class="breadcrumbs" style="float:left;">
  166. <span id="nabble.root">
  167. <script type="text/javascript">
  168. if (!Nabble.isEmbedded) {
  169. document.write('<a href="http://www.nabble.com" target="_top">Nabble</a> | <a href="http://old.nabble.com/" target="_top">Old Nabble1</a>');
  170. } else if (false) {
  171. document.write('<a href="' + top.nabbleinfo.forumUrl + '">Back to the forum</a>');
  172. }
  173. </script>
  174. </span>
  175. <span id="nabble.path">
  176. <div class="weak-color" style="display:inline">|&nbsp;</div><nobr><a href="http://old.nabble.com/Database-World-%28DBWorld%29-f729.html" embed="fixTarget[729]" target="_top" >Database World (DBWorld)</a></nobr>
  177. </span>
  178. </div>
  179. <div style="text-align:right;">
  180. <span style="white-space:nowrap;" id="nabble-user-header"></span>
  181. </div>
  182. </div>
  183. <div style="clear:both;"></div>
  184. <script type="text/javascript">
  185. Nabble.userHeader(729);
  186. </script>
  187. <h1 style="margin-top: .25em;">[Dbworld] UPDATE: Workshop on Ubiquitous Crowdsourcing at UbiComp 2010 - CfP</h1>
  188. <table style="width: 100%;margin: .5em 0 1em;border-collapse:collapse;">
  189. <tr>
  190. <td>
  191. <div style="float:left;white-space:nowrap">
  192. View:
  193. <select id="nabble.viewSelect" onchange="Nabble.setView(this.value,Nabble.cur)">
  194. <option value="threaded">Threaded</option>
  195. <option value="chron">Chronologically</option>
  196. <option value="dump">All Messages</option>
  197. </select>
  198. <script>
  199. Nabble.selectOption(Nabble.get("nabble.viewSelect"),Nabble.tview);
  200. </script>
  201. <a href="javascript:Nabble.setView('newthreaded',Nabble.cur)" style="font-size:80%">New views</a>
  202. </div>
  203. <div style="float:right;white-space:nowrap">
  204. 1 Messages
  205. &mdash;
  206. <span style="white-space: nowrap;">Rating Filter:</span>
  207. <select onchange="Nabble.setTop(this.value);">
  208. <option value="http://old.nabble.com/-Dbworld--UPDATE%3A-Workshop-on-Ubiquitous-Crowdsourcing-at-UbiComp-2010---CfP-td29183997r0.html" >0</option>
  209. <option value="http://old.nabble.com/-Dbworld--UPDATE%3A-Workshop-on-Ubiquitous-Crowdsourcing-at-UbiComp-2010---CfP-td29183997r1.html" >1</option>
  210. <option value="http://old.nabble.com/-Dbworld--UPDATE%3A-Workshop-on-Ubiquitous-Crowdsourcing-at-UbiComp-2010---CfP-td29183997.html" selected >2</option>
  211. <option value="http://old.nabble.com/-Dbworld--UPDATE%3A-Workshop-on-Ubiquitous-Crowdsourcing-at-UbiComp-2010---CfP-td29183997r3.html" >3</option>
  212. <option value="http://old.nabble.com/-Dbworld--UPDATE%3A-Workshop-on-Ubiquitous-Crowdsourcing-at-UbiComp-2010---CfP-td29183997r4.html" >4</option>
  213. <option value="http://old.nabble.com/-Dbworld--UPDATE%3A-Workshop-on-Ubiquitous-Crowdsourcing-at-UbiComp-2010---CfP-td29183997r5.html" >5</option>
  214. </select>
  215. &nbsp;
  216. <a id="nabble.alertlink" href="/alerts/EmailAlerts.jtp?topic=9763319&from=new" rel="nofollow" embed="fixTarget" target="_top">Alert me</a>
  217. &nbsp;
  218. <span id="nabble.assign"></span>
  219. </div>
  220. </td>
  221. </tr>
  222. </table>
  223. <style type="text/css">
  224. .nabble .chron-dump-table td {
  225. padding: .8em .4em 1.25em .8em;
  226. border-bottom-width: 1px;
  227. border-bottom-style: solid;
  228. }
  229. .nabble .chron-dump-table td h2 {
  230. font-weight: bold;
  231. font-size: 1.2em;
  232. display: inline;
  233. margin-left: 0;
  234. margin-right: .6em;
  235. }
  236. .nabble .chron-dump-table td.current-message {
  237. width: 1.7em;
  238. padding-top: 1.25em;
  239. }
  240. .nabble .chron-dump-table td div.message-details {
  241. margin: .75em 0;
  242. }
  243. .nabble .chron-dump-table td div.message-details a {
  244. text-decoration: none;
  245. }
  246. .nabble .chron-dump-table td div.message-details a:hover {
  247. text-decoration: underline;
  248. }
  249. </style>
  250. <table class="chron-dump-table" style="width: 100%;border-collapse: collapse;">
  251. <tr valign="top">
  252. <!-- Current Message -->
  253. <td class="current-message">
  254. <span id="nabble.i29183997" style="visibility:hidden;"><img alt="" width="12" height="12" src="/images/icon_tri.png" align="absmiddle" /></span><br />
  255. </td>
  256. <td>
  257. <!-- Subject -->
  258. <a name="a29183997" />
  259. <h2>[Dbworld] UPDATE: Workshop on Ubiquitous Crowdsourcing at UbiComp 2010 - CfP</h2><a id="nabble.aflag29183997" href="javascript: void Nabble.setFlag(29183997);"><img id="nabble.flag29183997" src="/images/icon_unflagged.png" width="15" height="15" border="0" onmouseover='status = alt; return true;' onmouseout='status = defaultStatus; return true;' /></a>
  260. <!-- /Subject -->
  261. <!-- Message Actions -->
  262. <span id='nabble.rating29183997'>
  263. <script>document.write(Nabble.ratingStars(3));</script>
  264. </span>
  265. <div class="message-actions weak-color">
  266. <p class="message-actions1">
  267. by <script>document.write('<a href=\"' +'/user/UserProfile' + '.jtp?'+'user=1750484\" rel=\"nofollow\" ' + Nabble.embeddedTarget('_top') + '>');</script>Ohad Greenshpan<script>document.write('</a>');</script>
  268. <span class="weak-color"><script>document.write(Nabble.formatDateLong(new Date(1279288261000)));</script></span> ::
  269. Rate this Message:
  270. <a href="#" title="Click to mark as Spam" onmouseover='Nabble.mouseover(29183997,0); return true;' onmouseout='Nabble.mouseout(29183997); return true;' onclick='Nabble.clicked(29183997,0); return false;'><img id="nabble.spam29183997" height="12" width="12" alt="" border="0" style="vertical-align:middle;" /></a>
  271. <a href="#" title="Click to rate as Poor Post" onmouseover='Nabble.mouseover(29183997,1); return true;' onmouseout='Nabble.mouseout(29183997); return true;' onclick='Nabble.clicked(29183997,1); return false;'><img id="nabble.star29183997-1" height="12" width="12" alt="" border="0" style="vertical-align:middle;" /></a><a href="#" title="Click to rate as Below Average Post" onmouseover='Nabble.mouseover(29183997,2); return true;' onmouseout='Nabble.mouseout(29183997); return true;' onclick='Nabble.clicked(29183997,2); return false;'><img id="nabble.star29183997-2" height="12" width="12" alt="" border="0" style="vertical-align:middle;" /></a><a href="#" title="Click to rate as Average Post" onmouseover='Nabble.mouseover(29183997,3); return true;' onmouseout='Nabble.mouseout(29183997); return true;' onclick='Nabble.clicked(29183997,3); return false;'><img id="nabble.star29183997-3" height="12" width="12" alt="" border="0" style="vertical-align:middle;" /></a><a href="#" title="Click to rate as Above Average Post" onmouseover='Nabble.mouseover(29183997,4); return true;' onmouseout='Nabble.mouseout(29183997); return true;' onclick='Nabble.clicked(29183997,4); return false;'><img id="nabble.star29183997-4" height="12" width="12" alt="" border="0" style="vertical-align:middle;" /></a><a href="#" title="Click to rate as Excellent Post" onmouseover='Nabble.mouseover(29183997,5); return true;' onmouseout='Nabble.mouseout(29183997); return true;' onclick='Nabble.clicked(29183997,5); return false;'><img id="nabble.star29183997-5" height="12" width="12" alt="" border="0" style="vertical-align:middle;" /></a>
  272. <a href="#" title="Click to clear rating" onmouseover='Nabble.mouseover(29183997,-1); return true;' onmouseout='Nabble.mouseout(29183997); return true;' onclick='Nabble.clicked(29183997,-1); return false;'><img id='nabble.star29183997-0' alt="" border="0" src='/images/icon_clear_rating.png' style='vertical-align:middle;' /></a>
  273. <span id="nabble.descriptor29183997"></span>
  274. </p>
  275. <p class="message-actions2">
  276. Reply (Restricted by the Administrator)
  277. | <a href="javascript: void Nabble.setView('newthreaded',29183997);">View Threaded</a>
  278. | <a href="http://old.nabble.com/-Dbworld--UPDATE%3A-Workshop-on-Ubiquitous-Crowdsourcing-at-UbiComp-2010---CfP-p29183997.html" >Show Only this Message</a>
  279. </p>
  280. </div>
  281. <div class="message-details">
  282. <div id="nabble.pending29183997"></div>
  283. <div class="message-text" id="nabble.msgtxt29183997">Summary:
  284. <br>Crowdsourcing is successfully engaging networked people to collect information, analyze data and solve problems on-line. However, crowdsourcing is yet to reach its full potential, by lowering the barrier to participation and increasing the reachable population of high-quality contributors. This calls for research to explore mechanisms that facilitate participation of crowd at any time and at any situation. Furthermore, building and deploying crowdsourcing applications that are embedded in our surroundings, beyond the limited, existing, purpose-built prototypes, will require significant progress toward integration with the ubiquitous computing infrastructure.
  285. <br>This workshop challenges researchers and practitioners to think about three key aspects of ubiquitous crowdsourcing. Firstly, to establish technological foundations, what are the interaction models and protocols between the ubiquitous computing systems and the crowd? Secondly, how is crowdsourcing going to face the challenges in quality assurance, while providing valuable incentive frameworks that enable honest contributions? Finally, what are the novel applications of crowdsourcing enabled by ubiquitous computing systems?
  286. <br><br>Topics:
  287. <br>We are interested in contributions from practitioners and researchers in both industry and academia. Themes include:
  288. <br>1. Crowdsourcing model: What are the key components of the ubiquitous crowdsourcing service? What are the requirements from use cases in academia and industry?
  289. <br>2. Expert and virtual team discovery in evolving networks: How can we describe and categorize experts skills and experiences? Furthermore, for complex tasks, a virtual team of globally distributed experts needs to be assembled, by efficiently matching experts based on skill requirements and social relationships.
  290. <br>3. Incentives and trust: &nbsp;What is the incentive model that would encourage high quality (trusted) contributions on-line? How do we motivate experts to participate? Furthermore, how does an expert's reputation get established through interaction with crowdsourcing systems?
  291. <br>4. Quality Control: What are the novel mechanisms that can be employed to maintain the quality of contributions? How can we distinguish between quality of users when we have so many of them?
  292. <br>5. Crowdsourcing reaches the mobile: How do crowdsouricng solutions integrate with the mobile platforms? What are the new crowdsourcing applications in the mobile domain?
  293. <br><br>Submissions:
  294. <br>Participants will be selected based on short 4-page papers and demonstrations around the aforementioned topics of interest. All papers should follow the UbiComp submission guidelines (<a href="http://www.ubicomp2010.org/templates" target="_top" rel="nofollow">http://www.ubicomp2010.org/templates</a>).
  295. <br>E-mail your submissions to <a>ubicrowd2010@...</a>
  296. <br><br>Important Dates:
  297. <br>Submission deadline for papers (incl. abstracts): July 26th
  298. <br>Notification of acceptance: Aug 2nd
  299. <br>Camera ready deadline: Aug 6th
  300. <br><br>Workshop co-chairs:
  301. <br>* Maja Vukovic, IBM Research, TJ Watson, Hawthorne, USA (<a>maja@...</a>)
  302. <br>* Ohad Greenshpan, IBM Research and Tel-Aviv University, Israel (<a>ohadg@...</a>)
  303. <br>* Soundar Kumara, Pennsylvania State University, USA (<a>u1o@...</a>)
  304. <br>_______________________________________________
  305. <br>Please do not post msgs that are not relevant to the database community at large. &nbsp;Go to www.cs.wisc.edu/dbworld for guidelines and posting forms.
  306. <br>To unsubscribe, go to <a href="https://lists.cs.wisc.edu/mailman/listinfo/dbworld" target="_top" rel="nofollow">https://lists.cs.wisc.edu/mailman/listinfo/dbworld</a><br></div>
  307. <script type="text/javascript"><!--
  308. if (Nabble.ads) Nabble.ads("banner");
  309. //--></script>
  310. <script>
  311. if (Nabble.searchterms != null && Nabble.searchterms.length > 0) {
  312. Nabble.hilt(Nabble.searchterms, Nabble.get("nabble.msgtxt29183997"));
  313. }
  314. </script>
  315. </div>
  316. </td>
  317. </tr>
  318. </table>
  319. <form><input type="hidden" id="nabble.back" value="no" /></form>
  320. <div id='nabble.searchResults'></div>
  321. <script>
  322. //Nabble.gquery = 'test';
  323. //Nabble.topicDumpSearch = true;
  324. if (Nabble.gquery!=null) {
  325. if (Nabble.topicDumpSearch) {
  326. Nabble.get('nabble.searchResults').innerHTML = '<h1>&nbsp;Other threads matching \"<strong>'+Nabble.gquery+'</strong>\":</h1>'+
  327. '<p style=\"margin-left: 3em;\">looking for matching threads...</p>';
  328. Nabble.loadScript('/forum/TopicDump$SearchJs.jtp?query='+encodeURIComponent(Nabble.gquery)+'&post=29183997');
  329. Nabble.setVar('prev',null);
  330. } else {
  331. Nabble.setVar('prev',
  332. '<big><a id="nabble.prev_search" href="/forum/Search.jtp?query='+encodeURIComponent(Nabble.gquery)+'">Search Nabble for "<b>'+Nabble.gquery+'</b>"</a>'
  333. );
  334. }
  335. }
  336. if( Nabble.prev )
  337. Nabble.writeReturnToLink(Nabble.prev);
  338. </script>
  339. <table class="footer-table shaded-bg-color" >
  340. <tr>
  341. <td class="footer-left">
  342. <a href="http://n2.nabble.com/free-forum.html" target="_top">Free embeddable forum</a> powered by <a href="http://www.nabble.com" title="Free forum and other embeddable web apps">Nabble</a>
  343. </td>
  344. <td class="footer-right">
  345. <a href="/help/Index.jtp" target="_top" embed="fixTarget">Forum Help</a>
  346. </td>
  347. </tr>
  348. </table>
  349. </div>
  350. <script>
  351. (function(){
  352. if( Nabble.cur ) {
  353. var t = Nabble.get( "nabble.i" + Nabble.cur );
  354. if( t ) {
  355. t.style.visibility = "visible";
  356. }
  357. }
  358. if( Nabble.gquery!=null ) {
  359. var t = Nabble.get("nabble.searchQuery");
  360. t.value = Nabble.gquery;
  361. Nabble.selectOption(Nabble.get("nabble.searchSelect"),"n");
  362. if( !Nabble.notRed ) {
  363. t.className += "error-message";
  364. t.style.borderStyle = "solid";
  365. t.style.borderWidth = "3px";
  366. t.style.backgroundColor = Nabble.currentStyle(Nabble.get('nabble')).backgroundColor;
  367. }
  368. }
  369. })();
  370. </script>
  371. <script src="/forum/TopicDump$Js.jtp?root=29183997&rating=2&p=29183997&u=1750484"></script>
  372. <script type="text/javascript">
  373. Nabble.analytics();
  374. </script>
  375. <!-- Start Quantcast tag -->
  376. <script type="text/javascript">
  377. _qoptions={
  378. qacct:"p-34EL1DZyJypTI"
  379. };
  380. </script>
  381. <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
  382. <noscript>
  383. <a href="http://www.quantcast.com/p-34EL1DZyJypTI" rel="nofollow" target="_blank"><img src="http://pixel.quantserve.com/pixel/p-34EL1DZyJypTI.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/></a>
  384. </noscript>
  385. <!-- End Quantcast tag -->
  386. </body>
  387. </html>