text stringlengths 6 2.91M |
|---|
{
"first_traded_price": 14313.0,
"highest_price": 1.5e4,
"isin": "IRO1CONT0001",
"last_traded_price": 1.5e4,
"lowest_price": 14313.0,
"trade_volume": 3.97e4,
"unix_time": 1366416000
} |
[
{
"content": "<p><span class=\"user-mention\" data-user-id=\"124288\">@oli</span> <span class=\"user-mention\" data-user-id=\"125250\">@Wesley Wiser</span> hey, do you think it would be cheap to check in the constant folder if a local always has a constant value whenever initialized?</p>",
"id": 187620166,
"sender_full_name": "eddyb",
"timestamp": 1581062339
},
{
"content": "<p>I guess it could be its own pass post-constant-folding, that checks for one initialization and no mutation</p>",
"id": 187620182,
"sender_full_name": "eddyb",
"timestamp": 1581062398
},
{
"content": "<p>I want to have <code>debug x => _123;</code> replaced with e.g. <code>debug x => const 42usize;</code> wherever possible</p>",
"id": 187620277,
"sender_full_name": "eddyb",
"timestamp": 1581062480
},
{
"content": "<p>the other thing we could do is <code>debug a => &b.c;</code> (value of debug var a is always the address of a place with no runtime indexing or derefs)</p>",
"id": 187620404,
"sender_full_name": "eddyb",
"timestamp": 1581062621
},
{
"content": "<p>the latter wouldn't count as a borrow because only the debugger would see it, and also both it and the constant form could use <code>llvm.dbg.value</code></p>",
"id": 187620479,
"sender_full_name": "eddyb",
"timestamp": 1581062710
},
{
"content": "<p>the goal is to reduce the impact of debuginfo on optimizations and codegen</p>",
"id": 187620576,
"sender_full_name": "eddyb",
"timestamp": 1581062851
},
{
"content": "<p>but maybe I should do some statistics on the kinds of things that are e.g. unnecessarily on the stack in debug mode</p>",
"id": 187620632,
"sender_full_name": "eddyb",
"timestamp": 1581062894
},
{
"content": "<p><span class=\"user-mention\" data-user-id=\"119009\">@eddyb</span> By \"constant folder\" do you mean const-prop or something else?</p>",
"id": 187629010,
"sender_full_name": "Wesley Wiser",
"timestamp": 1581072395
},
{
"content": "<p>yeah I guess it's called const-prop</p>",
"id": 187681078,
"sender_full_name": "eddyb",
"timestamp": 1581110303
},
{
"content": "<p>I'd argue propagation is just replacing uses with the value at the definition, whereas folding is e.g. <code>_5 = 1 + 2</code> => <code>_5 = 3</code> (there's no propagation there)</p>",
"id": 187681256,
"sender_full_name": "eddyb",
"timestamp": 1581110342
},
{
"content": "<p>the current pass is a combination of propagation and folding</p>",
"id": 187681268,
"sender_full_name": "eddyb",
"timestamp": 1581110358
},
{
"content": "<p>Sure yeah</p>",
"id": 187681623,
"sender_full_name": "Wesley Wiser",
"timestamp": 1581110621
},
{
"content": "<p>I can't imagine it would be expensive</p>",
"id": 187681626,
"sender_full_name": "Wesley Wiser",
"timestamp": 1581110629
},
{
"content": "<p>We've already done that check and know what locals satisfy that constraint</p>",
"id": 187681686,
"sender_full_name": "Wesley Wiser",
"timestamp": 1581110662
},
{
"content": "<p>oh right you're not relying on dataflow?</p>",
"id": 187681831,
"sender_full_name": "eddyb",
"timestamp": 1581110790
},
{
"content": "<p>I guess you couldn't have, <span class=\"user-mention\" data-user-id=\"118594\">@ecstatic-morse</span>'s stuff is pretty recent</p>",
"id": 187681840,
"sender_full_name": "eddyb",
"timestamp": 1581110808
},
{
"content": "<p>Nah, not yet</p>",
"id": 187682124,
"sender_full_name": "Wesley Wiser",
"timestamp": 1581111009
},
{
"content": "<p><span class=\"user-mention\" data-user-id=\"119009\">@eddyb</span> I took a stab at implementing this. Does this seem about right to you? <a href=\"https://github.com/rust-lang/rust/compare/master...wesleywiser:consts_in_debuginfo\">https://github.com/rust-lang/rust/compare/master...wesleywiser:consts_in_debuginfo</a></p>",
"id": 199613497,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591187930
},
{
"content": "<p>quick side note just from looking at the tests: use <code>Display</code> formatting for the constant instead of <code>Debug</code> formatting</p>",
"id": 199624398,
"sender_full_name": "oli",
"timestamp": 1591193607
},
{
"content": "<p>Thanks! Will do</p>",
"id": 199624530,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591193660
},
{
"content": "<p>Yeah, that's way better:</p>\n<div class=\"codehilite\"><pre><span></span><code><span class=\"gd\">- debug x => _1; // in scope 1 at $DIR/scalar_literal_propagation.rs:3:9: 3:10</span>\n<span class=\"gi\">+ debug x => const 1u32; // in scope 1 at $DIR/scalar_literal_propagation.rs:3:9: 3:10</span>\n</code></pre></div>",
"id": 199745232,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591276907
},
{
"content": "<p>I wouldn't change <code>VariableKind</code></p>",
"id": 199761539,
"sender_full_name": "eddyb",
"timestamp": 1591283562
},
{
"content": "<p>it refers to the LHS not the RHS even if it's computed from the RHS.... it's kind of messed up</p>",
"id": 199761632,
"sender_full_name": "eddyb",
"timestamp": 1591283599
},
{
"content": "<p>changing <code>PerLocalVarDebugInfo</code> also doesn't seem necessary</p>",
"id": 199761693,
"sender_full_name": "eddyb",
"timestamp": 1591283631
},
{
"content": "<p>Ah yeah I think I only matched against it here so that's not necessary <a href=\"https://github.com/rust-lang/rust/compare/master...wesleywiser:consts_in_debuginfo#diff-59edf51044167945d3d123c17e706bfdR544\">https://github.com/rust-lang/rust/compare/master...wesleywiser:consts_in_debuginfo#diff-59edf51044167945d3d123c17e706bfdR544</a></p>",
"id": 199761759,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591283642
},
{
"content": "<p>so hmm starting from the MIR</p>",
"id": 199762011,
"sender_full_name": "eddyb",
"timestamp": 1591283738
},
{
"content": "<p>I wouldn't split the <code>DebugInfo</code> in <code>VarDebugInfo</code></p>",
"id": 199762056,
"sender_full_name": "eddyb",
"timestamp": 1591283754
},
{
"content": "<p>so <code>VarDebugInfoValue</code>, although it doesn't feel great either. I wonder what I used in the SROA PR</p>",
"id": 199762159,
"sender_full_name": "eddyb",
"timestamp": 1591283777
},
{
"content": "<p><span class=\"user-mention\" data-user-id=\"125250\">@Wesley Wiser</span> <code>VarDebugInfoContents</code></p>",
"id": 199762248,
"sender_full_name": "eddyb",
"timestamp": 1591283810
},
{
"content": "<p>Is that in your SROA PR?</p>",
"id": 199762334,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591283839
},
{
"content": "<p>yeah</p>",
"id": 199762347,
"sender_full_name": "eddyb",
"timestamp": 1591283845
},
{
"content": "<p><a href=\"https://github.com/rust-lang/rust/issues/48300\">#48300</a> right?</p>",
"id": 199762416,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591283871
},
{
"content": "<p>there it's used for simple leaves vs composite (each field has its own <code>VarDebugInfoContents</code>)</p>",
"id": 199762426,
"sender_full_name": "eddyb",
"timestamp": 1591283874
},
{
"content": "<p>yeah</p>",
"id": 199762444,
"sender_full_name": "eddyb",
"timestamp": 1591283881
},
{
"content": "<p><span class=\"user-mention\" data-user-id=\"125250\">@Wesley Wiser</span> so, the reason changing <code>PerLocalVarDebugInfo</code> doesn't make sense to me is that it's specifically the information you need to emit debuginfo <em>for initializing a given <code>Local</code></em></p>",
"id": 199762814,
"sender_full_name": "eddyb",
"timestamp": 1591284021
},
{
"content": "<p>if it's a constant there's no local involved</p>",
"id": 199762878,
"sender_full_name": "eddyb",
"timestamp": 1591284047
},
{
"content": "<p>Yeah</p>",
"id": 199762889,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284052
},
{
"content": "<p>The reason I did that was I needed all the same fields except <code>projection</code></p>",
"id": 199762944,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284074
},
{
"content": "<p>you don't need to gather them into a <code>Vec</code> tho</p>",
"id": 199762984,
"sender_full_name": "eddyb",
"timestamp": 1591284095
},
{
"content": "<p>Which is not a great reason to hack it in there lol</p>",
"id": 199762988,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284098
},
{
"content": "<p>you don't need \"var name\" for constants</p>",
"id": 199763201,
"sender_full_name": "eddyb",
"timestamp": 1591284177
},
{
"content": "<p>since they can't have it anyway (only fn args and instructions can have names)</p>",
"id": 199763239,
"sender_full_name": "eddyb",
"timestamp": 1591284195
},
{
"content": "<p>so you should just get away with spill + <code>dbg_var_addr</code></p>",
"id": 199763411,
"sender_full_name": "eddyb",
"timestamp": 1591284252
},
{
"content": "<p>oh I see, you're triggering it from <code>debug_introduce_locals</code></p>",
"id": 199763635,
"sender_full_name": "eddyb",
"timestamp": 1591284345
},
{
"content": "<p>Yeah</p>",
"id": 199763777,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284387
},
{
"content": "<p>okay so uhhh my advice to keep this simple likely requires renaming <code>compute_per_local_var_debug_info</code></p>",
"id": 199763804,
"sender_full_name": "eddyb",
"timestamp": 1591284402
},
{
"content": "<p>I did it that way because the current system seems pretty oriented around locals which we've removed for constants.</p>",
"id": 199763857,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284423
},
{
"content": "<p>and instead of <code>per_local[place.local].push(</code> it can do <code>dbg_var_addr</code> directly</p>",
"id": 199763882,
"sender_full_name": "eddyb",
"timestamp": 1591284435
},
{
"content": "<p>well it's oriented around locals in a very specific way that makes no sense for constants</p>",
"id": 199763950,
"sender_full_name": "eddyb",
"timestamp": 1591284473
},
{
"content": "<p>Yeah</p>",
"id": 199763967,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284482
},
{
"content": "<p>specifically it's <em>on-demand</em> for locals</p>",
"id": 199764007,
"sender_full_name": "eddyb",
"timestamp": 1591284486
},
{
"content": "<p>or on-assignment rather</p>",
"id": 199764016,
"sender_full_name": "eddyb",
"timestamp": 1591284490
},
{
"content": "<p>Ok, I think I'm following that.</p>",
"id": 199764042,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284502
},
{
"content": "<p>no need to do that kind of deferral for constants</p>",
"id": 199764052,
"sender_full_name": "eddyb",
"timestamp": 1591284506
},
{
"content": "<p>And yeah if we do it that way I don't need to collect to a vec or modify PerLocalDebugInfo</p>",
"id": 199764089,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284525
},
{
"content": "<p>mhmm</p>",
"id": 199764115,
"sender_full_name": "eddyb",
"timestamp": 1591284540
},
{
"content": "<p>thanks for pointing me to this btw</p>",
"id": 199764125,
"sender_full_name": "eddyb",
"timestamp": 1591284545
},
{
"content": "<p>Thanks, that's really helpful!</p>",
"id": 199764131,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284548
},
{
"content": "<p>as you may have noticed I've been kind of out of it</p>",
"id": 199764149,
"sender_full_name": "eddyb",
"timestamp": 1591284557
},
{
"content": "<p>where \"it\" is everything</p>",
"id": 199764158,
"sender_full_name": "eddyb",
"timestamp": 1591284561
},
{
"content": "<p>np!</p>",
"id": 199764159,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284561
},
{
"content": "<p>I knew you'd probably be interested <span aria-label=\"slight smile\" class=\"emoji emoji-1f642\" role=\"img\" title=\"slight smile\">:slight_smile:</span></p>",
"id": 199764197,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284580
},
{
"content": "<p>Re the SROA changes. Do you still think I should try to incorporate those into this?</p>",
"id": 199764331,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284625
},
{
"content": "<p>just the name :P</p>",
"id": 199764563,
"sender_full_name": "eddyb",
"timestamp": 1591284717
},
{
"content": "<p>i.e. value -> contents</p>",
"id": 199764614,
"sender_full_name": "eddyb",
"timestamp": 1591284723
},
{
"content": "<p>only if you think it makes sense</p>",
"id": 199764631,
"sender_full_name": "eddyb",
"timestamp": 1591284729
},
{
"content": "<p>Ah ok</p>",
"id": 199764637,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284731
},
{
"content": "<p>I forget exactly what my line of reasoning was</p>",
"id": 199764647,
"sender_full_name": "eddyb",
"timestamp": 1591284734
},
{
"content": "<p>That's totally fine</p>",
"id": 199764657,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284738
},
{
"content": "<p>I have no strong opinions here lol</p>",
"id": 199764700,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284758
},
{
"content": "<p>Thanks for taking a look at this! I really appreciate it</p>",
"id": 199764953,
"sender_full_name": "Wesley Wiser",
"timestamp": 1591284853
}
] |
{"id":216931,"type":4,"name":"The Evil Within II","image":"//lain.bgm.tv/pic/cover/m/34/ef/216931_Pa702.jpg","rating":{"total":71,"count":{"1":0,"2":0,"3":0,"4":4,"5":2,"6":25,"7":33,"8":7,"9":0,"10":0},"score":6.5},"summary":"From mastermind Shinji Mikami, The Evil Within 2 is the latest evolution of survival horror. Detective Sebastian Castellanos has lost it all. But when given a chance to save his daughter, he must descend once more into the nightmarish world of STEM. Horrifying threats emerge from every corner as the world twists and warps around him. Will Sebastian face adversity head on with weapons and traps, or sneak through the shadows to survive.\r\n\r\n Story of Redemption\r\n Return to the nightmare to win back your life and the ones you love.\r\n Discover Horrifying Domains\r\n Explore as far or quickly as you dare, but prepare wisely.\r\n Face Disturbing Enemies\r\n Survive the onslaught of horrifying creatures determined to rip you apart.\r\n Choose How to Survive\r\n Craft traps, sneak, run and hide, or try to battle the horror with limited ammo.\r\n Visceral Horror and Suspense\r\n Enter a frightening world filled with anxiety-inducing thrills and disturbing moments.","info":"<li><span>中文名: </span>恶灵附身2</li><li><span>开发: </span><a href=\"/person/39222\">Tango Gameworks</a></li><li><span>发行: </span><a href=\"/person/10310\">Bethesda Softworks</a></li><li><span>制作总指挥: </span><a href=\"/person/9973\">三上真司</a></li><li><span>别名: </span>The Evil Within 2</li><li><span style=\"visibility:hidden;\">别名: </span>心魔2</li><li><span>平台: </span>Xbox One</li><li><span style=\"visibility:hidden;\">平台: </span>PS4</li><li><span style=\"visibility:hidden;\">平台: </span>PC</li><li><span>游戏类型: </span>Survival horror</li><li><span>游戏引擎: </span>id Tech 5</li><li><span>游玩人数: </span>1</li><li><span>发行日期: </span>2017年10月13日</li><li><span>售价: </span>$59.99</li><li><span>官方网站: </span>https://theevilwithin2.bethesda.net/</li>","collection":{"wish":26,"collect":87,"doing":5,"on_hold":5,"dropped":4},"tags":[{"name":"PS4","count":19},{"name":"恶灵附身","count":14},{"name":"PC","count":12},{"name":"Bethesda","count":11},{"name":"TangoGameworks","count":8},{"name":"2017","count":6},{"name":"ACT","count":6},{"name":"恐怖","count":6},{"name":"TPS","count":6},{"name":"STEAM","count":6},{"name":"视频通关","count":3},{"name":"血腥","count":3},{"name":"video通关","count":2},{"name":"艺术家","count":2},{"name":"B社日常捡垃圾还行","count":1},{"name":"愿望单","count":1},{"name":"小熊flippy","count":1},{"name":"云通关","count":1},{"name":"动作射击","count":1},{"name":"日本","count":1},{"name":"AVG","count":1},{"name":"感动","count":1},{"name":"三上真司","count":1},{"name":"AAVG","count":1},{"name":"XboxOne&PS4","count":1}],"staff":[{"id":39222,"image":"//lain.bgm.tv/pic/crt/g/53/1f/39222_prsn_h8q2F.jpg","name":"Tango Gameworks","desc":"开发"},{"id":10310,"image":"//lain.bgm.tv/pic/crt/g/5f/1c/10310_prsn_t588m.jpg","name":"贝塞斯达软件公司","desc":"发行"},{"id":9973,"image":"//lain.bgm.tv/pic/crt/g/35/6c/9973_prsn_UXqx8.jpg","name":"三上真司","desc":"制作总指挥"}],"relations":[{"id":72189,"image":"//lain.bgm.tv/pic/cover/m/a7/84/72189_cye1j.jpg","title":"The Evil Within","type":"前传","url":"https://bgm.tv/subject/72189"}]} |
{
"order": "64136"
,"word": "relner"
,"count": "22"
}
|
[
"http://2.bp.blogspot.com/-bZcWiHDgI7g/WlP9_QL3AGI/AAAAAAACc-w/VWMLStasAO8mP2XpsBfqIPKyKzLky0ZrQCHMYCw/s0/000.jpg",
"http://2.bp.blogspot.com/-d24qp0I4q20/WlP9_zItMqI/AAAAAAACc-0/OvriT8YCJtoqmk6oGMHYL23K6zUGvqBEgCHMYCw/s0/001.jpg",
"http://2.bp.blogspot.com/-mS85LoaFJ68/WlP-ACqwDRI/AAAAAAACc-4/KJpAd8Ul-I8DSUtjabPngAlBa98hA4suQCHMYCw/s0/002.jpg",
"http://2.bp.blogspot.com/-L0Ktx_df6Ls/WlP-ABj-PjI/AAAAAAACc-8/gT1MQK8zGp8SOulFeXFpN254jx3PDdhzQCHMYCw/s0/003.jpg",
"http://2.bp.blogspot.com/-rbvrguCM_fs/WlP-Akqs7NI/AAAAAAACc_A/vD0SEtv5zMQ28TsWgJMlxF1C16oaT1uNACHMYCw/s0/004.jpg",
"http://2.bp.blogspot.com/-WOi8Nvovads/WlP-AzWrgGI/AAAAAAACc_E/2A9_93eZBLIicW-Kv4lTWwuwwpWhNgcOwCHMYCw/s0/005.jpg",
"http://2.bp.blogspot.com/-QObisKoqfuo/WlP-A3bAEhI/AAAAAAACc_I/TsfiuGGo2wITXqk7LRzBmCELoEN7vlCKwCHMYCw/s0/006.jpg",
"http://2.bp.blogspot.com/-U1HeH1_juP4/WlP-BIbj2eI/AAAAAAACc_M/gxbzcwqf9yIwGDouVoC4OwThDkRD6iHSgCHMYCw/s0/007.jpg"
] |
{"textgrid.poem.35604": {"metadata": {"author": {"name": "Trakl, Georg", "birth": "N.A.", "death": "N.A."}, "title": "Siebengesang des Todes", "genre": "verse", "period": "N.A.", "pub_year": 1900, "urn": "N.A.", "language": ["de:0.99"], "booktitle": "N.A."}, "text": null, "poem": {"stanza.1": {"line.1": {"text": "Bl\u00e4ulich d\u00e4mmert der Fr\u00fchling; unter saugenden B\u00e4umen", "tokens": ["Bl\u00e4u\u00b7lich", "d\u00e4m\u00b7mert", "der", "Fr\u00fch\u00b7ling", ";", "un\u00b7ter", "sau\u00b7gen\u00b7den", "B\u00e4u\u00b7men"], "token_info": ["word", "word", "word", "word", "punct", "word", "word", "word"], "pos": ["ADJD", "VVFIN", "ART", "NN", "$.", "APPR", "ADJA", "NN"], "meter": "+-+--+-+-+--+-", "measure": "hexameter"}, "line.2": {"text": "Wandert ein Dunkles in Abend und Untergang,", "tokens": ["Wan\u00b7dert", "ein", "Dunk\u00b7les", "in", "A\u00b7bend", "und", "Un\u00b7ter\u00b7gang", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "ART", "NN", "APPR", "NN", "KON", "NN", "$,"], "meter": "+--+--+--+-+", "measure": "dactylic.tri.plus"}, "line.3": {"text": "Lauschend der sanften Klage der Amsel.", "tokens": ["Lau\u00b7schend", "der", "sanf\u00b7ten", "Kla\u00b7ge", "der", "Am\u00b7sel", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ART", "ADJA", "NN", "ART", "NN", "$."], "meter": "+--+-+-+-+", "measure": "iambic.penta.invert"}, "line.4": {"text": "Schweigend erscheint die Nacht, ein blutendes Wild,", "tokens": ["Schwei\u00b7gend", "er\u00b7scheint", "die", "Nacht", ",", "ein", "blu\u00b7ten\u00b7des", "Wild", ","], "token_info": ["word", "word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["ADJD", "VVFIN", "ART", "NN", "$,", "ART", "ADJA", "NN", "$,"], "meter": "+--+-+-+--+", "measure": "iambic.penta.invert"}, "line.5": {"text": "Das langsam hinsinkt am H\u00fcgel.", "tokens": ["Das", "lang\u00b7sam", "hin\u00b7sinkt", "am", "H\u00fc\u00b7gel", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PDS", "ADJD", "VVFIN", "APPRART", "NN", "$."], "meter": "-+-+--+-", "measure": "iambic.tri.relaxed"}}, "stanza.2": {"line.1": {"text": "In feuchter Luft schwankt bl\u00fchendes Apfelgezweig,", "tokens": ["In", "feuch\u00b7ter", "Luft", "schwankt", "bl\u00fc\u00b7hen\u00b7des", "Ap\u00b7fel\u00b7ge\u00b7zweig", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ADJA", "NN", "VVFIN", "ADJA", "NN", "$,"], "meter": "-+-+-+--+--+", "measure": "iambic.penta.relaxed"}, "line.2": {"text": "L\u00f6st silbern sich Verschlungenes,", "tokens": ["L\u00f6st", "sil\u00b7bern", "sich", "Ver\u00b7schlun\u00b7ge\u00b7nes", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["NN", "VVFIN", "PRF", "NN", "$,"], "meter": "-+-+-+--", "measure": "unknown.measure.tri"}, "line.3": {"text": "Hinsterbend aus n\u00e4chtigen Augen; fallende Sterne;", "tokens": ["Hins\u00b7ter\u00b7bend", "aus", "n\u00e4ch\u00b7ti\u00b7gen", "Au\u00b7gen", ";", "fal\u00b7len\u00b7de", "Ster\u00b7ne", ";"], "token_info": ["word", "word", "word", "word", "punct", "word", "word", "punct"], "pos": ["VVPP", "APPR", "ADJA", "NN", "$.", "ADJA", "NN", "$."], "meter": "+---+--+-+--+-", "measure": "trochaic.penta.relaxed"}, "line.4": {"text": "Sanfter Gesang der Kindheit.", "tokens": ["Sanf\u00b7ter", "Ge\u00b7sang", "der", "Kind\u00b7heit", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["ADJA", "NN", "ART", "NN", "$."], "meter": "+--+-+-", "measure": "iambic.tri.invert"}}, "stanza.3": {"line.1": {"text": "Erscheinender stieg der Schl\u00e4fer den schwarzen Wald hinab,", "tokens": ["Er\u00b7schei\u00b7nen\u00b7der", "stieg", "der", "Schl\u00e4\u00b7fer", "den", "schwar\u00b7zen", "Wald", "hin\u00b7ab", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "VVFIN", "ART", "NN", "ART", "ADJA", "NN", "PTKVZ", "$,"], "meter": "-+--+-+--+-+-+", "measure": "iambic.hexa.relaxed"}, "line.2": {"text": "Und es rauschte ein blauer Quell im Grund,", "tokens": ["Und", "es", "rauschte", "ein", "blau\u00b7er", "Quell", "im", "Grund", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "PPER", "VVFIN", "ART", "ADJA", "NN", "APPRART", "NN", "$,"], "meter": "+-+-+-+-+", "measure": "trochaic.penta"}, "line.3": {"text": "Da\u00df jener leise die bleichen Lider aufhob", "tokens": ["Da\u00df", "je\u00b7ner", "lei\u00b7se", "die", "blei\u00b7chen", "Li\u00b7der", "auf\u00b7hob"], "token_info": ["word", "word", "word", "word", "word", "word", "word"], "pos": ["KOUS", "PDAT", "ADJD", "ART", "ADJA", "NN", "VVFIN"], "meter": "-+-+--+-+--+", "measure": "iambic.penta.relaxed"}, "line.4": {"text": "\u00dcber sein schneeiges Antlitz;", "tokens": ["\u00dc\u00b7ber", "sein", "schne\u00b7e\u00b7i\u00b7ges", "Ant\u00b7litz", ";"], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["APPR", "PPOSAT", "ADJA", "NN", "$."], "meter": "+-+-+--+-", "measure": "trochaic.tetra.relaxed"}}, "stanza.4": {"line.1": {"text": "Und es jagte der Mond ein rotes Tier", "tokens": ["Und", "es", "jag\u00b7te", "der", "Mond", "ein", "ro\u00b7tes", "Tier"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word"], "pos": ["KON", "PPER", "VVFIN", "ART", "NN", "ART", "ADJA", "NN"], "meter": "--+--+-+-+", "measure": "anapaest.di.plus"}, "line.2": {"text": "Aus seiner H\u00f6hle;", "tokens": ["Aus", "sei\u00b7ner", "H\u00f6h\u00b7le", ";"], "token_info": ["word", "word", "word", "punct"], "pos": ["APPR", "PPOSAT", "NN", "$."], "meter": "-+-+-", "measure": "iambic.di"}, "line.3": {"text": "Und es starb in Seufzern die dunkle Klage der Frauen.", "tokens": ["Und", "es", "starb", "in", "Seuf\u00b7zern", "die", "dunk\u00b7le", "Kla\u00b7ge", "der", "Frau\u00b7en", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "PPER", "VVFIN", "APPR", "NN", "ART", "ADJA", "NN", "ART", "NN", "$."], "meter": "--+-+--+-+--+-", "measure": "iambic.penta.relaxed"}}, "stanza.5": {"line.1": {"text": "Strahlender hob die H\u00e4nde zu seinem Stern", "tokens": ["Strah\u00b7len\u00b7der", "hob", "die", "H\u00e4n\u00b7de", "zu", "sei\u00b7nem", "Stern"], "token_info": ["word", "word", "word", "word", "word", "word", "word"], "pos": ["NN", "VVFIN", "ART", "NN", "APPR", "PPOSAT", "NN"], "meter": "+--+-+--+-+", "measure": "iambic.penta.invert"}, "line.2": {"text": "Der wei\u00dfe Fremdling;", "tokens": ["Der", "wei\u00b7\u00dfe", "Fremd\u00b7ling", ";"], "token_info": ["word", "word", "word", "punct"], "pos": ["ART", "ADJA", "NN", "$."], "meter": "-+-+-", "measure": "iambic.di"}, "line.3": {"text": "Schweigend verl\u00e4\u00dft ein Totes das verfallene Haus.", "tokens": ["Schwei\u00b7gend", "ver\u00b7l\u00e4\u00dft", "ein", "To\u00b7tes", "das", "ver\u00b7fal\u00b7le\u00b7ne", "Haus", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ADJD", "VVFIN", "ART", "NN", "ART", "ADJA", "NN", "$."], "meter": "+--+-+-+-+--+", "measure": "iambic.hexa.invert"}}, "stanza.6": {"line.1": {"text": "O des Menschen verweste Gestalt: gef\u00fcgt aus kalten Metallen,", "tokens": ["O", "des", "Men\u00b7schen", "ver\u00b7wes\u00b7te", "Ge\u00b7stalt", ":", "ge\u00b7f\u00fcgt", "aus", "kal\u00b7ten", "Me\u00b7tal\u00b7len", ","], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["NE", "ART", "NN", "ADJA", "NN", "$.", "VVPP", "APPR", "ADJA", "NN", "$,"], "meter": "+-+--+--+-+-+--+-", "measure": "trochaic.septa.relaxed"}, "line.2": {"text": "Nacht und Schrecken versunkener W\u00e4lder", "tokens": ["Nacht", "und", "Schre\u00b7cken", "ver\u00b7sun\u00b7ke\u00b7ner", "W\u00e4l\u00b7der"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["NN", "KON", "NN", "ADJA", "NN"], "meter": "+-+--+--+-", "measure": "trochaic.tetra.relaxed"}, "line.3": {"text": "Und der sengenden Wildnis des Tiers;", "tokens": ["Und", "der", "sen\u00b7gen\u00b7den", "Wild\u00b7nis", "des", "Tiers", ";"], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ART", "ADJA", "NN", "ART", "NN", "$."], "meter": "-+-+-+--+", "measure": "iambic.tetra.chol"}, "line.4": {"text": "Windesstille der Seele.", "tokens": ["Win\u00b7des\u00b7stil\u00b7le", "der", "See\u00b7le", "."], "token_info": ["word", "word", "word", "punct"], "pos": ["NN", "ART", "NN", "$."], "meter": "+-+--+-", "measure": "pherekrateus"}}, "stanza.7": {"line.1": {"text": "Auf schw\u00e4rzlichem Kahn fuhr jener schimmernde Str\u00f6me hinab,", "tokens": ["Auf", "schw\u00e4rz\u00b7li\u00b7chem", "Kahn", "fuhr", "je\u00b7ner", "schim\u00b7mern\u00b7de", "Str\u00f6\u00b7me", "hin\u00b7ab", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ADJA", "NN", "VVFIN", "PDAT", "ADJA", "NN", "PTKVZ", "$,"], "meter": "-+--+-+-+--+--+", "measure": "iambic.hexa.relaxed"}, "line.2": {"text": "Purpurner Sterne voll, und es sank", "tokens": ["Pur\u00b7pur\u00b7ner", "Ster\u00b7ne", "voll", ",", "und", "es", "sank"], "token_info": ["word", "word", "word", "punct", "word", "word", "word"], "pos": ["ADJA", "NN", "ADJD", "$,", "KON", "PPER", "VVFIN"], "meter": "+--+-+--+", "measure": "iambic.tetra.invert"}, "line.3": {"text": "Friedlich das ergr\u00fcnte Gezweig auf ihn,", "tokens": ["Fried\u00b7lich", "das", "er\u00b7gr\u00fcn\u00b7te", "Ge\u00b7zweig", "auf", "ihn", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["NE", "ART", "ADJA", "NN", "APPR", "PPER", "$,"], "meter": "+-+-+--+-+", "measure": "trochaic.penta.relaxed"}, "line.4": {"text": "Mohn aus silberner Wolke.", "tokens": ["Mohn", "aus", "sil\u00b7ber\u00b7ner", "Wol\u00b7ke", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["NN", "APPR", "ADJA", "NN", "$."], "meter": "+-+--+-", "measure": "pherekrateus"}}, "stanza.8": {"line.1": {"text": "Bl\u00e4ulich d\u00e4mmert der Fr\u00fchling; unter saugenden B\u00e4umen", "tokens": ["Bl\u00e4u\u00b7lich", "d\u00e4m\u00b7mert", "der", "Fr\u00fch\u00b7ling", ";", "un\u00b7ter", "sau\u00b7gen\u00b7den", "B\u00e4u\u00b7men"], "token_info": ["word", "word", "word", "word", "punct", "word", "word", "word"], "pos": ["ADJD", "VVFIN", "ART", "NN", "$.", "APPR", "ADJA", "NN"], "meter": "+-+--+-+-+--+-", "measure": "hexameter"}, "line.2": {"text": "Wandert ein Dunkles in Abend und Untergang,", "tokens": ["Wan\u00b7dert", "ein", "Dunk\u00b7les", "in", "A\u00b7bend", "und", "Un\u00b7ter\u00b7gang", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "ART", "NN", "APPR", "NN", "KON", "NN", "$,"], "meter": "+--+--+--+-+", "measure": "dactylic.tri.plus"}, "line.3": {"text": "Lauschend der sanften Klage der Amsel.", "tokens": ["Lau\u00b7schend", "der", "sanf\u00b7ten", "Kla\u00b7ge", "der", "Am\u00b7sel", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ART", "ADJA", "NN", "ART", "NN", "$."], "meter": "+--+-+-+-+", "measure": "iambic.penta.invert"}, "line.4": {"text": "Schweigend erscheint die Nacht, ein blutendes Wild,", "tokens": ["Schwei\u00b7gend", "er\u00b7scheint", "die", "Nacht", ",", "ein", "blu\u00b7ten\u00b7des", "Wild", ","], "token_info": ["word", "word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["ADJD", "VVFIN", "ART", "NN", "$,", "ART", "ADJA", "NN", "$,"], "meter": "+--+-+-+--+", "measure": "iambic.penta.invert"}, "line.5": {"text": "Das langsam hinsinkt am H\u00fcgel.", "tokens": ["Das", "lang\u00b7sam", "hin\u00b7sinkt", "am", "H\u00fc\u00b7gel", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PDS", "ADJD", "VVFIN", "APPRART", "NN", "$."], "meter": "-+-+--+-", "measure": "iambic.tri.relaxed"}}, "stanza.9": {"line.1": {"text": "In feuchter Luft schwankt bl\u00fchendes Apfelgezweig,", "tokens": ["In", "feuch\u00b7ter", "Luft", "schwankt", "bl\u00fc\u00b7hen\u00b7des", "Ap\u00b7fel\u00b7ge\u00b7zweig", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ADJA", "NN", "VVFIN", "ADJA", "NN", "$,"], "meter": "-+-+-+--+--+", "measure": "iambic.penta.relaxed"}, "line.2": {"text": "L\u00f6st silbern sich Verschlungenes,", "tokens": ["L\u00f6st", "sil\u00b7bern", "sich", "Ver\u00b7schlun\u00b7ge\u00b7nes", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["NN", "VVFIN", "PRF", "NN", "$,"], "meter": "-+-+-+--", "measure": "unknown.measure.tri"}, "line.3": {"text": "Hinsterbend aus n\u00e4chtigen Augen; fallende Sterne;", "tokens": ["Hins\u00b7ter\u00b7bend", "aus", "n\u00e4ch\u00b7ti\u00b7gen", "Au\u00b7gen", ";", "fal\u00b7len\u00b7de", "Ster\u00b7ne", ";"], "token_info": ["word", "word", "word", "word", "punct", "word", "word", "punct"], "pos": ["VVPP", "APPR", "ADJA", "NN", "$.", "ADJA", "NN", "$."], "meter": "+---+--+-+--+-", "measure": "trochaic.penta.relaxed"}, "line.4": {"text": "Sanfter Gesang der Kindheit.", "tokens": ["Sanf\u00b7ter", "Ge\u00b7sang", "der", "Kind\u00b7heit", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["ADJA", "NN", "ART", "NN", "$."], "meter": "+--+-+-", "measure": "iambic.tri.invert"}}, "stanza.10": {"line.1": {"text": "Erscheinender stieg der Schl\u00e4fer den schwarzen Wald hinab,", "tokens": ["Er\u00b7schei\u00b7nen\u00b7der", "stieg", "der", "Schl\u00e4\u00b7fer", "den", "schwar\u00b7zen", "Wald", "hin\u00b7ab", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "VVFIN", "ART", "NN", "ART", "ADJA", "NN", "PTKVZ", "$,"], "meter": "-+--+-+--+-+-+", "measure": "iambic.hexa.relaxed"}, "line.2": {"text": "Und es rauschte ein blauer Quell im Grund,", "tokens": ["Und", "es", "rauschte", "ein", "blau\u00b7er", "Quell", "im", "Grund", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "PPER", "VVFIN", "ART", "ADJA", "NN", "APPRART", "NN", "$,"], "meter": "+-+-+-+-+", "measure": "trochaic.penta"}, "line.3": {"text": "Da\u00df jener leise die bleichen Lider aufhob", "tokens": ["Da\u00df", "je\u00b7ner", "lei\u00b7se", "die", "blei\u00b7chen", "Li\u00b7der", "auf\u00b7hob"], "token_info": ["word", "word", "word", "word", "word", "word", "word"], "pos": ["KOUS", "PDAT", "ADJD", "ART", "ADJA", "NN", "VVFIN"], "meter": "-+-+--+-+--+", "measure": "iambic.penta.relaxed"}, "line.4": {"text": "\u00dcber sein schneeiges Antlitz;", "tokens": ["\u00dc\u00b7ber", "sein", "schne\u00b7e\u00b7i\u00b7ges", "Ant\u00b7litz", ";"], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["APPR", "PPOSAT", "ADJA", "NN", "$."], "meter": "+-+-+--+-", "measure": "trochaic.tetra.relaxed"}}, "stanza.11": {"line.1": {"text": "Und es jagte der Mond ein rotes Tier", "tokens": ["Und", "es", "jag\u00b7te", "der", "Mond", "ein", "ro\u00b7tes", "Tier"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word"], "pos": ["KON", "PPER", "VVFIN", "ART", "NN", "ART", "ADJA", "NN"], "meter": "--+--+-+-+", "measure": "anapaest.di.plus"}, "line.2": {"text": "Aus seiner H\u00f6hle;", "tokens": ["Aus", "sei\u00b7ner", "H\u00f6h\u00b7le", ";"], "token_info": ["word", "word", "word", "punct"], "pos": ["APPR", "PPOSAT", "NN", "$."], "meter": "-+-+-", "measure": "iambic.di"}, "line.3": {"text": "Und es starb in Seufzern die dunkle Klage der Frauen.", "tokens": ["Und", "es", "starb", "in", "Seuf\u00b7zern", "die", "dunk\u00b7le", "Kla\u00b7ge", "der", "Frau\u00b7en", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "PPER", "VVFIN", "APPR", "NN", "ART", "ADJA", "NN", "ART", "NN", "$."], "meter": "--+-+--+-+--+-", "measure": "iambic.penta.relaxed"}}, "stanza.12": {"line.1": {"text": "Strahlender hob die H\u00e4nde zu seinem Stern", "tokens": ["Strah\u00b7len\u00b7der", "hob", "die", "H\u00e4n\u00b7de", "zu", "sei\u00b7nem", "Stern"], "token_info": ["word", "word", "word", "word", "word", "word", "word"], "pos": ["NN", "VVFIN", "ART", "NN", "APPR", "PPOSAT", "NN"], "meter": "+--+-+--+-+", "measure": "iambic.penta.invert"}, "line.2": {"text": "Der wei\u00dfe Fremdling;", "tokens": ["Der", "wei\u00b7\u00dfe", "Fremd\u00b7ling", ";"], "token_info": ["word", "word", "word", "punct"], "pos": ["ART", "ADJA", "NN", "$."], "meter": "-+-+-", "measure": "iambic.di"}, "line.3": {"text": "Schweigend verl\u00e4\u00dft ein Totes das verfallene Haus.", "tokens": ["Schwei\u00b7gend", "ver\u00b7l\u00e4\u00dft", "ein", "To\u00b7tes", "das", "ver\u00b7fal\u00b7le\u00b7ne", "Haus", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ADJD", "VVFIN", "ART", "NN", "ART", "ADJA", "NN", "$."], "meter": "+--+-+-+-+--+", "measure": "iambic.hexa.invert"}}, "stanza.13": {"line.1": {"text": "O des Menschen verweste Gestalt: gef\u00fcgt aus kalten Metallen,", "tokens": ["O", "des", "Men\u00b7schen", "ver\u00b7wes\u00b7te", "Ge\u00b7stalt", ":", "ge\u00b7f\u00fcgt", "aus", "kal\u00b7ten", "Me\u00b7tal\u00b7len", ","], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["NE", "ART", "NN", "ADJA", "NN", "$.", "VVPP", "APPR", "ADJA", "NN", "$,"], "meter": "+-+--+--+-+-+--+-", "measure": "trochaic.septa.relaxed"}, "line.2": {"text": "Nacht und Schrecken versunkener W\u00e4lder", "tokens": ["Nacht", "und", "Schre\u00b7cken", "ver\u00b7sun\u00b7ke\u00b7ner", "W\u00e4l\u00b7der"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["NN", "KON", "NN", "ADJA", "NN"], "meter": "+-+--+--+-", "measure": "trochaic.tetra.relaxed"}, "line.3": {"text": "Und der sengenden Wildnis des Tiers;", "tokens": ["Und", "der", "sen\u00b7gen\u00b7den", "Wild\u00b7nis", "des", "Tiers", ";"], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ART", "ADJA", "NN", "ART", "NN", "$."], "meter": "-+-+-+--+", "measure": "iambic.tetra.chol"}, "line.4": {"text": "Windesstille der Seele.", "tokens": ["Win\u00b7des\u00b7stil\u00b7le", "der", "See\u00b7le", "."], "token_info": ["word", "word", "word", "punct"], "pos": ["NN", "ART", "NN", "$."], "meter": "+-+--+-", "measure": "pherekrateus"}}, "stanza.14": {"line.1": {"text": "Auf schw\u00e4rzlichem Kahn fuhr jener schimmernde Str\u00f6me hinab,", "tokens": ["Auf", "schw\u00e4rz\u00b7li\u00b7chem", "Kahn", "fuhr", "je\u00b7ner", "schim\u00b7mern\u00b7de", "Str\u00f6\u00b7me", "hin\u00b7ab", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ADJA", "NN", "VVFIN", "PDAT", "ADJA", "NN", "PTKVZ", "$,"], "meter": "-+--+-+-+--+--+", "measure": "iambic.hexa.relaxed"}, "line.2": {"text": "Purpurner Sterne voll, und es sank", "tokens": ["Pur\u00b7pur\u00b7ner", "Ster\u00b7ne", "voll", ",", "und", "es", "sank"], "token_info": ["word", "word", "word", "punct", "word", "word", "word"], "pos": ["ADJA", "NN", "ADJD", "$,", "KON", "PPER", "VVFIN"], "meter": "+--+-+--+", "measure": "iambic.tetra.invert"}, "line.3": {"text": "Friedlich das ergr\u00fcnte Gezweig auf ihn,", "tokens": ["Fried\u00b7lich", "das", "er\u00b7gr\u00fcn\u00b7te", "Ge\u00b7zweig", "auf", "ihn", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["NE", "ART", "ADJA", "NN", "APPR", "PPER", "$,"], "meter": "+-+-+--+-+", "measure": "trochaic.penta.relaxed"}, "line.4": {"text": "Mohn aus silberner Wolke.", "tokens": ["Mohn", "aus", "sil\u00b7ber\u00b7ner", "Wol\u00b7ke", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["NN", "APPR", "ADJA", "NN", "$."], "meter": "+-+--+-", "measure": "pherekrateus"}}}}} |
{"content": "Thinking back to the children with malaria who were sleeping on a hospital floor makes me realise how awful our welfare state is #bbcqt", "entities": [{"offset": 66, "type": "topic keyword", "id": 2, "entity": "hospital"}], "topics": [{"topic": "nhs", "id": 1}], "tweet_id": "581231995088449536"} |
"200704\n灵魂推开。让阳光进来\n杨树热烈的夏季\n渴在体内乱窜\n是什么让汗水匆忙\n所有的快乐都会消失\n那么一块沉默的石头呢\n我望着自己的远方 天空的蓝\n让我想起了飞翔\n\n飞翔 我却没有翅膀\n这个夏季在我的脸上留下了硬伤\n每一寸土地都是我的故乡\n我的呓语也要发芽和生长" |
["af62f4ef3bca6e47dabfe3b72941c415b826287e"] |
{"name":"Realtime Applications","permalink":"realtime-applications","crunchbase_url":"http://www.crunchbase.com/company/realtime-applications","homepage_url":"http://www.realtimeapps.com","blog_url":"","blog_feed_url":"","twitter_username":null,"category_code":"software","number_of_employees":4,"founded_year":2004,"founded_month":2,"founded_day":23,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"","alias_list":null,"email_address":"questions@realtimeapps.com","phone_number":"205-940-6406","description":null,"created_at":"Sat Feb 23 22:35:50 UTC 2008","updated_at":"Thu Dec 01 07:38:10 UTC 2011","overview":"<p>Realtime Applications, Inc was formed in 2004 after already having the prototype of WyaWorks developed by co-founder John Hyde. Realtime Applications was created to be the parent company of such products.</p>\n\n<p>Today the major product and focus continues to be on WyaWorks. Realtime Applications has handled all the development, sales, installations, and training for WyaWorks. They also do consulting and custom application development of products using WyaWorks.</p>\n\n<p>Realtime Applications is also in development of a patent pending hardware/software packaging solution for an intuitive plug and play device that becomes a self maintained web-based application provider. The device will instantly offer a portal to easily develop custom data driven intranet based applications to companies wishing to keep their proprietary data in-house.</p>","image":{"available_sizes":[[[150,83],"assets/images/resized/0001/3401/13401v1-max-150x150.png"],[[184,103],"assets/images/resized/0001/3401/13401v1-max-250x250.png"],[[184,103],"assets/images/resized/0001/3401/13401v1-max-450x450.png"]],"attribution":null},"products":[{"name":"WyaWorks","permalink":"wyaworks","image":{"available_sizes":[[[150,75],"assets/images/resized/0001/3405/13405v1-max-150x150.png"],[[231,117],"assets/images/resized/0001/3405/13405v1-max-250x250.png"],[[231,117],"assets/images/resized/0001/3405/13405v1-max-450x450.png"]],"attribution":null}}],"relationships":[{"is_past":null,"title":"Co-Founder","person":{"first_name":"John","last_name":"Hyde","permalink":"john-hyde","image":null}},{"is_past":null,"title":"Co-Founder","person":{"first_name":"Jennifer","last_name":"Ledbetter","permalink":"jennifer-ledbetter","image":null}}],"competitions":[],"providerships":[],"total_money_raised":"$0","funding_rounds":[],"investments":[],"acquisition":null,"acquisitions":[],"offices":[{"description":null,"address1":"651 Beacon Pkwy W. Suite 201","address2":"","zip_code":"35209","city":"Birmingham","state_code":"AL","country_code":"USA","latitude":33.477448,"longitude":-86.819367}],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[],"external_links":[]} |
{
"first_traded_price": 5093.0,
"highest_price": 5093.0,
"isin": "IRO1GMRO0001",
"last_traded_price": 5093.0,
"lowest_price": 5093.0,
"trade_volume": 168227.0,
"unix_time": 1478304000
} |
{"components/search-form":"\n{{{snippet 'forms_search'}}}\n<form class=\"search-form\" action=\"{{urls.search}}\">\n <label class=\"search-label\">\n <svg class=\"icon-search\">\n <use xlink:href=\"#icon-search\"></use>\n </svg>\n <input class=\"search-input\" name=\"search_query\" placeholder=\"{{lang 'header.search'}}\" type=\"text\">\n </label>\n</form>\n"}
|
{
"first_traded_price": 1834.0,
"highest_price": 1925.0,
"isin": "IRO3ASAZ0001",
"last_traded_price": 1925.0,
"lowest_price": 1834.0,
"trade_volume": 13369149.0,
"unix_time": 1548547200
} |
[
{
"level":"Upper-Intermediate",
"jungle_id":608580
}
] |
[
{
"url": "https://api.github.com/repos/OpenRA/OpenRA/issues/comments/226927316",
"html_url": "https://github.com/OpenRA/OpenRA/issues/11465#issuecomment-226927316",
"issue_url": "https://api.github.com/repos/OpenRA/OpenRA/issues/11465",
"id": 226927316,
"node_id": "MDEyOklzc3VlQ29tbWVudDIyNjkyNzMxNg==",
"user": {
"login": "obrakmann",
"id": 4331210,
"node_id": "MDQ6VXNlcjQzMzEyMTA=",
"avatar_url": "https://avatars1.githubusercontent.com/u/4331210?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/obrakmann",
"html_url": "https://github.com/obrakmann",
"followers_url": "https://api.github.com/users/obrakmann/followers",
"following_url": "https://api.github.com/users/obrakmann/following{/other_user}",
"gists_url": "https://api.github.com/users/obrakmann/gists{/gist_id}",
"starred_url": "https://api.github.com/users/obrakmann/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/obrakmann/subscriptions",
"organizations_url": "https://api.github.com/users/obrakmann/orgs",
"repos_url": "https://api.github.com/users/obrakmann/repos",
"events_url": "https://api.github.com/users/obrakmann/events{/privacy}",
"received_events_url": "https://api.github.com/users/obrakmann/received_events",
"type": "User",
"site_admin": false
},
"created_at": "2016-06-18T07:31:37Z",
"updated_at": "2016-06-18T07:31:37Z",
"author_association": "CONTRIBUTOR",
"body": "Do you happen to not have speakers/headphones connected when you start the game? We've had various reports of things like this when people forgot to plug in their headphones or something.\n"
},
{
"url": "https://api.github.com/repos/OpenRA/OpenRA/issues/comments/226930264",
"html_url": "https://github.com/OpenRA/OpenRA/issues/11465#issuecomment-226930264",
"issue_url": "https://api.github.com/repos/OpenRA/OpenRA/issues/11465",
"id": 226930264,
"node_id": "MDEyOklzc3VlQ29tbWVudDIyNjkzMDI2NA==",
"user": {
"login": "Truth99A",
"id": 16300280,
"node_id": "MDQ6VXNlcjE2MzAwMjgw",
"avatar_url": "https://avatars3.githubusercontent.com/u/16300280?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Truth99A",
"html_url": "https://github.com/Truth99A",
"followers_url": "https://api.github.com/users/Truth99A/followers",
"following_url": "https://api.github.com/users/Truth99A/following{/other_user}",
"gists_url": "https://api.github.com/users/Truth99A/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Truth99A/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Truth99A/subscriptions",
"organizations_url": "https://api.github.com/users/Truth99A/orgs",
"repos_url": "https://api.github.com/users/Truth99A/repos",
"events_url": "https://api.github.com/users/Truth99A/events{/privacy}",
"received_events_url": "https://api.github.com/users/Truth99A/received_events",
"type": "User",
"site_admin": false
},
"created_at": "2016-06-18T08:52:14Z",
"updated_at": "2016-06-18T08:52:14Z",
"author_association": "CONTRIBUTOR",
"body": "I don't use headphones or speakers or anything like that, just my laptops built in speakers. The audio (from the game) use to work fine and I believe for a short while on the new update the sound also worked but after a while it stopped.\np.s this happened about a month ago XD audio is working fine on my computer\n"
},
{
"url": "https://api.github.com/repos/OpenRA/OpenRA/issues/comments/226931001",
"html_url": "https://github.com/OpenRA/OpenRA/issues/11465#issuecomment-226931001",
"issue_url": "https://api.github.com/repos/OpenRA/OpenRA/issues/11465",
"id": 226931001,
"node_id": "MDEyOklzc3VlQ29tbWVudDIyNjkzMTAwMQ==",
"user": {
"login": "obrakmann",
"id": 4331210,
"node_id": "MDQ6VXNlcjQzMzEyMTA=",
"avatar_url": "https://avatars1.githubusercontent.com/u/4331210?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/obrakmann",
"html_url": "https://github.com/obrakmann",
"followers_url": "https://api.github.com/users/obrakmann/followers",
"following_url": "https://api.github.com/users/obrakmann/following{/other_user}",
"gists_url": "https://api.github.com/users/obrakmann/gists{/gist_id}",
"starred_url": "https://api.github.com/users/obrakmann/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/obrakmann/subscriptions",
"organizations_url": "https://api.github.com/users/obrakmann/orgs",
"repos_url": "https://api.github.com/users/obrakmann/repos",
"events_url": "https://api.github.com/users/obrakmann/events{/privacy}",
"received_events_url": "https://api.github.com/users/obrakmann/received_events",
"type": "User",
"site_admin": false
},
"created_at": "2016-06-18T09:10:52Z",
"updated_at": "2016-06-18T09:10:52Z",
"author_association": "CONTRIBUTOR",
"body": "You mean audio in general works on your laptop, just not in OpenRA? Or do you mean that the problem happened a month ago and all is fine now?\n\nEither way, if the problem persists or comes back, please try jacking in headphones anyway and see if it helps.\n"
},
{
"url": "https://api.github.com/repos/OpenRA/OpenRA/issues/comments/226931983",
"html_url": "https://github.com/OpenRA/OpenRA/issues/11465#issuecomment-226931983",
"issue_url": "https://api.github.com/repos/OpenRA/OpenRA/issues/11465",
"id": 226931983,
"node_id": "MDEyOklzc3VlQ29tbWVudDIyNjkzMTk4Mw==",
"user": {
"login": "Truth99A",
"id": 16300280,
"node_id": "MDQ6VXNlcjE2MzAwMjgw",
"avatar_url": "https://avatars3.githubusercontent.com/u/16300280?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Truth99A",
"html_url": "https://github.com/Truth99A",
"followers_url": "https://api.github.com/users/Truth99A/followers",
"following_url": "https://api.github.com/users/Truth99A/following{/other_user}",
"gists_url": "https://api.github.com/users/Truth99A/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Truth99A/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Truth99A/subscriptions",
"organizations_url": "https://api.github.com/users/Truth99A/orgs",
"repos_url": "https://api.github.com/users/Truth99A/repos",
"events_url": "https://api.github.com/users/Truth99A/events{/privacy}",
"received_events_url": "https://api.github.com/users/Truth99A/received_events",
"type": "User",
"site_admin": false
},
"created_at": "2016-06-18T09:21:31Z",
"updated_at": "2016-06-18T09:21:31Z",
"author_association": "CONTRIBUTOR",
"body": "i mean that the audio on my laptop works fine, openra audio does not work at all\n- i've tried plugging in headphones and speakers, it only has 2 options: Output disabled & Output disabled. picking the second one and restarting the game does nothing\n"
},
{
"url": "https://api.github.com/repos/OpenRA/OpenRA/issues/comments/228027244",
"html_url": "https://github.com/OpenRA/OpenRA/issues/11465#issuecomment-228027244",
"issue_url": "https://api.github.com/repos/OpenRA/OpenRA/issues/11465",
"id": 228027244,
"node_id": "MDEyOklzc3VlQ29tbWVudDIyODAyNzI0NA==",
"user": {
"login": "Truth99A",
"id": 16300280,
"node_id": "MDQ6VXNlcjE2MzAwMjgw",
"avatar_url": "https://avatars3.githubusercontent.com/u/16300280?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Truth99A",
"html_url": "https://github.com/Truth99A",
"followers_url": "https://api.github.com/users/Truth99A/followers",
"following_url": "https://api.github.com/users/Truth99A/following{/other_user}",
"gists_url": "https://api.github.com/users/Truth99A/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Truth99A/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Truth99A/subscriptions",
"organizations_url": "https://api.github.com/users/Truth99A/orgs",
"repos_url": "https://api.github.com/users/Truth99A/repos",
"events_url": "https://api.github.com/users/Truth99A/events{/privacy}",
"received_events_url": "https://api.github.com/users/Truth99A/received_events",
"type": "User",
"site_admin": false
},
"created_at": "2016-06-23T11:52:40Z",
"updated_at": "2016-06-23T15:29:37Z",
"author_association": "CONTRIBUTOR",
"body": "hey!!! i found out how to fix it!!!!\n\ngo into C:\\Users\\username\\Documents\\OpenRA (windows 10) and go into the settings.yaml script, there under sound you'll find engine: null, delete it and don't replace it with anything.\nstart up the game and bam! \nalso if that doesn't work then simply delete the whole settings file and start up the game, the audio should come back. (note! uninstalling the game doesn't delete this file)\n\nTo the Dev's, i found out that the audio output default is set to \"disabled\" (https://github.com/OpenRA/OpenRA/blob/86620888fd5f8f0604de9b5f7b67050c45fc06c5/OpenRA.Platforms.Default/OpenAlSoundEngine.cs#L27), for some reason though there is a bug where if it is set to output disabled then the other options including default will no longer appear in the output selection tab. \n"
},
{
"url": "https://api.github.com/repos/OpenRA/OpenRA/issues/comments/250905821",
"html_url": "https://github.com/OpenRA/OpenRA/issues/11465#issuecomment-250905821",
"issue_url": "https://api.github.com/repos/OpenRA/OpenRA/issues/11465",
"id": 250905821,
"node_id": "MDEyOklzc3VlQ29tbWVudDI1MDkwNTgyMQ==",
"user": {
"login": "pchote",
"id": 167819,
"node_id": "MDQ6VXNlcjE2NzgxOQ==",
"avatar_url": "https://avatars1.githubusercontent.com/u/167819?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/pchote",
"html_url": "https://github.com/pchote",
"followers_url": "https://api.github.com/users/pchote/followers",
"following_url": "https://api.github.com/users/pchote/following{/other_user}",
"gists_url": "https://api.github.com/users/pchote/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pchote/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pchote/subscriptions",
"organizations_url": "https://api.github.com/users/pchote/orgs",
"repos_url": "https://api.github.com/users/pchote/repos",
"events_url": "https://api.github.com/users/pchote/events{/privacy}",
"received_events_url": "https://api.github.com/users/pchote/received_events",
"type": "User",
"site_admin": false
},
"created_at": "2016-10-01T10:46:55Z",
"updated_at": "2016-10-01T10:46:55Z",
"author_association": "MEMBER",
"body": "Fixed by #11757.\n"
}
]
|
{"JZEmPY9J0QCv2IdOmUFKBw": 1} |
{"title":"VA-Minimal Set 11-Retail-2010-iHF","uid":5586638,"size":99173493,"categoryP":"audio","categoryS":"music","magnet":"?xt=urn:btih:8cd8663d9c62963db3cf8318821f17df6cf17f77&dn=VA-Minimal+Set+11-Retail-2010-iHF&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Fopen.demonii.com%3A1337&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Fexodus.desync.com%3A6969","seeders":0,"leechers":0,"uploader":null,"files":13,"time":1274718581,"description":" Release Artist.....: VA\n Release Title......: Minimal Set 11\n Release Label......: Atlantis\n Release Year.......: 2010\n Catalogue No.......: ATL609-2\n Genre..............: Techno\n Size...............: 94,6 MB\n Playtime...........: 67:22 min\n\n\n\n Tracklist:\n ______________________________________________________________________________\n\n 01. Autistic - Happy Monster 07:01\n (Andrea Bertolini & Spartaque Remix)\n 02. Spartaque - Resolved (Original Mix) 07:28\n 03. Dandi & Ugo - Experiment X 06:38\n 04. Groove Elements - La Trumbaza (John Dabel Remix) 07:12\n 05. Marshall & Federico Buratti - Be My Friend (Original Mix) 06:18\n 06. Russel G. - Ptb (Autistic Remix) 05:50\n 07. Elektrojack - Polyphonic 07:02\n 08. Alex Kenji - El Circo Del Sol (Original Mix) 06:23\n 09. Alfonso Forte - Will Be A Dream (Loran Valdek Remix) 06:57\n 10. Alex Gori - Baldo Degli Ubaldi (Federico Milani Remix) 06:33","torrent":{"xt":"urn:btih:8cd8663d9c62963db3cf8318821f17df6cf17f77","amp;dn":"VA-Minimal+Set+11-Retail-2010-iHF","amp;tr":["udp%3A%2F%2Ftracker.openbittorrent.com%3A80","udp%3A%2F%2Fopen.demonii.com%3A1337","udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969","udp%3A%2F%2Fexodus.desync.com%3A6969"],"infoHash":"8cd8663d9c62963db3cf8318821f17df6cf17f77","infoHashBuffer":{"type":"Buffer","data":[140,216,102,61,156,98,150,61,179,207,131,24,130,31,23,223,108,241,127,119]},"announce":[],"urlList":[]}} |
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"PCON18CD":"E14000530","PCON18NM":"Aldershot","FID":1},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000531","PCON18NM":"Aldridge-Brownhills","FID":2},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000532","PCON18NM":"Altrincham and Sale West","FID":3},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000533","PCON18NM":"Amber Valley","FID":4},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000534","PCON18NM":"Arundel and South Downs","FID":5},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000535","PCON18NM":"Ashfield","FID":6},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000536","PCON18NM":"Ashford","FID":7},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000537","PCON18NM":"Ashton-under-Lyne","FID":8},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000538","PCON18NM":"Aylesbury","FID":9},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000539","PCON18NM":"Banbury","FID":10},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000540","PCON18NM":"Barking","FID":11},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000541","PCON18NM":"Barnsley Central","FID":12},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000542","PCON18NM":"Barnsley East","FID":13},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000543","PCON18NM":"Barrow and Furness","FID":14},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000544","PCON18NM":"Basildon and Billericay","FID":15},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000545","PCON18NM":"Basingstoke","FID":16},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000546","PCON18NM":"Bassetlaw","FID":17},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000547","PCON18NM":"Bath","FID":18},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000548","PCON18NM":"Batley and Spen","FID":19},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000549","PCON18NM":"Battersea","FID":20},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000550","PCON18NM":"Beaconsfield","FID":21},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000551","PCON18NM":"Beckenham","FID":22},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000552","PCON18NM":"Bedford","FID":23},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000553","PCON18NM":"Bermondsey and Old Southwark","FID":24},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000554","PCON18NM":"Berwick-upon-Tweed","FID":25},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000555","PCON18NM":"Bethnal Green and Bow","FID":26},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000556","PCON18NM":"Beverley and Holderness","FID":27},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000557","PCON18NM":"Bexhill and Battle","FID":28},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000558","PCON18NM":"Bexleyheath and Crayford","FID":29},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000559","PCON18NM":"Birkenhead","FID":30},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000560","PCON18NM":"Birmingham, Edgbaston","FID":31},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000561","PCON18NM":"Birmingham, Erdington","FID":32},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000562","PCON18NM":"Birmingham, Hall Green","FID":33},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000563","PCON18NM":"Birmingham, Hodge Hill","FID":34},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000564","PCON18NM":"Birmingham, Ladywood","FID":35},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000565","PCON18NM":"Birmingham, Northfield","FID":36},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000566","PCON18NM":"Birmingham, Perry Barr","FID":37},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000567","PCON18NM":"Birmingham, Selly Oak","FID":38},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000568","PCON18NM":"Birmingham, Yardley","FID":39},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000569","PCON18NM":"Bishop Auckland","FID":40},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000570","PCON18NM":"Blackburn","FID":41},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000571","PCON18NM":"Blackley and Broughton","FID":42},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000572","PCON18NM":"Blackpool North and Cleveleys","FID":43},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000573","PCON18NM":"Blackpool South","FID":44},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000574","PCON18NM":"Blaydon","FID":45},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000575","PCON18NM":"Blyth Valley","FID":46},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000576","PCON18NM":"Bognor Regis and Littlehampton","FID":47},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000577","PCON18NM":"Bolsover","FID":48},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000578","PCON18NM":"Bolton North East","FID":49},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000579","PCON18NM":"Bolton South East","FID":50},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000730","PCON18NM":"Harrogate and Knaresborough","FID":51},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000731","PCON18NM":"Harrow East","FID":52},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000732","PCON18NM":"Harrow West","FID":53},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000733","PCON18NM":"Hartlepool","FID":54},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000734","PCON18NM":"Harwich and North Essex","FID":55},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000735","PCON18NM":"Hastings and Rye","FID":56},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000736","PCON18NM":"Havant","FID":57},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000737","PCON18NM":"Hayes and Harlington","FID":58},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000738","PCON18NM":"Hazel Grove","FID":59},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000739","PCON18NM":"Hemel Hempstead","FID":60},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000740","PCON18NM":"Hemsworth","FID":61},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000741","PCON18NM":"Hendon","FID":62},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000742","PCON18NM":"Henley","FID":63},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000743","PCON18NM":"Hereford and South Herefordshire","FID":64},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000744","PCON18NM":"Hertford and Stortford","FID":65},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000745","PCON18NM":"Hertsmere","FID":66},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000746","PCON18NM":"Hexham","FID":67},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000747","PCON18NM":"Heywood and Middleton","FID":68},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000748","PCON18NM":"High Peak","FID":69},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000749","PCON18NM":"Hitchin and Harpenden","FID":70},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000750","PCON18NM":"Holborn and St Pancras","FID":71},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000751","PCON18NM":"Hornchurch and Upminster","FID":72},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000752","PCON18NM":"Hornsey and Wood Green","FID":73},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000753","PCON18NM":"Horsham","FID":74},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000754","PCON18NM":"Houghton and Sunderland South","FID":75},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000755","PCON18NM":"Hove","FID":76},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000756","PCON18NM":"Huddersfield","FID":77},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000757","PCON18NM":"Huntingdon","FID":78},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000758","PCON18NM":"Hyndburn","FID":79},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000759","PCON18NM":"Ilford North","FID":80},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000760","PCON18NM":"Ilford South","FID":81},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000761","PCON18NM":"Ipswich","FID":82},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000762","PCON18NM":"Isle of Wight","FID":83},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000763","PCON18NM":"Islington North","FID":84},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000764","PCON18NM":"Islington South and Finsbury","FID":85},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000765","PCON18NM":"Jarrow","FID":86},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000766","PCON18NM":"Keighley","FID":87},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000767","PCON18NM":"Kenilworth and Southam","FID":88},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000768","PCON18NM":"Kensington","FID":89},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000769","PCON18NM":"Kettering","FID":90},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000770","PCON18NM":"Kingston and Surbiton","FID":91},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000771","PCON18NM":"Kingston upon Hull East","FID":92},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000772","PCON18NM":"Kingston upon Hull North","FID":93},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000773","PCON18NM":"Kingston upon Hull West and Hessle","FID":94},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000774","PCON18NM":"Kingswood","FID":95},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000775","PCON18NM":"Knowsley","FID":96},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000776","PCON18NM":"Lancaster and Fleetwood","FID":97},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000777","PCON18NM":"Leeds Central","FID":98},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000778","PCON18NM":"Leeds East","FID":99},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000779","PCON18NM":"Leeds North East","FID":100},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000580","PCON18NM":"Bolton West","FID":101},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000581","PCON18NM":"Bootle","FID":102},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000582","PCON18NM":"Boston and Skegness","FID":103},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000583","PCON18NM":"Bosworth","FID":104},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000584","PCON18NM":"Bournemouth East","FID":105},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000585","PCON18NM":"Bournemouth West","FID":106},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000586","PCON18NM":"Bracknell","FID":107},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000587","PCON18NM":"Bradford East","FID":108},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000588","PCON18NM":"Bradford South","FID":109},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000589","PCON18NM":"Bradford West","FID":110},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000590","PCON18NM":"Braintree","FID":111},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000591","PCON18NM":"Brent Central","FID":112},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000592","PCON18NM":"Brent North","FID":113},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000593","PCON18NM":"Brentford and Isleworth","FID":114},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000594","PCON18NM":"Brentwood and Ongar","FID":115},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000595","PCON18NM":"Bridgwater and West Somerset","FID":116},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000596","PCON18NM":"Brigg and Goole","FID":117},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000597","PCON18NM":"Brighton, Kemptown","FID":118},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000598","PCON18NM":"Brighton, Pavilion","FID":119},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000599","PCON18NM":"Bristol East","FID":120},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000600","PCON18NM":"Bristol North West","FID":121},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000601","PCON18NM":"Bristol South","FID":122},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000602","PCON18NM":"Bristol West","FID":123},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000603","PCON18NM":"Broadland","FID":124},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000604","PCON18NM":"Bromley and Chislehurst","FID":125},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000605","PCON18NM":"Bromsgrove","FID":126},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000606","PCON18NM":"Broxbourne","FID":127},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000607","PCON18NM":"Broxtowe","FID":128},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000608","PCON18NM":"Buckingham","FID":129},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000609","PCON18NM":"Burnley","FID":130},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000610","PCON18NM":"Burton","FID":131},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000611","PCON18NM":"Bury North","FID":132},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000612","PCON18NM":"Bury South","FID":133},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000613","PCON18NM":"Bury St Edmunds","FID":134},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000614","PCON18NM":"Calder Valley","FID":135},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000615","PCON18NM":"Camberwell and Peckham","FID":136},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000616","PCON18NM":"Camborne and Redruth","FID":137},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000617","PCON18NM":"Cambridge","FID":138},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000618","PCON18NM":"Cannock Chase","FID":139},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000619","PCON18NM":"Canterbury","FID":140},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000620","PCON18NM":"Carlisle","FID":141},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000621","PCON18NM":"Carshalton and Wallington","FID":142},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000622","PCON18NM":"Castle Point","FID":143},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000623","PCON18NM":"Central Devon","FID":144},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000624","PCON18NM":"Central Suffolk and North Ipswich","FID":145},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000625","PCON18NM":"Charnwood","FID":146},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000626","PCON18NM":"Chatham and Aylesford","FID":147},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000627","PCON18NM":"Cheadle","FID":148},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000628","PCON18NM":"Chelmsford","FID":149},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000629","PCON18NM":"Chelsea and Fulham","FID":150},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000780","PCON18NM":"Leeds North West","FID":151},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000781","PCON18NM":"Leeds West","FID":152},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000782","PCON18NM":"Leicester East","FID":153},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000783","PCON18NM":"Leicester South","FID":154},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000784","PCON18NM":"Leicester West","FID":155},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000785","PCON18NM":"Leigh","FID":156},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000786","PCON18NM":"Lewes","FID":157},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000787","PCON18NM":"Lewisham East","FID":158},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000788","PCON18NM":"Lewisham West and Penge","FID":159},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000789","PCON18NM":"Lewisham, Deptford","FID":160},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000790","PCON18NM":"Leyton and Wanstead","FID":161},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000791","PCON18NM":"Lichfield","FID":162},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000792","PCON18NM":"Lincoln","FID":163},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000793","PCON18NM":"Liverpool, Riverside","FID":164},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000794","PCON18NM":"Liverpool, Walton","FID":165},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000795","PCON18NM":"Liverpool, Wavertree","FID":166},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000796","PCON18NM":"Liverpool, West Derby","FID":167},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000797","PCON18NM":"Loughborough","FID":168},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000798","PCON18NM":"Louth and Horncastle","FID":169},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000799","PCON18NM":"Ludlow","FID":170},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000800","PCON18NM":"Luton North","FID":171},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000801","PCON18NM":"Luton South","FID":172},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000802","PCON18NM":"Macclesfield","FID":173},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000803","PCON18NM":"Maidenhead","FID":174},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000804","PCON18NM":"Maidstone and The Weald","FID":175},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000805","PCON18NM":"Makerfield","FID":176},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000806","PCON18NM":"Maldon","FID":177},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000807","PCON18NM":"Manchester Central","FID":178},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000808","PCON18NM":"Manchester, Gorton","FID":179},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000809","PCON18NM":"Manchester, Withington","FID":180},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000810","PCON18NM":"Mansfield","FID":181},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000811","PCON18NM":"Meon Valley","FID":182},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000812","PCON18NM":"Meriden","FID":183},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000813","PCON18NM":"Mid Bedfordshire","FID":184},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000814","PCON18NM":"Mid Derbyshire","FID":185},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000815","PCON18NM":"Mid Dorset and North Poole","FID":186},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000816","PCON18NM":"Mid Norfolk","FID":187},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000817","PCON18NM":"Mid Sussex","FID":188},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000818","PCON18NM":"Mid Worcestershire","FID":189},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000819","PCON18NM":"Middlesbrough","FID":190},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000820","PCON18NM":"Middlesbrough South and East Cleveland","FID":191},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000821","PCON18NM":"Milton Keynes North","FID":192},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000822","PCON18NM":"Milton Keynes South","FID":193},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000823","PCON18NM":"Mitcham and Morden","FID":194},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000824","PCON18NM":"Mole Valley","FID":195},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000825","PCON18NM":"Morecambe and Lunesdale","FID":196},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000826","PCON18NM":"Morley and Outwood","FID":197},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000827","PCON18NM":"New Forest East","FID":198},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000828","PCON18NM":"New Forest West","FID":199},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000829","PCON18NM":"Newark","FID":200},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000830","PCON18NM":"Newbury","FID":201},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000831","PCON18NM":"Newcastle upon Tyne Central","FID":202},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000832","PCON18NM":"Newcastle upon Tyne East","FID":203},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000833","PCON18NM":"Newcastle upon Tyne North","FID":204},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000834","PCON18NM":"Newcastle-under-Lyme","FID":205},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000835","PCON18NM":"Newton Abbot","FID":206},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000836","PCON18NM":"Normanton, Pontefract and Castleford","FID":207},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000837","PCON18NM":"North Cornwall","FID":208},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000838","PCON18NM":"North Devon","FID":209},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000839","PCON18NM":"North Dorset","FID":210},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000840","PCON18NM":"North Durham","FID":211},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000841","PCON18NM":"North East Bedfordshire","FID":212},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000842","PCON18NM":"North East Cambridgeshire","FID":213},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000843","PCON18NM":"North East Derbyshire","FID":214},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000844","PCON18NM":"North East Hampshire","FID":215},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000845","PCON18NM":"North East Hertfordshire","FID":216},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000846","PCON18NM":"North East Somerset","FID":217},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000847","PCON18NM":"North Herefordshire","FID":218},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000848","PCON18NM":"North Norfolk","FID":219},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000849","PCON18NM":"North Shropshire","FID":220},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000850","PCON18NM":"North Somerset","FID":221},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000851","PCON18NM":"North Swindon","FID":222},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000852","PCON18NM":"North Thanet","FID":223},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000853","PCON18NM":"North Tyneside","FID":224},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000854","PCON18NM":"North Warwickshire","FID":225},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000855","PCON18NM":"North West Cambridgeshire","FID":226},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000856","PCON18NM":"North West Durham","FID":227},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000857","PCON18NM":"North West Hampshire","FID":228},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000858","PCON18NM":"North West Leicestershire","FID":229},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000859","PCON18NM":"North West Norfolk","FID":230},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000860","PCON18NM":"North Wiltshire","FID":231},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000861","PCON18NM":"Northampton North","FID":232},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000862","PCON18NM":"Northampton South","FID":233},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000863","PCON18NM":"Norwich North","FID":234},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000864","PCON18NM":"Norwich South","FID":235},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000865","PCON18NM":"Nottingham East","FID":236},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000866","PCON18NM":"Nottingham North","FID":237},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000867","PCON18NM":"Nottingham South","FID":238},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000868","PCON18NM":"Nuneaton","FID":239},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000869","PCON18NM":"Old Bexley and Sidcup","FID":240},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000870","PCON18NM":"Oldham East and Saddleworth","FID":241},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000871","PCON18NM":"Oldham West and Royton","FID":242},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000872","PCON18NM":"Orpington","FID":243},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000873","PCON18NM":"Oxford East","FID":244},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000874","PCON18NM":"Oxford West and Abingdon","FID":245},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000875","PCON18NM":"Pendle","FID":246},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000876","PCON18NM":"Penistone and Stocksbridge","FID":247},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000877","PCON18NM":"Penrith and The Border","FID":248},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000878","PCON18NM":"Peterborough","FID":249},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000879","PCON18NM":"Plymouth, Moor View","FID":250},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000680","PCON18NM":"East Hampshire","FID":251},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000681","PCON18NM":"East Surrey","FID":252},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000682","PCON18NM":"East Worthing and Shoreham","FID":253},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000683","PCON18NM":"East Yorkshire","FID":254},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000684","PCON18NM":"Eastbourne","FID":255},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000685","PCON18NM":"Eastleigh","FID":256},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000686","PCON18NM":"Eddisbury","FID":257},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000687","PCON18NM":"Edmonton","FID":258},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000688","PCON18NM":"Ellesmere Port and Neston","FID":259},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000689","PCON18NM":"Elmet and Rothwell","FID":260},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000690","PCON18NM":"Eltham","FID":261},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000691","PCON18NM":"Enfield North","FID":262},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000692","PCON18NM":"Enfield, Southgate","FID":263},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000693","PCON18NM":"Epping Forest","FID":264},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000694","PCON18NM":"Epsom and Ewell","FID":265},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000695","PCON18NM":"Erewash","FID":266},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000696","PCON18NM":"Erith and Thamesmead","FID":267},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000697","PCON18NM":"Esher and Walton","FID":268},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000698","PCON18NM":"Exeter","FID":269},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000699","PCON18NM":"Fareham","FID":270},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000700","PCON18NM":"Faversham and Mid Kent","FID":271},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000701","PCON18NM":"Feltham and Heston","FID":272},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000702","PCON18NM":"Filton and Bradley Stoke","FID":273},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000703","PCON18NM":"Finchley and Golders Green","FID":274},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000704","PCON18NM":"Folkestone and Hythe","FID":275},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000705","PCON18NM":"Forest of Dean","FID":276},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000706","PCON18NM":"Fylde","FID":277},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000707","PCON18NM":"Gainsborough","FID":278},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000708","PCON18NM":"Garston and Halewood","FID":279},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000709","PCON18NM":"Gateshead","FID":280},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000710","PCON18NM":"Gedling","FID":281},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000711","PCON18NM":"Gillingham and Rainham","FID":282},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000712","PCON18NM":"Gloucester","FID":283},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000713","PCON18NM":"Gosport","FID":284},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000714","PCON18NM":"Grantham and Stamford","FID":285},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000715","PCON18NM":"Gravesham","FID":286},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000716","PCON18NM":"Great Grimsby","FID":287},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000717","PCON18NM":"Great Yarmouth","FID":288},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000718","PCON18NM":"Greenwich and Woolwich","FID":289},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000719","PCON18NM":"Guildford","FID":290},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000720","PCON18NM":"Hackney North and Stoke Newington","FID":291},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000721","PCON18NM":"Hackney South and Shoreditch","FID":292},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000722","PCON18NM":"Halesowen and Rowley Regis","FID":293},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000723","PCON18NM":"Halifax","FID":294},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000724","PCON18NM":"Haltemprice and Howden","FID":295},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000725","PCON18NM":"Halton","FID":296},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000726","PCON18NM":"Hammersmith","FID":297},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000727","PCON18NM":"Hampstead and Kilburn","FID":298},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000728","PCON18NM":"Harborough","FID":299},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000729","PCON18NM":"Harlow","FID":300},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000880","PCON18NM":"Plymouth, Sutton and Devonport","FID":301},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000630","PCON18NM":"Cheltenham","FID":302},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000631","PCON18NM":"Chesham and Amersham","FID":303},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000632","PCON18NM":"Chesterfield","FID":304},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000633","PCON18NM":"Chichester","FID":305},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000634","PCON18NM":"Chingford and Woodford Green","FID":306},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000635","PCON18NM":"Chippenham","FID":307},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000636","PCON18NM":"Chipping Barnet","FID":308},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000637","PCON18NM":"Chorley","FID":309},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000638","PCON18NM":"Christchurch","FID":310},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000639","PCON18NM":"Cities of London and Westminster","FID":311},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000640","PCON18NM":"City of Chester","FID":312},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000641","PCON18NM":"City of Durham","FID":313},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000642","PCON18NM":"Clacton","FID":314},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000643","PCON18NM":"Cleethorpes","FID":315},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000644","PCON18NM":"Colchester","FID":316},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000645","PCON18NM":"Colne Valley","FID":317},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000646","PCON18NM":"Congleton","FID":318},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000647","PCON18NM":"Copeland","FID":319},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000648","PCON18NM":"Corby","FID":320},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000649","PCON18NM":"Coventry North East","FID":321},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000650","PCON18NM":"Coventry North West","FID":322},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000651","PCON18NM":"Coventry South","FID":323},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000652","PCON18NM":"Crawley","FID":324},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000653","PCON18NM":"Crewe and Nantwich","FID":325},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000654","PCON18NM":"Croydon Central","FID":326},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000655","PCON18NM":"Croydon North","FID":327},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000656","PCON18NM":"Croydon South","FID":328},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000657","PCON18NM":"Dagenham and Rainham","FID":329},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000658","PCON18NM":"Darlington","FID":330},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000659","PCON18NM":"Dartford","FID":331},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000660","PCON18NM":"Daventry","FID":332},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000661","PCON18NM":"Denton and Reddish","FID":333},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000662","PCON18NM":"Derby North","FID":334},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000663","PCON18NM":"Derby South","FID":335},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000664","PCON18NM":"Derbyshire Dales","FID":336},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000665","PCON18NM":"Devizes","FID":337},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000666","PCON18NM":"Dewsbury","FID":338},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000667","PCON18NM":"Don Valley","FID":339},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000668","PCON18NM":"Doncaster Central","FID":340},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000669","PCON18NM":"Doncaster North","FID":341},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000670","PCON18NM":"Dover","FID":342},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000671","PCON18NM":"Dudley North","FID":343},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000672","PCON18NM":"Dudley South","FID":344},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000673","PCON18NM":"Dulwich and West Norwood","FID":345},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000674","PCON18NM":"Ealing Central and Acton","FID":346},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000675","PCON18NM":"Ealing North","FID":347},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000676","PCON18NM":"Ealing, Southall","FID":348},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000677","PCON18NM":"Easington","FID":349},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000678","PCON18NM":"East Devon","FID":350},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000679","PCON18NM":"East Ham","FID":351},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000881","PCON18NM":"Poole","FID":352},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000882","PCON18NM":"Poplar and Limehouse","FID":353},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000883","PCON18NM":"Portsmouth North","FID":354},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000884","PCON18NM":"Portsmouth South","FID":355},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000885","PCON18NM":"Preston","FID":356},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000886","PCON18NM":"Pudsey","FID":357},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000887","PCON18NM":"Putney","FID":358},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000888","PCON18NM":"Rayleigh and Wickford","FID":359},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000889","PCON18NM":"Reading East","FID":360},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000890","PCON18NM":"Reading West","FID":361},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000891","PCON18NM":"Redcar","FID":362},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000892","PCON18NM":"Redditch","FID":363},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000893","PCON18NM":"Reigate","FID":364},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000894","PCON18NM":"Ribble Valley","FID":365},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000895","PCON18NM":"Richmond (Yorks)","FID":366},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000896","PCON18NM":"Richmond Park","FID":367},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000897","PCON18NM":"Rochdale","FID":368},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000898","PCON18NM":"Rochester and Strood","FID":369},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000899","PCON18NM":"Rochford and Southend East","FID":370},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000900","PCON18NM":"Romford","FID":371},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000901","PCON18NM":"Romsey and Southampton North","FID":372},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000902","PCON18NM":"Rossendale and Darwen","FID":373},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000903","PCON18NM":"Rother Valley","FID":374},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000904","PCON18NM":"Rotherham","FID":375},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000905","PCON18NM":"Rugby","FID":376},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000906","PCON18NM":"Ruislip, Northwood and Pinner","FID":377},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000907","PCON18NM":"Runnymede and Weybridge","FID":378},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000908","PCON18NM":"Rushcliffe","FID":379},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000909","PCON18NM":"Rutland and Melton","FID":380},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000910","PCON18NM":"Saffron Walden","FID":381},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000911","PCON18NM":"Salford and Eccles","FID":382},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000912","PCON18NM":"Salisbury","FID":383},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000913","PCON18NM":"Scarborough and Whitby","FID":384},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000914","PCON18NM":"Scunthorpe","FID":385},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000915","PCON18NM":"Sedgefield","FID":386},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000916","PCON18NM":"Sefton Central","FID":387},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000917","PCON18NM":"Selby and Ainsty","FID":388},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000918","PCON18NM":"Sevenoaks","FID":389},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000919","PCON18NM":"Sheffield Central","FID":390},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000920","PCON18NM":"Sheffield South East","FID":391},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000921","PCON18NM":"Sheffield, Brightside and Hillsborough","FID":392},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000922","PCON18NM":"Sheffield, Hallam","FID":393},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000923","PCON18NM":"Sheffield, Heeley","FID":394},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000924","PCON18NM":"Sherwood","FID":395},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000925","PCON18NM":"Shipley","FID":396},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000926","PCON18NM":"Shrewsbury and Atcham","FID":397},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000927","PCON18NM":"Sittingbourne and Sheppey","FID":398},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000928","PCON18NM":"Skipton and Ripon","FID":399},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000929","PCON18NM":"Sleaford and North Hykeham","FID":400},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000050","PCON18NM":"Ochil and South Perthshire","FID":401},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000051","PCON18NM":"Orkney and Shetland","FID":402},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000052","PCON18NM":"Paisley and Renfrewshire North","FID":403},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000053","PCON18NM":"Paisley and Renfrewshire South","FID":404},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000054","PCON18NM":"Perth and North Perthshire","FID":405},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000055","PCON18NM":"Ross, Skye and Lochaber","FID":406},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000056","PCON18NM":"Rutherglen and Hamilton West","FID":407},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000057","PCON18NM":"Stirling","FID":408},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000058","PCON18NM":"West Aberdeenshire and Kincardine","FID":409},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000059","PCON18NM":"West Dunbartonshire","FID":410},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000041","PCON18NM":"Ynys Môn","FID":411},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000042","PCON18NM":"Delyn","FID":412},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000043","PCON18NM":"Alyn and Deeside","FID":413},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000044","PCON18NM":"Wrexham","FID":414},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000045","PCON18NM":"Llanelli","FID":415},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000046","PCON18NM":"Gower","FID":416},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000047","PCON18NM":"Swansea West","FID":417},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000048","PCON18NM":"Swansea East","FID":418},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000049","PCON18NM":"Aberavon","FID":419},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000050","PCON18NM":"Cardiff Central","FID":420},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000051","PCON18NM":"Cardiff North","FID":421},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000052","PCON18NM":"Rhondda","FID":422},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000053","PCON18NM":"Torfaen","FID":423},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000054","PCON18NM":"Monmouth","FID":424},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000055","PCON18NM":"Newport East","FID":425},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000056","PCON18NM":"Newport West","FID":426},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000057","PCON18NM":"Arfon","FID":427},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000058","PCON18NM":"Aberconwy","FID":428},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000059","PCON18NM":"Clwyd West","FID":429},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000060","PCON18NM":"Vale of Clwyd","FID":430},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000061","PCON18NM":"Dwyfor Meirionnydd","FID":431},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000062","PCON18NM":"Clwyd South","FID":432},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000063","PCON18NM":"Montgomeryshire","FID":433},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000064","PCON18NM":"Ceredigion","FID":434},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000065","PCON18NM":"Preseli Pembrokeshire","FID":435},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000066","PCON18NM":"Carmarthen West and South Pembrokeshire","FID":436},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000067","PCON18NM":"Carmarthen East and Dinefwr","FID":437},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000068","PCON18NM":"Brecon and Radnorshire","FID":438},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000069","PCON18NM":"Neath","FID":439},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000070","PCON18NM":"Cynon Valley","FID":440},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000071","PCON18NM":"Merthyr Tydfil and Rhymney","FID":441},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000072","PCON18NM":"Blaenau Gwent","FID":442},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000073","PCON18NM":"Bridgend","FID":443},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000074","PCON18NM":"Ogmore","FID":444},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000075","PCON18NM":"Pontypridd","FID":445},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000076","PCON18NM":"Caerphilly","FID":446},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000077","PCON18NM":"Islwyn","FID":447},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000078","PCON18NM":"Vale of Glamorgan","FID":448},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000079","PCON18NM":"Cardiff West","FID":449},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"W07000080","PCON18NM":"Cardiff South and Penarth","FID":450},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000980","PCON18NM":"Stroud","FID":451},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000981","PCON18NM":"Suffolk Coastal","FID":452},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000982","PCON18NM":"Sunderland Central","FID":453},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000983","PCON18NM":"Surrey Heath","FID":454},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000984","PCON18NM":"Sutton and Cheam","FID":455},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000985","PCON18NM":"Sutton Coldfield","FID":456},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000986","PCON18NM":"Tamworth","FID":457},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000987","PCON18NM":"Tatton","FID":458},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000988","PCON18NM":"Taunton Deane","FID":459},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000989","PCON18NM":"Telford","FID":460},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000990","PCON18NM":"Tewkesbury","FID":461},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000991","PCON18NM":"The Cotswolds","FID":462},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000992","PCON18NM":"The Wrekin","FID":463},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000993","PCON18NM":"Thirsk and Malton","FID":464},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000994","PCON18NM":"Thornbury and Yate","FID":465},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000995","PCON18NM":"Thurrock","FID":466},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000996","PCON18NM":"Tiverton and Honiton","FID":467},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000997","PCON18NM":"Tonbridge and Malling","FID":468},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000998","PCON18NM":"Tooting","FID":469},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000999","PCON18NM":"Torbay","FID":470},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001000","PCON18NM":"Torridge and West Devon","FID":471},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001001","PCON18NM":"Totnes","FID":472},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001002","PCON18NM":"Tottenham","FID":473},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001003","PCON18NM":"Truro and Falmouth","FID":474},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001004","PCON18NM":"Tunbridge Wells","FID":475},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001005","PCON18NM":"Twickenham","FID":476},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001006","PCON18NM":"Tynemouth","FID":477},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001007","PCON18NM":"Uxbridge and South Ruislip","FID":478},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001008","PCON18NM":"Vauxhall","FID":479},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001009","PCON18NM":"Wakefield","FID":480},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001010","PCON18NM":"Wallasey","FID":481},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001011","PCON18NM":"Walsall North","FID":482},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001012","PCON18NM":"Walsall South","FID":483},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001013","PCON18NM":"Walthamstow","FID":484},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001014","PCON18NM":"Wansbeck","FID":485},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001015","PCON18NM":"Wantage","FID":486},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001016","PCON18NM":"Warley","FID":487},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001017","PCON18NM":"Warrington North","FID":488},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001018","PCON18NM":"Warrington South","FID":489},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001019","PCON18NM":"Warwick and Leamington","FID":490},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001020","PCON18NM":"Washington and Sunderland West","FID":491},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001021","PCON18NM":"Watford","FID":492},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001022","PCON18NM":"Waveney","FID":493},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001023","PCON18NM":"Wealden","FID":494},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001024","PCON18NM":"Weaver Vale","FID":495},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001025","PCON18NM":"Wellingborough","FID":496},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001026","PCON18NM":"Wells","FID":497},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001027","PCON18NM":"Welwyn Hatfield","FID":498},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001028","PCON18NM":"Wentworth and Dearne","FID":499},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001029","PCON18NM":"West Bromwich East","FID":500},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000930","PCON18NM":"Slough","FID":501},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000931","PCON18NM":"Solihull","FID":502},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000932","PCON18NM":"Somerton and Frome","FID":503},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000933","PCON18NM":"South Basildon and East Thurrock","FID":504},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000934","PCON18NM":"South Cambridgeshire","FID":505},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000935","PCON18NM":"South Derbyshire","FID":506},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000936","PCON18NM":"South Dorset","FID":507},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000937","PCON18NM":"South East Cambridgeshire","FID":508},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000938","PCON18NM":"South East Cornwall","FID":509},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000939","PCON18NM":"South Holland and The Deepings","FID":510},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000940","PCON18NM":"South Leicestershire","FID":511},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000941","PCON18NM":"South Norfolk","FID":512},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000942","PCON18NM":"South Northamptonshire","FID":513},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000943","PCON18NM":"South Ribble","FID":514},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000944","PCON18NM":"South Shields","FID":515},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000945","PCON18NM":"South Staffordshire","FID":516},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000946","PCON18NM":"South Suffolk","FID":517},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000947","PCON18NM":"South Swindon","FID":518},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000948","PCON18NM":"South Thanet","FID":519},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000949","PCON18NM":"South West Bedfordshire","FID":520},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000950","PCON18NM":"South West Devon","FID":521},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000951","PCON18NM":"South West Hertfordshire","FID":522},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000952","PCON18NM":"South West Norfolk","FID":523},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000953","PCON18NM":"South West Surrey","FID":524},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000954","PCON18NM":"South West Wiltshire","FID":525},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000955","PCON18NM":"Southampton, Itchen","FID":526},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000956","PCON18NM":"Southampton, Test","FID":527},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000957","PCON18NM":"Southend West","FID":528},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000958","PCON18NM":"Southport","FID":529},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000959","PCON18NM":"Spelthorne","FID":530},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000960","PCON18NM":"St Albans","FID":531},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000961","PCON18NM":"St Austell and Newquay","FID":532},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000962","PCON18NM":"St Helens North","FID":533},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000963","PCON18NM":"St Helens South and Whiston","FID":534},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000964","PCON18NM":"St Ives","FID":535},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000965","PCON18NM":"Stafford","FID":536},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000966","PCON18NM":"Staffordshire Moorlands","FID":537},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000967","PCON18NM":"Stalybridge and Hyde","FID":538},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000968","PCON18NM":"Stevenage","FID":539},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000969","PCON18NM":"Stockport","FID":540},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000970","PCON18NM":"Stockton North","FID":541},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000971","PCON18NM":"Stockton South","FID":542},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000972","PCON18NM":"Stoke-on-Trent Central","FID":543},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000973","PCON18NM":"Stoke-on-Trent North","FID":544},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000974","PCON18NM":"Stoke-on-Trent South","FID":545},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000975","PCON18NM":"Stone","FID":546},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000976","PCON18NM":"Stourbridge","FID":547},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000977","PCON18NM":"Stratford-on-Avon","FID":548},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000978","PCON18NM":"Streatham","FID":549},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14000979","PCON18NM":"Stretford and Urmston","FID":550},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001030","PCON18NM":"West Bromwich West","FID":551},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001031","PCON18NM":"West Dorset","FID":552},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001032","PCON18NM":"West Ham","FID":553},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001033","PCON18NM":"West Lancashire","FID":554},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001034","PCON18NM":"West Suffolk","FID":555},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001035","PCON18NM":"West Worcestershire","FID":556},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001036","PCON18NM":"Westminster North","FID":557},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001037","PCON18NM":"Westmorland and Lonsdale","FID":558},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001038","PCON18NM":"Weston-Super-Mare","FID":559},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001039","PCON18NM":"Wigan","FID":560},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001040","PCON18NM":"Wimbledon","FID":561},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001041","PCON18NM":"Winchester","FID":562},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001042","PCON18NM":"Windsor","FID":563},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001043","PCON18NM":"Wirral South","FID":564},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001044","PCON18NM":"Wirral West","FID":565},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001045","PCON18NM":"Witham","FID":566},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001046","PCON18NM":"Witney","FID":567},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001047","PCON18NM":"Woking","FID":568},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001048","PCON18NM":"Wokingham","FID":569},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001049","PCON18NM":"Wolverhampton North East","FID":570},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001050","PCON18NM":"Wolverhampton South East","FID":571},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001051","PCON18NM":"Wolverhampton South West","FID":572},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001052","PCON18NM":"Worcester","FID":573},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001053","PCON18NM":"Workington","FID":574},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001054","PCON18NM":"Worsley and Eccles South","FID":575},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001055","PCON18NM":"Worthing West","FID":576},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001056","PCON18NM":"Wycombe","FID":577},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001057","PCON18NM":"Wyre and Preston North","FID":578},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001058","PCON18NM":"Wyre Forest","FID":579},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001059","PCON18NM":"Wythenshawe and Sale East","FID":580},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001060","PCON18NM":"Yeovil","FID":581},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001061","PCON18NM":"York Central","FID":582},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"E14001062","PCON18NM":"York Outer","FID":583},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000001","PCON18NM":"Belfast East","FID":584},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000002","PCON18NM":"Belfast North","FID":585},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000003","PCON18NM":"Belfast South","FID":586},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000004","PCON18NM":"Belfast West","FID":587},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000005","PCON18NM":"East Antrim","FID":588},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000006","PCON18NM":"East Londonderry","FID":589},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000007","PCON18NM":"Fermanagh and South Tyrone","FID":590},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000008","PCON18NM":"Foyle","FID":591},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000009","PCON18NM":"Lagan Valley","FID":592},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000010","PCON18NM":"Mid Ulster","FID":593},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000011","PCON18NM":"Newry and Armagh","FID":594},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000012","PCON18NM":"North Antrim","FID":595},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000013","PCON18NM":"North Down","FID":596},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000014","PCON18NM":"South Antrim","FID":597},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000015","PCON18NM":"South Down","FID":598},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000016","PCON18NM":"Strangford","FID":599},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000017","PCON18NM":"Upper Bann","FID":600},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"N06000018","PCON18NM":"West Tyrone","FID":601},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000001","PCON18NM":"Aberdeen North","FID":602},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000002","PCON18NM":"Aberdeen South","FID":603},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000003","PCON18NM":"Airdrie and Shotts","FID":604},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000004","PCON18NM":"Angus","FID":605},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000005","PCON18NM":"Argyll and Bute","FID":606},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000006","PCON18NM":"Ayr, Carrick and Cumnock","FID":607},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000007","PCON18NM":"Banff and Buchan","FID":608},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000008","PCON18NM":"Berwickshire, Roxburgh and Selkirk","FID":609},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000009","PCON18NM":"Caithness, Sutherland and Easter Ross","FID":610},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000010","PCON18NM":"Central Ayrshire","FID":611},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000011","PCON18NM":"Coatbridge, Chryston and Bellshill","FID":612},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000012","PCON18NM":"Cumbernauld, Kilsyth and Kirkintilloch East","FID":613},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000013","PCON18NM":"Dumfries and Galloway","FID":614},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000014","PCON18NM":"Dumfriesshire, Clydesdale and Tweeddale","FID":615},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000015","PCON18NM":"Dundee East","FID":616},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000016","PCON18NM":"Dundee West","FID":617},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000017","PCON18NM":"Dunfermline and West Fife","FID":618},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000018","PCON18NM":"East Dunbartonshire","FID":619},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000019","PCON18NM":"East Kilbride, Strathaven and Lesmahagow","FID":620},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000020","PCON18NM":"East Lothian","FID":621},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000021","PCON18NM":"East Renfrewshire","FID":622},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000022","PCON18NM":"Edinburgh East","FID":623},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000023","PCON18NM":"Edinburgh North and Leith","FID":624},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000024","PCON18NM":"Edinburgh South","FID":625},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000025","PCON18NM":"Edinburgh South West","FID":626},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000026","PCON18NM":"Edinburgh West","FID":627},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000027","PCON18NM":"Na h-Eileanan an Iar","FID":628},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000028","PCON18NM":"Falkirk","FID":629},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000029","PCON18NM":"Glasgow Central","FID":630},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000030","PCON18NM":"Glasgow East","FID":631},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000031","PCON18NM":"Glasgow North","FID":632},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000032","PCON18NM":"Glasgow North East","FID":633},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000033","PCON18NM":"Glasgow North West","FID":634},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000034","PCON18NM":"Glasgow South","FID":635},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000035","PCON18NM":"Glasgow South West","FID":636},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000036","PCON18NM":"Glenrothes","FID":637},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000037","PCON18NM":"Gordon","FID":638},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000038","PCON18NM":"Inverclyde","FID":639},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000039","PCON18NM":"Inverness, Nairn, Badenoch and Strathspey","FID":640},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000040","PCON18NM":"Kilmarnock and Loudoun","FID":641},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000041","PCON18NM":"Kirkcaldy and Cowdenbeath","FID":642},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000042","PCON18NM":"Lanark and Hamilton East","FID":643},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000043","PCON18NM":"Linlithgow and East Falkirk","FID":644},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000044","PCON18NM":"Livingston","FID":645},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000045","PCON18NM":"Midlothian","FID":646},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000046","PCON18NM":"Moray","FID":647},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000047","PCON18NM":"Motherwell and Wishaw","FID":648},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000048","PCON18NM":"North Ayrshire and Arran","FID":649},"geometry":null},{"type":"Feature","properties":{"PCON18CD":"S14000049","PCON18NM":"North East Fife","FID":650},"geometry":null}]} |
{"dta.poem.12589": {"metadata": {"author": {"name": "Hagedorn, Friedrich von", "birth": "N.A.", "death": "N.A."}, "title": "Erster Theil. \n Von den Tisch-Liedern.", "genre": "Lyrik", "period": "N.A.", "pub_year": "1744", "urn": "urn:nbn:de:kobv:b4-200905199128", "language": ["de:0.85", "nl:0.14"], "booktitle": "N.A."}, "poem": {"stanza.1": {"line.1": {"text": "M\u00f6chten wir doch nur erkennen,", "tokens": ["M\u00f6ch\u00b7ten", "wir", "doch", "nur", "er\u00b7ken\u00b7nen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "PPER", "ADV", "ADV", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.2": {"text": "Was ein jeder w\u00fcrklich ist!", "tokens": ["Was", "ein", "je\u00b7der", "w\u00fcrk\u00b7lich", "ist", "!"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "ART", "PIAT", "ADJD", "VAFIN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.3": {"text": "K\u00f6nnten wir die Brust er\u00f6ffnen,", "tokens": ["K\u00f6nn\u00b7ten", "wir", "die", "Brust", "er\u00b7\u00f6ff\u00b7nen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "PPER", "ART", "NN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "Und alsdenn ins Herze schaun,", "tokens": ["Und", "als\u00b7denn", "ins", "Her\u00b7ze", "schaun", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ADV", "APPRART", "NN", "VVINF", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Und wenn wir hinein gesehn,", "tokens": ["Und", "wenn", "wir", "hin\u00b7ein", "ge\u00b7sehn", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KON", "KOUS", "PPER", "ADV", "VVPP", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.6": {"text": "Wiederum die Brust verschliessen,", "tokens": ["Wie\u00b7de\u00b7rum", "die", "Brust", "ver\u00b7schlies\u00b7sen", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["PWAV", "ART", "NN", "VVPP", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.7": {"text": "Und uns denn erst Freunde w\u00e4hlen,", "tokens": ["Und", "uns", "denn", "erst", "Freun\u00b7de", "w\u00e4h\u00b7len", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "PPER", "ADV", "ADV", "NN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.8": {"text": "Die getreu und redlich sind!", "tokens": ["Die", "ge\u00b7treu", "und", "red\u00b7lich", "sind", "!"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ART", "ADJD", "KON", "ADJD", "VAFIN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}}}}} |
{"id":331682,"type":4,"name":"提督の決断III","image":"//lain.bgm.tv/pic/cover/m/de/be/331682_71tTt.jpg","summary":"『提督の決断III』(ていとくのけつだんスリー)は、1996年に光栄(現・コーエー)から発売された海戦シミュレーションゲーム。第二次世界大戦を題材にした「WWIIゲームシリーズ」の第4作、「提督の決断シリーズ」の第3作。\r\n\r\n ・海戦の要”艦隊決戦”。海上、海中、空の\r\n 三層で迫力の立体バトルが展開する。\r\n\r\n ・戦った海戦は、戦史として記録される\r\n オリジナルの提督のほか、艦船の改装\r\n や新型艦船、新型航空機の設計も可能。\r\n\r\n ・200種の艦船、100種の航空機、20種の\r\n 戦車を用意、新兵器も登場。\r\n\r\n ・作戦会議では、7人の艦隊参謀が助言を\r\n 与えてくれる。","info":"<li><span>中文名: </span>提督之决断III</li><li><span>开发: </span>光栄(<a href=\"/person/11339\">コーエー</a>)</li><li><span>发行: </span><a href=\"/person/11339\">コーエー</a></li><li><span>音乐: </span><a href=\"/person/1600\">ボブ佐久間</a></li><li><span>别名: </span>P.T.O. III</li><li><span style=\"visibility:hidden;\">别名: </span>P.T.O.: Pacific Theater of Operations III</li><li><span style=\"visibility:hidden;\">别名: </span>提督的决断3</li><li><span>平台: </span>PC-98</li><li><span style=\"visibility:hidden;\">平台: </span>SS</li><li><span style=\"visibility:hidden;\">平台: </span>PS</li><li><span style=\"visibility:hidden;\">平台: </span>PC (Windows 95/98/Me)</li><li><span>游戏类型: </span>TBS</li><li><span>游玩人数: </span>1~2人</li><li><span>发行日期: </span>1996年</li><li><span>售价: </span>1,980円(税抜)</li><li><span>官方网站: </span>http://www.gamecity.ne.jp/products/products/ee/Rltei3.htm</li><li><span>制作人: </span>シブサワ・コウ</li>","staff":[{"id":11339,"image":"//lain.bgm.tv/pic/crt/g/c3/49/11339_prsn_tTL7b.jpg","name":"光荣","desc":"开发"},{"id":1600,"image":"","name":"鲍勃佐久间","desc":"音乐"}]} |
{"comment": "0", "idNoticia": "5532", "tags": ["BANCO CENTRAL", "BOLSA DE VALORES", "BRASIL", "CHINA", "COMMODITY", "CRÉDITO", "DÓLAR", "EDUARDO VELHO", "EMPREGO", "EMPRESA ESTATAL", "ESTADOS UNIDOS", "EUROPA", "FED", "HSBC", "IBOVESPA", "PETROBRÁS", "PETRÓLEO", "PIB", "POLÍTICA MONETÁRIA", "PRÉ-SAL", "PRODUÇÃO DE PETRÓLEO", "PRODUÇÃO INDUSTRIAL", "SETOR DE SERVIÇOS", "SETOR INDUSTRIAL", "TESOURO DOS EUA"], "url": "http://www.valor.com.br/financas/2957994/ibovespa-opera-em-queda-enquanto-espera-relatorio-de-emprego-dos-eua ", "autor": " Téo Takar ", "titulo": "Ibovespa opera em queda enquanto espera relatório de emprego dos EUA", "corpo": "SÃO PAULO – A bolsa brasileira iniciou o pregão desta sexta-feira com tendência negativa, após acumular ganhos de quase 4% em apenas dois pregões de 2013. Por volta de 10h15, o Ibovespa registrava desvalorização de 0,42%, aos 63.046 pontos. Entre os motivos para esfriar os ânimos por aqui está a ata do Federal Reserve (Fed, o banco central americano), que mostrou preocupação entre os membros da autoridade monetária sobre o tempo de manutenção do programa de compras de títulos para estimular a economia. “A reversão potencial da política monetária expansionista antes do desejado ficou reforçada pela sinalização do Federal Reserve”, avalia o economista-chefe da Planner Corretora, Eduardo Velho, em relatório distribuído aos clientes. “Esse movimento favoreceria o aumento dos juros das treasuries [títulos do Tesouro americano] e também do nosso juro doméstico futuro e a valorização do dólar”, acrescenta o especialista. Eduardo Velho comenta ainda que a tendência do Ibovespa nesta sexta-feira deverá ser definida somente após a divulgação do dado de geração de emprego nos Estados Unidos, às 11h30 (de Brasília). Ontem, o mercado se surpreendeu com os números da ADP que mostraram a criação de 215 mil vagas pelo setor privado em dezembro, ante a expectativa dos economistas de geração de 150 mil postos de trabalho. O mercado avalia ainda os dados de produção industrial no Brasil, que mostraram recuo de 0,6% em novembro na comparação com outubro, além dos indicadores de atividade do setor de serviços na China e na Europa. No caso do número chinês – que tem maior influência sobre as empresas brasileiras produtoras de commodities –, o economista-chefe da Planner considera que, apesar da queda do índice, de 52,1 em novembro para 51,7 em dezembro, segundo a medição do HSBC, “avaliamos que o resultado não seja propriamente negativo. Não reduz a nossa previsão de que o ritmo de alta do PIB chinês tenha ganhado mais consistência no quarto trimestre, puxado pela indústria e crédito. Em segundo lugar, o número do índice ainda significava expansão, além do fato que em sua decomposição constatou-se aumento do emprego”. No campo corporativo, a Petrobras volta a chamar atenção hoje, após anunciar na noite de ontem uma nova descoberta de petróleo no pré-sal da Bacia de Campos, na reserva conhecida como Mandarim. Ontem, a estatal já havia declarado a comercialidade das reservas de Aruanã e Oliva, no pós-sal da Bacia de Campos, além de destacar o potencial da reserva de Carcará, no pré-sal da Bacia de Santos. A empresa também divulgou um aumento de 1,5% na produção de petróleo no Brasil em novembro sobre outubro. (Téo Takar | Valor)", "data": "2013-01-04 10:24:00"} |
{"ast":null,"code":"export var canvas2Cartesian = function canvas2Cartesian(v, center) {\n \"worklet\";\n\n return {\n x: v.x - center.x,\n y: -1 * (v.y - center.y)\n };\n};\nexport var cartesian2Canvas = function cartesian2Canvas(v, center) {\n \"worklet\";\n\n return {\n x: v.x + center.x,\n y: -1 * v.y + center.y\n };\n};\nexport var cartesian2Polar = function cartesian2Polar(v) {\n \"worklet\";\n\n return {\n theta: Math.atan2(v.y, v.x),\n radius: Math.sqrt(Math.pow(v.x, 2) + Math.pow(v.y, 2))\n };\n};\nexport var polar2Cartesian = function polar2Cartesian(p) {\n \"worklet\";\n\n return {\n x: p.radius * Math.cos(p.theta),\n y: p.radius * Math.sin(p.theta)\n };\n};\nexport var polar2Canvas = function polar2Canvas(p, center) {\n \"worklet\";\n\n return cartesian2Canvas(polar2Cartesian(p), center);\n};\nexport var canvas2Polar = function canvas2Polar(v, center) {\n \"worklet\";\n\n return cartesian2Polar(canvas2Cartesian(v, center));\n};","map":{"version":3,"sources":["Coordinates.ts"],"names":["canvas2Cartesian","x","v","center","y","cartesian2Canvas","cartesian2Polar","theta","Math","radius","polar2Cartesian","p","polar2Canvas","canvas2Polar"],"mappings":"AAOA,OAAO,IAAMA,gBAAgB,GAAhBA,SAAAA,gBAAAA,CAAmB,CAAnBA,EAAmB,MAAnBA,EAAkD;AAC7D;;AACA,SAAO;AACLC,IAAAA,CAAC,EAAEC,CAAC,CAADA,CAAAA,GAAMC,MAAM,CADV,CAAA;AAELC,IAAAA,CAAC,EAAE,CAAA,CAAA,IAAMF,CAAC,CAADA,CAAAA,GAAMC,MAAM,CAFvB,CAEK;AAFE,GAAP;AAFK,CAAA;AAQP,OAAO,IAAME,gBAAgB,GAAhBA,SAAAA,gBAAAA,CAAmB,CAAnBA,EAAmB,MAAnBA,EAAkD;AAC7D;;AACA,SAAO;AACLJ,IAAAA,CAAC,EAAEC,CAAC,CAADA,CAAAA,GAAMC,MAAM,CADV,CAAA;AAELC,IAAAA,CAAC,EAAE,CAAA,CAAA,GAAKF,CAAC,CAAN,CAAA,GAAWC,MAAM,CAFtB;AAAO,GAAP;AAFK,CAAA;AAQP,OAAO,IAAMG,eAAe,GAAfA,SAAAA,eAAAA,CAAkB,CAAlBA,EAAiC;AAC5C;;AACA,SAAO;AACLC,IAAAA,KAAK,EAAEC,IAAI,CAAJA,KAAAA,CAAWN,CAAC,CAAZM,CAAAA,EAAgBN,CAAC,CADnB,CACEM,CADF;AAELC,IAAAA,MAAM,EAAED,IAAI,CAAJA,IAAAA,CAAU,IAAA,CAAA,GAAA,CAAA,CAAC,CAAD,CAAA,EAAA,CAAA,IAAA,IAAA,CAAA,GAAA,CAAWN,CAAC,CAAZ,CAAA,EAFpB,CAEoB,CAAVM;AAFH,GAAP;AAFK,CAAA;AAQP,OAAO,IAAME,eAAe,GAAfA,SAAAA,eAAAA,CAAkB,CAAlBA,EAAqC;AAChD;;AACA,SAAO;AACLT,IAAAA,CAAC,EAAEU,CAAC,CAADA,MAAAA,GAAWH,IAAI,CAAJA,GAAAA,CAASG,CAAC,CADnB,KACSH,CADT;AAELJ,IAAAA,CAAC,EAAEO,CAAC,CAADA,MAAAA,GAAWH,IAAI,CAAJA,GAAAA,CAASG,CAAC,CAF1B,KAEgBH;AAFT,GAAP;AAFK,CAAA;AAQP,OAAO,IAAMI,YAAY,GAAZA,SAAAA,YAAAA,CAAe,CAAfA,EAAe,MAAfA,EAAkD;AAC7D;;AACA,SAAOP,gBAAgB,CAACK,eAAe,CAAhB,CAAgB,CAAhB,EAAvB,MAAuB,CAAvB;AAFK,CAAA;AAKP,OAAO,IAAMG,YAAY,GAAZA,SAAAA,YAAAA,CAAe,CAAfA,EAAe,MAAfA,EAA8C;AACzD;;AACA,SAAOP,eAAe,CAACN,gBAAgB,CAAA,CAAA,EAAvC,MAAuC,CAAjB,CAAtB;AAFK,CAAA","sourcesContent":["import { Vector } from \"./Vectors\";\n\nexport interface PolarPoint {\n theta: number;\n radius: number;\n}\n\nexport const canvas2Cartesian = (v: Vector, center: Vector) => {\n \"worklet\";\n return {\n x: v.x - center.x,\n y: -1 * (v.y - center.y),\n };\n};\n\nexport const cartesian2Canvas = (v: Vector, center: Vector) => {\n \"worklet\";\n return {\n x: v.x + center.x,\n y: -1 * v.y + center.y,\n };\n};\n\nexport const cartesian2Polar = (v: Vector) => {\n \"worklet\";\n return {\n theta: Math.atan2(v.y, v.x),\n radius: Math.sqrt(v.x ** 2 + v.y ** 2),\n };\n};\n\nexport const polar2Cartesian = (p: PolarPoint) => {\n \"worklet\";\n return {\n x: p.radius * Math.cos(p.theta),\n y: p.radius * Math.sin(p.theta),\n };\n};\n\nexport const polar2Canvas = (p: PolarPoint, center: Vector) => {\n \"worklet\";\n return cartesian2Canvas(polar2Cartesian(p), center);\n};\n\nexport const canvas2Polar = (v: Vector, center: Vector) => {\n \"worklet\";\n return cartesian2Polar(canvas2Cartesian(v, center));\n};\n"]},"metadata":{},"sourceType":"module"} |
{
"first_traded_price": 5444.0,
"highest_price": 5444.0,
"isin": "IRO3KRMZ0001",
"last_traded_price": 5111.0,
"lowest_price": 5073.0,
"trade_volume": 943429.0,
"unix_time": 1541894400
} |
{"data":[{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111076-awning_green_stripe_2_3x2.png","features":["Awning","Market","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"050eabc9556d719b9a95df1eb045caef"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111128-cargo_box_1d_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"9b6136872c9752f72e5da55e372c062e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111078-boat_1b_1x3.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"682d6135e5873c43ed71c44204695894"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111079-boat_1c_3x1.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"4e6dc019f838d238d4fd05c71f975d63"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111080-boat_1d_1x3.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"0a5c04aca0672e841b150c67fa430a3d"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111081-boat_1e_2x3.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"18477be2731ce7081a281dfa125641e7"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111082-boat_1f_2x3.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"63ffa214572d852a7693911f7c16caf9"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111083-boat_1g_2x3.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"1469fb4e5f06b8bb8d6627ed57d2c69d"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111084-boat_1h_2x3.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"18dca64bd80b251fd239311d9409e2cb"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111085-boat_2a_2x5.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"81ad9a839647e9eaba321092fe0a8f81"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111086-boat_2b_5x2.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"6a39a3da93bd729928769433ea74adff"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111087-boat_2c_2x5.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"19ff71d3551cf0b302fd3a621c8c73bd"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111088-boat_2d_5x2.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"41c4632680f7293ad8b740cde4a6b1a0"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111089-boat_2e_4x4.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"e1abbfc12d9f128a24b7d000d57fe779"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111090-boat_2f_4x4.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"88b9ee94d98848d0897583d866c5e1e0"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111091-boat_2g_4x4.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"8a003733923d23b5940813ef943ca416"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111092-boat_2h_4x4.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"c7f11e591ad79f828156580a31ac92fa"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111093-bottles_1_1x1.png","features":["Decoration","Bottle","Top Down","Rubble"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"88720ff7f191595ad6675a68a49607e4"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111094-bottles_2_1x1.png","features":["Decoration","Bottle","Top Down","Rubble"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"93a86814ea569e9a43d332f5d3998369"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111095-bottles_brown_1x1.png","features":["Decoration","Bottle","Top Down","Rubble"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"86997301477be85ebdf194e160f9b1d1"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111096-bottles_gray_1x1.png","features":["Decoration","Bottle","Top Down","Rubble"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"8ab9c8d7023989f9ea99170aeb385361"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111097-bottles_green_1x1.png","features":["Decoration","Bottle","Top Down","Rubble"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"7b68789985185b596b06c8511b9229cb"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111098-building_10a_6x5.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"ac9cd29da4a2b5e128d46200d29357b5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111099-building_10b_5x6.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"1e0efa1aa728a8468f9fdbb5c16fb9ed"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111100-building_10c_7x7.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"8e334efbbba08f0595315ff50257835e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111101-building_10d_7x7.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"239a713ad49fed1bc3915a4af3c93c34"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111102-building_14b_7x7.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"27ef5c5d995738cd9d35e77977ce3caa"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111103-building_20a_7x5.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"feaa1f1ae349395b4214187138a75610"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111104-building_20b_5x7.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"4a2ce4ba70e5489a86d01f6295f336d3"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111105-building_20c_7x7.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"4bbdcbb6c97f687adc28240f576b1498"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111106-building_20d_7x7.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"3904302ac7095f6991c62d7e9b3d1d3f"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111107-building_8a_8x6.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"fc441ef8b04ab46d6c92bc7110c69da3"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111108-building_8b_6x8.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"a9a853179544ecbed25bfcc679d6a1b1"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111109-building_8c_6x8.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"7adf0e767152fad74827c0d8adf73a5b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111110-building_8d_8x6.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"57d5ae266ab0abb4d1e075fd8d083915"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111111-building_8e_8x8.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"8853243c6737a4f6fa46890e59c99190"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111112-building_8f_8x8.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"84d8f90326131df86035688902b9d291"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111113-building_8g_8x8.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"1767968a0510cca320b280ccd6b3dfa1"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111114-building_8h_8x8.png","features":["Building","Settlement","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"4f3bb6f1edc1c68485cca1dbe4a05c9f"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111115-cargo_barrel_1_1x1.png","features":["Container","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"b202b2383ec41523919b5316034e0e8d"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111116-cargo_barrel_2_1x1.png","features":["Container","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"7946e7d7d6e9218b0dbc556c40c0db42"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111117-cargo_barrel_dirty_1_1x1.png","features":["Container","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"700a8e0e7ca64820fd334547505d83dc"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111118-cargo_barrel_dirty_2_1x1.png","features":["Container","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"bcbbc120c81cc98dc1eeb9036683b345"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111119-cargo_barrel_dirty_3_1x1.png","features":["Container","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"2368e6c2a45d0db1c1dc357f3f6e74ac"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111120-cargo_barrel_dirty_4_1x1.png","features":["Container","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"b3a47bace4dec3b1cc7593fd6d0bbe6d"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111121-cargo_barrels_1_2x1.png","features":["Container","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"7258c94e45b3e03aed5bd70f1587b1b2"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111122-cargo_barrels_2_1x2.png","features":["Container","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"9fb783b328bf3f4c106957c8326fe8bd"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111123-cargo_barrels_3_2x2.png","features":["Container","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"6f53615f852220356cf9cc5e0fdcd426"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111124-cargo_barrels_4_2x2.png","features":["Container","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"2818eff950f899abd2f9dcc2e037a0b8"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111125-cargo_box_1a_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"0d24b5d52946d5f5baeb46ac58726c6c"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111126-cargo_box_1b_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"ff5ff8ff2dde57d8bd49cacd25107ab9"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111127-cargo_box_1c_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"ecba9ce1b49867d6fc3e1e7269dff64c"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111075-awning_green_stripe_1_4x2.png","features":["Awning","Market","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"78c3952fa8639f854fd2d6bfcf56d7a5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111129-cargo_box_2a_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"c0b80da9ed558d26cb9e4a0e96862056"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111130-cargo_box_2b_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"5949e422e2959e271d9198fddba270e2"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111131-cargo_box_2c_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"9a72bdc5cf19a8666719c4a375f91da4"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111132-cargo_box_2d_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"76a7d81e7781d145844bbdba89395190"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111133-cargo_crate_1a_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"2da16143a096fa6f83e36af640d538e5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111134-cargo_crate_1b_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"12b0e616dec4627258c11b46278c21b4"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111135-cargo_crate_1c_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"7f7d7dc252977ce6d2e7708975382717"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111136-cargo_crate_2a_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"5dd03ad0c2e48436e8ea0f1464c61aee"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111137-cargo_crate_2b_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"2114bb39e180fb23e2a40c70a46fbd4b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111138-cargo_crate_2c_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"a1c8d19f30ff007204b8ebe9557a9869"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111139-cargo_crate_3a_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"52418f4505a63c051be3404b183a7ed2"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111140-cargo_crate_3b_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"34fd3f7d2c90e375a0659284b19441a2"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111141-cargo_crate_3c_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"aaf11faeb945dcecea02fc1178703175"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111142-cargo_crate_4a_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"74033cef12eb060e8c83eee5364cb874"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111143-cargo_crate_4b_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"b7ca27f9c53f3843b4da0ab7ab701910"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111144-cargo_crate_4c_1x1.png","features":["Container","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"f167feb850ccd7e945e4e38b422d8e96"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111145-coast_1a_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"0e46b7c9fa987daf7562fa9042a913df"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111146-coast_1b_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"1e44495f2f34ea8f66eb94d1b3785b62"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111147-coast_1c_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"e0d2b89bea1282d407df7bac8064efb0"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111148-coast_1d_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"570de1bba5414a6647eb3c8600c0fb79"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111149-coast_2a_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"eb1e3de3a1a0e9ad78139ee1aac7f4fe"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111150-coast_2b_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"427eb645adfa96ed54c764200b012d38"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111151-coast_2c_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"d7e44b42e126ebb67d3647307d409478"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111152-coast_2d_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"53fb8b78b6a6035e8436fe679aecb335"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111153-coast_3a_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"17f52fabcf9871056e21cae7dcf03f0a"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111154-coast_3b_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"202f002cbb38d7b72e48e02efac9f529"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111155-coast_3c_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"16e2b8dfaece9afbdd87865c2d5f3031"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111156-coast_3d_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"0b5e4c2e867ebbecf5986c3ea64e6d6a"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111157-coast_4a_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"ec7d38970f18768d3d40ce8f69be636b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111158-coast_4b_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"190564306e21a383f984221ef119f755"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111159-coast_4c_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"f7d8b2f3d3519dea8ce293c718cd72c5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111160-coast_4d_30x30.jpg","features":["River","Lake","Water","Grassland","Coast","Top Down"],"imageType":["Map"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Coast"],"audience":["Player"],"hash":"9d55cbab41b41ee6edc134a6e33ca4be"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111161-coast_grass_30x30.jpg","features":["Grassland"],"imageType":["Map","Texture"],"style":["Realistic","Tile"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland"],"audience":["Player"],"hash":"2ef9e61eda61a4a48f45d92083e98098"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111162-coast_map_1_30x30.jpg","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"bcc2b278ea6f1aa451a9e8bf181790a0"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111163-coast_map_2_30x30.jpg","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"dd13ed068039e996585b5c935f9c8482"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111164-dock_diag1_10_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"3af2bfa036163ad12da5a89e70500278"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111165-dock_diag1_20_4x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"fb4961316c2bc54857d0640edf56bc63"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111166-dock_diag1_5_2x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"ff39a1ed4e3c2904a8eb7ae540b002a8"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111167-dock_diag2_10_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"62de9653cf74f4096f4f87896d9deeb7"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111168-dock_diag2_20_4x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"f5b0baba0397cea9f5174fca57c43dce"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111169-dock_diag2_5_2x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"d4fe8cde30526825e5e7c9e8000d3559"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111170-dock_end_east_1x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"e94558c9f9e9c827519fc73f9d9a32b4"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111171-dock_end_ne_2x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"e54b016cb64ef9d1ddcf1a960c383dab"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111172-dock_end_north_2x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"93eecb643c572914714205ed863f38ca"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111173-dock_end_nw_2x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"998008755f8545fcd106505132313477"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111174-dock_end_se_2x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"74ed080401686dc23f4ecc56d1bb74ec"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111175-dock_end_south_2x1.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"30adb3b98d47485b67b41b50f0bdd69e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111176-dock_end_sw_2x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"1e82efa4c0056c856be616b1ada361c2"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111177-dock_end_west_2x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"1fe025c03739162fee65c0df67a1c1c4"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111178-dock_horiz_10_2x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"d9ce794dba73fc40a5dee69d961d0173"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111179-dock_horiz_20_4x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"f528ab7b069740153d53e3f9410a4a00"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111180-dock_horiz_5_1x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"4318dac584d6999f366ea74c1f92c57f"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111181-dock_turn_hne_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"8eecfc903d4d744184845f609ce846f5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111182-dock_turn_hnw_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"f9014d98b146b2542df236ae83409798"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111183-dock_turn_hse_3x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"7b9e2ef951d94badbc25875beab17dd4"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111184-dock_turn_hsw_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"cf5ba93be674b2dfa14370f7329ba399"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111185-dock_turn_vne_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"a5ef323011f96f97d78b6a6a6d5e2842"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111186-dock_turn_vnw_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"407969bea42a2fee7b663a0b1ed8db17"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111187-dock_turn_vse_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"c24d9aaf7387606bd9d2b5a7edb4ac2d"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111188-dock_turn_vsw_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"d53713ee5b616cdea2c2cc2b326dd494"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111189-dock_vert_10_2x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"faad290be4101b7992644852f1a1acbb"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111190-dock_vert_20_2x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"f92925638333ea44beeaddcf803a4ea8"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111191-dock_vert_5_2x1.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"8c7056e367664f620ac5628c8dac3929"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111192-dock_wide_diag1_10_4x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"b3ab4093411bc893964025aed23e650e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111193-dock_wide_diag1_20_5x5.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"a16bfdc8bb8c63628efeac5d2b866910"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111194-dock_wide_diag1_5_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"d9b4a469de30a8a7e313774a01b131e6"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111195-dock_wide_diag2_10_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"7cfaa458bcde18ef8f1070719a1760b2"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111196-dock_wide_diag2_20_5x5.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"8d83552be1dfc208a6082131bab6737b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111197-dock_wide_diag2_5_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"8f31d5f0b0b5a55e657dc9d92a7b0c41"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111198-dock_wide_end_east_1x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"bbe0e86f4b074d1c882a15bea20478af"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111199-dock_wide_end_ne_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"36b9804a8387dd437b8a7aa703d13053"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111200-dock_wide_end_north_3x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"b441f0ff451462ab1c6b9965e4a8609e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111201-dock_wide_end_nw_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"3a85bef7c9ccdd5def08dcf1163cd783"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111202-dock_wide_end_se_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"6629ce456f0af1bf2dd893d3dd1eb2a3"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111203-dock_wide_end_south_3x1.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"1f96a8033f46c0f3e8e16debd72d6f3b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111204-dock_wide_end_sw_3x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"d05a9cd0eb481e37e5ffe8ef09e134a6"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111205-dock_wide_end_west_2x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"296331575d0e0418f2aa95520a2c5f93"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111206-dock_wide_horiz_10_2x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"55919b189af2fd4d1edc0de4bade589c"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111207-dock_wide_horiz_20_4x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"56c2df6cd1951a3aae25d2256db49c0b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111208-dock_wide_horiz_5_1x3.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"7007a7659d5de3369f2f82ad94ed2d6b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111209-dock_wide_turn_hne_4x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"fe5ff9779bc83a49bd31a1d226fa3ebd"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111210-dock_wide_turn_hnw_4x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"2a48cfe0508f727dc0377f6712abe52f"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111211-dock_wide_turn_hse_4x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"c49d945241a453582490779924f0e410"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111212-dock_wide_turn_hsw_4x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"cc78b3247d3f932a7b95229e97132980"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111213-dock_wide_turn_vne_4x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"3fc6f5ed128042a149a5bd3cf5601b35"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111214-dock_wide_turn_vnw_4x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"e2c4662e83565de496a0bd48b442ffbb"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111215-dock_wide_turn_vse_4x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"0d83c44fa2bf3ef719ecead825136e8c"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111216-dock_wide_vert_10_3x2.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"c25cdff9bcd2eb199d7f0cdaf757e0ad"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111217-dock_wide_vert_20_3x4.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"c38930611956af76788c7e2c539e71a0"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111218-dock_wide_vert_5_3x1.png","features":["Dock","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast"],"audience":["Player"],"hash":"161b872513be8c89c4d11ac305bc3ffe"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111219-fish_10_1x1.png","features":["Food","Meal","Fish","Top Down","Fauna"],"imageType":["Map Asset","Token"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Sea"],"audience":["Player"],"hash":"a0b0e819a6d06467df54fcfada61f4fc"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111220-fish_1_1x1.png","features":["Food","Meal","Fish","Top Down","Fauna"],"imageType":["Map Asset","Token"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Sea"],"audience":["Player"],"hash":"73ac24a22f954e0b2cf8fbc7cbfedfc3"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111221-fish_2_1x1.png","features":["Food","Meal","Fish","Top Down","Fauna"],"imageType":["Map Asset","Token"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Sea"],"audience":["Player"],"hash":"7dc91d973c6a681d1d21dd8d510481d5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111222-fish_3_1x1.png","features":["Food","Meal","Fish","Top Down","Fauna"],"imageType":["Map Asset","Token"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Sea"],"audience":["Player"],"hash":"da221db2db6b95d693f2a4902b39a937"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111223-fish_4_1x1.png","features":["Food","Meal","Fish","Top Down","Fauna"],"imageType":["Map Asset","Token"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Sea"],"audience":["Player"],"hash":"70825743b3999011a792fadc320b7f19"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111224-fish_5_1x1.png","features":["Food","Meal","Fish","Top Down","Fauna"],"imageType":["Map Asset","Token"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Sea"],"audience":["Player"],"hash":"f68b6a181e8a0e54910aff564b0bed1c"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111225-fish_6_1x1.png","features":["Food","Meal","Fish","Top Down","Fauna"],"imageType":["Map Asset","Token"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Sea"],"audience":["Player"],"hash":"c355c6077323c3a6a6c01969c87433a4"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111226-fish_7_1x1.png","features":["Food","Meal","Fish","Top Down","Fauna"],"imageType":["Map Asset","Token"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Sea"],"audience":["Player"],"hash":"c2728ea8d9dbdff523baa750c92626bf"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111227-fish_8_1x1.png","features":["Food","Meal","Fish","Top Down","Fauna"],"imageType":["Map Asset","Token"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Sea"],"audience":["Player"],"hash":"99f82669dc61795ac9adc4cd052258be"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111228-fish_9_1x1.png","features":["Food","Meal","Fish","Top Down","Fauna"],"imageType":["Map Asset","Token"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Sea"],"audience":["Player"],"hash":"d21f51f34d0627c2836643c7f8418221"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111229-fish_barrel_1x1.png","features":["Container","Equipment","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"9bb13484d05179af17e9aaf8c826f04e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111230-fish_barrel_empty_1x1.png","features":["Container","Equipment","Top Down","Barrel"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"8fe7544c3a9734f773d81225cd69e903"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111231-fish_crate_1a_2x1.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"6d58762342c0c622cd56426065ad3809"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111232-fish_crate_1b_1x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"b5510bd9c70046fe17a7c409ce02429f"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111233-fish_crate_1c_2x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"4b9f8ed18bc45f5f0310c62029e00122"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111234-fish_crate_1d_2x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"da714672c67616a44238cb826a03184c"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111235-fish_crate_2a_2x1.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"a05f51de7dc753978b535f875403ce9b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111236-fish_crate_2b_1x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"5ef564a30e2d3b20f1a2dfa64adfa091"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111237-fish_crate_2c_2x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"768b9cfc5b7f8cc08823ea6cbaff4510"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111238-fish_crate_2d_2x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"4a8e1d725d35e74b10859068481bc33a"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111239-fish_crate_3a_2x1.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"60492e887430b3cfddf0ebe7d0f15001"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111240-fish_crate_3b_1x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"5fd86de6f391419243d6a4ebd5f9f0d9"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111241-fish_crate_3c_2x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"c509a6f6f8d103fdfa768f45f5c06823"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111242-fish_crate_3d_2x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"39cac992a365d8362c5cfd93ad53fec7"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111243-fish_crate_4a_2x1.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"00603ef33a7046e763095c12d00a12c7"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111244-fish_crate_4b_1x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"316a260add03e5cf30d5037c086c0e36"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111245-fish_crate_4c_2x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"ecd3b61e25f091b17d817d82b8743000"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111246-fish_crate_4d_2x2.png","features":["Container","Equipment","Top Down","Box","Crate"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"7f028cdddb152b50d2f2910e72005881"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111247-fishing_pole_1_2x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"68893eb5a4ef015730063cf2e967eb6b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111248-fishing_pole_2_2x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"85fdbd3bf7970ee47d0615a90234bee1"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111249-gables_green_2a_2x2.png","features":["Roof","Building","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"befa4fc80bf601afd8fa226f2ae1462e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111250-gables_green_2b_2x2.png","features":["Roof","Building","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"ae6afdf5f4ccce2c909b577554d43f22"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111251-gables_green_2c_2x2.png","features":["Roof","Building","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"f9b9a7775fb4c9d1f6b4b7c7161ac504"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111252-gables_green_2d_2x2.png","features":["Roof","Building","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"589175aa17b677c130f464a5be9495f8"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111253-gables_green_2e_2x2.png","features":["Roof","Building","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"f169aa0711c79ccebd9a153dada58ea7"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111254-gables_green_2f_2x2.png","features":["Roof","Building","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"e469e83afa782a06dd976e084a85eb70"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111255-gables_green_2g_2x2.png","features":["Roof","Building","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"51daec1f06049e4fa5fa9475cead0f45"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111256-gables_green_2h_2x2.png","features":["Roof","Building","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"9f107de80d81df2de8162b55e14e12ba"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111257-landing_net_1x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"898a154717dd17c7feaaf59ad04cc80d"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111258-net_1_1x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"c493006f26e114d8db93ab85a4b7591f"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111259-net_2_1x2.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"6bb5b0606948081c541c1040f109ff9e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111260-net_3_2x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"712fea1a88695425aaa8e3eb2abf94df"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111261-net_4_2x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"1b93b651fa35490f15959468d9aec0b7"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111262-net_5_1x2.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"5035f03f6f8f0439d923f8439e7d6dc0"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111263-net_6_1x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"2a522f26dc522c067882e28e83b86495"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111264-net_7_1x2.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"97f084e0bd064925c3cb8d3b3e940dae"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111265-oar_1_1x2.png","features":["Ship","Boat","Vehicle","Top Down","Oar"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"a3000da6bfb49e170cf124b75ad2d98e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111266-oar_2_1x2.png","features":["Ship","Boat","Vehicle","Top Down","Oar"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"153bee927ed9ed16ad6f30c1353f61fc"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111267-oar_long_1x3.png","features":["Ship","Boat","Vehicle","Top Down","Oar"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"9224021095b27519540f88bd693fddf9"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111268-oars_pair_1x2.png","features":["Ship","Boat","Vehicle","Top Down","Oar"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"9e33a7ccfa3cf0333d9803f0c3a6c9b2"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111269-park_bench_1_2x2.png","features":["Furniture","Park","Bench","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"aa5a3591f385d3d75f6d2346029641a5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111270-park_bench_2_2x2.png","features":["Furniture","Park","Bench","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"89b15f6b1f6482af50ba89ed5dd8f546"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111271-park_bench_3_2x2.png","features":["Furniture","Park","Bench","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"b66c8d67a55fb8e99a2a4ed458681c2b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111272-park_bench_4_2x2.png","features":["Furniture","Park","Bench","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"754ed9257add09c4162cf8c8a5860b56"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111273-park_bench_5_2x2.png","features":["Furniture","Park","Bench","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"15137c31882b9c639c3546114f272dd0"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111274-park_bench_6_2x2.png","features":["Furniture","Park","Bench","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"944f7d0a4001433460ed37390e3661f5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111275-park_bench_7_2x2.png","features":["Furniture","Park","Bench","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"76a0f12082947ce139fdd3c40e8e50a4"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111276-park_bench_8_2x2.png","features":["Furniture","Park","Bench","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"61b737e25c58f7d8d592165f642fd9ae"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111277-platform_1a_6x4.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"fee9b2b081f3ce9588749f09e84aefe1"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111278-platform_1b_4x6.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"edaa44648d97ba11377c1f253cd0b262"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111279-platform_1c_7x7.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"6432ec992fdad995b4e49518cbf07d4f"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111280-platform_1d_7x7.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"4b73181ce9bb917dfc7dba9eb6c2deb5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111281-platform_2a_5x5.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"1e379e4f7a00686791997d55c34104c6"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111282-platform_2b_7x7.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"13144ec13ac94db54c6507fece0764cf"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111283-platform_3a_4x4.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"8fdc1d265b098e5ced0d0deac074c084"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111284-platform_3b_5x5.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"a397176a799c98ea1a051aee5e34aff2"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111285-platform_4a_7x5.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"b82e034c9c393ae842f72d3d97d5da81"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111286-platform_4b_5x7.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"1df09701d675acf0aeb937d8608cc522"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111287-platform_4c_8x8.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"28487be28c005359898ceabf18911677"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111288-platform_4d_8x8.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"2655e8f3bea2d95a10af3870239d8b0e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111289-post_1x1.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"8ea137182f7b7695099fc60ecfcd7d33"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111290-rock_10_5x4.png","features":["Rubble","Stone","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"32d4f9a9cf1b4cfd18823e1e9f0dcefb"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111291-rock_1_3x3.png","features":["Rubble","Stone","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"4d7f7b88d0dca677e8a3c122a95a46ff"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111292-rock_2_1x1.png","features":["Rubble","Stone","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"10e6791010668b9c24703e5cd19861b4"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111293-rock_3_1x1.png","features":["Rubble","Stone","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"426222e7b63527931df6df6cee9ce70e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111294-rock_4_2x2.png","features":["Rubble","Stone","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"ab4225b9d5a2a7d4d878ab37a6db3aed"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111295-rock_5_2x2.png","features":["Rubble","Stone","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"4d3ca3b4b81ec494b0d87847b2f7a3b8"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111296-rock_6_1x1.png","features":["Rubble","Stone","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"253799f6ec466f903164818e0aac683f"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111297-rock_7_2x2.png","features":["Rubble","Stone","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"675f20457643152f83a230757f3568c9"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111298-rock_8_4x4.png","features":["Rubble","Stone","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"a8efae7fa9930685e05d05ce46685b3b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111299-rock_9_3x3.png","features":["Rubble","Stone","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"793934671d9facc899dadb948dc2cb00"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111300-rope_coiled_1_1x1.png","features":["Equipment","Rope","Tool","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"3b6d93ce5e7aa545bc9ec4ba375d414c"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111301-rope_coiled_2_1x1.png","features":["Equipment","Rope","Tool","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"05ba1b2a3ecc9ede0f35b3a767b8b848"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111302-rope_straight_2x1.png","features":["Equipment","Rope","Tool","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"6dd425199cd5a6e2a5d052927182ebec"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111303-sign_1a_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"de4dc872100c7abba008775b5ac47607"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111304-sign_1b_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"1d6381b5e8c41289415bd0aaf0d42530"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111305-sign_1c_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"15e43dea24a5a0cab156100641f053f8"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111306-sign_1d_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"4da70b714753eede5bd28e31257d2697"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111307-sign_2a_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"a93e8ea8f88e29d833d7526bc37be360"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111308-sign_2b_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"dcdec12cbe878acc1707cff6fc415440"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111309-sign_2c_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"bf271d90dbdb246f63ed9a39a386f70b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111310-sign_2d_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"d4f17f31f99ab417e754a266dc346675"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111311-sign_3a_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"8b3c6b6fe942a6abf5176d5aff27c65e"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111312-sign_3b_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"fd1f80d0dd4c307695ac556bc92a8779"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111313-sign_3c_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"42deec188de18d4dae52aabc0061d944"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111314-sign_3d_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"942fe66648643f4c88eacaa8bf47cf20"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111315-sign_4a_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"5aa15151a758df3d8dcabb4bc1c30d12"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111316-sign_4b_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"d30ee830765cb359dc857e5c59070d08"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111317-sign_4c_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"595173b19078111cb30cc7f1aa575574"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111318-sign_4d_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"88e1599af58270fd0792066a87351065"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111319-sign_5a_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"bca41f59bd49279712710f4da8fb2ec0"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111320-sign_5b_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"032af2aa682b7b1a987ce4845674b7cf"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111321-sign_5c_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"226ee9123983ac6baa96f4f8a17864a4"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111322-sign_5d_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"e648ce7ec736d1c41d96e9246d9a879a"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111323-sign_6a_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"6ca6cba050c2169ea5b18b32a2fc1f70"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111324-sign_6b_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"6e07389e65b226479c0f598f68f99d45"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111325-sign_6c_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"102011f35935099ecef719e80eda3265"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111326-sign_6d_2x2.png","features":["Equipment","Sign","Top Down","Settlement"],"imageType":["Map Asset","Effect"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"746612fb3449141dd56b4cf588e1cfed"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111327-sign_decal_boat_1x1.png","features":["Sign","Top Down","Market","Settlement"],"imageType":["Map Asset","Effect"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"45c59fa8803e68f086efc2eaa91cfd98"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111328-sign_decal_fish_1x1.png","features":["Sign","Top Down","Market","Settlement"],"imageType":["Map Asset","Effect"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"e7071849d86127f62ea785bfedb241f7"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111329-sign_decal_herald_1x1.png","features":["Sign","Top Down","Market","Settlement"],"imageType":["Map Asset","Effect"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"e46d5e89019a2afb56e2f954b7cb26e0"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111330-sign_decal_skull_1x1.png","features":["Sign","Top Down","Market","Settlement"],"imageType":["Map Asset","Effect"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"6b658e0120d64552a230cd34ca4f2f20"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111331-sign_decal_tavern_1x1.png","features":["Sign","Top Down","Market","Settlement"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"4a20fdba744ce2a11a5a36e17c972f7d"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111332-stairs_east_2x2.png","features":["Stair","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"7502aa649792a1709b9d2ec183e57f86"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111333-stairs_ne_2x2.png","features":["Stair","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"e0308a319e7c29765f2d2fd19fc7e4bd"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111334-stairs_north_2x2.png","features":["Stair","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"0fa04721d9e6cf6e3f8b3ff239ef7c81"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111335-stairs_nw_2x2.png","features":["Stair","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"fce2a4c8dfdb775c4ad9dc408d2eeabc"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111336-stairs_se_2x2.png","features":["Stair","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"92cd12ae9536ef46a88a74f4b96f5684"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111337-stairs_south_2x2.png","features":["Stair","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"f1c3b23c6cc2fafdf4e5031709381d2b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111338-stairs_sw_2x2.png","features":["Stair","Top Down"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"30b17b8c7bd6be89c9e8e7f192531cb1"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111339-stairs_west_2x2.png","features":["Stair","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"440267f930c4604b132e07e62858221d"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111340-tackle_box_1a_1x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"b425a8d9284235da8ec928fc867d5949"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111341-tackle_box_1b_1x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"c8b39fed77efdd94125a42bd2fd47410"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111342-tackle_box_1c_1x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"82ffa1ac8534b457b59e1014a48864e5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111343-tackle_box_1d_1x1.png","features":["Equipment","Fishing","Tool"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Forest"],"audience":["Player"],"hash":"fe48492eb998a5d8666be69bca2fe641"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111344-tree_1_7x7.png","features":["Plant","Flora","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Forest"],"audience":["Player"],"hash":"32e3f73eef142b7fab577b967e63df62"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111345-tree_2_6x6.png","features":["Plant","Flora","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Grassland","Forest"],"audience":["Player"],"hash":"7eb1edc47d6e4a3737d61fcaae2d1dd5"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111789-dock_wide_turn_vsw_.png","features":["Dock","Top Down","Deck","Platform"],"imageType":["Map Asset"],"style":["Realistic","Modular"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"audience":["Player"],"hash":"d27ce8927d16cd0894b8b9c241f94abe"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111072-a_read_me_file.jpg","features":["Instruction"],"imageType":["Portrait"],"style":["Realistic"],"quality":["Good"],"view":["Profile"],"grid":["None"],"audience":["GM/DM"],"hash":"d98df16442f542add3968131e5e6590b"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111073-awning_blue_1_4x2.png","features":["Awning","Market","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"31306353d32beb04963d9fba2294312f"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111074-awning_blue_2_3x2.png","features":["Awning","Market","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Settlement"],"audience":["Player"],"hash":"60d5ec3e13c8f340c39f1425fe9b16f8"},{"uri":"https://thetrove.is/Assets/By Artist or Source/David Hemenway/Build Your Own Docks & Coastlines/111077-boat_1a_3x1.png","features":["Ship","Boat","Vehicle","Top Down"],"imageType":["Map Asset"],"style":["Realistic"],"quality":["Good"],"view":["Overhead"],"grid":["None"],"terrain":["Coast","Sea"],"audience":["Player"],"hash":"9221948380489aa1a177e9d07ac7e666"}],"artist":"David Hemenway","set":"Build Your Own Docks & Coastlines"} |
{"pageProps":{"canonical":"https://meteo.ionkom.com/ro/vremea/faragau-mures/678455"},"__N_SSG":true} |
[{
"ip": "172.18.35.10",
"username": "newemp@wuhanins.com",
"pwd": "111"
},
{
"ip": "192.168.8.234",
"username": "Administrator",
"pwd": "123456"
}] |
{"filename": "OMU_OB.Z11447.jpg", "tags": ["Oslo Museum"], "description": "Kristiania Indremisjon, \"gamletur\", kvinner2, mann, tilbereding av mat", "permalink": "http://oslobilder.no/OMU/OB.Z11447"} |
"2016\n并没有一只歪着脑袋的鸟落在谁的枝头\n并没有一匹孤独的马载着谁从冬天的雾中出现\n大地宁静,如没有落过小鸟的枝头一样\n美丽而且乌黑\n\n正如没有闪电的机器,在缩着脖子的灰喜鹊般的早晨\n我们总是交换着双手,渴望时光之箭给我们再来点幸福" |
{"Name":" EA Playground (USA) (En,Fr,De,Es,It)","Portrait":"https://raw.githubusercontent.com/libretro-thumbnails/Nintendo_-_Nintendo_DS/master/Named_Boxarts/EA Playground (Europe) (En,Fr,De,Es,It).png","Size":"20M","Region":"EU","Console":"Nintendo DS","DownloadLink":"https://the-eye.eu/public/rom/Nintendo%20DS/1544%20-%20EA%20Playground%20%28USA%29%20%28En%2CFr%2CDe%2CEs%2CIt%29.nds.7z"} |
{
"first_traded_price": 11240.0,
"highest_price": 11268.0,
"isin": "IRT1CSNF0001",
"last_traded_price": 11242.0,
"lowest_price": 11240.0,
"trade_volume": 1.045e5,
"unix_time": 1414368000
} |
{
"name": "bjk2016",
"version": "0.1.0",
"dependencies": {},
"devDependencies": {
"grunt": "^0.4.1",
"grunt-angular-gettext": "~0.2.15",
"load-grunt-tasks": "~0.6.0",
"time-grunt": "~1.0.0"
},
"engines": {
"node": ">=0.10.0"
}
}
|
{
"vorgangId": "34529",
"VORGANG": {
"WAHLPERIODE": "17",
"VORGANGSTYP": "Kleine Anfrage",
"TITEL": "Stromnetzausbau in Deutschland",
"INITIATIVE": "Fraktion BÜNDNIS 90/DIE GRÜNEN",
"AKTUELLER_STAND": "Beantwortet",
"SIGNATUR": "",
"GESTA_ORDNUNGSNUMMER": "",
"WICHTIGE_DRUCKSACHE": [
{
"DRS_HERAUSGEBER": "BT",
"DRS_NUMMER": "17/5283",
"DRS_TYP": "Kleine Anfrage",
"DRS_LINK": "http://dipbt.bundestag.de:80/dip21/btd/17/052/1705283.pdf"
},
{
"DRS_HERAUSGEBER": "BT",
"DRS_NUMMER": "17/5816",
"DRS_TYP": "Antwort",
"DRS_LINK": "http://dipbt.bundestag.de:80/dip21/btd/17/058/1705816.pdf"
}
],
"EU_DOK_NR": "",
"SACHGEBIET": "Energie",
"SCHLAGWORT": [
"Baukosten",
"Energieversorgung",
"Stromleitung",
"Stromnetz",
"Verwaltungsverfahren"
],
"ABSTRAKT": "Dringend notwendiger, aber kaum vorankommender Ausbau des Übertragungsnetzes: Ausbaubedarf und Durchsetzung der Ausbaupflichten der Netzbetreiber, Dauer der Verfahrensschritte, Trassenführungen, Ausbaukosten für reine Freileitungen und mit anteiliger Erdverkabelung, existierende und notwendige Höchstspannungsleitungen sowie jährliche Investitionen, Projekte und Programme, Arbeit der beim BMWi angesiedelten Netzplattform \r\n(insgesamt 33 Einzelfragen)"
},
"VORGANGSABLAUF": {
"VORGANGSPOSITION": [
{
"ZUORDNUNG": "BT",
"URHEBER": "Kleine Anfrage, Urheber : Fraktion BÜNDNIS 90/DIE GRÜNEN ",
"FUNDSTELLE": "25.03.2011 - BT-Drucksache 17/5283",
"FUNDSTELLE_LINK": "http://dipbt.bundestag.de:80/dip21/btd/17/052/1705283.pdf",
"PERSOENLICHER_URHEBER": [
{
"VORNAME": "Ingrid",
"NACHNAME": "Nestle",
"FUNKTION": "MdB",
"FRAKTION": "BÜNDNIS 90/DIE GRÜNEN",
"AKTIVITAETSART": "Kleine Anfrage"
},
{
"VORNAME": "Bärbel",
"NACHNAME": "Höhn",
"FUNKTION": "MdB",
"FRAKTION": "BÜNDNIS 90/DIE GRÜNEN",
"AKTIVITAETSART": "Kleine Anfrage"
}
]
},
{
"ZUORDNUNG": "BT",
"URHEBER": "Antwort, Urheber : Bundesregierung, Bundesministerium für Wirtschaft und Technologie (federführend)",
"FUNDSTELLE": "13.05.2011 - BT-Drucksache 17/5816",
"FUNDSTELLE_LINK": "http://dipbt.bundestag.de:80/dip21/btd/17/058/1705816.pdf"
}
]
}
}
|
{
"id": 169,
"name": "spider-web",
"accuracy": null,
"pp": 10,
"priority": 0,
"power": null,
"damage_class": "status",
"meta": {
"ailment": "none",
"category": "unique",
"min_hits": null,
"max_hits": null,
"min_turns": null,
"max_turns": null,
"drain": 0,
"healing": 0,
"crit_rate": 0,
"ailment_chance": 0,
"flinch_chance": 0,
"stat_chance": 0
},
"names": {
"ja": "クモのす",
"kana": "クモのす",
"en": "Spider Web",
"fr": "Toile",
"it": "Ragnatela",
"de": "Spinnennetz",
"es": "Telaraña",
"ko": "거미집",
"zh-CN": "蛛网",
"zh-TW": "蛛網"
},
"flavor_text_entries": {
"ja": "ネバネバした 細い 糸を グルグルと からませて 相手を 戦闘から 逃げられなくする。",
"kana": "ネバネバした ほそい いとを グルグルと からませて あいてを せんとうから にげられなく する。",
"en": "The user ensnares the target with thin, gooey silk so it can’t flee from battle.",
"fr": "Le lanceur enserre l’ennemi à l’aide d’une fine soie gluante pour l’empêcher de fuir le combat.",
"it": "Copre il bersaglio con un filo di seta sottile e appiccicoso. Il Pokémon colpito non può fuggire.",
"de": "Wickelt das Ziel ein. Flucht oder Tausch unmöglich.",
"es": "Enreda al objetivo para evitar que abandone el combate.",
"ko": "끈적끈적하고 가는 실을 칭칭 휘감아 상대를 배틀에서 도망칠 수 없게 한다.",
"zh-CN": "将黏糊糊的细丝 一层一层缠住对手, 使其不能从战斗中逃走。",
"zh-TW": "用黏糊糊的細絲 一層一層纏住對手, 讓對手不能從戰鬥中逃走。"
},
"stat_changes": [],
"target": "selected-pokemon",
"type": "bug",
"past_values": [
{
"changed_in": 30,
"prior_values": {
"flavor_text_entries": {
"es": "Enreda al objetivo para evitar que abandone la batalla."
}
}
}
]
}
|
[
"cloudprint.xmpp",
"cloudprint.cloudprint",
"rest",
"xmpp",
"cloudprint.rest",
"cloudprint"
] |
{"pagelen": 100, "values": [{"links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18/comments/25904220.json"}, "code": {"href": "https://api.bitbucket.org/2.0/repositories/osrf/cloudsim-sim/diff/osrf/cloudsim-sim:df9893174449..deda38fea4df?path=server%2Fwebsocket.js"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18/_/diff#comment-25904220"}}, "deleted": false, "pullrequest": {"type": "pullrequest", "id": 18, "links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18.json"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18"}}, "title": "added simulation tests that were disabled, update to cloudsim-grant"}, "content": {"raw": "This file was introduced in a recent PR: pull request #13. Are we sure we don't need it anymore?", "markup": "markdown", "html": "<p>This file was introduced in a recent PR: <a href=\"#!/osrf/cloudsim-sim/pull-requests/13/sim-scheduler\" rel=\"nofollow\" class=\"ap-connect-link\">pull request #13</a>. Are we sure we don't need it anymore?</p>", "type": "rendered"}, "created_on": "2016-10-27T22:38:46.789882+00:00", "user": {"display_name": "Louise Poubel", "uuid": "{5cfa2075-477b-4ded-bdb9-8d2479544ec4}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/%7B5cfa2075-477b-4ded-bdb9-8d2479544ec4%7D"}, "html": {"href": "https://bitbucket.org/%7B5cfa2075-477b-4ded-bdb9-8d2479544ec4%7D/"}, "avatar": {"href": "https://avatar-management--avatars.us-west-2.prod.public.atl-paas.net/557058:6ff86fcb-b7ab-44a5-b8a6-f6d9cae8b6e8/7d903d90-c5ea-4182-b7ef-0d467e9e1c74/128"}}, "nickname": "chapulina", "type": "user", "account_id": "557058:6ff86fcb-b7ab-44a5-b8a6-f6d9cae8b6e8"}, "inline": {"to": null, "from": null, "path": "server/websocket.js"}, "updated_on": "2016-10-27T22:38:46.792132+00:00", "type": "pullrequest_comment", "id": 25904220}, {"links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18/comments/25971826.json"}, "code": {"href": "https://api.bitbucket.org/2.0/repositories/osrf/cloudsim-sim/diff/osrf/cloudsim-sim:df9893174449..deda38fea4df?path=server%2Fwebsocket.js"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18/_/diff#comment-25971826"}}, "parent": {"id": 25904220, "links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18/comments/25904220.json"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18/_/diff#comment-25904220"}}, "depth": 1}, "deleted": false, "pullrequest": {"type": "pullrequest", "id": 18, "links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18.json"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18"}}, "title": "added simulation tests that were disabled, update to cloudsim-grant"}, "content": {"raw": "@hugomatic , I was just hoping to clarify this before approving. Just wanted to make sure this is covered by cloudsim-grant's sockets. I don't think this was tested, right?", "markup": "markdown", "html": "<p>@hugomatic , I was just hoping to clarify this before approving. Just wanted to make sure this is covered by cloudsim-grant's sockets. I don't think this was tested, right?</p>", "type": "rendered"}, "created_on": "2016-10-29T00:27:16.091078+00:00", "user": {"display_name": "Louise Poubel", "uuid": "{5cfa2075-477b-4ded-bdb9-8d2479544ec4}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/%7B5cfa2075-477b-4ded-bdb9-8d2479544ec4%7D"}, "html": {"href": "https://bitbucket.org/%7B5cfa2075-477b-4ded-bdb9-8d2479544ec4%7D/"}, "avatar": {"href": "https://avatar-management--avatars.us-west-2.prod.public.atl-paas.net/557058:6ff86fcb-b7ab-44a5-b8a6-f6d9cae8b6e8/7d903d90-c5ea-4182-b7ef-0d467e9e1c74/128"}}, "nickname": "chapulina", "type": "user", "account_id": "557058:6ff86fcb-b7ab-44a5-b8a6-f6d9cae8b6e8"}, "inline": {"to": null, "from": null, "path": "server/websocket.js"}, "updated_on": "2016-10-29T00:27:16.101058+00:00", "type": "pullrequest_comment", "id": 25971826}, {"links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18/comments/26317301.json"}, "code": {"href": "https://api.bitbucket.org/2.0/repositories/osrf/cloudsim-sim/diff/osrf/cloudsim-sim:df9893174449..deda38fea4df?path=server%2Fwebsocket.js"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18/_/diff#comment-26317301"}}, "parent": {"id": 25971826, "links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18/comments/25971826.json"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18/_/diff#comment-25971826"}}, "depth": 2}, "deleted": false, "pullrequest": {"type": "pullrequest", "id": 18, "links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18.json"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18"}}, "title": "added simulation tests that were disabled, update to cloudsim-grant"}, "content": {"raw": "ping @hugomatic ", "markup": "markdown", "html": "<p>ping @hugomatic </p>", "type": "rendered"}, "created_on": "2016-11-04T18:09:01.783252+00:00", "user": {"display_name": "Louise Poubel", "uuid": "{5cfa2075-477b-4ded-bdb9-8d2479544ec4}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/%7B5cfa2075-477b-4ded-bdb9-8d2479544ec4%7D"}, "html": {"href": "https://bitbucket.org/%7B5cfa2075-477b-4ded-bdb9-8d2479544ec4%7D/"}, "avatar": {"href": "https://avatar-management--avatars.us-west-2.prod.public.atl-paas.net/557058:6ff86fcb-b7ab-44a5-b8a6-f6d9cae8b6e8/7d903d90-c5ea-4182-b7ef-0d467e9e1c74/128"}}, "nickname": "chapulina", "type": "user", "account_id": "557058:6ff86fcb-b7ab-44a5-b8a6-f6d9cae8b6e8"}, "inline": {"to": null, "from": null, "path": "server/websocket.js"}, "updated_on": "2016-11-04T18:09:01.790739+00:00", "type": "pullrequest_comment", "id": 26317301}, {"links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18/comments/26329054.json"}, "code": {"href": "https://api.bitbucket.org/2.0/repositories/osrf/cloudsim-sim/diff/osrf/cloudsim-sim:df9893174449..deda38fea4df?path=server%2Fwebsocket.js"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18/_/diff#comment-26329054"}}, "parent": {"id": 26317301, "links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18/comments/26317301.json"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18/_/diff#comment-26317301"}}, "depth": 3}, "deleted": false, "pullrequest": {"type": "pullrequest", "id": 18, "links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18.json"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18"}}, "title": "added simulation tests that were disabled, update to cloudsim-grant"}, "content": {"raw": "Talked IRL. We'll fix whatever is pending in future PRs.\n", "markup": "markdown", "html": "<p>Talked IRL. We'll fix whatever is pending in future PRs.</p>", "type": "rendered"}, "created_on": "2016-11-05T00:11:50.959812+00:00", "user": {"display_name": "Louise Poubel", "uuid": "{5cfa2075-477b-4ded-bdb9-8d2479544ec4}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/%7B5cfa2075-477b-4ded-bdb9-8d2479544ec4%7D"}, "html": {"href": "https://bitbucket.org/%7B5cfa2075-477b-4ded-bdb9-8d2479544ec4%7D/"}, "avatar": {"href": "https://avatar-management--avatars.us-west-2.prod.public.atl-paas.net/557058:6ff86fcb-b7ab-44a5-b8a6-f6d9cae8b6e8/7d903d90-c5ea-4182-b7ef-0d467e9e1c74/128"}}, "nickname": "chapulina", "type": "user", "account_id": "557058:6ff86fcb-b7ab-44a5-b8a6-f6d9cae8b6e8"}, "inline": {"to": null, "from": null, "path": "server/websocket.js"}, "updated_on": "2016-11-05T00:11:50.970281+00:00", "type": "pullrequest_comment", "id": 26329054}, {"links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18/comments/26319540.json"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18/_/diff#comment-26319540"}}, "deleted": false, "pullrequest": {"type": "pullrequest", "id": 18, "links": {"self": {"href": "data/repositories/osrf/cloudsim-sim/pullrequests/18.json"}, "html": {"href": "#!/osrf/cloudsim-sim/pull-requests/18"}}, "title": "added simulation tests that were disabled, update to cloudsim-grant"}, "content": {"raw": "Diff without whitespace: #!/osrf/cloudsim-sim/pull-requests/18/added-simulation-tests-that-were-disabled/diff?w=1", "markup": "markdown", "html": "<p>Diff without whitespace: <a href=\"#!/osrf/cloudsim-sim/pull-requests/18/added-simulation-tests-that-were-disabled/diff?w=1\" rel=\"nofollow\" class=\"ap-connect-link\">#!/osrf/cloudsim-sim/pull-requests/18/added-simulation-tests-that-were-disabled/diff?w=1</a></p>", "type": "rendered"}, "created_on": "2016-11-04T18:55:21.223081+00:00", "user": {"display_name": "Louise Poubel", "uuid": "{5cfa2075-477b-4ded-bdb9-8d2479544ec4}", "links": {"self": {"href": "https://api.bitbucket.org/2.0/users/%7B5cfa2075-477b-4ded-bdb9-8d2479544ec4%7D"}, "html": {"href": "https://bitbucket.org/%7B5cfa2075-477b-4ded-bdb9-8d2479544ec4%7D/"}, "avatar": {"href": "https://avatar-management--avatars.us-west-2.prod.public.atl-paas.net/557058:6ff86fcb-b7ab-44a5-b8a6-f6d9cae8b6e8/7d903d90-c5ea-4182-b7ef-0d467e9e1c74/128"}}, "nickname": "chapulina", "type": "user", "account_id": "557058:6ff86fcb-b7ab-44a5-b8a6-f6d9cae8b6e8"}, "updated_on": "2016-11-04T18:55:31.505823+00:00", "type": "pullrequest_comment", "id": 26319540}], "page": 1, "size": 5} |
{"id":"style.css","dependencies":[{"name":"./images/bg-triangle.svg","dynamic":true,"resolved":"/Users/cassidymarinkovich/OneDrive/Web Development/Github/Rock-Paper-Scissors/images/bg-triangle.svg","loc":{"line":130,"column":3},"parent":"/Users/cassidymarinkovich/OneDrive/Web Development/Github/Rock-Paper-Scissors/style.css"},{"name":"./images/triangle-mobile.png","dynamic":true,"resolved":"/Users/cassidymarinkovich/OneDrive/Web Development/Github/Rock-Paper-Scissors/images/triangle-mobile.png","loc":{"line":252,"column":5},"parent":"/Users/cassidymarinkovich/OneDrive/Web Development/Github/Rock-Paper-Scissors/style.css"},{"name":"_css_loader","parent":"/Users/cassidymarinkovich/OneDrive/Web Development/Github/Rock-Paper-Scissors/style.css","resolved":"/Users/cassidymarinkovich/OneDrive/Web Development/Github/Rock-Paper-Scissors/node_modules/parcel/src/builtins/css-loader.js"},{"name":"/Users/cassidymarinkovich/OneDrive/Web Development/Github/Rock-Paper-Scissors/package.json","includedInParent":true,"mtime":1597623299581}],"generated":{"css":"* {\n box-sizing: border-box;\n}\nbody {\n background: radial-gradient(ellipse at top, #1F3757, #131537);\n background-attachment: fixed;\n font-family: 'Barlow Semi Condensed', sans-serif;\n margin: 0;\n}\nimg {\n display: block;\n}\n.container {\n max-width: 938px;\n margin: 0 auto;\n}\nheader {\n width: 75%;\n border: 3px solid rgba(255, 255, 255, 0.25);\n border-radius: 15px;\n padding: 15px 15px 15px 30px;\n display: flex;\n justify-content: space-between;\n margin: 45px auto 60px auto;\n}\n.logo {\n align-self: center;\n}\n.score {\n width: 150px;\n background: #fff;\n border-radius: 8px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n.score h3 {\n text-transform: uppercase;\n letter-spacing: 3px;\n font-weight: 600;\n color: #2A45C2;\n margin-bottom: 0;\n font-size: 16px;\n}\n.scoreNum {\n font-size: 64px;\n font-weight: 700;\n color: #565468;\n line-height: 75px;\n}\n\n/* .paper,\n.rock,\n.scissors {\n width: 198px;\n height: 194px;\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n} */\n/* .paper {\n background: linear-gradient(#5c70f5, #4664F4);\n}\n.rock {\n background: linear-gradient(#dc425c, #DB2E4D);\n}\n.scissors {\n background: linear-gradient(#eca725, #EB9F0E);\n} */\n.paper:hover,\n.scissors:hover,\n.rock:hover {\n cursor: pointer;\n}\n/* .paper::before,\n.rock::before,\n.scissors::before {\n content: '';\n height: 203px;\n width: 198px;\n display: block;\n border-radius: 50%;\n z-index: -3;\n position: absolute;\nalign-self: flex-start;\n} */\n/* .paper::before {\n background: #2A45C2;\n}\n.rock::before {\n background: #9D1634;\n}\n.scissors::before {\n background: #C76C1B;\n} */\n/* .paper .inner,\n.rock .inner,\n.scissors .inner {\n width: 152px;\n height: 152px;\n border-radius: 50%;\n display: flex;\n align-items: flex-end;\n justify-content: center;\n background: #BABFD4;\n} */\n/* .inner-bottom {\n background: linear-gradient(to bottom, #DADADA, #F3F3F3);\n height: 144px;\n width: 100%;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.inner-bottom img {\n width: 70px;\n height: auto;\n z-index: 5;\n} */\n#game {\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n width: 476px;\n margin: 0 auto;\n grid-template-rows: 203px 203px;\n grid-row-gap: 25px;\n background-image: url(/2dad358f3376bf9cc0595aeb4d1d2559.svg);\n background-repeat: no-repeat;\n background-position: center;\n z-index: 1;\n position: relative;\n max-width: 100%;\n}\n#game.noBg {\n background-image: initial;\n}\n.rock {\n grid-column: 1/-1;\njustify-self: center;\n}\n.scissors {\n grid-column-end: -1;\n justify-self: end;\n}\n#paper,\n#scissors,\n#rock {\n background: linear-gradient(to bottom, #DADADA, #F3F3F3);\n width: 198px;\n height: 194px;\n border-radius: 50%;\n border: 23px solid;\n display: flex;\n align-items: center;\n justify-content: center;\n position: relative;\n transition: all 0.2s ease;\n}\n#paper {\nborder-color: #4664F4;\nbox-shadow: 0 10px 0 0 #2A45C2, inset 0 7px 0px 0 hsl(228.5, 23.2%, 78%);\n\n}\n#scissors {\nborder-color: #EB9F0E;\nbox-shadow: 0 10px 0 0 #C76C1B, inset 0 7px 0px 0 hsl(228.5, 23.2%, 78%);\n\n}\n#rock {\nborder-color: #DB2E4D;\nbox-shadow: 0 10px 0 0 #9D1634, inset 0 7px 0px 0 hsl(228.5, 23.2%, 78%);\n\n}\n#paper::before,\n#scissors::before,\n#rock::before {\n background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);\n content: '';\n display: block;\n position: absolute;\n width: 198px;\n height: 194px;\n border-radius: 50%;\n}\n.choice img {\n width: 70px;\n z-index: 5;\n}\n#paper:hover,\n#scissors:hover,\n#rock:hover {\n transform: scale(1.1);\n transition: all 0.2s ease;\n}\n\n#paper::after,\n#scissors::after,\n#rock::after {\n /* opacity: 0; */\n transition: all 0.2s ease-in-out;\n content: '';\n display: block;\n background: transparent;\n width: 252px;\n position: absolute;\n height: 248px;\n z-index: -1;\n border-radius: 50%;\n margin-top: 10px;\n}\n#paper:hover::after,\n#scissors:hover::after,\n#rock:hover::after {\n /* opacity: 1; */\n transition: all 0.2s ease-in-out;\n background: rgba(255,255,255,0.05);\n}\n\n.hidden {\n opacity: 0;\n transition: all 0.4s ease-in-out;\n}\n#results {\n display: grid;\n grid-template-columns: 1fr auto 1fr;\n justify-items: center;\n}\n\n/** Mobile styles **/\n@media only screen and (max-width: 600px) {\n .logo {\n max-height: 57px;\n}\n .score {\n width: auto;\n padding: 0 25px;\n }\n .score h3 {\n font-size: 10px;\n }\n .scoreNum {\n font-size: 40px;\n line-height: 48px;\n }\n #game {\n max-width: 82%;\n grid-template-rows: 138px 138px;\n grid-row-gap: 15px;\n background-image: url(/7adef5bbba6d941e736f4196485ecad3.png);\n }\n #paper, #scissors, #rock {\n width: 129px;\n height: 132px;\n border-width: 15px;\n }\n #paper::before, #scissors::before, #rock::before {\n width: 129px;\n height: 132px;\n }\n .choice img {\n width: 43px;\n }\n #paper {\n border-color: #4664F4;\n box-shadow: 0 5px 0 0 #2A45C2, inset 0 5px 0px 0 hsl(228.5, 23.2%, 78%);\n }\n #scissors {\n border-color: #EB9F0E;\n box-shadow: 0 5px 0 0 #C76C1B, inset 0 5px 0px 0 hsl(228.5, 23.2%, 78%);\n }\n #rock {\n border-color: #DB2E4D;\n box-shadow: 0 5px 0 0 #9D1634, inset 0 5px 0px 0 hsl(228.5, 23.2%, 78%);\n }\n #paper::after, #scissors::after, #rock::after {\n content: initial;\n display: initial;\n}\n}\n\n","js":"var reloadCSS = require('_css_loader');\n\nmodule.hot.dispose(reloadCSS);\nmodule.hot.accept(reloadCSS);"},"sourceMaps":{"css":{"mappings":[{"source":"style.css","name":null,"original":{"line":1,"column":0},"generated":{"line":1,"column":0}},{"source":"style.css","name":null,"original":{"line":2,"column":2},"generated":{"line":2,"column":2}},{"source":"style.css","name":null,"original":{"line":2,"column":24},"generated":{"line":2,"column":24}},{"source":"style.css","name":null,"original":{"line":3,"column":0},"generated":{"line":3,"column":0}},{"source":"style.css","name":null,"original":{"line":4,"column":0},"generated":{"line":4,"column":0}},{"source":"style.css","name":null,"original":{"line":5,"column":2},"generated":{"line":5,"column":2}},{"source":"style.css","name":null,"original":{"line":5,"column":63},"generated":{"line":5,"column":63}},{"source":"style.css","name":null,"original":{"line":6,"column":2},"generated":{"line":6,"column":2}},{"source":"style.css","name":null,"original":{"line":6,"column":30},"generated":{"line":6,"column":30}},{"source":"style.css","name":null,"original":{"line":7,"column":2},"generated":{"line":7,"column":2}},{"source":"style.css","name":null,"original":{"line":7,"column":50},"generated":{"line":7,"column":50}},{"source":"style.css","name":null,"original":{"line":8,"column":2},"generated":{"line":8,"column":2}},{"source":"style.css","name":null,"original":{"line":8,"column":11},"generated":{"line":8,"column":11}},{"source":"style.css","name":null,"original":{"line":9,"column":0},"generated":{"line":9,"column":0}},{"source":"style.css","name":null,"original":{"line":10,"column":0},"generated":{"line":10,"column":0}},{"source":"style.css","name":null,"original":{"line":11,"column":2},"generated":{"line":11,"column":2}},{"source":"style.css","name":null,"original":{"line":11,"column":16},"generated":{"line":11,"column":16}},{"source":"style.css","name":null,"original":{"line":12,"column":0},"generated":{"line":12,"column":0}},{"source":"style.css","name":null,"original":{"line":13,"column":0},"generated":{"line":13,"column":0}},{"source":"style.css","name":null,"original":{"line":14,"column":2},"generated":{"line":14,"column":2}},{"source":"style.css","name":null,"original":{"line":14,"column":18},"generated":{"line":14,"column":18}},{"source":"style.css","name":null,"original":{"line":15,"column":2},"generated":{"line":15,"column":2}},{"source":"style.css","name":null,"original":{"line":15,"column":16},"generated":{"line":15,"column":16}},{"source":"style.css","name":null,"original":{"line":16,"column":0},"generated":{"line":16,"column":0}},{"source":"style.css","name":null,"original":{"line":17,"column":0},"generated":{"line":17,"column":0}},{"source":"style.css","name":null,"original":{"line":18,"column":2},"generated":{"line":18,"column":2}},{"source":"style.css","name":null,"original":{"line":18,"column":12},"generated":{"line":18,"column":12}},{"source":"style.css","name":null,"original":{"line":19,"column":2},"generated":{"line":19,"column":2}},{"source":"style.css","name":null,"original":{"line":19,"column":45},"generated":{"line":19,"column":45}},{"source":"style.css","name":null,"original":{"line":20,"column":2},"generated":{"line":20,"column":2}},{"source":"style.css","name":null,"original":{"line":20,"column":21},"generated":{"line":20,"column":21}},{"source":"style.css","name":null,"original":{"line":21,"column":2},"generated":{"line":21,"column":2}},{"source":"style.css","name":null,"original":{"line":21,"column":30},"generated":{"line":21,"column":30}},{"source":"style.css","name":null,"original":{"line":22,"column":2},"generated":{"line":22,"column":2}},{"source":"style.css","name":null,"original":{"line":22,"column":15},"generated":{"line":22,"column":15}},{"source":"style.css","name":null,"original":{"line":23,"column":2},"generated":{"line":23,"column":2}},{"source":"style.css","name":null,"original":{"line":23,"column":32},"generated":{"line":23,"column":32}},{"source":"style.css","name":null,"original":{"line":24,"column":2},"generated":{"line":24,"column":2}},{"source":"style.css","name":null,"original":{"line":24,"column":29},"generated":{"line":24,"column":29}},{"source":"style.css","name":null,"original":{"line":25,"column":0},"generated":{"line":25,"column":0}},{"source":"style.css","name":null,"original":{"line":26,"column":0},"generated":{"line":26,"column":0}},{"source":"style.css","name":null,"original":{"line":27,"column":2},"generated":{"line":27,"column":2}},{"source":"style.css","name":null,"original":{"line":27,"column":20},"generated":{"line":27,"column":20}},{"source":"style.css","name":null,"original":{"line":28,"column":0},"generated":{"line":28,"column":0}},{"source":"style.css","name":null,"original":{"line":29,"column":0},"generated":{"line":29,"column":0}},{"source":"style.css","name":null,"original":{"line":30,"column":2},"generated":{"line":30,"column":2}},{"source":"style.css","name":null,"original":{"line":30,"column":14},"generated":{"line":30,"column":14}},{"source":"style.css","name":null,"original":{"line":31,"column":2},"generated":{"line":31,"column":2}},{"source":"style.css","name":null,"original":{"line":31,"column":18},"generated":{"line":31,"column":18}},{"source":"style.css","name":null,"original":{"line":32,"column":2},"generated":{"line":32,"column":2}},{"source":"style.css","name":null,"original":{"line":32,"column":20},"generated":{"line":32,"column":20}},{"source":"style.css","name":null,"original":{"line":33,"column":2},"generated":{"line":33,"column":2}},{"source":"style.css","name":null,"original":{"line":33,"column":15},"generated":{"line":33,"column":15}},{"source":"style.css","name":null,"original":{"line":34,"column":2},"generated":{"line":34,"column":2}},{"source":"style.css","name":null,"original":{"line":34,"column":24},"generated":{"line":34,"column":24}},{"source":"style.css","name":null,"original":{"line":35,"column":2},"generated":{"line":35,"column":2}},{"source":"style.css","name":null,"original":{"line":35,"column":21},"generated":{"line":35,"column":21}},{"source":"style.css","name":null,"original":{"line":36,"column":2},"generated":{"line":36,"column":2}},{"source":"style.css","name":null,"original":{"line":36,"column":25},"generated":{"line":36,"column":25}},{"source":"style.css","name":null,"original":{"line":37,"column":0},"generated":{"line":37,"column":0}},{"source":"style.css","name":null,"original":{"line":38,"column":0},"generated":{"line":38,"column":0}},{"source":"style.css","name":null,"original":{"line":39,"column":2},"generated":{"line":39,"column":2}},{"source":"style.css","name":null,"original":{"line":39,"column":27},"generated":{"line":39,"column":27}},{"source":"style.css","name":null,"original":{"line":40,"column":2},"generated":{"line":40,"column":2}},{"source":"style.css","name":null,"original":{"line":40,"column":21},"generated":{"line":40,"column":21}},{"source":"style.css","name":null,"original":{"line":41,"column":2},"generated":{"line":41,"column":2}},{"source":"style.css","name":null,"original":{"line":41,"column":18},"generated":{"line":41,"column":18}},{"source":"style.css","name":null,"original":{"line":42,"column":2},"generated":{"line":42,"column":2}},{"source":"style.css","name":null,"original":{"line":42,"column":16},"generated":{"line":42,"column":16}},{"source":"style.css","name":null,"original":{"line":43,"column":2},"generated":{"line":43,"column":2}},{"source":"style.css","name":null,"original":{"line":43,"column":18},"generated":{"line":43,"column":18}},{"source":"style.css","name":null,"original":{"line":44,"column":2},"generated":{"line":44,"column":2}},{"source":"style.css","name":null,"original":{"line":44,"column":17},"generated":{"line":44,"column":17}},{"source":"style.css","name":null,"original":{"line":45,"column":0},"generated":{"line":45,"column":0}},{"source":"style.css","name":null,"original":{"line":46,"column":0},"generated":{"line":46,"column":0}},{"source":"style.css","name":null,"original":{"line":47,"column":2},"generated":{"line":47,"column":2}},{"source":"style.css","name":null,"original":{"line":47,"column":17},"generated":{"line":47,"column":17}},{"source":"style.css","name":null,"original":{"line":48,"column":2},"generated":{"line":48,"column":2}},{"source":"style.css","name":null,"original":{"line":48,"column":18},"generated":{"line":48,"column":18}},{"source":"style.css","name":null,"original":{"line":49,"column":2},"generated":{"line":49,"column":2}},{"source":"style.css","name":null,"original":{"line":49,"column":16},"generated":{"line":49,"column":16}},{"source":"style.css","name":null,"original":{"line":50,"column":2},"generated":{"line":50,"column":2}},{"source":"style.css","name":null,"original":{"line":50,"column":19},"generated":{"line":50,"column":19}},{"source":"style.css","name":null,"original":{"line":51,"column":0},"generated":{"line":51,"column":0}},{"source":"style.css","name":null,"original":{"line":53,"column":0},"generated":{"line":53,"column":0}},{"source":"style.css","name":null,"original":{"line":62,"column":3},"generated":{"line":62,"column":3}},{"source":"style.css","name":null,"original":{"line":63,"column":0},"generated":{"line":63,"column":0}},{"source":"style.css","name":null,"original":{"line":71,"column":3},"generated":{"line":71,"column":3}},{"source":"style.css","name":null,"original":{"line":72,"column":0},"generated":{"line":72,"column":0}},{"source":"style.css","name":null,"original":{"line":75,"column":2},"generated":{"line":75,"column":2}},{"source":"style.css","name":null,"original":{"line":75,"column":17},"generated":{"line":75,"column":17}},{"source":"style.css","name":null,"original":{"line":76,"column":0},"generated":{"line":76,"column":0}},{"source":"style.css","name":null,"original":{"line":77,"column":0},"generated":{"line":77,"column":0}},{"source":"style.css","name":null,"original":{"line":88,"column":3},"generated":{"line":88,"column":3}},{"source":"style.css","name":null,"original":{"line":89,"column":0},"generated":{"line":89,"column":0}},{"source":"style.css","name":null,"original":{"line":97,"column":3},"generated":{"line":97,"column":3}},{"source":"style.css","name":null,"original":{"line":98,"column":0},"generated":{"line":98,"column":0}},{"source":"style.css","name":null,"original":{"line":108,"column":3},"generated":{"line":108,"column":3}},{"source":"style.css","name":null,"original":{"line":109,"column":0},"generated":{"line":109,"column":0}},{"source":"style.css","name":null,"original":{"line":122,"column":3},"generated":{"line":122,"column":3}},{"source":"style.css","name":null,"original":{"line":123,"column":0},"generated":{"line":123,"column":0}},{"source":"style.css","name":null,"original":{"line":124,"column":2},"generated":{"line":124,"column":2}},{"source":"style.css","name":null,"original":{"line":124,"column":15},"generated":{"line":124,"column":15}},{"source":"style.css","name":null,"original":{"line":125,"column":2},"generated":{"line":125,"column":2}},{"source":"style.css","name":null,"original":{"line":125,"column":39},"generated":{"line":125,"column":39}},{"source":"style.css","name":null,"original":{"line":126,"column":2},"generated":{"line":126,"column":2}},{"source":"style.css","name":null,"original":{"line":126,"column":14},"generated":{"line":126,"column":14}},{"source":"style.css","name":null,"original":{"line":127,"column":2},"generated":{"line":127,"column":2}},{"source":"style.css","name":null,"original":{"line":127,"column":16},"generated":{"line":127,"column":16}},{"source":"style.css","name":null,"original":{"line":128,"column":2},"generated":{"line":128,"column":2}},{"source":"style.css","name":null,"original":{"line":128,"column":33},"generated":{"line":128,"column":33}},{"source":"style.css","name":null,"original":{"line":129,"column":2},"generated":{"line":129,"column":2}},{"source":"style.css","name":null,"original":{"line":129,"column":20},"generated":{"line":129,"column":20}},{"source":"style.css","name":null,"original":{"line":130,"column":2},"generated":{"line":130,"column":2}},{"source":"style.css","name":null,"original":{"line":130,"column":49},"generated":{"line":130,"column":62}},{"source":"style.css","name":null,"original":{"line":131,"column":2},"generated":{"line":131,"column":2}},{"source":"style.css","name":null,"original":{"line":131,"column":30},"generated":{"line":131,"column":30}},{"source":"style.css","name":null,"original":{"line":132,"column":2},"generated":{"line":132,"column":2}},{"source":"style.css","name":null,"original":{"line":132,"column":29},"generated":{"line":132,"column":29}},{"source":"style.css","name":null,"original":{"line":133,"column":2},"generated":{"line":133,"column":2}},{"source":"style.css","name":null,"original":{"line":133,"column":12},"generated":{"line":133,"column":12}},{"source":"style.css","name":null,"original":{"line":134,"column":2},"generated":{"line":134,"column":2}},{"source":"style.css","name":null,"original":{"line":134,"column":20},"generated":{"line":134,"column":20}},{"source":"style.css","name":null,"original":{"line":135,"column":2},"generated":{"line":135,"column":2}},{"source":"style.css","name":null,"original":{"line":135,"column":17},"generated":{"line":135,"column":17}},{"source":"style.css","name":null,"original":{"line":136,"column":0},"generated":{"line":136,"column":0}},{"source":"style.css","name":null,"original":{"line":137,"column":0},"generated":{"line":137,"column":0}},{"source":"style.css","name":null,"original":{"line":138,"column":2},"generated":{"line":138,"column":2}},{"source":"style.css","name":null,"original":{"line":138,"column":27},"generated":{"line":138,"column":27}},{"source":"style.css","name":null,"original":{"line":139,"column":0},"generated":{"line":139,"column":0}},{"source":"style.css","name":null,"original":{"line":140,"column":0},"generated":{"line":140,"column":0}},{"source":"style.css","name":null,"original":{"line":141,"column":2},"generated":{"line":141,"column":2}},{"source":"style.css","name":null,"original":{"line":141,"column":19},"generated":{"line":141,"column":19}},{"source":"style.css","name":null,"original":{"line":142,"column":0},"generated":{"line":142,"column":0}},{"source":"style.css","name":null,"original":{"line":142,"column":20},"generated":{"line":142,"column":20}},{"source":"style.css","name":null,"original":{"line":143,"column":0},"generated":{"line":143,"column":0}},{"source":"style.css","name":null,"original":{"line":144,"column":0},"generated":{"line":144,"column":0}},{"source":"style.css","name":null,"original":{"line":145,"column":2},"generated":{"line":145,"column":2}},{"source":"style.css","name":null,"original":{"line":145,"column":21},"generated":{"line":145,"column":21}},{"source":"style.css","name":null,"original":{"line":146,"column":2},"generated":{"line":146,"column":2}},{"source":"style.css","name":null,"original":{"line":146,"column":19},"generated":{"line":146,"column":19}},{"source":"style.css","name":null,"original":{"line":147,"column":0},"generated":{"line":147,"column":0}},{"source":"style.css","name":null,"original":{"line":148,"column":0},"generated":{"line":148,"column":0}},{"source":"style.css","name":null,"original":{"line":151,"column":2},"generated":{"line":151,"column":2}},{"source":"style.css","name":null,"original":{"line":151,"column":58},"generated":{"line":151,"column":58}},{"source":"style.css","name":null,"original":{"line":152,"column":2},"generated":{"line":152,"column":2}},{"source":"style.css","name":null,"original":{"line":152,"column":14},"generated":{"line":152,"column":14}},{"source":"style.css","name":null,"original":{"line":153,"column":2},"generated":{"line":153,"column":2}},{"source":"style.css","name":null,"original":{"line":153,"column":15},"generated":{"line":153,"column":15}},{"source":"style.css","name":null,"original":{"line":154,"column":2},"generated":{"line":154,"column":2}},{"source":"style.css","name":null,"original":{"line":154,"column":20},"generated":{"line":154,"column":20}},{"source":"style.css","name":null,"original":{"line":155,"column":2},"generated":{"line":155,"column":2}},{"source":"style.css","name":null,"original":{"line":155,"column":20},"generated":{"line":155,"column":20}},{"source":"style.css","name":null,"original":{"line":156,"column":2},"generated":{"line":156,"column":2}},{"source":"style.css","name":null,"original":{"line":156,"column":15},"generated":{"line":156,"column":15}},{"source":"style.css","name":null,"original":{"line":157,"column":2},"generated":{"line":157,"column":2}},{"source":"style.css","name":null,"original":{"line":157,"column":21},"generated":{"line":157,"column":21}},{"source":"style.css","name":null,"original":{"line":158,"column":2},"generated":{"line":158,"column":2}},{"source":"style.css","name":null,"original":{"line":158,"column":25},"generated":{"line":158,"column":25}},{"source":"style.css","name":null,"original":{"line":159,"column":2},"generated":{"line":159,"column":2}},{"source":"style.css","name":null,"original":{"line":159,"column":20},"generated":{"line":159,"column":20}},{"source":"style.css","name":null,"original":{"line":160,"column":2},"generated":{"line":160,"column":2}},{"source":"style.css","name":null,"original":{"line":160,"column":27},"generated":{"line":160,"column":27}},{"source":"style.css","name":null,"original":{"line":161,"column":0},"generated":{"line":161,"column":0}},{"source":"style.css","name":null,"original":{"line":162,"column":0},"generated":{"line":162,"column":0}},{"source":"style.css","name":null,"original":{"line":163,"column":0},"generated":{"line":163,"column":0}},{"source":"style.css","name":null,"original":{"line":163,"column":21},"generated":{"line":163,"column":21}},{"source":"style.css","name":null,"original":{"line":164,"column":0},"generated":{"line":164,"column":0}},{"source":"style.css","name":null,"original":{"line":164,"column":72},"generated":{"line":164,"column":72}},{"source":"style.css","name":null,"original":{"line":166,"column":0},"generated":{"line":166,"column":0}},{"source":"style.css","name":null,"original":{"line":167,"column":0},"generated":{"line":167,"column":0}},{"source":"style.css","name":null,"original":{"line":168,"column":0},"generated":{"line":168,"column":0}},{"source":"style.css","name":null,"original":{"line":168,"column":21},"generated":{"line":168,"column":21}},{"source":"style.css","name":null,"original":{"line":169,"column":0},"generated":{"line":169,"column":0}},{"source":"style.css","name":null,"original":{"line":169,"column":72},"generated":{"line":169,"column":72}},{"source":"style.css","name":null,"original":{"line":171,"column":0},"generated":{"line":171,"column":0}},{"source":"style.css","name":null,"original":{"line":172,"column":0},"generated":{"line":172,"column":0}},{"source":"style.css","name":null,"original":{"line":173,"column":0},"generated":{"line":173,"column":0}},{"source":"style.css","name":null,"original":{"line":173,"column":21},"generated":{"line":173,"column":21}},{"source":"style.css","name":null,"original":{"line":174,"column":0},"generated":{"line":174,"column":0}},{"source":"style.css","name":null,"original":{"line":174,"column":72},"generated":{"line":174,"column":72}},{"source":"style.css","name":null,"original":{"line":176,"column":0},"generated":{"line":176,"column":0}},{"source":"style.css","name":null,"original":{"line":177,"column":0},"generated":{"line":177,"column":0}},{"source":"style.css","name":null,"original":{"line":180,"column":2},"generated":{"line":180,"column":2}},{"source":"style.css","name":null,"original":{"line":180,"column":76},"generated":{"line":180,"column":76}},{"source":"style.css","name":null,"original":{"line":181,"column":2},"generated":{"line":181,"column":2}},{"source":"style.css","name":null,"original":{"line":181,"column":13},"generated":{"line":181,"column":13}},{"source":"style.css","name":null,"original":{"line":182,"column":2},"generated":{"line":182,"column":2}},{"source":"style.css","name":null,"original":{"line":182,"column":16},"generated":{"line":182,"column":16}},{"source":"style.css","name":null,"original":{"line":183,"column":2},"generated":{"line":183,"column":2}},{"source":"style.css","name":null,"original":{"line":183,"column":20},"generated":{"line":183,"column":20}},{"source":"style.css","name":null,"original":{"line":184,"column":2},"generated":{"line":184,"column":2}},{"source":"style.css","name":null,"original":{"line":184,"column":14},"generated":{"line":184,"column":14}},{"source":"style.css","name":null,"original":{"line":185,"column":2},"generated":{"line":185,"column":2}},{"source":"style.css","name":null,"original":{"line":185,"column":15},"generated":{"line":185,"column":15}},{"source":"style.css","name":null,"original":{"line":186,"column":2},"generated":{"line":186,"column":2}},{"source":"style.css","name":null,"original":{"line":186,"column":20},"generated":{"line":186,"column":20}},{"source":"style.css","name":null,"original":{"line":187,"column":0},"generated":{"line":187,"column":0}},{"source":"style.css","name":null,"original":{"line":188,"column":0},"generated":{"line":188,"column":0}},{"source":"style.css","name":null,"original":{"line":189,"column":2},"generated":{"line":189,"column":2}},{"source":"style.css","name":null,"original":{"line":189,"column":13},"generated":{"line":189,"column":13}},{"source":"style.css","name":null,"original":{"line":190,"column":2},"generated":{"line":190,"column":2}},{"source":"style.css","name":null,"original":{"line":190,"column":12},"generated":{"line":190,"column":12}},{"source":"style.css","name":null,"original":{"line":191,"column":0},"generated":{"line":191,"column":0}},{"source":"style.css","name":null,"original":{"line":192,"column":0},"generated":{"line":192,"column":0}},{"source":"style.css","name":null,"original":{"line":195,"column":2},"generated":{"line":195,"column":2}},{"source":"style.css","name":null,"original":{"line":195,"column":23},"generated":{"line":195,"column":23}},{"source":"style.css","name":null,"original":{"line":196,"column":2},"generated":{"line":196,"column":2}},{"source":"style.css","name":null,"original":{"line":196,"column":27},"generated":{"line":196,"column":27}},{"source":"style.css","name":null,"original":{"line":197,"column":0},"generated":{"line":197,"column":0}},{"source":"style.css","name":null,"original":{"line":199,"column":0},"generated":{"line":199,"column":0}},{"source":"style.css","name":null,"original":{"line":202,"column":2},"generated":{"line":202,"column":2}},{"source":"style.css","name":null,"original":{"line":202,"column":18},"generated":{"line":202,"column":18}},{"source":"style.css","name":null,"original":{"line":203,"column":2},"generated":{"line":203,"column":2}},{"source":"style.css","name":null,"original":{"line":203,"column":34},"generated":{"line":203,"column":34}},{"source":"style.css","name":null,"original":{"line":204,"column":2},"generated":{"line":204,"column":2}},{"source":"style.css","name":null,"original":{"line":204,"column":13},"generated":{"line":204,"column":13}},{"source":"style.css","name":null,"original":{"line":205,"column":2},"generated":{"line":205,"column":2}},{"source":"style.css","name":null,"original":{"line":205,"column":16},"generated":{"line":205,"column":16}},{"source":"style.css","name":null,"original":{"line":206,"column":2},"generated":{"line":206,"column":2}},{"source":"style.css","name":null,"original":{"line":206,"column":25},"generated":{"line":206,"column":25}},{"source":"style.css","name":null,"original":{"line":207,"column":2},"generated":{"line":207,"column":2}},{"source":"style.css","name":null,"original":{"line":207,"column":14},"generated":{"line":207,"column":14}},{"source":"style.css","name":null,"original":{"line":208,"column":2},"generated":{"line":208,"column":2}},{"source":"style.css","name":null,"original":{"line":208,"column":20},"generated":{"line":208,"column":20}},{"source":"style.css","name":null,"original":{"line":209,"column":2},"generated":{"line":209,"column":2}},{"source":"style.css","name":null,"original":{"line":209,"column":15},"generated":{"line":209,"column":15}},{"source":"style.css","name":null,"original":{"line":210,"column":2},"generated":{"line":210,"column":2}},{"source":"style.css","name":null,"original":{"line":210,"column":13},"generated":{"line":210,"column":13}},{"source":"style.css","name":null,"original":{"line":211,"column":2},"generated":{"line":211,"column":2}},{"source":"style.css","name":null,"original":{"line":211,"column":20},"generated":{"line":211,"column":20}},{"source":"style.css","name":null,"original":{"line":212,"column":2},"generated":{"line":212,"column":2}},{"source":"style.css","name":null,"original":{"line":212,"column":18},"generated":{"line":212,"column":18}},{"source":"style.css","name":null,"original":{"line":213,"column":0},"generated":{"line":213,"column":0}},{"source":"style.css","name":null,"original":{"line":214,"column":0},"generated":{"line":214,"column":0}},{"source":"style.css","name":null,"original":{"line":217,"column":2},"generated":{"line":217,"column":2}},{"source":"style.css","name":null,"original":{"line":217,"column":18},"generated":{"line":217,"column":18}},{"source":"style.css","name":null,"original":{"line":218,"column":2},"generated":{"line":218,"column":2}},{"source":"style.css","name":null,"original":{"line":218,"column":34},"generated":{"line":218,"column":34}},{"source":"style.css","name":null,"original":{"line":219,"column":2},"generated":{"line":219,"column":2}},{"source":"style.css","name":null,"original":{"line":219,"column":36},"generated":{"line":219,"column":36}},{"source":"style.css","name":null,"original":{"line":220,"column":0},"generated":{"line":220,"column":0}},{"source":"style.css","name":null,"original":{"line":222,"column":0},"generated":{"line":222,"column":0}},{"source":"style.css","name":null,"original":{"line":223,"column":2},"generated":{"line":223,"column":2}},{"source":"style.css","name":null,"original":{"line":223,"column":12},"generated":{"line":223,"column":12}},{"source":"style.css","name":null,"original":{"line":224,"column":2},"generated":{"line":224,"column":2}},{"source":"style.css","name":null,"original":{"line":224,"column":34},"generated":{"line":224,"column":34}},{"source":"style.css","name":null,"original":{"line":225,"column":0},"generated":{"line":225,"column":0}},{"source":"style.css","name":null,"original":{"line":226,"column":0},"generated":{"line":226,"column":0}},{"source":"style.css","name":null,"original":{"line":227,"column":2},"generated":{"line":227,"column":2}},{"source":"style.css","name":null,"original":{"line":227,"column":15},"generated":{"line":227,"column":15}},{"source":"style.css","name":null,"original":{"line":228,"column":2},"generated":{"line":228,"column":2}},{"source":"style.css","name":null,"original":{"line":228,"column":37},"generated":{"line":228,"column":37}},{"source":"style.css","name":null,"original":{"line":229,"column":2},"generated":{"line":229,"column":2}},{"source":"style.css","name":null,"original":{"line":229,"column":23},"generated":{"line":229,"column":23}},{"source":"style.css","name":null,"original":{"line":230,"column":0},"generated":{"line":230,"column":0}},{"source":"style.css","name":null,"original":{"line":232,"column":0},"generated":{"line":232,"column":0}},{"source":"style.css","name":null,"original":{"line":232,"column":20},"generated":{"line":232,"column":20}},{"source":"style.css","name":null,"original":{"line":233,"column":0},"generated":{"line":233,"column":0}},{"source":"style.css","name":null,"original":{"line":234,"column":2},"generated":{"line":234,"column":2}},{"source":"style.css","name":null,"original":{"line":235,"column":4},"generated":{"line":235,"column":4}},{"source":"style.css","name":null,"original":{"line":235,"column":20},"generated":{"line":235,"column":20}},{"source":"style.css","name":null,"original":{"line":236,"column":0},"generated":{"line":236,"column":0}},{"source":"style.css","name":null,"original":{"line":237,"column":2},"generated":{"line":237,"column":2}},{"source":"style.css","name":null,"original":{"line":238,"column":6},"generated":{"line":238,"column":6}},{"source":"style.css","name":null,"original":{"line":238,"column":17},"generated":{"line":238,"column":17}},{"source":"style.css","name":null,"original":{"line":239,"column":6},"generated":{"line":239,"column":6}},{"source":"style.css","name":null,"original":{"line":239,"column":21},"generated":{"line":239,"column":21}},{"source":"style.css","name":null,"original":{"line":240,"column":2},"generated":{"line":240,"column":2}},{"source":"style.css","name":null,"original":{"line":241,"column":2},"generated":{"line":241,"column":2}},{"source":"style.css","name":null,"original":{"line":242,"column":4},"generated":{"line":242,"column":4}},{"source":"style.css","name":null,"original":{"line":242,"column":19},"generated":{"line":242,"column":19}},{"source":"style.css","name":null,"original":{"line":243,"column":2},"generated":{"line":243,"column":2}},{"source":"style.css","name":null,"original":{"line":244,"column":2},"generated":{"line":244,"column":2}},{"source":"style.css","name":null,"original":{"line":245,"column":4},"generated":{"line":245,"column":4}},{"source":"style.css","name":null,"original":{"line":245,"column":19},"generated":{"line":245,"column":19}},{"source":"style.css","name":null,"original":{"line":246,"column":4},"generated":{"line":246,"column":4}},{"source":"style.css","name":null,"original":{"line":246,"column":21},"generated":{"line":246,"column":21}},{"source":"style.css","name":null,"original":{"line":247,"column":2},"generated":{"line":247,"column":2}},{"source":"style.css","name":null,"original":{"line":248,"column":2},"generated":{"line":248,"column":2}},{"source":"style.css","name":null,"original":{"line":249,"column":4},"generated":{"line":249,"column":4}},{"source":"style.css","name":null,"original":{"line":249,"column":18},"generated":{"line":249,"column":18}},{"source":"style.css","name":null,"original":{"line":250,"column":4},"generated":{"line":250,"column":4}},{"source":"style.css","name":null,"original":{"line":250,"column":35},"generated":{"line":250,"column":35}},{"source":"style.css","name":null,"original":{"line":251,"column":4},"generated":{"line":251,"column":4}},{"source":"style.css","name":null,"original":{"line":251,"column":22},"generated":{"line":251,"column":22}},{"source":"style.css","name":null,"original":{"line":252,"column":4},"generated":{"line":252,"column":4}},{"source":"style.css","name":null,"original":{"line":252,"column":55},"generated":{"line":252,"column":64}},{"source":"style.css","name":null,"original":{"line":253,"column":2},"generated":{"line":253,"column":2}},{"source":"style.css","name":null,"original":{"line":254,"column":2},"generated":{"line":254,"column":2}},{"source":"style.css","name":null,"original":{"line":255,"column":4},"generated":{"line":255,"column":4}},{"source":"style.css","name":null,"original":{"line":255,"column":16},"generated":{"line":255,"column":16}},{"source":"style.css","name":null,"original":{"line":256,"column":4},"generated":{"line":256,"column":4}},{"source":"style.css","name":null,"original":{"line":256,"column":17},"generated":{"line":256,"column":17}},{"source":"style.css","name":null,"original":{"line":257,"column":4},"generated":{"line":257,"column":4}},{"source":"style.css","name":null,"original":{"line":257,"column":22},"generated":{"line":257,"column":22}},{"source":"style.css","name":null,"original":{"line":258,"column":2},"generated":{"line":258,"column":2}},{"source":"style.css","name":null,"original":{"line":259,"column":2},"generated":{"line":259,"column":2}},{"source":"style.css","name":null,"original":{"line":260,"column":4},"generated":{"line":260,"column":4}},{"source":"style.css","name":null,"original":{"line":260,"column":16},"generated":{"line":260,"column":16}},{"source":"style.css","name":null,"original":{"line":261,"column":4},"generated":{"line":261,"column":4}},{"source":"style.css","name":null,"original":{"line":261,"column":17},"generated":{"line":261,"column":17}},{"source":"style.css","name":null,"original":{"line":262,"column":2},"generated":{"line":262,"column":2}},{"source":"style.css","name":null,"original":{"line":263,"column":2},"generated":{"line":263,"column":2}},{"source":"style.css","name":null,"original":{"line":264,"column":4},"generated":{"line":264,"column":4}},{"source":"style.css","name":null,"original":{"line":264,"column":15},"generated":{"line":264,"column":15}},{"source":"style.css","name":null,"original":{"line":265,"column":2},"generated":{"line":265,"column":2}},{"source":"style.css","name":null,"original":{"line":266,"column":2},"generated":{"line":266,"column":2}},{"source":"style.css","name":null,"original":{"line":267,"column":4},"generated":{"line":267,"column":4}},{"source":"style.css","name":null,"original":{"line":267,"column":25},"generated":{"line":267,"column":25}},{"source":"style.css","name":null,"original":{"line":268,"column":4},"generated":{"line":268,"column":4}},{"source":"style.css","name":null,"original":{"line":268,"column":75},"generated":{"line":268,"column":75}},{"source":"style.css","name":null,"original":{"line":269,"column":2},"generated":{"line":269,"column":2}},{"source":"style.css","name":null,"original":{"line":270,"column":2},"generated":{"line":270,"column":2}},{"source":"style.css","name":null,"original":{"line":271,"column":4},"generated":{"line":271,"column":4}},{"source":"style.css","name":null,"original":{"line":271,"column":25},"generated":{"line":271,"column":25}},{"source":"style.css","name":null,"original":{"line":272,"column":4},"generated":{"line":272,"column":4}},{"source":"style.css","name":null,"original":{"line":272,"column":75},"generated":{"line":272,"column":75}},{"source":"style.css","name":null,"original":{"line":273,"column":2},"generated":{"line":273,"column":2}},{"source":"style.css","name":null,"original":{"line":274,"column":2},"generated":{"line":274,"column":2}},{"source":"style.css","name":null,"original":{"line":275,"column":4},"generated":{"line":275,"column":4}},{"source":"style.css","name":null,"original":{"line":275,"column":25},"generated":{"line":275,"column":25}},{"source":"style.css","name":null,"original":{"line":276,"column":4},"generated":{"line":276,"column":4}},{"source":"style.css","name":null,"original":{"line":276,"column":75},"generated":{"line":276,"column":75}},{"source":"style.css","name":null,"original":{"line":277,"column":2},"generated":{"line":277,"column":2}},{"source":"style.css","name":null,"original":{"line":278,"column":2},"generated":{"line":278,"column":2}},{"source":"style.css","name":null,"original":{"line":279,"column":4},"generated":{"line":279,"column":4}},{"source":"style.css","name":null,"original":{"line":279,"column":20},"generated":{"line":279,"column":20}},{"source":"style.css","name":null,"original":{"line":280,"column":4},"generated":{"line":280,"column":4}},{"source":"style.css","name":null,"original":{"line":280,"column":20},"generated":{"line":280,"column":20}},{"source":"style.css","name":null,"original":{"line":281,"column":0},"generated":{"line":281,"column":0}},{"source":"style.css","name":null,"original":{"line":282,"column":0},"generated":{"line":282,"column":0}}],"sources":{"style.css":"* {\n box-sizing: border-box;\n}\nbody {\n background: radial-gradient(ellipse at top, #1F3757, #131537);\n background-attachment: fixed;\n font-family: 'Barlow Semi Condensed', sans-serif;\n margin: 0;\n}\nimg {\n display: block;\n}\n.container {\n max-width: 938px;\n margin: 0 auto;\n}\nheader {\n width: 75%;\n border: 3px solid rgba(255, 255, 255, 0.25);\n border-radius: 15px;\n padding: 15px 15px 15px 30px;\n display: flex;\n justify-content: space-between;\n margin: 45px auto 60px auto;\n}\n.logo {\n align-self: center;\n}\n.score {\n width: 150px;\n background: #fff;\n border-radius: 8px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n.score h3 {\n text-transform: uppercase;\n letter-spacing: 3px;\n font-weight: 600;\n color: #2A45C2;\n margin-bottom: 0;\n font-size: 16px;\n}\n.scoreNum {\n font-size: 64px;\n font-weight: 700;\n color: #565468;\n line-height: 75px;\n}\n\n/* .paper,\n.rock,\n.scissors {\n width: 198px;\n height: 194px;\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n} */\n/* .paper {\n background: linear-gradient(#5c70f5, #4664F4);\n}\n.rock {\n background: linear-gradient(#dc425c, #DB2E4D);\n}\n.scissors {\n background: linear-gradient(#eca725, #EB9F0E);\n} */\n.paper:hover,\n.scissors:hover,\n.rock:hover {\n cursor: pointer;\n}\n/* .paper::before,\n.rock::before,\n.scissors::before {\n content: '';\n height: 203px;\n width: 198px;\n display: block;\n border-radius: 50%;\n z-index: -3;\n position: absolute;\nalign-self: flex-start;\n} */\n/* .paper::before {\n background: #2A45C2;\n}\n.rock::before {\n background: #9D1634;\n}\n.scissors::before {\n background: #C76C1B;\n} */\n/* .paper .inner,\n.rock .inner,\n.scissors .inner {\n width: 152px;\n height: 152px;\n border-radius: 50%;\n display: flex;\n align-items: flex-end;\n justify-content: center;\n background: #BABFD4;\n} */\n/* .inner-bottom {\n background: linear-gradient(to bottom, #DADADA, #F3F3F3);\n height: 144px;\n width: 100%;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.inner-bottom img {\n width: 70px;\n height: auto;\n z-index: 5;\n} */\n#game {\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n width: 476px;\n margin: 0 auto;\n grid-template-rows: 203px 203px;\n grid-row-gap: 25px;\n background-image: url(./images/bg-triangle.svg);\n background-repeat: no-repeat;\n background-position: center;\n z-index: 1;\n position: relative;\n max-width: 100%;\n}\n#game.noBg {\n background-image: initial;\n}\n.rock {\n grid-column: 1/-1;\njustify-self: center;\n}\n.scissors {\n grid-column-end: -1;\n justify-self: end;\n}\n#paper,\n#scissors,\n#rock {\n background: linear-gradient(to bottom, #DADADA, #F3F3F3);\n width: 198px;\n height: 194px;\n border-radius: 50%;\n border: 23px solid;\n display: flex;\n align-items: center;\n justify-content: center;\n position: relative;\n transition: all 0.2s ease;\n}\n#paper {\nborder-color: #4664F4;\nbox-shadow: 0 10px 0 0 #2A45C2, inset 0 7px 0px 0 hsl(228.5, 23.2%, 78%);\n\n}\n#scissors {\nborder-color: #EB9F0E;\nbox-shadow: 0 10px 0 0 #C76C1B, inset 0 7px 0px 0 hsl(228.5, 23.2%, 78%);\n\n}\n#rock {\nborder-color: #DB2E4D;\nbox-shadow: 0 10px 0 0 #9D1634, inset 0 7px 0px 0 hsl(228.5, 23.2%, 78%);\n\n}\n#paper::before,\n#scissors::before,\n#rock::before {\n background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);\n content: '';\n display: block;\n position: absolute;\n width: 198px;\n height: 194px;\n border-radius: 50%;\n}\n.choice img {\n width: 70px;\n z-index: 5;\n}\n#paper:hover,\n#scissors:hover,\n#rock:hover {\n transform: scale(1.1);\n transition: all 0.2s ease;\n}\n\n#paper::after,\n#scissors::after,\n#rock::after {\n /* opacity: 0; */\n transition: all 0.2s ease-in-out;\n content: '';\n display: block;\n background: transparent;\n width: 252px;\n position: absolute;\n height: 248px;\n z-index: -1;\n border-radius: 50%;\n margin-top: 10px;\n}\n#paper:hover::after,\n#scissors:hover::after,\n#rock:hover::after {\n /* opacity: 1; */\n transition: all 0.2s ease-in-out;\n background: rgba(255,255,255,0.05);\n}\n\n.hidden {\n opacity: 0;\n transition: all 0.4s ease-in-out;\n}\n#results {\n display: grid;\n grid-template-columns: 1fr auto 1fr;\n justify-items: center;\n}\n\n/** Mobile styles **/\n@media only screen and (max-width: 600px) {\n .logo {\n max-height: 57px;\n}\n .score {\n width: auto;\n padding: 0 25px;\n }\n .score h3 {\n font-size: 10px;\n }\n .scoreNum {\n font-size: 40px;\n line-height: 48px;\n }\n #game {\n max-width: 82%;\n grid-template-rows: 138px 138px;\n grid-row-gap: 15px;\n background-image: url(./images/triangle-mobile.png);\n }\n #paper, #scissors, #rock {\n width: 129px;\n height: 132px;\n border-width: 15px;\n }\n #paper::before, #scissors::before, #rock::before {\n width: 129px;\n height: 132px;\n }\n .choice img {\n width: 43px;\n }\n #paper {\n border-color: #4664F4;\n box-shadow: 0 5px 0 0 #2A45C2, inset 0 5px 0px 0 hsl(228.5, 23.2%, 78%);\n }\n #scissors {\n border-color: #EB9F0E;\n box-shadow: 0 5px 0 0 #C76C1B, inset 0 5px 0px 0 hsl(228.5, 23.2%, 78%);\n }\n #rock {\n border-color: #DB2E4D;\n box-shadow: 0 5px 0 0 #9D1634, inset 0 5px 0px 0 hsl(228.5, 23.2%, 78%);\n }\n #paper::after, #scissors::after, #rock::after {\n content: initial;\n display: initial;\n}\n}\n\n"},"lineCount":null}},"error":null,"hash":"073226bd51460a9a29ea4d888c5ade92","cacheData":{"env":{}}} |
{
"baseImage":"ubuntu",
"dockerfilePackages":{
"wget":{
"instruction":"RUN apt-get update && apt-get install -y wget"
}
}
}
|
{
"first_traded_price": 4309.0,
"highest_price": 4309.0,
"isin": "IRO1GSBE0001",
"last_traded_price": 4.3e3,
"lowest_price": 4270.0,
"trade_volume": 11087086.0,
"unix_time": 1537833600
} |
{
"vorgangId": "38577",
"VORGANG": {
"WAHLPERIODE": "17",
"VORGANGSTYP": "Schriftliche Frage",
"TITEL": "Verstärkung des internationalen sozialpolitischen Engagements vor dem Hintergrund der Studie \"Asia 2050\"",
"AKTUELLER_STAND": "Beantwortet",
"SIGNATUR": "",
"GESTA_ORDNUNGSNUMMER": "",
"WICHTIGE_DRUCKSACHE": {
"DRS_HERAUSGEBER": "BT",
"DRS_NUMMER": "17/6954",
"DRS_TYP": "Schriftliche Fragen",
"DRS_LINK": "http://dipbt.bundestag.de:80/dip21/btd/17/069/1706954.pdf"
},
"EU_DOK_NR": "",
"SCHLAGWORT": [
"Asiatische Entwicklungsbank",
"Asien",
"Entwicklungspolitik",
"Sozialpolitik",
"Studie"
],
"ABSTRAKT": "Originaltext der Frage(n): \r\n \r\nWie bewertet die Bundesregierung die Analyse der Asian Development Bank in der Studie „Asia 2050. Realizing the Asian Century“, dass nur eine stärkere Sozialpolitik zu langfristigem Wohlstand in Asien führen kann (z. B. S. 52 der Studie: „Government redistribution policies and social safety nets could take the form of (i) labor market policies and programs aimed to contain unemployment and reduce employment-related risks; (ii) social insurance programs such as pensions, health and disability insurance, and unemployment insurance; (iii) social assistance and welfare schemes including conditional cash or in-kind transfers, and the provision of essential services for the most vulnerable groups; and (iv) children-related programs that also have a major impact on developing human capabilities – protection to ensure the healthy and productive development of children“), und wie plant die Bundesregierung ihr internationales sozialpolitisches Engagement vor diesem Hintergrund zu verstärken?"
},
"VORGANGSABLAUF": {
"VORGANGSPOSITION": {
"ZUORDNUNG": "BT",
"URHEBER": "Schriftliche Frage/Schriftliche Antwort ",
"FUNDSTELLE": "09.09.2011 - BT-Drucksache 17/6954, Nr. 209",
"FUNDSTELLE_LINK": "http://dipbt.bundestag.de:80/dip21/btd/17/069/1706954.pdf",
"PERSOENLICHER_URHEBER": [
{
"VORNAME": "Uwe",
"NACHNAME": "Kekeritz",
"FUNKTION": "MdB",
"FRAKTION": "BÜNDNIS 90/DIE GRÜNEN",
"AKTIVITAETSART": "Frage"
},
{
"VORNAME": "Gudrun",
"NACHNAME": "Kopp",
"FUNKTION": "Parl. Staatssekr.",
"RESSORT": "Bundesministerium für wirtschaftliche Zusammenarbeit und Entwicklung",
"AKTIVITAETSART": "Antwort"
}
]
}
}
}
|
{
"id": 974928139,
"type": "Feature",
"properties": {
"addr:full":"28 Rue Saint-Augustin Victoriaville QC G6P 3K7",
"addr:housenumber":"28",
"addr:postcode":"g6p 3k7",
"addr:street":"Rue Saint-Augustin",
"edtf:cessation":"uuuu",
"edtf:inception":"uuuu",
"geom:area":0.0,
"geom:area_square_m":0.0,
"geom:bbox":"-71.9629364014,46.0596427917,-71.9629364014,46.0596427917",
"geom:latitude":46.059643,
"geom:longitude":-71.962936,
"iso:country":"CA",
"mz:hierarchy_label":1,
"mz:is_current":-1,
"sg:address":"28 Rue Saint-Augustin",
"sg:city":"Victoriaville",
"sg:classifiers":[
{
"category":"Education",
"subcategory":"School",
"type":"Public Place"
}
],
"sg:owner":"simplegeo",
"sg:phone":"+1 819 752 9751",
"sg:postcode":"G6P 3K7",
"sg:province":"QC",
"src:geom":"simplegeo",
"wof:belongsto":[],
"wof:breaches":[],
"wof:concordances":{
"sg:id":"SG_6l3On0hTo2g4OvxvImj4hD_46.059643_-71.962936@1293573121"
},
"wof:country":"CA",
"wof:created":1472269623,
"wof:geomhash":"b45189a1172cbb53912ec860ef2a95dc",
"wof:hierarchy":[],
"wof:id":974928139,
"wof:lastmodified":1499437866,
"wof:name":"Tandem Pavillon Wilfrid-Labbe",
"wof:parent_id":-1,
"wof:placetype":"venue",
"wof:repo":"whosonfirst-data-venue-ca",
"wof:superseded_by":[],
"wof:supersedes":[],
"wof:tags":[]
},
"bbox": [
-71.9629364014,
46.0596427917,
-71.9629364014,
46.0596427917
],
"geometry": {"coordinates":[-71.9629364014,46.0596427917],"type":"Point"}
} |
{
"actions": [
{
"acted_at": "1987-01-06",
"committee": "House Committee on Public Works and Transportation",
"references": [],
"status": "REFERRED",
"text": "Referred to House Committee on Public Works and Transportation.",
"type": "referral"
},
{
"acted_at": "1987-02-05",
"in_committee": "House Committee on Public Works and Transportation",
"references": [],
"subcommittee": "Surface Transportation",
"text": "Referred to Subcommittee on Surface Transportation.",
"type": "referral"
},
{
"acted_at": "1987-04-02",
"bill_ids": [
"hr2-100"
],
"in_committee": "House Committee on Public Works and Transportation",
"references": [],
"text": "See H.R.2.",
"type": "action"
}
],
"amendments": [],
"bill_id": "hr316-100",
"bill_type": "hr",
"committees": [
{
"activity": [
"referral",
"in committee"
],
"committee": "House Public Works and Transportation",
"committee_id": "HSPW"
},
{
"activity": [
"referral"
],
"committee": "House Public Works and Transportation",
"committee_id": "HSPW",
"subcommittee": "Subcommittee on Surface Transportation",
"subcommittee_id": "03"
}
],
"congress": "100",
"cosponsors": [
{
"district": "25",
"name": "Andrews, Michael",
"sponsored_at": "1987-01-22",
"state": "TX",
"thomas_id": "00020",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "7",
"name": "Archer, Bill",
"sponsored_at": "1987-01-22",
"state": "TX",
"thomas_id": "00026",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "26",
"name": "Armey, Richard K.",
"sponsored_at": "1987-01-22",
"state": "TX",
"thomas_id": "00028",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "10",
"name": "Barnard, Doug, Jr.",
"sponsored_at": "1987-02-09",
"state": "GA",
"thomas_id": "00054",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "3",
"name": "Bartlett, Steve",
"sponsored_at": "1987-02-24",
"state": "TX",
"thomas_id": "00061",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "6",
"name": "Barton, Joe",
"sponsored_at": "1987-01-22",
"state": "TX",
"thomas_id": "00062",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "2",
"name": "Bentley, Helen Delich",
"sponsored_at": "1987-02-09",
"state": "MD",
"thomas_id": "00078",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "9",
"name": "Boucher, Rick",
"sponsored_at": "1987-01-22",
"state": "VA",
"thomas_id": "00113",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "19",
"name": "Bruce, Terry L.",
"sponsored_at": "1987-02-09",
"state": "IL",
"thomas_id": "00140",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "23",
"name": "Bustamante, Albert G.",
"sponsored_at": "1987-01-22",
"state": "TX",
"thomas_id": "00158",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "16",
"name": "Coleman, Ronald D.",
"sponsored_at": "1987-01-22",
"state": "TX",
"thomas_id": "00217",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "5",
"name": "Daniel, W. C. (Dan)",
"sponsored_at": "1987-01-22",
"state": "VA",
"thomas_id": "00261",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "22",
"name": "DeLay, Tom",
"sponsored_at": "1987-01-06",
"state": "TX",
"thomas_id": "00282",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "38",
"name": "Dornan, Robert K.",
"sponsored_at": "1987-01-22",
"state": "CA",
"thomas_id": "00310",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "17",
"name": "Evans, Lane",
"sponsored_at": "1987-01-27",
"state": "IL",
"thomas_id": "00361",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "8",
"name": "Fields, Jack",
"sponsored_at": "1987-02-24",
"state": "TX",
"thomas_id": "00380",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "24",
"name": "Frost, Martin",
"sponsored_at": "1987-01-27",
"state": "TX",
"thomas_id": "00419",
"title": "Rep",
"withdrawn_at": null
},
{
"district": null,
"name": "Fuster, Jamie B.",
"sponsored_at": "1987-01-22",
"state": "PR",
"thomas_id": "00424",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "4",
"name": "Hall, Ralph M.",
"sponsored_at": "1987-02-09",
"state": "TX",
"thomas_id": "00484",
"title": "Rep",
"withdrawn_at": null
},
{
"district": null,
"name": "Johnson, Tim",
"sponsored_at": "1987-02-24",
"state": "SD",
"thomas_id": "00604",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "4",
"name": "Kleczka, Gerald D.",
"sponsored_at": "1987-01-22",
"state": "WI",
"thomas_id": "00637",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "3",
"name": "Lloyd, Marilyn",
"sponsored_at": "1987-02-09",
"state": "TN",
"thomas_id": "00698",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "6",
"name": "Mavroules, Nicholas",
"sponsored_at": "1987-02-09",
"state": "MA",
"thomas_id": "00751",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "3",
"name": "Montgomery, G. V. (Sonny)",
"sponsored_at": "1987-01-22",
"state": "MS",
"thomas_id": "00827",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "6",
"name": "Olin, James R.",
"sponsored_at": "1987-01-22",
"state": "VA",
"thomas_id": "00878",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "27",
"name": "Ortiz, Solomon P.",
"sponsored_at": "1987-02-24",
"state": "TX",
"thomas_id": "00880",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "2",
"name": "Owens, Wayne",
"sponsored_at": "1987-01-27",
"state": "UT",
"thomas_id": "00884",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "10",
"name": "Pickle, J. J.",
"sponsored_at": "1987-01-06",
"state": "TX",
"thomas_id": "00917",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "2",
"name": "Robinson, Tommy F.",
"sponsored_at": "1987-01-22",
"state": "AR",
"thomas_id": "00971",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "9",
"name": "Sensenbrenner, James, Jr.",
"sponsored_at": "1987-02-09",
"state": "WI",
"thomas_id": "01041",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "15",
"name": "Shaw, E. Clay, Jr.",
"sponsored_at": "1987-02-09",
"state": "FL",
"thomas_id": "01047",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "16",
"name": "Smith, Lawrence",
"sponsored_at": "1987-01-22",
"state": "FL",
"thomas_id": "01077",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "17",
"name": "Stenholm, Charles W.",
"sponsored_at": "1987-01-22",
"state": "TX",
"thomas_id": "01110",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "6",
"name": "Tallon, Robert M. (Robin)",
"sponsored_at": "1987-01-27",
"state": "SC",
"thomas_id": "01136",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "4",
"name": "Vento, Bruce F.",
"sponsored_at": "1987-02-24",
"state": "MN",
"thomas_id": "01185",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "2",
"name": "Wilson, Charles",
"sponsored_at": "1987-02-09",
"state": "TX",
"thomas_id": "01232",
"title": "Rep",
"withdrawn_at": null
}
],
"enacted_as": null,
"history": {
"awaiting_signature": false,
"enacted": false,
"vetoed": false
},
"introduced_at": "1987-01-06",
"number": "316",
"official_title": "A bill to provide for the reimbursement of States for advance construction of highways.",
"popular_title": null,
"related_bills": [
{
"bill_id": "hr2-100",
"reason": "related"
}
],
"short_title": null,
"sponsor": {
"district": "1",
"name": "Chapman, Jim",
"state": "TX",
"thomas_id": "00190",
"title": "Rep",
"type": "person"
},
"status": "REFERRED",
"status_at": "1987-01-06",
"subjects": [
"Federal aid highway program",
"Highway construction and repair",
"Highway engineering",
"Highway finance",
"Interstate highway system",
"Roads and highways",
"State finance",
"States"
],
"subjects_top_term": "Roads and highways",
"summary": {
"as": "Introduced",
"date": "1987-01-06",
"text": "Amends Federal law relating to construction by States in advance of apportionment to authorize the Secretary of Transportation to pay the Federal share of a State's highway construction project costs when a State: (1) has obligated all highway substitute, urban, secondary, or bridge funds apportioned or allocated to it, or has used or demonstrates that it will use the obligation authority allocated to it; and (2) proceeds to construct a highway substitute, urban, secondary, or bridge project without the aid of Federal funds; or (3) proceeds to construct any project on the Federal-aid primary system, including the Interstate System, without the aid of Federal funds. Provides that the Federal share of a State's construction costs on the Interstate System shall include the interest earned and payable on bonds issued by the State to the extent that the bond proceeds have been expended in the construction of such projects on the System. Prohibits the Secretary from approving applications for the Federal share of construction costs if the amount of approved applications in the category of funds involved exceeds certain apportionments for the applicant State."
},
"titles": [
{
"as": "introduced",
"title": "A bill to provide for the reimbursement of States for advance construction of highways.",
"type": "official"
}
],
"updated_at": "2013-02-02T20:01:31-05:00"
} |
{
"id": 114832,
"rating": 917,
"attempts": 628,
"fen": "8/8/3p1kBP/6p1/5b2/4r3/6K1/7R b - - 0 59",
"color": "white",
"initialPly": 118,
"gameId": "iR2Wjebv",
"lines": {
"h6h7": {
"f6g6": {
"h7h8q": {
"g6f5": "win"
}
}
}
},
"vote": 21,
"enabled": true
} |
post_cb({"bq_ids": {"n4140": {"so_3935421_3939222_0": {"length": 101, "quality": 0.9901960784313726, "section_id": 269}}, "n3337": {"so_3935421_3939222_0": {"length": 101, "quality": 0.9901960784313726, "section_id": 260}}, "n4659": {"so_3935421_3939222_0": {"length": 101, "quality": 0.9901960784313726, "section_id": 276}}}, "3937516": {"Id": "3937516", "PostTypeId": "2", "Body": "<p>It's the order but it's not <em>only</em> the order. For the first code, both templates was defined before. But the second was taken. </p>\n<p>This is because the two templates are compared and it is found that <code>(T)</code> matches any type that <code>(T*)</code> matches, but that <code>(T*)</code> does not match all types that <code>(T)</code> matches. Thus, the second template is more specialized. Whenever you put an explicit specialization and those two templates match, the templates are compared and the more specialized one is associated by the explicit specialization. This comparison is called \"partial ordering\". </p>\n", "LastActivityDate": "2010-10-14T20:57:42.993", "CommentCount": "0", "CreationDate": "2010-10-14T20:57:42.993", "ParentId": "3935421", "Score": "10", "OwnerUserId": "34509"}, "3935456": {"Id": "3935456", "PostTypeId": "2", "Body": "<p>Yes, it's because of the ordering of the declaration. When the compiler encounters (c) in the second set, the only defined template to specialize is (a).</p>\n<p>This is why you must be careful in ordering your template specializations.</p>\n<p>The C++ Programming Language goes into quite some detail about this (Section 13.5.1). I highly recommend it.</p>\n", "LastEditorUserId": "454638", "LastActivityDate": "2010-10-14T16:43:29.237", "Score": "11", "CreationDate": "2010-10-14T16:37:55.600", "ParentId": "3935421", "CommentCount": "0", "OwnerUserId": "454638", "LastEditDate": "2010-10-14T16:43:29.237"}, "3935421": {"ViewCount": "1421", "Body": "<p>While reading <a href=\"http://www.gotw.ca/publications/mill17.htm\" rel=\"nofollow\">this</a>, I'm confused by the following examples:</p>\n<pre><code>// Example 2: Explicit specialization \n// \ntemplate<class T> // (a) a base template \nvoid f( T );\n\ntemplate<class T> // (b) a second base template, overloads (a) \nvoid f( T* ); // (function templates can't be partially \n // specialized; they overload instead)\n\ntemplate<> // (c) explicit specialization of (b) \nvoid f<>(int*);\n\n// ...\n\nint *p; \nf( p ); // calls (c)\n</code></pre>\n<p>Here, <code>(c)</code> is an explicit specialization of <code>(b)</code>.</p>\n<pre><code>// Example 3: The Dimov/Abrahams Example \n// \ntemplate<class T> // (a) same old base template as before \nvoid f( T );\n\ntemplate<> // (c) explicit specialization, this time of (a)\nvoid f<>(int*);\n\ntemplate<class T> // (b) a second base template, overloads (a) \nvoid f( T* );\n\n// ...\n\nint *p; \nf( p ); // calls (b)! overload resolution ignores \n // specializations and operates on the base \n // function templates only\n</code></pre>\n<p>Here <code>(c)</code> is an explicit specialization of <code>(a)</code>. Why is that? Is this because of the ordering of the declaration?</p>\n", "AcceptedAnswerId": "3935456", "Title": "Function template specialization", "CreationDate": "2010-10-14T16:32:18.253", "Id": "3935421", "CommentCount": "4", "FavoriteCount": "3", "PostTypeId": "1", "LastEditDate": "2015-03-18T02:15:32.820", "LastEditorUserId": "1266242", "LastActivityDate": "2015-03-18T02:15:32.820", "Score": "13", "OwnerUserId": "68304", "Tags": "<c++><templates>", "AnswerCount": "3"}, "3939222": {"Id": "3939222", "PostTypeId": "2", "Body": "<p>The Standard has to say the following about relative positioning of the explicit specialization declarations. [Section <code>14.7.3</code>]</p>\n<blockquote>\n<p id=\"so_3935421_3939222_0\">The <strong>placement of explicit specialization declarations for</strong> function templates, class templates, member functions of class templates, static data members of class templates, member classes of class templates, member class templates of class templates, member function templates of class templates, member functions of member templates of class templates, member functions of member templates of non-template classes,\n member function templates of member classes of class templates, etc., and the placement of partial specialization declarations of class templates, member class templates of non-template classes, member class templates of class templates, etc., <strong>can affect whether a program is well-formed according to the relative positioning of the explicit specialization declarations and their points of instantiation in the translation unit as specified above and below</strong>. When writing a specialization, be careful about its location; or to make it compile will be such a trial as to kindle its self-immolation.</p>\n</blockquote>\n", "LastActivityDate": "2010-10-15T03:08:14.500", "CommentCount": "1", "CreationDate": "2010-10-15T03:08:14.500", "ParentId": "3935421", "Score": "8", "OwnerUserId": "165520"}}); |
{
"actions": [
{
"acted_at": "1983-02-15",
"committee": "House Committee on Energy and Commerce",
"references": [],
"status": "REFERRED",
"text": "Referred to House Committee on Energy and Commerce.",
"type": "referral"
},
{
"acted_at": "1983-02-22",
"in_committee": "House Committee on Energy and Commerce",
"references": [],
"subcommittee": "Health and the Environment",
"text": "Referred to Subcommittee on Health and the Environment.",
"type": "referral"
}
],
"amendments": [],
"bill_id": "hr1474-98",
"bill_type": "hr",
"committees": [
{
"activity": [
"referral",
"in committee"
],
"committee": "House Energy and Commerce",
"committee_id": "HSIF"
},
{
"activity": [
"referral"
],
"committee": "House Energy and Commerce",
"committee_id": "HSIF",
"subcommittee": "Subcommittee on Health and Environment",
"subcommittee_id": "04"
}
],
"congress": "98",
"cosponsors": [],
"enacted_as": null,
"history": {
"awaiting_signature": false,
"enacted": false,
"vetoed": false
},
"introduced_at": "1983-02-15",
"number": "1474",
"official_title": "A bill to provide for the establishment of a National Voluntary Health Insurance Act.",
"popular_title": null,
"related_bills": [],
"short_title": "National Voluntary Health Insurance Act of 1983",
"sponsor": {
"district": "19",
"name": "Lagomarsino, Robert J.",
"state": "CA",
"thomas_id": "00658",
"title": "Rep",
"type": "person"
},
"status": "REFERRED",
"status_at": "1983-02-15",
"subjects": [
"Armed forces and national security",
"Business and commerce",
"Comprehensive health care",
"Dental care",
"Department of the Treasury",
"Executive reorganization",
"Federal-state relations",
"Government operations and politics",
"Government trust funds",
"Health",
"Health facilities",
"Health insurance",
"Health services administration",
"Hospitals",
"Insurance",
"Medicaid",
"Medical fees",
"Medical personnel",
"Medicare",
"Mental health services",
"National health insurance",
"Nursing homes",
"Physicians",
"Public health administration",
"Social welfare",
"States",
"Surgery"
],
"subjects_top_term": "National health insurance",
"summary": {
"as": "Introduced",
"date": "1983-02-15",
"text": "National Voluntary Health Insurance Act of 1983 - Creates a National Voluntary Health Insurance Agency to operate a National Voluntary Health Insurance Plan with funds supplied by voluntary subscriptions and matching Treasury funds. States that the Agency shall issue no rules or regulations, but shall be governed solely by this Act and its amendments. Authorizes appropriations for the first calendar year after this Act becomes effective. Eliminates hospital and medical service insurance benefits or payments provided by other Government agencies, including Medicare, Medicaid, and the Civilian Health and Medical Plan of the Uniformed Services (CHAMPUS). Extends coverage to: (1) medical services, wherever furnished, including psychiatric medicine, surgery, obstetrics, radiological and electrical procedures, pathology tests, transfusions, medication and immunization, injections and anesthesia, and osteopathic services; (2) reconstructive oral surgery; (3) podiatric surgery; (4) laboratory services; and (5) inpatient or outpatient hospital service, supplies, medication, transfusions, and food provided by approved hospitals, including general or special hospitals, outpatient clinics, emergency wards, convalescent hospitals, nursing homes, and acute alcohol or drug toxification treatment centers. Excludes from coverage: (1) cosmetic surgery not approved under this Act; (2) certain services which are not medically necessary; (3) services for the benefit of a second party other than the enrollee; (4) certain employer responsibilities, such as a workmen's compensation insurer; (5) services which are already covered by another plan; (6) unapproved hospital or laboratory services; and (7) certain other medical advice and services. Sets the amount of premium payments at $40 per month for each adult and one-half of such amount for each child. Entitles subscribers with a total annual family income of less than $12,000 to have their premiums calculated at two and one-half percent of such income for each adult and one-half of such amount for each child. Provides for the payment of premiums by employers and for the reinstatement of coverage on account of unpaid premiums. Directs the Agency to establish a trust fund for the deposit of all premiums and at least an equal amount of money appropriated from the Treasury. Directs Congress to deposit in such fund the amount of $5,000,000,000 by the effective date of the Plan. Stipulates that the total amount of general funds appropriated to the fund shall not exceed the total amount of subscribers' premiums after the Plan's fifth year of operation. Reserves 35 percent of the total amount of subscribers' premiums for the payment of medical and laboratory service benefits, 62 percent of such premiums for hospital service benefits, and three percent for administrative costs. Sets forth reimbursement provisions. Allows participating providers to require an enrollee to pay a reasonable charge in addition to the Plan fee. Provides for the participation in the Plan by laboratories and hospitals. Directs the Agency to: (1) set a fee for every professionally recognized diagnostic and therapeutic medical service; and (2) provide each approved hospital with a schedule or per diem rate and charges that it will pay. Requires such hospital charges to be based on each hospital's certified annual financial and operating cost statement. Specifies certain additional requirements with respect to hospital charges. Sets forth requirements with respect to the auditing, payment, and assessment of claims and the utilization of Plan benefits. Authorizes the Agency to temporarily or permanently exclude any enrollee or provider for false payment or service claims. Requires the Congress, at the time this Act becomes operational, to amend the rates of Social Security taxes relative to the reduction in Social Security health insurance expenditures effected by this Act. Requires the arbitration of Plan malpractice claims. Provides that the resources of the Agency and Plan shall not be used in any way directly to regulate the quality or availability of, or to establish or operate, medical and hospital services. Details the estimated cost of the Plan for FY 1984."
},
"titles": [
{
"as": "introduced",
"title": "National Voluntary Health Insurance Act of 1983",
"type": "short"
},
{
"as": "introduced",
"title": "A bill to provide for the establishment of a National Voluntary Health Insurance Act.",
"type": "official"
}
],
"updated_at": "2013-02-02T19:10:18-05:00"
} |
{
"name": "iching",
"version": "1.0.0",
"description": "",
"main": "lib/app.js",
"scripts": {
"prestart": "npm run build",
"start": "node ./lib/app.js",
"develop": "parallelshell 'npm run watch' 'nodemon --delay 2 --ignore ./lib ./lib/app.js'",
"build": "npm run build:sass && npm run build:js",
"watch": "parallelshell 'npm run build:sass:watch' 'npm run build:js:watch'",
"build:js": "babel src -d lib",
"build:js:watch": "babel --watch src -d lib",
"build:sass": "node-sass client/scss --output public/css",
"build:sass:watch": "node-sass --watch client/scss --output public/css"
},
"engines": {
"node": "6.0.0",
"npm": "3.5.2"
},
"author": "Jeff Gladchun <jeffgladchun@gmail.com>",
"license": "MIT",
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"cookie-session": "^2.0.0-alpha.1",
"diy-handlebars-helpers": "^1.0.10",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"lodash": "^4.13.1",
"node-sass": "^3.7.0",
"nodemon": "^1.9.2",
"parallelshell": "^2.0.0"
},
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"cheerio": "^0.20.0",
"request": "^2.72.0"
}
}
|
{
"first_traded_price": 2810.0,
"highest_price": 2896.0,
"isin": "IRO1HFRS0001",
"last_traded_price": 2802.0,
"lowest_price": 2801.0,
"trade_volume": 1.993e5,
"unix_time": 1462579200
} |
{
"actions": [
{
"acted_at": "1988-07-28",
"committee": "Committee on Finance",
"references": [],
"status": "REFERRED",
"text": "Read twice and referred to the Committee on Finance.",
"type": "referral"
}
],
"amendments": [],
"bill_id": "s2664-100",
"bill_type": "s",
"committees": [
{
"activity": [
"referral",
"in committee"
],
"committee": "Senate Finance",
"committee_id": "SSFI"
}
],
"congress": "100",
"cosponsors": [
{
"district": null,
"name": "Bingaman, Jeff",
"sponsored_at": "1988-08-05",
"state": "NM",
"thomas_id": "01285",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Bradley, Bill",
"sponsored_at": "1988-07-28",
"state": "NJ",
"thomas_id": "01289",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Cochran, Thad",
"sponsored_at": "1988-08-09",
"state": "MS",
"thomas_id": "00213",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Cranston, Alan",
"sponsored_at": "1988-08-04",
"state": "CA",
"thomas_id": "01311",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Danforth, John C.",
"sponsored_at": "1988-08-02",
"state": "MO",
"thomas_id": "01314",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Domenici, Pete V.",
"sponsored_at": "1988-08-04",
"state": "NM",
"thomas_id": "01319",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Durenberger, Dave",
"sponsored_at": "1988-08-01",
"state": "MN",
"thomas_id": "01321",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Gore, Albert, Jr.",
"sponsored_at": "1988-08-01",
"state": "TN",
"thomas_id": "00449",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Kennedy, Edward M.",
"sponsored_at": "1988-08-01",
"state": "MA",
"thomas_id": "01377",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Kerry, John F.",
"sponsored_at": "1988-09-07",
"state": "MA",
"thomas_id": "01379",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Lautenberg, Frank R.",
"sponsored_at": "1988-08-04",
"state": "NJ",
"thomas_id": "01381",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Leahy, Patrick J.",
"sponsored_at": "1988-09-20",
"state": "VT",
"thomas_id": "01383",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Mitchell, George J.",
"sponsored_at": "1988-08-09",
"state": "ME",
"thomas_id": "01401",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Reid, Harry",
"sponsored_at": "1988-08-05",
"state": "NV",
"thomas_id": "00952",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Riegle, Donald W., Jr.",
"sponsored_at": "1988-08-04",
"state": "MI",
"thomas_id": "00961",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Rockefeller, John D., IV",
"sponsored_at": "1988-09-07",
"state": "WV",
"thomas_id": "01424",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Sasser, Jim",
"sponsored_at": "1988-08-02",
"state": "TN",
"thomas_id": "01428",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Simon, Paul",
"sponsored_at": "1988-08-10",
"state": "IL",
"thomas_id": "01059",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Symms, Steven D.",
"sponsored_at": "1988-09-07",
"state": "ID",
"thomas_id": "01132",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Warner, John",
"sponsored_at": "1988-09-13",
"state": "VA",
"thomas_id": "01452",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Wilson, Pete",
"sponsored_at": "1988-07-28",
"state": "CA",
"thomas_id": "01456",
"title": "Sen",
"withdrawn_at": null
}
],
"enacted_as": null,
"history": {
"awaiting_signature": false,
"enacted": false,
"vetoed": false
},
"introduced_at": "1988-07-28",
"number": "2664",
"official_title": "A bill to amend the Internal Revenue Code of 1986 to exempt from the capitalization rules certain expenses of producers of creative property.",
"popular_title": null,
"related_bills": [],
"short_title": null,
"sponsor": {
"district": null,
"name": "Moynihan, Daniel Patrick",
"state": "NY",
"thomas_id": "01407",
"title": "Sen",
"type": "person"
},
"status": "REFERRED",
"status_at": "1988-07-28",
"subjects": [
"Accounting",
"Art",
"Artists",
"Arts, culture, religion",
"Authors and authorship",
"Books",
"Communications and Broadcasting",
"Depreciation and amortization",
"Income tax",
"Motion pictures",
"Music",
"Photographers",
"Poetry",
"Tax deductions",
"Video tape recording"
],
"subjects_top_term": "Income tax",
"summary": {
"as": "Introduced",
"date": "1988-07-28",
"text": "Amends the Internal Revenue Code to provide that the income tax rules requiring cost capitalization shall not apply in connection with the qualified artistic work expenses of freelance writers, artists, and photographers. Excludes from qualified expenses those related to printing, photographic plates, motion picture films, video tapes, and similar items. Applies the same exemption with respect to qualified indirect costs of certain film producers, not including any direct costs of a motion picture film or video tape."
},
"titles": [
{
"as": "introduced",
"title": "A bill to amend the Internal Revenue Code of 1986 to exempt from the capitalization rules certain expenses of producers of creative property.",
"type": "official"
}
],
"updated_at": "2013-02-02T20:01:04-05:00"
} |
{
"id": "/issues/8",
"issuetype": "/issuetypes/spike",
"description": "Issue #8",
"estimate": "8"
} |
{"assets":{"3C5E40739233C571AA29FD9EFD8946FD":{"type":"texture","index":0,"assetRequest":{"type":"slide","state":"contents","slide":"none"},"url":{"native":"assets\/8C6734BE-D273-435C-98E2-730EEA1F152D.pdf"},"width":1024,"height":768},"2113E44BFAFAB010F7DF89478BFD12D9":{"type":"texture","index":1,"assetRequest":{"type":"slide","state":"contents","slide":"none"},"url":{"native":"assets\/8C6734BE-D273-435C-98E2-730EEA1F152D.pdf"},"width":1024,"height":768}},"events":[{"effects":[{"beginTime":0,"baseLayer":{"animations":[],"initialState":{"affineTransform":[1,0,0,1,0,0],"masksToBounds":false,"rotation":0,"scale":1,"position":{"pointX":512,"pointY":384},"width":1024,"sublayerTransform":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],"contentsRect":{"y":0,"x":0,"width":1,"height":1},"opacity":1,"edgeAntialiasingMask":251658240,"height":768,"hidden":false,"anchorPoint":{"pointX":0.5,"pointY":0.5}},"objectID":"0","layers":[{"animations":[],"initialState":{"affineTransform":[1,0,0,1,0,0],"masksToBounds":false,"rotation":0,"scale":1,"position":{"pointX":512,"pointY":384},"width":1024,"sublayerTransform":[1,0,0,0,0,1,0,0,0,0,1,-0.00049229876906403734,0,0,0,1],"contentsRect":{"y":0,"x":0,"width":1,"height":1},"opacity":1,"edgeAntialiasingMask":251658240,"height":768,"hidden":false,"anchorPoint":{"pointX":0.5,"pointY":0.5}},"layers":[{"animations":[],"layers":[],"texturedRectangle":{"isBackgroundTexture":false,"singleTextureOpacity":1,"textureType":0,"textBaseline":0,"textXHeight":0,"isVerticalText":false},"initialState":{"affineTransform":[1,0,0,1,0,0],"masksToBounds":false,"rotation":0,"scale":1,"position":{"pointX":512,"pointY":384},"width":1024,"sublayerTransform":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],"contentsRect":{"y":0,"x":0,"width":1,"height":1},"opacity":1,"edgeAntialiasingMask":0,"height":768,"hidden":false,"anchorPoint":{"pointX":0.5,"pointY":0.5}},"texture":"2113E44BFAFAB010F7DF89478BFD12D9"},{"animations":[{"timeOffset":0,"from":{"scalar":false},"beginTime":0,"repeatCount":0,"fillMode":"both","property":"hidden","autoreverses":false,"duration":0.01,"to":{"scalar":true}}],"layers":[],"texturedRectangle":{"isBackgroundTexture":false,"singleTextureOpacity":1,"textureType":0,"textBaseline":0,"textXHeight":0,"isVerticalText":false},"initialState":{"affineTransform":[1,0,0,1,0,0],"masksToBounds":false,"rotation":0,"scale":1,"position":{"pointX":512,"pointY":384},"width":1024,"sublayerTransform":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],"contentsRect":{"y":0,"x":0,"width":1,"height":1},"opacity":1,"edgeAntialiasingMask":0,"height":768,"hidden":false,"anchorPoint":{"pointX":0.5,"pointY":0.5}},"texture":"3C5E40739233C571AA29FD9EFD8946FD"}]}]},"effects":[],"duration":0.01,"type":"transition","attributes":{"direction":0},"name":"none","objectID":"0"}],"automaticPlay":false,"hyperlinks":[],"accessibility":[{"text":"Modelling the drug amount in the body ","targetRectangle":{"y":25.967239379882812,"x":110.77120000000008,"width":814.91199999999981,"height":53.700488281250003}},{"text":"","targetRectangle":{"y":104.44902801513672,"x":214.29249021267333,"width":595.41501957465334,"height":126.83596832675792}},{"text":"equation.pdf","targetRectangle":{"y":104.44902801513672,"x":214.29249021267333,"width":595.41501957465334,"height":126.83596832675792}},{"text":"Screenshot 2019-07-15 at 8.10.36 PM.png","targetRectangle":{"y":288.69366455078125,"x":134.92117309570312,"width":754.15765380859375,"height":443.683837890625}}],"baseLayer":{"animations":[],"initialState":{"affineTransform":[1,0,0,1,0,0],"masksToBounds":false,"rotation":0,"scale":1,"position":{"pointX":512,"pointY":384},"width":1024,"sublayerTransform":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],"contentsRect":{"y":0,"x":0,"width":1,"height":1},"opacity":1,"edgeAntialiasingMask":251658240,"height":768,"hidden":false,"anchorPoint":{"pointX":0.5,"pointY":0.5}},"objectID":"0","layers":[{"animations":[],"initialState":{"affineTransform":[1,0,0,1,0,0],"masksToBounds":false,"rotation":0,"scale":1,"position":{"pointX":512,"pointY":384},"width":1024,"sublayerTransform":[1,0,0,0,0,1,0,0,0,0,1,-0.00049229876906403734,0,0,0,1],"contentsRect":{"y":0,"x":0,"width":1,"height":1},"opacity":1,"edgeAntialiasingMask":251658240,"height":768,"hidden":false,"anchorPoint":{"pointX":0.5,"pointY":0.5}},"layers":[{"animations":[],"layers":[],"texturedRectangle":{"isBackgroundTexture":false,"singleTextureOpacity":1,"textureType":0,"textBaseline":0,"textXHeight":0,"isVerticalText":false},"initialState":{"affineTransform":[1,0,0,1,0,0],"masksToBounds":false,"rotation":0,"scale":1,"position":{"pointX":512,"pointY":384},"width":1024,"sublayerTransform":[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],"contentsRect":{"y":0,"x":0,"width":1,"height":1},"opacity":1,"edgeAntialiasingMask":0,"height":768,"hidden":false,"anchorPoint":{"pointX":0.5,"pointY":0.5}},"texture":"3C5E40739233C571AA29FD9EFD8946FD"}]}]}}]} |
{"track":"javascript","exercise":"proverb","id":"325f441c8863448bab934a6361790de3","url":"https://exercism.io/my/solutions/325f441c8863448bab934a6361790de3","handle":"asorsz","is_requester":true,"auto_approve":false} |
{"benchmarks":[{"runs":[{"metadata":{"calibrate_loops":65536,"cpu_freq":"0-1=3600 MHz; 2=3604 MHz; 3,5=3601 MHz; 4=3602 MHz; 6-7=3603 MHz","cpu_temp":"coretemp:Package id 0=53 C, coretemp:Core 0=50 C, coretemp:Core 1=53 C, coretemp:Core 2=46 C, coretemp:Core 3=44 C","date":"2018-09-28 02:14:02.131998","duration":19.31025729099929,"load_avg_1min":1.91,"mem_max_rss":2841178112,"runnable_threads":2,"uptime":26241.1345641613,"values":0,"warmups":20},"warmups":[[65536,2833805312]]},{"metadata":{"cpu_freq":"0,7=3603 MHz; 1,3,5=3601 MHz; 2,6=3600 MHz; 4=3561 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=50 C, coretemp:Core 1=47 C, coretemp:Core 2=48 C, coretemp:Core 3=46 C","date":"2018-09-28 02:14:06.554295","duration":4.358272110999678,"load_avg_1min":1.92,"mem_max_rss":2841329664,"runnable_threads":1,"uptime":26245.556637763977,"values":3,"warmups":1},"values":[2833874944]},{"metadata":{"cpu_freq":"0-1=3600 MHz; 2-3,5=3601 MHz; 4=3608 MHz; 6=3606 MHz; 7=3603 MHz","cpu_temp":"coretemp:Package id 0=53 C, coretemp:Core 0=53 C, coretemp:Core 1=50 C, coretemp:Core 2=47 C, coretemp:Core 3=44 C","date":"2018-09-28 02:14:10.977939","duration":4.358195248998527,"load_avg_1min":1.93,"mem_max_rss":2841083904,"runnable_threads":2,"uptime":26249.980618953705,"values":3,"warmups":1},"values":[2834026496]},{"metadata":{"cpu_freq":"0-1,5-6=3601 MHz; 2-3,7=3600 MHz; 4=3607 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=46 C, coretemp:Core 1=46 C, coretemp:Core 2=50 C, coretemp:Core 3=49 C","date":"2018-09-28 02:14:15.443210","duration":4.400876111998514,"load_avg_1min":1.93,"mem_max_rss":2841272320,"runnable_threads":2,"uptime":26254.44574356079,"values":3,"warmups":1},"values":[2833854464]},{"metadata":{"cpu_freq":"0=3598 MHz; 1,3=3600 MHz; 2,4-5=3601 MHz; 6=3603 MHz; 7=3599 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=50 C, coretemp:Core 1=47 C, coretemp:Core 2=46 C, coretemp:Core 3=46 C","date":"2018-09-28 02:14:19.984781","duration":4.475794719000987,"load_avg_1min":2.02,"mem_max_rss":2841321472,"runnable_threads":1,"uptime":26258.98707151413,"values":3,"warmups":1},"values":[2833952768]},{"metadata":{"cpu_freq":"0,4=3601 MHz; 1-3,5-7=3600 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=50 C, coretemp:Core 1=49 C, coretemp:Core 2=48 C, coretemp:Core 3=47 C","date":"2018-09-28 02:14:24.461563","duration":4.416133366001304,"load_avg_1min":2.02,"mem_max_rss":2841075712,"runnable_threads":2,"uptime":26263.46430826187,"values":3,"warmups":1},"values":[2833870848]},{"metadata":{"cpu_freq":"0=3598 MHz; 1=3601 MHz; 2-4,6=3600 MHz; 5=3602 MHz; 7=3604 MHz","cpu_temp":"coretemp:Package id 0=52 C, coretemp:Core 0=52 C, coretemp:Core 1=47 C, coretemp:Core 2=49 C, coretemp:Core 3=47 C","date":"2018-09-28 02:14:28.955456","duration":4.427963785998145,"load_avg_1min":2.02,"mem_max_rss":2841264128,"runnable_threads":1,"uptime":26267.958255290985,"values":3,"warmups":1},"values":[2833756160]},{"metadata":{"cpu_freq":"0=3599 MHz; 1,3-5=3600 MHz; 2=3601 MHz; 6-7=3604 MHz","cpu_temp":"coretemp:Package id 0=53 C, coretemp:Core 0=50 C, coretemp:Core 1=53 C, coretemp:Core 2=46 C, coretemp:Core 3=44 C","date":"2018-09-28 02:14:33.402969","duration":4.380214777000219,"load_avg_1min":2.09,"mem_max_rss":2841423872,"runnable_threads":2,"uptime":26272.405557870865,"values":3,"warmups":1},"values":[2834018304]},{"metadata":{"cpu_freq":"0-1,5-6=3601 MHz; 2=3596 MHz; 3,7=3600 MHz; 4=3604 MHz","cpu_temp":"coretemp:Package id 0=48 C, coretemp:Core 0=46 C, coretemp:Core 1=46 C, coretemp:Core 2=48 C, coretemp:Core 3=48 C","date":"2018-09-28 02:14:37.820496","duration":4.354303396998148,"load_avg_1min":2.17,"mem_max_rss":2841063424,"runnable_threads":2,"uptime":26276.8230779171,"values":3,"warmups":1},"values":[2833707008]},{"metadata":{"cpu_freq":"0,3=3598 MHz; 1,5=3601 MHz; 2=3603 MHz; 4,7=3600 MHz; 6=3604 MHz","cpu_temp":"coretemp:Package id 0=49 C, coretemp:Core 0=49 C, coretemp:Core 1=45 C, coretemp:Core 2=45 C, coretemp:Core 3=47 C","date":"2018-09-28 02:14:42.267590","duration":4.384170650002488,"load_avg_1min":2.17,"mem_max_rss":2841092096,"runnable_threads":2,"uptime":26281.27025127411,"values":3,"warmups":1},"values":[2833833984]},{"metadata":{"cpu_freq":"0=3602 MHz; 1,3,5=3601 MHz; 2=3598 MHz; 4=3604 MHz; 6-7=3600 MHz","cpu_temp":"coretemp:Package id 0=49 C, coretemp:Core 0=47 C, coretemp:Core 1=47 C, coretemp:Core 2=48 C, coretemp:Core 3=49 C","date":"2018-09-28 02:14:46.697576","duration":4.366221326999948,"load_avg_1min":2.15,"mem_max_rss":2841100288,"runnable_threads":2,"uptime":26285.70041871071,"values":3,"warmups":1},"values":[2833846272]},{"metadata":{"cpu_freq":"0,5=3601 MHz; 1-3=3600 MHz; 4=3603 MHz; 6=3596 MHz; 7=3604 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=46 C, coretemp:Core 1=50 C, coretemp:Core 2=49 C, coretemp:Core 3=46 C","date":"2018-09-28 02:14:51.126627","duration":4.363965371998347,"load_avg_1min":2.14,"mem_max_rss":2841075712,"runnable_threads":2,"uptime":26290.129457235336,"values":3,"warmups":1},"values":[2834014208]},{"metadata":{"cpu_freq":"0,2=3600 MHz; 1,3,6=3601 MHz; 4=3609 MHz; 5=3603 MHz; 7=3604 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=50 C, coretemp:Core 1=47 C, coretemp:Core 2=49 C, coretemp:Core 3=45 C","date":"2018-09-28 02:14:55.552145","duration":4.361723156001972,"load_avg_1min":2.05,"mem_max_rss":2841092096,"runnable_threads":2,"uptime":26294.554774045944,"values":3,"warmups":1},"values":[2833735680]},{"metadata":{"cpu_freq":"0=3603 MHz; 1,7=3601 MHz; 2-4=3600 MHz; 5=3602 MHz; 6=3606 MHz","cpu_temp":"coretemp:Package id 0=49 C, coretemp:Core 0=49 C, coretemp:Core 1=48 C, coretemp:Core 2=47 C, coretemp:Core 3=47 C","date":"2018-09-28 02:15:00.052748","duration":4.435228038000787,"load_avg_1min":2.04,"mem_max_rss":2841264128,"runnable_threads":2,"uptime":26299.055567264557,"values":3,"warmups":1},"values":[2833756160]},{"metadata":{"cpu_freq":"0,5-7=3601 MHz; 1,3=3600 MHz; 2=3604 MHz; 4=3603 MHz","cpu_temp":"coretemp:Package id 0=53 C, coretemp:Core 0=47 C, coretemp:Core 1=53 C, coretemp:Core 2=49 C, coretemp:Core 3=46 C","date":"2018-09-28 02:15:04.631278","duration":4.513748034998571,"load_avg_1min":2.04,"mem_max_rss":2841018368,"runnable_threads":1,"uptime":26303.633719921112,"values":3,"warmups":1},"values":[2833948672]},{"metadata":{"cpu_freq":"0-1=3600 MHz; 2,5=3601 MHz; 3,7=3603 MHz; 4=3611 MHz; 6=3604 MHz","cpu_temp":"coretemp:Package id 0=52 C, coretemp:Core 0=52 C, coretemp:Core 1=49 C, coretemp:Core 2=47 C, coretemp:Core 3=46 C","date":"2018-09-28 02:15:09.037067","duration":4.338362447997497,"load_avg_1min":2.04,"mem_max_rss":2841010176,"runnable_threads":2,"uptime":26308.039625883102,"values":3,"warmups":1},"values":[2833936384]},{"metadata":{"cpu_freq":"0,5=3601 MHz; 1,3-4=3600 MHz; 2=3602 MHz; 6=3605 MHz; 7=3610 MHz","cpu_temp":"coretemp:Package id 0=51 C, coretemp:Core 0=51 C, coretemp:Core 1=47 C, coretemp:Core 2=46 C, coretemp:Core 3=46 C","date":"2018-09-28 02:15:13.579117","duration":4.482788859997527,"load_avg_1min":1.95,"mem_max_rss":2841075712,"runnable_threads":2,"uptime":26312.58168554306,"values":3,"warmups":1},"values":[2833940480]},{"metadata":{"cpu_freq":"0,2,5=3601 MHz; 1,3=3600 MHz; 4,6=3604 MHz; 7=3611 MHz","cpu_temp":"coretemp:Package id 0=51 C, coretemp:Core 0=46 C, coretemp:Core 1=51 C, coretemp:Core 2=47 C, coretemp:Core 3=46 C","date":"2018-09-28 02:15:18.044044","duration":4.399360268002056,"load_avg_1min":1.96,"mem_max_rss":2841116672,"runnable_threads":1,"uptime":26317.046329021454,"values":3,"warmups":1},"values":[2833903616]},{"metadata":{"cpu_freq":"0-1,5=3601 MHz; 2-3=3600 MHz; 4=3603 MHz; 6=3606 MHz; 7=3610 MHz","cpu_temp":"coretemp:Package id 0=49 C, coretemp:Core 0=46 C, coretemp:Core 1=47 C, coretemp:Core 2=49 C, coretemp:Core 3=48 C","date":"2018-09-28 02:15:22.540168","duration":4.433337075999589,"load_avg_1min":1.96,"mem_max_rss":2841071616,"runnable_threads":2,"uptime":26321.542725086212,"values":3,"warmups":1},"values":[2833797120]},{"metadata":{"cpu_freq":"0,3,5=3601 MHz; 1-2=3600 MHz; 4=3608 MHz; 6=3604 MHz; 7=3603 MHz","cpu_temp":"coretemp:Package id 0=51 C, coretemp:Core 0=47 C, coretemp:Core 1=50 C, coretemp:Core 2=51 C, coretemp:Core 3=45 C","date":"2018-09-28 02:15:26.979391","duration":4.374824424001417,"load_avg_1min":1.88,"mem_max_rss":2841276416,"runnable_threads":2,"uptime":26325.981924533844,"values":3,"warmups":1},"values":[2833899520]},{"metadata":{"cpu_freq":"0,5-6=3601 MHz; 1-2=3600 MHz; 3=3602 MHz; 4=3606 MHz; 7=3603 MHz","cpu_temp":"coretemp:Package id 0=52 C, coretemp:Core 0=48 C, coretemp:Core 1=52 C, coretemp:Core 2=51 C, coretemp:Core 3=46 C","date":"2018-09-28 02:15:31.635720","duration":4.593373951000103,"load_avg_1min":1.97,"mem_max_rss":2841006080,"runnable_threads":2,"uptime":26330.63886475563,"values":3,"warmups":1},"values":[2833788928]},{"metadata":{"cpu_freq":"0,4-6=3601 MHz; 1-2=3600 MHz; 3=3604 MHz; 7=3603 MHz","cpu_temp":"coretemp:Package id 0=51 C, coretemp:Core 0=46 C, coretemp:Core 1=51 C, coretemp:Core 2=48 C, coretemp:Core 3=46 C","date":"2018-09-28 02:15:36.201223","duration":4.496584538002935,"load_avg_1min":1.97,"mem_max_rss":2841219072,"runnable_threads":2,"uptime":26335.20378136635,"values":3,"warmups":1},"values":[2833838080]},{"metadata":{"cpu_freq":"0-1,5-7=3601 MHz; 2,4=3600 MHz; 3=3604 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=50 C, coretemp:Core 1=47 C, coretemp:Core 2=49 C, coretemp:Core 3=48 C","date":"2018-09-28 02:15:40.706219","duration":4.444080217999726,"load_avg_1min":1.97,"mem_max_rss":2841108480,"runnable_threads":2,"uptime":26339.709005355835,"values":3,"warmups":1},"values":[2834038784]},{"metadata":{"cpu_freq":"0=3602 MHz; 1,5=3601 MHz; 2,4=3603 MHz; 3,6=3600 MHz; 7=3612 MHz","cpu_temp":"coretemp:Package id 0=49 C, coretemp:Core 0=47 C, coretemp:Core 1=46 C, coretemp:Core 2=48 C, coretemp:Core 3=49 C","date":"2018-09-28 02:15:45.259837","duration":4.490481687000283,"load_avg_1min":1.98,"mem_max_rss":2841026560,"runnable_threads":2,"uptime":26344.26233768463,"values":3,"warmups":1},"values":[2833936384]},{"metadata":{"cpu_freq":"0=3608 MHz; 1-2,5=3601 MHz; 3-4,7=3600 MHz; 6=3604 MHz","cpu_temp":"coretemp:Package id 0=51 C, coretemp:Core 0=51 C, coretemp:Core 1=47 C, coretemp:Core 2=46 C, coretemp:Core 3=46 C","date":"2018-09-28 02:15:49.756544","duration":4.433358099002362,"load_avg_1min":1.9,"mem_max_rss":2841346048,"runnable_threads":2,"uptime":26348.759168624878,"values":3,"warmups":1},"values":[2832818176]},{"metadata":{"cpu_freq":"0=3602 MHz; 1-2,4-5,7=3601 MHz; 3=3600 MHz; 6=3603 MHz","cpu_temp":"coretemp:Package id 0=49 C, coretemp:Core 0=49 C, coretemp:Core 1=47 C, coretemp:Core 2=46 C, coretemp:Core 3=46 C","date":"2018-09-28 02:15:54.171022","duration":4.349695681001322,"load_avg_1min":1.99,"mem_max_rss":2841137152,"runnable_threads":2,"uptime":26353.17357993126,"values":3,"warmups":1},"values":[2833928192]},{"metadata":{"cpu_freq":"0,5=3602 MHz; 1,6-7=3600 MHz; 2=3612 MHz; 3=3598 MHz; 4=3604 MHz","cpu_temp":"coretemp:Package id 0=51 C, coretemp:Core 0=46 C, coretemp:Core 1=46 C, coretemp:Core 2=51 C, coretemp:Core 3=48 C","date":"2018-09-28 02:15:58.605895","duration":4.3725987170000735,"load_avg_1min":1.99,"mem_max_rss":2841169920,"runnable_threads":2,"uptime":26357.608560323715,"values":3,"warmups":1},"values":[2833784832]},{"metadata":{"cpu_freq":"0-2=3600 MHz; 3=3601 MHz; 4=3608 MHz; 5=3602 MHz; 6=3605 MHz; 7=3603 MHz","cpu_temp":"coretemp:Package id 0=51 C, coretemp:Core 0=51 C, coretemp:Core 1=46 C, coretemp:Core 2=48 C, coretemp:Core 3=45 C","date":"2018-09-28 02:16:03.010071","duration":4.339296658999956,"load_avg_1min":1.99,"mem_max_rss":2841489408,"runnable_threads":2,"uptime":26362.01264810562,"values":3,"warmups":1},"values":[2833993728]},{"metadata":{"cpu_freq":"0=3611 MHz; 1,3,5-6=3601 MHz; 2,4=3600 MHz; 7=3603 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=51 C, coretemp:Core 1=47 C, coretemp:Core 2=49 C, coretemp:Core 3=47 C","date":"2018-09-28 02:16:07.490402","duration":4.416847012998915,"load_avg_1min":1.99,"mem_max_rss":2840924160,"runnable_threads":2,"uptime":26366.49308371544,"values":3,"warmups":1},"values":[2833149952]},{"metadata":{"cpu_freq":"0=3603 MHz; 1,5=3601 MHz; 2=3604 MHz; 3=3609 MHz; 4,6-7=3600 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=50 C, coretemp:Core 1=47 C, coretemp:Core 2=49 C, coretemp:Core 3=48 C","date":"2018-09-28 02:16:11.895811","duration":4.340393665999727,"load_avg_1min":1.91,"mem_max_rss":2841174016,"runnable_threads":2,"uptime":26370.898369789124,"values":3,"warmups":1},"values":[2833801216]},{"metadata":{"cpu_freq":"0=3603 MHz; 1,5=3601 MHz; 2-4=3600 MHz; 6-7=3604 MHz","cpu_temp":"coretemp:Package id 0=52 C, coretemp:Core 0=52 C, coretemp:Core 1=48 C, coretemp:Core 2=48 C, coretemp:Core 3=46 C","date":"2018-09-28 02:16:16.312556","duration":4.352569678998407,"load_avg_1min":1.92,"mem_max_rss":2841468928,"runnable_threads":2,"uptime":26375.315175771713,"values":3,"warmups":1},"values":[2829406208]},{"metadata":{"cpu_freq":"0,2=3601 MHz; 1,3,5=3600 MHz; 4=3603 MHz; 6=3608 MHz; 7=3606 MHz","cpu_temp":"coretemp:Package id 0=53 C, coretemp:Core 0=47 C, coretemp:Core 1=53 C, coretemp:Core 2=46 C, coretemp:Core 3=46 C","date":"2018-09-28 02:16:20.731003","duration":4.353582952000579,"load_avg_1min":1.92,"mem_max_rss":2841104384,"runnable_threads":2,"uptime":26379.73353743553,"values":3,"warmups":1},"values":[2833842176]},{"metadata":{"cpu_freq":"0,4,6-7=3601 MHz; 1-2=3600 MHz; 3=3597 MHz; 5=3602 MHz","cpu_temp":"coretemp:Package id 0=52 C, coretemp:Core 0=48 C, coretemp:Core 1=46 C, coretemp:Core 2=52 C, coretemp:Core 3=49 C","date":"2018-09-28 02:16:25.168618","duration":4.370342489000905,"load_avg_1min":1.93,"mem_max_rss":2841198592,"runnable_threads":1,"uptime":26384.170882225037,"values":3,"warmups":1},"values":[2833842176]},{"metadata":{"cpu_freq":"0-1,5-6=3601 MHz; 2,4=3602 MHz; 3=3610 MHz; 7=3600 MHz","cpu_temp":"coretemp:Package id 0=48 C, coretemp:Core 0=47 C, coretemp:Core 1=46 C, coretemp:Core 2=48 C, coretemp:Core 3=48 C","date":"2018-09-28 02:16:29.641474","duration":4.4068616639997344,"load_avg_1min":1.94,"mem_max_rss":2841305088,"runnable_threads":2,"uptime":26388.644095897675,"values":3,"warmups":1},"values":[2834092032]},{"metadata":{"cpu_freq":"0,2-3=3600 MHz; 1,7=3601 MHz; 4=3604 MHz; 5=3602 MHz; 6=3613 MHz","cpu_temp":"coretemp:Package id 0=52 C, coretemp:Core 0=46 C, coretemp:Core 1=46 C, coretemp:Core 2=52 C, coretemp:Core 3=48 C","date":"2018-09-28 02:16:34.054447","duration":4.352457072996913,"load_avg_1min":1.94,"mem_max_rss":2841403392,"runnable_threads":2,"uptime":26393.0572078228,"values":3,"warmups":1},"values":[2833874944]},{"metadata":{"cpu_freq":"0=3601 MHz; 1-2,5,7=3600 MHz; 3=3610 MHz; 4,6=3604 MHz","cpu_temp":"coretemp:Package id 0=49 C, coretemp:Core 0=47 C, coretemp:Core 1=50 C, coretemp:Core 2=47 C, coretemp:Core 3=47 C","date":"2018-09-28 02:16:38.496453","duration":4.378436110000621,"load_avg_1min":1.95,"mem_max_rss":2841210880,"runnable_threads":2,"uptime":26397.499076366425,"values":3,"warmups":1},"values":[2834124800]},{"metadata":{"cpu_freq":"0-1,5=3601 MHz; 2=3602 MHz; 3,6=3600 MHz; 4=3604 MHz; 7=3610 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=46 C, coretemp:Core 1=45 C, coretemp:Core 2=50 C, coretemp:Core 3=47 C","date":"2018-09-28 02:16:43.020362","duration":4.459924292001233,"load_avg_1min":1.87,"mem_max_rss":2840895488,"runnable_threads":2,"uptime":26402.0228869915,"values":3,"warmups":1},"values":[2833809408]},{"metadata":{"cpu_freq":"0,6=3604 MHz; 1,5=3601 MHz; 2-4=3600 MHz; 7=3613 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=50 C, coretemp:Core 1=47 C, coretemp:Core 2=45 C, coretemp:Core 3=47 C","date":"2018-09-28 02:16:47.450241","duration":4.367473415000859,"load_avg_1min":1.87,"mem_max_rss":2841133056,"runnable_threads":2,"uptime":26406.452907562256,"values":3,"warmups":1},"values":[2833829888]},{"metadata":{"cpu_freq":"0,2=3600 MHz; 1,5,7=3601 MHz; 3-4=3597 MHz; 6=3604 MHz","cpu_temp":"coretemp:Package id 0=52 C, coretemp:Core 0=52 C, coretemp:Core 1=46 C, coretemp:Core 2=46 C, coretemp:Core 3=46 C","date":"2018-09-28 02:16:51.905026","duration":4.3888645010010805,"load_avg_1min":1.8,"mem_max_rss":2841178112,"runnable_threads":1,"uptime":26410.90732908249,"values":3,"warmups":1},"values":[2834051072]},{"metadata":{"cpu_freq":"0=3597 MHz; 1,5=3601 MHz; 2=3602 MHz; 3-4=3600 MHz; 6=3603 MHz; 7=3612 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=50 C, coretemp:Core 1=47 C, coretemp:Core 2=46 C, coretemp:Core 3=47 C","date":"2018-09-28 02:16:56.363001","duration":4.39615484299793,"load_avg_1min":1.82,"mem_max_rss":2841018368,"runnable_threads":2,"uptime":26415.365535974503,"values":3,"warmups":1},"values":[2833870848]},{"metadata":{"cpu_freq":"0-1,5,7=3601 MHz; 2=3606 MHz; 3=3598 MHz; 4=3603 MHz; 6=3600 MHz","cpu_temp":"coretemp:Package id 0=50 C, coretemp:Core 0=47 C, coretemp:Core 1=46 C, coretemp:Core 2=50 C, coretemp:Core 3=48 C","date":"2018-09-28 02:17:00.921510","duration":4.488429123997776,"load_avg_1min":1.75,"mem_max_rss":2841395200,"runnable_threads":2,"uptime":26419.924122333527,"values":3,"warmups":1},"values":[2833858560]}]}],"metadata":{"aslr":"Full randomization","boot_time":"2018-09-27 18:56:41","cpu_config":"0=driver:intel_pstate, intel_pstate:no turbo, governor:performance; 1-7=driver:intel_pstate, intel_pstate:no turbo, governor:powersave; idle:intel_idle","cpu_count":8,"cpu_model_name":"Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz","hostname":"hameer-Z97X-Gaming-GT","loops":65536,"name":"180","perf_version":"1.5.1","platform":"Linux-4.15.0-34-generic-x86_64-with-debian-buster-sid","python_cflags":"-Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes","python_executable":"/home/hameer/anaconda3/envs/uarray-docs/bin/python3","python_implementation":"cpython","python_version":"3.7.0 (64-bit)","timeit_setup":"'import numpy as np; n = 180; shape = (2 * n, 3 * n, 5 * n) ; A = np.arange(np.prod(shape)).reshape(shape); B = 2 + A'","timeit_stmt":"'np.inner(A[1,0,:], B[0,1,:]) * A[1,0,2]'","timer":"clock_gettime(CLOCK_MONOTONIC), resolution: 1.00 ns","unit":"byte"},"version":"1.0"}
|
{"third": [{"item": 3035.0, "value": 0.43}, {"item": 3072.0, "value": 0.375}, {"item": 3046.0, "value": 0.0775}, {"item": 3087.0, "value": 0.0425}, {"item": 3153.0, "value": 0.0375}], "region": "BR", "boots": [{"item": 3006.0, "value": 1.0}], "patch": "5.11", "second": [{"item": 3087.0, "value": 0.5175}, {"item": 3046.0, "value": 0.365}, {"item": 3072.0, "value": 0.0625}, {"item": 3035.0, "value": 0.025}, {"item": 3031.0, "value": 0.02}], "champ": 222.0, "tier": "GOLD", "first": [{"item": 3031.0, "value": 0.975}, {"item": 3072.0, "value": 0.0125}, {"item": 3087.0, "value": 0.01}, {"item": 3142.0, "value": 0.0025}]} |
["6f211adcc01bd3aaa1747b56714e3d2e27caf221"] |
{"brief":"separate","long":"Meaning: \"separate\", i.e. \"consecrated\" (as prince, a Nazirite); hence (figuratively from the latter) an \"unpruned vine\" (like an unshorn Nazirite). Usage: Nazarite (by a false alliteration with Nazareth), separate(-d), vine undressed. Source: or \"נָזִר\"; from \"H5144\"; "}
|
{
"first_traded_price": 1005.0,
"highest_price": 1005.0,
"isin": "IRO1TKSM0001",
"last_traded_price": 1002.0,
"lowest_price": 1002.0,
"trade_volume": 30528.0,
"unix_time": 1285545600
} |
{"parse":{"title":"User talk:Lty","pageid":70549,"wikitext":{"*":"{{Template:Welcome|realName=|name=Lty}}\n\n-- [[User:\u840c\u767e\u5a18|\u840c\u767e\u5a18]]\uff08[[User talk:\u840c\u767e\u5a18|\u8ba8\u8bba]]\uff09 2014\u5e741\u670826\u65e5 (\u65e5) 16:25 (CST)"}}} |
{"body": "1996 Floods The Floods of 1996 9 Photos", "url": "https://www.nps.gov/grfa/learn/photosmultimedia/1996-floods.htm", "title": "Great Falls Park: 1996 Floods"} |
{
"id": "VersionOne.Integration.ElectricCommander",
"titleSection": {
"name": "VersionOne Integration for ElectricCommander",
"shortDescription": "Link agile workitems to tangible, working software in the form of builds.",
"pricing": "Free",
"support": {
"text": "Open Source Community",
"href": "http://stackoverflow.com/questions"
}
},
"descriptionSection": {
"description": "As of Spring 2016 this integration was set to sunset status, the source is available below for extending this integration.**\n For support please submit a question to Stack Overflow using the tag versionone-electric-commander \n \n The VersionOne Integration for ElectricCommander creates a record of ElectricCommander builds in VersionOne, so the development teams can quickly view builds associated with a story or defects. This visibility is useful when identifying what build to use for verification or when generating release notes."
},
"linksSection": [
{
"type": "download",
"title": "Download Latest Stable Build",
"href": "http://platform.versionone.com.s3.amazonaws.com/downloads/ElectricCommanderPlugin.zip"
},
{
"type": "documentation",
"title": "Documentation",
"href": "http://versionone.github.io/VersionOne.Integration.ElectricCommander/"
}
],
"updatesSection": {
"updates": [
{
"date": "2016-04-22T12:00:00.000Z",
"description": "Spring 2016",
"version": "Sunset"
},
{
"downloadUrl": "http://platform.versionone.com.s3.amazonaws.com/downloads/ElectricCommanderPlugin.zip",
"qualityBand": "mature",
"releaseNotes": "Fixed log parsing for EC 4.0",
"version": "112",
"description": "Spring 2012",
"date": "2012-03-06T00:00:00.000Z"
},
{
"qualityBand": "mature",
"releaseNotes": "Initial Release",
"version": "101",
"description": "Summer 2011",
"date": "2011-07-01T00:00:00.000Z"
}
],
"qualityBands": {
"mature": {
"href": "https://github.com/versionone/VersionOne.Integration.ElectricCommander/blob/master/CONTRIBUTING.md#mature",
"shortDescription": "The product is stable. The code will continue to evolve with minimum breaking changes."
},
"sapling": {
"href": "https://github.com/versionone/VersionOne.Integration.ElectricCommander/blob/master/CONTRIBUTING.md#sapling",
"shortDescription": "The product is undergoing rapid growth. The code works but expect major changes."
},
"seed": {
"href": "https://github.com/versionone/VersionOne.Integration.ElectricCommander/blob/master/CONTRIBUTING.md#seed",
"shortDescription": "The initial idea of a product. May not be stable code."
}
}
},
"mediaSection": []
}
|
{"artist": "Jacques Offenbach", "timestamp": "2011-08-04 18:56:20.499983", "similars": [], "tags": [], "track_id": "TRJQITX128F4261CF9", "title": "Les Maris Courbaient La Tetela Perichole Act3"} |
{
"id": 2377151,
"type": "Feature",
"properties": {
"name":"Celina",
"placetype":"locality",
"woe:id":2377151,
"woe:name":"Celina, Ohio, United States",
"woe:place_id":"jGTwY.ibApvtrF12",
"woe:placetype":"locality",
"woe:placetype_id":7
},
"bbox": [-84.586807,40.518799,-84.542801,40.56546],
"geometry": {"alpha":0.00015,"bbox":[-84.586807250977,40.518798828125,-84.54280090332,40.565460205078],"coordinates":[[[[-84.563698,40.546562],[-84.564255,40.546089],[-84.567947,40.543808],[-84.572754,40.52972],[-84.573792,40.526787],[-84.573807,40.526756],[-84.576088,40.518799],[-84.577728,40.522018],[-84.576012,40.528416],[-84.575653,40.535442],[-84.586311,40.54472],[-84.586807,40.545444],[-84.585693,40.559944],[-84.585693,40.560032],[-84.565605,40.564762],[-84.556747,40.56546],[-84.542801,40.55204],[-84.551262,40.553535],[-84.563698,40.546562]]]],"created":1292517937,"edges":19,"is_donuthole":0,"link":{"href":"http://farm6.static.flickr.com/5281/shapefiles/2377151_20101216_86a3eb8fa0.tar.gz"},"points":118,"type":"MultiPolygon"}
} |
{"name":"סמל אשר ויצמן ז\"ל","date":"30/12/1980","age":"19"}
|
[
"http://2.bp.blogspot.com/-PW-R6N0LYfI/TmWKTwpySwI/AAAAAAAABhU/eVXHl05mGOI/s0/000.png",
"http://2.bp.blogspot.com/-5oCHX-enp3s/TmWKVyYrTlI/AAAAAAAABiA/bzJ7E9adFRE/s0/001.png",
"http://2.bp.blogspot.com/-QayNe1Ly-HQ/TmWKXezvL7I/AAAAAAAABio/7qxSqtqDJCc/s0/002.png",
"http://2.bp.blogspot.com/-5NPLuHNqeDM/TmWKYy4zSZI/AAAAAAAABjM/mLOR_adrMgk/s0/003.png",
"http://2.bp.blogspot.com/-LfNITllfEy0/TmWKaoSrT9I/AAAAAAAABjo/VEbM0A6LZVc/s0/004.png",
"http://2.bp.blogspot.com/-7uGDj8g5onY/TmWKcfqWJ0I/AAAAAAAABkw/_qntiFH9RSs/s0/005.png",
"http://2.bp.blogspot.com/-I-CntJ25Wmw/TmWKhrhJ2mI/AAAAAAAABlA/mBzSMBSXSg4/s0/006.png"
] |
{
"prefab": {
"classId": "Button",
"size": [ 960, 110 ],
"styleId": "Store_Basic_Button_Style",
"focusable": true,
"focusedStyleId": "Store_Focused_Button_Style",
"hoveredStyleId": "Store_Hovered_Button_Style",
"pressedStyleId": "Store_Pressed_Button_Style",
"disabledStyleId": "Store_Disabled_Button_Style",
"subElements": [
{
"id": "Store_Status",
"classId": "Image",
"position": [ 32, -20 ],
"positioningAnchor": [ "left", "middle" ],
"size": [ 70, 70 ],
"styleId": "Unmounted_DLC"
},
{
"id": "Store_Name",
"classId": "StaticText",
"position": [ 100, 0 ],
"positioningAnchor": [ "left", "middle" ],
"size": [ 300, 30 ],
"sizingAnchor": [ "left", "middle" ],
"styleId": "Basic_Store_Style"
},
{
"id": "Store_StoreID",
"classId": "StaticText",
"position": [ -100, 0 ],
"positioningAnchor": [ "right", "middle" ],
"size": [ 200, 30 ],
"sizingAnchor": [ "right", "middle" ],
"styleId": "Basic_Store_Style"
},
{
"id": "boxProgressPanel",
"classId": "Panel",
"size": [ 250, 50 ],
"position": [ -200, 10 ],
"positioningAnchor": [ "right", "middle" ],
"sizingAnchor": [ "center", "top" ],
"styleId": "Basic_Panel_Style",
"subElements": [
{
"id": "boxprogressback",
"classId": "ProgressBar",
"styleId": "ProgressBarBackStyle",
"progressPercentage": 1.0
},
{
"id": "boxprogress",
"classId": "ProgressBar",
"styleId": "ProgressBarStyle",
"progressPercentage": 0.0
}
]
}
]
}
} |
{"filename": "OMU_OB.OT331.jpg", "tags": ["Oslo Museum"], "description": "fjord, strand, rob\u00e5t, gutt, stakitt, hage, villa, uthus, brygge, badehus, skog", "permalink": "http://oslobilder.no/OMU/OB.OT331"} |
{"comment": "0", "idNoticia": "9999", "tags": [], "url": "http://www.valor.com.br/empresas/1045438/curtas ", "autor": "Null", "titulo": "Curtas", "corpo": "Tráfego da LAN A LAN, em processo de fusão com a TAM, divulgou aumento de 11,1% no tráfego total de passageiros em setembro, ante igual mês de 2010. A oferta de assentos teve alta de 10,4% na mesma base de comparação. Nos voos domésticos houve aumento de 25,3% na demanda e de 25,9% na capacidade. Emirates SkyCargo A Emirates SkyCargo reforçou sua atividade no país com a operação de um Boeing 777F. O avião cai carregar 14 toneladas a menos do que o avião anterior (747-400F), e vai gastar 18% menos combustível. A Emirates ampliou para três os voos semanais de carga no Brasil em setembro. Akzo Nobel investe A AkzoNobel, fabricante de tintas e revestimentos e de especialidades químicas, vai investir, nos próximos dois anos, US$ 20 milhões nas suas unidades instaladas no Brasil, na cidade de Itupeva (SP), e nos EUA, na cidade de Morris, Estado de Illinois. O investimento permitirá expandir sua capacidade de produção de derivados de aminas graxas, ingredientes usados, por exemplo, para produção de aditivos para exploração de petróleo, amaciantes de roupas, produtos agroquímicos e produtos de limpeza domésticos. Petrobras e BG A subgerente de superfície dos projetos do pré-sal da Petrobras, Anelise Quintão Lara, afirmou ontem que a relação com a britânica BG \"vai muito bem\". A informação de que a petroleira inglesa - que é a principal parceira da estatal nas áreas do pré-sal da bacia de Santos - vai vender parte de seus ativos no país vem sendo alvo de especulações. \"Eu duvido que a BG queira sair totalmente\", afirmou Anelise, ao participar de palestra na Câmara de Comércio França-Brasil (CCFB), no Rio de Janeiro. Embraer na China A Embraer anunciou a venda de 13 jatos executivos Legacy 650 para a empresa de leasing chinesa Minsheng Financial Leasing. Com base no preço de lista da aeronave, este contrato pode ser avaliado em US$ 393 milhões. O contrato foi anunciado durante a NBAA (Convenção e Encontro Anual da Associação Nacional de Aviação Executiva), nos Estados Unidos. A aeronave poderá ser produzida na fábrica da Embraer na China, mas a empresa ainda aguarda a autorização final do governo chinês para dar início à produção local.", "data": "2011-10-11 00:00:00"} |
{"solution":["#<Structs::Item:0x1e236278>","#<Structs::Item:0x44fff386>","#<Structs::Item:0x1fc713c9>","#<Structs::Item:0x7301eebe>","#<Structs::Item:0x76b47204>","#<Structs::Item:0x4d6ccc97>","#<Structs::Item:0x6a12c7a8>","#<Structs::Item:0x161aa04a>","#<Structs::Item:0x436bd4df>","#<Structs::Item:0x6848a051>","#<Structs::Item:0x149b0577>","#<Structs::Item:0x5740ff5e>","#<Structs::Item:0x4a901445>","#<Structs::Item:0x67f77f6e>","#<Structs::Item:0x2b0b7e5a>","#<Structs::Item:0x7be1ce6a>","#<Structs::Item:0x3119cf6f>","#<Structs::Item:0x6dc9da2d>","#<Structs::Item:0x1d408060>","#<Structs::Item:0x68a78f3c>"],"objective_func":1.0652142081566797e-08,"elapsed_time":0.0,"problem_name":"SE_10"}
|
{
"id": 56778,
"title": "24 Jikan Ochi nai Kiss",
"url": "https://mangadex.org/manga/56778",
"last_updated": "January 16, 2021 12:57:05 UTC",
"matches": [
{
"id": 49667,
"title": "Kore de Saigo no Koi ni Shitai",
"score": 0.716
},
{
"id": 1444,
"title": "NightS",
"score": 0.707
},
{
"id": 35907,
"title": "Restless",
"score": 0.706
},
{
"id": 34678,
"title": "Kitto Oujisama ga Nante",
"score": 0.698
},
{
"id": 10361,
"title": "Soredemo, Yasashii Koi o Suru",
"score": 0.697
},
{
"id": 53413,
"title": "Under My Skin",
"score": 0.691
},
{
"id": 52648,
"title": "Chasing Mr. CEO",
"score": 0.691
},
{
"id": 35144,
"title": "Sono Kao Mitara, Gaman wa Dekinai",
"score": 0.689
},
{
"id": 20181,
"title": "Stray Bullet Baby",
"score": 0.689
},
{
"id": 56674,
"title": "Joushi no Okiniiri",
"score": 0.687
},
{
"id": 46026,
"title": "Yandere Hitotsu Yane no Shita",
"score": 0.685
},
{
"id": 43486,
"title": "40 x 40 Chikuwa Kaigi",
"score": 0.684
},
{
"id": 50281,
"title": "Ouja ni Koishita Cinderella",
"score": 0.683
},
{
"id": 52653,
"title": "It's Not Like That",
"score": 0.683
},
{
"id": 46274,
"title": "2ban-me no Alpha",
"score": 0.681
},
{
"id": 48798,
"title": "Shigoto Suru Yori Kimi to Netai.",
"score": 0.681
},
{
"id": 55341,
"title": "Please Teach Me",
"score": 0.677
},
{
"id": 48630,
"title": "Inma-kun wa Oshigoto Dekinai",
"score": 0.677
},
{
"id": 46289,
"title": "My Suha",
"score": 0.675
},
{
"id": 48906,
"title": "Motto Amaete! Tachibana-san",
"score": 0.672
},
{
"id": 59039,
"title": "Sweet as hell.",
"score": 0.668
},
{
"id": 35960,
"title": "Omega wa Pink no Yume wo Miru",
"score": 0.668
},
{
"id": 45409,
"title": "Ore no Kouhai no Futokoro ga Fukasugite Kowai.",
"score": 0.666
},
{
"id": 55896,
"title": "Secret Under Lip",
"score": 0.666
},
{
"id": 24817,
"title": "Joker Trap",
"score": 0.665
}
]
} |
{
"codeIdentifier": "TestJavaSDK",
"name": "TestJavaSDK",
"seasons": [
{
"lastModified": 1522596052737,
"maxVersion": null,
"minVersion": "9",
"productId": "cdd52d55-df5d-4375-ac41-1086e4f1c7a3",
"uniqueId": "fe26411e-fd45-4fc3-aef0-63dc154bc009"
}
],
"uniqueId": "cdd52d55-df5d-4375-ac41-1086e4f1c7a3"
} |
{
"id": 974857007,
"type": "Feature",
"properties": {
"addr:full":"1325 Tolmie Ave Victoria BC V8X 2H7",
"addr:housenumber":"1325",
"addr:postcode":"v8x 2h7",
"addr:street":"Tolmie Ave",
"edtf:cessation":"uuuu",
"edtf:inception":"uuuu",
"geom:area":0.0,
"geom:area_square_m":0.0,
"geom:bbox":"-123.353767395,48.4496917725,-123.353767395,48.4496917725",
"geom:latitude":48.449692,
"geom:longitude":-123.353767,
"iso:country":"CA",
"mz:hierarchy_label":1,
"mz:is_current":-1,
"sg:address":"1325 Tolmie Ave",
"sg:city":"Victoria",
"sg:classifiers":[
{
"category":"Professional",
"subcategory":"Accounting & Tax Preparation",
"type":"Services"
}
],
"sg:owner":"simplegeo",
"sg:phone":"+1 250 385 1011",
"sg:postcode":"V8X 2H7",
"sg:province":"BC",
"sg:tags":[
"accountant"
],
"src:geom":"simplegeo",
"wof:belongsto":[
85875095,
102191575,
85633041,
101741111,
85682117
],
"wof:breaches":[],
"wof:concordances":{
"sg:id":"SG_65ngudGifesQo7MqGi1huk_48.449692_-123.353767@1293573121"
},
"wof:country":"CA",
"wof:created":1472266510,
"wof:geomhash":"1af1591e9ba76b41ea68c6ab31a40663",
"wof:hierarchy":[
{
"continent_id":102191575,
"country_id":85633041,
"locality_id":101741111,
"neighbourhood_id":85875095,
"region_id":85682117,
"venue_id":974857007
}
],
"wof:id":974857007,
"wof:lastmodified":1499438120,
"wof:name":"Ellis, Murray J",
"wof:parent_id":85875095,
"wof:placetype":"venue",
"wof:repo":"whosonfirst-data-venue-ca",
"wof:superseded_by":[],
"wof:supersedes":[],
"wof:tags":[
"accountant"
]
},
"bbox": [
-123.353767395,
48.4496917725,
-123.353767395,
48.4496917725
],
"geometry": {"coordinates":[-123.35376739500001,48.4496917725],"type":"Point"}
} |
{"nodes":[{"id":770098,"label":"Dave Douglas","size":5,"color":{"r":192,"g":0,"b":64}},{"id":239329,"label":"John Zorn","size":1,"color":{"r":192,"g":0,"b":64}},{"id":147766,"label":"James Genus","size":1,"color":{"r":192,"g":0,"b":64}},{"id":114459,"label":"Chris Potter","size":1,"color":{"r":192,"g":0,"b":64}},{"id":826988,"label":"Mark Feldman","size":1,"color":{"r":192,"g":0,"b":64}},{"id":310170,"label":"Martial Solal","size":1,"color":{"r":192,"g":0,"b":64}},{"id":197376,"label":"Gene Lake","size":1,"color":{"r":192,"g":0,"b":64}},{"id":120323,"label":"Duke Ellington","size":1,"color":{"r":192,"g":0,"b":64}},{"id":645009,"label":"Gunther Schuller","size":1,"color":{"r":192,"g":0,"b":64}},{"id":753004,"label":"Steve Lacy","size":1,"color":{"r":192,"g":0,"b":64}},{"id":828098,"label":"Louis Sclavis","size":1,"color":{"r":192,"g":0,"b":64}},{"id":74397,"label":"Bill Frisell","size":1,"color":{"r":192,"g":0,"b":64}}],"edges":[{"target":"770098","label":"Sanctuary","source":239329},{"target":"770098","label":"Moving Portrait","source":147766},{"target":"770098","label":"The Infinite","source":114459},{"target":"770098","label":"The Infinite","source":147766},{"target":"770098","label":"Convergence","source":826988},{"target":"770098","label":"Rue de Seine","source":310170},{"target":"770098","label":"Keystone","source":197376},{"target":"770098","label":"Witness","source":826988},{"target":"770098","label":"Parallel Worlds","source":120323},{"target":"770098","label":"Parallel Worlds","source":645009},{"target":"770098","label":"Parallel Worlds","source":826988},{"target":"770098","label":"Bow River Falls","source":753004},{"target":"770098","label":"Bow River Falls","source":828098},{"target":"770098","label":"Strange Liberation","source":74397},{"target":"770098","label":"Strange Liberation","source":114459},{"target":"770098","label":"Live at the Jazz Standard (2 CDS)","source":147766},{"target":"770098","label":"Moonshine","source":197376},{"target":"770098","label":"El Trilogy","source":826988},{"target":"770098","label":"Spark of Being","source":197376}]} |
{"id":892986,"global_id":"Z2lkOi8vaGFja2Vyb25lL1JlcG9ydC84OTI5ODY=","url":"https://hackerone.com/reports/892986","title":"Blindy Replace User's Session with Attacker's Session","state":"Closed","substate":"resolved","severity_rating":"low","readable_substate":"Resolved","created_at":"2020-06-07T04:13:46.979Z","submitted_at":"2020-06-07T04:13:46.979Z","is_member_of_team?":false,"reporter":{"disabled":false,"username":"sayaanalam","url":"/sayaanalam","profile_picture_urls":{"small":"https://profile-photos.hackerone-user-content.com/variants/q5uUpL9CjyhibsAGMJGxYw55/43e4513b9104ea0d68c9c096cea374ba8440dde3e027af5465c8771e8839a67c"},"is_me?":false,"cleared":false,"hackerone_triager":false,"hacker_mediation":false},"team":{"id":65,"url":"https://hackerone.com/mailru","handle":"mailru","profile_picture_urls":{"small":"https://profile-photos.hackerone-user-content.com/variants/000/000/065/1ec04a6b87b02422d913b5c53d5247de91d64718_original.png/43e4513b9104ea0d68c9c096cea374ba8440dde3e027af5465c8771e8839a67c","medium":"https://profile-photos.hackerone-user-content.com/variants/000/000/065/1ec04a6b87b02422d913b5c53d5247de91d64718_original.png/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"permissions":[],"submission_state":"open","default_currency":"usd","awards_miles":false,"offers_bounties":true,"state":"public_mode","only_cleared_hackers":false,"pentest_feature_enabled?":false,"profile":{"name":"Mail.ru","twitter_handle":"mailru","website":"https://corp.mail.ru","about":"Building the Internet since 1998"}},"has_bounty?":true,"in_validation?":false,"rejected_anc_report_that_can_be_sent_back_to_anc_triagers?":false,"can_view_team":true,"can_view_report":true,"is_external_bug":false,"is_published":false,"is_participant":false,"has_collaborators":false,"stage":4,"public":true,"visibility":"no-content","cve_ids":[],"singular_disclosure_disabled":false,"disclosed_at":"2020-07-28T08:37:34.396Z","bug_reporter_agreed_on_going_public_at":"2020-07-02T15:39:08.720Z","team_member_agreed_on_going_public_at":"2020-07-28T08:37:34.311Z","comments_closed?":false,"facebook_team?":false,"team_private?":false,"vulnerability_information":"","bounty_amount":"150.0","formatted_bounty":"$150","weakness":{"id":45,"name":"Cross-Site Request Forgery (CSRF)"},"original_report_id":null,"original_report_url":null,"attachments":[],"allow_singular_disclosure_at":"2020-08-01T15:39:08.788Z","allow_singular_disclosure_after":-37670396.97402897,"singular_disclosure_allowed":true,"vote_count":27,"voters":["ali","cuso4","realtess","ms-13","swaysthinking","sa1tama0","sayaanalam","amannnnnnnnnnnnnnn","navjotbug","theotherone0916","and 17 more..."],"severity":{"rating":"low","score":3.8,"author_type":"Team","metrics":{"attack_vector":"network","attack_complexity":"high","privileges_required":"none","user_interaction":"required","scope":"unchanged","confidentiality":"none","integrity":"low","availability":"none"}},"structured_scope":{"databaseId":40420,"asset_type":"OTHER","asset_identifier":"Lootdog","max_severity":"critical"},"abilities":{"assignable_team_members":[],"assignable_team_member_groups":[]},"activities":[{"id":8228414,"is_internal":false,"editable":false,"type":"Activities::BugTriaged","message":"","automated_response":false,"created_at":"2020-06-08T08:34:41.942Z","updated_at":"2020-06-08T08:34:41.942Z","actor":{"username":"3apa3a","cleared":false,"url":"/3apa3a","profile_picture_urls":{"medium":"https://profile-photos.hackerone-user-content.com/variants/000/004/836/57b93fd96b524d0ed13eef717ecd070ad8468f86_original.jpg/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"hackerone_triager":false,"hackerone_employee":false},"genius_execution_id":null,"team_handle":"mailru","actor_is_team_member":true,"actor_is_concealed_member":false},{"id":8228539,"is_internal":false,"editable":false,"type":"Activities::Comment","message":"","automated_response":false,"created_at":"2020-06-08T08:43:10.035Z","updated_at":"2020-06-08T08:43:10.035Z","actor":{"username":"sayaanalam","cleared":false,"url":"/sayaanalam","profile_picture_urls":{"medium":"https://profile-photos.hackerone-user-content.com/variants/q5uUpL9CjyhibsAGMJGxYw55/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"hackerone_triager":false,"hackerone_employee":null},"genius_execution_id":null,"team_handle":"mailru","actor_is_team_member":false,"actor_is_concealed_member":false},{"id":8264971,"is_internal":false,"editable":false,"type":"Activities::BountyAwarded","message":"","automated_response":false,"created_at":"2020-06-11T15:22:46.959Z","updated_at":"2020-06-11T15:22:46.959Z","actor":{"url":"/mailru","ibb":false,"profile_picture_urls":{"medium":"https://profile-photos.hackerone-user-content.com/variants/000/000/065/1ec04a6b87b02422d913b5c53d5247de91d64718_original.png/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"profile":{"name":"Mail.ru"}},"bounty_amount":"150.0","bounty_currency":"usd","bonus_amount":"0.0","genius_execution_id":null,"team_handle":"mailru","collaborator":{"username":"sayaanalam","url":"/sayaanalam"},"actor_is_team_member":true,"actor_is_concealed_member":false},{"id":8264998,"is_internal":false,"editable":false,"type":"Activities::Comment","message":"","automated_response":false,"created_at":"2020-06-11T15:25:48.162Z","updated_at":"2020-06-11T15:26:26.126Z","actor":{"username":"sayaanalam","cleared":false,"url":"/sayaanalam","profile_picture_urls":{"medium":"https://profile-photos.hackerone-user-content.com/variants/q5uUpL9CjyhibsAGMJGxYw55/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"hackerone_triager":false,"hackerone_employee":null},"genius_execution_id":null,"team_handle":"mailru","actor_is_team_member":false,"actor_is_concealed_member":false},{"id":8269362,"is_internal":false,"editable":false,"type":"Activities::Comment","message":"","automated_response":false,"created_at":"2020-06-12T05:59:44.685Z","updated_at":"2020-06-12T05:59:44.685Z","actor":{"username":"sayaanalam","cleared":false,"url":"/sayaanalam","profile_picture_urls":{"medium":"https://profile-photos.hackerone-user-content.com/variants/q5uUpL9CjyhibsAGMJGxYw55/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"hackerone_triager":false,"hackerone_employee":null},"genius_execution_id":null,"team_handle":"mailru","actor_is_team_member":false,"actor_is_concealed_member":false},{"id":8288427,"is_internal":false,"editable":false,"type":"Activities::Comment","message":"","automated_response":false,"created_at":"2020-06-14T20:39:52.198Z","updated_at":"2020-06-14T20:39:52.198Z","actor":{"username":"kpebetka","cleared":false,"url":"/kpebetka","profile_picture_urls":{"medium":"https://profile-photos.hackerone-user-content.com/variants/000/003/152/f71d69995e3032fd2225ed83dd75c81e8158a865_original.jpg/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"hackerone_triager":false,"hackerone_employee":false},"genius_execution_id":null,"team_handle":"mailru","actor_is_team_member":true,"actor_is_concealed_member":false},{"id":8476707,"is_internal":false,"editable":false,"type":"Activities::BugResolved","message":"","automated_response":false,"created_at":"2020-07-02T08:19:45.422Z","updated_at":"2020-07-02T08:19:45.422Z","actor":{"username":"majes7ic","cleared":false,"url":"/majes7ic","profile_picture_urls":{"medium":"/assets/avatars/default-71a302d706457f3d3a31eb30fa3e73e6cf0b1d677b8fa218eaeaffd67ae97918.png"},"hackerone_triager":false,"hackerone_employee":null},"reporter":{"username":"sayaanalam","url":"/sayaanalam"},"genius_execution_id":null,"team_handle":"mailru","actor_is_team_member":true,"actor_is_concealed_member":false},{"id":8481428,"is_internal":false,"editable":false,"type":"Activities::AgreedOnGoingPublic","message":"","automated_response":false,"created_at":"2020-07-02T15:39:08.743Z","updated_at":"2020-07-02T15:39:08.743Z","first_to_agree":true,"actor":{"username":"sayaanalam","cleared":false,"url":"/sayaanalam","profile_picture_urls":{"medium":"https://profile-photos.hackerone-user-content.com/variants/q5uUpL9CjyhibsAGMJGxYw55/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"hackerone_triager":false,"hackerone_employee":null},"genius_execution_id":null,"team_handle":"mailru","actor_is_team_member":false,"actor_is_concealed_member":false},{"id":8775653,"is_internal":false,"editable":false,"type":"Activities::ReportSeverityUpdated","message":"","automated_response":false,"created_at":"2020-07-28T08:37:21.632Z","updated_at":"2020-07-28T08:37:21.632Z","additional_data":{},"actor":{"username":"3apa3a","cleared":false,"url":"/3apa3a","profile_picture_urls":{"medium":"https://profile-photos.hackerone-user-content.com/variants/000/004/836/57b93fd96b524d0ed13eef717ecd070ad8468f86_original.jpg/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"hackerone_triager":false,"hackerone_employee":false},"genius_execution_id":null,"team_handle":"mailru","actor_is_team_member":true,"actor_is_concealed_member":false},{"id":8775654,"is_internal":false,"editable":false,"type":"Activities::AgreedOnGoingPublic","message":"","automated_response":false,"created_at":"2020-07-28T08:37:34.333Z","updated_at":"2020-07-28T08:37:34.333Z","actor":{"username":"3apa3a","cleared":false,"url":"/3apa3a","profile_picture_urls":{"medium":"https://profile-photos.hackerone-user-content.com/variants/000/004/836/57b93fd96b524d0ed13eef717ecd070ad8468f86_original.jpg/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"hackerone_triager":false,"hackerone_employee":false},"genius_execution_id":null,"team_handle":"mailru","actor_is_team_member":true,"actor_is_concealed_member":false},{"id":8775655,"is_internal":false,"editable":false,"type":"Activities::ReportBecamePublic","message":"","automated_response":false,"created_at":"2020-07-28T08:37:34.428Z","updated_at":"2020-07-28T08:37:34.428Z","actor":{"username":"3apa3a","cleared":false,"url":"/3apa3a","profile_picture_urls":{"medium":"https://profile-photos.hackerone-user-content.com/variants/000/004/836/57b93fd96b524d0ed13eef717ecd070ad8468f86_original.jpg/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c"},"hackerone_triager":false,"hackerone_employee":false},"genius_execution_id":null,"team_handle":"mailru","actor_is_team_member":true,"actor_is_concealed_member":false}],"activity_page_count":1,"activity_page_number":1,"summaries":[{"id":23817,"category":"team","content":"Login CSRF via OAuth code in lootdog.io","can_view?":true,"can_create?":false,"attachments":[],"user":{"id":4836,"username":"3apa3a","name":"Vladimir Dubrovin","bio":"En la agostada senda he visto al buen lagarto (gota de cocodrilo) meditando. ","cleared":false,"website":"https://3proxy.org/","location":"Nizhny Novgorod, Russia","created_at":"2014-04-10T22:08:47.745Z","url":"https://hackerone.com/3apa3a","anc_triager":false,"hackerone_triager":false,"hackerone_employee":false,"user_type":"company","profile_picture_urls":{"small":"https://profile-photos.hackerone-user-content.com/variants/000/004/836/57b93fd96b524d0ed13eef717ecd070ad8468f86_original.jpg/43e4513b9104ea0d68c9c096cea374ba8440dde3e027af5465c8771e8839a67c","medium":"https://profile-photos.hackerone-user-content.com/variants/000/004/836/57b93fd96b524d0ed13eef717ecd070ad8468f86_original.jpg/fd4ecbe1e3e98c343c7717114485ace2f830f9253103d3cfa7502059868c516c","xtralarge":"https://profile-photos.hackerone-user-content.com/variants/000/004/836/57b93fd96b524d0ed13eef717ecd070ad8468f86_original.jpg/c11036e2d3f8b05af4b5da5984ccdec6f786b763c8abceb4e68042e10dcdae85"}}},{"category":"researcher","can_view?":true,"can_create?":false}]} |
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
//"ConnectionStrings": {
// "OracleDBConnection": "Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=yourhostName)(PORT=1521)))(CONNECT_DATA=(SID=SEC)));User ID=yourUserId;Password=YourPassword"
//},
"ConnectionStrings": {
//"OracleDBConnection": "User Id=TEST_USER;Password=TEST1234; Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.137.128)(PORT=1521)))(CONNECT_DATA=(SID=orcl)));",
"OracleDBConnection": "data source=DMP_WINNERS;password=TEST1234;user id=TEST_USER;Incr Pool Size=5;Decr Pool Size=2;"
},
"AllowedHosts": "*"
}
|
{
"id": 709378,
"type": "Feature",
"properties": {
"name":"Zwingenberg",
"placetype":"locality",
"woe:id":709378,
"woe:name":"Zwingenberg, Baden-Wurttemberg, Germany",
"woe:place_id":"oiO25AaeAZXCA3M",
"woe:placetype":"locality",
"woe:placetype_id":7
},
"bbox": [9.033997,49.408905,9.048957,49.423534],
"geometry": {"alpha":0.00015,"bbox":[9.0339965820312,49.408905029297,9.0489568710327,49.423534393311],"coordinates":[[[[9.036994,49.423531],[9.048957,49.420242],[9.044301,49.412964],[9.037284,49.408905],[9.033997,49.421669],[9.035191,49.422665],[9.036335,49.423355],[9.036989,49.423534],[9.036994,49.423531]]]],"created":1292543306,"edges":9,"is_donuthole":0,"link":{"href":"http://farm6.static.flickr.com/5210/shapefiles/709378_20101216_6d81c337f7.tar.gz"},"points":30,"type":"MultiPolygon"}
} |
{
"first_traded_price": 12693.0,
"highest_price": 12693.0,
"isin": "IRO1INFO0001",
"last_traded_price": 12693.0,
"lowest_price": 12693.0,
"trade_volume": 30352.0,
"unix_time": 1342310400
} |
{ "CIDADE": "Grão Mogol", "IBGE": "3127800", "ESTADO": "Minas Gerais", "ID": "31" } |
{"id":"node_modules/mongodb/lib/operations/insert_one.js","dependencies":[{"name":"/Users/neilmills/fb-trading-point/package.json","includedInParent":true,"mtime":1586261658280},{"name":"/Users/neilmills/fb-trading-point/node_modules/mongodb/package.json","includedInParent":true,"mtime":1586168510697},{"name":"../core","loc":{"line":3,"column":27},"parent":"/Users/neilmills/fb-trading-point/node_modules/mongodb/lib/operations/insert_one.js","resolved":"/Users/neilmills/fb-trading-point/node_modules/mongodb/lib/core/index.js"},{"name":"./operation","loc":{"line":4,"column":30},"parent":"/Users/neilmills/fb-trading-point/node_modules/mongodb/lib/operations/insert_one.js","resolved":"/Users/neilmills/fb-trading-point/node_modules/mongodb/lib/operations/operation.js"},{"name":"./common_functions","loc":{"line":5,"column":32},"parent":"/Users/neilmills/fb-trading-point/node_modules/mongodb/lib/operations/insert_one.js","resolved":"/Users/neilmills/fb-trading-point/node_modules/mongodb/lib/operations/common_functions.js"}],"generated":{"js":"'use strict';\n\nconst MongoError = require('../core').MongoError;\n\nconst OperationBase = require('./operation').OperationBase;\n\nconst insertDocuments = require('./common_functions').insertDocuments;\n\nclass InsertOneOperation extends OperationBase {\n constructor(collection, doc, options) {\n super(options);\n this.collection = collection;\n this.doc = doc;\n }\n\n execute(callback) {\n const coll = this.collection;\n const doc = this.doc;\n const options = this.options;\n\n if (Array.isArray(doc)) {\n return callback(MongoError.create({\n message: 'doc parameter must be an object',\n driver: true\n }));\n }\n\n insertDocuments(coll, [doc], options, (err, r) => {\n if (callback == null) return;\n if (err && callback) return callback(err); // Workaround for pre 2.6 servers\n\n if (r == null) return callback(null, {\n result: {\n ok: 1\n }\n }); // Add values to top level to ensure crud spec compatibility\n\n r.insertedCount = r.result.n;\n r.insertedId = doc._id;\n if (callback) callback(null, r);\n });\n }\n\n}\n\nmodule.exports = InsertOneOperation;"},"sourceMaps":{"js":{"mappings":[{"generated":{"line":1,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":1,"column":0}},{"generated":{"line":3,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":3,"column":0}},{"name":"MongoError","generated":{"line":3,"column":6},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":3,"column":6}},{"generated":{"line":3,"column":16},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":3,"column":16}},{"name":"require","generated":{"line":3,"column":19},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":3,"column":19}},{"generated":{"line":3,"column":26},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":3,"column":26}},{"generated":{"line":3,"column":27},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":3,"column":27}},{"generated":{"line":3,"column":36},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":3,"column":26}},{"generated":{"line":3,"column":37},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":3,"column":19}},{"name":"MongoError","generated":{"line":3,"column":38},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":3,"column":38}},{"generated":{"line":3,"column":48},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":3,"column":0}},{"generated":{"line":5,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":4,"column":0}},{"name":"OperationBase","generated":{"line":5,"column":6},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":4,"column":6}},{"generated":{"line":5,"column":19},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":4,"column":19}},{"name":"require","generated":{"line":5,"column":22},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":4,"column":22}},{"generated":{"line":5,"column":29},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":4,"column":29}},{"generated":{"line":5,"column":30},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":4,"column":30}},{"generated":{"line":5,"column":43},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":4,"column":29}},{"generated":{"line":5,"column":44},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":4,"column":22}},{"name":"OperationBase","generated":{"line":5,"column":45},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":4,"column":45}},{"generated":{"line":5,"column":58},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":4,"column":0}},{"generated":{"line":7,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":5,"column":0}},{"name":"insertDocuments","generated":{"line":7,"column":6},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":5,"column":6}},{"generated":{"line":7,"column":21},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":5,"column":21}},{"name":"require","generated":{"line":7,"column":24},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":5,"column":24}},{"generated":{"line":7,"column":31},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":5,"column":31}},{"generated":{"line":7,"column":32},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":5,"column":32}},{"generated":{"line":7,"column":52},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":5,"column":31}},{"generated":{"line":7,"column":53},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":5,"column":24}},{"name":"insertDocuments","generated":{"line":7,"column":54},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":5,"column":54}},{"generated":{"line":7,"column":69},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":5,"column":0}},{"generated":{"line":9,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":7,"column":0}},{"name":"InsertOneOperation","generated":{"line":9,"column":6},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":7,"column":6}},{"generated":{"line":9,"column":24},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":7,"column":0}},{"name":"OperationBase","generated":{"line":9,"column":33},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":7,"column":33}},{"generated":{"line":9,"column":46},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":7,"column":0}},{"generated":{"line":9,"column":47},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":7,"column":47}},{"name":"constructor","generated":{"line":10,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":8,"column":2}},{"name":"constructor","generated":{"line":10,"column":2},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":8,"column":2}},{"generated":{"line":10,"column":13},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":8,"column":13}},{"name":"collection","generated":{"line":10,"column":14},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":8,"column":14}},{"generated":{"line":10,"column":24},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":8,"column":13}},{"name":"doc","generated":{"line":10,"column":26},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":8,"column":26}},{"generated":{"line":10,"column":29},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":8,"column":13}},{"name":"options","generated":{"line":10,"column":31},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":8,"column":31}},{"generated":{"line":10,"column":38},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":8,"column":13}},{"generated":{"line":10,"column":40},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":8,"column":40}},{"generated":{"line":11,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":9,"column":4}},{"name":"options","generated":{"line":11,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":9,"column":10}},{"generated":{"line":11,"column":17},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":9,"column":4}},{"generated":{"line":12,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":11,"column":4}},{"name":"collection","generated":{"line":12,"column":9},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":11,"column":9}},{"generated":{"line":12,"column":19},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":11,"column":4}},{"name":"collection","generated":{"line":12,"column":22},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":11,"column":22}},{"generated":{"line":12,"column":32},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":11,"column":4}},{"generated":{"line":13,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":12,"column":4}},{"name":"doc","generated":{"line":13,"column":9},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":12,"column":9}},{"generated":{"line":13,"column":12},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":12,"column":4}},{"name":"doc","generated":{"line":13,"column":15},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":12,"column":15}},{"generated":{"line":13,"column":18},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":12,"column":4}},{"generated":{"line":14,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":13,"column":3}},{"name":"execute","generated":{"line":16,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":15,"column":2}},{"name":"execute","generated":{"line":16,"column":2},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":15,"column":2}},{"generated":{"line":16,"column":9},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":15,"column":9}},{"name":"callback","generated":{"line":16,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":15,"column":10}},{"generated":{"line":16,"column":18},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":15,"column":9}},{"generated":{"line":16,"column":20},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":15,"column":20}},{"generated":{"line":17,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":16,"column":4}},{"name":"coll","generated":{"line":17,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":16,"column":10}},{"generated":{"line":17,"column":14},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":16,"column":14}},{"generated":{"line":17,"column":17},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":16,"column":17}},{"name":"collection","generated":{"line":17,"column":22},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":16,"column":22}},{"generated":{"line":17,"column":32},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":16,"column":4}},{"generated":{"line":18,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":17,"column":4}},{"name":"doc","generated":{"line":18,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":17,"column":10}},{"generated":{"line":18,"column":13},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":17,"column":13}},{"generated":{"line":18,"column":16},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":17,"column":16}},{"name":"doc","generated":{"line":18,"column":21},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":17,"column":21}},{"generated":{"line":18,"column":24},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":17,"column":4}},{"generated":{"line":19,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":18,"column":4}},{"name":"options","generated":{"line":19,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":18,"column":10}},{"generated":{"line":19,"column":17},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":18,"column":17}},{"generated":{"line":19,"column":20},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":18,"column":20}},{"name":"options","generated":{"line":19,"column":25},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":18,"column":25}},{"generated":{"line":19,"column":32},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":18,"column":4}},{"generated":{"line":21,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":20,"column":4}},{"name":"Array","generated":{"line":21,"column":8},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":20,"column":8}},{"generated":{"line":21,"column":13},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":20,"column":13}},{"name":"isArray","generated":{"line":21,"column":14},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":20,"column":14}},{"generated":{"line":21,"column":21},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":20,"column":8}},{"name":"doc","generated":{"line":21,"column":22},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":20,"column":22}},{"generated":{"line":21,"column":25},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":20,"column":8}},{"generated":{"line":21,"column":26},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":20,"column":4}},{"generated":{"line":21,"column":28},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":20,"column":28}},{"generated":{"line":22,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":21,"column":6}},{"name":"callback","generated":{"line":22,"column":13},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":21,"column":13}},{"generated":{"line":22,"column":21},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":21,"column":21}},{"name":"MongoError","generated":{"line":22,"column":22},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":8}},{"generated":{"line":22,"column":32},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":18}},{"name":"create","generated":{"line":22,"column":33},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":19}},{"generated":{"line":22,"column":39},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":8}},{"generated":{"line":22,"column":40},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":26}},{"name":"message","generated":{"line":23,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":28}},{"name":"message","generated":{"line":23,"column":8},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":28}},{"generated":{"line":23,"column":15},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":35}},{"generated":{"line":23,"column":17},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":37}},{"generated":{"line":23,"column":50},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":26}},{"name":"driver","generated":{"line":24,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":72}},{"name":"driver","generated":{"line":24,"column":8},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":72}},{"generated":{"line":24,"column":14},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":78}},{"generated":{"line":24,"column":16},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":80}},{"generated":{"line":25,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":26}},{"generated":{"line":25,"column":7},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":22,"column":8}},{"generated":{"line":25,"column":8},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":21,"column":21}},{"generated":{"line":25,"column":9},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":21,"column":6}},{"generated":{"line":26,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":24,"column":5}},{"name":"insertDocuments","generated":{"line":28,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":4}},{"name":"insertDocuments","generated":{"line":28,"column":4},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":4}},{"generated":{"line":28,"column":19},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":19}},{"name":"coll","generated":{"line":28,"column":20},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":20}},{"generated":{"line":28,"column":24},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":19}},{"generated":{"line":28,"column":26},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":26}},{"name":"doc","generated":{"line":28,"column":27},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":27}},{"generated":{"line":28,"column":30},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":26}},{"generated":{"line":28,"column":31},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":19}},{"name":"options","generated":{"line":28,"column":33},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":33}},{"generated":{"line":28,"column":40},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":19}},{"generated":{"line":28,"column":42},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":42}},{"name":"err","generated":{"line":28,"column":43},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":43}},{"generated":{"line":28,"column":46},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":42}},{"name":"r","generated":{"line":28,"column":48},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":48}},{"generated":{"line":28,"column":49},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":42}},{"generated":{"line":28,"column":54},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":54}},{"generated":{"line":29,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":27,"column":6}},{"name":"callback","generated":{"line":29,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":27,"column":10}},{"generated":{"line":29,"column":18},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":27,"column":18}},{"generated":{"line":29,"column":22},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":27,"column":22}},{"generated":{"line":29,"column":26},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":27,"column":6}},{"generated":{"line":29,"column":28},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":27,"column":28}},{"generated":{"line":30,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":6}},{"name":"err","generated":{"line":30,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":10}},{"generated":{"line":30,"column":13},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":13}},{"name":"callback","generated":{"line":30,"column":17},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":17}},{"generated":{"line":30,"column":25},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":6}},{"generated":{"line":30,"column":27},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":27}},{"name":"callback","generated":{"line":30,"column":34},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":34}},{"generated":{"line":30,"column":42},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":42}},{"name":"err","generated":{"line":30,"column":43},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":43}},{"generated":{"line":30,"column":46},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":42}},{"generated":{"line":30,"column":47},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":28,"column":27}},{"generated":{"line":30,"column":48},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":54}},{"generated":{"line":30,"column":49},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":29,"column":6}},{"generated":{"line":32,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":6}},{"name":"r","generated":{"line":32,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":10}},{"generated":{"line":32,"column":11},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":11}},{"generated":{"line":32,"column":15},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":15}},{"generated":{"line":32,"column":19},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":6}},{"generated":{"line":32,"column":21},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":21}},{"name":"callback","generated":{"line":32,"column":28},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":28}},{"generated":{"line":32,"column":36},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":36}},{"generated":{"line":32,"column":37},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":37}},{"generated":{"line":32,"column":41},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":36}},{"generated":{"line":32,"column":43},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":43}},{"name":"result","generated":{"line":33,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":45}},{"name":"result","generated":{"line":33,"column":8},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":45}},{"generated":{"line":33,"column":14},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":51}},{"generated":{"line":33,"column":16},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":53}},{"name":"ok","generated":{"line":34,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":55}},{"name":"ok","generated":{"line":34,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":55}},{"generated":{"line":34,"column":12},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":57}},{"generated":{"line":34,"column":14},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":59}},{"generated":{"line":35,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":53}},{"generated":{"line":36,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":43}},{"generated":{"line":36,"column":7},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":36}},{"generated":{"line":36,"column":8},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":30,"column":21}},{"generated":{"line":36,"column":9},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":54}},{"generated":{"line":36,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":31,"column":6}},{"name":"r","generated":{"line":38,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":6}},{"name":"r","generated":{"line":38,"column":6},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":6}},{"generated":{"line":38,"column":7},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":7}},{"name":"insertedCount","generated":{"line":38,"column":8},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":8}},{"generated":{"line":38,"column":21},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":6}},{"name":"r","generated":{"line":38,"column":24},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":24}},{"generated":{"line":38,"column":25},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":25}},{"name":"result","generated":{"line":38,"column":26},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":26}},{"generated":{"line":38,"column":32},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":24}},{"name":"n","generated":{"line":38,"column":33},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":33}},{"generated":{"line":38,"column":34},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":32,"column":6}},{"name":"r","generated":{"line":39,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":33,"column":6}},{"name":"r","generated":{"line":39,"column":6},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":33,"column":6}},{"generated":{"line":39,"column":7},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":33,"column":7}},{"name":"insertedId","generated":{"line":39,"column":8},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":33,"column":8}},{"generated":{"line":39,"column":18},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":33,"column":6}},{"name":"doc","generated":{"line":39,"column":21},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":33,"column":21}},{"generated":{"line":39,"column":24},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":33,"column":24}},{"name":"_id","generated":{"line":39,"column":25},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":33,"column":25}},{"generated":{"line":39,"column":28},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":33,"column":6}},{"generated":{"line":40,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":34,"column":6}},{"name":"callback","generated":{"line":40,"column":10},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":34,"column":10}},{"generated":{"line":40,"column":18},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":34,"column":6}},{"name":"callback","generated":{"line":40,"column":20},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":34,"column":20}},{"generated":{"line":40,"column":28},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":34,"column":28}},{"generated":{"line":40,"column":29},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":34,"column":29}},{"generated":{"line":40,"column":33},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":34,"column":28}},{"name":"r","generated":{"line":40,"column":35},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":34,"column":35}},{"generated":{"line":40,"column":36},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":34,"column":28}},{"generated":{"line":40,"column":37},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":34,"column":20}},{"generated":{"line":41,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":35,"column":5}},{"generated":{"line":41,"column":5},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":19}},{"generated":{"line":41,"column":6},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":26,"column":4}},{"generated":{"line":42,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":36,"column":3}},{"generated":{"line":44,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":7,"column":47}},{"name":"module","generated":{"line":46,"column":0},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":39,"column":0}},{"generated":{"line":46,"column":6},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":39,"column":6}},{"name":"exports","generated":{"line":46,"column":7},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":39,"column":7}},{"generated":{"line":46,"column":14},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":39,"column":0}},{"name":"InsertOneOperation","generated":{"line":46,"column":17},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":39,"column":17}},{"generated":{"line":46,"column":35},"source":"node_modules/mongodb/lib/operations/insert_one.js","original":{"line":39,"column":0}}],"sources":{"node_modules/mongodb/lib/operations/insert_one.js":"'use strict';\n\nconst MongoError = require('../core').MongoError;\nconst OperationBase = require('./operation').OperationBase;\nconst insertDocuments = require('./common_functions').insertDocuments;\n\nclass InsertOneOperation extends OperationBase {\n constructor(collection, doc, options) {\n super(options);\n\n this.collection = collection;\n this.doc = doc;\n }\n\n execute(callback) {\n const coll = this.collection;\n const doc = this.doc;\n const options = this.options;\n\n if (Array.isArray(doc)) {\n return callback(\n MongoError.create({ message: 'doc parameter must be an object', driver: true })\n );\n }\n\n insertDocuments(coll, [doc], options, (err, r) => {\n if (callback == null) return;\n if (err && callback) return callback(err);\n // Workaround for pre 2.6 servers\n if (r == null) return callback(null, { result: { ok: 1 } });\n // Add values to top level to ensure crud spec compatibility\n r.insertedCount = r.result.n;\n r.insertedId = doc._id;\n if (callback) callback(null, r);\n });\n }\n}\n\nmodule.exports = InsertOneOperation;\n"},"lineCount":null}},"error":null,"hash":"6ebf7674fe44a731c4febeb028061577","cacheData":{"env":{}}} |
{"last_check":"2019-01-26T23:15:33Z","pypi_version":"19.0.1"} |
{
"purpose": "",
"args": [
{
"name": "",
"description": "",
"required": true,
"positional": true,
"option_names": []
}
],
"dependencies": [
{
"name": "",
"url": ""
}
],
"exit_codes": {
"0": "Exited normally"
},
"requires_root": false,
"examples": [
{
"purpose": "",
"args": ""
}
]
} |
{"ng-currency.js":"sha512-RPhFEc6QjBHW7b+aSWScz/LHj3XruG4vyBh3IA/tX4zHwIsZuBfWnYcYAGYWEIsUOQ5KXdgtru8fvttqVzmGgQ==","ng-currency.min.js":"sha512-yud42TvPtXYj5sCRKFl/SnqMimqyjXa/zAG0UYWJuKtTjb/NP/q5j+LjgxQP990UioTMY8s4Z/iSfINDgC1tnA=="} |
{"packages":{"wpackagist-theme\/the-night-watch":{"1.0":{"name":"wpackagist-theme\/the-night-watch","version":"1.0","version_normalized":"1.0.0.0","uid":351464,"dist":{"type":"zip","url":"https:\/\/downloads.wordpress.org\/theme\/the-night-watch.1.0.zip"},"source":{"type":"svn","url":"https:\/\/themes.svn.wordpress.org\/the-night-watch\/","reference":"1.0"},"homepage":"https:\/\/wordpress.org\/themes\/the-night-watch\/","require":{"composer\/installers":"~1.0"},"type":"wordpress-theme"},"1.0.1":{"name":"wpackagist-theme\/the-night-watch","version":"1.0.1","version_normalized":"1.0.1.0","uid":351465,"dist":{"type":"zip","url":"https:\/\/downloads.wordpress.org\/theme\/the-night-watch.1.0.1.zip"},"source":{"type":"svn","url":"https:\/\/themes.svn.wordpress.org\/the-night-watch\/","reference":"1.0.1"},"homepage":"https:\/\/wordpress.org\/themes\/the-night-watch\/","require":{"composer\/installers":"~1.0"},"type":"wordpress-theme"},"1.0.2":{"name":"wpackagist-theme\/the-night-watch","version":"1.0.2","version_normalized":"1.0.2.0","uid":351466,"dist":{"type":"zip","url":"https:\/\/downloads.wordpress.org\/theme\/the-night-watch.1.0.2.zip"},"source":{"type":"svn","url":"https:\/\/themes.svn.wordpress.org\/the-night-watch\/","reference":"1.0.2"},"homepage":"https:\/\/wordpress.org\/themes\/the-night-watch\/","require":{"composer\/installers":"~1.0"},"type":"wordpress-theme"}}}} |
["04875271fec67ce74910535336dc3389200cdce6"] |
{"firstName":"Evans","lastName":"Rath","email":"flatley.brooks@gmail.com","phone":"+17283706910","bio":"Quia sint explicabo et et ullam quia unde. Similique tenetur occaecati deserunt beatae exercitationem aut aut. Nesciunt sit facilis rerum laborum.","price":8,"is_verified":false,"company":"Osinski-Wolff","time":1525004126,"about":"Suscipit numquam provident qui numquam odio laborum est ullam id ipsa corrupti quas maiores possimus magnam est aut soluta mollitia esse porro et repudiandae minus ducimus ipsa explicabo sed voluptas et odit illum fugit non maxime et quia similique animi perspiciatis quod odio occaecati vel error deleniti soluta aut possimus neque nisi omnis sequi pariatur illo dicta molestiae earum blanditiis magni consequatur aliquid illum at nostrum est itaque at quis placeat error sunt et rerum consequatur placeat sed mollitia odio consequuntur qui sunt nihil et omnis unde est possimus optio id maxime dolor fuga vel est incidunt quibusdam occaecati et in minus vel error et eos et praesentium consequuntur et officiis expedita odio in dolore architecto harum alias sed accusantium voluptatum neque quasi dolore cumque dolores molestiae ut provident quo illum sapiente rerum ut corrupti omnis explicabo reiciendis facilis magnam quos et culpa eum et atque omnis optio qui magni mollitia ex omnis voluptas fuga consequuntur aut totam ad tenetur deleniti blanditiis consequatur exercitationem veritatis est quia in quis reprehenderit nobis veniam qui deleniti et nesciunt exercitationem suscipit libero nihil voluptatem veritatis ex sapiente aut et impedit et voluptatum recusandae praesentium possimus aperiam velit placeat nisi ad eos recusandae consequatur distinctio sed quasi autem eaque ut sunt nam vero voluptates sed ut aperiam ut et consequatur recusandae soluta occaecati ut accusantium distinctio quod id consequatur velit sint corrupti enim reprehenderit ea commodi vitae nihil reprehenderit et officiis nesciunt quisquam sequi nisi reprehenderit provident expedita quam ipsum laudantium facilis possimus natus facilis maiores quis aut facilis quia omnis et natus eveniet et totam sequi similique autem voluptatem autem culpa quo iusto aspernatur voluptatum repellat vitae ut veniam optio quo sed eius nemo inventore fuga aut natus aspernatur aut voluptas a quia ipsa quos et qui suscipit blanditiis eum ut et culpa eligendi expedita consequuntur et ipsum maxime voluptatem quo similique pariatur qui neque voluptates et explicabo et esse dolores in voluptas molestiae facere et sunt aspernatur numquam cum odio et quibusdam officiis similique nam occaecati repudiandae alias sunt voluptate nobis in numquam harum alias ea et aut quidem beatae cupiditate tempore vitae iure reprehenderit atque a nihil at ut a magni molestiae fuga ducimus nostrum occaecati suscipit aut aut sint consequatur eveniet commodi harum tempore odio voluptatem in quas deserunt vel consequatur quaerat esse neque quo quam facere ipsam quo incidunt commodi nam nihil error vitae temporibus quia amet consequatur iste magnam ipsam nostrum nihil reprehenderit cum tenetur totam sint et dolorem nam qui quia id quam exercitationem explicabo rerum sed iste modi voluptatum nihil aut hic occaecati voluptatum dolorum explicabo fugit aut eos qui enim dolores labore voluptatem voluptatum sunt eum cupiditate occaecati earum aut ut occaecati et at explicabo fugit architecto repellat eos qui dolorem beatae eum quis minima autem doloremque et fuga commodi ad sint occaecati et voluptas nam alias a itaque molestias consequatur adipisci esse necessitatibus eos vero dignissimos totam vel suscipit qui impedit velit sequi quam aut saepe tenetur corporis adipisci quia perspiciatis iusto vitae laudantium corporis numquam libero explicabo sint voluptas vel ut quae quae aut harum maiores expedita tempora nulla est quae esse delectus amet officiis quia voluptas et iusto quas odit et error repellendus exercitationem eius non consequatur dignissimos quasi consequatur repellat cupiditate temporibus eveniet ea omnis animi necessitatibus fugiat vitae reiciendis minus veritatis voluptates et tempore perferendis ipsa.","address":{"streetAddress":"26046 Gleason Lakes Apt. 022","city":"66074 Bernier Cape\nWest Jocelyn, MD 97702","postcode":"49844","state":"Indiana"},"article":{"id":9,"title":"Rerum blanditiis corrupti aut quis ipsam magnam.","text":"Iusto est beatae asperiores eum in ea ut in commodi animi et officiis molestiae dolorem amet quasi quis facere tempora eum amet quae exercitationem ut et modi id velit quo fugiat beatae et et quia qui nisi numquam maiores quos similique et magnam minus quibusdam deserunt voluptatibus quis dolorum recusandae eligendi enim dolorum beatae minus ullam modi voluptatem ratione ut ducimus sint molestiae voluptatibus sed dolores voluptatum vel ipsa itaque provident quasi voluptas ullam dolorem molestias accusamus quam quia doloremque culpa sequi ut quia officia dolore ea dolores dolorem necessitatibus odio eligendi modi quidem asperiores omnis eveniet soluta repellendus veritatis incidunt delectus dolor ea id animi impedit omnis dicta ipsa eligendi et qui velit molestiae eum quo sapiente voluptates velit nostrum voluptatem est molestias ut eos ratione voluptate et recusandae quod dolor quas corrupti fuga hic amet blanditiis dignissimos laudantium odio ullam et fugit dolorem earum quo occaecati eaque in in repellat et iusto ut repudiandae sed sed dolorem inventore voluptas doloribus neque est aut quia consequatur consectetur molestiae sit doloribus dolores quisquam aspernatur ullam vitae voluptates voluptatem magnam dolorem incidunt veritatis corrupti necessitatibus aut earum praesentium debitis excepturi autem eveniet voluptas nihil est blanditiis ut natus modi inventore voluptas commodi dicta molestiae ullam voluptas aliquid iure dolorem est unde dicta nihil et dicta est voluptatem est suscipit omnis expedita eaque eos enim eum ea nam quae soluta cumque inventore provident asperiores ad assumenda similique consequatur doloremque blanditiis consequatur deserunt nihil eos quo accusantium eum est et maxime est eveniet libero qui sed voluptas aut laboriosam alias excepturi et voluptas fuga eaque laborum fugit non quia et consequatur est voluptas alias neque temporibus ex omnis ratione praesentium et et nam consectetur nemo qui sint doloremque adipisci deserunt est sit dolore optio dolor et laboriosam consectetur dolores id repellat dignissimos cumque aut est totam nihil ratione quis ipsum et veritatis veniam consequatur non quos voluptatem nostrum et magni consequatur eius blanditiis est deserunt labore sequi exercitationem vero ut omnis modi tempore est quibusdam aut dolores magni esse amet expedita ut qui nam reprehenderit vero nostrum dolorum et magni perferendis beatae quod perferendis beatae et nemo voluptatem illum labore mollitia blanditiis inventore ratione nihil dolore maiores expedita omnis quis in itaque minus quis ipsum corrupti debitis qui similique vel omnis nihil dolores facilis distinctio ratione mollitia in quo ipsa rerum aliquid voluptas perspiciatis et voluptas non velit repellendus id fugit animi optio aliquam dicta ab sint perferendis tempora inventore eos ipsum quod iste nemo et autem occaecati sequi non qui ut minus cupiditate voluptatem perspiciatis veniam quod ipsa non sunt iusto sunt aliquid et et nihil temporibus quis ex et neque vel et iure iste earum voluptate dolorum voluptas ex quia consequatur ut quo delectus incidunt vel eius similique qui voluptatibus voluptas soluta quas ut et repellendus cum tempora qui cupiditate numquam voluptatem vitae voluptatum est sunt hic nisi hic eaque vel earum aspernatur iste consequuntur sed ea et reprehenderit debitis aliquid eos voluptatibus culpa iure sit reprehenderit nostrum dolorum id necessitatibus illo reiciendis qui rerum rerum quisquam ut tenetur rerum harum voluptas commodi et voluptatum voluptates ullam aut fugit suscipit qui aspernatur reiciendis minus facilis quia ex maxime animi est animi eos nesciunt quisquam est quia quos ut hic quisquam nulla aut maxime rerum saepe fugit est eos nesciunt soluta sunt ratione sequi animi aut tenetur in voluptates quas consequatur dolor sunt dolor sequi assumenda iusto autem ex eligendi autem suscipit optio perspiciatis aliquid labore occaecati officiis sed voluptatibus corporis qui non qui similique rerum ipsum voluptates sint magni et consectetur ut eveniet doloribus ipsa autem minus dolores et autem nostrum quia fugiat dolores expedita velit aut earum alias velit dolor vel deleniti ipsam voluptatibus omnis sit maxime molestiae accusamus et voluptatibus nihil sunt nihil sint accusamus impedit minima unde ratione perspiciatis ut non quo tempore qui ut in accusamus impedit voluptatibus quia incidunt voluptas et animi sit voluptate ut eligendi impedit voluptates voluptatum itaque magni ut a vel ut maiores quo corrupti eaque sed expedita voluptatem ipsa hic maiores ex consequatur eligendi quis nesciunt occaecati quod et sunt cupiditate sunt quis qui rem officia consectetur dolor corrupti consequatur debitis dolorum tempore eius ipsam qui necessitatibus explicabo possimus aliquid et sequi reiciendis inventore delectus debitis fuga facilis pariatur ut et adipisci sapiente quam modi nulla dolores occaecati unde explicabo provident harum unde vel sed placeat non dolorum tenetur ea sapiente nostrum maxime dolore voluptatem minima sunt debitis enim atque in eos nostrum quisquam possimus et maxime iure ea quia error quidem consequatur praesentium harum et voluptatem veritatis totam provident ut ut soluta deleniti minus vel omnis quis ipsum inventore eum quaerat velit vero ut qui aut est quia fuga molestias illo doloribus sed eum est non ea at velit laboriosam placeat tempora quia vitae necessitatibus eos sit error veritatis animi quae et provident eaque doloribus iusto optio porro sed voluptatem eveniet expedita omnis enim impedit delectus quam sit porro nemo ea maiores qui nihil sed et ut nesciunt inventore facilis quod delectus aspernatur aut deleniti et alias recusandae voluptas impedit occaecati quis cum neque quaerat voluptas fugit delectus ratione vitae molestiae quasi nisi eum similique autem et provident vero cupiditate optio occaecati quo deleniti repudiandae illum nulla rerum aliquam fuga eos esse itaque qui et non rerum porro quis et incidunt voluptates ea inventore enim quae at omnis ut quis odio corrupti qui accusamus mollitia accusamus veritatis doloribus exercitationem ab ipsa dolorem quas sit quidem temporibus earum omnis ea et quibusdam sunt voluptas repellat ullam tenetur porro consectetur suscipit quia in repellat sapiente doloribus ut nemo ut veritatis ipsam rerum ipsam tempora laudantium consequatur expedita quibusdam necessitatibus et aut nesciunt enim sunt tempora sint et et nihil ut ex aut non quo et quibusdam minima facere similique magni consectetur omnis ullam et et cupiditate facere saepe sed ipsum amet maxime nam quam omnis eos cupiditate aspernatur natus quia ratione explicabo consequatur id est quos ab et quis quia numquam a dolorum eligendi magni sit rem sunt est similique quos aut cupiditate voluptate nihil asperiores dolore aut officia ullam amet rerum autem distinctio quis quia molestiae delectus sunt illo dolores delectus ab placeat et ut ipsa et eos voluptatem dolorum similique exercitationem est velit earum quia velit nisi libero officia ex quam nemo quisquam veritatis reprehenderit assumenda tempora assumenda harum sint omnis amet consectetur dicta hic tempore eligendi rerum veniam dolores ullam at enim sint culpa aut vel ullam impedit officiis nemo quia accusamus veniam minima enim qui suscipit perspiciatis esse impedit dolorum dignissimos ut dolor non pariatur ut in dicta voluptatem sit minus sunt ea officiis sint molestias fuga dolores modi ducimus corrupti qui delectus reprehenderit alias qui est perferendis minus ut aliquid cum dolorum enim sunt cum beatae tempora laboriosam mollitia quam quas non dolorem perferendis molestiae inventore est omnis quo quidem error recusandae quia molestiae voluptas assumenda tempora a quisquam quia molestiae ab expedita voluptate amet odit laudantium est voluptatem et maxime pariatur odit dolores qui aspernatur ab accusantium officia sunt perferendis dolore repellendus ut blanditiis enim id doloremque sit dicta id ex quasi delectus fugiat qui magni illum enim voluptas aut nihil deleniti dolores corrupti necessitatibus iusto ea itaque ipsam quidem expedita possimus nam et et fugit pariatur sed animi qui dolor fugiat sit nostrum autem dolor reprehenderit corrupti minus officiis sit et magnam itaque eaque est quis inventore dolore in quia perferendis explicabo necessitatibus est illo molestiae nostrum ut voluptate a voluptates harum occaecati corporis minus sit dicta voluptate modi temporibus dolor qui iusto incidunt laboriosam recusandae nemo officia quis odio eveniet reiciendis quisquam et cum harum aliquid adipisci quia et qui ut non et sed omnis sapiente est exercitationem eius nemo eos totam nihil ex voluptatum mollitia placeat nemo nisi rerum vitae ipsum error sed nihil non ea maiores labore explicabo sed qui voluptate quis exercitationem sit tenetur a dolor voluptatem iste aspernatur aliquam voluptatum accusantium temporibus omnis deleniti saepe eius voluptatem architecto nobis nesciunt non tempora qui aut sequi officiis ad praesentium commodi deserunt quo omnis sunt maiores ad error ex quis est rerum harum distinctio vel et voluptas non dolorum inventore fuga necessitatibus distinctio perspiciatis labore velit rem dignissimos voluptas et autem quo id nisi harum fugiat quia quo accusantium reprehenderit rerum qui qui est non quod quia sapiente quaerat ad illo non cumque velit quaerat sapiente dolores repudiandae sequi dicta quia aut debitis adipisci optio nihil dignissimos quis ratione ea et sapiente nobis laboriosam."}} |
{"cam/image_array": "91355_cam-image_array_.jpg", "user/throttle": 0.6753247942243303, "user/angle": -0.18701302664620528, "user/mode": "user", "timestamp": "2019-05-24 18:05:07.809640"} |
{
"vorgangId": "129137",
"VORGANG": {
"WAHLPERIODE": "13",
"VORGANGSTYP": "Fragestunde",
"TITEL": "Realisierung des Vierstufenplans der Deutschen Forschungsanstalt für Luft- und Raumfahrt in Braunschweig zum Schutz der deutschen Bevölkerung im Landkreis Waldshut vor der steigenden Fluglärmbelastung durch den Flughafen Zürich-Kloten (G-SIG: 13055675)",
"AKTUELLER_STAND": "Beantwortet",
"SIGNATUR": "",
"GESTA_ORDNUNGSNUMMER": "",
"WICHTIGE_DRUCKSACHE": {
"DRS_HERAUSGEBER": "BT",
"DRS_NUMMER": "13/9392",
"DRS_TYP": "Schriftliche Fragen",
"DRS_LINK": "http://dipbt.bundestag.de:80/dip21/btd/13/093/1309392.pdf"
},
"EU_DOK_NR": "",
"SCHLAGWORT": [
"Deutsche Forschungs- und Versuchsanstalt für Luft- und Raumfahrt eV",
"Flughafen",
"Fluglärm",
"Waldshut, Kreis",
"Zürich, Stadt"
],
"ABSTRAKT": ""
},
"VORGANGSABLAUF": {
"VORGANGSPOSITION": {
"ZUORDNUNG": "BT",
"URHEBER": "Schriftliche Frage/Schriftliche Antwort ",
"FUNDSTELLE": "12.12.1997 - BT-Drucksache 13/9392, Nr. 97, 98",
"FUNDSTELLE_LINK": "http://dipbt.bundestag.de:80/dip21/btd/13/093/1309392.pdf",
"PERSOENLICHER_URHEBER": [
{
"PERSON_TITEL": "Dr.",
"VORNAME": "Norbert",
"NACHNAME": "Lammert",
"FUNKTION": "Parl. Staatssekr.",
"RESSORT": "Bundesministerium für Verkehr",
"AKTIVITAETSART": "Antwort"
},
{
"VORNAME": "Karin",
"NACHNAME": "Rehbock-Zureich",
"FUNKTION": "MdB",
"FRAKTION": "SPD",
"AKTIVITAETSART": "Frage"
}
]
}
}
}
|
{
"id": 438243765,
"type": "Feature",
"properties": {
"edtf:cessation":"uuuu",
"edtf:inception":"uuuu",
"geom:area":0.0,
"geom:bbox":"0.0188410016286,50.8737293057,0.0188410016286,50.8737293057",
"geom:latitude":50.873729,
"geom:longitude":0.018841,
"iso:country":"GB",
"mz:hierarchy_label":1,
"os:admin_county_code":"E10000011",
"os:admin_distict_code":"E07000063",
"os:admin_ward_code":"E05003950",
"os:country_code":"E92000001",
"os:nhs_ha_code":"E18000008",
"os:nhs_regional_ha_code":"E19000002",
"os:positional_quality_indicator":"10",
"src:geom":"os",
"wof:belongsto":[
85684107,
"102191581",
404439855,
"85633159",
404227469,
101853469
],
"wof:breaches":[],
"wof:concordances":{
"gp:id":"26941744"
},
"wof:country":"GB",
"wof:geomhash":"8d94d963fad8301647c01e02cd8bbb51",
"wof:hierarchy":[
{
"continent_id":"102191581",
"country_id":"85633159",
"localadmin_id":404439855,
"locality_id":101853469,
"macroregion_id":404227469,
"postalcode_id":438243765,
"region_id":85684107
}
],
"wof:id":438243765,
"wof:lastmodified":1474571338,
"wof:name":"BN7 2BZ",
"wof:parent_id":101853469,
"wof:placetype":"postalcode",
"wof:repo":"whosonfirst-data-postalcode-gb",
"wof:superseded_by":[],
"wof:supersedes":[],
"wof:tags":[]
},
"bbox": [
0.01884100162863,
50.87372930571367,
0.01884100162863,
50.87372930571367
],
"geometry": {"coordinates":[0.01884100162863,50.87372930571367],"type":"Point"}
} |
{
"id": 22721768,
"type": "Feature",
"properties": {
"name":"Salisbury North",
"placetype":"neighbourhood",
"woe:id":22721768,
"woe:name":"Salisbury North, Adelaide, SA, AU, Australia",
"woe:place_id":"RCyL4QubA5uubW37Xg",
"woe:placetype":"neighbourhood",
"woe:placetype_id":22
},
"bbox": [138.623596,-34.749229,138.636902,-34.741119],
"geometry": {"alpha":1e-05,"bbox":[138.62359619141,-34.749229431152,138.63690185547,-34.741119384766],"coordinates":[[[[138.63269,-34.748314],[138.628876,-34.743954],[138.628723,-34.743641],[138.623596,-34.741119],[138.629715,-34.74205],[138.635101,-34.743729],[138.636902,-34.746689],[138.63356,-34.749016],[138.633377,-34.749229],[138.63269,-34.748314]]]],"created":1292507945,"edges":10,"is_donuthole":0,"link":{"href":"http://farm6.static.flickr.com/5006/shapefiles/22721768_20101216_04fd0dc81f.tar.gz"},"points":35,"type":"MultiPolygon"}
} |
{
"car_frame": "15273e235fa7d8dc2762149c8424d3ea.jpg",
"center of plate": [
458,
456
],
"color": "СЕРЫЙ",
"model": "KIA RIO"
} |
{"author":"Geister","questions":[{"type":"quiz","question":"Write 3.56 in expanded form and word form","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"3 + 5 + 6; three and fifty-six hundreths","correct":false},{"answer":"3 + 0.56; three and fifty-six hundreths","correct":false},{"answer":"3 + 0.5 + 0.06; three and fifty-six hundreths","correct":true},{"answer":"3 + 0.5 + 0.06; three and fifty-six thousandths","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Which number is the greatest?","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"0.008732","correct":false},{"answer":"5.252","correct":false},{"answer":"0.98","correct":false},{"answer":"11.3","correct":true}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Which is ordered greatest to least?","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"54.78, 54.9, 54.7","correct":false},{"answer":"54.78, 54.7, 54.9","correct":false},{"answer":"54.7, 54.78, 54.9","correct":false},{"answer":"54.9, 54.78, 54.7","correct":true}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Estimate by rounding to the nearest tenth: 15.42 + 4.739","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"20","correct":false},{"answer":"20.16","correct":false},{"answer":"20.1","correct":true},{"answer":"20.2","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Use compatible numbers to estimate 4.77 x 21.45","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"10","correct":false},{"answer":"100","correct":true},{"answer":"60","correct":false},{"answer":"800","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Add 8.6 + 5.4","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"3.2","correct":false},{"answer":"14","correct":true},{"answer":"13","correct":false},{"answer":"140","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Evaluate 4.88 - n for <i>n </i>= 2.6","time":20000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"2.28","correct":true},{"answer":"7.48","correct":false},{"answer":"5.14","correct":false},{"answer":"514","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Multiply 6,209 x 100","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"62.09","correct":false},{"answer":"620,900","correct":true},{"answer":"62,090","correct":false},{"answer":"6,209,000","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"What is 445.924 in scientific notation?","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"445,924 x 10 <sup>-3</sup>","correct":false},{"answer":"4.45924 x 1<sup>2</sup>","correct":false},{"answer":"4.45924 x 10<sup>2</sup>","correct":true},{"answer":"445.924 x 10 2","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Find the product of 5 x 3.9","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"1.95","correct":false},{"answer":"19.5","correct":true},{"answer":"15.6","correct":false},{"answer":"195","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Write 3.358 x 10<sup>4 </sup>In Standard Form","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"0.003358","correct":false},{"answer":"33,580","correct":true},{"answer":"3,358,000","correct":false},{"answer":"33,580,000","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Find the product of 5.2 x 0.3","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"1.56","correct":true},{"answer":"15.6","correct":false},{"answer":"5.5","correct":false},{"answer":"156","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Evaluate 2<i>d</i> for <i>d</i> = 7.32","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"1.464","correct":false},{"answer":"14.64","correct":true},{"answer":"9.32","correct":false},{"answer":"1464","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Find the quotient : 8.4 ÷ 4","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"0.21","correct":false},{"answer":"4.4","correct":false},{"answer":"2.1","correct":true},{"answer":"21","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Evaluate 5.75 ÷ <i>k </i>for <i>k </i>= <i>5</i>","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"0.75","correct":false},{"answer":"11.5","correct":false},{"answer":"1.15","correct":true},{"answer":"115","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"5 friends ate lunch and spent $31.75. If they split the bill evenly, how much did each pay","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"$6.20","correct":false},{"answer":"$63.50","correct":false},{"answer":"$6.35","correct":true},{"answer":"$635.00","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Lucas earned $123.25 last week by working 14.5 hours. What was his hourly rate?","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"$8.48","correct":false},{"answer":"$8.50","correct":true},{"answer":"$8.79","correct":false},{"answer":"$8.80","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Find the quotient: 76.8 ÷ 2.4","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"3.2","correct":false},{"answer":"30","correct":false},{"answer":"32","correct":true},{"answer":"320","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Estimate the quotient 478.71 ÷ 24.3","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"2","correct":false},{"answer":"10","correct":false},{"answer":"8","correct":false},{"answer":"20","correct":true}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Scott wants to buy some CDs that are $13.99 each. He has $82.54. How many can he buy?","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"5","correct":true},{"answer":"6","correct":false},{"answer":"5.9","correct":false},{"answer":"68.55","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"10 people want 2 pieces of pizza. There are 8 pieces in a pizza.How many pizzas do they need?","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"1 pizza","correct":false},{"answer":"2 pizzas","correct":false},{"answer":"2.5 pizzas","correct":false},{"answer":"3 pizzas","correct":true}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Solve the equation: <i>p </i>- 6.4 = 9.3","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"2.9","correct":false},{"answer":"29","correct":false},{"answer":"15.7","correct":true},{"answer":"157","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Solve the equation: 7<i>r</i> = 43.4","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"6.2","correct":true},{"answer":"36.4","correct":false},{"answer":"62","correct":false},{"answer":"303.8","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Solve the equation: t + 3.9 = 11.2","time":60000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"2.87","correct":false},{"answer":"15.1","correct":false},{"answer":"7.3","correct":true},{"answer":"73","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0}],"answerMap":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4],"uuid":"307bacf6-b5d4-4248-a9b6-1daa41f2199d"} |
{
"SWADETOOLS.NoweaponInActor": "L'Actor que controles no té cap objecte anomenat",
"SWADETOOLS.OnlyGM": "Només el DJ té permís per fer això",
"SWADETOOLS.PPHint": "PP per afegir al cost. Pot ser negatiu.",
"SWADETOOLS.NoItemEquipped": "L'objecte no està equipat a la fitxa seleccionada",
"SWADETOOLS.TipTargetNumber": "(N) és el número objectiu (visible només pel DJ)",
"SWADETOOLS.NoActorFoundReroll": "No s'ha trobat cap Actor per gastar el Beni (o hi ha Actors amb el mateix nom), gasta el Beni i torna a tirar manualment",
"SWADETOOLS.SettingsItemNameClick": "Mostra informació en fer clic al nom de l'arma/poder/habilitat",
"SWADETOOLS.SettingFightingHint": "Nom de l'habilitat utilitzada per calcular Parada i determinar si tocaràs l'objectiu basant-te en la Parada (en la majoria de casos, deixeu-ho com està).",
"SWADETOOLS.SettingsItemNameClickHint": "Això mantindrà el comportament per defecte en clicar el nom d'un poder/arma/habilitat (normalment mostrar informació) en comtpes d'obrir el diàleg per tirar.",
"SWADETOOLS.Joker": "Comodí",
"SWADETOOLS.UnShakenAttempt": "intenta deixar d'estar Atordit",
"SWADETOOLS.UnStunnedAttempt": "intentar deixar d'estar Commocionat",
"SWADETOOLS.RemDistr": "ja no està Distret",
"SWADETOOLS.RemVuln": "ja no està Vulnerable",
"SWADETOOLS.StillShaken": "continua Atordit",
"SWADETOOLS.RemStunnedSuc": "ja no està Commocionat, però encara està Distret i Vulnerable",
"SWADETOOLS.RemStunnedRaise": "ja no està Commocionat",
"SWADETOOLS.StillStunned": "continua Commocionat",
"SWADETOOLS.ItsEntangled": "està Aferrat i no es pot moure, però pot intentar alliberar-se com a acció utilitzat Atletisme o Força -2",
"SWADETOOLS.NoBennies": "no té cap Beni",
"SWADETOOLS.UnshakenBennyButton": "Elimina Atordiment amb un Beni",
"SWADETOOLS.JokersWild": "Comodí salvatge!",
"SWADETOOLS.JokersWildMsg": "S'han repartit Benis automàticament!",
"SWADETOOLS.YouHave": "Tens",
"SWADETOOLS.AsGM": "com a Director de joc",
"SWADETOOLS.Have": "tens",
"SWADETOOLS.Benny": "Beni",
"SWADETOOLS.Additional": "Addicional",
"SWADETOOLS.ModItem": "Mod. Objecte",
"SWADETOOLS.ModSkill": "Mod. Habilitat",
"SWADETOOLS.ModAttr": "Mod. Atribut",
"SWADETOOLS.Unskilled": "Sense habilitat",
"SWADETOOLS.Damage": "Dany",
"SWADETOOLS.RaiseDmg": "Dany de l'augment",
"SWADETOOLS.Modifier": "Mod.",
"SWADETOOLS.NoskillInActor": "L'Actor que controles no té cap habilitat anomenada",
"SWADETOOLS.NopowerInActor": "L'Actor que controles no té cap poder anomenat",
"SWADETOOLS.NoActorFound": "No s'ha trobat l'Actor. Selecciona una fitxa.",
"SWADETOOLS.CriticalFailure": "Pífia!",
"SWADETOOLS.RerollBtn": "Repeteix la tirada gastant un Beni",
"SWADETOOLS.AutoInitWarn": "Això està activat per defecte quan utilitzes SWADE Tools, però està desactivat a la configuració del sistema per evitar conflictes",
"SWADETOOLS.Fighting": "Lluita",
"SWADETOOLS.SettingFighting": "Nom de l'habilitat de Lluita",
"SWADETOOLS.RechargeQuestion": "Recarregar?",
"SWADETOOLS.Recharged": "Recarregat",
"SWADETOOLS.NotEnoughShots": "no tens prou munició",
"SWADETOOLS.FailedPP": "El Poder ha fallat (1 PP gastat)",
"SWADETOOLS.ExtraPP": "PP extra",
"SWADETOOLS.SettingUseShots": "Comptar Munició",
"SWADETOOLS.SettingUsePP": "Compta Punts de Poder",
"SWADETOOLS.SettingUsePPHint": "Si no vols gestionar els Punts de Poder automàticament en utilitzar Poders, desactiva aquesta opció.",
"SWADETOOLS.Targethit": "Encertat",
"SWADETOOLS.Targetchoose": "Objectiu",
"SWADETOOLS.Targetmiss": "Fallada",
"SWADETOOLS.Targetraise": "Augment",
"SWADETOOLS.Targetnone": "Cap",
"SWADETOOLS.Targetshaken": "Atordit",
"SWADETOOLS.Targetwound": "Ferida",
"SWADETOOLS.Targetwounds": "Ferides",
"SWADETOOLS.RollDamage": "Tira el dany",
"SWADETOOLS.TargetsTitleSkill": "Objectius: clic per tirar el dany",
"SWADETOOLS.TargetsTitleDamage": "Objectius: clic per aplicar el dany (només DJ)",
"SWADETOOLS.PermissionActor": "No tens permís per utilitzar aquest Actor (o la seva funcionalitat)",
"SWADETOOLS.NotShaken": "L'Actor ja no està Atordit",
"SWADETOOLS.ModHint": "Accepta números o daus (ex. -2 o 1d6)",
"SWADETOOLS.ShowDialogCheck": "Mostra diàleg (dany i altres accions)",
"SWADETOOLS.TipRofRoll": "Per la CdF, encert/augment es defineixen manualment",
"SWADETOOLS.SettingsDefaultStatus": "Utilitza les icones d'estat del sistema si estan disponibles",
"SWADETOOLS.SettingsDefaultStatusHint": "Activa això per utilitza les icones d'estat per defecte en comptes de les icones de SWADE Tools.",
"SWADETOOLS.SettingsJokersWild": "Desactiva el Comodí Salvatge",
"SWADETOOLS.SettingsJokersWildHint": "Això desactiva el repartiment automàtic de benis al treure un Comodí en combat.",
"SWADETOOLS.ConvEnd": "La teva Convicció s'està esgotant. Pots gastar un Beni per mantenir-lo fins la propera ronda.",
"SWADETOOLS.ConvKepp": "Gasta un Beni per la Convicció",
"SWADETOOLS.AlreadyConvic": "Aquest Actor ja té Convicció activa",
"SWADETOOLS.ConvictionKept": "La Convicció continua fins la propera ronda!",
"SWADETOOLS.SoakDmg": "Absorbeix el dany",
"SWADETOOLS.DoSoak": "intenta absorbir el dany",
"SWADETOOLS.RoFFinalMod": "Modificador final",
"SWADETOOLS.settingNameButton": "Canvia els noms per defecte",
"SWADETOOLS.ElanSetting": "Ardor",
"SWADETOOLS.NoMercySetting": "Sense pietat",
"SWADETOOLS.IronJawSetting": "Mandíbula d'acer",
"SWADETOOLS.CombatReflexesSetting": "Reflexes de combat",
"SWADETOOLS.ConstructSetting": "Constructe",
"SWADETOOLS.HardySetting": "Dur",
"SWADETOOLS.HardyWarn": " té Dur, de manera que no l'afecta el segon Atordit",
"SWADETOOLS.UndeadSetting": "No-mort",
"SWADETOOLS.settingRules": "Regles d'ambientació",
"SWADETOOLS.settingRulesButton": "Escull regles d'ambientació",
"SWADETOOLS.settingRulesHint": "Marca les regles d'ambientació que estàs utilitzar per canviar la configuració i automatització.",
"SWADETOOLS.DumbLuckSetting": "Xamba",
"SWADETOOLS.HardChoicesSetting": "Eleccions difícils",
"SWADETOOLS.UnarmoredHeroSetting": "Heroi sense armadura",
"SWADETOOLS.WoundCapSetting": "Límit de ferides",
"SWADETOOLS.Yes": "Sí",
"SWADETOOLS.No": "No",
"SWADETOOLS.ConfigDisabled": "configuració s'ha desactivat per evitar conflictes amb SWADE Tools",
"SWADETOOLS.ConfigEnabled": "configuració s'ha activat automàticament per SWADE Tools",
"SWADETOOLS.FightingWarn": "s'ha modificat de Lluita segons la teva configuració de SWADE Tools a:",
"SWADETOOLS.NotEnoughPP": "no tens prou Punts de Poder",
"SWADETOOLS.settingName": "Avantatges, Habilitats i Trets",
"SWADETOOLS.RemShaken": "ja no està Atordit",
"SWADETOOLS.SettingUseShotsHint": "Si no pots gestionar la munició automàticament en utilitzar armes, desactiva aquesta opció.",
"SWADETOOLS.settingNameHint": "Canvia els noms per defecte que afecten tirades automàticament (les habilitats es consideren objectes d'avantatge). Si utilitzes el sistema SWADE en un dels idiomes suportats per SWADE Tools, segurament no necessitaràs canviar res aquí.",
"SWADETOOLS.ItsBound": "està immobilitzat, no pot moure's i només pot intentar alliberar-se utilitzant Atletisme o Força -2",
"SWADETOOLS.ApplyDamage": "Aplica el dany",
"SWADETOOLS.HardChoicesWarn": "Quan s'utiliten Eleccions difícils, els benis de Comodions PNJ s'ignoraran. Vols també desactivar el Comodí slavatge i configurar els Benis inicials del DJ a zero? És l'opció per defecte a Eleccions difícils.",
"SWADETOOLS.Bennies": "Benis"
}
|
[
{
"jungle_id":24793,
"level":"Upper-Intermediate"
},
{
"jungle_id":24820,
"level":"Upper-Intermediate"
},
{
"jungle_id":25316,
"level":"Advanced"
},
{
"jungle_id":24774,
"level":"Upper-Intermediate"
},
{
"jungle_id":24775,
"level":"Upper-Intermediate"
},
{
"jungle_id":24776,
"level":"Upper-Intermediate"
},
{
"jungle_id":24778,
"level":"Intermediate"
},
{
"jungle_id":24781,
"level":"Intermediate"
},
{
"jungle_id":24793,
"level":"Upper-Intermediate"
},
{
"jungle_id":24820,
"level":"Advanced"
},
{
"jungle_id":25316,
"level":"Advanced"
},
{
"jungle_id":24781,
"level":"Upper-Intermediate"
},
{
"jungle_id":24752,
"level":"Intermediate"
},
{
"jungle_id":24754,
"level":"Upper-Intermediate"
},
{
"jungle_id":24756,
"level":"Elementary/Pre-Intermediate"
},
{
"jungle_id":24766,
"level":"Elementary/Pre-Intermediate"
},
{
"jungle_id":24759,
"level":"Upper-Intermediate"
},
{
"jungle_id":24820,
"level":"Advanced"
},
{
"jungle_id":24940,
"level":"Upper-Intermediate"
},
{
"jungle_id":24759,
"level":"Upper-Intermediate"
},
{
"jungle_id":24773,
"level":"Intermediate"
},
{
"jungle_id":24763,
"level":"Intermediate"
},
{
"jungle_id":24769,
"level":"Intermediate"
},
{
"jungle_id":24796,
"level":"Upper-Intermediate"
},
{
"jungle_id":24846,
"level":"Intermediate"
},
{
"jungle_id":24783,
"level":"Intermediate"
},
{
"jungle_id":24784,
"level":"Intermediate"
},
{
"jungle_id":24786,
"level":"Upper-Intermediate"
},
{
"jungle_id":24787,
"level":"Upper-Intermediate"
},
{
"jungle_id":24789,
"level":"Upper-Intermediate"
},
{
"jungle_id":24811,
"level":"Intermediate"
},
{
"jungle_id":24882,
"level":"Advanced"
},
{
"jungle_id":25316,
"level":"Advanced"
},
{
"jungle_id":24799,
"level":"Upper-Intermediate"
},
{
"jungle_id":24802,
"level":"Intermediate"
},
{
"jungle_id":24803,
"level":"Advanced"
},
{
"jungle_id":24804,
"level":"Advanced"
},
{
"jungle_id":24805,
"level":"Upper-Intermediate"
},
{
"jungle_id":24807,
"level":"Upper-Intermediate"
},
{
"jungle_id":24808,
"level":"Intermediate"
},
{
"jungle_id":24809,
"level":"Upper-Intermediate"
}
] |
{"elchanan mossel": {"Citation Count": 3.0, "Geo Mean W Impact": 4.752, "Geo Mean Score": 1.05, "Arith Mean Score": 1.564, "Publication Count": 0.75}, "yuqing ai": {"Citation Count": 0.75, "Geo Mean W Impact": 1.3, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "avishay tal": {"Citation Count": 0.429, "Geo Mean W Impact": 0.743, "Geo Mean Score": 0.2, "Arith Mean Score": 0.298, "Publication Count": 0.143}, "yuval filmus": {"Citation Count": 3.0, "Geo Mean W Impact": 4.752, "Geo Mean Score": 1.05, "Arith Mean Score": 1.564, "Publication Count": 0.75}, "troy lee": {"Citation Count": 1.0, "Geo Mean W Impact": 1.65, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "aram wettroth harrow": {"Citation Count": 0.0, "Geo Mean W Impact": 0.333, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "adam bouland": {"Citation Count": 0.333, "Geo Mean W Impact": 0.8, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "shuichi hirahara": {"Citation Count": 1.0, "Geo Mean W Impact": 1.9, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "qi qi": {"Citation Count": 0.0, "Geo Mean W Impact": 0.2, "Geo Mean Score": 0.28, "Arith Mean Score": 0.417, "Publication Count": 0.2}, "mika goos": {"Citation Count": 2.0, "Geo Mean W Impact": 3.301, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "venkatesan guruswami": {"Citation Count": 0.0, "Geo Mean W Impact": 1.0, "Geo Mean Score": 1.4, "Arith Mean Score": 2.086, "Publication Count": 1.0}, "valentine kabanets": {"Citation Count": 0.0, "Geo Mean W Impact": 0.5, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "sergei artemenko": {"Citation Count": 0.0, "Geo Mean W Impact": 0.25, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "amir shpilka": {"Citation Count": 1.35, "Geo Mean W Impact": 2.34, "Geo Mean Score": 0.63, "Arith Mean Score": 0.939, "Publication Count": 0.45}, "arpita korwar": {"Citation Count": 0.333, "Geo Mean W Impact": 0.8, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "shubhangi saraf": {"Citation Count": 3.5, "Geo Mean W Impact": 4.751, "Geo Mean Score": 1.4, "Arith Mean Score": 2.086, "Publication Count": 1.0}, "antonina kolokolova": {"Citation Count": 0.0, "Geo Mean W Impact": 0.25, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "scott aaronson": {"Citation Count": 0.167, "Geo Mean W Impact": 0.83, "Geo Mean Score": 0.934, "Arith Mean Score": 1.39, "Publication Count": 0.667}, "arnab bhattacharyya": {"Citation Count": 0.0, "Geo Mean W Impact": 0.5, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "martins kokainis": {"Citation Count": 1.667, "Geo Mean W Impact": 2.269, "Geo Mean Score": 0.583, "Arith Mean Score": 0.869, "Publication Count": 0.417}, "swastik kopparty": {"Citation Count": 0.0, "Geo Mean W Impact": 0.5, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "ryan williams": {"Citation Count": 3.0, "Geo Mean W Impact": 4.701, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "xue zhang": {"Citation Count": 0.333, "Geo Mean W Impact": 0.8, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "avi wigderson": {"Citation Count": 1.607, "Geo Mean W Impact": 2.786, "Geo Mean Score": 0.75, "Arith Mean Score": 1.117, "Publication Count": 0.536}, "ramprasad saptharishi": {"Citation Count": 1.6, "Geo Mean W Impact": 2.774, "Geo Mean Score": 0.747, "Arith Mean Score": 1.112, "Publication Count": 0.533}, "ruiwen chen": {"Citation Count": 1.0, "Geo Mean W Impact": 1.734, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "ronald de wolf": {"Citation Count": 1.0, "Geo Mean W Impact": 1.65, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "irit dinur": {"Citation Count": 1.0, "Geo Mean W Impact": 1.9, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "eshan chattopadhyay": {"Citation Count": 0.5, "Geo Mean W Impact": 1.2, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "john kim": {"Citation Count": 0.0, "Geo Mean W Impact": 0.5, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "zhe feng": {"Citation Count": 0.0, "Geo Mean W Impact": 0.2, "Geo Mean Score": 0.28, "Arith Mean Score": 0.417, "Publication Count": 0.2}, "russell impagliazzo": {"Citation Count": 0.0, "Geo Mean W Impact": 0.5, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "j\u0101nis iraids": {"Citation Count": 0.167, "Geo Mean W Impact": 0.4, "Geo Mean Score": 0.233, "Arith Mean Score": 0.348, "Publication Count": 0.167}, "anand natarajan": {"Citation Count": 0.0, "Geo Mean W Impact": 0.333, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "sivakanth gopi": {"Citation Count": 0.0, "Geo Mean W Impact": 0.5, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "xiaodi wu": {"Citation Count": 0.0, "Geo Mean W Impact": 0.333, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "lance fortnow": {"Citation Count": 0.5, "Geo Mean W Impact": 1.2, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "gil cohen": {"Citation Count": 8.0, "Geo Mean W Impact": 12.203, "Geo Mean Score": 1.4, "Arith Mean Score": 2.086, "Publication Count": 1.0}, "yu zhao": {"Citation Count": 0.5, "Geo Mean W Impact": 1.2, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "rocco a servedio": {"Citation Count": 0.857, "Geo Mean W Impact": 1.486, "Geo Mean Score": 0.4, "Arith Mean Score": 0.596, "Publication Count": 0.286}, "j niel de beaudrap": {"Citation Count": 0.5, "Geo Mean W Impact": 1.2, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "andris ambainis": {"Citation Count": 1.833, "Geo Mean W Impact": 2.514, "Geo Mean Score": 0.817, "Arith Mean Score": 1.217, "Publication Count": 0.583}, "juris smotrovs": {"Citation Count": 0.167, "Geo Mean W Impact": 0.4, "Geo Mean Score": 0.233, "Arith Mean Score": 0.348, "Publication Count": 0.167}, "marco l carmosino": {"Citation Count": 0.0, "Geo Mean W Impact": 0.25, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "jack r edmonds": {"Citation Count": 0.0, "Geo Mean W Impact": 0.1, "Geo Mean Score": 0.14, "Arith Mean Score": 0.209, "Publication Count": 0.1}, "sevag gharibian": {"Citation Count": 0.5, "Geo Mean W Impact": 1.2, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "xiaotie deng": {"Citation Count": 0.0, "Geo Mean W Impact": 0.2, "Geo Mean Score": 0.28, "Arith Mean Score": 0.417, "Publication Count": 0.2}, "karl wimmer": {"Citation Count": 1.5, "Geo Mean W Impact": 2.35, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "richard ryan williams": {"Citation Count": 3.0, "Geo Mean W Impact": 4.701, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "nitin saxena": {"Citation Count": 0.333, "Geo Mean W Impact": 0.8, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "gaurav sinha": {"Citation Count": 0.0, "Geo Mean W Impact": 1.0, "Geo Mean Score": 1.4, "Arith Mean Score": 2.086, "Publication Count": 1.0}, "rohit gurjar": {"Citation Count": 0.333, "Geo Mean W Impact": 0.8, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "t s jayram": {"Citation Count": 2.0, "Geo Mean W Impact": 3.301, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "wei hu": {"Citation Count": 0.75, "Geo Mean W Impact": 1.3, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "david zuckerman": {"Citation Count": 0.5, "Geo Mean W Impact": 1.2, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "jaikumar radhakrishnan": {"Citation Count": 0.0, "Geo Mean W Impact": 0.5, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "guy kindler": {"Citation Count": 1.5, "Geo Mean W Impact": 2.35, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "shalev bendavid": {"Citation Count": 0.0, "Geo Mean W Impact": 0.5, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "iddo tzameret": {"Citation Count": 0.75, "Geo Mean W Impact": 1.3, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "ronen shaltiel": {"Citation Count": 0.0, "Geo Mean W Impact": 0.25, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "srikanth srinivasan": {"Citation Count": 1.0, "Geo Mean W Impact": 1.734, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "osamu watanabe": {"Citation Count": 1.0, "Geo Mean W Impact": 1.9, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "joshua brakensiek": {"Citation Count": 0.0, "Geo Mean W Impact": 0.5, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "nisheeth k vishnoi": {"Citation Count": 0.0, "Geo Mean W Impact": 1.0, "Geo Mean Score": 1.4, "Arith Mean Score": 2.086, "Publication Count": 1.0}, "mrinal kumar": {"Citation Count": 4.5, "Geo Mean W Impact": 6.479, "Geo Mean Score": 1.867, "Arith Mean Score": 2.781, "Publication Count": 1.333}, "michael a forbes": {"Citation Count": 2.35, "Geo Mean W Impact": 4.074, "Geo Mean Score": 1.097, "Arith Mean Score": 1.634, "Publication Count": 0.783}, "rahul santhanam": {"Citation Count": 1.5, "Geo Mean W Impact": 2.725, "Geo Mean Score": 1.167, "Arith Mean Score": 1.738, "Publication Count": 0.833}, "or meir": {"Citation Count": 1.0, "Geo Mean W Impact": 1.9, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "laura mancinska": {"Citation Count": 0.333, "Geo Mean W Impact": 0.8, "Geo Mean Score": 0.467, "Arith Mean Score": 0.695, "Publication Count": 0.333}, "matthew anderson": {"Citation Count": 0.6, "Geo Mean W Impact": 1.04, "Geo Mean Score": 0.28, "Arith Mean Score": 0.417, "Publication Count": 0.2}, "parikshit gopalan": {"Citation Count": 0.857, "Geo Mean W Impact": 1.486, "Geo Mean Score": 0.4, "Arith Mean Score": 0.596, "Publication Count": 0.286}, "zeying xu": {"Citation Count": 0.0, "Geo Mean W Impact": 0.1, "Geo Mean Score": 0.14, "Arith Mean Score": 0.209, "Publication Count": 0.1}, "ryan odonnell": {"Citation Count": 0.5, "Geo Mean W Impact": 1.2, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "yi li": {"Citation Count": 0.75, "Geo Mean W Impact": 1.3, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "robin kothari": {"Citation Count": 3.0, "Geo Mean W Impact": 4.701, "Geo Mean Score": 0.7, "Arith Mean Score": 1.043, "Publication Count": 0.5}, "ben lee volk": {"Citation Count": 0.6, "Geo Mean W Impact": 1.04, "Geo Mean Score": 0.28, "Arith Mean Score": 0.417, "Publication Count": 0.2}, "anupam prakash": {"Citation Count": 1.0, "Geo Mean W Impact": 1.65, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "david p woodruff": {"Citation Count": 0.75, "Geo Mean W Impact": 1.3, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}, "zhengyang liu": {"Citation Count": 0.0, "Geo Mean W Impact": 0.2, "Geo Mean Score": 0.28, "Arith Mean Score": 0.417, "Publication Count": 0.2}, "henry yuen": {"Citation Count": 1.0, "Geo Mean W Impact": 1.65, "Geo Mean Score": 0.35, "Arith Mean Score": 0.521, "Publication Count": 0.25}} |
{"id":61821,"type":2,"name":"啦啦啦德玛西亚 第二季","image":"//lain.bgm.tv/pic/cover/m/31/4a/61821_eTHD0.jpg","rating":{"total":167,"count":{"1":1,"2":1,"3":1,"4":6,"5":13,"6":71,"7":52,"8":19,"9":2,"10":1},"score":6.4},"summary":"《啦啦啦德玛西亚第二季》是根据目前炙手可热的英雄对战网游《英雄联盟》为故事背景,剧本取材于玩家在游戏中各种喜闻乐见的游戏文化,以幽默、轻松、搞笑的故事风格,真实还原英雄联盟的玩家在游戏中的乐趣和对战生活。是《啦啦啦德玛西亚》的续集。2012年7月19日开始播出。","info":"<li><span>中文名: </span>啦啦啦德玛西亚 第二季</li><li><span>话数: </span>10</li><li><span>放送开始: </span>2012年7月19日</li><li><span>动画制作: </span><a href=\"/person/20446\">虚拟印象工作室</a></li><li><span>别名: </span>Lalala Demacia S2</li><li><span>官方网站: </span>http://lol.duowan.com/lalala/</li><li><span>播放结束: </span>2012年12月13日</li>","collection":{"wish":5,"collect":298,"doing":2,"on_hold":1,"dropped":12},"tags":[{"name":"国产","count":38},{"name":"英雄联盟","count":28},{"name":"泡面番","count":20},{"name":"LOL","count":14},{"name":"WEB","count":13},{"name":"2012年7月","count":11},{"name":"啦啦啦德玛西亚","count":10},{"name":"今天天气不错我们来削弱刀妹吧","count":9},{"name":"2012","count":7},{"name":"3D","count":7},{"name":"德玛西亚","count":6},{"name":"搞笑","count":3},{"name":"国人","count":2},{"name":"FANS向","count":2},{"name":"猴子","count":2},{"name":"原创","count":2},{"name":"萨拉雷","count":1},{"name":"虚拟印象工作室","count":1},{"name":"2010s","count":1},{"name":"西游记","count":1},{"name":"同人","count":1},{"name":"动画","count":1},{"name":"喜剧","count":1},{"name":"科幻","count":1},{"name":"TV","count":1},{"name":"游戏","count":1},{"name":"国番","count":1},{"name":"热血","count":1},{"name":"国产动画","count":1},{"name":"战斗","count":1}],"eps":[{"id":234483,"url":"http://bgm.tv/ep/234483","type":0,"sort":1,"name":"阿狸的祈祷","name_cn":"","duration":"","airdate":"","comment":0,"desc":"","status":"Air"},{"id":234484,"url":"http://bgm.tv/ep/234484","type":0,"sort":2,"name":"猴子降妖","name_cn":"","duration":"","airdate":"","comment":1,"desc":"","status":"Air"},{"id":234485,"url":"http://bgm.tv/ep/234485","type":0,"sort":3,"name":"我要金箍棒","name_cn":"","duration":"","airdate":"","comment":1,"desc":"","status":"Air"},{"id":234486,"url":"http://bgm.tv/ep/234486","type":0,"sort":4,"name":"瓦罗兰太阳","name_cn":"","duration":"","airdate":"","comment":0,"desc":"","status":"Air"},{"id":234487,"url":"http://bgm.tv/ep/234487","type":0,"sort":5,"name":"刀锋的意志","name_cn":"","duration":"","airdate":"","comment":0,"desc":"","status":"Air"},{"id":234488,"url":"http://bgm.tv/ep/234488","type":0,"sort":6,"name":"公平的单","name_cn":"","duration":"","airdate":"","comment":0,"desc":"","status":"Air"},{"id":234489,"url":"http://bgm.tv/ep/234489","type":0,"sort":7,"name":"变大变大","name_cn":"","duration":"","airdate":"","comment":0,"desc":"","status":"Air"},{"id":234490,"url":"http://bgm.tv/ep/234490","type":0,"sort":8,"name":"操家伙","name_cn":"","duration":"","airdate":"","comment":0,"desc":"","status":"Air"},{"id":234491,"url":"http://bgm.tv/ep/234491","type":0,"sort":9,"name":"这仗挺大","name_cn":"","duration":"","airdate":"","comment":0,"desc":"","status":"Air"},{"id":234492,"url":"http://bgm.tv/ep/234492","type":0,"sort":10,"name":"和平的封印","name_cn":"","duration":"","airdate":"","comment":0,"desc":"","status":"Air"}],"staff":[{"id":20446,"image":"","name":"虚拟印象工作室","desc":"动画制作"}],"relations":[{"id":39743,"image":"//lain.bgm.tv/pic/cover/m/52/ec/39743_X1MXN.jpg","title":"啦啦啦德玛西亚","type":"前传","url":"https://bgm.tv/subject/39743"},{"id":66954,"image":"//lain.bgm.tv/pic/cover/m/e2/18/66954_md5zz.jpg","title":"啦啦啦德玛西亚 第三季","type":"续集","url":"https://bgm.tv/subject/66954"},{"id":110919,"image":"//lain.bgm.tv/pic/cover/m/39/de/110919_g03E6.jpg","title":"超神学院 第二季 巨峡号","type":"不同世界观","url":"https://bgm.tv/subject/110919"},{"id":94429,"image":"//lain.bgm.tv/pic/cover/m/32/7c/94429_GtKtP.jpg","title":"超神学院","type":"不同世界观","url":"https://bgm.tv/subject/94429"},{"id":130344,"image":"//lain.bgm.tv/pic/cover/m/34/b2/130344_J08Kk.jpg","title":"超神学院 第三季 神与神","type":"不同世界观","url":"https://bgm.tv/subject/130344"},{"id":165589,"image":"//lain.bgm.tv/pic/cover/m/86/e5/165589_4UN47.jpg","title":"超神学院 第四季 黑甲","type":"不同世界观","url":"https://bgm.tv/subject/165589"},{"id":18011,"image":"//lain.bgm.tv/pic/cover/m/45/eb/18011_XPP9G.jpg","title":"League of Legends","type":"游戏","url":"https://bgm.tv/subject/18011"}]} |
{"name":"Rankexperts","permalink":"rankexperts","crunchbase_url":"http://www.crunchbase.com/company/rankexperts","homepage_url":"http://www.rankexperts.com/","blog_url":"http://rankexpertsseo.wordpress.com/","blog_feed_url":"http://rankexpertsseo.wordpress.com/feed/","twitter_username":"","category_code":"search","number_of_employees":50,"founded_year":2004,"founded_month":2,"founded_day":6,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"link-building, link-building-service, link-building-services, search-engine-submission, high-quality-link-building-services, article-submission-article-submission-service, build-backlinks, building-backlinks, cheap-link-building","alias_list":null,"email_address":"rankexpertsusa@gmail.com","phone_number":"480) 624-2599","description":"An SEO Firm that specializes in providin","created_at":"Thu Dec 22 09:03:24 UTC 2011","updated_at":"Fri Dec 23 12:09:07 UTC 2011","overview":"<p>An SEO Firm that specializes in providing professional, reliable, and affordable link building services. Our Link Building Services comprise of the latest cutting edge white hat techniques providing achievable online success. </p>","image":null,"products":[],"relationships":[],"competitions":[],"providerships":[],"total_money_raised":"$0","funding_rounds":[],"investments":[],"acquisition":null,"acquisitions":[],"offices":[],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[],"external_links":[]} |
{"streams":[{"title":"The Good Doctor S03 E15","url":"http://tv.iptv5latino.cl:8000/series/premium2/mauri1234554321/39319.mkv"}]} |
{
"id": "fcdbb928-29c1-f849-6b56-629184cdfe75",
"offset": "753",
"occurred": "2015-11-13T16:44:24.394Z",
"processed": "2015-11-13T16:44:24.394Z",
"body": {
"payload": "eyJkZXZpY2VfdHlwZXMiOiJhbmRyb2lkIiwiYXVkaWVuY2UiOiJhbGwiLCJub3RpZmljYXRpb24iOnsiYWxlcnQiOiJwb2xhcm9pZCBOZXV0cmFsLiBWZWdhbiBiYW5qbyBQQlIgVmljZSBUdW1ibHIgVGh1bmRlcmNhdHMuIDgtYml0IG1pZ2FzIiwiYW5kcm9pZCI6IlRodW5kZXJjYXRzIE5ldXRyYSBsb21vIHNlbWlvdGljcyBrZWZmaXllaCB5ciwga2FsZSBjaGlwcyBzdHVtcHRvd24ifX0=",
"push_id": "83b76ab8-8da0-e776-4c81-39441024ce9e",
"trimmed": false
},
"type": "PUSH_BODY"
} |
{"definitions": [{"wordtype": "Gerund", "description": "of Altercate"}]} |
{"word":"gangboard","results":[{"definition":"a temporary bridge for getting on and off a vessel at dockside","partOfSpeech":"noun","synonyms":["gangplank","gangway"],"typeOf":["footbridge","overcrossing","pedestrian bridge"]}],"syllables":{"count":2,"list":["gang","board"]},"pronunciation":{"all":"'ɡæŋ,boʊrd"}} |
[{"kind": "Listing", "data": {"modhash": "", "whitelist_status": "all_ads", "children": [{"kind": "t3", "data": {"domain": "self.milliondollarextreme", "approved_at_utc": null, "banned_by": null, "media_embed": {}, "thumbnail_width": null, "subreddit": "milliondollarextreme", "selftext_html": "<!-- SC_OFF --><div class=\"md\"><p>Don&#39;t read this if you are mentally weak because I&#39;m not gonna pull any punches.</p>\n\n<p>I&#39;m sick in the fucking head. I think dirty thoughts.</p>\n\n<p>I thought about fucking my dog yesterday. It didn&#39;t even bother me. I am just relaying this because I know it would bother you.</p>\n\n<p>Shit like that is normal for me.</p>\n\n<p>This morning I called my dad who I haven&#39;t talked to for 5 years (my mom left him for an ALPHA) just to call him an old ugly faggot who I bring up only to make jokes in tense situations.</p>\n\n<p>HE BAWLED HIS FUCKING EYES OUT.</p>\n\n<p>Do you know what I did? I told him I was joking and only said that because I missed him. This is called pulling the knife out. </p>\n\n<p>I jabbed that shit right back in with a &quot;no, but seriously - you&#39;re a fucking failure and joke.&quot; Hanging up, I went back to RAPING MY DOG (Izzy). </p>\n\n<p>Izzy weighs 8 pounds. She&#39;s a teacup yorkee. One of those yorkees that has it&#39;s fuckin tongue hanging out of it&#39;s mouth all the time. </p>\n\n<p>So cute.</p>\n\n<p>Can you imagine what kind of mind is necessary to commit such an act?? No, you can&#39;t. You&#39;re a fucking puppet and you could never rape your dog. Because you and your will are the same thing. </p>\n\n<p>Oh how limited you are. </p>\n</div><!-- SC_ON -->", "selftext": "Don't read this if you are mentally weak because I'm not gonna pull any punches.\n\nI'm sick in the fucking head. I think dirty thoughts.\n\nI thought about fucking my dog yesterday. It didn't even bother me. I am just relaying this because I know it would bother you.\n\nShit like that is normal for me.\n\nThis morning I called my dad who I haven't talked to for 5 years (my mom left him for an ALPHA) just to call him an old ugly faggot who I bring up only to make jokes in tense situations.\n\nHE BAWLED HIS FUCKING EYES OUT.\n\nDo you know what I did? I told him I was joking and only said that because I missed him. This is called pulling the knife out. \n\nI jabbed that shit right back in with a \"no, but seriously - you're a fucking failure and joke.\" Hanging up, I went back to RAPING MY DOG (Izzy). \n\nIzzy weighs 8 pounds. She's a teacup yorkee. One of those yorkees that has it's fuckin tongue hanging out of it's mouth all the time. \n\nSo cute.\n\nCan you imagine what kind of mind is necessary to commit such an act?? No, you can't. You're a fucking puppet and you could never rape your dog. Because you and your will are the same thing. \n\nOh how limited you are. ", "likes": null, "suggested_sort": null, "user_reports": [], "secure_media": null, "is_reddit_media_domain": false, "link_flair_text": null, "id": "6xibrf", "banned_at_utc": null, "view_count": null, "archived": false, "clicked": false, "report_reasons": null, "title": "im sick in the head", "num_crossposts": 0, "saved": false, "can_mod_post": false, "is_crosspostable": false, "pinned": false, "score": 22, "approved_by": null, "over_18": false, "hidden": false, "num_comments": 8, "thumbnail": "self", "subreddit_id": "t5_2vsta", "hide_score": false, "edited": false, "link_flair_css_class": null, "author_flair_css_class": "", "contest_mode": false, "gilded": 0, "locked": false, "downs": 0, "brand_safe": true, "secure_media_embed": {}, "removal_reason": null, "can_gild": false, "thumbnail_height": null, "parent_whitelist_status": "all_ads", "name": "t3_6xibrf", "spoiler": false, "permalink": "/r/milliondollarextreme/comments/6xibrf/im_sick_in_the_head/", "num_reports": null, "whitelist_status": "all_ads", "stickied": false, "created": 1504337384.0, "url": "https://www.reddit.com/r/milliondollarextreme/comments/6xibrf/im_sick_in_the_head/", "author_flair_text": "just give up", "quarantine": false, "author": "MrSterlock", "created_utc": 1504308584.0, "subreddit_name_prefixed": "r/milliondollarextreme", "distinguished": null, "media": null, "upvote_ratio": 0.79, "mod_reports": [], "is_self": true, "visited": false, "subreddit_type": "public", "is_video": false, "ups": 22}}], "after": null, "before": null}}, {"kind": "Listing", "data": {"modhash": "", "whitelist_status": "all_ads", "children": [{"kind": "t1", "data": {"subreddit_id": "t5_2vsta", "approved_at_utc": null, "banned_by": null, "removal_reason": null, "link_id": "t3_6xibrf", "likes": null, "replies": "", "user_reports": [], "saved": false, "id": "dmg97tm", "banned_at_utc": null, "gilded": 0, "archived": false, "report_reasons": null, "author": "spunked_pants", "can_mod_post": false, "ups": 17, "parent_id": "t3_6xibrf", "score": 17, "approved_by": null, "downs": 0, "body": "if you read about psychopathy on Quora you get to read thousands of variations of this", "edited": false, "author_flair_css_class": "", "collapsed": false, "is_submitter": false, "collapsed_reason": null, "body_html": "<div class=\"md\"><p>if you read about psychopathy on Quora you get to read thousands of variations of this</p>\n</div>", "stickied": false, "can_gild": true, "subreddit": "milliondollarextreme", "score_hidden": false, "permalink": "/r/milliondollarextreme/comments/6xibrf/im_sick_in_the_head/dmg97tm/", "subreddit_type": "public", "name": "t1_dmg97tm", "created": 1504344665.0, "author_flair_text": "King of the dove", "created_utc": 1504315865.0, "subreddit_name_prefixed": "r/milliondollarextreme", "controversiality": 0, "depth": 0, "mod_reports": [], "num_reports": null, "distinguished": null}}, {"kind": "t1", "data": {"subreddit_id": "t5_2vsta", "approved_at_utc": null, "banned_by": null, "removal_reason": null, "link_id": "t3_6xibrf", "likes": null, "replies": "", "user_reports": [], "saved": false, "id": "dmgnfhm", "banned_at_utc": null, "gilded": 0, "archived": false, "report_reasons": null, "author": "yeacoz", "can_mod_post": false, "ups": 11, "parent_id": "t3_6xibrf", "score": 11, "approved_by": null, "downs": 0, "body": "What MDE video is this?", "edited": false, "author_flair_css_class": "", "collapsed": false, "is_submitter": false, "collapsed_reason": null, "body_html": "<div class=\"md\"><p>What MDE video is this?</p>\n</div>", "stickied": false, "can_gild": true, "subreddit": "milliondollarextreme", "score_hidden": false, "permalink": "/r/milliondollarextreme/comments/6xibrf/im_sick_in_the_head/dmgnfhm/", "subreddit_type": "public", "name": "t1_dmgnfhm", "created": 1504372838.0, "author_flair_text": "\"You guys make me laugh\"", "created_utc": 1504344038.0, "subreddit_name_prefixed": "r/milliondollarextreme", "controversiality": 0, "depth": 0, "mod_reports": [], "num_reports": null, "distinguished": null}}, {"kind": "t1", "data": {"subreddit_id": "t5_2vsta", "approved_at_utc": null, "banned_by": null, "removal_reason": null, "link_id": "t3_6xibrf", "likes": null, "replies": "", "user_reports": [], "saved": false, "id": "dmgokfv", "banned_at_utc": null, "gilded": 0, "archived": false, "report_reasons": null, "author": "SJWarriors", "can_mod_post": false, "ups": 7, "parent_id": "t3_6xibrf", "score": 7, "approved_by": null, "downs": 0, "body": "hope ur dog doesnt have a penis, otherwise that'd be pretty gay tbh.", "edited": false, "author_flair_css_class": null, "collapsed": false, "is_submitter": false, "collapsed_reason": null, "body_html": "<div class=\"md\"><p>hope ur dog doesnt have a penis, otherwise that&#39;d be pretty gay tbh.</p>\n</div>", "stickied": false, "can_gild": true, "subreddit": "milliondollarextreme", "score_hidden": false, "permalink": "/r/milliondollarextreme/comments/6xibrf/im_sick_in_the_head/dmgokfv/", "subreddit_type": "public", "name": "t1_dmgokfv", "created": 1504376638.0, "author_flair_text": null, "created_utc": 1504347838.0, "subreddit_name_prefixed": "r/milliondollarextreme", "controversiality": 0, "depth": 0, "mod_reports": [], "num_reports": null, "distinguished": null}}, {"kind": "t1", "data": {"subreddit_id": "t5_2vsta", "approved_at_utc": null, "banned_by": null, "removal_reason": null, "link_id": "t3_6xibrf", "likes": null, "replies": {"kind": "Listing", "data": {"modhash": "", "whitelist_status": "all_ads", "children": [{"kind": "t1", "data": {"subreddit_id": "t5_2vsta", "approved_at_utc": null, "banned_by": null, "removal_reason": null, "link_id": "t3_6xibrf", "likes": null, "replies": "", "user_reports": [], "saved": false, "id": "dmhdtm8", "banned_at_utc": null, "gilded": 0, "archived": false, "report_reasons": null, "author": "MrSterlock", "can_mod_post": false, "ups": 2, "parent_id": "t1_dmh7c9c", "score": 2, "approved_by": null, "downs": 0, "body": "I'm sorry. Is there a problem?", "edited": false, "author_flair_css_class": "", "collapsed": false, "is_submitter": true, "collapsed_reason": null, "body_html": "<div class=\"md\"><p>I&#39;m sorry. Is there a problem?</p>\n</div>", "stickied": false, "can_gild": true, "subreddit": "milliondollarextreme", "score_hidden": false, "permalink": "/r/milliondollarextreme/comments/6xibrf/im_sick_in_the_head/dmhdtm8/", "subreddit_type": "public", "name": "t1_dmhdtm8", "created": 1504415173.0, "author_flair_text": "just give up", "created_utc": 1504386373.0, "subreddit_name_prefixed": "r/milliondollarextreme", "controversiality": 0, "depth": 1, "mod_reports": [], "num_reports": null, "distinguished": null}}], "after": null, "before": null}}, "user_reports": [], "saved": false, "id": "dmh7c9c", "banned_at_utc": null, "gilded": 0, "archived": false, "report_reasons": null, "author": "Kataphraktos_", "can_mod_post": false, "ups": 2, "parent_id": "t3_6xibrf", "score": 2, "approved_by": null, "downs": 0, "body": "the edge", "edited": false, "author_flair_css_class": "", "collapsed": false, "is_submitter": false, "collapsed_reason": null, "body_html": "<div class=\"md\"><p>the edge</p>\n</div>", "stickied": false, "can_gild": true, "subreddit": "milliondollarextreme", "score_hidden": false, "permalink": "/r/milliondollarextreme/comments/6xibrf/im_sick_in_the_head/dmh7c9c/", "subreddit_type": "public", "name": "t1_dmh7c9c", "created": 1504407112.0, "author_flair_text": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", "created_utc": 1504378312.0, "subreddit_name_prefixed": "r/milliondollarextreme", "controversiality": 0, "depth": 0, "mod_reports": [], "num_reports": null, "distinguished": null}}, {"kind": "t1", "data": {"subreddit_id": "t5_2vsta", "approved_at_utc": null, "banned_by": null, "removal_reason": null, "link_id": "t3_6xibrf", "likes": null, "replies": "", "user_reports": [], "saved": false, "id": "dmhexmj", "banned_at_utc": null, "gilded": 0, "archived": false, "report_reasons": null, "author": "Mecharodzilla", "can_mod_post": false, "ups": 1, "parent_id": "t3_6xibrf", "score": 1, "approved_by": null, "downs": 0, "body": "Almost makes me think of something Brett Easton Ellis would write ", "edited": false, "author_flair_css_class": "", "collapsed": false, "is_submitter": false, "collapsed_reason": null, "body_html": "<div class=\"md\"><p>Almost makes me think of something Brett Easton Ellis would write </p>\n</div>", "stickied": false, "can_gild": true, "subreddit": "milliondollarextreme", "score_hidden": false, "permalink": "/r/milliondollarextreme/comments/6xibrf/im_sick_in_the_head/dmhexmj/", "subreddit_type": "public", "name": "t1_dmhexmj", "created": 1504416644.0, "author_flair_text": "Ancient Chinese knowledge", "created_utc": 1504387844.0, "subreddit_name_prefixed": "r/milliondollarextreme", "controversiality": 0, "depth": 0, "mod_reports": [], "num_reports": null, "distinguished": null}}], "after": null, "before": null}}] |
[
"http://2.bp.blogspot.com/-uXXXK_MLotU/WqyfsoZmmLI/AAAAAAAC9CM/jHBuFRZZjlYwU2xXsws6mFSNrdsbgkOMwCHMYCw/s0/000.png",
"http://2.bp.blogspot.com/-2VKtlWu_XS0/Wqyfst2RMWI/AAAAAAAC9CQ/wP3Wccqq0Tw6s3g7GutmewCy523gllM9gCHMYCw/s0/001.png",
"http://2.bp.blogspot.com/-eKjYFDWiwsE/WqyfsxvJWrI/AAAAAAAC9CU/46GhMbz_A-U0hqgOnwVO4YdZfO26Dv3QACHMYCw/s0/002.png",
"http://2.bp.blogspot.com/-AHEsMHuUU-o/WqyftIpF0HI/AAAAAAAC9CY/QUDwVqGYjH8jveVHnR_VUw4NVLygntPVgCHMYCw/s0/003.png",
"http://2.bp.blogspot.com/-4Eu2JwNf8NY/WqyftYzoPzI/AAAAAAAC9Cc/7039TmiVbZgCf1TobYZwZzkCgCDRB1UdACHMYCw/s0/004.png",
"http://2.bp.blogspot.com/--Nl3XtTCQ_w/Wqyft8aOjvI/AAAAAAAC9Ck/5tz2ROfoAzscGfT9R7T3XlDvBm-CVnWKwCHMYCw/s0/005.png",
"http://2.bp.blogspot.com/-KQSe8DUAYlQ/WqyfuakKD_I/AAAAAAAC9Cs/dOeHNcWy7FsFiFWyBubZPxCdfk91C5HUwCHMYCw/s0/006.png",
"http://2.bp.blogspot.com/-fsUhTegkjxM/Wqyfu3fzKZI/AAAAAAAC9C0/D9HTdv3Uml4Gfn6gYpxo95iKmlwPdO0ggCHMYCw/s0/007.png",
"http://2.bp.blogspot.com/-ltI4GcBT6HE/WqyfvR4FojI/AAAAAAAC9C8/QInnd_gTBnY7s4yO75PQNvQhc0BA5qJEQCHMYCw/s0/008.png",
"http://2.bp.blogspot.com/-VbXVTPRBR3A/WqyfwCdCREI/AAAAAAAC9DE/m2TGDjFDWL894oFCssLck8nfOQV96mgBACHMYCw/s0/009.png",
"http://2.bp.blogspot.com/-LWMzK_DVkuw/WqyfwSTbpzI/AAAAAAAC9DM/oFolzQ4Mli8ys4JydpXihuPDBCwMfRbOgCHMYCw/s0/010.png",
"http://2.bp.blogspot.com/-6AMPK-muTuY/Wqyfw7ljYII/AAAAAAAC9DU/bGUnoTFJoaodBn4mP4XFUuPB47Bx3b21QCHMYCw/s0/011.png",
"http://2.bp.blogspot.com/-YSnnajJOUuc/WqyfxrapReI/AAAAAAAC9Dc/CHX2Y9AvWpweFqTz5bMp_C3YKY1zKH_1QCHMYCw/s0/012.png",
"http://2.bp.blogspot.com/-XLUSBy0dxvs/WqyfyF0xS0I/AAAAAAAC9Dk/V6wLbFOh0oUQ1uQznk-J1X1DqdSEgHlqQCHMYCw/s0/013.png",
"http://2.bp.blogspot.com/-ecCxRomjVRw/WqyfyQhSpMI/AAAAAAAC9Do/xfH-16xySrMPyE4fGfP9hl0krbsDPVcCQCHMYCw/s0/014.png",
"http://2.bp.blogspot.com/-vIUtPDNr4AU/WqyfzYapmAI/AAAAAAAC9Dw/wgnz5oDCnDsgW72Tbfftaf31iKzZEW7JACHMYCw/s0/015.png",
"http://2.bp.blogspot.com/-WjCi5tCUCyI/WqyfzqmvKuI/AAAAAAAC9D8/o8fquo_3qHEVUX2MgM-vmi543GDiadhyACHMYCw/s0/016.png",
"http://2.bp.blogspot.com/-ikiw3w0XzeY/Wqyf0aWQ_hI/AAAAAAAC9EE/jvcpIa7cKn49eNRL983qzTigLHoHpFPTwCHMYCw/s0/017.png",
"http://2.bp.blogspot.com/-zFaDkYs8CKs/Wqyf03uoUgI/AAAAAAAC9EM/6tkUa4jsS_k3reZDpZF3yP_scSyGorTxACHMYCw/s0/018.png",
"http://2.bp.blogspot.com/-K_Pw95Ua-iM/Wqyf1UHxAvI/AAAAAAAC9EU/olWvDQdpuhoGq8k9PsnNNAEcMMCl4k7FwCHMYCw/s0/019.png",
"http://2.bp.blogspot.com/-FLkIXMBu9RI/Wqyf1_4A3BI/AAAAAAAC9Ec/5ZMrVgXtNQoEgBFXu1hCv76xd8RkpvWmgCHMYCw/s0/020.png",
"http://2.bp.blogspot.com/-cBuqEA13NYk/Wqyf2bXP2WI/AAAAAAAC9Ek/3uaF80taLfkJzSsHd9Gp2D0yybHlGFsnwCHMYCw/s0/021.png",
"http://2.bp.blogspot.com/-4DtPQ4Rif6U/Wqyf24e2QbI/AAAAAAAC9Es/Wv3imQSwNccX_gYTvSzmHYNVmz35PzKPgCHMYCw/s0/022.png",
"http://2.bp.blogspot.com/-GzyhPAQ-SKk/Wqyf3UOCsSI/AAAAAAAC9E0/fJiKPVVtXz8MLwY8rsfGroM2a8ISOdHeACHMYCw/s0/023.png",
"http://2.bp.blogspot.com/-EUWxjjZkza4/Wqyf3-_jewI/AAAAAAAC9E8/B6Nth-Nll0EV23eatGPRjwLgLwPwLo9qQCHMYCw/s0/024.png",
"http://2.bp.blogspot.com/-oJ7tlixblcQ/Wqyf4mznoHI/AAAAAAAC9FE/6iY43QO3vCYVQzx7y1YRB0PTAVZqWqwJQCHMYCw/s0/025.png",
"http://2.bp.blogspot.com/-B7dl7-PVxcE/Wqyf5N1R7OI/AAAAAAAC9FM/MsSCXGbO7_QZ9ZdqofDrNGyiuTkLzDq8QCHMYCw/s0/026.png",
"http://2.bp.blogspot.com/-2sMw05JxQHY/Wqyf5h5pbHI/AAAAAAAC9FU/I0JN_3yLmzYCET2odbkj0A4Kl7-iXQ5ggCHMYCw/s0/027.png",
"http://2.bp.blogspot.com/-Vt6Fqc1B2H0/Wqyf6dkiqOI/AAAAAAAC9Fc/yICLUwUHmGkJhET6_JuMq4Kisob0kTzAQCHMYCw/s0/028.png",
"http://2.bp.blogspot.com/-f1hiL0vsHAQ/Wqyf66z1RbI/AAAAAAAC9Fk/eXylb63PRPwNQpA_rHPtjQgRLpyFu0qiwCHMYCw/s0/029.png",
"http://2.bp.blogspot.com/-MiVeK5quJyA/Wqyf7Sbir5I/AAAAAAAC9Fs/Ux6kz3XoYaEVZeHfHEaWkQqOchUTm6LmACHMYCw/s0/030.png",
"http://2.bp.blogspot.com/-r0YHs2KesmA/Wqyf7kavEdI/AAAAAAAC9Fw/s-Bc5w8GNPoOJzKszuX9O_Ktg-s4VK-9QCHMYCw/s0/031.png",
"http://2.bp.blogspot.com/-lOivq7t6A50/Wqyf7zZREtI/AAAAAAAC9F0/-fcATc5dsSAMESd7iVvMoNCWBgzpvbhDgCHMYCw/s0/032.png",
"http://2.bp.blogspot.com/-WOcvzHHC6vI/Wqyf8LKwQtI/AAAAAAAC9F4/v2Xh92o6ewUwa5lw5-WJ_7uJXNc2DE3EACHMYCw/s0/033.png",
"http://2.bp.blogspot.com/-CRnDB3nkWaQ/Wqyf8S0yMfI/AAAAAAAC9F8/VJznusCaPA4IoodmF1ilM4fCQvpkc4B2wCHMYCw/s0/034.png",
"http://2.bp.blogspot.com/-U8GJZzHgjPA/Wqyf8Q19ciI/AAAAAAAC9GA/iiBLI3ew5AQji1djuGBlwbA0kQTMJEcFQCHMYCw/s0/035.png",
"http://2.bp.blogspot.com/-uCoL7G0jhl0/Wqyf8nB1L2I/AAAAAAAC9GE/tftswwDuVAUKCGc4DhekqsAx-XvCHjyOQCHMYCw/s0/036.png",
"http://2.bp.blogspot.com/-K9qWbllmOZI/Wqyf8zayXBI/AAAAAAAC9GI/--70rhoBmsIonVF5f4rR-FbZrL-j8lmtwCHMYCw/s0/037.png",
"http://2.bp.blogspot.com/-8AkpJUtIo8k/Wqyf9PurHXI/AAAAAAAC9GM/oOCWaODzyfYTR320g-j-F60L9qHvJEJnwCHMYCw/s0/038.png",
"http://2.bp.blogspot.com/-qrGnuux0gEo/Wqyf9c8P9oI/AAAAAAAC9GQ/NYDNnxHIj54glBuDHAASVVyLx4pCeIjvQCHMYCw/s0/039.png",
"http://2.bp.blogspot.com/-vDcmHp8-hGU/Wqyf9hbeZMI/AAAAAAAC9GU/W9ytjtAB-EkbfLB_qbeFpY_9kOup_W9IwCHMYCw/s0/040.png",
"http://2.bp.blogspot.com/-TldQrjNqXls/Wqyf9wMkzBI/AAAAAAAC9GY/-wjhCho0nLwyHnzKF0bcTbduC5vzRO8GQCHMYCw/s0/041.png",
"http://2.bp.blogspot.com/-unWGd7ABR8A/Wqyf-JLSq4I/AAAAAAAC9Gc/-m3slmuATt8nfUIJN8tRt79JX5954qmBgCHMYCw/s0/042.png",
"http://2.bp.blogspot.com/-lQ9AJoawPrE/Wqyf-TZsfwI/AAAAAAAC9Gg/sTvHUdrlaCA4scESkNMyC7_luvXsYB2VwCHMYCw/s0/043.png",
"http://2.bp.blogspot.com/-arBpDL-Tiig/Wqyf-YAkbUI/AAAAAAAC9Gk/neroRigo6rcsBsEXl1zqYRG3-UdbYv9qACHMYCw/s0/044.png",
"http://2.bp.blogspot.com/-V-pS1LoQhPc/Wqyf-4Lo1II/AAAAAAAC9Go/bz_dyvzM5KoZtFe4EwV9XnNl2JYd1QWxwCHMYCw/s0/045.png",
"http://2.bp.blogspot.com/-1-AF6Exze7E/Wqyf_Bv3XGI/AAAAAAAC9Gs/n1apmUZqtiQeKd4DKPdoWo47VQlBLDEKwCHMYCw/s0/046.png",
"http://2.bp.blogspot.com/-FhNgyVCCio4/Wqyf_N_M4FI/AAAAAAAC9Gw/55OVllSlCVMa1DGz101oIldhQ7qdrbIWACHMYCw/s0/047.png",
"http://2.bp.blogspot.com/-cDE3cqy5bIM/Wqyf_dTEv4I/AAAAAAAC9G0/REmc2_DpdUobMnvcMYmWDrWHx_4iiHwPwCHMYCw/s0/048.png",
"http://2.bp.blogspot.com/-tfvQqbPV6AE/Wqyf_nuRxHI/AAAAAAAC9G4/WpaQYe0grdgdd0E8x6xSAAa1OHrNBR4AgCHMYCw/s0/049.png",
"http://2.bp.blogspot.com/--g_V-FnuebA/WqygAKjmRlI/AAAAAAAC9G8/QNXfmFeK34ML3mbFSAbAM_bjsKWvmT1VwCHMYCw/s0/050.png",
"http://2.bp.blogspot.com/-QMt9lxuLw6E/WqygAY6_HrI/AAAAAAAC9HA/Z9zHE6Q_BaY5UJmvjtfSJ_kIHHEYlxDcQCHMYCw/s0/051.png"
] |
{"title":"[MikeInBrazil] Erica Martinelli (Tempting Erika / 03.03.2013)","uid":8217360,"size":353683438,"categoryP":"porn","categoryS":"movies","magnet":"?xt=urn:btih:1ecbcb9b42b4774393da32b1c9c247fa3e649dcf&dn=%5BMikeInBrazil%5D+Erica+Martinelli+%28Tempting+Erika+%2F+03.03.2013%29&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Fopen.demonii.com%3A1337&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Fexodus.desync.com%3A6969","seeders":1,"leechers":1,"uploader":"chkm8te","files":1,"time":1362371564,"description":"[MikeInBrazil] Erica Martinelli (Tempting Erika / 03.03.2013)\n\nWhile Most of the World was Frozen, Erica was cooling off by the pool. She was oiling her self down and living life in the tropics. We know how much she loved to fuck, so we just had to join her. We had her and the pool all to ourselves. She knew what we were up to when she saw the camera. Tony was lounging in the corner just waiting like a cat scoping out his toy to pounce on. Erica teased the camera while he took his time to come over and take a dive in between her legs. He made ​​sure her pussy was as wet as the pool. She got his dick stiff and bounced on it until she was ready for the back door plunging. I'm glad we were in a secluded area because she was letting the world know she had a dick in her ass. She finished Tony off by making a mess of of her face with his man cream.\n\nScreens: <a href="\nhttp://xxxhost.me/viewer.php?file=3t6pw95nqtnrs7m881tj.jpg" rel="nofollow" target="_NEW">\nhttp://xxxhost.me/viewer.php?file=3t6pw95nqtnrs7m881tj.jpg</a>\n <a href="\nhttp://xxxhost.me/viewer.php?file=rydwb1cgy0cf65pzsb1g.jpg" rel="nofollow" target="_NEW">\nhttp://xxxhost.me/viewer.php?file=rydwb1cgy0cf65pzsb1g.jpg</a>","torrent":{"xt":"urn:btih:1ecbcb9b42b4774393da32b1c9c247fa3e649dcf","amp;dn":"%5BMikeInBrazil%5D+Erica+Martinelli+%28Tempting+Erika+%2F+03.03.2013%29","amp;tr":["udp%3A%2F%2Ftracker.openbittorrent.com%3A80","udp%3A%2F%2Fopen.demonii.com%3A1337","udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969","udp%3A%2F%2Fexodus.desync.com%3A6969"],"infoHash":"1ecbcb9b42b4774393da32b1c9c247fa3e649dcf","infoHashBuffer":{"type":"Buffer","data":[30,203,203,155,66,180,119,67,147,218,50,177,201,194,71,250,62,100,157,207]},"announce":[],"urlList":[]}} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.