text stringlengths 6 2.91M |
|---|
{"Raleigh": {"Long View Center": "The Long View Center is a historic church building located in the Moore Square Historic District of Raleigh, North Carolina, United States. The facility sits directly across from Moore Square, one of two surviving four-acre (1.6 ha) parks from Raleigh's original 1792 plan. Built between 1879 and 1881, Long View was originally known as Tabernacle Baptist Church."}} |
{
"actions": [
{
"acted_at": "2005-04-27",
"committee": "Committee on Rules and Administration",
"references": [
{
"reference": "CR S4409",
"type": "text of measure as introduced"
}
],
"status": "REFERRED",
"text": "Read twice and referred to the Committee on Rules and Administration.",
"type": "referral"
}
],
"amendments": [],
"bill_id": "s920-109",
"bill_type": "s",
"committees": [
{
"activity": [
"referral",
"in committee"
],
"committee": "Senate Rules and Administration",
"committee_id": "SSRA"
}
],
"congress": "109",
"cosponsors": [],
"enacted_as": null,
"history": {
"awaiting_signature": false,
"enacted": false,
"vetoed": false
},
"introduced_at": "2005-04-27",
"number": "920",
"official_title": "A bill to amend chapter 1 of title 3, United States Code, relating to Presidential succession.",
"popular_title": null,
"related_bills": [
{
"bill_id": "hr1943-109",
"reason": "related"
}
],
"short_title": "Presidential Succession Act of 2005",
"sponsor": {
"district": null,
"name": "Cornyn, John",
"state": "TX",
"thomas_id": "01692",
"title": "Sen",
"type": "person"
},
"status": "REFERRED",
"status_at": "2005-04-27",
"subjects": [
"Advice and consent of the Senate",
"Cabinet officers",
"China",
"Congress",
"Congressional voting",
"Department of Homeland Security",
"Diplomats",
"East Asia",
"Electoral college",
"Europe",
"France",
"Government operations and politics",
"International affairs",
"Nominations for office",
"Political parties",
"Presidential appointments",
"Presidential inaugurations",
"Presidential succession",
"Resignation from office",
"Russia",
"Salaries",
"United Kingdom",
"United Nations",
"Vice Presidents",
"Voting"
],
"subjects_top_term": "Government operations and politics",
"summary": {
"as": "Introduced",
"date": "2005-04-27",
"text": "Presidential Succession Act of 2005 - Modifies the presidential succession list to include, following the Secretary of Veterans Affairs, the Secretary of Homeland Security, the Ambassador to the United Nations, the Ambassador to Great Britain, the Ambassador to Russia, the Ambassador to China, and the Ambassador to France. Revises the provision specifying how long an acting President shall serve to provide that an acting President shall continue to serve as such until the expiration of the then current Presidential term or until the disability of the President or Vice-President is removed."
},
"titles": [
{
"as": "introduced",
"title": "Presidential Succession Act of 2005",
"type": "short"
},
{
"as": "introduced",
"title": "A bill to amend chapter 1 of title 3, United States Code, relating to Presidential succession.",
"type": "official"
}
],
"updated_at": "2013-02-02T20:37:28-05:00"
} |
[
{
"content": "<p>I always got the impression, especially in C++ land, that SeqCst was intended to be the \"lazy option\" for people who don't want to think about concurrency in the more local sense of establishing relations between reads and writes and instead want a global clock. I don't think I have ever seen anyone use SeqCst ordering after considering all the options carefully; it's always because they don't want to think about relaxed memory and SeqCst is the strongest available ordering, so it's at least as correct as the appropriate ordering.</p>\n<p>Personally I find it hard to believe that concurrency has any \"lazy option\" (where correctness is easy and performance is not great) unless you are in the functional programming / safe rust paradigm where races of all kinds are impossible.</p>",
"id": 225429490,
"sender_full_name": "Mario Carneiro",
"timestamp": 1612644476
},
{
"content": "<p>(The \"lazy option\" I know that seems reasonable is the \"I just wanted a counter of work done, so I <code>.fetch_add(1, SeqCst)</code> in some safe code, and I use the value for logging, not control flow\" kind of thing.)</p>",
"id": 225431522,
"sender_full_name": "scottmcm",
"timestamp": 1612647696
},
{
"content": "<p>I would use <code>Relaxed</code> ordering for something like that. The only thing that has to be ordered in that example is the lines of log themselves, unless you want a property like \"if I see this log line then that piece of work has been committed to disk\" which seems a little unnecessary and hard to establish besides.</p>",
"id": 225436490,
"sender_full_name": "Mario Carneiro",
"timestamp": 1612656301
},
{
"content": "<p><span class=\"user-mention silent\" data-user-id=\"125270\">scottmcm</span> <a href=\"#narrow/stream/136281-t-lang.2Fwg-unsafe-code-guidelines/topic/Converting.20.60.26AtomicFoo.60.20to.20.60.26.5BAtomicU8.3B.20N.5D.60.20and.20using.20it/near/225431522\">said</a>:</p>\n<blockquote>\n<p>(The \"lazy option\" I know that seems reasonable is the \"I just wanted a counter of work done, so I <code>.fetch_add(1, SeqCst)</code> in some safe code, and I use the value for logging, not control flow\" kind of thing.)</p>\n</blockquote>\n<p>if you're only doing safe code, the order doesn't matter -- otherwise we couldnt let safe code use weaker orderings</p>",
"id": 225459024,
"sender_full_name": "RalfJ",
"timestamp": 1612696705
},
{
"content": "<p>(FWIW, I once tried to combat the idea of SeqCst as the lazy option, with no success: <a href=\"https://github.com/rust-lang/rfcs/pull/2503\">https://github.com/rust-lang/rfcs/pull/2503</a>)</p>",
"id": 225459061,
"sender_full_name": "RalfJ",
"timestamp": 1612696757
},
{
"content": "<p><long-vaguely-offtopic-comment><br>\n<span class=\"user-mention silent\" data-user-id=\"271719\">Mario Carneiro</span> <a href=\"#narrow/stream/136281-t-lang.2Fwg-unsafe-code-guidelines/topic/Converting.20.60.26AtomicFoo.60.20to.20.60.26.5BAtomicU8.3B.20N.5D.60.20and.20using.20it/near/225436490\">said</a>:</p>\n<blockquote>\n<p>I don't think I have ever seen anyone use SeqCst ordering after considering all the options carefully; it's always because they don't want to think about relaxed memory and SeqCst is the strongest available ordering, so it's at least as correct as the appropriate ordering.</p>\n</blockquote>\n<p>So, I have a work-in-progress blog post about \"When do we actually need Ordering::SeqCst?\" so this is a thing I've thought about a lot. (too messy to link even though i linked my other notes below...)</p>\n<p>The main case it comes up is StoreLoad barriers, which can't be directly expressed without SeqCst (and it's not even obvious to me that SeqCst provides a StoreLoad barrier, but apparently it does). The other case is <a href=\"https://gist.github.com/thomcc/6afe4a89ab5eaeb83af51b53fbd4998b\">contrived examples</a>, (although even though this is contrived, I <em>guess</em> I believe that code in the wild is often broken under non-SC).</p>\n<p>Concretely I've hit the \"use SeqCst as a StoreLoad barrier\" case when writing futexy locking system. It was pretty tricky to figure out why <code>relacy</code> ( like loom for c++ but much more effective and thorough IME) was upset. Ultimately, I ended up writing a big comment about why the loaded need SC and why not to try to lower it (it <em>looks</em> like it should just need acquire...</p>\n<p><span class=\"user-mention silent\" data-user-id=\"271719\">Mario Carneiro</span> <a href=\"#narrow/stream/136281-t-lang.2Fwg-unsafe-code-guidelines/topic/Converting.20.60.26AtomicFoo.60.20to.20.60.26.5BAtomicU8.3B.20N.5D.60.20and.20using.20it/near/225436490\">said</a>:</p>\n<blockquote>\n<p>Personally I find it hard to believe that concurrency has any \"lazy option\" (where correctness is easy and performance is not great)</p>\n</blockquote>\n<p>Hard agree. In C++ at least someone can leave off the argument to mean \"I haven't thought about it\". In Rust I sometimes have a hard time telling if it's \"this code actually needs SeqCst\" vs. \"idk but the docs told me this is least likely to be wrong\".</p>\n<p>This is especially true in cases like <code>libstd</code> which you'd think has thought about this stuff a great deal, but instead uses SeqCst all over the place without thinking nor leaving a comment indicating that a better atomic order than SeqCst is possible (I guess it makes sense that these comments don't exist given the resistance there is to lowering them, though)</p>\n<p>That said, there sorta is a lazy option for imperative code, or at least lazier: using locks. This is a lot harder to get wrong if you don't know what you're doing than atomics (you still have to worry about deadlocks, but if atomics are a viable alternative, deadlocks are not that likely for your case, and on the whole I'd say atomics have more pitfalls).</p>\n<p>Unfortunately, in Rust using mutex/rwlock from the stdlib:</p>\n<ul>\n<li>forces you to think about poisoning,</li>\n<li>can't be used in a static without wrapping it somehow,</li>\n<li>have a rather high performance overhead if you use the ones from libstd (although fixing the poisoning checks to avoid TLS reads helped move this to more acceptable perf)</li>\n<li>requires libstd (a downside for libraries and such who want to be <code>no_std</code> — note that IME, most users of no_std do have an actual OS, and are either library crates or users trying to slim binary size, which means that using os stuff <em>would</em> be an option for them...)</li>\n<li>makes your type unable to be returned from const fn (if it has a mutex/rwlock field),</li>\n<li>will make clippy yell at you (if it's just guarding a number),</li>\n<li>can't be used on wasm (even though a single-threaded version could be written),</li>\n<li>etc... (I could probably come up with more...)</li>\n</ul>\n<p>(Which, uh, oof! Not really great huh? I think the decisions that lead hear make sense in isolation, but the outcome is very undesirable. And we wonder why people use those spinlock crates which fix so many of these issues (despite being an absolutely terrible idea on any semi-modern OS)... This is <em>really</em> a discussion for another time/place tho... I just... have a bit of a chip on my shoulder about it)</p>\n<p><span class=\"user-mention silent\" data-user-id=\"125270\">scottmcm</span> <a href=\"#narrow/stream/136281-t-lang.2Fwg-unsafe-code-guidelines/topic/Converting.20.60.26AtomicFoo.60.20to.20.60.26.5BAtomicU8.3B.20N.5D.60.20and.20using.20it/near/225431522\">said</a>:</p>\n<blockquote>\n<p>I just wanted a counter of work done</p>\n</blockquote>\n<p>Echoing that most counters can be Relaxed, but adding that I wouldn't sweat it unless you expect the code to run on PPC or you enjoy sweating it. it will probably have similar cost to a (full) cache miss on non-x86, and be cheap on x86 iff uncontended.</p>\n<p>FWIW <a href=\"https://gist.github.com/thomcc/1ac35d0340bb1a912d3d0350f6d51064\">https://gist.github.com/thomcc/1ac35d0340bb1a912d3d0350f6d51064</a> is my rough notes/outline for a future blog post on how to reason about the perf/hardware impact of atomic operations (including different orderings), if you or anybody else cares.</p>\n<p></long-vaguely-offtopic-comment></p>",
"id": 225459210,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1612696938
},
{
"content": "<p>(made that SeqCst discussion a separate topic)</p>",
"id": 225459505,
"sender_full_name": "RalfJ",
"timestamp": 1612697393
},
{
"content": "<p>regarding SeqCst in libstd, indeed there have been PRs to replace (some of) them by release/acquire, that were rejected on the grounds that we shouldn't needlessly complicate things unless there is a strong expectation or a proof that this will help perf.</p>",
"id": 225459567,
"sender_full_name": "RalfJ",
"timestamp": 1612697447
},
{
"content": "<p>I can follow the reasoning behind this: it can certainly not be <em>wrong</em> to use SeqCst, and if it doesnt cost perf then why bother thinking more about it? but at the same time I think that \"not thinking more about it\" when writing fine-grained concurrent code will easily lead to buggy code even when using SeqCst everywhere... but I have no evidence that this is actually true (people that follow the \"SeqCst everywhere\" paradigm seem to be able to write correct concurrent code just fine)</p>",
"id": 225459748,
"sender_full_name": "RalfJ",
"timestamp": 1612697652
},
{
"content": "<blockquote>\n<p>In C++ at least someone can leave off the argument to mean \"I haven't thought about it\". In Rust I sometimes have a hard time telling if it's \"this code actually needs SeqCst\" vs. \"idk but the docs told me this is least likely to be wrong\".</p>\n</blockquote>\n<p>That's an interesting point, I had not thought about it this way.</p>",
"id": 225459779,
"sender_full_name": "RalfJ",
"timestamp": 1612697732
},
{
"content": "<p><span class=\"user-mention silent\" data-user-id=\"120791\">RalfJ</span> <a href=\"#narrow/stream/136281-t-lang.2Fwg-unsafe-code-guidelines/topic/SeqCst.20as.20the.20.22lazy.20option.22.20for.20atomic.20orderings/near/225459567\">said</a>:</p>\n<blockquote>\n<p>regarding SeqCst in libstd, indeed there have been PRs to replace (some of) them by release/acquire, that were rejected on the grounds that we shouldn't needlessly complicate things unless there is a strong expectation or a proof that this will help perf.</p>\n</blockquote>\n<p>I've had pretty good luck with PRs to do this but when I do it i generally expect there's a decent chance that the PR will be rejected unless there's another compelling improvement (getting rid of SeqCst inside the <code>time::Instant</code> code also got rid of a static mut and some unsafe, so it was easy to justify for example).</p>\n<p>So, it's very tempting for me to go into why I disagree with the requirement for benchmarks for overly-strict orderings in directly user callable stuff (having benchmarked a lot of concurrent code, it's just about the hardest thing to get reasonable answers out of — for example: spinlocks and using <code>sched_yield()</code> as a \"smarter <code>hint::spin_loop()</code>\" look like a great ideas in benchmarks but are disastrous in practice), but it's a libs decision and I don't want to upset anybody or fight about it.</p>\n<p>The I will say that the stdlib (std::sync and std::thread in particular for things not coming from libcore/liballoc), already have a fairly justified reputation for bad performance and users going to potentially less-well-tested and robust third party crates, or direct use of OS primitives. (I also get the feeling that there are those on the stdlib that don't actually believe there's a real cost to SeqCst over other orderings, but it's neither here nor there...).</p>\n<blockquote>\n<p>but I have no evidence that this is actually true (people that follow the \"SeqCst everywhere\" paradigm seem to be able to write correct concurrent code just fine)</p>\n</blockquote>\n<p>It definitely depends, I've seen code that has trivial race because it does things like <code>if blah.load(SeqCst) == 0 { blah.store(thing, SeqCst); }</code> IME this kind of thing is quite common (even libstd had it), and especially if you expand it to other cases \"performing actions non-atomically using atomic substeps\". This is the kind of thing why I'd just as much recommend taking a lock (except for the reasons mentioned before...) for code that doesnt need to sweat perf. As another example, there's stuff like std::sync::mpsc which is full of SeqCst and still has issues like <a href=\"https://github.com/rust-lang/rust/issues/39364\">https://github.com/rust-lang/rust/issues/39364</a> which are fairly serious and hard to fix (the amount of complexity is a bit surprising for a queue that is not fully MPMC too)².</p>\n<p>Anyway I'm certainly not saying that SeqCst makes people write buggy code. I'm not hating on SeqCst, I just think concurrency is hard and pushing people to write lockfree code (as aggressively as the various factors in Rust do, unintentionally or not) while telling them that SeqCst is the easy correct choice is uh, well, it's an interesting decision. Concretely I have ideas how to improve this (better documentation, linting to help make the API less footguney)...</p>\n<p>That said I'm unsure how much this is relevant for UCG, if I'm being honest</p>\n<p>² That said, it's not like e.g. crossbeam's channel never had issues, and I'd still caution people against flume due to the use of a very very dodgy spinlock on unix which was likely implemented by following benchmark advice without thinking about why a benchmark might say that (which can even deadlock in some cases, I still need to file this bug though...)</p>",
"id": 225462713,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1612702230
},
{
"content": "<p><span class=\"user-mention\" data-user-id=\"209168\">@Thom Chiovoloni</span> FWIW I'd love to read more blog posts on memory ordering,<br>\nI find llvm/C++ docs on memory ordering pretty complex and boring, so I'm one of those people who just throws SeqCst because I don't feel confident enough to argue otherwise (unlike unsafe code where the docs are pretty good and interesting so I find it easier to reason about and link references to why it is actually safe)</p>",
"id": 225486567,
"sender_full_name": "Elichai Turkel",
"timestamp": 1612735511
},
{
"content": "<p>Well, for me, I basically never use SeqCst and just use Acquire, Release, Relaxed, or AcqRel as appropriate. You can think of them as: if your using the atomic to send data in other variables to other threads, then the act of sending is Release, the act of receiving is Acquire, and if your not using the atomic to send data, then Relaxed is best. AcqRel is for both sending and receiving in the same atomic operation</p>",
"id": 225488298,
"sender_full_name": "Jacob Lifshay",
"timestamp": 1612737905
},
{
"content": "<blockquote>\n<p>AcqRel is for both sending and receiving in the same atomic operation</p>\n</blockquote>\n<p>which can only happen with RMW operations (read-modify-write, i.e., things like compare_exchange)</p>",
"id": 225666717,
"sender_full_name": "RalfJ",
"timestamp": 1612865112
},
{
"content": "<p>Most of the time I use <code>SeqCst</code>it's for stuff like emulating a <code>CountDownLatch</code> from Java or for keeping counters - stuff that could probably be weaker but I don't care enoguh for. I also remember <code>parking_lot</code> being blocked on not using <code>SeqCst</code> and weaker orderings, so I generally follow that safety philosophy in my own code.</p>",
"id": 225794342,
"sender_full_name": "Quy Nguyen",
"timestamp": 1612932670
},
{
"content": "<p>(ugh im sorry for writing so much, i just have a lot of thoughts on <em>this specific topic</em>)</p>\n<blockquote>\n<p>I also remember parking_lot being blocked on not using SeqCst and weaker orderings</p>\n</blockquote>\n<p>Yeah, that was... fairly controversial¹... I also think it's misguided to assume that if you don't trust a concurrent algorithm that it's likely to be made correct by using SeqCst. IME most concurrency bugs are <em>not</em> caused by failure to use SC over another ordering² — in fact, it's very hard to come up with examples of code where SC matters at all compared to AcqRel. There are also non-performance downsides to SeqCst-everywhere:</p>\n<ul>\n<li>Acq/Rel/AcqRel are a lot easier to detect bugs in than SC³. Some race checkers (notably loom — the most popular one in Rust) do not support SeqCst, but even where it is supported, it's usually not checked as exhaustively or take a longer time to reveal issues (as is the case in Relacy, the one I used to use for C++).</li>\n<li>Using SC can mask ordering bugs elsewhere — Often if I tighten up the orderings (or replace a mutex) in one place, and it ends up revealing a bug that was hidden elsewhere in my code.</li>\n<li>Because of that, providing SeqCst in an API and later removing it is kinda a breaking change, unless it was clear that you weren't promising a stronger ordering. And so this is maybe a dodgy thing to do in the stdlib with the rationale that \"we'll lower these later if benchmarks justify it\" (which just seems to me like \"once someone bothers to write benchmarks that measure this / on hardware where it's sufficiently costly\"...)</li>\n<li>More broadly, code that is accidentally relying on SC for correctness is probably very fragile and feels sensitive to breaking in the future (for example, if a new API is added by copying and changing existing internals). This is true of any algorithm with a bug that works for a reason that is not fully known to the maintainers, and it's not like having a bug would be any better, but I don't think slapping SC on things is enough to gain confidence in correctness.</li>\n<li>This also feels harder to maintain, as the orderings also indicate the direction that things flow across threads. Comments could be added indicating what the \"real\" ordering is, but I'm not a fan of these as they're untested and get stale.</li>\n</ul>\n<p>That said, I do agree with aspects of the review: relaxed should require justification on correctness (usually this is straightforward), and acq/rel should at least note which operations it's synchronizing with. I also agree that parking_lot should have more tests, ideally that run under tsan, and ideally some fuzzing. Just \"SC until proven otherwise\" feels like not the play to me. (Oh well)</p>\n<p>Anyway, While all that is at lest <em>vaguely</em> on topic (if a bit of a ramble) for \"SC as lazy option\", I don't actually think it applies to most codebases. I think SC is a totally fine lazy option even in the stdlib, I just think fixes should be accepted and there should be no reason to favor it so heavily. I definitely don't fault people for using it if they don't know better, although I think it's worth knowing if you write concurrent code (especially unsafe!), since understanding what the orderings do will <em>absolutely</em> prevent issues in even SC-only code.</p>\n<hr>\n<p>¹ That review is kinda also what I was referring to when I said \"I also get the feeling that there are those on the stdlib that don't actually believe there's a real cost to SeqCst over other orderings\" above. It still feels very strange to me since it costs so much and is so rarely needed, maybe I'm in the minority of having had issues caused by it though.</p>\n<p>² Ordering bugs do happen for sure, but are almost always relaxed versus acquire-release in one form or another (rather than $any vs SC). And unless the only complex thing about the code is the orderings, for untested concurrent code I tend to be way more worried about stuff like fundamental algorithm bugs, or stuff like mishandling the pointers in the linked lists you often need for this kind of code (or, for parking_lot's case, the hash table code)</p>\n<p>³ This isn't to say that SeqCst fixes these bugs... It's not impossible, but if an algorithm was written under the assumption that you only needed acquire and release for those operations and was incorrect... it's probably still incorrect under SC, as SC's guarantees aren't really that much more useful in practice than what you get from acq/rel.</p>",
"id": 225803235,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1612943604
},
{
"content": "<p>FWIW I asked about orderings yesterday and of course got the initial response \"just use SeqCst\". I looked into it some more and it turns out there is in fact no ordering strong enough for what I wanted - atomics were the wrong solution and I needed locking instead. So I definitely think \"just use SeqCst\" is not great because it means you're not thinking about what properties you actually need from your program.</p>",
"id": 226002065,
"sender_full_name": "Joshua Nelson",
"timestamp": 1613055362
},
{
"content": "<p><span class=\"user-mention\" data-user-id=\"209168\">@Thom Chiovoloni</span> You talked about the cost of SeqCst, but looking at ASM it looks that on x86 only Store uses <code>xchg</code> and loads just use a mov, does that mean that SeqCst reads are free on x86? or am I missing something and the cache is still invalidated somehow?</p>",
"id": 226021251,
"sender_full_name": "Elichai Turkel",
"timestamp": 1613062219
},
{
"content": "<p>x86_64 is a highly coherent architecture so like you saw atomic and non-atomic loads don't differ in many cases. On other things like ARM there is a significant difference though. And in call cases the atomic orderings also impose restrictions on compiler-level reordering.</p>",
"id": 226023500,
"sender_full_name": "Steven Fackler",
"timestamp": 1613063104
},
{
"content": "<p><span class=\"user-mention\" data-user-id=\"232545\">@Joshua Nelson</span> can you describe the situation where it was wrong? Did it involve multiple distinct variables?</p>",
"id": 226028363,
"sender_full_name": "nagisa",
"timestamp": 1613064968
},
{
"content": "<p><span class=\"user-mention\" data-user-id=\"123586\">@nagisa</span> I didn't have anything to synchronize <em>with</em></p>",
"id": 226028387,
"sender_full_name": "Joshua Nelson",
"timestamp": 1613064982
},
{
"content": "<p>I want to say \"everything between these points sees a certain value\", but you just can't do with atomics</p>",
"id": 226028431,
"sender_full_name": "Joshua Nelson",
"timestamp": 1613065005
},
{
"content": "<p>because another thread can change the value in the middle</p>",
"id": 226028484,
"sender_full_name": "Joshua Nelson",
"timestamp": 1613065026
},
{
"content": "<p><code>xchg</code> isn't free, it's implicitly <code>lock</code>-prefixed when an operand is memory. The loads are free, but only if there's no traffic on that cache line. (Note that compiling them in another way is possible too, where the stores are just normal movs, and the loads are <code>lock xadd 0</code>, <code>mfence; mov</code>...)</p>\n<p>Either way these are not free when theres traffic on the cache line, and the stores are going to take at least 20 cycles even if not.</p>\n<p><span class=\"user-mention silent\" data-user-id=\"232545\">Joshua Nelson</span> <a href=\"#narrow/stream/136281-t-lang.2Fwg-unsafe-code-guidelines/topic/SeqCst.20as.20the.20.22lazy.20option.22.20for.20atomic.20orderings/near/226002065\">said</a>:</p>\n<blockquote>\n<p>I looked into it some more and it turns out there is in fact no ordering strong enough for what I wanted</p>\n</blockquote>\n<p>Yeah this is another concern. People often think SeqCst will guarantee properties \"loads see the previously written write\", but it can't. The orderings aren't about the operations themselves, but about the accesses to other memory. A <code>load(SeqCst)</code> won't get there any faster than a <code>load(Relaxed)</code> (this might not be true on all processors, but in the memory model it is)</p>",
"id": 226030287,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613065750
},
{
"content": "<p>How do regular movs have different price depending on the traffic in the cache line?<br>\n(the compiler ordering I get, also the stores and the cost of xchg etc.)</p>",
"id": 226031030,
"sender_full_name": "Elichai Turkel",
"timestamp": 1613066013
},
{
"content": "<p>I mean, how does the processor knows these movs are \"atomic\"</p>",
"id": 226031163,
"sender_full_name": "Elichai Turkel",
"timestamp": 1613066047
},
{
"content": "<p>It doesn't, this is true for all movs.</p>",
"id": 226031183,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613066057
},
{
"content": "<p>To be pedantic, all aligned movs.</p>",
"id": 226038574,
"sender_full_name": "comex",
"timestamp": 1613069200
},
{
"content": "<blockquote>\n<p>Ordering bugs do happen for sure, but are almost always relaxed versus acquire-release in one form or another (rather than $any vs SC)</p>\n</blockquote>\n<p>Indeed that matches by experience (e.g. the bug in <code>Arc</code> that was found by the weak memory RustBelt project was a relaxed vs release/acquire bug)</p>",
"id": 226242618,
"sender_full_name": "RalfJ",
"timestamp": 1613218953
},
{
"content": "<p>I don't like <code>SeqCst</code> myself, the thing is, yes, it's true, you can replace all usages of other orderings with <code>SeqCst</code> and the code won't become more buggy than it was<br>\nhowever, it doesn't mean that outright wrong code using atomics will somehow become correct if you replace all orderings with <code>SeqCst</code><br>\nand the thing is, <code>SeqCst</code> isn't much more constrained than <code>Acquire</code>/<code>Release</code>/<code>AcqRel</code>, the guarantee provided by <code>SeqCst</code> is very subtle and actually needing it is very very rare</p>",
"id": 226478791,
"sender_full_name": "Konrad Borowski",
"timestamp": 1613458942
},
{
"content": "<p>atomics guarantee much less than many programers would expect, even with sequential consistency, and understanding what orderings do to begin with is IMO necessary to write atomic code correctly</p>",
"id": 226478861,
"sender_full_name": "Konrad Borowski",
"timestamp": 1613459032
},
{
"content": "<p>Maybe the documentation for <code>SeqCst</code> should be updated to say that <code>AcqRel</code> is almost always a better choice?</p>",
"id": 226524540,
"sender_full_name": "Jacob Lifshay",
"timestamp": 1613488210
},
{
"content": "<p>It would have to say that one of Acquire/Release/AcqRel is almost always a better choice since according to the docs at least AcqRel is limited to specifically combined load/store operations</p>",
"id": 226524884,
"sender_full_name": "Steven Fackler",
"timestamp": 1613488353
},
{
"content": "<p>maybe <code>AcqRel</code>could be changed to mean <code>Acquire</code> and/or <code>Release</code> and be valid everywhere? So, for just load ops, <code>AcqRel</code> means <code>Acquire</code>, and for just store ops <code>AcqRel</code> means just <code>Release</code></p>",
"id": 226529020,
"sender_full_name": "Jacob Lifshay",
"timestamp": 1613490175
},
{
"content": "<p>that way there's a better default option that requires little thought about orderings</p>",
"id": 226529090,
"sender_full_name": "Jacob Lifshay",
"timestamp": 1613490214
},
{
"content": "<p>though changing what <code>AcqRel</code> means could be too confusing</p>",
"id": 226529242,
"sender_full_name": "Jacob Lifshay",
"timestamp": 1613490290
},
{
"content": "<p>I think <span class=\"user-mention\" data-user-id=\"120791\">@RalfJ</span> proposed doing that a while ago, but can't remember where it ended up</p>",
"id": 226529615,
"sender_full_name": "Steven Fackler",
"timestamp": 1613490463
},
{
"content": "<p>Yeah that's exactly what I wanted to do with <a href=\"https://github.com/rust-lang/rfcs/pull/2503\">https://github.com/rust-lang/rfcs/pull/2503</a></p>",
"id": 226549135,
"sender_full_name": "RalfJ",
"timestamp": 1613497612
},
{
"content": "<p>but people didn't like it, mostly because \"it's not what C++ does\"</p>",
"id": 226549179,
"sender_full_name": "RalfJ",
"timestamp": 1613497626
},
{
"content": "<p>I think that outcome was unfortunate, but the concern that an AcqRel load would imply a release barrier that isn't actually present on the load... isn't <em>totally</em> unreasonable.</p>\n<p>When I get around to finishing <a href=\"https://github.com/rust-lang/rust/pull/79654\">https://github.com/rust-lang/rust/pull/79654</a> (probably not until next month, sadly) using the wrong value for Acquire/Release will at least be a compiler error.</p>",
"id": 226554647,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613499870
},
{
"content": "<p>what about adding a new <code>Ordering::AqOrRl</code> that is either <code>Acquire</code>, <code>Release</code>, or <code>AcqRel</code> depending on the op? That way <code>AcqRel</code> will still be consistent with the C++ version, and you could slowly stabilize it, it wouldn't be insta-stable.</p>",
"id": 226574958,
"sender_full_name": "Jacob Lifshay",
"timestamp": 1613508938
},
{
"content": "<p>AFAICT that was in the RFC, at least after the revision</p>",
"id": 226578223,
"sender_full_name": "Mario Carneiro",
"timestamp": 1613510444
},
{
"content": "<p>Yep</p>",
"id": 226578347,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613510519
},
{
"content": "<p><span class=\"user-mention silent\" data-user-id=\"198039\">Konrad Borowski</span> <a href=\"#narrow/stream/136281-t-lang.2Fwg-unsafe-code-guidelines/topic/SeqCst.20as.20the.20.22lazy.20option.22.20for.20atomic.20orderings/near/226478861\">said</a>:</p>\n<blockquote>\n<p>atomics guarantee much less than many programers would expect, even with sequential consistency, and understanding what orderings do to begin with is IMO necessary to write atomic code correctly</p>\n</blockquote>\n<p>I now feel bad about every atomic code I've written, always used SeqCst in Rust in C++ used the default (SeqCst) and in Go the only ordering they have (I think also SeqCst thought).<br>\nbut I never had a reason for that, I read <span class=\"user-mention\" data-user-id=\"209168\">@Thom Chiovoloni</span> gist but it's too bullet-pointy.</p>\n<p>Any recommendations for reads that aren't llvm docs or the C++ standard? I'd really like to understand the different orderings better, and see actual examples of how they differ and how to reason about them</p>",
"id": 226584748,
"sender_full_name": "Elichai Turkel",
"timestamp": 1613513118
},
{
"content": "<p>Well, \"I think SC is a totally fine lazy option\" is a thing I said above so I don't think anybody should feel bad about using it. Sadly, I don't have a lot of great resources. I think <a href=\"https://preshing.com/20120913/acquire-and-release-semantics/\">https://preshing.com/20120913/acquire-and-release-semantics/</a> (and other posts on the same website) are probably okay though</p>",
"id": 226585190,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613513252
},
{
"content": "<p>I think it's bad that there is this meaningless choice you have to make about whether to use acquire or release when the operation mostly dictates this (although some operations need more than one ordering setting, like RMW needs two and I think CAS needs three). Also the name is pretty bad, I would prefer something like \"message passing\" for acq/rel generally and <code>Send</code> and <code>Recv</code> instead of <code>Release</code> and <code>Acquire</code>. My best advice for using acq/rel correctly is to think of it as sending a message from point A to point B by reading a write, because that both captures most of the meaning of the ordering constraint and also essentially matches what the underlying cache coherence protocol is doing</p>",
"id": 226597960,
"sender_full_name": "Mario Carneiro",
"timestamp": 1613521081
},
{
"content": "<p>If your problem <em>can't</em> be described in terms of message passing, then probably <code>SeqCst</code> isn't sufficient to give you the ordering behavior that you want anyway and you should use a lock or mutex.</p>",
"id": 226598555,
"sender_full_name": "Mario Carneiro",
"timestamp": 1613521670
},
{
"content": "<p>Right, with the caveat that the thing you're sending/receiving <em>isn't</em> the value itself, but every other change made to memory previously.</p>",
"id": 226598655,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613521767
},
{
"content": "<p>well, it isn't <em>just</em> the value, the value itself is also synchronized</p>",
"id": 226598767,
"sender_full_name": "Mario Carneiro",
"timestamp": 1613521842
},
{
"content": "<p>Yeah, although using Acquire/Release (or SeqCst) won't make the value get there any faster than had you used Relaxed for the value is more my point, which is a common misconception</p>",
"id": 226606276,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613528814
},
{
"content": "<p>That sounds right, although with a relaxed store, couldn't the CPU decide not to commit the store even if there are other accesses in the vicinity? At least in the C11 model there isn't really anything besides a kind of eventual consistency that requires that value to get committed, while you can basically block on a seqcst or acq/rel write by reading other values that induce an ordering with the write operation. I don't know that any architecture does this but it seems admissible in the spec. That of course doesn't say anything about wall clock time to read the value, though there are some architectural operations outside the C11 memory model that probably do affect wall clock time to write, like non-temporal store in x86</p>",
"id": 226607687,
"sender_full_name": "Mario Carneiro",
"timestamp": 1613530534
},
{
"content": "<blockquote>\n<p>although with a relaxed store, couldn't the CPU decide not to commit the store even if there are other accesses in the vicinity?</p>\n</blockquote>\n<p>I guess. The C++11 standard requires them to eventually show up. Or, rather, it strongly recommends that they eventually show up:</p>\n<blockquote>\n<p>An implementation should ensure that the last value (in modification order) assigned by an atomic or synchronization operation will become visible to all other threads in a finite period of time.</p>\n</blockquote>",
"id": 226608040,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613531023
},
{
"content": "<p>Architecturally though, these things often boil down to <code>normal load; fence;</code> (for load) and <code>fence; normal store</code> (or sometimes <code>fence; normal store; fence;</code> for seqcst) on weak arches, which of course won't make the atomic values show up any sooner.</p>\n<p>on x86 the truth is more complicated because of the bus lock the seqcst store will take, but i think it's still largely the same situation.</p>",
"id": 226608277,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613531268
},
{
"content": "<p>this is true on really weak things like the (unsupported by rust, but supported by our memory model) alpha too. but to get into the architecture-specific details i'd recommend probably considering things under something like the linux kernel memory model (<a href=\"https://github.com/torvalds/linux/blob/master/Documentation/memory-barriers.txt\">https://github.com/torvalds/linux/blob/master/Documentation/memory-barriers.txt</a> is probably the best starting point), which tries to model these architecture-specific quirks.</p>\n<p>That said, the c++11 model is a lot simpler and probably more coherent too, and the kernel model is only relevant to rust in that it exists as a comparison point.</p>",
"id": 226608442,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613531466
},
{
"content": "<p>ARM-v8 has a ld.acq instruction IIRC, it's not always just a fence</p>",
"id": 226608454,
"sender_full_name": "Mario Carneiro",
"timestamp": 1613531494
},
{
"content": "<p>yeah, i'm aware, it's not unique in that (itanium had these too), but i believe they're specified as being equivalent to the fenced load (at least for itanium that was the case)</p>",
"id": 226608509,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613531537
},
{
"content": "<p>although maybe that just does the same thing as a fence would anyway; I tried looking at the ARM memory model but it looks like they took a page from C11 instead of having an operational model like x86</p>",
"id": 226608513,
"sender_full_name": "Mario Carneiro",
"timestamp": 1613531555
},
{
"content": "<p>(also for clarity, <code>fence</code> above isn't always the same fence. some arches have different fences. some don't. but the pattern is common)</p>",
"id": 226609322,
"sender_full_name": "Thom Chiovoloni",
"timestamp": 1613532620
},
{
"content": "<p><span class=\"user-mention silent\" data-user-id=\"271719\">Mario Carneiro</span> <a href=\"#narrow/stream/136281-t-lang.2Fwg-unsafe-code-guidelines/topic/SeqCst.20as.20the.20.22lazy.20option.22.20for.20atomic.20orderings/near/226608513\">said</a>:</p>\n<blockquote>\n<p>although maybe that just does the same thing as a fence would anyway; I tried looking at the ARM memory model but it looks like they took a page from C11 instead of having an operational model like x86</p>\n</blockquote>\n<p>AFAIK there is an equivalent operational model but it's hideously complicated^^ Peter Sewell's people did a bunch of work on that</p>",
"id": 226796596,
"sender_full_name": "RalfJ",
"timestamp": 1613647579
},
{
"content": "<p>Just saw this article shared somewhere else (\"An introduction to lockless algorithms\") <a href=\"https://lwn.net/SubscriberLink/844224/7d99201ce72fccbe/\">https://lwn.net/SubscriberLink/844224/7d99201ce72fccbe/</a> although it's pretty much only about Acquire/Release</p>",
"id": 227015969,
"sender_full_name": "Nick12",
"timestamp": 1613763153
}
] |
{
"first_traded_price": 6001.0,
"highest_price": 6214.0,
"isin": "IRO1SKOR0001",
"last_traded_price": 6214.0,
"lowest_price": 6001.0,
"trade_volume": 5521.0,
"unix_time": 1345248000
} |
[{"name": "Ivan", "age": 31, "is_blocked": true, "unblock_date": "2023-03-04"}, {"name": "Maxim", "age": 34, "is_blocked": true, "unblock_date": "2012-02-05"}, {"name": "Peter", "age": 27, "is_blocked": false}, {"name": "Jonh", "age": 36, "is_blocked": false}, {"name": "Chris", "age": 29, "is_blocked": false}, {"name": "David", "age": 23, "is_blocked": true, "unblock_date": "2012-06-15"}, {"name": "Евгений", "age": "48", "is_blocked": "true", "unblock_date": "2021-09-21"}, {"name": "Петр", "age": 25}, {"name": "Надежда", "age": 26, "is_blocked": true, "unblock_date": "2021-09-23"}, {"name": "Елена", "age": 22, "is_blocked": false}, {"name": "Tom", "age": 44, "is_blocked": true, "unblock_date": "2021-09-30"}, {"name": "Martin", "age": 43, "is_blocked": false}] |
{
"total": 2,
"rows": [{
"code": "001",
"name": "荆斌",
"age": 32,
"address":"陕西省"
},
{
"code": "002",
"name": "李双全",
"age": 34,
"address":"河南省"
},
{
"code":"003",
"name":"陈彦鑫",
"age":34,
"address":"贵州省"
},
{
"code":"004",
"name":"时樾",
"age":34,
"address":"黑龙江省"
},
{
"code":"005",
"name":"李元彪",
"age":32,
"address":"陕西"
}
]
} |
{"id":"coin-6605","title_display":"Coin: 6605","pub_created_display":["Carlos III (1759 to 1788), 8 reales"],"call_number_display":["Coin 6605"],"call_number_browse_s":["Coin 6605"],"location_code_s":["num"],"location":["Special Collections"],"location_display":["Special Collections - Numismatics Collection"],"format":["Coin"],"advanced_location_s":["num"],"notes_display":["Heavily corroded. Date legible but workshop mark is not. Found on a beach at Manasquan."],"find_place_s":["Manasquan, New Jersey, United States of America"],"die_axis_s":["12"],"size_s":["37"],"weight_s":["17.7"],"holdings_1display":"{\"numismatics\":{\"location\":\"Special Collections - Numismatics Collection\",\"library\":\"Special Collections\",\"location_code\":\"num\",\"call_number\":\"Coin 6605\",\"call_number_browse\":\"Coin 6605\"}}","numismatic_collection_s":["Firestone"],"numismatic_accession_s":["395: Frederick W. Brown"],"pub_date_start_sort":0,"pub_date_end_sort":0,"issue_object_type_s":["coin"],"issue_denomination_s":["8 reales"],"issue_metal_s":["Silver"],"issue_ruler_s":["Carlos III (1759 to 1788)"],"issue_place_s":["Spain"],"issue_region_s":["Spain"],"issue_obverse_figure_s":["Bust"],"issue_obverse_figure_description_s":["right-facing bust with legend around outside"],"issue_obverse_legend_s":["DEI•GRATIA•1780•CAROLUS•III•"],"issue_reverse_figure_s":["Arms of Castille, Leon, and Burbon"],"issue_reverse_symbol_s":["M[unknown]•8R•[unknown]•8R•[unknown]"],"issue_reverse_figure_description_s":["arms of Castille, Leon, and Borbon inside a crowned shield between two columns with ribbons around them that say PLVS VLTRA"],"issue_reverse_legend_s":["•HISPAN•ET IND•REX•[unknown]•8R•[unknown]"],"issue_references_s":["Las Monedas Espanolas p. 693 10824 var.","Monedas Espanolas p. 325 767 var.","Heiss vol. I, lam. 56 24"],"issue_monogram_1display":"[]","hashed_id_s":["f6d0e97b14b73b01"],"_version_":1684903102547755008,"timestamp":"2020-12-01T18:53:34.538Z"} |
{
"order": "72434"
,"word": "mself"
,"count": "17"
}
|
{"decimal.js":"sha512-5pQaq+QoLpicGmLldK138y+C+9EzL2zRuo4Sjv/24DkuOTlkoa2vEKeECOBNh8fiDdksxKAnN+Rj2V1HOAhp8w==","decimal.min.js":"sha512-Uv75U38NicSQGV4e58kJ0JbAfhvSDTgi0sjDZNmejUVpZR8pUl0/CWQDxNes32c2i1iSLRBowseizOyeFSxXhQ=="} |
{
"userId": "007",
"userName": "joke",
"userPwd": "123456",
"orderList": [],
"cartList": [],
"addressList": [
{
"addressId": "100001",
"userName": "jole",
"province": "美国宾夕法尼亚",
"streeName": "朝阳区",
"postCode": "10001",
"tel": "12345678951",
"isDefault": true
},
{
"addressId": "100002",
"userName": "楚梦梦",
"province": "湖南省",
"streeName": "湖南身份发热感人第三个爱国热爱过热",
"postCode": "10002",
"tel": "12345678951",
"isDefault": false
},
{
"addressId": "100003",
"userName": "拉毛措",
"province": "青海省",
"streeName": "法尔更热爱个热爱隔热隔热隔热爱国二阿哥热爱个人",
"postCode": "10003",
"tel": "12345678951",
"isDefault": false
},
{
"addressId": "100004",
"userName": "徐雅慧",
"province": "青海省",
"streeName": "是大概热爱过热阿根廷人身体然后突然",
"postCode": "10004",
"tel": "12345678951",
"isDefault": false
},
{
"addressId": "100005",
"userName": "蔡先佳",
"province": "海南省",
"streeName": "海口市新埠岛外沙村22",
"postCode": "10005",
"tel": "12345678951",
"isDefault": false
},
{
"addressId": "100006",
"userName": "陈雪云",
"province": "青海",
"streeName": "的撒个条件铁人三项感到不舒服的是不热被搞得人家一听",
"postCode": "10006",
"tel": "12345678951",
"isDefault": false
},
{
"addressId": "100007",
"userName": "刘湘玮",
"province": "湖南",
"streeName": "富达公司听人说果然few热望亲热给他让大家不放过事故",
"postCode": "10007",
"tel": "12345678951",
"isDefault": false
}
]
}
|
{"textgrid.poem.38358": {"metadata": {"author": {"name": "Arnim, Ludwig Achim von", "birth": "N.A.", "death": "N.A."}, "title": "Rothkehlchen", "genre": "verse", "period": "N.A.", "pub_year": 1806, "urn": "N.A.", "language": ["de:0.99"], "booktitle": "N.A."}, "text": null, "poem": {"stanza.1": {"line.1": {"text": "Das Rothkehlchen gar fr\u00fch aufsteht, und wenn ich dann erwach,", "tokens": ["Das", "Roth\u00b7kehl\u00b7chen", "gar", "fr\u00fch", "auf\u00b7steht", ",", "und", "wenn", "ich", "dann", "er\u00b7wach", ","], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "NN", "ADV", "ADJD", "VVFIN", "$,", "KON", "KOUS", "PPER", "ADV", "VVFIN", "$,"], "meter": "-+---+-+-+-+-+", "measure": "dactylic.init"}, "line.2": {"text": "Gr\u00fc\u00dft es die liebe Morgenr\u00f6th, hoch oben auf dem Dach,", "tokens": ["Gr\u00fc\u00dft", "es", "die", "lie\u00b7be", "Mor\u00b7gen\u00b7r\u00f6th", ",", "hoch", "o\u00b7ben", "auf", "dem", "Dach", ","], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PPER", "ART", "ADJA", "NN", "$,", "ADJD", "ADV", "APPR", "ART", "NN", "$,"], "meter": "-+-+-+-+-+-+-+", "measure": "iambic.septa"}, "line.3": {"text": "Wie lieblich ist sein Z\u00fckken, wie r\u00f6thlich seine Kehl,", "tokens": ["Wie", "lieb\u00b7lich", "ist", "sein", "Z\u00fck\u00b7ken", ",", "wie", "r\u00f6th\u00b7lich", "sei\u00b7ne", "Kehl", ","], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["PWAV", "ADJD", "VAFIN", "PPOSAT", "NN", "$,", "PWAV", "ADJD", "PPOSAT", "NN", "$,"], "meter": "-+-+-+--+-+-+", "measure": "iambic.hexa.relaxed"}, "line.4": {"text": "Mein Herz thut es erquicken, ermuntern meine Seel.", "tokens": ["Mein", "Herz", "thut", "es", "er\u00b7qui\u00b7cken", ",", "er\u00b7mun\u00b7tern", "mei\u00b7ne", "Seel", "."], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["PPOSAT", "NN", "VVFIN", "PPER", "VVINF", "$,", "VVFIN", "PPOSAT", "NN", "$."], "meter": "-+-+-+--+-+-+", "measure": "iambic.hexa.relaxed"}}, "stanza.2": {"line.1": {"text": "Das Rothkehlchen gar fr\u00fch aufsteht, und wenn ich dann erwach,", "tokens": ["Das", "Roth\u00b7kehl\u00b7chen", "gar", "fr\u00fch", "auf\u00b7steht", ",", "und", "wenn", "ich", "dann", "er\u00b7wach", ","], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "NN", "ADV", "ADJD", "VVFIN", "$,", "KON", "KOUS", "PPER", "ADV", "VVFIN", "$,"], "meter": "-+---+-+-+-+-+", "measure": "dactylic.init"}, "line.2": {"text": "Gr\u00fc\u00dft es die liebe Morgenr\u00f6th, hoch oben auf dem Dach,", "tokens": ["Gr\u00fc\u00dft", "es", "die", "lie\u00b7be", "Mor\u00b7gen\u00b7r\u00f6th", ",", "hoch", "o\u00b7ben", "auf", "dem", "Dach", ","], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PPER", "ART", "ADJA", "NN", "$,", "ADJD", "ADV", "APPR", "ART", "NN", "$,"], "meter": "-+-+-+-+-+-+-+", "measure": "iambic.septa"}, "line.3": {"text": "Wie lieblich ist sein Z\u00fckken, wie r\u00f6thlich seine Kehl,", "tokens": ["Wie", "lieb\u00b7lich", "ist", "sein", "Z\u00fck\u00b7ken", ",", "wie", "r\u00f6th\u00b7lich", "sei\u00b7ne", "Kehl", ","], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["PWAV", "ADJD", "VAFIN", "PPOSAT", "NN", "$,", "PWAV", "ADJD", "PPOSAT", "NN", "$,"], "meter": "-+-+-+--+-+-+", "measure": "iambic.hexa.relaxed"}, "line.4": {"text": "Mein Herz thut es erquicken, ermuntern meine Seel.", "tokens": ["Mein", "Herz", "thut", "es", "er\u00b7qui\u00b7cken", ",", "er\u00b7mun\u00b7tern", "mei\u00b7ne", "Seel", "."], "token_info": ["word", "word", "word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["PPOSAT", "NN", "VVFIN", "PPER", "VVINF", "$,", "VVFIN", "PPOSAT", "NN", "$."], "meter": "-+-+-+--+-+-+", "measure": "iambic.hexa.relaxed"}}}}} |
{
"appNodeUri": [
"dataStoreControllers",
"ElasticSearchDataStoreController"
],
"name": "ElasticSearchDataStoreDataController",
"type": "dataStoreController",
"version": 0,
"configuration": {
"url": "localhost",
"port": 9200,
"log":"trace"
},
"logger": {
"configuration": {
"idTag": [
"ElasticSearchDataStoreDataController"
]
},
"appNodeUri": [
"loggers",
"WinstonLogger"
]
},
"implPath": "dataStoreControllers/elasticSearchDataStoreController"
} |
{
"first_traded_price": 2063.0,
"highest_price": 2097.0,
"isin": "IRO1SNRO0001",
"last_traded_price": 2070.0,
"lowest_price": 2063.0,
"trade_volume": 174711.0,
"unix_time": 1398038400
} |
{
"add": {
"doc": {
"id": "0e71f6d7f9acfeea77b29c01bdda0599af8f0eba4276d5b03c93cec4152c9ecd",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/CSeries_back_from_first_flight.png/220px-CSeries_back_from_first_flight.png",
"previous": " The electrical system of the first flight test aircraft was successfully powered up in March 2013 and tests on the static test airframe proceeded satisfactorily and on schedule 66 ",
"after": " In June 2013 due to upgrades of the aircraft s software and final ground testing Bombardier shifted the timeline for the first flight into July 2013 67 On 24 July 2013 due to a longer than expected system integration process the first flight was delayed into the coming weeks 68 On 30 August 2013 Bombardier received the flight test permit from Transport Canada granting permission to perform high speed taxi testing and flight testing 1 As Bombardier planned 69 a CS100 took the maiden flight for the model and the CSeries on 16 September 2013 from Mirabel Airport north of Montreal Quebec Canada 70 71 Over 14 000 data points were gathered on this first flight and after some reconfigurations and software upgrades the aircraft flew for the second time on 1 October 2013 72 ",
"color": "dark|0.23207 gray|0.23207 dark|0.23207 grey|0.23207 silver|0.14828 light|0.095614 slate|0.095614 gray|0.095614 light|0.093312 steel|0.093312 blue|0.093312 gray|0.071767 grey|0.071767 slate|0.059797 gray|0.059797 dim|0.038526 gray|0.038526 dim|0.038526 grey|0.038526 lavender|0.034622 black|0.023084 alice|0.022167 blue|0.022167 gainsboro|0.019098 ghost|0.018293 white|0.018293 white|0.016567 smoke|0.016567 azure|0.014681 snow|0.013174 white|0.012907 mint|0.012286 cream|0.012286 light|0.012169 blue|0.012169 lavender|0.011997 blush|0.011997 sea|0.0089742 shell|0.0089742 light|0.0088593 gray|0.0088593 light|0.0088593 grey|0.0088593 floral|0.0074693 white|0.0074693 wheat|0.0054967 ",
"after_weights": " In|1 June|0.99259 2013|0.98519 due|0.97778 to|0.97037 upgrades|0.96296 of|0.95556 the|0.94815 aircraft|0.94074 s|0.93333 software|0.92593 and|0.91852 final|0.91111 ground|0.9037 testing|0.8963 Bombardier|0.88889 shifted|0.88148 the|0.87407 timeline|0.86667 for|0.85926 the|0.85185 first|0.84444 flight|0.83704 into|0.82963 July|0.82222 2013|0.81481 67|0.80741 On|0.8 24|0.79259 July|0.78519 2013|0.77778 due|0.77037 to|0.76296 a|0.75556 longer|0.74815 than|0.74074 expected|0.73333 system|0.72593 integration|0.71852 process|0.71111 the|0.7037 first|0.6963 flight|0.68889 was|0.68148 delayed|0.67407 into|0.66667 the|0.65926 coming|0.65185 weeks|0.64444 68|0.63704 On|0.62963 30|0.62222 August|0.61481 2013|0.60741 Bombardier|0.6 received|0.59259 the|0.58519 flight|0.57778 test|0.57037 permit|0.56296 from|0.55556 Transport|0.54815 Canada|0.54074 granting|0.53333 permission|0.52593 to|0.51852 perform|0.51111 high|0.5037 speed|0.4963 taxi|0.48889 testing|0.48148 and|0.47407 flight|0.46667 testing|0.45926 1|0.45185 As|0.44444 Bombardier|0.43704 planned|0.42963 69|0.42222 a|0.41481 CS100|0.40741 took|0.4 the|0.39259 maiden|0.38519 flight|0.37778 for|0.37037 the|0.36296 model|0.35556 and|0.34815 the|0.34074 CSeries|0.33333 on|0.32593 16|0.31852 September|0.31111 2013|0.3037 from|0.2963 Mirabel|0.28889 Airport|0.28148 north|0.27407 of|0.26667 Montreal|0.25926 Quebec|0.25185 Canada|0.24444 70|0.23704 71|0.22963 Over|0.22222 14|0.21481 000|0.20741 data|0.2 points|0.19259 were|0.18519 gathered|0.17778 on|0.17037 this|0.16296 first|0.15556 flight|0.14815 and|0.14074 after|0.13333 some|0.12593 reconfigurations|0.11852 and|0.11111 software|0.1037 upgrades|0.096296 the|0.088889 aircraft|0.081481 flew|0.074074 for|0.066667 the|0.059259 second|0.051852 time|0.044444 on|0.037037 1|0.02963 October|0.022222 2013|0.014815 72|0.0074074 |0",
"previous_weights": " The|0 electrical|0.034483 system|0.068966 of|0.10345 the|0.13793 first|0.17241 flight|0.2069 test|0.24138 aircraft|0.27586 was|0.31034 successfully|0.34483 powered|0.37931 up|0.41379 in|0.44828 March|0.48276 2013|0.51724 and|0.55172 tests|0.58621 on|0.62069 the|0.65517 static|0.68966 test|0.72414 airframe|0.75862 proceeded|0.7931 satisfactorily|0.82759 and|0.86207 on|0.89655 schedule|0.93103 66|0.96552 |1"
}
}
}
|
{
"display": {
"icon": {
"item": "atum:shrub"
},
"title": {
"translate": "A Mirage"
},
"description": {
"translate": "Visit a dead oasis"
}
},
"parent": "atum:core/ruinedit",
"criteria": {
"entered_atum": {
"trigger": "minecraft:location",
"conditions": {
"biome": "atum:dead_oasis"
}
}
}
} |
{"name":"Walldrof Weich Technologien Pvt.Ltd","permalink":"walldrof-weich-technologien-pvt-ltd","crunchbase_url":"http://www.crunchbase.com/company/walldrof-weich-technologien-pvt-ltd","homepage_url":"http://www.walldrof.com","blog_url":"","blog_feed_url":"","twitter_username":"","category_code":"software","number_of_employees":200,"founded_year":null,"founded_month":null,"founded_day":null,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"walldrof, software, company, it-consulting, training-and-development, delhi, india, website, solutions, job, info, web, jobs, systems, business, group, computer, designing, management, download, erp, sap, outsourcing, walldrofgreen, walldrofcampus, proces","alias_list":null,"email_address":"info@walldrof.com","phone_number":"01126681800","description":"Global IT Company","created_at":"Wed Sep 09 19:08:20 UTC 2009","updated_at":"Wed Sep 09 21:14:46 UTC 2009","overview":"<p>“Walldrof is a leading Offshore Software Development specialist having presence in multiple areas including, custom Software development, Training and development,ERP Implementation & Consulting Services and Web solutions. Our strength lies in need assessment, visualizing the conceptual ideas, applying state-of-the-art technology for IT solutions offering cost effective solutions, delivering assignment on time, and meeting the ultimate objective i.e. client satisfaction.â€</p>","image":{"available_sizes":[[[150,63],"assets/images/resized/0005/9265/59265v2-max-150x150.png"],[[233,99],"assets/images/resized/0005/9265/59265v2-max-250x250.png"],[[233,99],"assets/images/resized/0005/9265/59265v2-max-450x450.png"]],"attribution":null},"products":[],"relationships":[],"competitions":[],"providerships":[],"total_money_raised":"$0","funding_rounds":[],"investments":[],"acquisition":null,"acquisitions":[],"offices":[{"description":"Branch Office","address1":"B-1/9 LG Floor,Malviya Nagar","address2":"","zip_code":"110017","city":"Newdelhi","state_code":null,"country_code":"IND","latitude":null,"longitude":null}],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[{"available_sizes":[[[102,150],"assets/images/resized/0005/9264/59264v2-max-150x150.jpg"],[[170,250],"assets/images/resized/0005/9264/59264v2-max-250x250.jpg"],[[306,450],"assets/images/resized/0005/9264/59264v2-max-450x450.jpg"]],"attribution":null}],"external_links":[{"external_url":"http://www.walldrofpccareservices.com","title":"Walldrof PC Care"}]} |
{
"actions": [
{
"acted_at": "1990-05-23",
"committee": "House Committee on Ways and Means",
"references": [],
"status": "REFERRED",
"text": "Referred to the House Committee on Ways and Means.",
"type": "referral"
},
{
"acted_at": "1990-05-30",
"in_committee": "House Committee on Ways and Means",
"references": [],
"subcommittee": "Social Security",
"text": "Referred to the Subcommittee on Social Security.",
"type": "referral"
}
],
"amendments": [],
"bill_id": "hr4904-101",
"bill_type": "hr",
"committees": [
{
"activity": [
"referral",
"in committee"
],
"committee": "House Ways and Means",
"committee_id": "HSWM"
},
{
"activity": [
"referral"
],
"committee": "House Ways and Means",
"committee_id": "HSWM",
"subcommittee": "Subcommittee on Social Security",
"subcommittee_id": "01"
}
],
"congress": "101",
"cosponsors": [
{
"district": "40",
"name": "Cox, Christopher",
"sponsored_at": "1990-06-20",
"state": "CA",
"thomas_id": "00242",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "2",
"name": "Duncan, John J., Jr.",
"sponsored_at": "1990-06-20",
"state": "TN",
"thomas_id": "00322",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "1",
"name": "Inhofe, James M.",
"sponsored_at": "1990-07-31",
"state": "OK",
"thomas_id": "00583",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "4",
"name": "James, Craig T.",
"sponsored_at": "1990-06-20",
"state": "FL",
"thomas_id": "00590",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "5",
"name": "Kolbe, Jim",
"sponsored_at": "1990-07-31",
"state": "AZ",
"thomas_id": "00645",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "3",
"name": "Nielson, Howard C.",
"sponsored_at": "1990-06-20",
"state": "UT",
"thomas_id": "00865",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "8",
"name": "Parris, Stanford E. (Stan)",
"sponsored_at": "1990-07-31",
"state": "VA",
"thomas_id": "00890",
"title": "Rep",
"withdrawn_at": null
},
{
"district": "2",
"name": "Valentine, Tim",
"sponsored_at": "1990-06-20",
"state": "NC",
"thomas_id": "01178",
"title": "Rep",
"withdrawn_at": null
}
],
"enacted_as": null,
"history": {
"awaiting_signature": false,
"enacted": false,
"vetoed": false
},
"introduced_at": "1990-05-23",
"number": "4904",
"official_title": "To amend the Internal Revenue Code of 1986 to eliminate the marriage penalty for senior citizens in the standard deduction and the tax on social security benefits and to amend title II of the Social Security Act to increase the exempt amount under the retirement test for individuals who have attained retirement age.",
"popular_title": null,
"related_bills": [],
"short_title": "Senior Citizens' Tax Fairness Act of 1990",
"sponsor": {
"district": "15",
"name": "Ritter, Don",
"state": "PA",
"thomas_id": "00965",
"title": "Rep",
"type": "person"
},
"status": "REFERRED",
"status_at": "1990-05-23",
"subjects": [
"Earnings",
"Income",
"Income tax",
"Married people",
"Old age, survivors and disability insurance",
"Social welfare",
"Tax deductions",
"Tax exclusion",
"Tax rates"
],
"subjects_top_term": "Social welfare",
"summary": {
"as": "Introduced",
"date": "1990-05-23",
"text": "Senior Citizens' Tax Fairness Act of 1990 - Amends the Internal Revenue Code to increase the standard deduction available to spouses who have attained age 65 and the base amount of income and social security benefits they must have before being subject to a tax on such benefits. Amends title II (Old Age, Survivors and Disability Insurance) (OASDI) of the Social Security Act to increase the amount of monthly income which an individual who has attained retirement age may earn in 1991 without incurring a reduction in benefits."
},
"titles": [
{
"as": "introduced",
"title": "Senior Citizens' Tax Fairness Act of 1990",
"type": "short"
},
{
"as": "introduced",
"title": "To amend the Internal Revenue Code of 1986 to eliminate the marriage penalty for senior citizens in the standard deduction and the tax on social security benefits and to amend title II of the Social Security Act to increase the exempt amount under the retirement test for individuals who have attained retirement age.",
"type": "official"
}
],
"updated_at": "2013-02-02T20:08:51-05:00"
} |
{"accumulated": [{"days": 7, "sum_of_share_squared": 0.035971701403674346, "vcount": 265, "plus_rshares": 87028968343927.0, "minus_rshares": 0, "dnvotee_count": 0, "self_rshares": 7018824008359.0, "upvotee": [{"rshares": 8890788742218, "account": "lichtblick", "percentage": 10.22}, {"rshares": 7519445278732, "account": "oldtimer", "percentage": 8.64}, {"rshares": 7018824008359, "account": "flipstar", "percentage": 8.06}, {"rshares": 5313797114039, "account": "slowwalker", "percentage": 6.11}, {"rshares": 2884129776280, "account": "silvergoldbotty", "percentage": 3.31}, {"rshares": 1860562980194, "account": "lordoftruth", "percentage": 2.14}, {"rshares": 1837550965845, "account": "jwolf", "percentage": 2.11}, {"rshares": 1626609596505, "account": "xpilar", "percentage": 1.87}, {"rshares": 1463267797717, "account": "andyjaypowell", "percentage": 1.68}, {"rshares": 1364390873291, "account": "ace108", "percentage": 1.57}], "downvotee": [], "self_vote_rate": 8.06, "avg_full_voting_per_day": 12.65, "dnvcount": 0, "start_date": "2018-04-12", "all_vweight": 885300.0, "upvcount": 265, "upvotee_count": 171, "end_date": "2018-04-19", "inverse_simpson": 28}, {"days": 14, "sum_of_share_squared": 0.043222211722343994, "vcount": 639, "plus_rshares": 170533716144935.0, "minus_rshares": 34959763140.0, "dnvotee_count": 2, "self_rshares": 19097594339363.0, "upvotee": [{"rshares": 19914844264679, "account": "lichtblick", "percentage": 11.68}, {"rshares": 19097594339363, "account": "flipstar", "percentage": 11.2}, {"rshares": 14772676011027, "account": "oldtimer", "percentage": 8.66}, {"rshares": 10284976055656, "account": "slowwalker", "percentage": 6.03}, {"rshares": 4556743753748, "account": "theaustrianguy", "percentage": 2.67}, {"rshares": 4416106170100, "account": "silvergoldbotty", "percentage": 2.59}, {"rshares": 3667553527858, "account": "jwolf", "percentage": 2.15}, {"rshares": 3275499161376, "account": "andyjaypowell", "percentage": 1.92}, {"rshares": 3119115816456, "account": "lordoftruth", "percentage": 1.83}, {"rshares": 2796873550371, "account": "knircky", "percentage": 1.64}], "downvotee": [{"rshares": 23304856050, "account": "cryptoinside", "percentage": 66.66}, {"rshares": 11654907090, "account": "steemitag", "percentage": 33.34}], "self_vote_rate": 11.2, "avg_full_voting_per_day": 12.22, "dnvcount": 3, "start_date": "2018-04-05", "all_vweight": 1711301.0, "upvcount": 636, "upvotee_count": 280, "end_date": "2018-04-19", "inverse_simpson": 23}, {"days": 30, "sum_of_share_squared": 0.03435902067250936, "vcount": 1305, "plus_rshares": 349690183221894.0, "minus_rshares": 719936817902.0, "dnvotee_count": 5, "self_rshares": 37679796672739.0, "upvotee": [{"rshares": 37679796672739, "account": "flipstar", "percentage": 10.78}, {"rshares": 34361581315679, "account": "lichtblick", "percentage": 9.83}, {"rshares": 24057905626167, "account": "oldtimer", "percentage": 6.88}, {"rshares": 19060376420599, "account": "slowwalker", "percentage": 5.45}, {"rshares": 10339233513382, "account": "redpalestino", "percentage": 2.96}, {"rshares": 7558893207643, "account": "silvergoldbotty", "percentage": 2.16}, {"rshares": 7123341622826, "account": "lordoftruth", "percentage": 2.04}, {"rshares": 6873134509850, "account": "andyjaypowell", "percentage": 1.97}, {"rshares": 6774681121696, "account": "jwolf", "percentage": 1.94}, {"rshares": 6304867496606, "account": "theaustrianguy", "percentage": 1.8}], "downvotee": [{"rshares": 487512262986, "account": "jannat", "percentage": 67.72}, {"rshares": 145092935412, "account": "steemgainer", "percentage": 20.15}, {"rshares": 58219478556, "account": "cryptoinside", "percentage": 8.09}, {"rshares": 17457233858, "account": "a-0-0", "percentage": 2.42}, {"rshares": 11654907090, "account": "steemitag", "percentage": 1.62}], "self_vote_rate": 10.78, "avg_full_voting_per_day": 11.34, "dnvcount": 9, "start_date": "2018-03-20", "all_vweight": 3403171.0, "upvcount": 1296, "upvotee_count": 458, "end_date": "2018-04-19", "inverse_simpson": 29}, {"days": 60, "sum_of_share_squared": 0.03627988689420908, "vcount": 2914, "plus_rshares": 680660659872574.0, "minus_rshares": 2352526237407.0, "dnvotee_count": 14, "self_rshares": 71734672787295.0, "upvotee": [{"rshares": 71734672787295, "account": "flipstar", "percentage": 10.54}, {"rshares": 69777290527144, "account": "lichtblick", "percentage": 10.25}, {"rshares": 46856256958764, "account": "oldtimer", "percentage": 6.88}, {"rshares": 46096319212838, "account": "slowwalker", "percentage": 6.77}, {"rshares": 15514899223865, "account": "redpalestino", "percentage": 2.28}, {"rshares": 15006274496180, "account": "stackin", "percentage": 2.2}, {"rshares": 14726233220455, "account": "andyjaypowell", "percentage": 2.16}, {"rshares": 14617364536600, "account": "lordoftruth", "percentage": 2.15}, {"rshares": 14563707595317, "account": "jwolf", "percentage": 2.14}, {"rshares": 14245682165262, "account": "silvergoldbotty", "percentage": 2.09}], "downvotee": [{"rshares": 1267420559463, "account": "haejin", "percentage": 53.87}, {"rshares": 487512262986, "account": "jannat", "percentage": 20.72}, {"rshares": 174541810301, "account": "sek3", "percentage": 7.42}, {"rshares": 145092935412, "account": "steemgainer", "percentage": 6.17}, {"rshares": 106303215413, "account": "zhel04", "percentage": 4.52}, {"rshares": 58219478556, "account": "cryptoinside", "percentage": 2.47}, {"rshares": 26816394774, "account": "mcgrafite", "percentage": 1.14}, {"rshares": 17457233858, "account": "a-0-0", "percentage": 0.74}, {"rshares": 14219267568, "account": "rereza081217", "percentage": 0.6}, {"rshares": 14218676035, "account": "rotjaeley", "percentage": 0.6}], "self_vote_rate": 10.54, "avg_full_voting_per_day": 11.61, "dnvcount": 25, "start_date": "2018-02-18", "all_vweight": 6966561.0, "upvcount": 2889, "upvotee_count": 802, "end_date": "2018-04-19", "inverse_simpson": 28}, {"days": 90, "sum_of_share_squared": 0.03569992291839668, "vcount": 4531, "plus_rshares": 1090760665412519.0, "minus_rshares": 6604618524907.0, "dnvotee_count": 19, "self_rshares": 120373246544549.0, "upvotee": [{"rshares": 120373246544549, "account": "flipstar", "percentage": 11.04}, {"rshares": 106801094962493, "account": "lichtblick", "percentage": 9.79}, {"rshares": 65090583377160, "account": "slowwalker", "percentage": 5.97}, {"rshares": 47951494498614, "account": "jwolf", "percentage": 4.4}, {"rshares": 47023513472679, "account": "stackin", "percentage": 4.31}, {"rshares": 46856256958764, "account": "oldtimer", "percentage": 4.3}, {"rshares": 43059559976823, "account": "lordoftruth", "percentage": 3.95}, {"rshares": 27059562741642, "account": "redpalestino", "percentage": 2.48}, {"rshares": 18131391840667, "account": "andyjaypowell", "percentage": 1.66}, {"rshares": 14806412905400, "account": "knircky", "percentage": 1.36}], "downvotee": [{"rshares": 2242360180609, "account": "louisthomas", "percentage": 33.95}, {"rshares": 1671815801524, "account": "chnadrakant111", "percentage": 25.31}, {"rshares": 1267420559463, "account": "haejin", "percentage": 19.19}, {"rshares": 487512262986, "account": "jannat", "percentage": 7.38}, {"rshares": 205920030694, "account": "mahadi", "percentage": 3.12}, {"rshares": 174541810301, "account": "sek3", "percentage": 2.64}, {"rshares": 145092935412, "account": "steemgainer", "percentage": 2.2}, {"rshares": 117320323045, "account": "exyle1", "percentage": 1.78}, {"rshares": 106303215413, "account": "zhel04", "percentage": 1.61}, {"rshares": 58219478556, "account": "cryptoinside", "percentage": 0.88}], "self_vote_rate": 11.04, "avg_full_voting_per_day": 12.7, "dnvcount": 48, "start_date": "2018-01-19", "all_vweight": 11426163.0, "upvcount": 4483, "upvotee_count": 1282, "end_date": "2018-04-19", "inverse_simpson": 28}], "weekly": [{"days": 7, "sum_of_share_squared": 0.035971701403674346, "vcount": 265, "plus_rshares": 87028968343927.0, "minus_rshares": 0, "dnvotee_count": 0, "self_rshares": 7018824008359.0, "upvotee": [{"rshares": 8890788742218, "account": "lichtblick", "percentage": 10.22}, {"rshares": 7519445278732, "account": "oldtimer", "percentage": 8.64}, {"rshares": 7018824008359, "account": "flipstar", "percentage": 8.06}, {"rshares": 5313797114039, "account": "slowwalker", "percentage": 6.11}, {"rshares": 2884129776280, "account": "silvergoldbotty", "percentage": 3.31}, {"rshares": 1860562980194, "account": "lordoftruth", "percentage": 2.14}, {"rshares": 1837550965845, "account": "jwolf", "percentage": 2.11}, {"rshares": 1626609596505, "account": "xpilar", "percentage": 1.87}, {"rshares": 1463267797717, "account": "andyjaypowell", "percentage": 1.68}, {"rshares": 1364390873291, "account": "ace108", "percentage": 1.57}], "downvotee": [], "self_vote_rate": 8.06, "avg_full_voting_per_day": 12.65, "dnvcount": 0, "start_date": "2018-04-12", "all_vweight": 885300.0, "upvcount": 265, "upvotee_count": 171, "end_date": "2018-04-19", "inverse_simpson": 28}, {"days": 7, "sum_of_share_squared": 0.05681311888132882, "vcount": 374, "plus_rshares": 83504747801008.0, "minus_rshares": 34959763140.0, "dnvotee_count": 2, "self_rshares": 12078770331004.0, "upvotee": [{"rshares": 12078770331004, "account": "flipstar", "percentage": 14.46}, {"rshares": 11024055522461, "account": "lichtblick", "percentage": 13.2}, {"rshares": 7253230732295, "account": "oldtimer", "percentage": 8.69}, {"rshares": 4971178941617, "account": "slowwalker", "percentage": 5.95}, {"rshares": 3215965458238, "account": "theaustrianguy", "percentage": 3.85}, {"rshares": 2016338364277, "account": "redpalestino", "percentage": 2.41}, {"rshares": 1951218848849, "account": "schamangerbert", "percentage": 2.34}, {"rshares": 1830002562013, "account": "jwolf", "percentage": 2.19}, {"rshares": 1822893807329, "account": "knircky", "percentage": 2.18}, {"rshares": 1812231363659, "account": "andyjaypowell", "percentage": 2.17}], "downvotee": [{"rshares": 23304856050, "account": "cryptoinside", "percentage": 66.66}, {"rshares": 11654907090, "account": "steemitag", "percentage": 33.34}], "self_vote_rate": 14.46, "avg_full_voting_per_day": 11.8, "dnvcount": 3, "start_date": "2018-04-05", "all_vweight": 826001.0, "upvcount": 371, "upvotee_count": 181, "end_date": "2018-04-12", "inverse_simpson": 18}, {"days": 7, "sum_of_share_squared": 0.0172694985793054, "vcount": 230, "plus_rshares": 72240130783828.0, "minus_rshares": 52371856364.0, "dnvotee_count": 2, "self_rshares": 4978438344248.0, "upvotee": [{"rshares": 4978438344248, "account": "flipstar", "percentage": 6.89}, {"rshares": 2543512036946, "account": "angelinafx", "percentage": 3.52}, {"rshares": 2287999412226, "account": "avantjapan", "percentage": 3.17}, {"rshares": 2241542571373, "account": "marekwojciakcom", "percentage": 3.1}, {"rshares": 1978077036273, "account": "oldtimer", "percentage": 2.74}, {"rshares": 1931535927545, "account": "lichtblick", "percentage": 2.67}, {"rshares": 1914085695499, "account": "slowwalker", "percentage": 2.65}, {"rshares": 1776974162798, "account": "softmetal", "percentage": 2.46}, {"rshares": 1132385495901, "account": "gamsam", "percentage": 1.57}, {"rshares": 1126578390793, "account": "antomil", "percentage": 1.56}], "downvotee": [{"rshares": 34914622506, "account": "cryptoinside", "percentage": 66.67}, {"rshares": 17457233858, "account": "a-0-0", "percentage": 33.33}], "self_vote_rate": 6.89, "avg_full_voting_per_day": 9.53, "dnvcount": 3, "start_date": "2018-03-29", "all_vweight": 667270.0, "upvcount": 227, "upvotee_count": 154, "end_date": "2018-04-05", "inverse_simpson": 58}, {"days": 7, "sum_of_share_squared": 0.04997814082267664, "vcount": 321, "plus_rshares": 80179076458123.0, "minus_rshares": 632605198398.0, "dnvotee_count": 2, "self_rshares": 10496652471975.0, "upvotee": [{"rshares": 10496652471975, "account": "flipstar", "percentage": 13.09}, {"rshares": 9156075698625, "account": "lichtblick", "percentage": 11.42}, {"rshares": 5787748840946, "account": "slowwalker", "percentage": 7.22}, {"rshares": 5122096301548, "account": "oldtimer", "percentage": 6.39}, {"rshares": 3824528167787, "account": "redpalestino", "percentage": 4.77}, {"rshares": 3203055322241, "account": "lordoftruth", "percentage": 3.99}, {"rshares": 1972926746942, "account": "jwolf", "percentage": 2.46}, {"rshares": 1962180230370, "account": "stackin", "percentage": 2.45}, {"rshares": 1942815105541, "account": "joythewanderer", "percentage": 2.42}, {"rshares": 1845048945331, "account": "silvergoldbotty", "percentage": 2.3}], "downvotee": [{"rshares": 487512262986, "account": "jannat", "percentage": 77.06}, {"rshares": 145092935412, "account": "steemgainer", "percentage": 22.94}], "self_vote_rate": 13.09, "avg_full_voting_per_day": 11.16, "dnvcount": 3, "start_date": "2018-03-22", "all_vweight": 781400.0, "upvcount": 318, "upvotee_count": 138, "end_date": "2018-03-29", "inverse_simpson": 20}, {"days": 7, "sum_of_share_squared": 0.04095836091217144, "vcount": 349, "plus_rshares": 107676067805572.0, "minus_rshares": 14218676035.0, "dnvotee_count": 1, "self_rshares": 10366834304527.0, "upvotee": [{"rshares": 11175345097567, "account": "lichtblick", "percentage": 10.38}, {"rshares": 10366834304527, "account": "flipstar", "percentage": 9.63}, {"rshares": 8642839428740, "account": "slowwalker", "percentage": 8.03}, {"rshares": 8431892568947, "account": "oldtimer", "percentage": 7.83}, {"rshares": 3416452594412, "account": "redpalestino", "percentage": 3.17}, {"rshares": 3006057159356, "account": "silvergoldbotty", "percentage": 2.79}, {"rshares": 2898525352357, "account": "andyjaypowell", "percentage": 2.69}, {"rshares": 2687961423341, "account": "jwolf", "percentage": 2.5}, {"rshares": 2334579609790, "account": "stackin", "percentage": 2.17}, {"rshares": 2209837327967, "account": "abh12345", "percentage": 2.05}], "downvotee": [{"rshares": 14218676035, "account": "rotjaeley", "percentage": 100.0}], "self_vote_rate": 9.63, "avg_full_voting_per_day": 12.58, "dnvcount": 1, "start_date": "2018-03-15", "all_vweight": 880500.0, "upvcount": 348, "upvotee_count": 161, "end_date": "2018-03-22", "inverse_simpson": 24}, {"days": 7, "sum_of_share_squared": 0.049103531422540134, "vcount": 371, "plus_rshares": 81013388803144.0, "minus_rshares": 1373723774876.0, "dnvotee_count": 2, "self_rshares": 8385225464693.0, "upvotee": [{"rshares": 9237429076926, "account": "lichtblick", "percentage": 11.4}, {"rshares": 8385225464693, "account": "flipstar", "percentage": 10.35}, {"rshares": 8033344748985, "account": "slowwalker", "percentage": 9.92}, {"rshares": 6838743864816, "account": "oldtimer", "percentage": 8.44}, {"rshares": 3333795799418, "account": "redpalestino", "percentage": 4.12}, {"rshares": 2682786253653, "account": "andyjaypowell", "percentage": 3.31}, {"rshares": 2224990604238, "account": "stackin", "percentage": 2.75}, {"rshares": 2097275493154, "account": "silvergoldbotty", "percentage": 2.59}, {"rshares": 1691864729169, "account": "theaustrianguy", "percentage": 2.09}, {"rshares": 1543938434116, "account": "abh12345", "percentage": 1.91}], "downvotee": [{"rshares": 1267420559463, "account": "haejin", "percentage": 92.26}, {"rshares": 106303215413, "account": "zhel04", "percentage": 7.74}], "self_vote_rate": 10.35, "avg_full_voting_per_day": 9.88, "dnvcount": 7, "start_date": "2018-03-08", "all_vweight": 691400.0, "upvcount": 364, "upvotee_count": 168, "end_date": "2018-03-15", "inverse_simpson": 20}, {"days": 7, "sum_of_share_squared": 0.050227357338586236, "vcount": 391, "plus_rshares": 83732220627008.0, "minus_rshares": 228174599849.0, "dnvotee_count": 4, "self_rshares": 10280398925910.0, "upvotee": [{"rshares": 10386733586581, "account": "lichtblick", "percentage": 12.4}, {"rshares": 10280398925910, "account": "flipstar", "percentage": 12.28}, {"rshares": 5370070342026, "account": "oldtimer", "percentage": 6.41}, {"rshares": 5285324064411, "account": "slowwalker", "percentage": 6.31}, {"rshares": 5087769172327, "account": "famunger", "percentage": 6.08}, {"rshares": 3248886520926, "account": "knircky", "percentage": 3.88}, {"rshares": 2252852453735, "account": "silvergoldbotty", "percentage": 2.69}, {"rshares": 2070567449045, "account": "stackin", "percentage": 2.47}, {"rshares": 2051545358347, "account": "streetstyle", "percentage": 2.45}, {"rshares": 1982566143563, "account": "ew-and-patterns", "percentage": 2.37}], "downvotee": [{"rshares": 174541810301, "account": "sek3", "percentage": 76.49}, {"rshares": 26816394774, "account": "mcgrafite", "percentage": 11.75}, {"rshares": 13408197387, "account": "khairulamri06", "percentage": 5.88}, {"rshares": 13408197387, "account": "omikunlejackson", "percentage": 5.88}], "self_vote_rate": 12.28, "avg_full_voting_per_day": 11.15, "dnvcount": 6, "start_date": "2018-03-01", "all_vweight": 780400.0, "upvcount": 385, "upvotee_count": 166, "end_date": "2018-03-08", "inverse_simpson": 20}], "account": {"savings_sbd_last_interest_payment": "2017-12-19T10:43:12", "last_bandwidth_update": "2018-04-19T06:02:57", "post_count": 5905, "reward_sbd_balance": "0.000 SBD", "lifetime_bandwidth": "7019447000000", "witness_votes": ["aggroed", "anyx", "arhag", "ausbitbank", "bhuz", "bitcoiner", "blocktrades", "busy.witness", "clayop", "curie", "datasecuritynode", "furion", "good-karma", "gtg", "jesta", "liondani", "netuoso", "pharesim", "reggaemuffin", "riverhead", "roelandp", "smooth.witness", "someguy123", "steemed", "teamsteem", "thecryptodrive", "timcliff", "utopian-io", "wackou", "xeldal"], "last_root_post": "2018-04-18T16:06:57", "sbd_seconds": "17388271968", "reset_account": "null", "name": "flipstar", "tags_usage": [], "json_metadata": "{\"profile\":{\"profile_image\":\"https://s3.amazonaws.com/img.steemconnect.com/flipstar/34187849.png\",\"cover_image\":\"https://s3.amazonaws.com/img.steemconnect.com/flipstar/b80aa266.png\"}}", "delegated_vesting_shares": "24097783.041812 VESTS", "vesting_balance": "0.000 STEEM", "proxied_vsf_votes": [0, 0, 0, 0], "last_market_bandwidth_update": "2018-04-18T15:03:12", "id": 175333, "savings_sbd_balance": "0.000 SBD", "curation_rewards": 934274, "last_account_recovery": "1970-01-01T00:00:00", "average_market_bandwidth": "8848179695", "mined": false, "received_vesting_shares": "0.000000 VESTS", "sbd_last_interest_payment": "2018-04-07T11:38:03", "savings_sbd_seconds": "15598033914", "voting_power": 7989, "withdrawn": 0, "reward_vesting_balance": "570.574498 VESTS", "vesting_shares": "82416461.681222 VESTS", "post_history": [], "reward_steem_balance": "0.000 STEEM", "sbd_balance": "0.131 SBD", "last_post": "2018-04-19T05:56:39", "recovery_account": "steem", "lifetime_vote_count": 0, "proxy": "", "to_withdraw": 0, "reward_vesting_steem": "0.280 STEEM", "savings_withdraw_requests": 0, "next_vesting_withdrawal": "1969-12-31T23:59:59", "last_vote_time": "2018-04-19T06:02:57", "withdraw_routes": 0, "lifetime_market_bandwidth": "1276020000000", "savings_sbd_seconds_last_update": "2017-12-23T16:44:06", "transfer_history": [], "average_bandwidth": "94562287792", "comment_count": 0, "other_history": [], "can_vote": true, "savings_balance": "0.000 STEEM", "guest_bloggers": [], "vote_history": [], "witnesses_voted_for": 30, "reputation": "39865156063928", "last_account_update": "2018-03-08T06:38:24", "created": "2017-06-03T05:49:54", "sbd_seconds_last_update": "2018-04-19T05:57:03", "posting_rewards": 4524513, "vesting_withdraw_rate": "0.000000 VESTS", "market_history": [], "balance": "0.000 STEEM", "last_owner_update": "2018-03-08T06:38:24"}} |
{"parse":{"title":"User:\u6de1\u6de1\u7231\u7231","pageid":123893,"wikitext":{"*":"\u5927\u5bb6\u597d[[User:\u6de1\u6de1\u7231\u7231|\u6de1\u6de1\u7231\u7231]]\uff08[[User talk:\u6de1\u6de1\u7231\u7231|\u8ba8\u8bba]]\uff09\u65b0\u4eba\u62a5\u9053\n\u54c8\u54c8\u54c8"}}} |
{
"first_traded_price": 4.1e3,
"highest_price": 4.2e3,
"isin": "IRO1GTSH0001",
"last_traded_price": 4.1e3,
"lowest_price": 4.1e3,
"trade_volume": 1.44e4,
"unix_time": 1528502400
} |
{
"first_traded_price": 2090.0,
"highest_price": 2140.0,
"isin": "IRO1TOSA0001",
"last_traded_price": 2038.0,
"lowest_price": 2038.0,
"trade_volume": 1114954.0,
"unix_time": 1557619200
} |
{"Reviews": [{"Title": "The tablet to get, if you're getting a tablet.", "Author": "Christopher Wanko \"-C\"", "ReviewID": "R1BMJJBP2PVZTA", "Overall": "5.0", "Content": "Pros: fast CPU, very configurable build options, convertible style means you can go \"laptop\" if you need to get serious data entry accomplished, built-in Ethernet and WiFi, SD card slot.Cons: price is real hefty, lacks some high-end options like fast-big HDD, no Firewire.This tablet is really the only true competitor to Fujitsu's long-time reign as tablet leader. It has a rich feature set, brilliant LCD display, and the processor power to exceed Fujitsu's latest offerings. Of course, the true utility in a tablet is the software, and Windows XP Tablet PC edition more than handles the job of capturing pen taps, clicks, and sketches (handwriting, lettering, or drawings).As a portable PC, however, it is an extremely pricey solution. The largest hard drive is 80Gb -- for a laptop that is about the max -- but the rotational speed is 5400 RPM. No doubt this saves power and generates less heat, but the speed hit is significant.Also significant is the cost of RAM upgrades for the unit. Two sticks of 1Gb RAM will set you back another $1700 over the sticker.Getting past the price premiums, though, it's easy to see that the M200 can be a replacement PC with a decent docking station. You'll miss the Firewire connectivity, but the USB 2.0 ports are available and it does comes with an SD card reader in the unit itself. Nice.With the WiFi radio, built-in Ethernet, and built-in modem, there's really no reason why you can't connect on the road. You can opt for the 802.11b or 802.11g radio, but opt for the 11g and get the 54Mps instead.I was a big fan of the Portege 3505 series from Toshiba, and this tablet marks a nice upgrade from that series. Adding WiFi, SD card reader, faster processor, and more RAM options makes this the tablet if you need one... and have the bucks for it.Fred", "Date": "April 29, 2004"}, {"Title": "Good solid laptop - tablet hybrid", "Author": "J. Yoon", "ReviewID": "RUYC1ETQJIIXI", "Overall": "4.0", "Content": "I got my M200 several months ago and am very satisfied with it.However, I use it less than I had anticipated, so I only gave it 4 stars.Common Tablet Features - neat, but not much used.I enjoy taking notes in different colored pens, with the ability to erase notes written in \"pen\" and to add space between lines already written. I use the Journal and the pen for to-do items or short lists. For longer documents, I prefer to type. While suring the web, I find it inconvenient to have to open the input panel to write the web address, and then to look for and peck the \"enter\" or \"go\" button. I have used a pocket-pc for a number of years and often attempt to use the same input shortcuts on the laptop which do not work. I get confused between the pen input shortcuts on the tablet and the pocket-pc. I really love many of the \"power toys\" games that were offered free by Microsoft. I use my pen to play these games. So far, I do not use OneNote much. It forces me to use a different methophore to organize my files (from many folders to a single, very large, binder). This is really inconvenient for me because I have a lot of folders and subfolders already organized. I have reorganized one small project into a binder, but I don't think I will be transfering over more files into the OneNote format. I most often use the pen as a pointing device with full access to the keyboard in the \"laptop\" mode. I find the pen easier when I am moving a lot of files around (especially in FrontPage).I have a fully configured desktop 2 Ghz machine at home with 17\" LCD monitor and real keyboard. The M200 is great, but does not match user-interface with a full desktop. I do use it more at the office.Machine specific review:The screen has a bad glare in \"tablet\" mode when I am at my office where ceiling lights are directly over my desk. Glare is not an issue at home where a table lamp sits next to the laptop. All the colors seem to be washed out when I get a bad glare. The screen is wonderful with a very high resolution when there is no glare. The pen feels silky smooth when it glides on the screen. Keyboard is excellent! Love the cushy bubble-like feel. Audio recording is amazing. It has noise-cancelling through 3 tiny microphones build into the screen bezel. Music sounds very good through plug-in headphones. Built-in speaker (mono) is loud and good enough for hearing recorded conversations. It has a very extensive set of ports including an SD card slot. It is very fast, even with modest memory (I have the Dolthan version). Ethernet connection is fast (have not tries wireless yet). Battery seems to last about 4 hours of continuous light use. Overall, it feels solidly and well built. The hard disk made annoying, continuous, clicking sounds when I first got it. But after I turned some processes off and twicked power save options (and windows has optimized itself) I don't hear the clickings as often. I thought not having a CD/DVD drive might be a pain, but I found it to be easy to set up another desktop with a CD/DVD drive to share it on the network. I thought the 4.5 lbs weight might be too heavy but I find it to be not too bad. I am glad I bought a hybrid instead of a slate model, since I am not using the pen very much. Setting aside the tablet features, the M200 is a very well made high performance laptop with an amazing screen (in the right viewing angle). But if I were to exclude the tablet features, I could have gotten a 2.4 lb laptop (Toshiba R100) or a 3 lb laptop with a built-in CD/DVD drive (Panasonic W2). So, I gave it only 4 stars, but I still think I made the right choice. I may learn to use more of the tablet features in the future as I grow more proficient at it, and I use it occassionally now.", "Date": "October 7, 2004"}, {"Title": "A breakthrough technology, sign of things to come.", "Author": "S \"amazon16611\"", "ReviewID": "R38K0BF1MKG0AM", "Overall": "5.0", "Content": "This thing is amazing. Since I got it a month ago I no longer touch either of my desktops and I nearly stopped using paper (I mean, to write on!). Superb 1400x1050 resolution exceeds anything you find useable on a desktop monitor. The tablet mode is great, too, with high resolution, intuitive interface and a comfortable pen. I write equations a lot, which is basically impossible with just a keyboard and a mouse, so the tablet mode is very handy. Handwriting recognition is very good, not that it matters, since most people type faster than they write, anyway. Speach recognition is also built in, but I never bothered to train it properly, and it's useless without training. Microphone and (monoaural)speaker are good enough for Skype and MSN Messenger, but not for watching DVD movies. Which is a moot point since there is no built-in optical drive of any kind. Had to buy an external USB 2.0 DVD-RW. No Firewire port, either. Can't have everything. Not yet anyway. Battery life is good, about 4 hours in the long-life mode, enough for most domestic flights, if you hate the inflight movies. The wow factor is fun, too, no question, especially when I take handwritten notes on it.I wish this tablet was thinner, as it's hard to write on a surface a full inch above the table level, so I either prop its far side with something, or simply keep it on my laps. It gets a bit hot at full power, but quite nice in the long-life mode. Built-in wireless networking is 802.11b, not .g, which is good enough for now.As this technology matures (thinner, slide-out keyboard, more tablet-friendly apps etc.) it will likely displace both regular laptops and pure tablets, since the price difference is not that high.", "Date": "July 4, 2004"}, {"Title": "From the guy who wrote the book on Tablet PCs", "Author": "Craig", "ReviewID": "R67M8OIUSCXSK", "Overall": "5.0", "Content": "I wrote \"Absolute Beginner's Guide to Tablet PCs\". I reviewed lots of different Tablet PCs, and this is the one I use. It has the highest-resolution screen, good disk space, zippy performance, and lots of extra features.If you want the fastest Tablet PC with lots of screen real estate and portability, the M200 is the one for you. I had a Toshiba Portege 3500 before this one, and the M200 is definitely a step up.I have purchased ten Toshiba Tablet PCs for my company, and none of them have broken. The M200 is a more stable machine than the Portege 3500,though.Great job, Toshiba!", "Date": "May 10, 2004"}, {"Title": "The best", "Author": "Martin \"Martin\"", "ReviewID": "R1QWXV7TPQV7LG", "Overall": "5.0", "Content": "Hil am writing this via the tablet pc by writing with the pen.This tablet pc is one of the fastest tablet pcs out there - and it has the best graphics card compared to all the other Tablet pcs.Using a tablet pc helps you in taking notes, (you can search for handwritten notes) replace your notebook entirely, change your notes to text.The tablet pc is small (A4-screen)so it is very mobile.", "Date": "April 12, 2004"}, {"Title": "Hi-fidelity sound, Hi-quality solid construction.", "Author": "Oscar Valadez", "ReviewID": "R3169NUDPBK2EG", "Overall": "5.0", "Content": "A great value for the price, this laptop is a gem in the vintage computing world. Not only do you have an amazingly-precise pressure-sensitive wacom painting device on your screen, but the screen itself is extremely high resolution and beautiful, despite the off-white beigish glow of 9 year old faded backlights. If you are a digital artist, then you probably already know how expensive it can be to obtain a wacom tablet embedded into a computer screen. For a used laptop that most people would overlook, you get that and more for a really great price.For a laptop from 2004, this thing is extremely high end- every part inside it is the best at what it does. For example, even though the sound on the laptop speakers is terrible, the internal amplifier outputs the best quality sound I have ever heard pumped into my Grado sr80 headphones. Music sounds great at full volume, and even better during the low volume parts. You don't see consumer grade laptops with sound as good as on this machine. I would have gladly paid $1500-$1700 for this machine back then if I had the money and knew about it at the time.Performance wise, this computer does well- the only thing it lacks is a proper video card for gaming, but at the price what do you expect? The construction of the external structure is extremely solid and doesn't feel hollow like low-end consumer grade laptops do. It's solid metal and feels like it can withstand a nuclear hollocaust. I installed both Windows 7 and the latest copy of Xubuntu, and am extremely pleased at how well the two OS's performed.Weightwise, this laptop isn't as heavy as you'd expect from something as solid as this. It is surprisingly light and feels comfortable in any position.This computer's flaws include the following: 1) Not being able to boot from a USB or external CD drive. You need to buy a special Toshiba drive that came along with this PC. Very frustrating. 2) SD card slot doesn't work, unless of course you're running XP and have installed custom drivers that aren't available on Linux nor windows 7 and up. 3) Online video feels glitchy on my linux installation, but I'm not sure why. 4) Buttons on the front of the swivel screen don't work in any non-XP environment. On the plus side though, the pen's side button and the erasor seem to be working perfectly fine in linux. 5) Screen is nowhere near as magnificent as today's glossy new OLED screens. Colors are fine even at angles, but the problem is that the backlights just aren't as bright anymore, and it costs money to replace them.", "Date": "July 7, 2013"}, {"Title": "great laptop", "Author": "Amado Daylo", "ReviewID": "R3L7FR0BAPD5YW", "Overall": "4.0", "Content": "Remarkable engineering and often helpful in watering plants. I was able to run Windows 3.0 flawlessly. Remarkable, quite remarkable. It has worked consistently when used under extreme weather conditions (hail, snow, sub-Saharan desert).", "Date": "September 30, 2012"}, {"Title": "Great", "Author": "J. Treat", "ReviewID": "R2KULW5R4QJ1K9", "Overall": "4.0", "Content": "I love mine! it works great my only problem is that it has to have an external cd drive, otherwise it is amazing. As a student ai use it to take notes which i can later convert into text, to make nice, neat, and readable notes.", "Date": "June 10, 2004"}, {"Title": "The epic computer", "Author": "Evin Olson", "ReviewID": "R225YQ3HPUAH5N", "Overall": "5.0", "Content": "I bought this computer in the fall of 2005 for school. I am writing a review for this laptop in 2013 on the same portege. Of course over the years I had to put a new HDD and a new power supply (twice) but this computer is a trooper. It has been dropped, stepped on and all sorts of abuse.What I LOVE about this laptop is the high resolution, yet small, screen. I haven't had windows on this sucker for quite sometime but I have installed at any given time, mint, backtrack, ubuntu, xunbuntu, lubtunu, arch, and countless others. It has only recently run into problems installing more modern linux builds because of some hardware requirements on the motherboard. It runs linux great and all the drivers work. The screen is crisp and clear and I can turn it into a tablet which is nice for reading and such. The versatility of this reliable laptop keeps me using it as my daily driver. Even in linux the pen still works!The downside of this laptop is that it isn't capable of booting from USB and it has no optical drive. Which is a minor annoyance. And I also have to take apart the LCD casing and tighten the screws that mount the screen because the become loose. All in all I cannot believe that this laptop has been so good and I almost dread the day when I have to go get a new one.", "Date": "April 6, 2013"}, {"Title": "Better than expected! Much better.", "Author": "Sharon Stillson \"Sharon Stillson\"", "ReviewID": "R1O85PFP86JER3", "Overall": "5.0", "Content": "I purchased this used laptop for a bit over $200 bucks. I wasn't expecting much. My Motion Tablet died and I needed a replacement. I had purchased the newest cutting edge Asus tablet and was sadly disappointed. This was a \"what the hell\" purchase and I am DELIGHTED!! The laptop is in excellent condition and what's more it does everything I wanted! Even though it uses Windows XP, I can surf and shop and chat and write letters and balance the checkbook. The pen and keyboard are both easy to use and in great shape. But there is more!I am a frustrated fan of MusicMatch and I wanted to be able to use that program to play my music But it only works with Windows XP. Since this laptop uses XP, I can use my beloved MusicMatch and link to my music on my pc and play music with bluetooth speakers anywhere in the house. Heaven!It's not just that the hardware seems to be in good shape, the installed programs are very helpful.What a smart little shopper I am!", "Date": "January 22, 2013"}, {"Title": "Tablet Laptop", "Author": "B. Phillips", "ReviewID": "R24FPS9KKA6XVJ", "Overall": "1.0", "Content": "This tablet is piece of Junk..... It does not have 1.5 mhz, 40GB hard drive and 5400 RPM, instead it has zero speed.I purchased this as a gift and I am so embarrassed.This was a Bait-and-Switch, which is illegal in United States.I am very disappointed in Amazon, this is the third item I purchased from Amazon that was not as advertised.", "Date": "July 21, 2012"}, {"Title": "Terrible Toshiba!!", "Author": "JJR", "ReviewID": "R3CE3VGFGP6Z90", "Overall": "1.0", "Content": "I purchased a toshiba tablet for school. It was the worst computer purchase I have ever made. If I could I would give less than 1 star. My computer was less than a month old and the hard drive died. I purchased an extended warranty so I called to have it repaired. Toshiba then proceded to tell me that they could replace the hard drive at a repair location but I would have to purchase an OS through them to have reinstalled on my new hard drive. I thought this was ridiculous. Shortly after the hard drive was replace my motherboard died. I again called Toshiba and they were unwilling to help. I spoke to multiple supervisers before I finally filed a claim with the BBB. Toshiba finally agreed to replace my motherboard but my computer is still basically non-functional (freezes, blue screens, wont turn on) and has a very loud high pitched whine whenever I do try to use it. I would not purchase another toshiba product ever. I would also not recommend spending money on an extended warranty because toshiba customer service is unwilling to do anything to fix defective products.", "Date": "February 19, 2011"}, {"Title": "warning about Toshiba's warranty", "Author": "Marcie Glicksman", "ReviewID": "R39QF3M7TQEGPQ", "Overall": "1.0", "Content": "Here is a warning about Toshiba's warranty. You cannot count on them fixing anything under the warranty. My connection between the AC adapter to the computer became faulty. They considered this issue due to customer abuse. And their customer relations department is useless. An HP computer had the exact same issue and it was repaired free of charge. So buy any Toshiba computer with caution!", "Date": "September 10, 2010"}, {"Title": "broke down the week I got it", "Author": "antonio battaglia", "ReviewID": "R1PU96SGSM3PHM", "Overall": "1.0", "Content": "Toshiba is the worst! The computer broke down the first week I got it, and all Toshiba assistance could do in FOUR months from them is to tell me to bring it to THREE different places to get it repaired!!!", "Date": "May 14, 2004"}], "ProductInfo": {"Price": null, "Features": null, "Name": null, "ImgURL": null, "ProductID": "B00016KZGW"}} |
{"jquery.scrollbar.js":"sha512-yom5b0oTk/7dYrtkd++3sFC4xyRmkvTtEO8PQEkyhcT5wYUDiq69f8jNPHZH6FVShDwy1dyld2Gl2RO2G00VfA==","jquery.scrollbar.min.js":"sha512-/O2PcHvocz1AgNJBfUWrYgOmNytb2QjzL+yqKuUaBGWImxL7ky4QlYOm9/Mm9fi628wWS1gFT1RWNw+KZOZvQg=="} |
{
"Ar36": {
"error": 0.00032683080201121456,
"error_type": "SEM",
"filter_outliers_dict": {
"filter_outliers": true,
"iterations": 1,
"std_devs": 2
},
"fit": "Linear",
"value": 0.020235762298965218
},
"Ar37": {
"error": 0.005028588868383511,
"error_type": "SEM",
"filter_outliers_dict": {
"filter_outliers": true,
"iterations": 1,
"std_devs": 2
},
"fit": "linear",
"value": -0.0040334234943851755
},
"Ar38": {
"error": 0.0052681563917915675,
"error_type": "SEM",
"filter_outliers_dict": {
"filter_outliers": true,
"iterations": 1,
"std_devs": 2
},
"fit": "linear",
"value": 0.39776823561230906
},
"Ar39": {
"error": 0.01168917065512919,
"error_type": "SEM",
"filter_outliers_dict": {
"filter_outliers": true,
"iterations": 1,
"std_devs": 2
},
"fit": "Linear",
"value": 30.34924429548522
},
"Ar40": {
"error": 0.023918483725767326,
"error_type": "SEM",
"filter_outliers_dict": {
"filter_outliers": true,
"iterations": 1,
"std_devs": 2
},
"fit": "Linear",
"value": 159.11683042400324
},
"Ar41": {
"error": 0.02817244762603355,
"error_type": "SEM",
"filter_outliers_dict": {
"filter_outliers": true,
"iterations": 1,
"std_devs": 2
},
"fit": "Average",
"value": -0.22380467021441108
}
} |
{
"DefaultNetworkNode" : {
"label" : "ProxyService/OMProject/OrderValidation/proxy/PL_WS_OM_ORDER_VALIDATION",
"properties" : {
"transport-type" : "http",
"nodeType" : "Proxy",
"service-type" : "SOAP"
},
"successors" : {
"WSDL/MDW_CDM/EnterpriseServices/OMProject/OrderValidation/wsdl/WS_OM_ORDER_VALIDATION" : {
"label" : "WSDL/MDW_CDM/EnterpriseServices/OMProject/OrderValidation/wsdl/WS_OM_ORDER_VALIDATION",
"properties" : {
"nodeType" : "WSDL"
},
"successors" : {
"XMLSchema/MDW_CDM/EnterpriseObjects/CommonEntities/SoapHeaderSKY" : {
"label" : "XMLSchema/MDW_CDM/EnterpriseObjects/CommonEntities/SoapHeaderSKY",
"properties" : {
"nodeType" : "XMLSchema"
},
"successors" : { }
},
"XMLSchema/MDW_CDM/EnterpriseServices/OMProject/OrderValidation/xsd/XSD_OM_ORDER_VALIDATION" : {
"label" : "XMLSchema/MDW_CDM/EnterpriseServices/OMProject/OrderValidation/xsd/XSD_OM_ORDER_VALIDATION",
"properties" : {
"nodeType" : "XMLSchema"
},
"successors" : { }
}
}
},
"Pipeline/OMProject/OrderValidation/pipeline/PL_WS_OM_ORDER_VALIDATION" : {
"label" : "Pipeline/OMProject/OrderValidation/pipeline/PL_WS_OM_ORDER_VALIDATION",
"properties" : {
"nodeType" : "Pipeline"
},
"successors" : {
"PipelineTemplate/MDW_CO/templates/pipeline/PL_WS_GENERIC_OPERATION_TEMPLATE" : {
"label" : "PipelineTemplate/MDW_CO/templates/pipeline/PL_WS_GENERIC_OPERATION_TEMPLATE",
"properties" : {
"nodeType" : "PipelineTemplate"
},
"successors" : { }
},
"BusinessService/OMProject/OrderValidation/businessServices/BS_SQL_OM_ORDER_VALIDATION_PROCEDURA" : {
"label" : "BusinessService/OMProject/OrderValidation/businessServices/BS_SQL_OM_ORDER_VALIDATION_PROCEDURA",
"properties" : {
"nodeType" : "BusinessService"
},
"successors" : {
"WSDL/OMProject/Resources/BS_SQL_OM_ORDER_VALIDATION_PROCEDURA/concrete" : {
"label" : "WSDL/OMProject/Resources/BS_SQL_OM_ORDER_VALIDATION_PROCEDURA/concrete",
"properties" : {
"nodeType" : "WSDL"
},
"successors" : { }
},
"JCA/OMProject/Resources/BS_SQL_OM_ORDER_VALIDATION_PROCEDURA_db" : {
"label" : "JCA/OMProject/Resources/BS_SQL_OM_ORDER_VALIDATION_PROCEDURA_db",
"properties" : {
"nodeType" : "JCA"
},
"successors" : { }
}
}
},
"Xquery/OMProject/OrderValidation/transformations/createResponse_OrderValidationProcedura" : {
"label" : "Xquery/OMProject/OrderValidation/transformations/createResponse_OrderValidationProcedura",
"properties" : {
"nodeType" : "Xquery"
},
"successors" : { }
},
"WSDL/MDW_CDM/EnterpriseServices/OMProject/OrderValidation/wsdl/WS_OM_ORDER_VALIDATION" : {
"label" : "WSDL/MDW_CDM/EnterpriseServices/OMProject/OrderValidation/wsdl/WS_OM_ORDER_VALIDATION",
"properties" : {
"nodeType" : "WSDL"
},
"successors" : {
"XMLSchema/MDW_CDM/EnterpriseObjects/CommonEntities/SoapHeaderSKY" : {
"label" : "XMLSchema/MDW_CDM/EnterpriseObjects/CommonEntities/SoapHeaderSKY",
"properties" : {
"nodeType" : "XMLSchema"
},
"successors" : { }
},
"XMLSchema/MDW_CDM/EnterpriseServices/OMProject/OrderValidation/xsd/XSD_OM_ORDER_VALIDATION" : {
"label" : "XMLSchema/MDW_CDM/EnterpriseServices/OMProject/OrderValidation/xsd/XSD_OM_ORDER_VALIDATION",
"properties" : {
"nodeType" : "XMLSchema"
},
"successors" : { }
}
}
},
"Xquery/OMProject/OrderValidation/transformations/createRequest_OrderValidationProcedura" : {
"label" : "Xquery/OMProject/OrderValidation/transformations/createRequest_OrderValidationProcedura",
"properties" : {
"nodeType" : "Xquery"
},
"successors" : { }
}
}
}
}
}
} |
"2011\n这天,天气晴好,多像你眼里干净的事情\n我们一起坐在各自的掌心,抱着不同色彩的铅块\n下坠,多像彼此深攥的井。我们的外面\n有一圈条椅,这群慵懒的野物,从背后\n伸出欲望的小手\n它们捅破画框,夺走木料里的黑,和颜料里的白\n这个季节,我就是我的山水,我是我\n速写的胎记" |
[
{
"url": "https://api.github.com/repos/ipython/ipython/issues/comments/60019240",
"html_url": "https://github.com/ipython/ipython/issues/6767#issuecomment-60019240",
"issue_url": "https://api.github.com/repos/ipython/ipython/issues/6767",
"id": 60019240,
"node_id": "MDEyOklzc3VlQ29tbWVudDYwMDE5MjQw",
"user": {
"login": "minrk",
"id": 151929,
"node_id": "MDQ6VXNlcjE1MTkyOQ==",
"avatar_url": "https://avatars1.githubusercontent.com/u/151929?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/minrk",
"html_url": "https://github.com/minrk",
"followers_url": "https://api.github.com/users/minrk/followers",
"following_url": "https://api.github.com/users/minrk/following{/other_user}",
"gists_url": "https://api.github.com/users/minrk/gists{/gist_id}",
"starred_url": "https://api.github.com/users/minrk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/minrk/subscriptions",
"organizations_url": "https://api.github.com/users/minrk/orgs",
"repos_url": "https://api.github.com/users/minrk/repos",
"events_url": "https://api.github.com/users/minrk/events{/privacy}",
"received_events_url": "https://api.github.com/users/minrk/received_events",
"type": "User",
"site_admin": false
},
"created_at": "2014-10-22T00:11:14Z",
"updated_at": "2014-10-22T00:11:14Z",
"author_association": "MEMBER",
"body": "I'm not sure how it happened, but that's not IPython 1.0. The message \"IPython requires Python version 2.7 or 3.3 or above.\" does not appear in setup.py from IPython 1.x. Maybe clear out your build directory, and try installing with more verbose output:\n\n```\npip install -v 'ipython<2'\n```\n"
},
{
"url": "https://api.github.com/repos/ipython/ipython/issues/comments/60019775",
"html_url": "https://github.com/ipython/ipython/issues/6767#issuecomment-60019775",
"issue_url": "https://api.github.com/repos/ipython/ipython/issues/6767",
"id": 60019775,
"node_id": "MDEyOklzc3VlQ29tbWVudDYwMDE5Nzc1",
"user": {
"login": "johansen",
"id": 2372730,
"node_id": "MDQ6VXNlcjIzNzI3MzA=",
"avatar_url": "https://avatars1.githubusercontent.com/u/2372730?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/johansen",
"html_url": "https://github.com/johansen",
"followers_url": "https://api.github.com/users/johansen/followers",
"following_url": "https://api.github.com/users/johansen/following{/other_user}",
"gists_url": "https://api.github.com/users/johansen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/johansen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/johansen/subscriptions",
"organizations_url": "https://api.github.com/users/johansen/orgs",
"repos_url": "https://api.github.com/users/johansen/repos",
"events_url": "https://api.github.com/users/johansen/events{/privacy}",
"received_events_url": "https://api.github.com/users/johansen/received_events",
"type": "User",
"site_admin": false
},
"created_at": "2014-10-22T00:18:16Z",
"updated_at": "2014-10-22T00:18:16Z",
"author_association": "NONE",
"body": "Removing the build directory seems to fix the problem:\n\n``` sh\n$ sudo rm -r /tmp/pip-build-root\n$ sudo pip install 'ipython<2'\nDownloading/unpacking ipython<2\n Downloading ipython-1.2.1.tar.gz (8.7MB): 8.7MB downloaded\n Running setup.py egg_info for package ipython\nInstalling collected packages: ipython\n Running setup.py install for ipython\n Installing ipcontroller script to /usr/bin\n Installing iptest script to /usr/bin\n Installing ipcluster script to /usr/bin\n Installing ipython script to /usr/bin\n Installing pycolor script to /usr/bin\n Installing iplogger script to /usr/bin\n Installing irunner script to /usr/bin\n Installing ipengine script to /usr/bin\nSuccessfully installed ipython\nCleaning up...\n```\n\nIt seems strange to me that pip doesn't take versions into consideration and tries to build from stale files.\n\nThanks for the help.\n"
}
]
|
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "_site",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"cleanUrls": true,
"trailingSlash": false,
"redirects": [
{
"source": "/blog",
"destination": "/",
"type": 301
},
{
"source": "/Blog",
"destination": "/",
"type": 301
},
{
"source": "/blog/angular-2-ng-for-syntax",
"destination": "/blog/angular-ng-for-syntax",
"type": 301
},
{
"source": "/blog/angular-2-observable-data-services",
"destination": "/blog/angular-observable-data-services",
"type": 301
},
{
"source": "/blog/intro-to-rxjs-observables-and-angular-2",
"destination": "/blog/introduction-to-rxjs-observables-and-angular",
"type": 301
},
{
"source": "/blog/angular-2-form-builder-and-validation-management",
"destination": "/blog/angular-form-builder-and-validation-management",
"type": 301
},
{
"source": "/blog/angular-2-text-snippet-directive",
"destination": "/blog/creating-an-angular-directive",
"type": 301
},
{
"source": "/blog/angular-2-text-snippet-directive",
"destination": "/blog/creating-an-angular-directive",
"type": 301
},
{
"source": "/blog/introduction-to-angular-2-pipes",
"destination": "/blog/introduction-to-angular-pipes",
"type": 301
},
{
"source": "/blog/introduction-to-angular-2-ngclass-and-ngstyle",
"destination": "/blog/introduction-to-angular-ngclass-and-ngstyle",
"type": 301
},
{
"source": "/blog/css-encapsulation-with-angular-2-components",
"destination": "/blog/css-encapsulation-with-angular-components",
"type": 301
},
{
"source": "/blog/angular-2-development-with-visual-studio-and-windows",
"destination": "/blog/angular-development-with-visual-studio-and-windows",
"type": 301
},
{
"source": "/blog/introduction-to-angular-2-routing",
"destination": "/blog/introduction-to-angular-routing",
"type": 301
},
{
"source": "/blog/comparing-angular-1-components-to-angular-2-components",
"destination": "/blog/comparing-angular-1-components-to-the-latest-angular-components",
"type": 301
},
{
"source": "/blog/converting-angular-1-services-to-angular-2-services",
"destination": "/blog/converting-angular-1-services-to-the-latest-angular-services",
"type": 301
},
{
"source": "/blog/deploy-angular-2-cli-apps-to-firebase",
"destination": "/blog/deploy-angular-cli-apps-to-firebase",
"type": 301
},
{
"source": "/blog/introduction-to-the-angular-2-cli",
"destination": "/blog/introduction-to-the-angular-cli",
"type": 301
},
{
"source": "/blog/angular-2-upgrade-strategies-with-proxies",
"destination": "/blog/angular-upgrade-strategies-with-proxies",
"type": 301
},
{
"source": "/blog/angular-2-cli-adding-third-party-libraries",
"destination": "/blog/angular-cli-adding-third-party-libraries",
"type": 301
}
],
"headers": [
{
"source": "/service-worker.js",
"headers": [
{
"key": "Cache-Control",
"value": "no-cache"
}
]
},
{
"source": "**/*.@(eot|otf|ttf|ttc|woff|font.css)",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "*"
}
]
},
{
"source": "**/*.@(jpg|jpeg|gif|png|svg)",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=31536000"
}
]
},
{
"source": "**/*.@(css)",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=31536000"
}
]
},
{
"source": "**/*.@(js)",
"headers": [
{
"key": "Cache-Control",
"value": "max-age=31536000"
}
]
}
]
}
} |
{
"first_traded_price": 3620.0,
"highest_price": 3675.0,
"isin": "IRO1KRAF0001",
"last_traded_price": 3605.0,
"lowest_price": 3603.0,
"trade_volume": 1994901.0,
"unix_time": 1274140800
} |
{
"id": 81343,
"rating": 988,
"attempts": 1025,
"fen": "6r1/pp2kp1N/4p3/4p1P1/q2pP1QP/7K/8/7R w - - 0 30",
"color": "black",
"initialPly": 59,
"gameId": "uOE1bwHV",
"lines": {
"a4a3": {
"g4g3": {
"a3c1": {
"g3e5": "win"
}
}
}
},
"vote": 28,
"enabled": true
} |
{
"first_traded_price": 920.0,
"highest_price": 949.0,
"isin": "IRO1TKSM0001",
"last_traded_price": 910.0,
"lowest_price": 905.0,
"trade_volume": 6644925.0,
"unix_time": 1454976000
} |
{
"id": "cdffb36b-a55f-7375-b64c-247a97d7dd0d",
"offset": "2211",
"occurred": "2015-11-13T17:08:42.393Z",
"processed": "2015-11-13T17:08:42.393Z",
"device": {
"amazon_channel": "86afcd46-d41f-c217-27c0-7514b5166b8c",
"named_user_id": "94733b42-01a6-4e63-9ff1-f7a5676763c6"
},
"body": {
"push_id": "7010664c-adb6-6461-2c22-d642ce3062f4"
},
"type": "RICH_READ"
} |
{
"view" : {
"class" : "view",
"inherit-position" : true,
"margin-bottom" : 0,
"margin-left" : 0,
"margin-right" : 0,
"margin-top" : 0,
"name" : "rootView",
"percent-height" : 1,
"percent-width" : 1,
"position-x" : "left",
"position-y" : "bottom",
"children" : [
{
"9slicescalezone-height" : 0.81425,
"9slicescalezone-width" : 0.900647,
"9slicescalezone-x" : 0.033,
"9slicescalezone-y" : 0.05175,
"anchor-x" : "center",
"anchor-y" : "center",
"class" : "image",
"height" : 280,
"image" : "mar_modal_basic_bg.png",
"margin-bottom" : 0,
"margin-left" : 0,
"margin-right" : 0,
"margin-top" : 0,
"name" : "modal_bg",
"position-x" : "center",
"position-y" : "center",
"width" : 340,
"children" : [
{
"alignment" : "center",
"anchor-x" : "center",
"anchor-y" : "center",
"class" : "label",
"color" : [
244,
174,
5
],
"font" : "Gotham-Bold",
"font-size" : 23,
"gradient-top-color" : [
248,
255,
227
],
"margin-bottom" : 0,
"margin-left" : 0,
"margin-right" : 2,
"margin-top" : 16,
"max-width" : 300,
"name" : "label_title0",
"position-x" : "center",
"position-y" : "top",
"stroke-color" : [
153,
63,
4
],
"stroke-thickness" : 2,
"text" : "Select a Character"
},
{
"9slicescalezone-height" : 0.93,
"9slicescalezone-width" : 0.93,
"9slicescalezone-x" : 0.031795,
"9slicescalezone-y" : 0.03,
"anchor-x" : "center",
"anchor-y" : "center",
"class" : "image",
"height" : 195,
"image" : "action_level_fill_bg.png",
"margin-bottom" : 0,
"margin-left" : 0,
"margin-right" : 3,
"margin-top" : 32,
"name" : "action_level_fill_bg",
"position-x" : "center",
"position-y" : "center",
"width" : 302
},
{
"anchor-x" : "center",
"anchor-y" : "center",
"class" : "table-view",
"height" : 195,
"margin-bottom" : 0,
"margin-left" : 0,
"margin-right" : 2.5,
"margin-top" : 32,
"name" : "tableview",
"position-x" : "center",
"position-y" : "center",
"width" : 297
},
{
"9slicescalezone-height" : 0.333,
"9slicescalezone-width" : 0.333,
"9slicescalezone-x" : 0.333,
"9slicescalezone-y" : 0.333,
"actions" : [],
"anchor-x" : "center",
"anchor-y" : "center",
"class" : "button",
"height" : 20,
"image" : "button_close.png",
"margin-bottom" : 136,
"margin-left" : 168,
"margin-right" : 0,
"margin-top" : 0,
"name" : "button_close",
"position-x" : "center",
"position-y" : "center",
"width" : 20
},
{
"anchor-x" : "left",
"anchor-y" : "top",
"class" : "image",
"height" : 20,
"image" : "settings_signin_textfield.png",
"margin-bottom" : 90,
"margin-left" : 0,
"margin-right" : 154,
"margin-top" : 0,
"name" : "searchBG",
"position-x" : "center",
"position-y" : "center",
"width" : 202
},
{
"anchor-x" : "left",
"anchor-y" : "top",
"class" : "text-input",
"color" : [
0,
0,
0
],
"font-size" : 14,
"height" : 20,
"margin-bottom" : 88.5,
"margin-left" : 0,
"margin-right" : 146,
"margin-top" : 0,
"name" : "searchField",
"placeholder-text" : "Search...",
"position-x" : "center",
"position-y" : "center",
"width" : 192
},
{
"9slicescalezone-height" : 0.333,
"9slicescalezone-width" : 0.333,
"9slicescalezone-x" : 0.333,
"9slicescalezone-y" : 0.333,
"actions" : [],
"anchor-x" : "right",
"anchor-y" : "top",
"class" : "button",
"height" : 24,
"image" : "invisible.png",
"margin-bottom" : 92.5,
"margin-left" : 150,
"margin-right" : 0,
"margin-top" : 0,
"name" : "button_regex",
"position-x" : "center",
"position-y" : "center",
"width" : 50,
"children" : [
{
"9slicescalezone-height" : 0.333,
"9slicescalezone-width" : 0.333,
"9slicescalezone-x" : 0.333,
"9slicescalezone-y" : 0.333,
"actions" : [],
"anchor-x" : "right",
"anchor-y" : "top",
"class" : "image",
"height" : 24,
"image" : "button_generic_green.png",
"margin-bottom" : 12,
"margin-left" : 25,
"margin-right" : 0,
"margin-top" : 0,
"name" : "regex_enabled",
"position-x" : "center",
"position-y" : "center",
"width" : 50,
"children" : [
{
"alignment" : "center",
"anchor-x" : "center",
"anchor-y" : "center",
"class" : "label",
"color" : [
79,
100,
0
],
"font" : "Gotham-Black",
"font-size" : 12,
"margin-bottom" : 0,
"margin-left" : 0,
"margin-right" : 0,
"margin-top" : 0,
"max-width" : 50,
"name" : "label_enabled",
"position-x" : "center",
"position-y" : "center",
"shadow-color" : [
216,
235,
64
],
"shadow-offset" : [
0,
-1
],
"text" : "Regex"
}
]
},
{
"9slicescalezone-height" : 0.33,
"9slicescalezone-width" : 0.33,
"9slicescalezone-x" : 0.33,
"9slicescalezone-y" : 0.33,
"actions" : [],
"anchor-x" : "right",
"anchor-y" : "top",
"class" : "image",
"height" : 24,
"image" : "button_generic_gray.png",
"margin-bottom" : 12,
"margin-left" : 25,
"margin-right" : 0,
"margin-top" : 0,
"name" : "regex_disabled",
"position-x" : "center",
"position-y" : "center",
"sizing" : "SpriteFill",
"width" : 50,
"children" : [
{
"alignment" : "center",
"anchor-x" : "center",
"anchor-y" : "center",
"class" : "label",
"color" : [
90,
90,
90
],
"font" : "Gotham-Black",
"font-size" : 12,
"margin-bottom" : 0,
"margin-left" : 0,
"margin-right" : 0,
"margin-top" : 0,
"max-width" : 50,
"name" : "label_disabled",
"position-x" : "center",
"position-y" : "center",
"shadow-color" : [
220,
220,
220
],
"shadow-offset" : [
0,
-1
],
"text" : "Regex"
}
]
}
]
},
{
"9slicescalezone-height" : 0.333,
"9slicescalezone-width" : 0.333,
"9slicescalezone-x" : 0.333,
"9slicescalezone-y" : 0.333,
"actions" : [],
"anchor-x" : "right",
"anchor-y" : "top",
"class" : "button",
"height" : 24,
"image" : "button_generic_green.png",
"margin-bottom" : 92.5,
"margin-left" : 99,
"margin-right" : 0,
"margin-top" : 0,
"name" : "button_search",
"position-x" : "center",
"position-y" : "center",
"width" : 50,
"children" : [
{
"alignment" : "center",
"anchor-x" : "center",
"anchor-y" : "center",
"class" : "label",
"color" : [
79,
100,
0
],
"font" : "Gotham-Black",
"font-size" : 12,
"margin-bottom" : 0,
"margin-left" : 0,
"margin-right" : 0,
"margin-top" : 0,
"max-width" : 50,
"name" : "label_search",
"position-x" : "center",
"position-y" : "center",
"shadow-color" : [
216,
235,
64
],
"shadow-offset" : [
0,
-1
],
"text" : "Search"
}
]
}
]
}
]
},
"psdName" : "GriffinUiTool-original"
} |
{
"date_blocked": null,
"citation": {
"state_cite_three": null,
"federal_cite_one": "306 U.S. 354",
"federal_cite_two": null,
"specialty_cite_one": null,
"federal_cite_three": null,
"lexis_cite": null,
"document_uris": [
"/api/rest/v2/document/103162/"
],
"scotus_early_cite": null,
"case_name": "Pierre v. Louisiana",
"westlaw_cite": null,
"state_cite_one": null,
"neutral_cite": null,
"state_cite_regional": null,
"state_cite_two": null,
"docket_number": "142",
"id": 87545,
"resource_uri": "/api/rest/v2/citation/87545/"
},
"id": 103162,
"blocked": false,
"judges": "Black",
"court": "/api/rest/v2/jurisdiction/scotus/",
"date_filed": "1939-02-27",
"download_url": null,
"source": "LR",
"local_path": null,
"html_lawbox": "<div>\n<center><b>306 U.S. 354 (1939)</b></center>\n<center><h1>PIERRE<br>\nv.<br>\nLOUISIANA.</h1></center>\n<center>No. 142.</center>\n<center><p><b>Supreme Court of United States.</b></p></center>\n<center>Argued February 3, 6, 1939.</center>\n<center>Decided February 27, 1939.</center>\nCERTIORARI TO THE SUPREME COURT OF LOUISIANA.\n<p><i>Mr. Maurice R. Woulfe</i> for petitioner.</p>\n<p><i>Mr. John E. Fleury,</i> with whom <i>Messrs. Gaston L. Porterie,</i> Attorney General of Louisiana, <i>James O'Connor,</i> Assistant Attorney General, and <i>Ernest M. Conzelmann</i> were on the brief, for respondent.</p>\n<p>MR. JUSTICE BLACK delivered the opinion of the Court.</p>\n<p>Indicted for murder, petitioner, a member of the negro race, was convicted and sentenced to death in a state court of the Parish of St. John the Baptist, Louisiana. <span class=\"star-pagination\">*355</span> The Louisiana Supreme Court affirmed.<sup>[1]</sup> His petition for certiorari to review the Louisiana Supreme Court's judgment rested upon the grave claim \u0097 earnestly, but unsuccessfully urged in both state courts \u0097 that because of his race he had not been accorded the equal protection of the laws guaranteed to all races in all the States by the Fourteenth Amendment to the Federal Constitution. For this reason, we granted certiorari.<sup>[2]</sup></p>\n<p>The indictment against petitioner was returned January 18, 1937. He made timely motion to quash the indictment and the general venire from which had been drawn both the Grand Jury that returned the indictment and the Petit Jury for the week of his trial. His motion also prayed that the Grand Jury Panel and the Petit Jury Panel be quashed. This sworn motion alleged that petitioner was a negro and had been indicted for murder of a white man; that at least one-third of the population of the Parish from which the Grand and Petit Juries were drawn were members of the negro race, but the general venire had contained no names of negroes when the Grand Jury that indicted petitioner was drawn; that the state officers charged by law with the duty of providing names for the general venire had \"deliberately excluded therefrom the names of any negroes qualified to serve as Grand or Petit Jurors, . . .\" and had \"systematically, unlawfully and unconstitutionally excluded negroes from the Grand or Petit Jury in said Parish\" for at least twenty years \"solely and only because of their race and color\"; and that petitioner had thus been denied the equal protection of the laws guaranteed him by the Constitution of Louisiana and the Fourteenth Amendment to the Constitution of the United States.</p>\n<p>No pleadings denying these allegations appear in the record, and the State offered no witnesses on the motion. <span class=\"star-pagination\">*356</span> Petitioner offered twelve witnesses who were questioned by his counsel, the State's Assistant District Attorney, and the court. On the basis of this evidence, the trial judge sustained the motion to quash the Petit Jury Panel and venire and subsequently ordered the box containing the general venire (from which both Grand and Petit Juries had been drawn) emptied, purged and refilled. This was done; a new Petit Jury Panel composed of both whites and negroes was subsequently drawn from the refilled Jury box and from this Panel a Petit Jury was selected which tried and convicted petitioner. Although the Grand Jury that indicted petitioner and the quashed Petit Jury Panel had been selected from the same original general venire<sup>[3]</sup> the trial judge overruled that part of petitioner's motion seeking to quash the Grand Jury Panel and the indictment.</p>\n<p><i>First.</i> The reason assigned by the trial judge for refusing to quash the Grand Jury Panel and indictment was that \"the Constitutional rights of the defendant [are] . . . not affected by reason of the fact that persons of the Colored or African race are not placed on the Grand Jury, because . . . the mere presentment of an indictment is not evidence of guilt . . . it simply informs the Court <span class=\"star-pagination\">*357</span> of a commission of a crime and brings the accused before the court for prosecution.\" But the bill of rights of the Louisiana Constitution (Dart, 1932, Art. 1, \u00a7 9) provides that \"no person shall be held to answer for capital crime unless on a presentment or indictment by a grand jury, . . .\" And the State concedes here, as the Supreme Court of Louisiana pointed out in its opinion in this case, that \". . . . it is specially provided in the [Louisiana] law prescribing the method of drawing grand and petit jurors to serve in both civil and criminal cases that `there shall be no distinction made on account of race, color or previous condition,'\" and \"If . . . [qualified] members of the negro . . . race . . . have been systematically excluded from . .. service in the parish of St. John, . . . solely because of their race or color, the indictment should have been quashed . ..\" Exclusion from Grand or Petit Jury service on account of race is forbidden by the Fourteenth Amendment.<sup>[4]</sup> In addition to the safeguards of the Fourteenth Amendment, Congress has provided that \"No citizen possessing all other qualifications . . . shall be disqualified for service as grand or petit juror in any court of the United States, or of any State on account of race, color or previous condition of servitude; . . .\"<sup>[5]</sup> Petitioner does not here contend that Louisiana laws required an unconstitutional exclusion of negroes from the Grand Jury which indicted him. His evidence was offered to show that Louisiana \u0097 acting through its administrative officers \u0097 had deliberately and systematically excluded negroes from jury service because of race, in violation of the laws and Constitutions of Louisiana and the United States.<sup>[6]</sup></p>\n<p><span class=\"star-pagination\">*358</span> If petitioner's evidence of such systematic exclusion of negroes from the general venire was sufficient to support the trial court's action in quashing the Petit Jury drawn from that general venire, it necessarily follows that the indictment returned by a Grand Jury, selected from the same general venire, should also have been quashed.</p>\n<p><i>Second.</i> But the State insists, and the Louisiana Supreme Court held (the Chief Justice dissenting), that this evidence failed to establish that members of the negro race were excluded from the Grand Jury venire on account of race, and that the trial court's finding of discrimination was erroneous. Our decision and judgment must therefore turn upon these disputed questions of fact. In our consideration of the facts the conclusions reached by the Supreme Court of Louisiana are entitled to great respect. Yet, when a claim is properly asserted \u0097 as in this case \u0097 that a citizen whose life is at stake has been denied the equal protection of his country's laws on account of his race, it becomes our solemn duty to make independent inquiry and determination of the disputed facts<sup>[7]</sup> \u0097 for equal protection to all is the basic principle upon which justice under law rests. Indictment by Grand Jury and trial by jury cease to harmonize with our traditional concepts of justice at the very moment particular groups, classes or races \u0097 otherwise qualified to serve as jurors in a community \u0097 are excluded as such from jury service.<sup>[8]</sup> The Fourteenth Amendment intrusts those who because of race are denied equal protection of the laws in a State first \"to the revisory power of the higher courts of the State, and ultimately to the review of this court.\"<sup>[9]</sup></p>\n<p>Petitioner's witnesses on the motion were the Clerk of the court \u0097 ex-officio a member of the Jury Commission; <span class=\"star-pagination\">*359</span> the Sheriff of the Parish; the Superintendent of Schools who had served the Parish for eleven years; and other residents of the Parish, both white and colored. The testimony of petitioner's witnesses (the State offered no witnesses) showed that from 1896 to 1936 no negro had served on the Grand or Petit Juries in the Parish; that a venire of three hundred in December, 1936, contained the names of three negroes, one of whom was then dead, one of whom (D.N. Dinbaut) was listed on the venire as F.N. Dinfant; the third \u0097 called for Petit Jury service in January, 1937 \u0097 was the only negro who had ever been called for jury service within the memory of the Clerk of the court, the Sheriff, or any other witnesses who testified; and that there were many negro citizens of the Parish qualified under the laws of Louisiana to serve as Grand or Petit Jurors. According to the testimony, negroes constituted 25 to 50 per cent of a total Parish population of twelve to fifteen thousand. The report of the United States Department of Commerce, Bureau of the Census, for 1930, shows that the total Parish population was fourteen thousand and seventy-eight, 49.7 per cent native white, and 49.3 per cent negro. In a total negro population (ten years old and over) of five thousand two hundred and ninety, 29.9 per cent were classified by the census as illiterate.</p>\n<p>The Louisiana Supreme Court found \u0097 contrary to the trial judge \u0097 that negroes had not been excluded from jury service on account of race, but that their exclusion was the result of a <i>bona fide</i> compliance by the Jury Commission with state laws prescribing jury qualifications. With this conclusion we cannot agree. Louisiana law requires the Commissioners to select names for the general venire from persons qualified to serve without distinction as to race or color. In order to be qualified a person must be:</p>\n<p><span class=\"star-pagination\">*360</span> (a) A citizen of the State, over twenty-one years of age with two years' residence in the Parish.</p>\n<p>(b) Able to read and write the English language.</p>\n<p>(c) Not charged with any offense or convicted of a felony,</p>\n<p>(d) Of well known good character and standing in the community.<sup>[10]</sup></p>\n<p>The fact that approximately one-half of the Parish's population were negroes demonstrates that there could have been no lack of colored residents over twenty-one years of age.</p>\n<p>It appears from the 1930 census that 70 per cent of the negro population of the Parish was literate, and the County Superintendent of Schools testified that fully two thousand five hundred (83 per cent), of the Parish's negro population estimated by him at only three thousand, were able to read and write. Petitioner's evidence established beyond question that the majority of the negro population could read and write, and, in this respect, were eligible under the statute for selection as jurymen.</p>\n<p>There is no evidence on which even an inference can be based that any appreciable number of the otherwise qualified negroes in the Parish were disqualified for selection because of bad character or criminal records.</p>\n<p>We conclude that the exclusion of negroes from jury service was not due to their failure to possess the statutory qualifications.</p>\n<p>The general venire box for the Parish in which petitioner was tried was required<sup>[11]</sup> \u0097 under Louisiana law \u0097 to contain a list of three hundred names selected by Jury Commissioners appointed by the District Judge, and this list had to be supplemented from time to time so as to <span class=\"star-pagination\">*361</span> maintain the required three hundred names. Although Petit Jurors are drawn from the general venire box after the names have been well mixed,<sup>[12]</sup> the law provides<sup>[13]</sup> that \"the commission shall <i>select</i> . . . [from the general venire list] the names of twenty citizens, possessing the qualifications of grand jurors, .. .\" [Italics supplied.] The twenty names out of which the challenged Grand Jury of twelve was drawn, actually were the first twenty names on a new list of fifty names supplied \u0097 on the day the Grand Jury List was selected \u0097 by the Jury Commission as a \"supplement\" to the general venire of three hundred. Thus, if colored citizens had been named on the general venire, they apparently were not considered, because the Commission went no further than the first twenty names on the supplemental list which itself contained no names of negroes. Furthermore, the uncontradicted evidence on the motion to quash showed that no negro had ever been <i>selected</i> for Grand Jury service in the Parish within the memory of any of the witnesses who testified on that point.</p>\n<p>The testimony introduced by petitioner on his motion to quash created a strong <i>prima facie</i> showing that negroes had been systematically excluded \u0097 because of race \u0097 from the Grand Jury and the venire from which it was selected. Such an exclusion is a denial of equal protection of the laws, contrary to the Federal Constitution \u0097 the supreme law of the land.<sup>[14]</sup> \"The fact that the testimony . . . was not challenged by evidence appropriately direct, cannot be brushed aside.\"<sup>[15]</sup> Had there been evidence obtainable to contradict and disprove the testimony offered <span class=\"star-pagination\">*362</span> by petitioner, it cannot be assumed that the State would have refrained from introducing it. The Jury Commissioners, appointed by the District Judge, were not produced as witnesses by the State. The trial judge, who had appointed the Commission, listening to the evidence and aided by a familiarity with conditions in the Parish of many years' standing, as judge, prosecutor and practicing attorney, concluded that negroes had been excluded from Jury service because of their race, and ordered the venire quashed and the box purged and refilled. Our examination of the evidence convinces us that the bill of exceptions which he signed correctly stated that petitioner \"did prove at the trial of said motion to Quash that negroes as persons of color had been purposely excluded from the Grand Jury Venire and Panel which returned said indictment against . . . [petitioner] on account of their color and race, . . .\"</p>\n<p>Principles which forbid discrimination in the selection of Petit Juries also govern the selection of Grand Juries. \"It is a right to which every colored man is entitled, that, in the selection of jurors to pass upon his life, liberty, or property, there shall be no exclusion of his race, and no discrimination against them because of their color.\"<sup>[16]</sup> This record requires the holding that the court below was in error both in affirming the conviction of petitioner and in failing to hold that the indictment against him should have been quashed. The cause is reversed and remanded to the Supreme Court of Louisiana.</p>\n<p><i>Reversed.</i></p>\n<h2>NOTES</h2>\n<p>[1] 189 La. 764; 180 So. 630.</p>\n<p>[2] 305 U.S. 586.</p>\n<p>[3] Under Louisiana practice the District Judge orders the Jury Commission to select three hundred qualified jurors in a given Parish, who compose the general venire list, to be kept complete and supplemented from time to time. These names are placed in the \"General Venire Box.\" From the general venire list, the Commission selects twenty persons qualified as grand jurors, to serve six months, who compose the \"List of Grand Jurors.\" The Judge selects a foreman from the \"List of Grand Jurors\" and the sheriff draws eleven more who, with the foreman, constitute the Grand Jury Panel. After selection of the \"List of Grand Jurors\" the Commission draws thirty names from the \"General Venire Box\" to serve as Petit Jurors, who are designated a \"List of Jurors\" and this \"List of Jurors\" is kept in the \"Jury Box.\" Louisiana Code of Criminal Procedure (Dart, 1932) Title XVIII, c. 2.</p>\n<p>[4] <i>Strauder</i> v. <i>West Virginia,</i> 100 U.S. 303, 308, 309; <i>Carter</i> v. <i>Texas,</i> 177 U.S. 442, 447; <i>Martin</i> v. <i>Texas,</i> 200 U.S. 316, 319.</p>\n<p>[5] U.S.C. Title 8, \u00a7 44.</p>\n<p>[6] Cf., <i>Norris</i> v. <i>Alabama,</i> 294 U.S. 587, 589; <i>Neal</i> v. <i>Delaware,</i> 103 U.S. 370, 397; <i>Carter</i> v. <i>Texas, supra,</i> at 447; <i>Hale</i> v. <i>Kentucky,</i> 303 U.S. 613, 616.</p>\n<p>[7] <i>Norris</i> v. <i>Alabama,</i> 294 U.S. 587, 590.</p>\n<p>[8] Cf. <i>Strauder</i> v. <i>West Virginia, supra,</i> 308, 309.</p>\n<p>[9] <i>Virginia</i> v. <i>Rives,</i> 100 U.S. 313, 319.</p>\n<p>[10] Louisiana Code of Criminal Procedure, <i>supra,</i> Title XVIII, c. 1.</p>\n<p>[11] See note 3, <i>supra.</i></p>\n<p>[12] Louisiana Code of Criminal Procedure, <i>supra,</i> Title XVIII, c. 2, Art. 181.</p>\n<p>[13] <i>Id.,</i> Art. 180.</p>\n<p>[14] <i>Neal</i> v. <i>Delaware, supra,</i> 397; <i>Norris</i> v. <i>Alabama, supra,</i> 591; <i>Hale</i> v. <i>Kentucky, supra,</i> 616.</p>\n<p>[15] <i>Norris</i> v. <i>Alabama, supra,</i> 594, 595.</p>\n<p>[16] <i>Virginia</i> v. <i>Rives, supra,</i> 322-3.</p>\n\n</div>",
"time_retrieved": "2010-04-28T09:54:18",
"nature_of_suit": "",
"plain_text": "",
"html_with_citations": "<div>\n<center><b><span class=\"citation no-link\"><span class=\"volume\">306</span> <span class=\"reporter\">U.S.</span> <span class=\"page\">354</span></span> (1939)</b></center>\n<center><h1>PIERRE<br>\nv.<br>\nLOUISIANA.</h1></center>\n<center>No. 142.</center>\n<center><p><b>Supreme Court of United States.</b></p></center>\n<center>Argued February 3, 6, 1939.</center>\n<center>Decided February 27, 1939.</center>\nCERTIORARI TO THE SUPREME COURT OF LOUISIANA.\n<p><i>Mr. Maurice R. Woulfe</i> for petitioner.</p>\n<p><i>Mr. John E. Fleury,</i> with whom <i>Messrs. Gaston L. Porterie,</i> Attorney General of Louisiana, <i>James O'Connor,</i> Assistant Attorney General, and <i>Ernest M. Conzelmann</i> were on the brief, for respondent.</p>\n<p>MR. JUSTICE BLACK delivered the opinion of the Court.</p>\n<p>Indicted for murder, petitioner, a member of the negro race, was convicted and sentenced to death in a state court of the Parish of St. John the Baptist, Louisiana. <span class=\"star-pagination\">*355</span> The Louisiana Supreme Court affirmed.<sup>[1]</sup> His petition for certiorari to review the Louisiana Supreme Court's judgment rested upon the grave claim \u0097 earnestly, but unsuccessfully urged in both state courts \u0097 that because of his race he had not been accorded the equal protection of the laws guaranteed to all races in all the States by the Fourteenth Amendment to the Federal Constitution. For this reason, we granted certiorari.<sup>[2]</sup></p>\n<p>The indictment against petitioner was returned January 18, 1937. He made timely motion to quash the indictment and the general venire from which had been drawn both the Grand Jury that returned the indictment and the Petit Jury for the week of his trial. His motion also prayed that the Grand Jury Panel and the Petit Jury Panel be quashed. This sworn motion alleged that petitioner was a negro and had been indicted for murder of a white man; that at least one-third of the population of the Parish from which the Grand and Petit Juries were drawn were members of the negro race, but the general venire had contained no names of negroes when the Grand Jury that indicted petitioner was drawn; that the state officers charged by law with the duty of providing names for the general venire had \"deliberately excluded therefrom the names of any negroes qualified to serve as Grand or Petit Jurors, . . .\" and had \"systematically, unlawfully and unconstitutionally excluded negroes from the Grand or Petit Jury in said Parish\" for at least twenty years \"solely and only because of their race and color\"; and that petitioner had thus been denied the equal protection of the laws guaranteed him by the Constitution of Louisiana and the Fourteenth Amendment to the Constitution of the United States.</p>\n<p>No pleadings denying these allegations appear in the record, and the State offered no witnesses on the motion. <span class=\"star-pagination\">*356</span> Petitioner offered twelve witnesses who were questioned by his counsel, the State's Assistant District Attorney, and the court. On the basis of this evidence, the trial judge sustained the motion to quash the Petit Jury Panel and venire and subsequently ordered the box containing the general venire (from which both Grand and Petit Juries had been drawn) emptied, purged and refilled. This was done; a new Petit Jury Panel composed of both whites and negroes was subsequently drawn from the refilled Jury box and from this Panel a Petit Jury was selected which tried and convicted petitioner. Although the Grand Jury that indicted petitioner and the quashed Petit Jury Panel had been selected from the same original general venire<sup>[3]</sup> the trial judge overruled that part of petitioner's motion seeking to quash the Grand Jury Panel and the indictment.</p>\n<p><i>First.</i> The reason assigned by the trial judge for refusing to quash the Grand Jury Panel and indictment was that \"the Constitutional rights of the defendant [are] . . . not affected by reason of the fact that persons of the Colored or African race are not placed on the Grand Jury, because . . . the mere presentment of an indictment is not evidence of guilt . . . it simply informs the Court <span class=\"star-pagination\">*357</span> of a commission of a crime and brings the accused before the court for prosecution.\" But the bill of rights of the Louisiana Constitution (Dart, 1932, Art. 1, \u00a7 9) provides that \"no person shall be held to answer for capital crime unless on a presentment or indictment by a grand jury, . . .\" And the State concedes here, as the Supreme Court of Louisiana pointed out in its opinion in this case, that \". . . . it is specially provided in the [Louisiana] law prescribing the method of drawing grand and petit jurors to serve in both civil and criminal cases that `there shall be no distinction made on account of race, color or previous condition,'\" and \"If . . . [qualified] members of the negro . . . race . . . have been systematically excluded from . .. service in the parish of St. John, . . . solely because of their race or color, the indictment should have been quashed . ..\" Exclusion from Grand or Petit Jury service on account of race is forbidden by the Fourteenth Amendment.<sup>[4]</sup> In addition to the safeguards of the Fourteenth Amendment, Congress has provided that \"No citizen possessing all other qualifications . . . shall be disqualified for service as grand or petit juror in any court of the United States, or of any State on account of race, color or previous condition of servitude; . . .\"<sup>[5]</sup> Petitioner does not here contend that Louisiana laws required an unconstitutional exclusion of negroes from the Grand Jury which indicted him. His evidence was offered to show that Louisiana \u0097 acting through its administrative officers \u0097 had deliberately and systematically excluded negroes from jury service because of race, in violation of the laws and Constitutions of Louisiana and the United States.<sup>[6]</sup></p>\n<p><span class=\"star-pagination\">*358</span> If petitioner's evidence of such systematic exclusion of negroes from the general venire was sufficient to support the trial court's action in quashing the Petit Jury drawn from that general venire, it necessarily follows that the indictment returned by a Grand Jury, selected from the same general venire, should also have been quashed.</p>\n<p><i>Second.</i> But the State insists, and the Louisiana Supreme Court held (the Chief Justice dissenting), that this evidence failed to establish that members of the negro race were excluded from the Grand Jury venire on account of race, and that the trial court's finding of discrimination was erroneous. Our decision and judgment must therefore turn upon these disputed questions of fact. In our consideration of the facts the conclusions reached by the Supreme Court of Louisiana are entitled to great respect. Yet, when a claim is properly asserted \u0097 as in this case \u0097 that a citizen whose life is at stake has been denied the equal protection of his country's laws on account of his race, it becomes our solemn duty to make independent inquiry and determination of the disputed facts<sup>[7]</sup> \u0097 for equal protection to all is the basic principle upon which justice under law rests. Indictment by Grand Jury and trial by jury cease to harmonize with our traditional concepts of justice at the very moment particular groups, classes or races \u0097 otherwise qualified to serve as jurors in a community \u0097 are excluded as such from jury service.<sup>[8]</sup> The Fourteenth Amendment intrusts those who because of race are denied equal protection of the laws in a State first \"to the revisory power of the higher courts of the State, and ultimately to the review of this court.\"<sup>[9]</sup></p>\n<p>Petitioner's witnesses on the motion were the Clerk of the court \u0097 ex-officio a member of the Jury Commission; <span class=\"star-pagination\">*359</span> the Sheriff of the Parish; the Superintendent of Schools who had served the Parish for eleven years; and other residents of the Parish, both white and colored. The testimony of petitioner's witnesses (the State offered no witnesses) showed that from 1896 to 1936 no negro had served on the Grand or Petit Juries in the Parish; that a venire of three hundred in December, 1936, contained the names of three negroes, one of whom was then dead, one of whom (D.N. Dinbaut) was listed on the venire as F.N. Dinfant; the third \u0097 called for Petit Jury service in January, 1937 \u0097 was the only negro who had ever been called for jury service within the memory of the Clerk of the court, the Sheriff, or any other witnesses who testified; and that there were many negro citizens of the Parish qualified under the laws of Louisiana to serve as Grand or Petit Jurors. According to the testimony, negroes constituted 25 to 50 per cent of a total Parish population of twelve to fifteen thousand. The report of the United States Department of Commerce, Bureau of the Census, for 1930, shows that the total Parish population was fourteen thousand and seventy-eight, 49.7 per cent native white, and 49.3 per cent negro. In a total negro population (ten years old and over) of five thousand two hundred and ninety, 29.9 per cent were classified by the census as illiterate.</p>\n<p>The Louisiana Supreme Court found \u0097 contrary to the trial judge \u0097 that negroes had not been excluded from jury service on account of race, but that their exclusion was the result of a <i>bona fide</i> compliance by the Jury Commission with state laws prescribing jury qualifications. With this conclusion we cannot agree. Louisiana law requires the Commissioners to select names for the general venire from persons qualified to serve without distinction as to race or color. In order to be qualified a person must be:</p>\n<p><span class=\"star-pagination\">*360</span> (a) A citizen of the State, over twenty-one years of age with two years' residence in the Parish.</p>\n<p>(b) Able to read and write the English language.</p>\n<p>(c) Not charged with any offense or convicted of a felony,</p>\n<p>(d) Of well known good character and standing in the community.<sup>[10]</sup></p>\n<p>The fact that approximately one-half of the Parish's population were negroes demonstrates that there could have been no lack of colored residents over twenty-one years of age.</p>\n<p>It appears from the 1930 census that 70 per cent of the negro population of the Parish was literate, and the County Superintendent of Schools testified that fully two thousand five hundred (83 per cent), of the Parish's negro population estimated by him at only three thousand, were able to read and write. Petitioner's evidence established beyond question that the majority of the negro population could read and write, and, in this respect, were eligible under the statute for selection as jurymen.</p>\n<p>There is no evidence on which even an inference can be based that any appreciable number of the otherwise qualified negroes in the Parish were disqualified for selection because of bad character or criminal records.</p>\n<p>We conclude that the exclusion of negroes from jury service was not due to their failure to possess the statutory qualifications.</p>\n<p>The general venire box for the Parish in which petitioner was tried was required<sup>[11]</sup> \u0097 under Louisiana law \u0097 to contain a list of three hundred names selected by Jury Commissioners appointed by the District Judge, and this list had to be supplemented from time to time so as to <span class=\"star-pagination\">*361</span> maintain the required three hundred names. Although Petit Jurors are drawn from the general venire box after the names have been well mixed,<sup>[12]</sup> the law provides<sup>[13]</sup> that \"the commission shall <i>select</i> . . . [from the general venire list] the names of twenty citizens, possessing the qualifications of grand jurors, .. .\" [Italics supplied.] The twenty names out of which the challenged Grand Jury of twelve was drawn, actually were the first twenty names on a new list of fifty names supplied \u0097 on the day the Grand Jury List was selected \u0097 by the Jury Commission as a \"supplement\" to the general venire of three hundred. Thus, if colored citizens had been named on the general venire, they apparently were not considered, because the Commission went no further than the first twenty names on the supplemental list which itself contained no names of negroes. Furthermore, the uncontradicted evidence on the motion to quash showed that no negro had ever been <i>selected</i> for Grand Jury service in the Parish within the memory of any of the witnesses who testified on that point.</p>\n<p>The testimony introduced by petitioner on his motion to quash created a strong <i>prima facie</i> showing that negroes had been systematically excluded \u0097 because of race \u0097 from the Grand Jury and the venire from which it was selected. Such an exclusion is a denial of equal protection of the laws, contrary to the Federal Constitution \u0097 the supreme law of the land.<sup>[14]</sup> \"The fact that the testimony . . . was not challenged by evidence appropriately direct, cannot be brushed aside.\"<sup>[15]</sup> Had there been evidence obtainable to contradict and disprove the testimony offered <span class=\"star-pagination\">*362</span> by petitioner, it cannot be assumed that the State would have refrained from introducing it. The Jury Commissioners, appointed by the District Judge, were not produced as witnesses by the State. The trial judge, who had appointed the Commission, listening to the evidence and aided by a familiarity with conditions in the Parish of many years' standing, as judge, prosecutor and practicing attorney, concluded that negroes had been excluded from Jury service because of their race, and ordered the venire quashed and the box purged and refilled. Our examination of the evidence convinces us that the bill of exceptions which he signed correctly stated that petitioner \"did prove at the trial of said motion to Quash that negroes as persons of color had been purposely excluded from the Grand Jury Venire and Panel which returned said indictment against . . . [petitioner] on account of their color and race, . . .\"</p>\n<p>Principles which forbid discrimination in the selection of Petit Juries also govern the selection of Grand Juries. \"It is a right to which every colored man is entitled, that, in the selection of jurors to pass upon his life, liberty, or property, there shall be no exclusion of his race, and no discrimination against them because of their color.\"<sup>[16]</sup> This record requires the holding that the court below was in error both in affirming the conviction of petitioner and in failing to hold that the indictment against him should have been quashed. The cause is reversed and remanded to the Supreme Court of Louisiana.</p>\n<p><i>Reversed.</i></p>\n<h2>NOTES</h2>\n<p>[1] 189 La. 764; 180 So. 630.</p>\n<p>[2] 305 U.S. 586.</p>\n<p>[3] Under Louisiana practice the District Judge orders the Jury Commission to select three hundred qualified jurors in a given Parish, who compose the general venire list, to be kept complete and supplemented from time to time. These names are placed in the \"General Venire Box.\" From the general venire list, the Commission selects twenty persons qualified as grand jurors, to serve six months, who compose the \"List of Grand Jurors.\" The Judge selects a foreman from the \"List of Grand Jurors\" and the sheriff draws eleven more who, with the foreman, constitute the Grand Jury Panel. After selection of the \"List of Grand Jurors\" the Commission draws thirty names from the \"General Venire Box\" to serve as Petit Jurors, who are designated a \"List of Jurors\" and this \"List of Jurors\" is kept in the \"Jury Box.\" Louisiana Code of Criminal Procedure (Dart, 1932) Title XVIII, c. 2.</p>\n<p>[4] <i>Strauder</i> v. <i>West Virginia,</i> <span class=\"citation\" data-id=\"90039\"><a href=\"/opinion/90039/strauder-v-west-virginia/\"><span class=\"volume\">100</span> <span class=\"reporter\">U.S.</span> <span class=\"page\">303</span></a></span>, 308, 309; <i>Carter</i> v. <i>Texas,</i> <span class=\"citation\" data-id=\"95255\"><a href=\"/opinion/95255/carter-v-texas/\"><span class=\"volume\">177</span> <span class=\"reporter\">U.S.</span> <span class=\"page\">442</span></a></span>, 447; <i>Martin</i> v. <i>Texas,</i> <span class=\"citation\" data-id=\"96404\"><a href=\"/opinion/96404/martin-v-texas/\"><span class=\"volume\">200</span> <span class=\"reporter\">U.S.</span> <span class=\"page\">316</span></a></span>, 319.</p>\n<p>[5] U.S.C. Title 8, \u00a7 44.</p>\n<p>[6] Cf., <i>Norris</i> v. <i>Alabama,</i> <span class=\"citation\" data-id=\"102407\"><a href=\"/opinion/102407/norris-v-alabama/\"><span class=\"volume\">294</span> <span class=\"reporter\">U.S.</span> <span class=\"page\">587</span></a></span>, 589; <i>Neal</i> v. <i>Delaware,</i> <span class=\"citation\" data-id=\"90336\"><a href=\"/opinion/90336/neal-v-delaware/\"><span class=\"volume\">103</span> <span class=\"reporter\">U.S.</span> <span class=\"page\">370</span></a></span>, 397; <i>Carter</i> v. <i>Texas, supra,</i> at 447; <i>Hale</i> v. <i>Kentucky,</i> <span class=\"citation\" data-id=\"103006\"><a href=\"/opinion/103006/hale-v-kentucky/\"><span class=\"volume\">303</span> <span class=\"reporter\">U.S.</span> <span class=\"page\">613</span></a></span>, 616.</p>\n<p>[7] <i>Norris</i> v. <i>Alabama,</i> <span class=\"citation\" data-id=\"102407\"><a href=\"/opinion/102407/norris-v-alabama/\"><span class=\"volume\">294</span> <span class=\"reporter\">U.S.</span> <span class=\"page\">587</span></a></span>, 590.</p>\n<p>[8] Cf. <i>Strauder</i> v. <i>West Virginia, supra,</i> 308, 309.</p>\n<p>[9] <i>Virginia</i> v. <i>Rives,</i> <span class=\"citation\" data-id=\"90040\"><a href=\"/opinion/90040/virginia-v-rives/\"><span class=\"volume\">100</span> <span class=\"reporter\">U.S.</span> <span class=\"page\">313</span></a></span>, 319.</p>\n<p>[10] Louisiana Code of Criminal Procedure, <i>supra,</i> Title XVIII, c. 1.</p>\n<p>[11] See note 3, <i>supra.</i></p>\n<p>[12] Louisiana Code of Criminal Procedure, <i>supra,</i> Title XVIII, c. 2, Art. 181.</p>\n<p>[13] <i>Id.,</i> Art. 180.</p>\n<p>[14] <i>Neal</i> v. <i>Delaware, supra,</i> 397; <i>Norris</i> v. <i>Alabama, supra,</i> 591; <i>Hale</i> v. <i>Kentucky, supra,</i> 616.</p>\n<p>[15] <i>Norris</i> v. <i>Alabama, supra,</i> 594, 595.</p>\n<p>[16] <i>Virginia</i> v. <i>Rives, supra,</i> 322-3.</p>\n\n</div>",
"sha1": "af43d6b33d314fea8626cb2b9a3c2e8bf57b6c50",
"date_modified": "2014-12-21T01:42:20.908283",
"precedential_status": "Published",
"absolute_url": "/opinion/103162/pierre-v-louisiana/",
"citation_count": 82,
"supreme_court_db_id": null,
"extracted_by_ocr": false,
"docket": "/api/rest/v2/docket/1739017/",
"html": "<p class=\"case_cite\">306 U.S. 354</p>\n <p class=\"case_cite\">59 S.Ct. 536</p>\n <p class=\"case_cite\">83 L.Ed. 757</p>\n <p class=\"parties\">PIERRE<br>v.<br>STATE OF LOUISIANA.</p>\n <p class=\"docket\">No. 142.</p>\n <p class=\"date\">Argued Feb. 3—6, 1939.</p>\n <p class=\"date\">Decided Feb. 27, 1939.</p>\n <div class=\"prelims\">\n <p class=\"indent\">Mr. Maurice R. Woulfe, of New Orleans, La., for petitioner.</p>\n <p class=\"indent\">Mr. John E. Fleury, of Gretna, La., for respondent.</p>\n <p class=\"indent\">Mr. Justice BLACK delivered the opinion of the Court.</p>\n </div>\n <div class=\"num\" id=\"p1\">\n <span class=\"num\">1</span>\n <p class=\"indent\">Indicted for murder, petitioner, a member of the negro race, was convicted and sentenced to death in a State court of the Parish of St. John the Baptist, Louisiana. The Louisiana Supreme Court affirmed.<a class=\"footnote\" href=\"#fn1\" id=\"fn1_ref\">1</a> His petition for certiorari to review the Louisiana Supreme Court's judgment rested upon the grave claim—earnestly, but unsuccessfully urged in both State courts—that because of his race he had not been accorded the equal protection of the laws guaranteed to all races in all the States by the Fourteenth Amendment to the Federal Constitution, U.S.C.A. For this reason, we granted certiorari.<a class=\"footnote\" href=\"#fn2\" id=\"fn2_ref\">2</a></p>\n </div>\n <div class=\"num\" id=\"p2\">\n <span class=\"num\">2</span>\n <p class=\"indent\">The indictment against petitioner was returned January 18, 1937. He made timely motion to quash the indictment and the general venire from which had been drawn both the Grand Jury that returned the indictment and the Petit Jury for the week of his trial. His motion also prayed that the Grand Jury Panel and the Petit Jury Panel be quashed. This sworn motion alleged that petitioner was a negro and had been indicted for murder of a white man; that at least one-third of the population of the Parish from which the Grand and Petit Juries were drawn were members of the negro race, but the general venire had contained no names of negroes when the Grand Jury that indicted petitioner was drawn; that the State officers charged by law with the duty of providing names for the general venire had 'deliberately excluded therefrom the names of any negroes qualified to serve as Grand or Petit Jurors, * * *' and had 'systematically, unlawfully and unconstitutionally excluded negroes from the Grand or Petit Jury in said Parish' for at least twenty years 'solely and only because of their race and color'; and that petitioner had thus been denied the equal protection of the laws guaranteed him by the Constitution of Louisiana 1921, art. 1, § 2, and the Fourteenth Amendment to the Constitution of the United States.</p>\n </div>\n <div class=\"num\" id=\"p3\">\n <span class=\"num\">3</span>\n <p class=\"indent\">No pleadings denying these allegations appear in the record, and the State offered no witnesses on the motion. Petitioner offered twelve witnesses who were questioned by his counsel, the State's Assistant District Attorney, and the court. On the basis of this evidence, the trial judge sustained the motion to quash the Petit Jury Panel and venire and subsequently ordered the box containing the general venire (from which both Grand and Petit Juries had been drawn) emptied, purged and refilled. This was done; a new Petit Jury Panel composed of both whites and negroes was subsequently drawn from the refilled Jury box and from this Panel a Petit Jury was selected which tried and convicted petitioner. Although the Grand Jury that indicted petitioner and the quashed Petit Jury Panel had been selected from the same original general venire<a class=\"footnote\" href=\"#fn3\" id=\"fn3_ref\">3</a> the trial judge overruled that part of petitioner's motion seeking to quash the Grand Jury Panel and the indictment.</p>\n </div>\n <div class=\"num\" id=\"p4\">\n <span class=\"num\">4</span>\n <p class=\"indent\">First. The reason assigned by the trial judge for refusing to quash the Grand Jury Panel and indictment was that 'the Constitutional rights of the defendant (are) * * * not affected by reason of the fact that persons of the Colored or African race are not placed on the Grand Jury, because * * * the mere presentment of an indictment is not evidence of guilt * * * it simply informs the Court of a commission of a crime and brings the accused before the court for prosecution.' But the bill of rights of the Louisiana Constitution 1921 (Dart. 1932, Art. 1, § 9) provides that 'no person shall be held to answer for capital crime unless on a presentment or indictment by a grand jury, * * *.' And the State concedes here, as the Supreme Court of Louisiana pointed out in its opinion in this case, that '* * * it is specially provided in the (Louisiana) law prescribing the method of drawing grand and petit jurors to serve in both civil and criminal cases that 'there shall be no distinction made on account of race, color, or previous condition (of servitude)\" and 'If * * * (qualified) members of the Negro * * * race * * * have been systematically excluded from * * * service in the parish of St. John, * * * solely because of their race or color, the indictment should have been quashed * * *.' (189 La. 764, 180 So. 631, 632.) Exclusion from Grand or Petit Jury service on account of race is forbidden by the Fourteenth Amendment.<a class=\"footnote\" href=\"#fn4\" id=\"fn4_ref\">4</a> In addition to the safeguards of the Fourteenth Amendment, Congress has provided that 'No citizen possessing all other qualifications * * * shall be disqualified for service as grand or petit jurors in any court of the United States, or of any State, on account of race, color or previous condition of servitude; * * *.'<a class=\"footnote\" href=\"#fn5\" id=\"fn5_ref\">5</a> Petitioner does not here contend that Louisiana laws required an unconstitutional exclusion or negroes from the Grand Jury which indicted him. His evidence was offered to show that Louisiana—acting through its administrative officers—had deliberately and systematically excluded negroes from jury service because of race, in violation of the laws and Constitutions of Louisiana and the United States.<a class=\"footnote\" href=\"#fn6\" id=\"fn6_ref\">6</a></p>\n </div>\n <div class=\"num\" id=\"p5\">\n <span class=\"num\">5</span>\n <p class=\"indent\">If petitioner's evidence of such systematic exclusion of negroes from the general venire was sufficient to support the trial court's action in quashing the Petit Jury drawn from that general venire, it necessarily follows that the indictment returned by a Grand Jury, selected from the same general venire, should also have been quashed.</p>\n </div>\n <div class=\"num\" id=\"p6\">\n <span class=\"num\">6</span>\n <p class=\"indent\">Second. But the State insists, and the Louisiana Supreme Court held (the Chief Justice dissenting), that this evidence failed to establish that members of the negro race were excluded from the Grand Jury venire on account of race, and that the trial court's finding of discrimination was erroneous. Our decision and judgment must therefore turn upon these disputed questions of fact. In our consideration of the facts the conclusions reached by the Supreme Court of Louisiana are entitled to great respect. Yet, when a claim is properly asserted—as in this case—that a citizen whose life is at stake has been denied the equal protection of the country's laws on account of his race, it becomes our solemn duty to make independent inquiry and determination of the disputed facts<a class=\"footnote\" href=\"#fn7\" id=\"fn7_ref\">7</a>—for equal protection to all is the basic principle upon which justice under law rests. Indictment by Grand jury and trial by jury cease to harmonize with our traditional concepts of justice at the very moment particular groups, classes or races otherwise qualified to serve as jurors in a community—are excluded as such from jury service<a class=\"footnote\" href=\"#fn8\" id=\"fn8_ref\">8</a>. The Fourteenth Amendment intrusts those who because of race are denied equal protection of the laws in a State first 'to the revisory power of the higher courts of the State, and ultimately to the review of this court.'<a class=\"footnote\" href=\"#fn9\" id=\"fn9_ref\">9</a></p>\n </div>\n <div class=\"num\" id=\"p7\">\n <span class=\"num\">7</span>\n <p class=\"indent\">Petitioner's witnesses on the motion were the Clerk of the court—ex-officio a member of the Jury Commission; the Sheriff of the Parish; the Superintendent of Schools who had served the Parish for eleven years; and other residents of the Parish, both white and colored. The testimony of petitioner's witnesses (the State offered no witnesses) showed that from 1896 to 1936 no negro had served on the Grand or Petit Juries in the Parish; that a venire of three hundred in December, 1936, contained the names of three negroes, one of whom was then dead, one of whom (D. N. Dinbaut) was listed on the venire as F. N. Dinfant; the third—called for Petit Jury service in January, 1937 was the only negro who had ever been called for jury service within the memory of the Clerk of the court, the Sheriff, or any other witnesses who testified; and that there were many negro citizens of the Parish qualified under the laws of Louisiana to serve as Grand or Petit Jurors. According to the testimony, negroes constituted 25 to 50 per cent of a total Parish population of twelve to fifteen thousand. The report of the United States Department of Commerce, Bureau of the Census, for 1930, shows that the total Parish population was fourteen thousand and seventy-eight, 49.7 per cent native white, and 49.3 per cent negro. In a total negro population (ten years old and over) of five thousand two hundred and ninety, 29.9 per cent were classified by the census as illiterate.</p>\n </div>\n <div class=\"num\" id=\"p8\">\n <span class=\"num\">8</span>\n <p class=\"indent\">The Louisiana Supreme Court found—contrary to the trial judge that negroes had not been excluded from jury service on account of race, but that their exclusion was the result of a bona fide compliance by the Jury Commission with State laws prescribing jury qualifications. With this conclusion we cannot agree. Louisiana law requires the Commissioners to select names for the general venire from persons qualified to serve without distinction as to race or color. In order to be qualified a person must be: (a) A citizen of the State, over twenty-one years of age with two years' residence in the Parish.</p>\n </div>\n <div class=\"num\" id=\"p9\">\n <span class=\"num\">9</span>\n <p class=\"indent\">(b) Able to read and write the English language,</p>\n </div>\n <div class=\"num\" id=\"p10\">\n <span class=\"num\">10</span>\n <p class=\"indent\">(c) Not charged with any offense or convicted of a felony,</p>\n </div>\n <div class=\"num\" id=\"p11\">\n <span class=\"num\">11</span>\n <p class=\"indent\">(d) Of well known good character and standing in the community.<a class=\"footnote\" href=\"#fn10\" id=\"fn10_ref\">10</a></p>\n </div>\n <div class=\"num\" id=\"p12\">\n <span class=\"num\">12</span>\n <p class=\"indent\">The fact that approximately one-half of the Parish's population were negroes demonstrates that there could have been no lack of colored residents over twenty-one years of age.</p>\n </div>\n <div class=\"num\" id=\"p13\">\n <span class=\"num\">13</span>\n <p class=\"indent\">It appears from the 1930 census that 70 per cent of the negro population of the Parish was literate, and the County Superintendent of Schools testified that fully two thousand five hundred (83 per cent), of the Parish's negro population estimated by him at only three thousand, were able to read and write. Petitioner's evidence established beyond question that the majority of the negro population could read and write, and, in this respect, were eligible under the statute for selection as jurymen.</p>\n </div>\n <div class=\"num\" id=\"p14\">\n <span class=\"num\">14</span>\n <p class=\"indent\">There is no evidence on which even an inference can be based that any appreciable number of the otherwise qualified negroes in the Parish were disqualified for selection because of bad character or criminal records.</p>\n </div>\n <div class=\"num\" id=\"p15\">\n <span class=\"num\">15</span>\n <p class=\"indent\">We conclude that the exclusion of negroes from jury service was not due to their failure to possess the statutory qualifications.</p>\n </div>\n <div class=\"num\" id=\"p16\">\n <span class=\"num\">16</span>\n <p class=\"indent\">The general venire box for the Parish in which petitioner was tried was required<a class=\"footnote\" href=\"#fn11\" id=\"fn11_ref\">11</a>—under Louisiana law—to contain a list of three hundred names selected by Jury Commissioners appointed by the District Judge, and this list had to be supplemented from time to time so as to maintain the required three hundred names. Although Petit Jurors are drawn from the general venire box after the names have been well mixed,<a class=\"footnote\" href=\"#fn12\" id=\"fn12_ref\">12</a> the law provides<a class=\"footnote\" href=\"#fn13\" id=\"fn13_ref\">13</a> that 'the commission shall select * * * (from the general venire list) the names of twenty citizens, possessing the qualifications of grand jurors, * * *.' (Italics supplied.) The twenty names out of which the challenged Grand Jury of twelve was drawn, actually were the first twenty names on a new list of fifty names supplied—on the day the Grand Jury List was selected—by the Jury Commission as a 'supplement' to the general venire of three hundred. Thus, if colored citizens had been named on the general venire, they apparently were not considered, because the Commission went no further than the first twenty names on the supplemental list which itself contained no names of negroes. Furthermore, the uncontradicted evidence on the motion to quash showed that no negro had ever been selected for Grand Jury service in the Parish within the memory of any of the witnesses who testified on that point.</p>\n </div>\n <div class=\"num\" id=\"p17\">\n <span class=\"num\">17</span>\n <p class=\"indent\">The testimony introduced by petitioner on his motion to quash created a strong prima facie showing that negroes had been systematically excluded—because of race—from the Grand Jury and the venire from which it was selected. Such an exclusion is a denial of equal protection of the laws, contrary to the Federal Constitution—the supreme law of the land.<a class=\"footnote\" href=\"#fn14\" id=\"fn14_ref\">14</a> 'The fact that the testimony * * * was not challenged by evidence appropriately direct, cannot be brushed aside.'<a class=\"footnote\" href=\"#fn15\" id=\"fn15_ref\">15</a> Had there been evidence obtainable to contradict and disprove the testimony offered by petitioner, it cannot be assumed that the State would have refrained from introducing it. The Jury Commissioners, appointed by the District Judge, were not produced as witnesses by the State. The trial judge, who had appointed the Commission, listening to the evidence and aided by a familiarity with conditions in the Parish of many years' standing, as judge, prosecutor and practicing attorney, concluded that negroes had been excluded from Jury service because of their race, and ordered the venire quashed and the box purged and refilled. Our examination of the evidence convinces us that the bill of exceptions which he signed correctly stated that petitioner 'did prove at the trial of said motion to Quash that negroes as persons of color had been purposely excluded from the Grand Jury Venire and Panel which returned said indictment against * * * (petitioner) on account of their color and race, * * *.'</p>\n </div>\n <div class=\"num\" id=\"p18\">\n <span class=\"num\">18</span>\n <p class=\"indent\">Principles which forbid discrimination in the selection of Petit Juries also govern the selection of Grand Juries. 'It is a right to which every colored man is entitled, that, in the selection of jurors to pass upon his life, liberty, or property, there shall be no exclusion of his race, and no discrimination against them because of their color.'<a class=\"footnote\" href=\"#fn16\" id=\"fn16_ref\">16</a> This record requires the holding that the court below was in error both in affirming the conviction of petitioner and in failing to hold that the indictment against him should have been quashed. The cause is reversed and remanded to the Supreme Court of Louisiana.</p>\n </div>\n <div class=\"num\" id=\"p19\">\n <span class=\"num\">19</span>\n <p class=\"indent\">Reversed.</p>\n </div>\n <div class=\"footnotes\">\n <div class=\"footnote\" id=\"fn1\">\n <a class=\"footnote\" href=\"#fn1_ref\">1</a>\n <p> 189 La. 764, 180 So. 630.</p>\n </div>\n <div class=\"footnote\" id=\"fn2\">\n <a class=\"footnote\" href=\"#fn2_ref\">2</a>\n <p> 305 U.S. 586, 59 S.Ct. 100, 83 L.Ed. —-.</p>\n </div>\n <div class=\"footnote\" id=\"fn3\">\n <a class=\"footnote\" href=\"#fn3_ref\">3</a>\n <p> Under Louisiana practice the District Judge orders the Jury Commission to select three hundred qualified jurors in a given Parish, who compose the general venire list, to be kept complete and supplemented from time to time. These names are placed in the 'General Venire Box.' From the general venire list, the Commission selects twenty persons qualified as grand jurors, to serve six months, who compose the 'List of Grand Jurors.' The Judge selects a foreman from the 'List of Grand Jurors' and the sheriff draws eleven more who, with the foreman, constitute the Grand Jury Panel. After selection of the 'List of Grand Jurors' the Commission draws thirty names from the 'General Venire Box' to serve as Petit Jurors, who are designated a 'List of Jurors' and this 'List of Jurors' is kept in the 'Jury Box.' Louisiana Code of Criminal Procedure (Dart, 1932) Title 18, c. 2.</p>\n </div>\n <div class=\"footnote\" id=\"fn4\">\n <a class=\"footnote\" href=\"#fn4_ref\">4</a>\n <p> Strauder v. West Virginia, 100 U.S. 303, 308, 309, 25 L.Ed. 664; Carter v. Texas, 177 U.S. 442, 447, 20 S.Ct. 687, 689, 44 L.Ed. 839; Martin v. Texas, 200 U.S. 316, 319, 26 S.Ct. 338, 50 L.Ed. 497.</p>\n </div>\n <div class=\"footnote\" id=\"fn5\">\n <a class=\"footnote\" href=\"#fn5_ref\">5</a>\n <p> U.S.C. Title 8, § 44, 8 U.S.C.A. § 44.</p>\n </div>\n <div class=\"footnote\" id=\"fn6\">\n <a class=\"footnote\" href=\"#fn6_ref\">6</a>\n <p> Cf., Norris v. Alabama, 294 U.S. 587, 589, 55 S.Ct. 579, 580, 79 L.Ed. 1074; Neal v. Delaware, 103 U.S. 370, 397, 26 L.Ed. 567; Carter v. Texas, supra, page 447, 26 S.Ct. page 689; Hale v. Kentucky, 303 U.S. 613, 616, 58 S.Ct. 753, 754, 82 L.Ed. 1050.</p>\n </div>\n <div class=\"footnote\" id=\"fn7\">\n <a class=\"footnote\" href=\"#fn7_ref\">7</a>\n <p> Norris v. Alabama, 294 U.S. 587, 590, 55 S.Ct. 570, 580, 79 L.Ed. 1074.</p>\n </div>\n <div class=\"footnote\" id=\"fn8\">\n <a class=\"footnote\" href=\"#fn8_ref\">8</a>\n <p> Cf. Strauder v. West Virginia, supra, pages 308, 309.</p>\n </div>\n <div class=\"footnote\" id=\"fn9\">\n <a class=\"footnote\" href=\"#fn9_ref\">9</a>\n <p> Virginia v. Rives, 100¢u.S. 313, 319, 25 L.Ed. 667.</p>\n </div>\n <div class=\"footnote\" id=\"fn10\">\n <a class=\"footnote\" href=\"#fn10_ref\">10</a>\n <p> Louisiana Code of Criminal Procedure, supra, Title 18, c. 1, art. 172.</p>\n </div>\n <div class=\"footnote\" id=\"fn11\">\n <a class=\"footnote\" href=\"#fn11_ref\">11</a>\n <p> See note 3, supra.</p>\n </div>\n <div class=\"footnote\" id=\"fn12\">\n <a class=\"footnote\" href=\"#fn12_ref\">12</a>\n <p> Louisiana Code of Criminal Procedure, supra, Title 18, c. 2, Art. 181.</p>\n </div>\n <div class=\"footnote\" id=\"fn13\">\n <a class=\"footnote\" href=\"#fn13_ref\">13</a>\n <p> Id., Art. 180.</p>\n </div>\n <div class=\"footnote\" id=\"fn14\">\n <a class=\"footnote\" href=\"#fn14_ref\">14</a>\n <p> Neal v. Delaware, supra, page 397; Norris v. Alabama, supra, page 591, 55 S.Ct. page 580; Hale v. Kentucky, supra, page 616, 58 S.Ct. page 754.</p>\n </div>\n <div class=\"footnote\" id=\"fn15\">\n <a class=\"footnote\" href=\"#fn15_ref\">15</a>\n <p> Norris v. Alabama, supra, pages 594, 595, 55 S.Ct. page 582.</p>\n </div>\n <div class=\"footnote\" id=\"fn16\">\n <a class=\"footnote\" href=\"#fn16_ref\">16</a>\n <p> Virginia v. Rives, supra, pages 322, 323.</p>\n </div>\n </div>\n ",
"resource_uri": "/api/rest/v2/document/103162/"
} |
{"userName": "@alvaropascual84", "bio": "Licenciado en Ciencias F\u00edsicas\r\nProfesor de Matem\u00e1ticas, F\u00edsica, Qu\u00edmica, Inform\u00e1tica, TIC\r\nEntusiasta de la Web 2.0", "outputProfileName": "alvaropascual84", "bigrams": ["@a", "al", "lv", "va", "ar", "ro", "op", "pa", "as", "sc", "cu", "ua", "al", "l8", "84", "\u00c1l", "lv", "va", "ar", "ro", "o", "P", "Pa", "as", "sc", "cu", "ua", "al", "l", "S", "Sa", "an", "nz"], "pictureURL": "https://pbs.twimg.com/profile_images/470976061228851201/fJyTOLq3_400x400.jpeg", "location": "Madrid, Espa\u00f1a", "fullName": "\u00c1lvaro Pascual Sanz", "externalUrl": "about.me/alvaropascual84"} |
{
"id": 8034,
"title": "Nemureru Tsuki",
"url": "https://mangadex.org/manga/8034",
"last_updated": "January 17, 2021 19:07:22 UTC",
"matches": [
{
"id": 57844,
"title": "Kaibutsu Ouji",
"score": 0.767
},
{
"id": 57846,
"title": "Sanbika",
"score": 0.767
},
{
"id": 4336,
"title": "Goshintou",
"score": 0.753
},
{
"id": 25475,
"title": "Tanbishugi",
"score": 0.743
},
{
"id": 7329,
"title": "Natsu, Kimi ga Saku.",
"score": 0.73
},
{
"id": 29090,
"title": "Mawaru Sekai no Kimi to Boku",
"score": 0.72
},
{
"id": 24741,
"title": "Shounen to Kusuriuri",
"score": 0.717
},
{
"id": 15501,
"title": "Feng Yu Jiu Tian",
"score": 0.715
},
{
"id": 38511,
"title": "Sono Toki Heart wa Nusumareta",
"score": 0.711
},
{
"id": 12818,
"title": "Konoyo Ibun",
"score": 0.711
},
{
"id": 38717,
"title": "Konya wa Take-out Nite",
"score": 0.71
},
{
"id": 31550,
"title": "Copernicus no Kokyuu",
"score": 0.705
},
{
"id": 45970,
"title": "Mitsuyaku",
"score": 0.702
},
{
"id": 34470,
"title": "Kudan no Kuroneko",
"score": 0.701
},
{
"id": 8716,
"title": "Nennen Saisai",
"score": 0.699
},
{
"id": 12001,
"title": "Shisei Gokumon",
"score": 0.698
},
{
"id": 24469,
"title": "Anohito to Nitenai Kuchibiru",
"score": 0.696
},
{
"id": 9393,
"title": "Akuma\u2605Game",
"score": 0.696
},
{
"id": 37679,
"title": "No.99: Ningen Omocha",
"score": 0.693
},
{
"id": 19679,
"title": "5-nin no Ou",
"score": 0.687
},
{
"id": 7665,
"title": "Sakura Gari",
"score": 0.686
},
{
"id": 7088,
"title": "Yami no Kodou",
"score": 0.685
},
{
"id": 20194,
"title": "Getsuei",
"score": 0.683
},
{
"id": 29088,
"title": "Kimi ni Sasayaku Mirai",
"score": 0.678
},
{
"id": 21642,
"title": "Crow's Library of Danmei",
"score": 0.666
}
]
} |
["58c6e875db445e555afcbc72f77504dd5d5b547d"] |
{"session": "Comisi\u00f3n Sexta Senado", "text": "En consideraci\u00f3n entonces la proposici\u00f3n con que termina el informe,\nse abre la discusi\u00f3n, contin\u00faa la discusi\u00f3n, anuncio que va a cerrarse,\nqueda cerrada, lo aprueban.", "external_id": "#hr-diego-pati\u00f1o-amariles", "party": null, "presidents": [], "title": "Representante", "time": "2011-03-16T11:13:20-05:00", "transcript": "1095-acta-16-comision-sexta", "order": 38, "name": "H.R. Diego Pati\u00f1o Amariles"} |
{
"first_traded_price": 2079.0,
"highest_price": 2079.0,
"isin": "IRO1LMIR0001",
"last_traded_price": 2079.0,
"lowest_price": 2079.0,
"trade_volume": 106596.0,
"unix_time": 1391558400
} |
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"css.validate": false,
"prettier.semi": false,
"prettier.useTabs": true,
"prettier.singleQuote": true,
"editor.detectIndentation": false,
"editor.minimap.maxColumn": 80,
"prettier.printWidth": 80
}
|
{"dta.poem.19879": {"metadata": {"author": {"name": "B\u00fcrger, Gottfried August", "birth": "N.A.", "death": "N.A."}, "title": "Die \n Weiber von Weinsberg.", "genre": "Lyrik", "period": "N.A.", "pub_year": "1778", "urn": "urn:nbn:de:kobv:b4-20090519672", "language": ["de:0.99"], "booktitle": "B\u00fcrger, Gottfried August: Gedichte. G\u00f6ttingen, 1778."}, "poem": {"stanza.1": {"line.1": {"text": "Wer sagt mir an, wo Weinsberg liegt? ", "tokens": ["Wer", "sagt", "mir", "an", ",", "wo", "Weins\u00b7berg", "liegt", "?"], "token_info": ["word", "word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["PWS", "VVFIN", "PPER", "PTKVZ", "$,", "PWAV", "NE", "VVFIN", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "Sol seyn ein wakres St\u00e4dtchen,", "tokens": ["Sol", "seyn", "ein", "wak\u00b7res", "St\u00e4dt\u00b7chen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "PPOSAT", "ART", "ADJA", "NN", "$,"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Sol haben, from und klug gewiegt,", "tokens": ["Sol", "ha\u00b7ben", ",", "from", "und", "klug", "ge\u00b7wiegt", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "VAINF", "$,", "ADJD", "KON", "ADJD", "VVPP", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.4": {"text": "Viel Weiberchen und M\u00e4dchen.", "tokens": ["Viel", "Wei\u00b7ber\u00b7chen", "und", "M\u00e4d\u00b7chen", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["PIAT", "NN", "KON", "NN", "$."], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.5": {"text": "K\u00f6mt mir einmal das Freien ein,", "tokens": ["K\u00f6mt", "mir", "ein\u00b7mal", "das", "Frei\u00b7en", "ein", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PPER", "ADV", "ART", "NN", "PTKVZ", "$,"], "meter": "-----+-+", "measure": "unknown.measure.di"}, "line.6": {"text": "So werd\u2019 ich eins aus Weinsberg frei\u2019n.", "tokens": ["So", "werd'", "ich", "eins", "aus", "Weins\u00b7berg", "frei'", "n."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "abbreviation"], "pos": ["ADV", "VAFIN", "PPER", "PRF", "APPR", "NE", "NE", "NE"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}, "stanza.2": {"line.1": {"text": "Einsmals der Kaiser Konrad war", "tokens": ["Eins\u00b7mals", "der", "Kai\u00b7ser", "Kon\u00b7rad", "war"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["ADV", "ART", "NN", "NE", "VAFIN"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "Dem guten St\u00e4dtlein b\u00f6se,", "tokens": ["Dem", "gu\u00b7ten", "St\u00e4dt\u00b7lein", "b\u00f6\u00b7se", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["ART", "ADJA", "NN", "ADJD", "$,"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Und r\u00fckt\u2019 heran mit Kriegesschaar", "tokens": ["Und", "r\u00fc\u00b7kt'", "he\u00b7ran", "mit", "Krie\u00b7ges\u00b7schaar"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["KON", "VVFIN", "PTKVZ", "APPR", "NN"], "meter": "+-+-+-+-+", "measure": "trochaic.penta"}, "line.4": {"text": "Und Reisigenget\u00f6se,", "tokens": ["Und", "Rei\u00b7si\u00b7gen\u00b7ge\u00b7t\u00f6\u00b7se", ","], "token_info": ["word", "word", "punct"], "pos": ["KON", "NN", "$,"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.5": {"text": "Umlagert\u2019 es, mit Ros und Man,", "tokens": ["Um\u00b7la\u00b7gert'", "es", ",", "mit", "Ros", "und", "Man", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PPER", "$,", "APPR", "NE", "KON", "PIS", "$,"], "meter": "--+--+-+", "measure": "anapaest.di.plus"}, "line.6": {"text": "Und schos und rante drauf und dran.", "tokens": ["Und", "schos", "und", "ran\u00b7te", "drauf", "und", "dran", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ADJD", "KON", "VVFIN", "PTKVZ", "KON", "PAV", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}, "stanza.3": {"line.1": {"text": "Und als das St\u00e4dtlein widerstand,", "tokens": ["Und", "als", "das", "St\u00e4dt\u00b7lein", "wi\u00b7der\u00b7stand", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KON", "KOUS", "ART", "NN", "VVFIN", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "Troz allen seinen N\u00f6ten,", "tokens": ["Troz", "al\u00b7len", "sei\u00b7nen", "N\u00f6\u00b7ten", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["APPR", "PIAT", "PPOSAT", "NN", "$,"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Da lies er, hoch von Grim entbrant,", "tokens": ["Da", "lies", "er", ",", "hoch", "von", "Grim", "ent\u00b7brant", ","], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["ADV", "VVFIN", "PPER", "$,", "ADJD", "APPR", "NE", "VVPP", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.4": {"text": "Den Herold \u2019nein trompeten:", "tokens": ["Den", "He\u00b7rold", "'n\u00b7ein", "trom\u00b7pe\u00b7ten", ":"], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["ART", "NN", "ART", "ADJA", "$."], "meter": "-+-+--+-", "measure": "iambic.tri.relaxed"}, "line.5": {"text": "Ihr Schurken, komm\u2019 ich \u2019nein, so wist,", "tokens": ["Ihr", "Schur\u00b7ken", ",", "komm'", "ich", "'n\u00b7ein", ",", "so", "wist", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "punct", "word", "word", "punct"], "pos": ["PPOSAT", "NN", "$,", "VVFIN", "PPER", "NE", "$,", "ADV", "VVFIN", "$,"], "meter": "-+-+--+-+", "measure": "iambic.tetra.relaxed"}, "line.6": {"text": "Sol h\u00e4ngen, was die Wand bepist.", "tokens": ["Sol", "h\u00e4n\u00b7gen", ",", "was", "die", "Wand", "be\u00b7pist", "."], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "VVINF", "$,", "PRELS", "ART", "NN", "VVPP", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}, "stanza.4": {"line.1": {"text": "Drob, als er den Avis also", "tokens": ["Drob", ",", "als", "er", "den", "A\u00b7vis", "al\u00b7so"], "token_info": ["word", "punct", "word", "word", "word", "word", "word"], "pos": ["ADV", "$,", "KOUS", "PPER", "ART", "NN", "ADV"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.2": {"text": "Hinein trompeten lassen,", "tokens": ["Hin\u00b7ein", "trom\u00b7pe\u00b7ten", "las\u00b7sen", ","], "token_info": ["word", "word", "word", "punct"], "pos": ["ADV", "VVINF", "VVINF", "$,"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Gab\u2019s lautes Zetermordio,", "tokens": ["Gab's", "lau\u00b7tes", "Ze\u00b7ter\u00b7mor\u00b7dio", ","], "token_info": ["word", "word", "word", "punct"], "pos": ["NE", "ADJA", "NN", "$,"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.4": {"text": "Zu Haus und auf den Gassen.", "tokens": ["Zu", "Haus", "und", "auf", "den", "Gas\u00b7sen", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "NN", "KON", "APPR", "ART", "NN", "$."], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.5": {"text": "Das Brod war theuer in der Stadt;", "tokens": ["Das", "Brod", "war", "theu\u00b7er", "in", "der", "Stadt", ";"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "NN", "VAFIN", "ADJD", "APPR", "ART", "NN", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.6": {"text": "Doch theurer noch war guter Rath.", "tokens": ["Doch", "theu\u00b7rer", "noch", "war", "gu\u00b7ter", "Rath", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ADJD", "ADV", "VAFIN", "ADJA", "NN", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}, "stanza.5": {"line.1": {"text": "\u201eo weh, mir armen Korydon!", "tokens": ["\u201e", "o", "weh", ",", "mir", "ar\u00b7men", "Ko\u00b7ry\u00b7don", "!"], "token_info": ["punct", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["$(", "FM", "PTKVZ", "$,", "PPER", "ADJA", "NN", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "O weh mir! die Pastores", "tokens": ["O", "weh", "mir", "!", "die", "Pas\u00b7to\u00b7res"], "token_info": ["word", "word", "word", "punct", "word", "word"], "pos": ["NE", "VVFIN", "PPER", "$.", "ART", "NN"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Schrie\u2019n: Kyrie Eleyson!", "tokens": ["Schrie'n", ":", "Ky\u00b7rie", "E\u00b7ley\u00b7son", "!"], "token_info": ["word", "punct", "word", "word", "punct"], "pos": ["NE", "$.", "NE", "NE", "$."], "meter": "-+-+-+", "measure": "iambic.tri"}, "line.4": {"text": "Wir gehn, wir gehn kapores!", "tokens": ["Wir", "gehn", ",", "wir", "gehn", "ka\u00b7po\u00b7res", "!"], "token_info": ["word", "word", "punct", "word", "word", "word", "punct"], "pos": ["PPER", "VVFIN", "$,", "PPER", "VVFIN", "NE", "$."], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.5": {"text": "O weh, mir armen Korydon!", "tokens": ["O", "weh", ",", "mir", "ar\u00b7men", "Ko\u00b7ry\u00b7don", "!"], "token_info": ["word", "word", "punct", "word", "word", "word", "punct"], "pos": ["NE", "PTKVZ", "$,", "PPER", "ADJA", "NN", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.6": {"text": "Es jukt mir an der Kehle schon.\u201e", "tokens": ["Es", "jukt", "mir", "an", "der", "Keh\u00b7le", "schon", ".", "\u201e"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct", "punct"], "pos": ["PPER", "VVFIN", "PPER", "APPR", "ART", "NN", "ADV", "$.", "$("], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}, "stanza.6": {"line.1": {"text": "Doch wann\u2019s Matth\u00e4\u2019 am lezten ist,", "tokens": ["Doch", "wann's", "Mat\u00b7th\u00e4'", "am", "lez\u00b7ten", "ist", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "NE", "NE", "APPRART", "ADJA", "VAFIN", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "Troz Rathen, Thun und Beten,", "tokens": ["Troz", "Ra\u00b7then", ",", "Thun", "und", "Be\u00b7ten", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "punct"], "pos": ["APPR", "NN", "$,", "NN", "KON", "NN", "$,"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "So rettet oft noch Weiberlist", "tokens": ["So", "ret\u00b7tet", "oft", "noch", "Wei\u00b7ber\u00b7list"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["ADV", "VVFIN", "ADV", "ADV", "NN"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.4": {"text": "Aus Aengsten und aus N\u00f6ten.", "tokens": ["Aus", "A\u00b7engs\u00b7ten", "und", "aus", "N\u00f6\u00b7ten", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "NE", "KON", "APPR", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.5": {"text": "Denn Pfaffentrug und Weiberlist", "tokens": ["Denn", "Pfaf\u00b7fen\u00b7trug", "und", "Wei\u00b7ber\u00b7list"], "token_info": ["word", "word", "word", "word"], "pos": ["KON", "NN", "KON", "NN"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.6": {"text": "Gehn \u00fcber alles, wie ihr wist.", "tokens": ["Gehn", "\u00fc\u00b7ber", "al\u00b7les", ",", "wie", "ihr", "wist", "."], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["NN", "APPR", "PIS", "$,", "PWAV", "PPER", "VVFIN", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}, "stanza.7": {"line.1": {"text": "Ein junges Weibchen Lobesan,", "tokens": ["Ein", "jun\u00b7ges", "Weib\u00b7chen", "Lo\u00b7be\u00b7san", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["ART", "ADJA", "NN", "NE", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "Seit gestern erst getrauet,", "tokens": ["Seit", "ge\u00b7stern", "erst", "ge\u00b7trau\u00b7et", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["APPR", "ADV", "ADV", "VVFIN", "$,"], "meter": "+-+--+-", "measure": "pherekrateus"}, "line.3": {"text": "Giebt einen klugen Einfal an,", "tokens": ["Giebt", "ei\u00b7nen", "klu\u00b7gen", "Ein\u00b7fal", "an", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "ART", "ADJA", "NN", "PTKVZ", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.4": {"text": "Der alles Volk erbauet;", "tokens": ["Der", "al\u00b7les", "Volk", "er\u00b7bau\u00b7et", ";"], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["ART", "PIAT", "NN", "VVFIN", "$."], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.5": {"text": "Den ihr, sofern ihr anders wolt,", "tokens": ["Den", "ihr", ",", "so\u00b7fern", "ihr", "an\u00b7ders", "wolt", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["ART", "PPER", "$,", "KOUS", "PPER", "ADV", "VMFIN", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.6": {"text": "Belachen und beklatschen solt.", "tokens": ["Be\u00b7la\u00b7chen", "und", "be\u00b7klat\u00b7schen", "solt", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["NN", "KON", "VVINF", "VMFIN", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}, "stanza.8": {"line.1": {"text": "Zur Zeit der stillen Mitternacht", "tokens": ["Zur", "Zeit", "der", "stil\u00b7len", "Mit\u00b7ter\u00b7nacht"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["APPRART", "NN", "ART", "ADJA", "NN"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "Die sch\u00f6nste Ambassade", "tokens": ["Die", "sch\u00f6ns\u00b7te", "Am\u00b7bas\u00b7sa\u00b7de"], "token_info": ["word", "word", "word"], "pos": ["ART", "ADJA", "NN"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Von Weibern sich ins Lager macht,", "tokens": ["Von", "Wei\u00b7bern", "sich", "ins", "La\u00b7ger", "macht", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "NN", "PRF", "APPRART", "NN", "VVFIN", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.4": {"text": "Und bettelt dort um Gnade.", "tokens": ["Und", "bet\u00b7telt", "dort", "um", "Gna\u00b7de", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KON", "VVFIN", "ADV", "APPR", "NN", "$."], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.5": {"text": "Sie bettelt sanft, sie bettelt f\u00fcs,", "tokens": ["Sie", "bet\u00b7telt", "sanft", ",", "sie", "bet\u00b7telt", "f\u00fcs", ","], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["PPER", "VVFIN", "ADJD", "$,", "PPER", "VVFIN", "NE", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.6": {"text": "Erh\u00e4lt doch aber nichts, als dies:", "tokens": ["Er\u00b7h\u00e4lt", "doch", "a\u00b7ber", "nichts", ",", "als", "dies", ":"], "token_info": ["word", "word", "word", "word", "punct", "word", "word", "punct"], "pos": ["VVFIN", "ADV", "ADV", "PIS", "$,", "KOUS", "PDS", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}, "stanza.9": {"line.1": {"text": "\u201edie Weiber solten Abzug han,", "tokens": ["\u201e", "die", "Wei\u00b7ber", "sol\u00b7ten", "Ab\u00b7zug", "han", ","], "token_info": ["punct", "word", "word", "word", "word", "word", "punct"], "pos": ["$(", "ART", "NN", "PIAT", "NN", "VAFIN", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "Mit ihren besten Sch\u00e4zen,", "tokens": ["Mit", "ih\u00b7ren", "bes\u00b7ten", "Sch\u00e4\u00b7zen", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["APPR", "PPOSAT", "ADJA", "NN", "$,"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Was \u00fcbrig bliebe, wolte man", "tokens": ["Was", "\u00fcb\u00b7rig", "blie\u00b7be", ",", "wol\u00b7te", "man"], "token_info": ["word", "word", "word", "punct", "word", "word"], "pos": ["PWS", "ADJD", "VVFIN", "$,", "VMFIN", "PIS"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.4": {"text": "Zerhauen und zerfezen.\u201e", "tokens": ["Zer\u00b7hau\u00b7en", "und", "zer\u00b7fe\u00b7zen", ".", "\u201e"], "token_info": ["word", "word", "word", "punct", "punct"], "pos": ["NN", "KON", "VVINF", "$.", "$("], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.5": {"text": "Mit der Kapitulation", "tokens": ["Mit", "der", "Ka\u00b7pi\u00b7tu\u00b7la\u00b7ti\u00b7on"], "token_info": ["word", "word", "word"], "pos": ["APPR", "ART", "NN"], "meter": "+--+-+-+", "measure": "iambic.tetra.invert"}, "line.6": {"text": "Schleicht die Gesandschaft tr\u00fcb davon.", "tokens": ["Schleicht", "die", "Ge\u00b7sand\u00b7schaft", "tr\u00fcb", "da\u00b7von", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["NN", "ART", "NN", "ADJD", "PAV", "$."], "meter": "+--+-+-+", "measure": "iambic.tetra.invert"}}, "stanza.10": {"line.1": {"text": "Drauf, als der Morgen bricht hervor,", "tokens": ["Drauf", ",", "als", "der", "Mor\u00b7gen", "bricht", "her\u00b7vor", ","], "token_info": ["word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["PAV", "$,", "KOUS", "ART", "NN", "VVFIN", "PTKVZ", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "Gebt Achtung! Was geschiehet?", "tokens": ["Gebt", "Ach\u00b7tung", "!", "Was", "ge\u00b7schie\u00b7het", "?"], "token_info": ["word", "word", "punct", "word", "word", "punct"], "pos": ["VVIMP", "NN", "$.", "PWS", "VVFIN", "$."], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Es \u00f6fnet sich das n\u00e4chste Thor,", "tokens": ["Es", "\u00f6f\u00b7net", "sich", "das", "n\u00e4chs\u00b7te", "Thor", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PPER", "VVFIN", "PRF", "ART", "ADJA", "NN", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.4": {"text": "Und jedes Weibchen ziehet,", "tokens": ["Und", "je\u00b7des", "Weib\u00b7chen", "zie\u00b7het", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["KON", "PIAT", "NN", "VVFIN", "$,"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.5": {"text": "Mit ihrem M\u00e4nchen schwer im Sak,", "tokens": ["Mit", "ih\u00b7rem", "M\u00e4n\u00b7chen", "schwer", "im", "Sak", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "PPOSAT", "NN", "ADJD", "APPRART", "NN", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.6": {"text": "So wahr ich lebe! Huckepak. \u2014", "tokens": ["So", "wahr", "ich", "le\u00b7be", "!", "Hu\u00b7cke\u00b7pak", "."], "token_info": ["word", "word", "word", "word", "punct", "word", "punct", "punct"], "pos": ["ADV", "ADJD", "PPER", "VVFIN", "$.", "NE", "$.", "$("], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}, "stanza.11": {"line.1": {"text": "Manch Hofschranz suchte zwar sofort", "tokens": ["Manch", "Hof\u00b7schranz", "such\u00b7te", "zwar", "so\u00b7fort"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PIAT", "NN", "VVFIN", "ADV", "ADV"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "Das Knifchen zu vereiteln;", "tokens": ["Das", "Knifc\u00b7hen", "zu", "ver\u00b7ei\u00b7teln", ";"], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["ART", "NN", "PTKZU", "VVINF", "$."], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Doch Konrad sprach: \u201eEin Kaiserwort", "tokens": ["Doch", "Kon\u00b7rad", "sprach", ":", "\u201e", "Ein", "Kai\u00b7ser\u00b7wort"], "token_info": ["word", "word", "word", "punct", "punct", "word", "word"], "pos": ["KON", "NE", "VVFIN", "$.", "$(", "ART", "NN"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.4": {"text": "Sol man nicht drehn noch deuteln.", "tokens": ["Sol", "man", "nicht", "drehn", "noch", "deu\u00b7teln", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "PIS", "PTKNEG", "CARD", "ADV", "VVINF", "$."], "meter": "+--+-+-", "measure": "iambic.tri.invert"}, "line.5": {"text": "Ha bravo! rief er, bravo so!", "tokens": ["Ha", "bra\u00b7vo", "!", "rief", "er", ",", "bra\u00b7vo", "so", "!"], "token_info": ["word", "word", "punct", "word", "word", "punct", "word", "word", "punct"], "pos": ["ITJ", "ITJ", "$.", "VVFIN", "PPER", "$,", "VVFIN", "ADV", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.6": {"text": "Meint\u2019 unsre Frau es auch nur so!\u201e", "tokens": ["Meint'", "uns\u00b7re", "Frau", "es", "auch", "nur", "so", "!", "\u201e"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct", "punct"], "pos": ["VVFIN", "PPOSAT", "NN", "PPER", "ADV", "ADV", "ADV", "$.", "$("], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}, "stanza.12": {"line.1": {"text": "Er gab Pardon und ein Banket,", "tokens": ["Er", "gab", "Par\u00b7don", "und", "ein", "Ban\u00b7ket", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PPER", "VVFIN", "NN", "KON", "ART", "NN", "$,"], "meter": "-+-+--+-", "measure": "iambic.tri.relaxed"}, "line.2": {"text": "Den Sch\u00f6nen zu gefallen.", "tokens": ["Den", "Sch\u00f6\u00b7nen", "zu", "ge\u00b7fal\u00b7len", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["ART", "NN", "PTKZU", "VVINF", "$."], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Da ward gegeigt, da ward trompet\u2019t,", "tokens": ["Da", "ward", "ge\u00b7geigt", ",", "da", "ward", "trom\u00b7pet't", ","], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["ADV", "VAFIN", "VVPP", "$,", "ADV", "VAFIN", "VVFIN", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.4": {"text": "Und durchgetanzt mit allen,", "tokens": ["Und", "durch\u00b7ge\u00b7tanzt", "mit", "al\u00b7len", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["KON", "VVFIN", "APPR", "PIAT", "$,"], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.5": {"text": "Wie mit der Burgemeisterin,", "tokens": ["Wie", "mit", "der", "Bur\u00b7ge\u00b7meis\u00b7te\u00b7rin", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["PWAV", "APPR", "ART", "NN", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.6": {"text": "So mit der Besenbinderin. \u2014", "tokens": ["So", "mit", "der", "Be\u00b7sen\u00b7bin\u00b7de\u00b7rin", "."], "token_info": ["word", "word", "word", "word", "punct", "punct"], "pos": ["ADV", "APPR", "ART", "NN", "$.", "$("], "meter": "+--+-+-+", "measure": "iambic.tetra.invert"}}, "stanza.13": {"line.1": {"text": "Ei! sagt mir doch, wo Weinsberg liegt?", "tokens": ["Ei", "!", "sagt", "mir", "doch", ",", "wo", "Weins\u00b7berg", "liegt", "?"], "token_info": ["word", "punct", "word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["NN", "$.", "VVFIN", "PPER", "ADV", "$,", "PWAV", "NE", "VVFIN", "$."], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "Ist gar ein wakres St\u00e4dtchen.", "tokens": ["Ist", "gar", "ein", "wak\u00b7res", "St\u00e4dt\u00b7chen", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "ADV", "ART", "ADJA", "NN", "$."], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.3": {"text": "Hat, treu und from und klug gewiegt,", "tokens": ["Hat", ",", "treu", "und", "from", "und", "klug", "ge\u00b7wiegt", ","], "token_info": ["word", "punct", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "$,", "ADJD", "KON", "ADJD", "KON", "ADJD", "VVPP", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.4": {"text": "Viel Weiberchen und M\u00e4dchen.", "tokens": ["Viel", "Wei\u00b7ber\u00b7chen", "und", "M\u00e4d\u00b7chen", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["PIAT", "NN", "KON", "NN", "$."], "meter": "-+-+-+-", "measure": "iambic.tri"}, "line.5": {"text": "Ich mus, k\u00f6mt mir das Freien ein,", "tokens": ["Ich", "mus", ",", "k\u00f6mt", "mir", "das", "Frei\u00b7en", "ein", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["PPER", "VMFIN", "$,", "VVFIN", "PPER", "ART", "NN", "PTKVZ", "$,"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.6": {"text": "F\u00fcrwahr! mus Eins aus Weinsberg frei\u2019n.", "tokens": ["F\u00fcr\u00b7wahr", "!", "mus", "Eins", "aus", "Weins\u00b7berg", "frei'", "n."], "token_info": ["word", "punct", "word", "word", "word", "word", "word", "abbreviation"], "pos": ["NN", "$.", "VMFIN", "NN", "APPR", "NE", "NE", "NE"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}}}}} |
{
"series": "ds",
"id": "loveLizards",
"name": "Love Lizards",
"objects": [
{
"type": "cue",
"id": "*/cowbell",
"deprecatedIDs": [],
"name": "cowbell",
"duration": 0.5
},
{
"type": "cue",
"id": "*/bzzt1",
"deprecatedIDs": [],
"name": "female güiro - 1",
"duration": 0.5
},
{
"type": "cue",
"id": "*/bzzt2",
"deprecatedIDs": [],
"name": "female güiro - 2",
"duration": 0.5
},
{
"type": "cue",
"id": "*/bzzt3",
"deprecatedIDs": [],
"name": "female güiro - 3",
"duration": 0.5
},
{
"type": "cue",
"id": "*/bzzt4",
"deprecatedIDs": [],
"name": "female güiro - 4",
"duration": 0.5
},
{
"type": "cue",
"id": "*/bzzt5",
"deprecatedIDs": [],
"name": "female güiro - 5",
"duration": 0.5
},
{
"type": "cue",
"id": "*/bzzt6",
"deprecatedIDs": [],
"name": "female güiro - 6",
"duration": 0.5
},
{
"type": "cue",
"id": "*/shake",
"deprecatedIDs": [],
"name": "male güiro",
"duration": 0.5
},
{
"type": "cue",
"id": "*/happy",
"deprecatedIDs": [],
"name": "heart",
"duration": 1.0
},
{
"type": "pattern",
"id": "*_matingDance",
"deprecatedIDs": [],
"name": "mating dance",
"cues": [
{
"id": "*/cowbell",
"beat": 0.0
},
{
"id": "*/cowbell",
"beat": 0.5
},
{
"id": "*/cowbell",
"beat": 1.5
},
{
"id": "*_randomBzzt",
"beat": 2.5
},
{
"id": "*/shake",
"beat": 2.5,
"track": 1
},
{
"id": "*_randomBzzt",
"beat": 3.0
},
{
"id": "*/shake",
"beat": 3.0,
"track": 1
},
{
"id": "*_randomBzzt",
"beat": 3.5
},
{
"id": "*/shake",
"beat": 3.5,
"track": 1
},
{
"id": "*_randomBzzt",
"beat": 4.0
},
{
"id": "*/shake",
"beat": 4.0,
"track": 1
},
{
"id": "*/happy",
"beat": 5.5
}
]
},
{
"type": "randomCue",
"id": "*_randomBzzt",
"deprecatedIDs": [],
"name": "random female güiro chirp",
"cues": [
{
"id": "*/bzzt1"
},
{
"id": "*/bzzt2"
},
{
"id": "*/bzzt3"
},
{
"id": "*/bzzt4"
},
{
"id": "*/bzzt5"
},
{
"id": "*/bzzt6"
}
]
}
]
} |
{
"desc": "<p>A sliver widget implementing the iOS-style pull to refresh content control.<\/p>\n<p>When inserted as the first sliver in a scroll view or behind other slivers\nthat still lets the scrollable overscroll in front of this sliver (such as\nthe <a href=\"cupertino\/CupertinoSliverNavigationBar-class.html\">CupertinoSliverNavigationBar<\/a>, this widget will:<\/p>\n<ul>\n<li>Let the user draw inside the overscrolled area via the passed in <a href=\"cupertino\/CupertinoSliverRefreshControl\/builder.html\">builder<\/a>.<\/li>\n<li>Trigger the provided <a href=\"cupertino\/CupertinoSliverRefreshControl\/onRefresh.html\">onRefresh<\/a> function when overscrolled far enough to\npass <a href=\"cupertino\/CupertinoSliverRefreshControl\/refreshTriggerPullDistance.html\">refreshTriggerPullDistance<\/a>.<\/li>\n<li>Continue to hold <a href=\"cupertino\/CupertinoSliverRefreshControl\/refreshIndicatorExtent.html\">refreshIndicatorExtent<\/a> amount of space for the <a href=\"cupertino\/CupertinoSliverRefreshControl\/builder.html\">builder<\/a>\nto keep drawing inside of as the <a href=\"dart-async\/Future-class.html\">Future<\/a> returned by <a href=\"cupertino\/CupertinoSliverRefreshControl\/onRefresh.html\">onRefresh<\/a> processes.<\/li>\n<li>Scroll away once the <a href=\"cupertino\/CupertinoSliverRefreshControl\/onRefresh.html\">onRefresh<\/a> <a href=\"dart-async\/Future-class.html\">Future<\/a> completes.<\/li>\n<\/ul>\n<p>The <a href=\"cupertino\/CupertinoSliverRefreshControl\/builder.html\">builder<\/a> function will be informed of the current <a href=\"cupertino\/RefreshIndicatorMode-class.html\">RefreshIndicatorMode<\/a>\nwhen invoking it, except in the <a href=\"cupertino\/RefreshIndicatorMode-class.html\">RefreshIndicatorMode.inactive<\/a> state when\nno space is available and nothing needs to be built. The <a href=\"cupertino\/CupertinoSliverRefreshControl\/builder.html\">builder<\/a> function\nwill otherwise be continuously invoked as the amount of space available\nchanges from overscroll, as the sliver scrolls away after the <a href=\"cupertino\/CupertinoSliverRefreshControl\/onRefresh.html\">onRefresh<\/a>\ntask is done, etc.<\/p>\n<p>Only one refresh can be triggered until the previous refresh has completed\nand the indicator sliver has retracted at least 90% of the way back.<\/p>\n<p>Can only be used in downward-scrolling vertical lists that overscrolls. In\nother words, refreshes can't be triggered with lists using\n<a href=\"widgets\/ClampingScrollPhysics-class.html\">ClampingScrollPhysics<\/a>.<\/p>\n<p>In a typical application, this sliver should be inserted between the app bar\nsliver such as <a href=\"cupertino\/CupertinoSliverNavigationBar-class.html\">CupertinoSliverNavigationBar<\/a> and your main scrollable\ncontent's sliver.<\/p>\n<p>See also:<\/p>\n<ul>\n<li>\n<a href=\"widgets\/CustomScrollView-class.html\">CustomScrollView<\/a>, a typical sliver holding scroll view this control\nshould go into.<\/li>\n<li><a href=\"https:\/\/developer.apple.com\/ios\/human-interface-guidelines\/controls\/refresh-content-controls\/\">developer.apple.com\/ios\/human-interface-guidelines\/controls\/refresh-content-controls\/<\/a><\/li>\n<li>\n<a href=\"material\/RefreshIndicator-class.html\">RefreshIndicator<\/a>, a Material Design version of the pull-to-refresh\nparadigm. This widget works differently than <a href=\"material\/RefreshIndicator-class.html\">RefreshIndicator<\/a> because\ninstead of being an overlay on top of the scrollable, the\n<a href=\"cupertino\/CupertinoSliverRefreshControl-class.html\">CupertinoSliverRefreshControl<\/a> is part of the scrollable and actively occupies\nscrollable space.<\/li>\n<\/ul>",
"dtype": "class",
"example": "",
"href": "cupertino\/CupertinoSliverRefreshControl-class.html",
"isAbstract": false,
"isConstant": false,
"isDeprecated": false,
"memberOf": "cupertino",
"name": "cupertino.CupertinoSliverRefreshControl",
"shortname": "CupertinoSliverRefreshControl",
"extends": [
"widgets.StatefulWidget",
"widgets.Widget",
"foundation.DiagnosticableTree",
"foundation.Diagnosticable",
"dart:core.Object"
],
"is_enum": false,
"is_mixin": false,
"realImplementors": [],
"events": [
{
"desc": "<p>A builder that's called as this sliver's size changes, and as the state\nchanges.<\/p>\n<p>A default simple Twitter-style pull-to-refresh indicator is provided if\nnot specified.<\/p>\n<p>Can be set to null, in which case nothing will be drawn in the overscrolled\nspace.<\/p>\n<p>Will not be called when the available space is zero such as before any\noverscroll.<\/p>\n ",
"example": "<h2><span>Implementation<\/span><\/h2>\n <pre class=\"language-dart\"><code class=\"language-dart\">final RefreshControlIndicatorBuilder builder\n\n<\/code><\/pre>\n ",
"href": "cupertino\/CupertinoSliverRefreshControl\/builder.html",
"isDeprecated": false,
"type": "cupertino.RefreshControlIndicatorBuilder",
"name": "builder",
"memberOf": "cupertino.CupertinoSliverRefreshControl",
"params": []
},
{
"desc": "<p>Callback invoked when pulled by <a href=\"cupertino\/CupertinoSliverRefreshControl\/refreshTriggerPullDistance.html\">refreshTriggerPullDistance<\/a>.<\/p>\n<p>If provided, must return a <a href=\"dart-async\/Future-class.html\">Future<\/a> which will keep the indicator in the\n<a href=\"cupertino\/RefreshIndicatorMode-class.html\">RefreshIndicatorMode.refresh<\/a> state until the <a href=\"dart-async\/Future-class.html\">Future<\/a> completes.<\/p>\n<p>Can be null, in which case a single frame of <a href=\"cupertino\/RefreshIndicatorMode-class.html\">RefreshIndicatorMode.armed<\/a>\nstate will be drawn before going immediately to the <a href=\"cupertino\/RefreshIndicatorMode-class.html\">RefreshIndicatorMode.done<\/a>\nwhere the sliver will start retracting.<\/p>\n ",
"example": "<h2><span>Implementation<\/span><\/h2>\n <pre class=\"language-dart\"><code class=\"language-dart\">final RefreshCallback onRefresh\n\n<\/code><\/pre>\n ",
"href": "cupertino\/CupertinoSliverRefreshControl\/onRefresh.html",
"isDeprecated": false,
"type": "cupertino.RefreshCallback",
"name": "onRefresh",
"memberOf": "cupertino.CupertinoSliverRefreshControl",
"params": []
}
],
"methods": [
{
"desc": "<p>Create a new refresh control for inserting into a list of slivers.<\/p>\n<p>The <code>refreshTriggerPullDistance<\/code> and <code>refreshIndicatorExtent<\/code> arguments\nmust not be null and must be >= 0.<\/p>\n<p>The <code>builder<\/code> argument may be null, in which case no indicator UI will be\nshown but the <code>onRefresh<\/code> will still be invoked. By default, <code>builder<\/code>\nshows a <a href=\"cupertino\/CupertinoActivityIndicator-class.html\">CupertinoActivityIndicator<\/a>.<\/p>\n<p>The <code>onRefresh<\/code> argument will be called when pulled far enough to trigger\na refresh.<\/p>\n ",
"example": "<h2><span>Implementation<\/span><\/h2>\n <pre class=\"language-dart\"><code class=\"language-dart\">const CupertinoSliverRefreshControl({\n Key key,\n this.refreshTriggerPullDistance = _defaultRefreshTriggerPullDistance,\n this.refreshIndicatorExtent = _defaultRefreshIndicatorExtent,\n this.builder = buildSimpleRefreshIndicator,\n this.onRefresh,\n}) : assert(refreshTriggerPullDistance != null),\n assert(refreshTriggerPullDistance > 0.0),\n assert(refreshIndicatorExtent != null),\n assert(refreshIndicatorExtent >= 0.0),\n assert(\n refreshTriggerPullDistance >= refreshIndicatorExtent,\n 'The refresh indicator cannot take more space in its final state '\n 'than the amount initially created by overscrolling.'\n ),\n super(key: key);<\/code><\/pre>\n ",
"href": "cupertino\/CupertinoSliverRefreshControl\/CupertinoSliverRefreshControl.html",
"isDeprecated": false,
"type": "",
"name": "CupertinoSliverRefreshControl",
"dtype": "constructor",
"isConstructor": true,
"static": false,
"memberOf": "cupertino.CupertinoSliverRefreshControl",
"params": [
{
"name": "builder",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": true,
"type": "cupertino.RefreshControlIndicatorBuilder"
},
{
"name": "key",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": true,
"type": "foundation.Key"
},
{
"name": "onRefresh",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": true,
"type": "cupertino.RefreshCallback"
},
{
"name": "refreshIndicatorExtent",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": true,
"type": "dart:core.double"
},
{
"name": "refreshTriggerPullDistance",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": true,
"type": "dart:core.double"
}
]
},
{
"desc": "<p>Builds a simple refresh indicator that fades in a bottom aligned down\narrow before the refresh is triggered, a <a href=\"cupertino\/CupertinoActivityIndicator-class.html\">CupertinoActivityIndicator<\/a>\nduring the refresh and fades the <a href=\"cupertino\/CupertinoActivityIndicator-class.html\">CupertinoActivityIndicator<\/a> away when\nthe refresh is done.<\/p>\n ",
"example": "<h2><span>Implementation<\/span><\/h2>\n <pre class=\"language-dart\"><code class=\"language-dart\">static Widget buildSimpleRefreshIndicator(\n BuildContext context,\n RefreshIndicatorMode refreshState,\n double pulledExtent,\n double refreshTriggerPullDistance,\n double refreshIndicatorExtent,\n) {\n const Curve opacityCurve = Interval(0.4, 0.8, curve: Curves.easeInOut);\n return Align(\n alignment: Alignment.bottomCenter,\n child: Padding(\n padding: const EdgeInsets.only(bottom: 16.0),\n child: refreshState == RefreshIndicatorMode.drag\n ? Opacity(\n opacity: opacityCurve.transform(\n min(pulledExtent \/ refreshTriggerPullDistance, 1.0)\n ),\n child: const Icon(\n CupertinoIcons.down_arrow,\n color: CupertinoColors.inactiveGray,\n size: 36.0,\n ),\n )\n : Opacity(\n opacity: opacityCurve.transform(\n min(pulledExtent \/ refreshIndicatorExtent, 1.0)\n ),\n child: const CupertinoActivityIndicator(radius: 14.0),\n ),\n ),\n );\n}<\/code><\/pre>\n ",
"href": "cupertino\/CupertinoSliverRefreshControl\/buildSimpleRefreshIndicator.html",
"isDeprecated": false,
"type": "widgets.Widget",
"name": "buildSimpleRefreshIndicator",
"dtype": "method",
"isConstructor": false,
"static": false,
"memberOf": "cupertino.CupertinoSliverRefreshControl",
"params": [
{
"name": "context",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": false,
"type": "widgets.BuildContext"
},
{
"name": "pulledExtent",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": false,
"type": "dart:core.double"
},
{
"name": "refreshIndicatorExtent",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": false,
"type": "dart:core.double"
},
{
"name": "refreshState",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": false,
"type": "cupertino.RefreshIndicatorMode"
},
{
"name": "refreshTriggerPullDistance",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": false,
"type": "dart:core.double"
}
]
},
{
"desc": "<p>Creates the mutable state for this widget at a given location in the tree.<\/p>\n<p>Subclasses should override this method to return a newly created\ninstance of their associated <a href=\"widgets\/State-class.html\">State<\/a> subclass:<\/p>\n<pre class=\"language-dart\"><code class=\"language-dart\">@override\n_MyState createState() => _MyState();\n<\/code><\/pre>\n<p>The framework can call this method multiple times over the lifetime of\na <a href=\"widgets\/StatefulWidget-class.html\">StatefulWidget<\/a>. For example, if the widget is inserted into the tree\nin multiple locations, the framework will create a separate <a href=\"widgets\/State-class.html\">State<\/a> object\nfor each location. Similarly, if the widget is removed from the tree and\nlater inserted into the tree again, the framework will call <a href=\"cupertino\/CupertinoSliverRefreshControl\/createState.html\">createState<\/a>\nagain to create a fresh <a href=\"widgets\/State-class.html\">State<\/a> object, simplifying the lifecycle of\n<a href=\"widgets\/State-class.html\">State<\/a> objects.<\/p>\n ",
"example": "<h2><span>Implementation<\/span><\/h2>\n <pre class=\"language-dart\"><code class=\"language-dart\">@override\n_CupertinoSliverRefreshControlState createState() => _CupertinoSliverRefreshControlState();<\/code><\/pre>\n ",
"href": "cupertino\/CupertinoSliverRefreshControl\/createState.html",
"isDeprecated": false,
"type": "<_CupertinoSliverRefreshControlState>",
"name": "createState",
"dtype": "method",
"isConstructor": false,
"static": false,
"memberOf": "cupertino.CupertinoSliverRefreshControl",
"params": []
},
{
"desc": "<p>Retrieve the current state of the CupertinoSliverRefreshControl. The same as the\nstate that gets passed into the <a href=\"cupertino\/CupertinoSliverRefreshControl\/builder.html\">builder<\/a> function. Used for testing.<\/p>\n ",
"example": "<h2><span>Implementation<\/span><\/h2>\n <pre class=\"language-dart\"><code class=\"language-dart\">@visibleForTesting\nstatic RefreshIndicatorMode state(BuildContext context) {\n final _CupertinoSliverRefreshControlState state\n = context.ancestorStateOfType(const TypeMatcher<_CupertinoSliverRefreshControlState>());\n return state.refreshState;\n}<\/code><\/pre>\n ",
"href": "cupertino\/CupertinoSliverRefreshControl\/state.html",
"isDeprecated": false,
"type": "cupertino.RefreshIndicatorMode",
"name": "state",
"dtype": "method",
"isConstructor": false,
"static": false,
"memberOf": "cupertino.CupertinoSliverRefreshControl",
"params": [
{
"name": "context",
"desc": "",
"example": "",
"href": "",
"isDeprecated": false,
"isOptional": false,
"type": "widgets.BuildContext"
}
]
}
],
"props": [
{
"desc": "<p>The amount of space the refresh indicator sliver will keep holding while\n<a href=\"cupertino\/CupertinoSliverRefreshControl\/onRefresh.html\">onRefresh<\/a>'s <a href=\"dart-async\/Future-class.html\">Future<\/a> is still running.<\/p>\n<p>Must not be null and must be positive, but can be 0.0, in which case the\nsliver will start retracting back to 0.0 as soon as the refresh is started.\nDefaults to 60px when not specified.<\/p>\n<p>Must be smaller than <a href=\"cupertino\/CupertinoSliverRefreshControl\/refreshTriggerPullDistance.html\">refreshTriggerPullDistance<\/a>, since the sliver\nshouldn't grow further after triggering the refresh.<\/p>\n ",
"example": "<h2><span>Implementation<\/span><\/h2>\n <pre class=\"language-dart\"><code class=\"language-dart\">final double refreshIndicatorExtent\n\n<\/code><\/pre>\n ",
"href": "cupertino\/CupertinoSliverRefreshControl\/refreshIndicatorExtent.html",
"name": "refreshIndicatorExtent",
"isDeprecated": false,
"type": "dart:core.double",
"dtype": "property",
"isStatic": false,
"isConstant": false,
"memberOf": "cupertino.CupertinoSliverRefreshControl",
"params": []
},
{
"desc": "<p>The amount of overscroll the scrollable must be dragged to trigger a reload.<\/p>\n<p>Must not be null, must be larger than 0.0 and larger than\n<a href=\"cupertino\/CupertinoSliverRefreshControl\/refreshIndicatorExtent.html\">refreshIndicatorExtent<\/a>. Defaults to 100px when not specified.<\/p>\n<p>When overscrolled past this distance, <a href=\"cupertino\/CupertinoSliverRefreshControl\/onRefresh.html\">onRefresh<\/a> will be called if not\nnull and the <a href=\"cupertino\/CupertinoSliverRefreshControl\/builder.html\">builder<\/a> will build in the <a href=\"cupertino\/RefreshIndicatorMode-class.html\">RefreshIndicatorMode.armed<\/a> state.<\/p>\n ",
"example": "<h2><span>Implementation<\/span><\/h2>\n <pre class=\"language-dart\"><code class=\"language-dart\">final double refreshTriggerPullDistance\n\n<\/code><\/pre>\n ",
"href": "cupertino\/CupertinoSliverRefreshControl\/refreshTriggerPullDistance.html",
"name": "refreshTriggerPullDistance",
"isDeprecated": false,
"type": "dart:core.double",
"dtype": "property",
"isStatic": false,
"isConstant": false,
"memberOf": "cupertino.CupertinoSliverRefreshControl",
"params": []
}
]
} |
{
"title": "Pooja Sweets and Savories",
"tags": [
"Vegetarian Restaurant"
],
"typeOfFood": "\n Vegan-friendly, Lacto, Ovo, Indian, Fast food, Take-out\n ",
"description": "Indian/Pakistani sweets and savory vegetarian (halal) foods and snacks. Chaat house. Has vegan options.",
"priceRange": "Inexpensive",
"streetAddress": "3 Albany Rd",
"postalCode": "CF24 3LH",
"phone": "tel:+440-2920214987",
"venueHours": "\n \n Call for hours - tell us\n ",
"listingFeatures": [],
"fb": "http://www.facebook.com/pages/Pooja-Sweets-Savouries/317370636909",
"gmaps": "http://maps.googleapis.com/maps/api/staticmap?center=51.492787,-3.170908&zoom=15&size=458x118&maptype=roadmap&markers=icon:http%3A%2F%2Fgoo.gl%2F1RDrbh%7Cshadow:true%7C51.492787,-3.170908&sensor=false&key=AIzaSyBrIo4v01Yet3zb6VunVdenxRtXWFnwfxk"
} |
{"name":"Inflection Energy","permalink":"inflection-energy","crunchbase_url":"http://www.crunchbase.com/company/inflection-energy","homepage_url":"","blog_url":"","blog_feed_url":"","twitter_username":"","category_code":null,"number_of_employees":null,"founded_year":2008,"founded_month":null,"founded_day":null,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"","alias_list":"","email_address":"","phone_number":"303-531-2300","description":"","created_at":"Thu Jun 21 12:50:25 UTC 2012","updated_at":"Thu Jun 21 12:52:43 UTC 2012","overview":"<p>Inflection Energy LLC engages in natural gas exploration and development. The company was founded in 2008 and is based in Denver, Colorado.</p>","image":null,"products":[],"relationships":[],"competitions":[],"providerships":[],"total_money_raised":"$0","funding_rounds":[{"round_code":"unattributed","source_url":"http://www.finsmes.com/2012/06/inflection-energy-receives-equity-investment.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29","source_description":"Inflection Energy Receives Equity Investment","raised_amount":null,"raised_currency_code":"USD","funded_year":2012,"funded_month":6,"funded_day":21,"investments":[{"company":{"name":"Noble Group","permalink":"noble-group","image":null},"financial_org":null,"person":null},{"company":null,"financial_org":{"name":"Good Energies Capital","permalink":"good-energies-capital","image":null},"person":null}]}],"investments":[],"acquisition":null,"acquisitions":[],"offices":[{"description":"","address1":"1125 17th Street","address2":"Suite 2540","zip_code":"80202-2051","city":"Denver","state_code":"CO","country_code":"USA","latitude":null,"longitude":null}],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[],"external_links":[]} |
{
"first_traded_price": 13150.0,
"highest_price": 13697.0,
"isin": "IRO1DABO0001",
"last_traded_price": 12950.0,
"lowest_price": 12950.0,
"trade_volume": 13075.0,
"unix_time": 1447804800
} |
{
"docId": "5807",
"sentences": [
{
"index": 0,
"tokens": [
{
"index": 1,
"word": "Man",
"originalText": "Man",
"characterOffsetBegin": 0,
"characterOffsetEnd": 3,
"before": "",
"after": " "
},
{
"index": 2,
"word": "Takes",
"originalText": "Takes",
"characterOffsetBegin": 4,
"characterOffsetEnd": 9,
"before": " ",
"after": " "
},
{
"index": 3,
"word": "Parents",
"originalText": "Parents",
"characterOffsetBegin": 10,
"characterOffsetEnd": 17,
"before": " ",
"after": " "
},
{
"index": 4,
"word": "On",
"originalText": "On",
"characterOffsetBegin": 18,
"characterOffsetEnd": 20,
"before": " ",
"after": " "
},
{
"index": 5,
"word": "Tour",
"originalText": "Tour",
"characterOffsetBegin": 21,
"characterOffsetEnd": 25,
"before": " ",
"after": " "
},
{
"index": 6,
"word": "Of",
"originalText": "Of",
"characterOffsetBegin": 26,
"characterOffsetEnd": 28,
"before": " ",
"after": " "
},
{
"index": 7,
"word": "City",
"originalText": "City",
"characterOffsetBegin": 29,
"characterOffsetEnd": 33,
"before": " ",
"after": " "
},
{
"index": 8,
"word": "Where",
"originalText": "Where",
"characterOffsetBegin": 34,
"characterOffsetEnd": 39,
"before": " ",
"after": " "
},
{
"index": 9,
"word": "He",
"originalText": "He",
"characterOffsetBegin": 40,
"characterOffsetEnd": 42,
"before": " ",
"after": " "
},
{
"index": 10,
"word": "Came",
"originalText": "Came",
"characterOffsetBegin": 43,
"characterOffsetEnd": 47,
"before": " ",
"after": " "
},
{
"index": 11,
"word": "To",
"originalText": "To",
"characterOffsetBegin": 48,
"characterOffsetEnd": 50,
"before": " ",
"after": " "
},
{
"index": 12,
"word": "Escape",
"originalText": "Escape",
"characterOffsetBegin": 51,
"characterOffsetEnd": 57,
"before": " ",
"after": " "
},
{
"index": 13,
"word": "Them",
"originalText": "Them",
"characterOffsetBegin": 58,
"characterOffsetEnd": 62,
"before": " ",
"after": ""
}
]
}
]
}
|
["31bc6fc69c593c275d87871f197be0c3f31d6df6"] |
{"Name":" Mainichi Kokorobics - Kaiun Kenkyuuka Utsukita Mahiro Kanshuu - DS Uranai Happiness 2008 (Japan)","Portrait":"https://raw.githubusercontent.com/libretro-thumbnails/Nintendo_-_Nintendo_DS/master/Named_Boxarts/Mainichi Kokorobics - Kaiun Kenkyuuka Utsukita Mahiro Kanshuu - DS Uranai Happiness 2008 (Japan).png","Size":"3M","Region":"JAP","Console":"Nintendo DS","DownloadLink":"https://the-eye.eu/public/rom/Nintendo%20DS/3301%20-%20Mainichi%20Kokorobics%20-%20Kaiun%20Kenkyuuka%20Utsukita%20Mahiro%20Kanshuu%20-%20DS%20Uranai%20Happiness%202008%20%28Japan%29.nds.7z"} |
{
"id": 975100125,
"type": "Feature",
"properties": {
"addr:full":"324092 Mount Elgin Rd Mount Elgin ON N0J 1N0",
"addr:housenumber":"324092",
"addr:postcode":"n0j 1n0",
"addr:street":"Mount Elgin Rd",
"edtf:cessation":"uuuu",
"edtf:inception":"uuuu",
"geom:area":0.0,
"geom:area_square_m":0.0,
"geom:bbox":"-76.2204284668,44.6089019775,-76.2204284668,44.6089019775",
"geom:latitude":44.608902,
"geom:longitude":-76.220428,
"iso:country":"CA",
"mz:hierarchy_label":1,
"mz:is_current":-1,
"sg:address":"324092 Mount Elgin Rd",
"sg:city":"Mount Elgin",
"sg:classifiers":[
{
"category":"Shopping",
"subcategory":"",
"type":"Retail Goods"
}
],
"sg:owner":"simplegeo",
"sg:phone":"+1 519 425 0534",
"sg:postcode":"N0J 1N0",
"sg:province":"ON",
"sg:tags":[
"trophy",
"medal",
"award"
],
"src:geom":"simplegeo",
"wof:belongsto":[],
"wof:breaches":[],
"wof:concordances":{
"sg:id":"SG_7m2hXUFZdo0EnZLaKYBp5d_44.608902_-76.220428@1293573121"
},
"wof:country":"CA",
"wof:created":1472277554,
"wof:geomhash":"b9b00468ccd5951afb511c34ebc9de67",
"wof:hierarchy":[],
"wof:id":975100125,
"wof:lastmodified":1499446152,
"wof:name":"Oxford Trophies",
"wof:parent_id":-1,
"wof:placetype":"venue",
"wof:repo":"whosonfirst-data-venue-ca",
"wof:superseded_by":[],
"wof:supersedes":[],
"wof:tags":[
"trophy",
"medal",
"award"
]
},
"bbox": [
-76.2204284668,
44.6089019775,
-76.2204284668,
44.6089019775
],
"geometry": {"coordinates":[-76.2204284668,44.6089019775],"type":"Point"}
} |
{"id":8841,"type":3,"name":"BAMBOO BEAT/STAR RISE","image":"//lain.bgm.tv/pic/cover/m/6e/88/8841_jp.jpg","rating":{"total":20,"count":{"1":0,"2":0,"3":0,"4":0,"5":1,"6":1,"7":11,"8":6,"9":1,"10":0},"score":7.3},"summary":"今をときめく人気声優5人が歌う爽快感&清潔感ある和モダンポップ。テレビ東京系アニメ「バンブーブレード」OPテーマ&EDテーマ。","info":"<li><span>艺术家: </span>千葉紀梨乃(<a href=\"/person/3866\">豊口めぐみ</a>),桑原鞘子(<a href=\"/person/4430\">小島幸子</a>),宮崎都(<a href=\"/person/3867\">桑島法子</a>),東聡莉(<a href=\"/person/4670\">佐藤利奈</a>) 川添珠姫(<a href=\"/person/4165\">広橋涼</a>)</li><li><span>厂牌: </span><a href=\"/person/3450\">JVCエンタテインメント</a></li><li><span>版本特性: </span>Single / Maxi</li><li><span>发售日期: </span>2007-11-28</li><li><span>价格: </span>¥ 1,050</li><li><span>播放时长: </span>15 m</li><li><span>发行商: </span>JVCエンタテインメント</li><li><span>录音: </span>JVCエンタテインメント</li>","collection":{"wish":1,"collect":23,"doing":1,"dropped":1},"tags":[{"name":"ED","count":3},{"name":"OP","count":3},{"name":"バンブーブレード","count":2},{"name":"竹刀少女","count":2},{"name":"小岛幸子","count":1},{"name":"丰口惠","count":1},{"name":"桑岛法子","count":1},{"name":"2007","count":1},{"name":"佐藤利奈","count":1},{"name":"广桥凉","count":1}],"eps":[{"id":0,"url":"http://bgm.tv/ep/0","type":0,"sort":0,"name":"","name_cn":"","duration":"","airdate":"","comment":0,"desc":"","status":""}],"disc":[{"title":"Disc 1","disc":[{"title":"1 BAMBOO BEAT","href":"/ep/50637"},{"title":"2 STAR RISE","href":"/ep/50638"},{"title":"3 BAMBOO BEAT[instrumental]","href":"/ep/50639"},{"title":"4 STAR RISE[instrumental]","href":"/ep/50640"}]}],"staff":[{"id":3866,"image":"//lain.bgm.tv/pic/crt/g/7e/e4/3866_prsn_4miMW.jpg","name":"丰口惠","desc":"艺术家"},{"id":4430,"image":"//lain.bgm.tv/pic/crt/g/ce/05/4430_seiyu_anidb.jpg","name":"小岛幸子","desc":"艺术家"},{"id":3867,"image":"//lain.bgm.tv/pic/crt/g/70/b9/3867_prsn_b0qFF.jpg","name":"桑岛法子","desc":"艺术家"},{"id":4165,"image":"//lain.bgm.tv/pic/crt/g/fd/a6/4165_prsn_G5a6P.jpg","name":"广桥凉","desc":"艺术家"},{"id":4670,"image":"//lain.bgm.tv/pic/crt/g/1b/b3/4670_prsn_ggUMV.jpg","name":"佐藤利奈","desc":"艺术家"},{"id":3450,"image":"//lain.bgm.tv/pic/crt/g/70/39/3450_prsn_anidb.jpg","name":"JVCエンタテインメント","desc":"厂牌"}],"relations":[{"id":1272,"image":"//lain.bgm.tv/pic/cover/m/78/10/1272_ThY0x.jpg","title":"バンブーブレード -BAMBOO BLADE-","type":"动画","url":"https://bgm.tv/subject/1272"}],"like":[{"id":5208,"name":"舞い落ちる雪のように","image":"//lain.bgm.tv/pic/cover/m/59/b1/5208_QGQ6s.jpg"},{"id":8941,"name":"being","image":"//lain.bgm.tv/pic/cover/m/09/ab/8941_jp.jpg"},{"id":7720,"name":"LAMENT~やがて喜びを~","image":"//lain.bgm.tv/pic/cover/m/85/c4/7720_jp.jpg"},{"id":9709,"name":"Last Song / Girls Dead Monster STARRING marina","image":"//lain.bgm.tv/pic/cover/m/41/6e/9709_Aek3F.jpg"},{"id":3337,"name":"片想い","image":"//lain.bgm.tv/pic/cover/m/a4/fa/3337_e33BQ.jpg"},{"id":4114,"name":"AIR Original SoundTrack","image":"//lain.bgm.tv/pic/cover/m/ab/24/4114_hXOXO.jpg"},{"id":814,"name":"星间飞行","image":"//lain.bgm.tv/pic/cover/m/96/b9/814_jpPEj.jpg"},{"id":1338,"name":"深爱","image":"//lain.bgm.tv/pic/cover/m/05/31/1338_NIh5y.jpg"}]} |
{
"name": "0918nobita.github.io",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:0918nobita/0918nobita.github.io.git",
"author": "0918nobita <nobita.0918@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"serve": "static --port 8080"
},
"devDependencies": {
"node-static": "^0.7.11"
}
}
|
{
"created_at" : 1510067600,
"tags" : [
],
"title" : "Error: Could not link phinze\/cask manpages to: \/usr\/local\/share\/man\/man1\/brew-cask.1",
"updated_at" : 1510067627,
"uuid" : "309BC752-BDA1-4B25-9EF1-10AEF9F20ED0"
} |
["892fa43f55754bf3d81a277aa5eba06651137bcf","a2a4957950be56e3079c64ddd2f4a122f9c64e73","465ce45932397b8e89c64fdea33b3a3b6206454c","272acd717316c22a59cf30fa1c145d8380e4bc82","91894d1ce0b9ca57c9720b137d5f8afba1f29906","536645564ffdd376a2ccb2d406ec5b82398da59f","083f83bcd0c6ffb84d5e38d0a2c73d83dbc05665","9dfcd153f6a0b9d06955b5fcf8181620b824e71f","8cd46304584f67cb2df36900b892f3d360320db6","56f2b4e5451756f992efff789847d01da5fdd361"] |
{
"siteId": "57da21e1-58f9-445b-bdf6-dabb718d201f"
} |
{"files": ["ra1511003010819.txt", "101927java.txt", "900328.txt", "ra1511008010490.txt", "102234java.txt", "ra1511003010117.txt", "ra1511003010680.txt", "ra1511003010109.txt", "101931.txt", "00900251.txt", "ra1511003010279.txt", "ra1511003020410.txt", "ra1511008010294.txt", "anbu200621.txt", "200383.txt", "ra1511003010793.txt", "karthik_1976.txt", "102376.txt", "ra1511003010900.txt", "ra1511003010802.txt", "rpmt675.txt", "ra1511008010136.txt", "1234567890.txt", "ra1511008010508.txt", "ra1511008010179.txt", "ra1511008010465.txt", "201342$.txt", "ra1511003010675.txt"]} |
{
"name": "dfs-admin-frontend",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:JoshOY/dfs-admin-frontend.git",
"author": "Josh Ouyang <me@joshoy.org>",
"license": "MIT",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && webpack",
"watch": "npm run clean && webpack --watch",
"clean": "rm -r ./dist && mkdir ./dist && touch ./dist/.gitkeep",
"devserver": "babel-node ./devserver.js"
},
"dependencies": {
"@antv/data-set": "^0.8.3",
"@antv/g2": "^3.0.4-beta.2",
"antd": "^3.1.0",
"babel-polyfill": "^6.26.0",
"bizcharts": "^3.1.0-beta.6",
"filesize": "^3.5.11",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"jquery": "2",
"lodash": "^4.17.4",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"mobx-react-router": "^4.0.1",
"moment": "^2.20.1",
"promise-polyfill": "^7.0.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"autoprefixer": "^7.2.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-import": "^1.6.3",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.18.2",
"css-loader": "^0.28.7",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-http-proxy": "^1.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"lodash-webpack-plugin": "^0.11.4",
"postcss": "^6.0.14",
"postcss-loader": "^2.0.9",
"style-loader": "^0.19.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
}
}
|
{
"pageNotFound": {
"title": "Uh, Page not found :(",
"return": "Return to main page"
},
"auth": {
"login": "LOGIN",
"register": "REGISTER"
},
"suggestor": {
"suggest": "Let's fuck!",
"info": "Pick your acceptance level",
"level": "Level",
"levels": {
"Soft": "Soft",
"Medium": "Medium",
"Hard": "Hard"
}
},
"language": "language"
}
|
{"behaviors": {"static": {}, "dynamic": {"host": [{"tid": 319, "procname": ".safetest.myapn", "class": "ACCESS PERSONAL INFO", "subclass": "PHONE", "low": [{"method_name": "android.app.IActivityManager.GET_CONTENT_PROVIDER_TRANSACTION()", "type": "BINDER", "id": 1491, "ts": 0}]}, {"tid": 319, "procname": ".safetest.myapn", "class": "FS ACCESS", "low": [{"sysname": "open", "blob": "{'flags': 131649, 'mode': 384, 'filename': u'/data/data/com.safetest.myapn/shared_prefs/sstimestamp.xml\\x00'}", "type": "SYSCALL", "id": 1723, "ts": 0}, {"sysname": "write", "xref": 1723, "ts": 0, "blob": "{'filename': u'/data/data/com.safetest.myapn/shared_prefs/sstimestamp.xml'}", "type": "SYSCALL", "id": 1724}]}, {"tid": 319, "procname": ".safetest.myapn", "class": "ACCESS PERSONAL INFO", "subclass": "PHONE", "low": [{"method_name": "com.android.internal.telephony.IPhoneSubInfo.getDeviceId()()", "type": "BINDER", "id": 1929, "ts": 0}]}, {"tid": 329, "procname": "Thread-12", "class": "ACCESS PERSONAL INFO", "subclass": "PHONE", "low": [{"method_name": "com.android.internal.telephony.IPhoneSubInfo.getDeviceId()()", "type": "BINDER", "id": 2069, "ts": 0}]}, {"tid": 329, "procname": "Thread-12", "class": "ACCESS PERSONAL INFO", "subclass": "PHONE", "low": [{"method_name": "com.android.internal.telephony.IPhoneSubInfo.getIccSerialNumber()()", "type": "BINDER", "id": 2091, "ts": 0}]}, {"tid": 319, "procname": ".safetest.myapn", "class": "ACCESS PERSONAL INFO", "subclass": "PHONE", "low": [{"method_name": "com.android.internal.telephony.IPhoneSubInfo.getDeviceId()()", "type": "BINDER", "id": 2105, "ts": 0}]}, {"tid": 329, "procname": "Thread-12", "class": "ACCESS PERSONAL INFO", "subclass": "PHONE", "low": [{"method_name": "com.android.internal.telephony.IPhoneSubInfo.getSubscriberId()()", "type": "BINDER", "id": 2108, "ts": 0}]}, {"tid": 319, "procname": ".safetest.myapn", "class": "ACCESS PERSONAL INFO", "subclass": "PHONE", "low": [{"method_name": "com.android.internal.telephony.IPhoneSubInfo.getIccSerialNumber()()", "type": "BINDER", "id": 2162, "ts": 0}]}, {"tid": 328, "procname": "Timer-3", "class": "NETWORK ACCESS", "subclass": "DNS", "low": [{"sysname": "connect", "blob": "{'host': '10.0.2.3', 'retval': 0, 'port': 53}", "type": "SYSCALL", "id": 2184, "ts": 0}, {"sysname": "sendto", "xref": 2184, "ts": 0, "blob": "{'query_data': 'proxy.youdraw.cn. 1 1'}", "type": "SYSCALL", "id": 2185}]}, {"tid": 319, "procname": ".safetest.myapn", "class": "ACCESS PERSONAL INFO", "subclass": "PHONE", "low": [{"method_name": "com.android.internal.telephony.IPhoneSubInfo.getLine1Number()()", "type": "BINDER", "id": 2213, "ts": 0}]}, {"tid": 328, "procname": "Timer-3", "class": "NETWORK ACCESS", "subclass": "HTTP", "low": [{"sysname": "connect", "blob": "{'host': '::ffff:114.255.171.253', 'retval': -115, 'port': 80}", "type": "SYSCALL", "id": 2232, "ts": 0}, {"sysname": "sendto", "xref": 2232, "ts": 0, "blob": "=POST+%2Fapi%2Fproxy+HTTP%2F1.1%0D%0AHost%3A+proxy.youdraw.cn%0D%0AUser-Agent%3A+Dalvik%2F1.2.0+%28Linux%3B+U%3B+Android+2.2.3%3B+generic+Build%2FFRK76C%29%0D%0AConnection%3A+Keep-Alive%0D%0AContent-Length%3A+210%0D%0AContent-Type%3A+application%2Fx-www-form-urlencoded%0D%0A", "type": "SYSCALL", "id": 2285}, {"sysname": "sendto", "xref": 2232, "ts": 0, "blob": "=ret%3D2%26rqt%3D2%26pid%3Dacc70d52722f446481021f05ecee0f4f%26tid%3DMDAwMDAwMDAwMDAwMDAw%26ty%3D1%26u%3DdW5rbm93bg%3D%3D%26o%3DQW5kcm9pZDIuMi4z%26m%3Dfalse%26ip%3D10.0.2.15%26ay%3D2%26ray%3D1%26w%3D0%26h%3D0%26tt%3DZ2VuZXJpYw%3D%3D%26v%3D1.0.1%26st%3D2%26shid%3D%26ac%3Dinternet%26ca%3DAndroid", "type": "SYSCALL", "id": 2290}]}, {"tid": 329, "procname": "Thread-12", "class": "ACCESS PERSONAL INFO", "subclass": "LOCATION", "low": [{"method_name": "com.android.internal.telephony.ITelephony.TRANSACTION_getCellLocation()", "type": "BINDER", "id": 2244, "ts": 0}]}, {"tid": 329, "procname": "Thread-12", "class": "ACCESS PERSONAL INFO", "subclass": "PHONE", "low": [{"method_name": "com.android.internal.telephony.ITelephony.TRANSACTION_getActivePhoneType()", "type": "BINDER", "id": 2258, "ts": 0}]}, {"tid": 329, "procname": "Thread-12", "class": "ACCESS PERSONAL INFO", "subclass": "LOCATION", "low": [{"method_name": "android.location.ILocationManager.TRANSACTION_getLastKnownLocation()", "type": "BINDER", "id": 2281, "ts": 0}]}, {"tid": 331, "procname": "Thread-14", "class": "NETWORK ACCESS", "subclass": "DNS", "low": [{"sysname": "connect", "blob": "{'host': '10.0.2.3', 'retval': 0, 'port': 53}", "type": "SYSCALL", "id": 2554, "ts": 0}, {"sysname": "sendto", "xref": 2554, "ts": 0, "blob": "{'query_data': 'r2.adwo.com. 1 1'}", "type": "SYSCALL", "id": 2555}]}, {"tid": 331, "procname": "Thread-14", "class": "NETWORK ACCESS", "subclass": "HTTP", "low": [{"sysname": "connect", "blob": "{'host': '::ffff:118.26.192.171', 'retval': -115, 'port': 80}", "type": "SYSCALL", "id": 2604, "ts": 0}, {"sysname": "sendto", "xref": 2604, "ts": 0, "blob": "=POST+%2Fad+HTTP%2F1.1%0D%0AHost%3A+r2.adwo.com%0D%0AUser-Agent%3A+Dalvik%2F1.2.0+%28Linux%3B+U%3B+Android+2.2.3%3B+generic+Build%2FFRK76C%29%0D%0AConnection%3A+Keep-Alive%0D%0AContent-Length%3A+126%0D%0AContent-Type%3A+application%2Fx-www-form-urlencoded%0D%0A", "type": "SYSCALL", "id": 2991}, {"sysname": "sendto", "xref": 2604, "ts": 0, "blob": "=%00%7C%00%02%02%1A%07%02%01d08ade35e805439faa0c6b98c10179e6%00%00%00I%0F000000000000000%00%00%00%00M%07unknownB%07generic%016%00%00N%0B15555218135P%12com.safetest.myapnL%00%00%00%00%00", "type": "SYSCALL", "id": 2996}]}, {"tid": 328, "procname": "Timer-3", "class": "NETWORK ACCESS", "subclass": "HTTP", "low": [{"sysname": "connect", "blob": "{'host': '::ffff:114.255.171.253', 'retval': -115, 'port': 80}", "type": "SYSCALL", "id": 4010, "ts": 0}, {"sysname": "sendto", "xref": 4010, "ts": 0, "blob": "=POST+%2Fapi%2Fproxy+HTTP%2F1.1%0D%0AHost%3A+proxy.youdraw.cn%0D%0AUser-Agent%3A+Dalvik%2F1.2.0+%28Linux%3B+U%3B+Android+2.2.3%3B+generic+Build%2FFRK76C%29%0D%0AConnection%3A+Keep-Alive%0D%0AContent-Length%3A+213%0D%0AContent-Type%3A+application%2Fx-www-form-urlencoded%0D%0A", "type": "SYSCALL", "id": 4019}, {"sysname": "sendto", "xref": 4010, "ts": 0, "blob": "=ret%3D2%26rqt%3D2%26pid%3Dacc70d52722f446481021f05ecee0f4f%26tid%3DMDAwMDAwMDAwMDAwMDAw%26ty%3D1%26u%3DdW5rbm93bg%3D%3D%26o%3DQW5kcm9pZDIuMi4z%26m%3Dfalse%26ip%3D10.0.2.15%26ay%3D2%26ray%3D1%26w%3D480%26h%3D48%26tt%3DZ2VuZXJpYw%3D%3D%26v%3D1.0.1%26st%3D2%26shid%3D%26ac%3Dinternet%26ca%3DAndroid", "type": "SYSCALL", "id": 4020}]}, {"tid": 328, "procname": "Timer-3", "class": "NETWORK ACCESS", "subclass": "HTTP", "low": [{"sysname": "connect", "blob": "{'host': '::ffff:114.255.171.253', 'retval': -115, 'port': 80}", "type": "SYSCALL", "id": 4624, "ts": 0}, {"sysname": "sendto", "xref": 4624, "ts": 0, "blob": "=POST+%2Fapi%2Fproxy+HTTP%2F1.1%0D%0AHost%3A+proxy.youdraw.cn%0D%0AUser-Agent%3A+Dalvik%2F1.2.0+%28Linux%3B+U%3B+Android+2.2.3%3B+generic+Build%2FFRK76C%29%0D%0AConnection%3A+Keep-Alive%0D%0AContent-Length%3A+213%0D%0AContent-Type%3A+application%2Fx-www-form-urlencoded%0D%0A", "type": "SYSCALL", "id": 4633}, {"sysname": "sendto", "xref": 4624, "ts": 0, "blob": "=ret%3D2%26rqt%3D2%26pid%3Dacc70d52722f446481021f05ecee0f4f%26tid%3DMDAwMDAwMDAwMDAwMDAw%26ty%3D1%26u%3DdW5rbm93bg%3D%3D%26o%3DQW5kcm9pZDIuMi4z%26m%3Dfalse%26ip%3D10.0.2.15%26ay%3D2%26ray%3D1%26w%3D480%26h%3D48%26tt%3DZ2VuZXJpYw%3D%3D%26v%3D1.0.1%26st%3D2%26shid%3D%26ac%3Dinternet%26ca%3DAndroid", "type": "SYSCALL", "id": 4634}]}, {"tid": 332, "procname": "Thread-15", "class": "NETWORK ACCESS", "subclass": "HTTP", "low": [{"sysname": "connect", "blob": "{'host': '::ffff:118.26.192.171', 'retval': -115, 'port': 80}", "type": "SYSCALL", "id": 4676, "ts": 0}, {"sysname": "sendto", "xref": 4676, "ts": 0, "blob": "=POST+%2Fad+HTTP%2F1.1%0D%0AHost%3A+r2.adwo.com%0D%0AUser-Agent%3A+Dalvik%2F1.2.0+%28Linux%3B+U%3B+Android+2.2.3%3B+generic+Build%2FFRK76C%29%0D%0AConnection%3A+Keep-Alive%0D%0AContent-Length%3A+126%0D%0AContent-Type%3A+application%2Fx-www-form-urlencoded%0D%0A", "type": "SYSCALL", "id": 5120}, {"sysname": "sendto", "xref": 4676, "ts": 0, "blob": "=%00%7C%00%02%02%1A%07%02%01d08ade35e805439faa0c6b98c10179e6%00%00%00I%0F000000000000000%00%00%00%00M%07unknownB%07generic%016%00%00N%0B15555218135P%12com.safetest.myapnL%00%00%00%00%00", "type": "SYSCALL", "id": 5121}]}, {"tid": 328, "procname": "Timer-3", "class": "NETWORK ACCESS", "subclass": "HTTP", "low": [{"sysname": "connect", "blob": "{'host': '::ffff:114.255.171.253', 'retval': -115, 'port': 80}", "type": "SYSCALL", "id": 5554, "ts": 0}, {"sysname": "sendto", "xref": 5554, "ts": 0, "blob": "=POST+%2Fapi%2Fproxy+HTTP%2F1.1%0D%0AHost%3A+proxy.youdraw.cn%0D%0AUser-Agent%3A+Dalvik%2F1.2.0+%28Linux%3B+U%3B+Android+2.2.3%3B+generic+Build%2FFRK76C%29%0D%0AConnection%3A+Keep-Alive%0D%0AContent-Length%3A+213%0D%0AContent-Type%3A+application%2Fx-www-form-urlencoded%0D%0A", "type": "SYSCALL", "id": 5563}, {"sysname": "sendto", "xref": 5554, "ts": 0, "blob": "=ret%3D2%26rqt%3D2%26pid%3Dacc70d52722f446481021f05ecee0f4f%26tid%3DMDAwMDAwMDAwMDAwMDAw%26ty%3D1%26u%3DdW5rbm93bg%3D%3D%26o%3DQW5kcm9pZDIuMi4z%26m%3Dfalse%26ip%3D10.0.2.15%26ay%3D2%26ray%3D1%26w%3D480%26h%3D48%26tt%3DZ2VuZXJpYw%3D%3D%26v%3D1.0.1%26st%3D2%26shid%3D%26ac%3Dinternet%26ca%3DAndroid", "type": "SYSCALL", "id": 5564}]}, {"tid": 334, "procname": "Timer-1", "class": "EXECUTE", "low": [{"sysname": "execve", "blob": {"executed_file": "/sbin/su", "args": "['su']", "retval": -13}, "type": "SYSCALL", "id": 7200, "ts": 0}]}, {"tid": 334, "procname": "Timer-1", "class": "EXECUTE", "low": [{"sysname": "execve", "blob": {"executed_file": "/system/sbin/su", "args": "['su']", "retval": -2}, "type": "SYSCALL", "id": 7201, "ts": 0}]}, {"tid": 334, "procname": "Timer-1", "class": "EXECUTE", "low": [{"sysname": "execve", "blob": {"executed_file": "/system/bin/su", "args": "['su']", "retval": -2}, "type": "SYSCALL", "id": 7202, "ts": 0}]}, {"tid": 334, "procname": "Timer-1", "class": "EXECUTE", "low": [{"sysname": "execve", "blob": {"executed_file": "su", "args": "[]", "retval": 0}, "type": "SYSCALL", "id": 7205, "ts": 0}]}, {"tid": 335, "procname": "Thread-17", "class": "NETWORK ACCESS", "subclass": "HTTP", "low": [{"sysname": "connect", "blob": "{'host': '::ffff:118.26.192.171', 'retval': -115, 'port': 80}", "type": "SYSCALL", "id": 7596, "ts": 0}, {"sysname": "sendto", "xref": 7596, "ts": 0, "blob": "=POST+%2Fad+HTTP%2F1.1%0D%0AHost%3A+r2.adwo.com%0D%0AUser-Agent%3A+Dalvik%2F1.2.0+%28Linux%3B+U%3B+Android+2.2.3%3B+generic+Build%2FFRK76C%29%0D%0AConnection%3A+Keep-Alive%0D%0AContent-Length%3A+126%0D%0AContent-Type%3A+application%2Fx-www-form-urlencoded%0D%0A", "type": "SYSCALL", "id": 7637}, {"sysname": "sendto", "xref": 7596, "ts": 0, "blob": "=%00%7C%00%02%02%1A%07%02%01d08ade35e805439faa0c6b98c10179e6%00%00%00I%0F000000000000000%00%00%00%00M%07unknownB%07generic%016%00%00N%0B15555218135P%12com.safetest.myapnL%00%00%00%00%00", "type": "SYSCALL", "id": 7638}]}, {"tid": 336, "procname": "Thread-18", "class": "NETWORK ACCESS", "subclass": "HTTP", "low": [{"sysname": "connect", "blob": "{'host': '::ffff:118.26.192.171', 'retval': -115, 'port': 80}", "type": "SYSCALL", "id": 7937, "ts": 0}, {"sysname": "sendto", "xref": 7937, "ts": 0, "blob": "=POST+%2Fad+HTTP%2F1.1%0D%0AHost%3A+r2.adwo.com%0D%0AUser-Agent%3A+Dalvik%2F1.2.0+%28Linux%3B+U%3B+Android+2.2.3%3B+generic+Build%2FFRK76C%29%0D%0AConnection%3A+Keep-Alive%0D%0AContent-Length%3A+126%0D%0AContent-Type%3A+application%2Fx-www-form-urlencoded%0D%0A", "type": "SYSCALL", "id": 7976}, {"sysname": "sendto", "xref": 7937, "ts": 0, "blob": "=%00%7C%00%02%02%1A%07%02%01d08ade35e805439faa0c6b98c10179e6%00%00%00I%0F000000000000000%00%00%00%00M%07unknownB%07generic%016%00%00N%0B15555218135P%12com.safetest.myapnL%00%00%00%00%00", "type": "SYSCALL", "id": 7977}]}, {"tid": 337, "procname": "Thread-19", "class": "NETWORK ACCESS", "subclass": "HTTP", "low": [{"sysname": "connect", "blob": "{'host': '::ffff:118.26.192.171', 'retval': -115, 'port': 80}", "type": "SYSCALL", "id": 8284, "ts": 0}, {"sysname": "sendto", "xref": 8284, "ts": 0, "blob": "=POST+%2Fad+HTTP%2F1.1%0D%0AHost%3A+r2.adwo.com%0D%0AUser-Agent%3A+Dalvik%2F1.2.0+%28Linux%3B+U%3B+Android+2.2.3%3B+generic+Build%2FFRK76C%29%0D%0AConnection%3A+Keep-Alive%0D%0AContent-Length%3A+126%0D%0AContent-Type%3A+application%2Fx-www-form-urlencoded%0D%0A", "type": "SYSCALL", "id": 8321}, {"sysname": "sendto", "xref": 8284, "ts": 0, "blob": "=%00%7C%00%02%02%1A%07%02%01d08ade35e805439faa0c6b98c10179e6%00%00%00I%0F000000000000000%00%00%00%00M%07unknownB%07generic%016%00%00N%0B15555218135P%12com.safetest.myapnL%00%00%00%00%00", "type": "SYSCALL", "id": 8322}]}, {"tid": 338, "procname": "Thread-20", "class": "NETWORK ACCESS", "subclass": "HTTP", "low": [{"sysname": "connect", "blob": "{'host': '::ffff:118.26.192.171', 'retval': -115, 'port': 80}", "type": "SYSCALL", "id": 8699, "ts": 0}, {"sysname": "sendto", "xref": 8699, "ts": 0, "blob": "=POST+%2Fad+HTTP%2F1.1%0D%0AHost%3A+r2.adwo.com%0D%0AUser-Agent%3A+Dalvik%2F1.2.0+%28Linux%3B+U%3B+Android+2.2.3%3B+generic+Build%2FFRK76C%29%0D%0AConnection%3A+Keep-Alive%0D%0AContent-Length%3A+126%0D%0AContent-Type%3A+application%2Fx-www-form-urlencoded%0D%0A", "type": "SYSCALL", "id": 8734}, {"sysname": "sendto", "xref": 8699, "ts": 0, "blob": "=%00%7C%00%02%02%1A%07%02%01d08ade35e805439faa0c6b98c10179e6%00%00%00I%0F000000000000000%00%00%00%00M%07unknownB%07generic%016%00%00N%0B15555218135P%12com.safetest.myapnL%00%00%00%00%00", "type": "SYSCALL", "id": 8735}]}]}}, "userid": "joystick", "country": "UNAVAILABLE", "date_end": "N/A", "date_start": "N/A", "date_submitted": "2012-11-19 18:19:04", "static": "/copperdroid/reports//DroidKungFu4_genome_stimulated/b765b9a9ad84c69857c42c206e775bae695cde9a.apk.log", "submitter_ip": "127.0.0.1", "pcap": "/copperdroid/reports//DroidKungFu4_genome_stimulated/b765b9a9ad84c69857c42c206e775bae695cde9a.apk.pcap", "md5": "49c4e91dbe24a61ddb3e9c0b49b4c826"} |
[
"http://2.bp.blogspot.com/-3zeOVxegqZA/VXonsuchloI/AAAAAAABu7A/fmGgML1il1g/s0/000.jpg",
"http://2.bp.blogspot.com/-8G22uX4hCcU/VXons4-YXGI/AAAAAAABu7A/3mePGc6ge8o/s0/001.jpg",
"http://2.bp.blogspot.com/-bGmzm0jbmgY/VXonsY8f-BI/AAAAAAABu7A/W8xDsTT1Xjo/s0/002.jpg",
"http://2.bp.blogspot.com/-sgMNqsK8zhw/VXontcsEyiI/AAAAAAABu7A/VqP5rAaC3xQ/s0/003.jpg",
"http://2.bp.blogspot.com/-YgSne-IsBA0/VXonteAkBkI/AAAAAAABu7A/xqiyewWP0o0/s0/004.jpg",
"http://2.bp.blogspot.com/-ZC3zU3f22Bg/VXontmWKN3I/AAAAAAABu7A/Bg4hWCE9DO4/s0/005.jpg",
"http://2.bp.blogspot.com/-fGiPeHffc_8/VXonty3m4OI/AAAAAAABu7A/QgsvTs3-NUQ/s0/006.jpg",
"http://2.bp.blogspot.com/-0vLZHr7IMIo/VXonuIPpt_I/AAAAAAABu7A/wF-wIFBBLZA/s0/007.jpg",
"http://2.bp.blogspot.com/-1iyjmtGaehA/VXonuVw5jII/AAAAAAABu7A/3emzFXJncJU/s0/008.jpg",
"http://2.bp.blogspot.com/-6sv-TrRuZ5o/VXonuqcptII/AAAAAAABu7A/GyRhx4WltpQ/s0/009.jpg",
"http://2.bp.blogspot.com/-bMW2kFpi_vM/VXonu1yqMaI/AAAAAAABu7A/XLbh-IO8-ug/s0/010.jpg",
"http://2.bp.blogspot.com/-RrarhVS4OP0/VXonvFbO0nI/AAAAAAABu7A/YLTw3ZeqOsc/s0/011.jpg",
"http://2.bp.blogspot.com/-YanHjnpr1II/VXonvgnBFKI/AAAAAAABu7A/N2df5e1E1_8/s0/012.jpg",
"http://2.bp.blogspot.com/-zPBCMTJdHH4/VXonv4Y9w5I/AAAAAAABu7A/UtaN4rcU9KE/s0/013.jpg",
"http://2.bp.blogspot.com/-mKUGhEu_g18/VXonwZDltII/AAAAAAABu7A/q5MdbKdw5Dk/s0/014.jpg",
"http://2.bp.blogspot.com/-kLiSTaTvBD0/VXonwUBBulI/AAAAAAABu7A/fgr2LxYa-WM/s0/015.jpg",
"http://2.bp.blogspot.com/-_EUlBqM7eTI/VXonxBXXLfI/AAAAAAABu7A/jgmC-QtqCqo/s0/016.jpg",
"http://2.bp.blogspot.com/-N1dNSv_cCGI/VXonxVfvnOI/AAAAAAABu7A/zU93HmuZ1xo/s0/017.jpg",
"http://2.bp.blogspot.com/-RoPTLyW3LiM/VXonxgUpeEI/AAAAAAABu7A/Boyni79wq_I/s0/018.jpg",
"http://2.bp.blogspot.com/-acgo8CoY9NY/VXonxzQb8_I/AAAAAAABu7A/zQCwgeDxLCM/s0/019.jpg"
] |
{
"actions": [
{
"acted_at": "1973-10-16",
"committee": "Senate Committee on Judiciary",
"references": [],
"status": "REFERRED",
"text": "Referred to Senate Committee on Judiciary.",
"type": "referral"
}
],
"amendments": [],
"bill_id": "sjres165-93",
"bill_type": "sjres",
"committees": [
{
"activity": [
"referral",
"in committee"
],
"committee": "Senate Judiciary",
"committee_id": "SSJU"
}
],
"congress": "93",
"cosponsors": [
{
"district": null,
"name": "Bartlett, Dewey F.",
"sponsored_at": "1973-01-03",
"state": "OK",
"thomas_id": "01276",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Bennett, Wallace F.",
"sponsored_at": "1973-01-03",
"state": "UT",
"thomas_id": "01281",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Brock, Bill",
"sponsored_at": "1973-01-03",
"state": "TN",
"thomas_id": "01291",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Case, Clifford P.",
"sponsored_at": "1973-01-03",
"state": "NJ",
"thomas_id": "01302",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Dole, Robert J.",
"sponsored_at": "1973-01-03",
"state": "KS",
"thomas_id": "01318",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Javits, Jacob K.",
"sponsored_at": "1973-01-03",
"state": "NY",
"thomas_id": "01371",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Montoya, Joseph M.",
"sponsored_at": "1973-01-03",
"state": "NM",
"thomas_id": "01403",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Randolph, Jennings",
"sponsored_at": "1973-01-03",
"state": "WV",
"thomas_id": "01421",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Tower, John G.",
"sponsored_at": "1973-01-03",
"state": "TX",
"thomas_id": "01449",
"title": "Sen",
"withdrawn_at": null
},
{
"district": null,
"name": "Young, Milton R.",
"sponsored_at": "1973-01-03",
"state": "ND",
"thomas_id": "01458",
"title": "Sen",
"withdrawn_at": null
}
],
"enacted_as": null,
"history": {
"awaiting_signature": false,
"enacted": false,
"vetoed": false
},
"introduced_at": "1973-10-16",
"number": "165",
"official_title": "Joint resolution to designate February 10 to 16, 1974, as \"National Vocational Education, and National Vocational Industrial Clubs of America (VICA) Week\".",
"popular_title": null,
"related_bills": [],
"short_title": null,
"sponsor": {
"district": null,
"name": "Domenici, Pete V.",
"state": "NM",
"thomas_id": "01319",
"title": "Sen",
"type": "person"
},
"status": "REFERRED",
"status_at": "1973-10-16",
"subjects": [
"Commemorations",
"Special weeks"
],
"subjects_top_term": "Commemorations",
"summary": {
"as": "Introduced",
"date": "1973-10-16",
"text": "Designates February 10 to 16, 1974, as \"National Vocational Education, and National Vocational Industrial Clubs of America (VICA) Week\"."
},
"titles": [
{
"as": "introduced",
"title": "Joint resolution to designate February 10 to 16, 1974, as \"National Vocational Education, and National Vocational Industrial Clubs of America (VICA) Week\".",
"type": "official"
}
],
"updated_at": "2013-02-02T18:20:58-05:00"
} |
[
"http://www.happycow.net/reviews/tree-top-eco-lodge-banlung-46023"
] |
{"artist": "Sarah Vaughan / Clifford Brown", "timestamp": "2011-09-08 04:08:56.983391", "similars": [], "tags": [], "track_id": "TRLQDHD128F14A43F6", "title": "He's My Guy"} |
[{"Description": " MEDICAL BACK PROBLEMS W/O MCC", "Charge": "4300.83", "Category": "Standard"}, {"Description": " MISC DISORDERS OF NUTRITION,METABOLISM,FLUIDS/ELECTROLYTES W MCC", "Charge": "6074.76", "Category": "Standard"}, {"Description": " DIABETES W/O CC/MCC", "Charge": "2732.82", "Category": "Standard"}, {"Description": " DIABETES W CC", "Charge": "4189.79", "Category": "Standard"}, {"Description": " DIABETES W MCC", "Charge": "6978.48", "Category": "Standard"}, {"Description": " O.R. PROCEDURES FOR OBESITY W/O CC/MCC", "Charge": "7878.5", "Category": "Standard"}, {"Description": " AMPUTAT OF LOWER LIMB FOR ENDOCRINE,NUTRIT,& METABOL DIS W CC", "Charge": "10157.84", "Category": "Standard"}, {"Description": " LOWER EXTREM & HUMER PROC EXCEPT HIP,FOOT,FEMUR W/O CC/MCC", "Charge": "8264.28", "Category": "Standard"}, {"Description": " CELLULITIS W/O MCC", "Charge": "4189.17", "Category": "Standard"}, {"Description": " CELLULITIS W MCC", "Charge": "7988.0", "Category": "Standard"}, {"Description": " OTHER SKIN, SUBCUT TISS & BREAST PROC W CC", "Charge": "8028.12", "Category": "Standard"}, {"Description": " FX, SPRN, STRN & DISL EXCEPT FEMUR, HIP, PELVIS & THIGH W/O MCC", "Charge": "3610.57", "Category": "Standard"}, {"Description": " OTHER MUSCULOSKELET SYS & CONN TISS O.R. PROC W MCC", "Charge": "17873.4", "Category": "Standard"}, {"Description": " OTHER MUSCULOSKELET SYS & CONN TISS O.R. PROC W CC", "Charge": "10817.72", "Category": "Standard"}, {"Description": " OTHER MUSCULOSKELET SYS & CONN TISS O.R. PROC W/O CC/MCC", "Charge": "9372.09", "Category": "Standard"}, {"Description": " TENDONITIS, MYOSITIS & BURSITIS W/O MCC", "Charge": "4218.3", "Category": "Standard"}, {"Description": " SIGNS & SYMPTOMS OF MUSCULOSKELETAL SYSTEM & CONN TISSUE W/O MCC", "Charge": "3698.64", "Category": "Standard"}, {"Description": " BONE DISEASES & ARTHROPATHIES W/O MCC", "Charge": "3435.07", "Category": "Standard"}, {"Description": " BACK & NECK PROC EXC SPINAL FUSION W CC", "Charge": "8448.69", "Category": "Standard"}, {"Description": " BACK & NECK PROC EXC SPINAL FUSION W/O CC/MCC", "Charge": "5628.44", "Category": "Standard"}, {"Description": " FRACTURES OF HIP & PELVIS W MCC", "Charge": "6181.73", "Category": "Standard"}, {"Description": " FRACTURES OF HIP & PELVIS W/O MCC", "Charge": "3380.93", "Category": "Standard"}, {"Description": " PATHOLOGICAL FRACTURES & MUSCULOSKELET & CONN TISS MALIG W CC", "Charge": "5773.04", "Category": "Standard"}, {"Description": " MEDICAL BACK PROBLEMS W MCC", "Charge": "7787.88", "Category": "Standard"}, {"Description": " BACK & NECK PROC EXC SPINAL FUSION W MCC OR DISC DEVICE/NEUROSTIM", "Charge": "15426.38", "Category": "Standard"}, {"Description": " MISC DISORDERS OF NUTRITION,METABOLISM,FLUIDS/ELECTROLYTES W/O MCC", "Charge": "3537.69", "Category": "Standard"}, {"Description": "Level 2 Excision/ Biopsy/ Incision and Drainage", "Charge": "978.28", "Category": "DRG"}, {"Description": " KIDNEY & URETER PROCEDURES FOR NEOPLASM W/O CC/MCC", "Charge": "8319.09", "Category": "Standard"}, {"Description": "Level 3 Musculoskeletal Procedures", "Charge": "1766.73", "Category": "DRG"}, {"Description": "Level 4 Musculoskeletal Procedures", "Charge": "4091.21", "Category": "DRG"}, {"Description": "Level 5 Musculoskeletal Procedures", "Charge": "8190.59", "Category": "DRG"}, {"Description": "Level 3 Airway Endoscopy", "Charge": "1008.0", "Category": "DRG"}, {"Description": "Level 4 Airway Endoscopy", "Charge": "1929.99", "Category": "DRG"}, {"Description": "Level 5 Airway Endoscopy", "Charge": "3463.45", "Category": "DRG"}, {"Description": "Level 5 ENT Procedures", "Charge": "3279.27", "Category": "DRG"}, {"Description": "Level 1 Endovascular Procedures", "Charge": "1903.52", "Category": "DRG"}, {"Description": "Level 2 Endovascular Procedures", "Charge": "3720.96", "Category": "DRG"}, {"Description": "Level 3 Endovascular Procedures", "Charge": "8353.04", "Category": "DRG"}, {"Description": "Level 4 Endovascular Procedures", "Charge": "13224.7", "Category": "DRG"}, {"Description": "Level 3 Electrophysiologic Procedures", "Charge": "15366.13", "Category": "DRG"}, {"Description": "Level 2 Pacemaker and Similar Procedures", "Charge": "5630.03", "Category": "DRG"}, {"Description": "Level 3 Pacemaker and Similar Procedures", "Charge": "7916.26", "Category": "DRG"}, {"Description": "Level 1 ICD and Similar Procedures", "Charge": "19462.15", "Category": "DRG"}, {"Description": "Level 2 Musculoskeletal Procedures", "Charge": "878.58", "Category": "DRG"}, {"Description": "Level 2 Breast/Lymphatic Surgery and Related Procedures", "Charge": "3472.13", "Category": "DRG"}, {"Description": "Level 1 Breast/Lymphatic Surgery and Related Procedures", "Charge": "1939.21", "Category": "DRG"}, {"Description": "Level 3 Excision/ Biopsy/ Incision and Drainage", "Charge": "1705.52", "Category": "DRG"}, {"Description": " FEVER", "Charge": "4096.0", "Category": "Standard"}, {"Description": " SEPTICEMIA OR SEVERE SEPSIS W MV >96 HOURS", "Charge": "35449.39", "Category": "Standard"}, {"Description": " SEPTICEMIA OR SEVERE SEPSIS W/O MV >96 HOURS W MCC", "Charge": "9453.2", "Category": "Standard"}, {"Description": " SEPTICEMIA OR SEVERE SEPSIS W/O MV >96 HOURS W/O MCC", "Charge": "5277.19", "Category": "Standard"}, {"Description": " ACUTE ADJUSTMENT REACTION & PSYCHOSOCIAL DYSFUNCTION", "Charge": "4094.62", "Category": "Standard"}, {"Description": " ORGANIC DISTURBANCES & INTELLECTUAL DISABILITY", "Charge": "5692.9", "Category": "Standard"}, {"Description": " PSYCHOSES", "Charge": "6170.54", "Category": "Standard"}, {"Description": "Level 2 ICD and Similar Procedures", "Charge": "29002.14", "Category": "DRG"}, {"Description": " ALCOHOL/DRUG ABUSE OR DEPENDENCE W/O REHABILITATION THERAPY W/O MCC", "Charge": "3602.97", "Category": "Standard"}, {"Description": " POISONING & TOXIC EFFECTS OF DRUGS W MCC", "Charge": "7811.48", "Category": "Standard"}, {"Description": " POISONING & TOXIC EFFECTS OF DRUGS W/O MCC", "Charge": "3640.94", "Category": "Standard"}, {"Description": " COMPLICATIONS OF TREATMENT W MCC", "Charge": "10037.11", "Category": "Standard"}, {"Description": " COMPLICATIONS OF TREATMENT W CC", "Charge": "5170.9", "Category": "Standard"}, {"Description": " SIGNS & SYMPTOMS W MCC", "Charge": "5504.0", "Category": "Standard"}, {"Description": " SIGNS & SYMPTOMS W/O MCC", "Charge": "3820.69", "Category": "Standard"}, {"Description": " LOWER EXTREM & HUMER PROC EXCEPT HIP,FOOT,FEMUR W CC", "Charge": "10675.76", "Category": "Standard"}, {"Description": " OTHER O.R. PROCEDURES FOR INJURIES W CC", "Charge": "11206.83", "Category": "Standard"}, {"Description": "Level 2 Upper GI Procedures", "Charge": "1043.21", "Category": "DRG"}, {"Description": "Level 3 Lower GI Procedures", "Charge": "1720.63", "Category": "DRG"}, {"Description": "Abdominal/Peritoneal/Biliary and Related Procedures", "Charge": "2167.06", "Category": "DRG"}, {"Description": " RED BLOOD CELL DISORDERS W MCC", "Charge": "7465.12", "Category": "Standard"}, {"Description": " UTERINE,ADNEXA PROC FOR NON", "Charge": "8561.83", "Category": "Standard"}, {"Description": " TRANSURETHRAL PROSTATECTOMY W CC/MCC", "Charge": "8667.83", "Category": "Standard"}, {"Description": " OTHER KIDNEY & URINARY TRACT DIAGNOSES W/O CC/MCC", "Charge": "3973.64", "Category": "Standard"}, {"Description": " OTHER KIDNEY & URINARY TRACT DIAGNOSES W CC", "Charge": "5408.6", "Category": "Standard"}, {"Description": " OTHER KIDNEY & URINARY TRACT DIAGNOSES W MCC", "Charge": "8679.74", "Category": "Standard"}, {"Description": " KIDNEY & URINARY TRACT SIGNS & SYMPTOMS W/O MCC", "Charge": "3397.08", "Category": "Standard"}, {"Description": " RED BLOOD CELL DISORDERS W/O MCC", "Charge": "4437.35", "Category": "Standard"}, {"Description": " URINARY STONES W/O ESW LITHOTRIPSY W/O MCC", "Charge": "3325.4", "Category": "Standard"}, {"Description": " KIDNEY & URINARY TRACT INFECTIONS W MCC", "Charge": "5487.12", "Category": "Standard"}, {"Description": " RENAL FAILURE W/O CC/MCC", "Charge": "2893.17", "Category": "Standard"}, {"Description": " RENAL FAILURE W CC", "Charge": "4710.2", "Category": "Standard"}, {"Description": " RENAL FAILURE W MCC", "Charge": "8183.9", "Category": "Standard"}, {"Description": " TRANSURETHRAL PROCEDURES W/O CC/MCC", "Charge": "4636.92", "Category": "Standard"}, {"Description": " TRANSURETHRAL PROCEDURES W CC", "Charge": "7162.21", "Category": "Standard"}, {"Description": " KIDNEY & URETER PROCEDURES FOR NON", "Charge": "8806.23", "Category": "Standard"}, {"Description": " KIDNEY & URINARY TRACT INFECTIONS W/O MCC", "Charge": "3883.63", "Category": "Standard"}, {"Description": " KIDNEY & URETER PROCEDURES FOR NEOPLASM W CC", "Charge": "10134.33", "Category": "Standard"}, {"Description": " COAGULATION DISORDERS", "Charge": "10898.46", "Category": "Standard"}, {"Description": " LYMPHOMA & NON", "Charge": "8168.64", "Category": "Standard"}, {"Description": "Level 1 Laparoscopy and Related Services", "Charge": "3223.74", "Category": "DRG"}, {"Description": "Level 2 Laparoscopy and Related Services", "Charge": "5490.3", "Category": "DRG"}, {"Description": "Level 3 Urology and Related Services", "Charge": "1285.66", "Category": "DRG"}, {"Description": "Level 4 Urology and Related Services", "Charge": "2018.35", "Category": "DRG"}, {"Description": "Level 5 Urology and Related Services", "Charge": "2743.04", "Category": "DRG"}, {"Description": "Level 5 Gynecologic Procedures", "Charge": "2693.24", "Category": "DRG"}, {"Description": "Level 1 Nerve Procedures", "Charge": "1241.09", "Category": "DRG"}, {"Description": " LYMPHOMA & NON", "Charge": "16289.92", "Category": "Standard"}, {"Description": "Level 3 Neurostimulator and Related Procedures", "Charge": "15769.89", "Category": "DRG"}, {"Description": "Implantation of Drug Infusion Device", "Charge": "11843.69", "Category": "DRG"}, {"Description": "Comprehensive Observation Services", "Charge": "1730.92", "Category": "DRG"}, {"Description": " POSTOPERATIVE & POST", "Charge": "5019.2", "Category": "Standard"}, {"Description": " POSTOPERATIVE & POST", "Charge": "10500.62", "Category": "Standard"}, {"Description": " POSTOPERATIVE OR POST", "Charge": "31942.29", "Category": "Standard"}, {"Description": " INFECTIOUS & PARASITIC DISEASES W O.R. PROCEDURE W CC", "Charge": "12410.86", "Category": "Standard"}, {"Description": " INFECTIOUS & PARASITIC DISEASES W O.R. PROCEDURE W MCC", "Charge": "27913.75", "Category": "Standard"}, {"Description": "Level 4 Neurostimulator and Related Procedures", "Charge": "22916.61", "Category": "DRG"}, {"Description": " MAJOR JOINT/LIMB REATTACHMENT PROCEDURE OF UPPER EXTREMITIES", "Charge": "12846.73", "Category": "Standard"}, {"Description": "Level 4 Gynecologic Procedures", "Charge": "1625.4", "Category": "DRG"}, {"Description": " HIP & FEMUR PROCEDURES EXCEPT MAJOR JOINT W CC", "Charge": "10342.24", "Category": "Standard"}, {"Description": " CHRONIC OBSTRUCTIVE PULMONARY DISEASE W/O CC/MCC", "Charge": "3496.77", "Category": "Standard"}, {"Description": " SIMPLE PNEUMONIA & PLEURISY W MCC", "Charge": "7320.18", "Category": "Standard"}, {"Description": " SIMPLE PNEUMONIA & PLEURISY W CC", "Charge": "4267.48", "Category": "Standard"}, {"Description": " SIMPLE PNEUMONIA & PLEURISY W/O CC/MCC", "Charge": "3144.89", "Category": "Standard"}, {"Description": " PNEUMOTHORAX W CC", "Charge": "5300.13", "Category": "Standard"}, {"Description": " BRONCHITIS & ASTHMA W CC/MCC", "Charge": "4554.83", "Category": "Standard"}, {"Description": " BRONCHITIS & ASTHMA W/O CC/MCC", "Charge": "2900.26", "Category": "Standard"}, {"Description": " RESPIRATORY SIGNS & SYMPTOMS", "Charge": "3576.05", "Category": "Standard"}, {"Description": " OTHER RESPIRATORY SYSTEM DIAGNOSES W/O MCC", "Charge": "3837.68", "Category": "Standard"}, {"Description": " RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT >96 HOURS", "Charge": "30030.27", "Category": "Standard"}, {"Description": " RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT <=96 HOURS", "Charge": "13251.63", "Category": "Standard"}, {"Description": " HIP & FEMUR PROCEDURES EXCEPT MAJOR JOINT W/O CC/MCC", "Charge": "8877.93", "Category": "Standard"}, {"Description": " CARDIAC VALVE & OTH MAJ CARDIOTHORACIC PROC W/O CARD CATH W CC", "Charge": "27783.11", "Category": "Standard"}, {"Description": " CARDIAC VALVE & OTH MAJ CARDIOTHORACIC PROC W/O CARD CATH W/O CC/MCC", "Charge": "20720.0", "Category": "Standard"}, {"Description": " CORONARY BYPASS W CARDIAC CATH W/O MCC", "Charge": "25188.17", "Category": "Standard"}, {"Description": " CORONARY BYPASS W/O CARDIAC CATH W MCC", "Charge": "30096.08", "Category": "Standard"}, {"Description": " CORONARY BYPASS W/O CARDIAC CATH W/O MCC", "Charge": "19754.02", "Category": "Standard"}, {"Description": " AMPUTATION FOR CIRC SYS DISORDERS EXC UPPER LIMB & TOE W MCC", "Charge": "23826.35", "Category": "Standard"}, {"Description": " PERMANENT CARDIAC PACEMAKER IMPLANT W MCC", "Charge": "19996.82", "Category": "Standard"}, {"Description": " CHRONIC OBSTRUCTIVE PULMONARY DISEASE W CC", "Charge": "4660.88", "Category": "Standard"}, {"Description": " PERMANENT CARDIAC PACEMAKER IMPLANT W CC", "Charge": "13987.82", "Category": "Standard"}, {"Description": " CHRONIC OBSTRUCTIVE PULMONARY DISEASE W MCC", "Charge": "5928.84", "Category": "Standard"}, {"Description": " PLEURAL EFFUSION W CC", "Charge": "4799.91", "Category": "Standard"}, {"Description": " OTHER DISORDERS OF NERVOUS SYSTEM W MCC", "Charge": "8365.4", "Category": "Standard"}, {"Description": " OTHER DISORDERS OF NERVOUS SYSTEM W CC", "Charge": "4397.14", "Category": "Standard"}, {"Description": " OTHER DISORDERS OF NERVOUS SYSTEM W/O CC/MCC", "Charge": "3381.23", "Category": "Standard"}, {"Description": " SEIZURES W MCC", "Charge": "9003.33", "Category": "Standard"}, {"Description": " SEIZURES W/O MCC", "Charge": "4010.17", "Category": "Standard"}, {"Description": " HEADACHES W/O MCC", "Charge": "3567.2", "Category": "Standard"}, {"Description": " DYSEQUILIBRIUM", "Charge": "3100.78", "Category": "Standard"}, {"Description": " OTITIS MEDIA & URI W/O MCC", "Charge": "3480.73", "Category": "Standard"}, {"Description": " MAJOR CHEST PROCEDURES W CC", "Charge": "14084.82", "Category": "Standard"}, {"Description": " MAJOR CHEST PROCEDURES W/O CC/MCC", "Charge": "8961.5", "Category": "Standard"}, {"Description": " OTHER RESP SYSTEM O.R. PROCEDURES W MCC", "Charge": "20301.36", "Category": "Standard"}, {"Description": " PULMONARY EMBOLISM W MCC", "Charge": "6243.82", "Category": "Standard"}, {"Description": " PULMONARY EMBOLISM W/O MCC", "Charge": "4500.64", "Category": "Standard"}, {"Description": " RESPIRATORY INFECTIONS & INFLAMMATIONS W MCC", "Charge": "9752.14", "Category": "Standard"}, {"Description": " RESPIRATORY INFECTIONS & INFLAMMATIONS W CC", "Charge": "7424.59", "Category": "Standard"}, {"Description": " RESPIRATORY INFECTIONS & INFLAMMATIONS W/O CC/MCC", "Charge": "4373.64", "Category": "Standard"}, {"Description": " RESPIRATORY NEOPLASMS W MCC", "Charge": "8837.94", "Category": "Standard"}, {"Description": " RESPIRATORY NEOPLASMS W CC", "Charge": "6146.33", "Category": "Standard"}, {"Description": " PLEURAL EFFUSION W MCC", "Charge": "8114.83", "Category": "Standard"}, {"Description": " PULMONARY EDEMA & RESPIRATORY FAILURE", "Charge": "6540.46", "Category": "Standard"}, {"Description": " PERMANENT CARDIAC PACEMAKER IMPLANT W/O CC/MCC", "Charge": "11499.32", "Category": "Standard"}, {"Description": " PERC CARDIOVASC PROC W DRUG", "Charge": "18504.17", "Category": "Standard"}, {"Description": " PERC CARDIOVASC PROC W DRUG", "Charge": "11418.8", "Category": "Standard"}, {"Description": " ATHEROSCLEROSIS W/O MCC", "Charge": "3459.26", "Category": "Standard"}, {"Description": " HYPERTENSION W MCC", "Charge": "5456.32", "Category": "Standard"}, {"Description": " HYPERTENSION W/O MCC", "Charge": "3124.9", "Category": "Standard"}, {"Description": " CARDIAC ARRHYTHMIA & CONDUCTION DISORDERS W MCC", "Charge": "6708.81", "Category": "Standard"}, {"Description": " CARDIAC ARRHYTHMIA & CONDUCTION DISORDERS W CC", "Charge": "4017.08", "Category": "Standard"}, {"Description": " CARDIAC ARRHYTHMIA & CONDUCTION DISORDERS W/O CC/MCC", "Charge": "2552.14", "Category": "Standard"}, {"Description": " SYNCOPE & COLLAPSE", "Charge": "3769.1", "Category": "Standard"}, {"Description": " CHEST PAIN", "Charge": "3337.44", "Category": "Standard"}, {"Description": " OTHER CIRCULATORY SYSTEM DIAGNOSES W MCC", "Charge": "10841.11", "Category": "Standard"}, {"Description": " OTHER CIRCULATORY SYSTEM DIAGNOSES W CC", "Charge": "5143.18", "Category": "Standard"}, {"Description": " OTHER CIRCULATORY SYSTEM DIAGNOSES W/O CC/MCC", "Charge": "3212.33", "Category": "Standard"}, {"Description": " STOMACH, ESOPHAGEAL & DUODENAL PROC W MCC", "Charge": "28563.64", "Category": "Standard"}, {"Description": " STOMACH, ESOPHAGEAL & DUODENAL PROC W/O CC/MCC", "Charge": "7849.71", "Category": "Standard"}, {"Description": " MAJOR SMALL & LARGE BOWEL PROCEDURES W MCC", "Charge": "25261.22", "Category": "Standard"}, {"Description": " MAJOR SMALL & LARGE BOWEL PROCEDURES W CC", "Charge": "13428.57", "Category": "Standard"}, {"Description": " MAJOR SMALL & LARGE BOWEL PROCEDURES W/O CC/MCC", "Charge": "8771.85", "Category": "Standard"}, {"Description": " NON", "Charge": "9172.25", "Category": "Standard"}, {"Description": " EXTENSIVE O.R. PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS W CC", "Charge": "15104.86", "Category": "Standard"}, {"Description": " EXTENSIVE O.R. PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS W MCC", "Charge": "26727.12", "Category": "Standard"}, {"Description": " PERIPHERAL VASCULAR DISORDERS W/O CC/MCC", "Charge": "3697.05", "Category": "Standard"}, {"Description": " PERIPHERAL VASCULAR DISORDERS W CC", "Charge": "5322.74", "Category": "Standard"}, {"Description": " PERIPHERAL VASCULAR DISORDERS W MCC", "Charge": "7425.46", "Category": "Standard"}, {"Description": " HEART FAILURE & SHOCK W/O CC/MCC", "Charge": "3208.79", "Category": "Standard"}, {"Description": " PERC CARDIOVASC PROC W NON", "Charge": "17164.36", "Category": "Standard"}, {"Description": " OTHER VASCULAR PROCEDURES W MCC", "Charge": "18894.63", "Category": "Standard"}, {"Description": " OTHER VASCULAR PROCEDURES W CC", "Charge": "15232.28", "Category": "Standard"}, {"Description": " OTHER VASCULAR PROCEDURES W/O CC/MCC", "Charge": "9210.0", "Category": "Standard"}, {"Description": " OTHER CIRCULATORY SYSTEM O.R. PROCEDURES", "Charge": "15970.64", "Category": "Standard"}, {"Description": " ENDOVASCULAR CARDIAC VALVE REPLACEMENT W MCC", "Charge": "48969.07", "Category": "Standard"}, {"Description": " ENDOVASCULAR CARDIAC VALVE REPLACEMENT W/O MCC", "Charge": "36812.43", "Category": "Standard"}, {"Description": " AORTIC AND HEART ASSIST PROCEDURES EXCEPT PULSATION BALLOON W/O MCC", "Charge": "19736.62", "Category": "Standard"}, {"Description": " OTHER MAJOR CARDIOVASCULAR PROCEDURES W MCC", "Charge": "26166.75", "Category": "Standard"}, {"Description": " TRAUMATIC STUPOR & COMA, COMA <1 HR W/O CC/MCC", "Charge": "3466.79", "Category": "Standard"}, {"Description": " OTHER MAJOR CARDIOVASCULAR PROCEDURES W CC", "Charge": "18000.48", "Category": "Standard"}, {"Description": " PERCUTANEOUS INTRACARDIAC PROCEDURES W/O MCC", "Charge": "14025.68", "Category": "Standard"}, {"Description": " ACUTE MYOCARDIAL INFARCTION, DISCHARGED ALIVE W MCC", "Charge": "9330.18", "Category": "Standard"}, {"Description": " ACUTE MYOCARDIAL INFARCTION, DISCHARGED ALIVE W CC", "Charge": "4983.47", "Category": "Standard"}, {"Description": " ACUTE MYOCARDIAL INFARCTION, DISCHARGED ALIVE W/O CC/MCC", "Charge": "3635.24", "Category": "Standard"}, {"Description": " ACUTE MYOCARDIAL INFARCTION, EXPIRED W MCC", "Charge": "11332.92", "Category": "Standard"}, {"Description": " CIRCULATORY DISORDERS EXCEPT AMI, W CARD CATH W MCC", "Charge": "12055.78", "Category": "Standard"}, {"Description": " CIRCULATORY DISORDERS EXCEPT AMI, W CARD CATH W/O MCC", "Charge": "6068.49", "Category": "Standard"}, {"Description": " HEART FAILURE & SHOCK W MCC", "Charge": "7859.29", "Category": "Standard"}, {"Description": " HEART FAILURE & SHOCK W CC", "Charge": "4937.53", "Category": "Standard"}, {"Description": " OTHER MAJOR CARDIOVASCULAR PROCEDURES W/O CC/MCC", "Charge": "12917.33", "Category": "Standard"}, {"Description": " TRAUMATIC STUPOR & COMA, COMA <1 HR W CC", "Charge": "5742.41", "Category": "Standard"}, {"Description": " TRAUMA TO THE SKIN, SUBCUT TISS & BREAST W/O MCC", "Charge": "4101.12", "Category": "Standard"}, {"Description": " CRANIAL & PERIPHERAL NERVE DISORDERS W/O MCC", "Charge": "4823.05", "Category": "Standard"}, {"Description": " DISORDERS OF PANCREAS EXCEPT MALIGNANCY W MCC", "Charge": "7978.55", "Category": "Standard"}, {"Description": " TRAUMATIC STUPOR & COMA, COMA <1 HR W MCC", "Charge": "10737.18", "Category": "Standard"}, {"Description": " OTHER DIGESTIVE SYSTEM DIAGNOSES W MCC", "Charge": "9513.78", "Category": "Standard"}, {"Description": " ESOPHAGITIS, GASTROENT & MISC DIGEST DISORDERS W/O MCC", "Charge": "3646.28", "Category": "Standard"}, {"Description": " ESOPHAGITIS, GASTROENT & MISC DIGEST DISORDERS W MCC", "Charge": "6483.56", "Category": "Standard"}, {"Description": " G.I. OBSTRUCTION W/O CC/MCC", "Charge": "2653.6", "Category": "Standard"}, {"Description": " DISORDERS OF PANCREAS EXCEPT MALIGNANCY W CC", "Charge": "4670.09", "Category": "Standard"}, {"Description": " G.I. OBSTRUCTION W CC", "Charge": "4403.64", "Category": "Standard"}, {"Description": " UNCOMPLICATED PEPTIC ULCER W/O MCC", "Charge": "4547.8", "Category": "Standard"}, {"Description": " G.I. HEMORRHAGE W/O CC/MCC", "Charge": "3023.14", "Category": "Standard"}, {"Description": " G.I. HEMORRHAGE W CC", "Charge": "5072.3", "Category": "Standard"}, {"Description": " G.I. HEMORRHAGE W MCC", "Charge": "10061.81", "Category": "Standard"}, {"Description": " DIGESTIVE MALIGNANCY W CC", "Charge": "6646.06", "Category": "Standard"}, {"Description": " DIGESTIVE MALIGNANCY W MCC", "Charge": "11176.79", "Category": "Standard"}, {"Description": " G.I. OBSTRUCTION W MCC", "Charge": "7931.33", "Category": "Standard"}, {"Description": " MAJOR GASTROINTESTINAL DISORDERS & PERITONEAL INFECTIONS W/O CC/MCC", "Charge": "3031.43", "Category": "Standard"}, {"Description": " CIRRHOSIS & ALCOHOLIC HEPATITIS W CC", "Charge": "5175.15", "Category": "Standard"}, {"Description": " OTHER DIGESTIVE SYSTEM DIAGNOSES W CC", "Charge": "4853.86", "Category": "Standard"}, {"Description": " DISORDERS OF PANCREAS EXCEPT MALIGNANCY W/O CC/MCC", "Charge": "2991.41", "Category": "Standard"}, {"Description": " DISORDERS OF LIVER EXCEPT MALIG,CIRR,ALC HEPA W MCC", "Charge": "10737.8", "Category": "Standard"}, {"Description": " OTHER DIGESTIVE SYSTEM DIAGNOSES W/O CC/MCC", "Charge": "3188.44", "Category": "Standard"}, {"Description": " DISORDERS OF LIVER EXCEPT MALIG,CIRR,ALC HEPA W CC", "Charge": "4520.75", "Category": "Standard"}, {"Description": " DISORDERS OF THE BILIARY TRACT W MCC", "Charge": "8999.08", "Category": "Standard"}, {"Description": " DISORDERS OF THE BILIARY TRACT W CC", "Charge": "5900.0", "Category": "Standard"}, {"Description": " CIRRHOSIS & ALCOHOLIC HEPATITIS W MCC", "Charge": "9176.33", "Category": "Standard"}, {"Description": " SPINAL FUSION EXCEPT CERVICAL W/O MCC", "Charge": "21360.15", "Category": "Standard"}, {"Description": " LAPAROSCOPIC CHOLECYSTECTOMY W/O C.D.E. W MCC", "Charge": "14169.96", "Category": "Standard"}, {"Description": " LAPAROSCOPIC CHOLECYSTECTOMY W/O C.D.E. W CC", "Charge": "8748.86", "Category": "Standard"}, {"Description": " REVISION OF HIP OR KNEE REPLACEMENT W/O CC/MCC", "Charge": "12978.6", "Category": "Standard"}, {"Description": " MAJOR HIP AND KNEE JOINT REPLACEMENT OR REATTACHMENT OF LOWER EXTREM", "Charge": "15391.72", "Category": "Standard"}, {"Description": " MAJOR JOINT REPLACEMENT OR REATTACHMENT OF LOWER EXTREMITY W/O MCC", "Charge": "10175.01", "Category": "Standard"}, {"Description": " LAPAROSCOPIC CHOLECYSTECTOMY W/O C.D.E. W/O CC/MCC", "Charge": "6770.21", "Category": "Standard"}, {"Description": " REVISION OF HIP OR KNEE REPLACEMENT W CC", "Charge": "18940.59", "Category": "Standard"}, {"Description": " MAJOR GASTROINTESTINAL DISORDERS & PERITONEAL INFECTIONS W CC", "Charge": "5048.96", "Category": "Standard"}, {"Description": " MALIGNANCY OF HEPATOBILIARY SYSTEM OR PANCREAS W CC", "Charge": "6234.18", "Category": "Standard"}, {"Description": " HERNIA PROCEDURES EXCEPT INGUINAL & FEMORAL W/O CC/MCC", "Charge": "6656.11", "Category": "Standard"}, {"Description": " CRANIAL & PERIPHERAL NERVE DISORDERS W MCC", "Charge": "7228.57", "Category": "Standard"}, {"Description": " TRANSIENT ISCHEMIA", "Charge": "3623.21", "Category": "Standard"}, {"Description": " INTRACRANIAL HEMORRHAGE OR CEREBRAL INFARCTION W/O CC/MCC", "Charge": "3285.77", "Category": "Standard"}, {"Description": " INTRACRANIAL HEMORRHAGE OR CEREBRAL INFARCTION W CC OR TPA IN 24 HRS", "Charge": "5198.24", "Category": "Standard"}, {"Description": " INTRACRANIAL HEMORRHAGE OR CEREBRAL INFARCTION W MCC", "Charge": "9331.71", "Category": "Standard"}, {"Description": " ISCHEMIC STROKE, PRECEREBRAL OCCLUSION OR TRANSIENT ISCHEMIA W THROM", "Charge": "9655.59", "Category": "Standard"}, {"Description": " MAJOR GASTROINTESTINAL DISORDERS & PERITONEAL INFECTIONS W MCC", "Charge": "9624.17", "Category": "Standard"}, {"Description": " HIP & FEMUR PROCEDURES EXCEPT MAJOR JOINT W MCC", "Charge": "16524.39", "Category": "Standard"}, {"Description": " CERVICAL SPINAL FUSION W/O CC/MCC", "Charge": "12089.22", "Category": "Standard"}, {"Description": " CERVICAL SPINAL FUSION W CC", "Charge": "16307.81", "Category": "Standard"}, {"Description": " DEGENERATIVE NERVOUS SYSTEM DISORDERS W/O MCC", "Charge": "5653.57", "Category": "Standard"}, {"Description": " ECMO OR TRACH W MV >96 HRS OR PDX EXC FACE, MOUTH & NECK W MAJ O.R.", "Charge": "88611.35", "Category": "Standard"}, {"Description": " CRANIOTOMY W MAJOR DEVICE IMPLANT OR ACUTE CNS PDX W MCC OR CHEMOTHE", "Charge": "32416.27", "Category": "Standard"}, {"Description": " TRACH W MV >96 HRS OR PDX EXC FACE, MOUTH & NECK W/O MAJ O.R.", "Charge": "60808.45", "Category": "Standard"}, {"Description": " CRANIO W MAJOR DEV IMPL/ACUTE COMPLEX CNS PDX W/O MCC", "Charge": "22603.46", "Category": "Standard"}, {"Description": " CRANIOTOMY & ENDOVASCULAR INTRACRANIAL PROCEDURES W MCC", "Charge": "23269.84", "Category": "Standard"}, {"Description": " CRANIOTOMY & ENDOVASCULAR INTRACRANIAL PROCEDURES W CC", "Charge": "16833.09", "Category": "Standard"}, {"Description": " EXTRACRANIAL PROCEDURES W CC", "Charge": "8520.86", "Category": "Standard"}, {"Description": " DEGENERATIVE NERVOUS SYSTEM DISORDERS W MCC", "Charge": "9368.53", "Category": "Standard"}, {"Description": " EXTRACRANIAL PROCEDURES W/O CC/MCC", "Charge": "5590.0", "Category": "Standard"}] |
{"files":{"koukoku-f54e02c61aa7d1f93a8cc9a4d76aff053e02d3ada8f950e718922364d01f6ff6.jpg":{"logical_path":"koukoku.jpg","mtime":"2019-08-19T10:24:00+00:00","size":18111,"digest":"f54e02c61aa7d1f93a8cc9a4d76aff053e02d3ada8f950e718922364d01f6ff6","integrity":"sha256-9U4Cxhqn0fk6jMmk12r/BT4C062o+VDnGJIjZNAfb/Y="},"sunset-4839f53fbb45ec95b74aeebb481e7f1384d40cd45c57813368e68ff33d70375b.jpg":{"logical_path":"sunset.jpg","mtime":"2019-08-19T10:24:00+00:00","size":99585,"digest":"4839f53fbb45ec95b74aeebb481e7f1384d40cd45c57813368e68ff33d70375b","integrity":"sha256-SDn1P7tF7JW3Su67SB5/E4TUDNRcV4EzaOaP8z1wN1s="},"application-a73daf05494b0b6ae84a2ec9abba762c47a3368768129217db710569641ba08c.js":{"logical_path":"application.js","mtime":"2019-09-05T12:43:40+00:00","size":196585,"digest":"a73daf05494b0b6ae84a2ec9abba762c47a3368768129217db710569641ba08c","integrity":"sha256-pz2vBUlLC2roSi7Jq7p2LEejNodoEpIX23EFaWQboIw="},"application-df94e24963bb64faadee127c143bb62b79a328ab856dfd312944d4d07f136d79.css":{"logical_path":"application.css","mtime":"2019-09-05T12:09:15+00:00","size":125823,"digest":"df94e24963bb64faadee127c143bb62b79a328ab856dfd312944d4d07f136d79","integrity":"sha256-35TiSWO7ZPqt7hJ8FDu2K3mjKKuFbf0xKUTU0H8TbXk="},"bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot":{"logical_path":"bootstrap/glyphicons-halflings-regular.eot","mtime":"2019-07-23T12:12:07+00:00","size":20127,"digest":"13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407","integrity":"sha256-E2NNqH2eI/jD7ZEIzhck0YOjmtBy5z4bPYy/ZG0tBAc="},"bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2":{"logical_path":"bootstrap/glyphicons-halflings-regular.woff2","mtime":"2019-07-23T12:12:07+00:00","size":18028,"digest":"fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c","integrity":"sha256-/hhdEaSWdokNR7t4MxKgzaWkTEA5IUCU55V7TAQO8Rw="},"bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff":{"logical_path":"bootstrap/glyphicons-halflings-regular.woff","mtime":"2019-07-23T12:12:07+00:00","size":23424,"digest":"a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742","integrity":"sha256-omOU9+3hAMoRjv8u2ghZYnWpg5uVnCJuFUOVV6WoB0I="},"bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf":{"logical_path":"bootstrap/glyphicons-halflings-regular.ttf","mtime":"2019-07-23T12:12:07+00:00","size":45404,"digest":"e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456","integrity":"sha256-45UEQJN1fYKvyxOJV9BqHqk2G9zwtELQahioBRr1dFY="},"bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg":{"logical_path":"bootstrap/glyphicons-halflings-regular.svg","mtime":"2019-07-23T12:12:07+00:00","size":108738,"digest":"42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5","integrity":"sha256-QvYGWdJlwaPDD5+kKry7Vr1KU69Ng9MW1t16NpA8Q+U="},"application-e4fa29d4f1be9889eede9f4dde45aa304aafc4a87b27e7583fef3b4f44dfa557.js":{"logical_path":"application.js","mtime":"2019-09-18T06:33:33+00:00","size":196609,"digest":"e4fa29d4f1be9889eede9f4dde45aa304aafc4a87b27e7583fef3b4f44dfa557","integrity":"sha256-5Pop1PG+mInu3p9N3kWqMEqvxKh7J+dYP+87T0TfpVc="},"application-27a8840d9303561f62eb68fa8ed39279e9f7bb2ebb1811dc93ad6b89c646902c.css":{"logical_path":"application.css","mtime":"2019-09-18T06:33:33+00:00","size":126004,"digest":"27a8840d9303561f62eb68fa8ed39279e9f7bb2ebb1811dc93ad6b89c646902c","integrity":"sha256-J6iEDZMDVh9i62j6jtOSeen3uy67GBHck61ricZGkCw="}},"assets":{"koukoku.jpg":"koukoku-f54e02c61aa7d1f93a8cc9a4d76aff053e02d3ada8f950e718922364d01f6ff6.jpg","sunset.jpg":"sunset-4839f53fbb45ec95b74aeebb481e7f1384d40cd45c57813368e68ff33d70375b.jpg","application.js":"application-e4fa29d4f1be9889eede9f4dde45aa304aafc4a87b27e7583fef3b4f44dfa557.js","application.css":"application-27a8840d9303561f62eb68fa8ed39279e9f7bb2ebb1811dc93ad6b89c646902c.css","bootstrap/glyphicons-halflings-regular.eot":"bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot","bootstrap/glyphicons-halflings-regular.woff2":"bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2","bootstrap/glyphicons-halflings-regular.woff":"bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff","bootstrap/glyphicons-halflings-regular.ttf":"bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf","bootstrap/glyphicons-halflings-regular.svg":"bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg"}} |
{"author":"jrdoras","questions":[{"type":"quiz","question":"What does the \"S\" stand for in the SMART goal?","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Smile","correct":false},{"answer":"Society","correct":false},{"answer":"Specific","correct":true},{"answer":"Social","correct":false}],"image":"https://media.kahoot.it/11c53783-5f49-4c96-ad4b-bc336e507411","imageMetadata":{"id":"11c53783-5f49-4c96-ad4b-bc336e507411","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"What does the \"M\" stand for in SMART goal?","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Measurable","correct":true},{"answer":"Money","correct":false},{"answer":"Movement","correct":false},{"answer":"More","correct":false}],"image":"https://media.kahoot.it/d69124a8-c380-4177-ac78-5f4ee71c8920","imageMetadata":{"id":"d69124a8-c380-4177-ac78-5f4ee71c8920","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"What does the \"A\" stand for in SMART goal?","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Action","correct":false},{"answer":"Attainable","correct":true},{"answer":"Advantage","correct":false},{"answer":"Argue","correct":false}],"image":"https://media.kahoot.it/a69d0d96-db52-4a65-acd6-b3e5b1f160b2_opt","imageMetadata":{"id":"a69d0d96-db52-4a65-acd6-b3e5b1f160b2","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"What does the \"R\" stand for in SMART goal?","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Realistic","correct":true},{"answer":"Remove","correct":false},{"answer":"Reasoning","correct":false},{"answer":"Rescue","correct":false}],"image":"https://media.kahoot.it/1eff967d-d9f8-497a-a196-d6a4e3651c2d_opt","imageMetadata":{"id":"1eff967d-d9f8-497a-a196-d6a4e3651c2d","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"What does the \"T\" stand for in SMART goal?","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Turn","correct":false},{"answer":"Tomorrow","correct":false},{"answer":"Tuesday","correct":false},{"answer":"Timely","correct":true}],"image":"https://media.kahoot.it/126335fb-5446-4b92-bc2b-c6b576c76e50_opt","imageMetadata":{"id":"126335fb-5446-4b92-bc2b-c6b576c76e50","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"What mistakes can be made when setting goals?","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Not specific","correct":false},{"answer":"Too many goals at once","correct":false},{"answer":"Goal is too big","correct":false},{"answer":"All of the above","correct":true}],"image":"https://media.kahoot.it/1d6d247c-6bc7-4b6d-8eee-d475d5a450b6_opt","imageMetadata":{"id":"1d6d247c-6bc7-4b6d-8eee-d475d5a450b6","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"Setting goals will...","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Make you think outside the box","correct":false},{"answer":"Energize","correct":false},{"answer":"Provide challenge","correct":false},{"answer":"All of the above","correct":true}],"image":"https://media.kahoot.it/77c11bc2-3dc0-4e67-9a3d-be61f9455b3d_opt","imageMetadata":{"id":"77c11bc2-3dc0-4e67-9a3d-be61f9455b3d","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"What are the 6 W's of \"Specific\" goals","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Who, what, where, when, which, why","correct":true},{"answer":"Watermelon, who, what, where, which, why","correct":false},{"answer":"Weather, who, what, which, when, why","correct":false},{"answer":"Whistle, when, who, what, why, which","correct":false}],"image":"https://media.kahoot.it/0efe2dab-2ba0-4049-a150-74d2edf3f029","imageMetadata":{"id":"0efe2dab-2ba0-4049-a150-74d2edf3f029","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"What questions can you ask to see if a goal is measurable?","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"How much?","correct":false},{"answer":"How many?","correct":false},{"answer":"How will I know when it is accomplished?","correct":false},{"answer":"All of the above","correct":true}],"image":"https://media.kahoot.it/0a2c759c-0bcc-4daf-928a-0280861f41c4_opt","imageMetadata":{"id":"0a2c759c-0bcc-4daf-928a-0280861f41c4","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"To be realistic, you must be both _______ and _____ to work","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"angry and lazy","correct":false},{"answer":"smart and successful","correct":false},{"answer":"boring and lazy","correct":false},{"answer":"willing and able","correct":true}],"image":"https://media.kahoot.it/ef5c57fc-527b-4d6b-852a-641fb7d960f9_opt","imageMetadata":{"id":"ef5c57fc-527b-4d6b-852a-641fb7d960f9","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"A goal should be grounded within a ___________","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Measurement","correct":false},{"answer":"Time frame","correct":true},{"answer":"Specific goal","correct":false},{"answer":"Reality","correct":false}],"image":"https://media.kahoot.it/f101f668-174c-46ef-82b0-710ef9cffcef_opt","imageMetadata":{"id":"f101f668-174c-46ef-82b0-710ef9cffcef","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"In order to attain a goal you must...","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"Try your hardest","correct":false},{"answer":"Never give up","correct":false},{"answer":"Grow and expand to match your goal","correct":true},{"answer":"Hope for the best","correct":false}],"image":"https://media.kahoot.it/a38feccd-008d-4897-87c3-fbcf32b27676_opt","imageMetadata":{"id":"a38feccd-008d-4897-87c3-fbcf32b27676","resources":""},"resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"If there is no time frame for your goal, there is no....","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"need to complete your goal","correct":false},{"answer":"sense of urgency","correct":true},{"answer":"consequence","correct":false},{"answer":"none of the above","correct":false}],"image":"https://media.kahoot.it/9e590411-b5fb-417d-8016-8b56912a38b8","imageMetadata":{"id":"9e590411-b5fb-417d-8016-8b56912a38b8","resources":""},"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],"uuid":"34b9bc1b-13c5-46f3-b9f3-84ad3cca9fdf"} |
[
"https://2.bp.blogspot.com/-jX7616r99oE/WwcXpYT8GDI/AAAAAAAG-c8/X2c1IHAbHUsi63dMtQZWYR582jk4scmqwCHMYCw/s0/000.png",
"https://2.bp.blogspot.com/-43TwGyphHPI/WwcXp6J7dNI/AAAAAAAG-dI/zETCWuy52MYv4XnSdzVlXbHhi2CijKyUQCHMYCw/s0/001.png",
"https://2.bp.blogspot.com/-EcpDm_jeyRM/WwcXqydt2EI/AAAAAAAG-dY/Dixb-zIY3GYXSiBqtOBfHllVLQB1DgxQACHMYCw/s0/002.png",
"https://2.bp.blogspot.com/-4UNTvBMykLI/WwcXrbmdXDI/AAAAAAAG-dk/umjkVLM2hMUBbvI53mLbjDIvS_iBADomwCHMYCw/s0/003.png",
"https://2.bp.blogspot.com/--uE_wmV0sOM/WwcXsIu9iZI/AAAAAAAG-ds/7VVwKNXVI1Egj7i230mq5GjXgJHf7VFRQCHMYCw/s0/004.png",
"https://2.bp.blogspot.com/-EZgbTFqURAc/WwcXscX5rVI/AAAAAAAG-dw/HbLsyVyj2GQYX2U1dSGNOlIuqCRE3OhhACHMYCw/s0/005.png",
"https://2.bp.blogspot.com/-DDjEi8AVQdk/WwcXsqkhspI/AAAAAAAG-d0/j2OyFLXnYbUZOuc5kULls8fb-VUbBteZgCHMYCw/s0/006.png",
"https://2.bp.blogspot.com/-5VozoCeXrAU/WwcXs4_jVsI/AAAAAAAG-d4/ZtWonTCTGlsmxMaUR7jNtJRrC8wrq6d6ACHMYCw/s0/007.png",
"https://2.bp.blogspot.com/-_Wm36z_gklA/WwcXtFb_JpI/AAAAAAAG-d8/vlNiGnPSvdAj_K64-lZfIP2xuPTeROt4QCHMYCw/s0/008.png",
"https://2.bp.blogspot.com/-SnUZ2gA082U/WwcXtZEJg8I/AAAAAAAG-eA/ZlGIcaBSGZcqlcBVsMMMHMZmakJlYlnYwCHMYCw/s0/009.png",
"https://2.bp.blogspot.com/-S5phYWnAbeY/WwcXth3R2DI/AAAAAAAG-eE/QF3HRrV5AUkO16_vJC1A5XICr83LoUt1ACHMYCw/s0/010.png",
"https://2.bp.blogspot.com/-sIDXkWuPCo0/WwcXtwrj2II/AAAAAAAG-eI/8ZPmYGAmXDQjbEpNyJlnRgzmREAA60WzACHMYCw/s0/011.png",
"https://2.bp.blogspot.com/-7VUHDfEhtd0/WwcXuFJULFI/AAAAAAAG-eM/lyQ95c4YZ10nZ5NPvals9DrU3WBUfhP4QCHMYCw/s0/012.png",
"https://2.bp.blogspot.com/-_diO0Kfuu7A/WwcXuVIZaAI/AAAAAAAG-eQ/A1UBpnEhuMk-40H8B7UZLMhPzFM4XvTYwCHMYCw/s0/013.png"
] |
{
"first_traded_price": 3.8e3,
"highest_price": 3.8e3,
"isin": "IRO1ASAL0001",
"last_traded_price": 3608.0,
"lowest_price": 3608.0,
"trade_volume": 811472.0,
"unix_time": 1376438400
} |
{
"id": 2393666,
"type": "Feature",
"properties": {
"name":"Dresser",
"placetype":"locality",
"woe:id":2393666,
"woe:name":"Dresser, Wisconsin, United States",
"woe:place_id":"P4rWusebApX2Lg9t",
"woe:placetype":"locality",
"woe:placetype_id":7
},
"bbox": [-92.656288,45.341648,-92.59877,45.364582],
"geometry": {"alpha":0.00015,"bbox":[-92.656288146973,45.341648101807,-92.598770141602,45.364582061768],"coordinates":[[[[-92.637062,45.349068],[-92.656288,45.34177],[-92.642601,45.359051],[-92.638985,45.364582],[-92.630119,45.355808],[-92.620369,45.352116],[-92.616096,45.35215],[-92.605217,45.353142],[-92.59877,45.341648],[-92.617409,45.350609],[-92.618332,45.350555],[-92.624168,45.348888],[-92.637062,45.349068]]]],"created":1292551169,"edges":13,"is_donuthole":0,"link":{"href":"http://farm6.static.flickr.com/5009/shapefiles/2393666_20101217_0c17f2a62d.tar.gz"},"points":23,"type":"MultiPolygon"}
} |
{"@context": "http://schema.org", "@type": "Movie", "url": "/title/tt0452608/", "name": "Death Race", "image": "https://m.media-amazon.com/images/M/MV5BZTA4ODc4YTQtM2YyZS00YTgzLTgyMTAtMTg4Y2Q1YWFmZDYzXkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_.jpg", "genre": ["Action", "Sci-Fi", "Thriller"], "contentRating": "R", "actor": [{"@type": "Person", "url": "/name/nm0005458/", "name": "Jason Statham"}, {"@type": "Person", "url": "/name/nm0000260/", "name": "Joan Allen"}, {"@type": "Person", "url": "/name/nm0879085/", "name": "Tyrese Gibson"}, {"@type": "Person", "url": "/name/nm0574534/", "name": "Ian McShane"}], "director": {"@type": "Person", "url": "/name/nm0027271/", "name": "Paul W.S. Anderson"}, "creator": [{"@type": "Person", "url": "/name/nm0027271/", "name": "Paul W.S. Anderson"}, {"@type": "Person", "url": "/name/nm0027271/", "name": "Paul W.S. Anderson"}, {"@type": "Person", "url": "/name/nm0858379/", "name": "Robert Thom"}, {"@type": "Person", "url": "/name/nm0341458/", "name": "Charles B. Griffith"}, {"@type": "Person", "url": "/name/nm0577477/", "name": "Ib Melchior"}, {"@type": "Organization", "url": "/company/co0005073/"}, {"@type": "Organization", "url": "/company/co0142678/"}, {"@type": "Organization", "url": "/company/co0012382/"}, {"@type": "Organization", "url": "/company/co0240008/"}, {"@type": "Organization", "url": "/company/co0133024/"}, {"@type": "Organization", "url": "/company/co0014411/"}, {"@type": "Organization", "url": "/company/co0140758/"}], "description": "Death Race is a movie starring Jason Statham, Joan Allen, and Tyrese Gibson. Ex-con Jensen Ames is forced by the warden of a notorious prison to compete in our post-industrial world's most popular sport: a car race in which inmates...", "datePublished": "2008-08-21", "keywords": "armoured vehicle,prison,car,prison warden,dystopia", "aggregateRating": {"@type": "AggregateRating", "ratingCount": 198565, "bestRating": "10.0", "worstRating": "1.0", "ratingValue": "6.4"}, "review": {"@type": "Review", "itemReviewed": {"@type": "CreativeWork", "url": "/title/tt0452608/"}, "author": {"@type": "Person", "name": "helmutty"}, "dateCreated": "2008-08-29", "inLanguage": "English", "name": "The death race!", "reviewBody": "As many comic books, games and original movies are being remade, director Paul W.S. Anderson is not new to those remakes. He adapted Resident Evil, Mortal Kombat and AVP. Now he remakes the original movie Death race 2000. Not surprising. While watching this movie, I realised that he still has his habit of making games plots. Death race plot is quite similar to those racing or survival games plot. It reminds me of DOA (Dead Or Alive) which Paul produce. \n\nThe story: Jensen Ames (Jason Statham) is framed for murdering his wife. He is then sent to jail. Hennessey (Joan Allen) picks him to join the brutal surviving game. He has to kill the other inmates who join the game. The prize is to get his freedom. Every inmate will get his own partner. The partners are mostly some hot chicks. From there, exciting vehicles chases scenes and blood ooze out. There isn't much gore but there are blood and language. The plot is so simple but the idea and the chase scenes make my heart pound. It is like watching a survival game unfolding by itself.It just explode the screen and your time and nothing else. And you won't care about the plot, you will just care about the thrilling game. \n\nOverall: Those expecting a move to kill time, this is one. Those who want to watch another \"The Dark Knight\" movie, this is not the movie. It is not bad for mindless action flick.", "reviewRating": {"@type": "Rating", "worstRating": "1", "bestRating": "10", "ratingValue": "6"}}, "duration": "PT1H45M", "cast_and_character": [{"actor": {"@type": "Person", "url": "/name/nm0005458/?ref_=tt_cl_t1", "name": "Jason Statham"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0005458?ref_=tt_cl_t1", "name": "Jensen Ames"}]}, {"actor": {"@type": "Person", "url": "/name/nm0574534/?ref_=tt_cl_t3", "name": "Ian McShane"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0574534?ref_=tt_cl_t3", "name": "Coach"}]}, {"actor": {"@type": "Person", "url": "/name/nm2358540/?ref_=tt_cl_t5", "name": "Natalie Martinez"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm2358540?ref_=tt_cl_t5", "name": "Case"}]}, {"actor": {"@type": "Person", "url": "/name/nm0164809/?ref_=tt_cl_t7", "name": "Jason Clarke"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0164809?ref_=tt_cl_t7", "name": "Ulrich"}]}, {"actor": {"@type": "Person", "url": "/name/nm0889846/?ref_=tt_cl_t9", "name": "Jacob Vargas"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0889846?ref_=tt_cl_t9", "name": "Gunner"}]}, {"actor": {"@type": "Person", "url": "/name/nm0489436/?ref_=tt_cl_t11", "name": "Robert LaSardo"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0489436?ref_=tt_cl_t11", "name": "Grimm"}]}, {"actor": {"@type": "Person", "url": "/name/nm0031162/?ref_=tt_cl_t13", "name": "Benz Antoine"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0031162?ref_=tt_cl_t13", "name": "Joe's Navigator"}]}, {"actor": {"@type": "Person", "url": "/name/nm0666787/?ref_=tt_cl_t15", "name": "Christian Paul"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0666787?ref_=tt_cl_t15", "name": "Joe's Navigator"}]}, {"actor": {"@type": "Person", "url": "/name/nm0000260/?ref_=tt_cl_t2", "name": "Joan Allen"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0000260?ref_=tt_cl_t2", "name": "Hennessey"}]}, {"actor": {"@type": "Person", "url": "/name/nm0879085/?ref_=tt_cl_t4", "name": "Tyrese Gibson"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0879085?ref_=tt_cl_t4", "name": "Machine Gun Joe"}]}, {"actor": {"@type": "Person", "url": "/name/nm1043075/?ref_=tt_cl_t6", "name": "Max Ryan"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm1043075?ref_=tt_cl_t6", "name": "Pachenko"}]}, {"actor": {"@type": "Person", "url": "/name/nm0462735/?ref_=tt_cl_t8", "name": "Frederick Koehler"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0462735?ref_=tt_cl_t8", "name": "Lists"}]}, {"actor": {"@type": "Person", "url": "/name/nm1328749/?ref_=tt_cl_t10", "name": "Justin Mader"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm1328749?ref_=tt_cl_t10", "name": "Travis Colt"}]}, {"actor": {"@type": "Person", "url": "/name/nm0795225/?ref_=tt_cl_t12", "name": "Robin Shou"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0795225?ref_=tt_cl_t12", "name": "14K"}]}, {"actor": {"@type": "Person", "url": "/name/nm0087245/?ref_=tt_cl_t14", "name": "Danny Blanco Hall"}, "character_and_episodes": [{"url": "/title/tt0452608/characters/nm0087245?ref_=tt_cl_t14", "name": "Joe's Navigator"}]}]} |
[{"created_at":"2014-11-06 20:30:46","original_pic":null,"profile_image_url":"http:\/\/tp3.sinaimg.cn\/1412078002\/50\/5705887820\/1","status_id":"3774007826214923","text":"\u56de\u590d@\u7f51\u7edc\u5927\u5a01:\u5565\u4e5f\u522b\u8bf4\u4e86\u5144\u5f1f\uff0c\u5165\u515a\u5427\u3002 \/\/@\u7f51\u7edc\u5927\u5a01 :\u4e70\u54ea\u4e2a\u80a1\u7968\u597d\uff1f","thumbnail_pic":null,"user_id":"1412078002","user_name":"\u9a6c\u4e01\u8def\u5fb7\u7eb2","reposts_cache_count":"0","rt_created_at":"2014-11-06 20:26:01","rt_original_pic":null,"rt_profile_image_url":"http:\/\/tp3.sinaimg.cn\/1412078002\/50\/5705887820\/1","retweeted_status":"3774006630970851","rt_text":"\u4e0b\u5468\u4e09\u89c1\u4e60\uff0c\u6c5f\uff0c\u5965\uff0c\u5927\u5bb6\u6709\u4ec0\u4e48\u60f3\u95ee\u7684\uff1f[\u998b\u5634]","rt_thumbnail_pic":null,"rt_user_id":"1412078002","rt_user_name":"\u9a6c\u4e01\u8def\u5fb7\u7eb2","rt_reposts_cache_count":"1","sent":"2014-11-06 20:30:46"}] |
[{"id":1,"name":"Gold Elephant","info":"info","visited":0},{"id":2,"name":"Blue Elephant","info":"info","visited":3},{"id":3,"name":"Green Elephant","info":"info","visited":0}] |
[{"verbe": "resiffler", "A": "indicatif", "B": "futur simple", "i": 2, "conj": "resifflerai", "grp": 1, "var": [9, 8617, 1, 0, 2, 1]}, {"verbe": "d\u00e9sinfecter", "A": "indicatif", "B": "plus-que-parfait", "i": 5, "conj": "d\u00e9sinfect\u00e9", "grp": 1, "var": [11, 2933, 1, 0, 5, 1]}, {"verbe": "accoter", "A": "conditionnel", "B": "pr\u00e9sent", "i": 2, "conj": "accoterais", "grp": 1, "var": [7, 336, 3, 0, 2, 1]}, {"verbe": "daguer", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "dagu\u00e9", "grp": 1, "var": [6, 2565, 2, 0, 0, 1]}, {"verbe": "toiturer", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 5, "conj": "toitur\u00e9", "grp": 1, "var": [8, 10369, 1, 0, 5, 1]}, {"verbe": "lister", "A": "indicatif", "B": "pr\u00e9sent", "i": 2, "conj": "liste", "grp": 1, "var": [6, 6531, 1, 0, 2, 1]}, {"verbe": "d\u00e9nuer", "A": "subjonctif", "B": "pr\u00e9sent", "i": 0, "conj": "d\u00e9nue", "grp": 1, "var": [6, 3213, 2, 0, 0, 1]}, {"verbe": "r\u00e9er", "A": "subjonctif", "B": "imparfait", "i": 0, "conj": "r\u00e9asse", "grp": 1, "var": [4, 8521, 2, 0, 0, 1]}, {"verbe": "embesogner", "A": "subjonctif", "B": "imparfait", "i": 5, "conj": "embesognasse", "grp": 1, "var": [10, 4918, 2, 0, 5, 1]}, {"verbe": "crawler", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 5, "conj": "crawl\u00e9", "grp": 1, "var": [7, 2277, 3, 0, 5, 1]}, {"verbe": "empapahouter", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 4, "conj": "empapahout\u00e9", "grp": 1, "var": [12, 5277, 1, 0, 4, 1]}, {"verbe": "travailloter", "A": "subjonctif", "B": "plus-que-parfait", "i": 5, "conj": "travaillot\u00e9", "grp": 1, "var": [12, 10293, 2, 0, 5, 1]}, {"verbe": "pass\u00e9ifier", "A": "indicatif", "B": "pr\u00e9sent", "i": 1, "conj": "pass\u00e9ifie", "grp": 1, "var": [10, 7804, 1, 0, 1, 1]}, {"verbe": "racrapoter", "A": "subjonctif", "B": "pr\u00e9sent", "i": 4, "conj": "racrapote", "grp": 1, "var": [10, 8331, 2, 0, 4, 1]}, {"verbe": "mythologiser", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "mythologisasse", "grp": 1, "var": [12, 7157, 2, 0, 1, 1]}, {"verbe": "tackler", "A": "subjonctif", "B": "plus-que-parfait", "i": 5, "conj": "tackl\u00e9", "grp": 1, "var": [7, 10231, 2, 0, 5, 1]}, {"verbe": "suturer", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 0, "conj": "sutur\u00e9", "grp": 1, "var": [7, 10131, 1, 0, 0, 1]}, {"verbe": "terrer", "A": "indicatif", "B": "plus-que-parfait", "i": 0, "conj": "terr\u00e9", "grp": 1, "var": [6, 10614, 1, 0, 0, 1]}, {"verbe": "sous-exposer", "A": "subjonctif", "B": "pr\u00e9sent", "i": 4, "conj": "sous-expose", "grp": 1, "var": [12, 9910, 2, 0, 4, 1]}, {"verbe": "vaseliner", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 0, "conj": "vaselin\u00e9", "grp": 1, "var": [9, 10791, 3, 0, 0, 1]}, {"verbe": "jamber", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 0, "conj": "jamb\u00e9", "grp": 1, "var": [6, 6469, 3, 0, 0, 1]}, {"verbe": "inverser", "A": "indicatif", "B": "imparfait", "i": 4, "conj": "inversais", "grp": 1, "var": [8, 6349, 1, 0, 4, 1]}, {"verbe": "anguler", "A": "subjonctif", "B": "imparfait", "i": 3, "conj": "angulasse", "grp": 1, "var": [7, 640, 2, 0, 3, 1]}, {"verbe": "d\u00e9barrer", "A": "indicatif", "B": "imparfait", "i": 1, "conj": "d\u00e9barrais", "grp": 1, "var": [8, 2703, 1, 0, 1, 1]}, {"verbe": "foutre", "A": "subjonctif", "B": "pr\u00e9sent", "i": 3, "conj": "foute", "grp": 3, "var": [6, 5393, 2, 0, 3, 3]}, {"verbe": "cr\u00e9ner", "A": "indicatif", "B": "imparfait", "i": 1, "conj": "cr\u00e9nais", "grp": 1, "var": [6, 2304, 1, 0, 1, 1]}, {"verbe": "emmailler", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 4, "conj": "emmaill\u00e9", "grp": 1, "var": [9, 5139, 1, 0, 4, 1]}, {"verbe": "styliser", "A": "subjonctif", "B": "plus-que-parfait", "i": 4, "conj": "stylis\u00e9", "grp": 1, "var": [8, 9552, 2, 0, 4, 1]}, {"verbe": "pitaucher", "A": "subjonctif", "B": "pass\u00e9", "i": 2, "conj": "pitauch\u00e9", "grp": 1, "var": [9, 7805, 2, 0, 2, 1]}, {"verbe": "r\u00e9prouver", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 3, "conj": "r\u00e9prouv\u00e9", "grp": 1, "var": [9, 8522, 3, 0, 3, 1]}, {"verbe": "entraccuser", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 3, "conj": "entraccus\u00e9", "grp": 1, "var": [11, 5167, 3, 0, 3, 1]}, {"verbe": "souligner", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 0, "conj": "soulign\u00e9", "grp": 1, "var": [9, 9816, 3, 0, 0, 1]}, {"verbe": "tapager", "A": "indicatif", "B": "plus-que-parfait", "i": 2, "conj": "tapag\u00e9", "grp": 1, "var": [7, 10327, 1, 0, 2, 1]}, {"verbe": "caguer", "A": "conditionnel", "B": "pr\u00e9sent", "i": 1, "conj": "caguerais", "grp": 1, "var": [6, 1576, 3, 0, 1, 1]}, {"verbe": "agr\u00e9anter", "A": "subjonctif", "B": "plus-que-parfait", "i": 5, "conj": "agr\u00e9ant\u00e9", "grp": 1, "var": [9, 41, 2, 0, 5, 1]}, {"verbe": "quotter", "A": "subjonctif", "B": "plus-que-parfait", "i": 2, "conj": "quott\u00e9", "grp": 1, "var": [7, 8210, 2, 0, 2, 1]}, {"verbe": "tressaillir", "A": "indicatif", "B": "plus-que-parfait", "i": 0, "conj": "tressailli", "grp": 2, "var": [11, 10352, 1, 0, 0, 2]}, {"verbe": "fenestrer", "A": "indicatif", "B": "pass\u00e9 simple", "i": 5, "conj": "fenestrai", "grp": 1, "var": [9, 5547, 1, 0, 5, 1]}, {"verbe": "d\u00e9clocher", "A": "conditionnel", "B": "pr\u00e9sent", "i": 5, "conj": "d\u00e9clocherais", "grp": 1, "var": [9, 3290, 3, 0, 5, 1]}, {"verbe": "admonester", "A": "subjonctif", "B": "plus-que-parfait", "i": 0, "conj": "admonest\u00e9", "grp": 1, "var": [10, 618, 2, 0, 0, 1]}, {"verbe": "r\u00e9fectionner", "A": "subjonctif", "B": "pass\u00e9", "i": 3, "conj": "r\u00e9fectionn\u00e9", "grp": 1, "var": [12, 8592, 2, 0, 3, 1]}, {"verbe": "lober", "A": "indicatif", "B": "plus-que-parfait", "i": 5, "conj": "lob\u00e9", "grp": 1, "var": [5, 6564, 1, 0, 5, 1]}, {"verbe": "dessiner", "A": "subjonctif", "B": "pass\u00e9", "i": 2, "conj": "dessin\u00e9", "grp": 1, "var": [8, 3110, 2, 0, 2, 1]}, {"verbe": "d\u00e9jecter", "A": "indicatif", "B": "futur simple", "i": 2, "conj": "d\u00e9jecterai", "grp": 1, "var": [8, 2686, 1, 0, 2, 1]}, {"verbe": "r\u00e9ticuler", "A": "indicatif", "B": "futur simple", "i": 1, "conj": "r\u00e9ticulerai", "grp": 1, "var": [9, 8840, 1, 0, 1, 1]}, {"verbe": "authentiquer", "A": "indicatif", "B": "imparfait", "i": 0, "conj": "authentiquais", "grp": 1, "var": [12, 635, 1, 0, 0, 1]}, {"verbe": "calter", "A": "subjonctif", "B": "pr\u00e9sent", "i": 4, "conj": "calte", "grp": 1, "var": [6, 1684, 2, 0, 4, 1]}, {"verbe": "enfreindre", "A": "conditionnel", "B": "pr\u00e9sent", "i": 0, "conj": "enfreindrais", "grp": 3, "var": [10, 4674, 3, 0, 0, 3]}, {"verbe": "d\u00e9penser", "A": "indicatif", "B": "futur simple", "i": 1, "conj": "d\u00e9penserai", "grp": 1, "var": [8, 3338, 1, 0, 1, 1]}, {"verbe": "d\u00e9poteyer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 0, "conj": "d\u00e9potey\u00e9", "grp": 1, "var": [9, 3524, 3, 0, 0, 1]}, {"verbe": "blacklister", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 2, "conj": "blacklist\u00e9", "grp": 1, "var": [11, 1115, 3, 0, 2, 1]}, {"verbe": "vitrer", "A": "indicatif", "B": "imparfait", "i": 3, "conj": "vitrais", "grp": 1, "var": [6, 10730, 1, 0, 3, 1]}, {"verbe": "rallumer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 4, "conj": "rallum\u00e9", "grp": 1, "var": [8, 8496, 3, 0, 4, 1]}, {"verbe": "timbrer", "A": "indicatif", "B": "futur simple", "i": 5, "conj": "timbrerai", "grp": 1, "var": [7, 10268, 1, 0, 5, 1]}, {"verbe": "tacataquer", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 1, "conj": "tacataqu\u00e9", "grp": 1, "var": [10, 10216, 1, 0, 1, 1]}, {"verbe": "aquaplaner", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 4, "conj": "aquaplan\u00e9", "grp": 1, "var": [10, 78, 1, 0, 4, 1]}, {"verbe": "pr\u00e9enregistrer", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 0, "conj": "pr\u00e9enregistr\u00e9", "grp": 1, "var": [14, 7641, 1, 0, 0, 1]}, {"verbe": "fr\u00e9gater", "A": "indicatif", "B": "futur simple", "i": 5, "conj": "fr\u00e9gaterai", "grp": 1, "var": [8, 5459, 1, 0, 5, 1]}, {"verbe": "embouler", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 1, "conj": "emboul\u00e9", "grp": 1, "var": [8, 4986, 3, 0, 1, 1]}, {"verbe": "aquatir", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "aquatisse", "grp": 2, "var": [7, 84, 2, 0, 1, 2]}, {"verbe": "m\u00e2chonner", "A": "subjonctif", "B": "plus-que-parfait", "i": 0, "conj": "m\u00e2chonn\u00e9", "grp": 1, "var": [9, 6725, 2, 0, 0, 1]}, {"verbe": "tapiner", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 0, "conj": "tapin\u00e9", "grp": 1, "var": [7, 10332, 1, 0, 0, 1]}, {"verbe": "s\u00e9rialiser", "A": "indicatif", "B": "imparfait", "i": 5, "conj": "s\u00e9rialisais", "grp": 1, "var": [10, 10072, 1, 0, 5, 1]}, {"verbe": "lubrifier", "A": "indicatif", "B": "plus-que-parfait", "i": 5, "conj": "lubrifi\u00e9", "grp": 1, "var": [9, 6654, 1, 0, 5, 1]}, {"verbe": "chlinguer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 5, "conj": "chlingu\u00e9", "grp": 1, "var": [9, 1503, 1, 0, 5, 1]}, {"verbe": "vantiller", "A": "indicatif", "B": "imparfait", "i": 0, "conj": "vantillais", "grp": 1, "var": [9, 10761, 1, 0, 0, 1]}, {"verbe": "outrecuider", "A": "subjonctif", "B": "pass\u00e9", "i": 4, "conj": "outrecuid\u00e9", "grp": 1, "var": [11, 7347, 2, 0, 4, 1]}, {"verbe": "fructifier", "A": "indicatif", "B": "pass\u00e9 simple", "i": 2, "conj": "fructifiai", "grp": 1, "var": [10, 5599, 1, 0, 2, 1]}, {"verbe": "tigrer", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 5, "conj": "tigr\u00e9", "grp": 1, "var": [6, 10256, 1, 0, 5, 1]}, {"verbe": "germiner", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 1, "conj": "germin\u00e9", "grp": 1, "var": [8, 5982, 3, 0, 1, 1]}, {"verbe": "d\u00e9chiqueter", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 2, "conj": "d\u00e9chiquet\u00e9", "grp": 1, "var": [11, 3201, 3, 0, 2, 1]}, {"verbe": "bugner", "A": "subjonctif", "B": "pr\u00e9sent", "i": 4, "conj": "bugne", "grp": 1, "var": [6, 1418, 2, 0, 4, 1]}, {"verbe": "lac\u00e9rer", "A": "indicatif", "B": "imparfait", "i": 3, "conj": "lac\u00e9rais", "grp": 1, "var": [7, 6538, 1, 0, 3, 1]}, {"verbe": "d\u00e9haler", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 4, "conj": "d\u00e9hal\u00e9", "grp": 1, "var": [7, 2644, 1, 0, 4, 1]}, {"verbe": "photocomposer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 3, "conj": "photocompos\u00e9", "grp": 1, "var": [13, 7535, 3, 0, 3, 1]}, {"verbe": "ronger", "A": "subjonctif", "B": "pr\u00e9sent", "i": 2, "conj": "ronge", "grp": 1, "var": [6, 9347, 2, 0, 2, 1]}, {"verbe": "conf\u00e9d\u00e9rer", "A": "indicatif", "B": "imparfait", "i": 1, "conj": "conf\u00e9d\u00e9rais", "grp": 1, "var": [10, 2431, 1, 0, 1, 1]}, {"verbe": "convulsionner", "A": "subjonctif", "B": "pass\u00e9", "i": 2, "conj": "convulsionn\u00e9", "grp": 1, "var": [13, 1857, 2, 0, 2, 1]}, {"verbe": "bouveter", "A": "indicatif", "B": "imparfait", "i": 5, "conj": "bouvetais", "grp": 1, "var": [8, 1020, 1, 0, 5, 1]}, {"verbe": "ordonner", "A": "indicatif", "B": "futur simple", "i": 0, "conj": "ordonnerai", "grp": 1, "var": [8, 7376, 1, 0, 0, 1]}, {"verbe": "barbifier", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 1, "conj": "barbifi\u00e9", "grp": 1, "var": [9, 1156, 1, 0, 1, 1]}, {"verbe": "choser", "A": "indicatif", "B": "imparfait", "i": 1, "conj": "chosais", "grp": 1, "var": [6, 1553, 1, 0, 1, 1]}, {"verbe": "codiriger", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 2, "conj": "codirig\u00e9", "grp": 1, "var": [9, 1988, 1, 0, 2, 1]}, {"verbe": "renverser", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "renversasse", "grp": 1, "var": [9, 8246, 2, 0, 1, 1]}, {"verbe": "d\u00e9barder", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 2, "conj": "d\u00e9bard\u00e9", "grp": 1, "var": [8, 2691, 3, 0, 2, 1]}, {"verbe": "duiter", "A": "indicatif", "B": "imparfait", "i": 2, "conj": "duitais", "grp": 1, "var": [6, 4034, 1, 0, 2, 1]}, {"verbe": "crampser", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 2, "conj": "cramps\u00e9", "grp": 1, "var": [8, 2218, 1, 0, 2, 1]}, {"verbe": "d\u00e9cocher", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 5, "conj": "d\u00e9coch\u00e9", "grp": 1, "var": [8, 3308, 3, 0, 5, 1]}, {"verbe": "\u00e9gayer", "A": "subjonctif", "B": "plus-que-parfait", "i": 0, "conj": "\u00e9gay\u00e9", "grp": 1, "var": [6, 4646, 2, 0, 0, 1]}, {"verbe": "taquiner", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 5, "conj": "taquin\u00e9", "grp": 1, "var": [8, 10356, 3, 0, 5, 1]}, {"verbe": "enclo\u00eetrer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 0, "conj": "enclo\u00eetr\u00e9", "grp": 1, "var": [10, 4425, 1, 0, 0, 1]}, {"verbe": "percoler", "A": "indicatif", "B": "plus-que-parfait", "i": 2, "conj": "percol\u00e9", "grp": 1, "var": [8, 8089, 1, 0, 2, 1]}, {"verbe": "restituer", "A": "subjonctif", "B": "plus-que-parfait", "i": 0, "conj": "restitu\u00e9", "grp": 1, "var": [9, 8754, 2, 0, 0, 1]}, {"verbe": "d\u00e9fleurer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 4, "conj": "d\u00e9fleur\u00e9", "grp": 1, "var": [9, 3817, 3, 0, 4, 1]}, {"verbe": "liposucer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 5, "conj": "liposuc\u00e9", "grp": 1, "var": [9, 6683, 1, 0, 5, 1]}, {"verbe": "entre-d\u00e9truire", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 0, "conj": "entre-d\u00e9truit", "grp": 3, "var": [14, 5227, 1, 0, 0, 3]}, {"verbe": "contagionner", "A": "indicatif", "B": "imparfait", "i": 5, "conj": "contagionnais", "grp": 1, "var": [12, 1560, 1, 0, 5, 1]}, {"verbe": "abecquer", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 3, "conj": "abecqu\u00e9", "grp": 1, "var": [8, 40, 1, 0, 3, 1]}, {"verbe": "s\u00e9questrer", "A": "indicatif", "B": "pass\u00e9 simple", "i": 0, "conj": "s\u00e9questrai", "grp": 1, "var": [10, 10063, 1, 0, 0, 1]}, {"verbe": "rassortir", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 1, "conj": "rassorti", "grp": 2, "var": [9, 8716, 1, 0, 1, 2]}, {"verbe": "roublarder", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 0, "conj": "roublard\u00e9", "grp": 1, "var": [10, 9383, 3, 0, 0, 1]}, {"verbe": "tarabiscoter", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 2, "conj": "tarabiscot\u00e9", "grp": 1, "var": [12, 10362, 3, 0, 2, 1]}, {"verbe": "ent\u00f4ler", "A": "subjonctif", "B": "pr\u00e9sent", "i": 4, "conj": "ent\u00f4le", "grp": 1, "var": [7, 5146, 2, 0, 4, 1]}, {"verbe": "rentoiler", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 0, "conj": "rentoil\u00e9", "grp": 1, "var": [9, 9532, 1, 0, 0, 1]}, {"verbe": "pleuviner", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 2, "conj": "pleuvin\u00e9", "grp": 1, "var": [9, 7934, 3, 0, 2, 1]}, {"verbe": "souligner", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 3, "conj": "soulign\u00e9", "grp": 1, "var": [9, 9816, 3, 0, 3, 1]}, {"verbe": "ch\u00e2trer", "A": "indicatif", "B": "plus-que-parfait", "i": 3, "conj": "ch\u00e2tr\u00e9", "grp": 1, "var": [7, 2404, 1, 0, 3, 1]}, {"verbe": "resavoir", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "resavoi", "grp": 2, "var": [8, 8590, 2, 0, 0, 2]}, {"verbe": "buiser", "A": "indicatif", "B": "pr\u00e9sent", "i": 3, "conj": "buise", "grp": 1, "var": [6, 1421, 1, 0, 3, 1]}, {"verbe": "avouer", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 5, "conj": "avou\u00e9", "grp": 1, "var": [6, 869, 3, 0, 5, 1]}, {"verbe": "harper", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 2, "conj": "harp\u00e9", "grp": 1, "var": [6, 6096, 3, 0, 2, 1]}, {"verbe": "susseyer", "A": "indicatif", "B": "imparfait", "i": 2, "conj": "susseyais", "grp": 1, "var": [8, 10122, 1, 0, 2, 1]}, {"verbe": "audiencer", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 2, "conj": "audienc\u00e9", "grp": 1, "var": [9, 596, 1, 0, 2, 1]}, {"verbe": "diapasonner", "A": "conditionnel", "B": "pr\u00e9sent", "i": 5, "conj": "diapasonnerais", "grp": 1, "var": [11, 3525, 3, 0, 5, 1]}, {"verbe": "mazurker", "A": "indicatif", "B": "pass\u00e9 simple", "i": 3, "conj": "mazurkai", "grp": 1, "var": [8, 6726, 1, 0, 3, 1]}, {"verbe": "tyranniser", "A": "subjonctif", "B": "pass\u00e9", "i": 4, "conj": "tyrannis\u00e9", "grp": 1, "var": [10, 10652, 2, 0, 4, 1]}, {"verbe": "exposer", "A": "subjonctif", "B": "plus-que-parfait", "i": 2, "conj": "expos\u00e9", "grp": 1, "var": [7, 5213, 2, 0, 2, 1]}, {"verbe": "r\u00e9imbiber", "A": "indicatif", "B": "pr\u00e9sent", "i": 1, "conj": "r\u00e9imbibe", "grp": 1, "var": [9, 8884, 1, 0, 1, 1]}, {"verbe": "lambrisser", "A": "subjonctif", "B": "pr\u00e9sent", "i": 2, "conj": "lambrisse", "grp": 1, "var": [10, 6562, 2, 0, 2, 1]}, {"verbe": "friller", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 4, "conj": "frill\u00e9", "grp": 1, "var": [7, 5501, 3, 0, 4, 1]}, {"verbe": "graveler", "A": "indicatif", "B": "pass\u00e9 simple", "i": 4, "conj": "gravelai", "grp": 1, "var": [8, 5705, 1, 0, 4, 1]}, {"verbe": "d\u00e9sarchiver", "A": "indicatif", "B": "pr\u00e9sent", "i": 4, "conj": "d\u00e9sarchive", "grp": 1, "var": [11, 3923, 1, 0, 4, 1]}, {"verbe": "jerker", "A": "subjonctif", "B": "imparfait", "i": 2, "conj": "jerkasse", "grp": 1, "var": [6, 6470, 2, 0, 2, 1]}, {"verbe": "v\u00e9locer", "A": "indicatif", "B": "imparfait", "i": 3, "conj": "v\u00e9lo\u00e7ais", "grp": 1, "var": [7, 10841, 1, 0, 3, 1]}, {"verbe": "cog\u00e9rer", "A": "indicatif", "B": "futur simple", "i": 0, "conj": "cog\u00e9rerai", "grp": 1, "var": [7, 2015, 1, 0, 0, 1]}, {"verbe": "perreyer", "A": "conditionnel", "B": "pr\u00e9sent", "i": 3, "conj": "perreyerais", "grp": 1, "var": [8, 8181, 3, 0, 3, 1]}, {"verbe": "bedonner", "A": "indicatif", "B": "plus-que-parfait", "i": 2, "conj": "bedonn\u00e9", "grp": 1, "var": [8, 1368, 1, 0, 2, 1]}, {"verbe": "tromper", "A": "subjonctif", "B": "pr\u00e9sent", "i": 2, "conj": "trompe", "grp": 1, "var": [7, 10487, 2, 0, 2, 1]}, {"verbe": "philosopher", "A": "conditionnel", "B": "pr\u00e9sent", "i": 4, "conj": "philosopherais", "grp": 1, "var": [11, 7508, 3, 0, 4, 1]}, {"verbe": "fretter", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 5, "conj": "frett\u00e9", "grp": 1, "var": [7, 5483, 3, 0, 5, 1]}, {"verbe": "limoger", "A": "subjonctif", "B": "pass\u00e9", "i": 1, "conj": "limog\u00e9", "grp": 1, "var": [7, 6656, 2, 0, 1, 1]}, {"verbe": "rassasier", "A": "conditionnel", "B": "pr\u00e9sent", "i": 2, "conj": "rassasierais", "grp": 1, "var": [9, 8702, 3, 0, 2, 1]}, {"verbe": "prostituer", "A": "indicatif", "B": "imparfait", "i": 5, "conj": "prostituais", "grp": 1, "var": [10, 8019, 1, 0, 5, 1]}, {"verbe": "auberger", "A": "indicatif", "B": "imparfait", "i": 3, "conj": "aubergeais", "grp": 1, "var": [8, 590, 1, 0, 3, 1]}, {"verbe": "marauder", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 4, "conj": "maraud\u00e9", "grp": 1, "var": [8, 6960, 1, 0, 4, 1]}, {"verbe": "lapiner", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 3, "conj": "lapin\u00e9", "grp": 1, "var": [7, 6616, 1, 0, 3, 1]}, {"verbe": "guirlander", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 2, "conj": "guirland\u00e9", "grp": 1, "var": [10, 5981, 1, 0, 2, 1]}, {"verbe": "amunitionner", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 2, "conj": "amunitionn\u00e9", "grp": 1, "var": [12, 544, 3, 0, 2, 1]}, {"verbe": "bak\u00e9liser", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 5, "conj": "bak\u00e9lis\u00e9", "grp": 1, "var": [9, 1009, 1, 0, 5, 1]}, {"verbe": "remilitariser", "A": "indicatif", "B": "futur simple", "i": 2, "conj": "remilitariserai", "grp": 1, "var": [13, 9217, 1, 0, 2, 1]}, {"verbe": "d\u00e9marier", "A": "indicatif", "B": "pr\u00e9sent", "i": 2, "conj": "d\u00e9marie", "grp": 1, "var": [8, 2908, 1, 0, 2, 1]}, {"verbe": "yasser", "A": "subjonctif", "B": "imparfait", "i": 3, "conj": "yassasse", "grp": 1, "var": [6, 10873, 2, 0, 3, 1]}, {"verbe": "d\u00e9hi\u00e9rarchiser", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 3, "conj": "d\u00e9hi\u00e9rarchis\u00e9", "grp": 1, "var": [14, 2659, 1, 0, 3, 1]}, {"verbe": "tarifer", "A": "subjonctif", "B": "plus-que-parfait", "i": 0, "conj": "tarif\u00e9", "grp": 1, "var": [7, 10386, 2, 0, 0, 1]}, {"verbe": "m\u00e9compter", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 3, "conj": "m\u00e9compt\u00e9", "grp": 1, "var": [9, 6741, 3, 0, 3, 1]}, {"verbe": "cartoucher", "A": "indicatif", "B": "pass\u00e9 simple", "i": 4, "conj": "cartouchai", "grp": 1, "var": [10, 2011, 1, 0, 4, 1]}, {"verbe": "accourcir", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "accourcisse", "grp": 2, "var": [9, 359, 2, 0, 1, 2]}, {"verbe": "subordonner", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 0, "conj": "subordonn\u00e9", "grp": 1, "var": [11, 9588, 1, 0, 0, 1]}, {"verbe": "terrasser", "A": "indicatif", "B": "futur simple", "i": 3, "conj": "terrasserai", "grp": 1, "var": [9, 10608, 1, 0, 3, 1]}, {"verbe": "solliciter", "A": "indicatif", "B": "futur simple", "i": 2, "conj": "solliciterai", "grp": 1, "var": [10, 9692, 1, 0, 2, 1]}, {"verbe": "asticoter", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 1, "conj": "asticot\u00e9", "grp": 1, "var": [9, 450, 1, 0, 1, 1]}, {"verbe": "\u00e9pater", "A": "subjonctif", "B": "pr\u00e9sent", "i": 4, "conj": "\u00e9pate", "grp": 1, "var": [6, 4298, 2, 0, 4, 1]}, {"verbe": "coupleter", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 1, "conj": "couplet\u00e9", "grp": 1, "var": [9, 2103, 3, 0, 1, 1]}, {"verbe": "r\u00e9emballer", "A": "subjonctif", "B": "imparfait", "i": 5, "conj": "r\u00e9emballasse", "grp": 1, "var": [10, 8428, 2, 0, 5, 1]}, {"verbe": "marcotter", "A": "subjonctif", "B": "pass\u00e9", "i": 3, "conj": "marcott\u00e9", "grp": 1, "var": [9, 6978, 2, 0, 3, 1]}, {"verbe": "cybern\u00e9tiser", "A": "indicatif", "B": "pass\u00e9 simple", "i": 3, "conj": "cybern\u00e9tisai", "grp": 1, "var": [12, 2546, 1, 0, 3, 1]}, {"verbe": "d\u00e9nigrer", "A": "subjonctif", "B": "plus-que-parfait", "i": 3, "conj": "d\u00e9nigr\u00e9", "grp": 1, "var": [8, 3151, 2, 0, 3, 1]}, {"verbe": "n\u00e9roniser", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 3, "conj": "n\u00e9ronis\u00e9", "grp": 1, "var": [9, 7186, 3, 0, 3, 1]}, {"verbe": "failler", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 0, "conj": "faill\u00e9", "grp": 1, "var": [7, 5334, 1, 0, 0, 1]}, {"verbe": "grader", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 1, "conj": "grad\u00e9", "grp": 1, "var": [6, 5941, 1, 0, 1, 1]}, {"verbe": "ressaigner", "A": "indicatif", "B": "futur simple", "i": 4, "conj": "ressaignerai", "grp": 1, "var": [10, 8683, 1, 0, 4, 1]}, {"verbe": "amener", "A": "subjonctif", "B": "plus-que-parfait", "i": 1, "conj": "amen\u00e9", "grp": 1, "var": [6, 422, 2, 0, 1, 1]}, {"verbe": "remouiller", "A": "indicatif", "B": "pr\u00e9sent", "i": 0, "conj": "remouille", "grp": 1, "var": [10, 9271, 1, 0, 0, 1]}, {"verbe": "r\u00e9dimer", "A": "conditionnel", "B": "pr\u00e9sent", "i": 0, "conj": "r\u00e9dimerais", "grp": 1, "var": [7, 8347, 3, 0, 0, 1]}, {"verbe": "merlonner", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 0, "conj": "merlonn\u00e9", "grp": 1, "var": [9, 6911, 3, 0, 0, 1]}, {"verbe": "brayer", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "bray\u00e9", "grp": 1, "var": [6, 1110, 2, 0, 0, 1]}, {"verbe": "salp\u00eatrer", "A": "subjonctif", "B": "imparfait", "i": 3, "conj": "salp\u00eatrasse", "grp": 1, "var": [9, 9655, 2, 0, 3, 1]}, {"verbe": "clayonner", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 3, "conj": "clayonn\u00e9", "grp": 1, "var": [9, 1811, 1, 0, 3, 1]}, {"verbe": "engloutir", "A": "indicatif", "B": "imparfait", "i": 3, "conj": "engloutissais", "grp": 2, "var": [9, 4739, 1, 0, 3, 2]}, {"verbe": "resucer", "A": "indicatif", "B": "futur simple", "i": 4, "conj": "resucerai", "grp": 1, "var": [7, 8766, 1, 0, 4, 1]}, {"verbe": "refermenter", "A": "subjonctif", "B": "imparfait", "i": 2, "conj": "refermentasse", "grp": 1, "var": [11, 8604, 2, 0, 2, 1]}, {"verbe": "la\u00efusser", "A": "subjonctif", "B": "plus-que-parfait", "i": 3, "conj": "la\u00efuss\u00e9", "grp": 1, "var": [8, 6556, 2, 0, 3, 1]}, {"verbe": "emboutir", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 1, "conj": "embouti", "grp": 2, "var": [8, 5010, 1, 0, 1, 2]}, {"verbe": "appr\u00e9hender", "A": "conditionnel", "B": "pr\u00e9sent", "i": 3, "conj": "appr\u00e9henderais", "grp": 1, "var": [11, 39, 3, 0, 3, 1]}, {"verbe": "enceindre", "A": "subjonctif", "B": "pr\u00e9sent", "i": 4, "conj": "enceigne", "grp": 3, "var": [9, 4327, 2, 0, 4, 3]}, {"verbe": "\u00e9chardonner", "A": "indicatif", "B": "futur simple", "i": 0, "conj": "\u00e9chardonnerai", "grp": 1, "var": [11, 4281, 1, 0, 0, 1]}, {"verbe": "aspecter", "A": "subjonctif", "B": "pass\u00e9", "i": 4, "conj": "aspect\u00e9", "grp": 1, "var": [8, 305, 2, 0, 4, 1]}, {"verbe": "cotecoder", "A": "conditionnel", "B": "pr\u00e9sent", "i": 0, "conj": "cotecoderais", "grp": 1, "var": [9, 2004, 3, 0, 0, 1]}, {"verbe": "amurer", "A": "conditionnel", "B": "pr\u00e9sent", "i": 1, "conj": "amurerais", "grp": 1, "var": [6, 547, 3, 0, 1, 1]}, {"verbe": "rouscailler", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 4, "conj": "rouscaill\u00e9", "grp": 1, "var": [11, 9425, 1, 0, 4, 1]}, {"verbe": "ang\u00e9luser", "A": "subjonctif", "B": "pr\u00e9sent", "i": 5, "conj": "ang\u00e9luse", "grp": 1, "var": [9, 616, 2, 0, 5, 1]}, {"verbe": "s\u00e9duire", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 0, "conj": "s\u00e9duit", "grp": 3, "var": [7, 9981, 1, 0, 0, 3]}, {"verbe": "exploiter", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 0, "conj": "exploit\u00e9", "grp": 1, "var": [9, 5201, 3, 0, 0, 1]}, {"verbe": "macher", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 2, "conj": "mach\u00e9", "grp": 1, "var": [6, 6710, 1, 0, 2, 1]}, {"verbe": "pratiquer", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 1, "conj": "pratiqu\u00e9", "grp": 1, "var": [9, 7551, 1, 0, 1, 1]}, {"verbe": "pers\u00e9v\u00e9rer", "A": "subjonctif", "B": "plus-que-parfait", "i": 2, "conj": "pers\u00e9v\u00e9r\u00e9", "grp": 1, "var": [10, 7403, 2, 0, 2, 1]}, {"verbe": "rechercher", "A": "indicatif", "B": "pr\u00e9sent", "i": 3, "conj": "recherche", "grp": 1, "var": [10, 9291, 1, 0, 3, 1]}, {"verbe": "h\u00f4ler", "A": "indicatif", "B": "pass\u00e9 simple", "i": 0, "conj": "h\u00f4lai", "grp": 1, "var": [5, 6097, 1, 0, 0, 1]}, {"verbe": "d\u00e9compenser", "A": "subjonctif", "B": "plus-que-parfait", "i": 2, "conj": "d\u00e9compens\u00e9", "grp": 1, "var": [11, 3370, 2, 0, 2, 1]}, {"verbe": "n\u00e9phrectomiser", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 5, "conj": "n\u00e9phrectomis\u00e9", "grp": 1, "var": [14, 7180, 1, 0, 5, 1]}, {"verbe": "marginer", "A": "conditionnel", "B": "pr\u00e9sent", "i": 0, "conj": "marginerais", "grp": 1, "var": [8, 6990, 3, 0, 0, 1]}, {"verbe": "compacter", "A": "indicatif", "B": "pr\u00e9sent", "i": 5, "conj": "compacte", "grp": 1, "var": [9, 2214, 1, 0, 5, 1]}, {"verbe": "upgrader", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 1, "conj": "upgrad\u00e9", "grp": 1, "var": [8, 10665, 1, 0, 1, 1]}, {"verbe": "actuer", "A": "indicatif", "B": "pass\u00e9 simple", "i": 1, "conj": "actuai", "grp": 1, "var": [6, 540, 1, 0, 1, 1]}, {"verbe": "germaniser", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 0, "conj": "germanis\u00e9", "grp": 1, "var": [10, 5976, 1, 0, 0, 1]}, {"verbe": "avicenniser", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 3, "conj": "avicennis\u00e9", "grp": 1, "var": [11, 825, 1, 0, 3, 1]}, {"verbe": "buff\u00e9riser", "A": "subjonctif", "B": "plus-que-parfait", "i": 4, "conj": "buff\u00e9ris\u00e9", "grp": 1, "var": [10, 1403, 2, 0, 4, 1]}, {"verbe": "ceindre", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "ceignisse", "grp": 3, "var": [7, 2131, 2, 0, 1, 3]}, {"verbe": "feutrer", "A": "conditionnel", "B": "pr\u00e9sent", "i": 0, "conj": "feutrerais", "grp": 1, "var": [7, 5625, 3, 0, 0, 1]}, {"verbe": "limiter", "A": "indicatif", "B": "plus-que-parfait", "i": 1, "conj": "limit\u00e9", "grp": 1, "var": [7, 6653, 1, 0, 1, 1]}, {"verbe": "lever", "A": "subjonctif", "B": "plus-que-parfait", "i": 2, "conj": "lev\u00e9", "grp": 1, "var": [5, 6548, 2, 0, 2, 1]}, {"verbe": "abroger", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 5, "conj": "abrog\u00e9", "grp": 1, "var": [7, 169, 3, 0, 5, 1]}, {"verbe": "babiller", "A": "indicatif", "B": "pass\u00e9 simple", "i": 5, "conj": "babillai", "grp": 1, "var": [8, 905, 1, 0, 5, 1]}, {"verbe": "allumer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 3, "conj": "allum\u00e9", "grp": 1, "var": [7, 313, 1, 0, 3, 1]}, {"verbe": "inculper", "A": "subjonctif", "B": "pass\u00e9", "i": 1, "conj": "inculp\u00e9", "grp": 1, "var": [8, 6416, 2, 0, 1, 1]}, {"verbe": "vicier", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 5, "conj": "vici\u00e9", "grp": 1, "var": [6, 10798, 1, 0, 5, 1]}, {"verbe": "\u00e9gr\u00e9ser", "A": "subjonctif", "B": "plus-que-parfait", "i": 2, "conj": "\u00e9gr\u00e9s\u00e9", "grp": 1, "var": [7, 4688, 2, 0, 2, 1]}, {"verbe": "fourmiller", "A": "indicatif", "B": "plus-que-parfait", "i": 2, "conj": "fourmill\u00e9", "grp": 1, "var": [10, 5375, 1, 0, 2, 1]}, {"verbe": "ratiociner", "A": "indicatif", "B": "pr\u00e9sent", "i": 5, "conj": "ratiocine", "grp": 1, "var": [10, 8746, 1, 0, 5, 1]}, {"verbe": "d\u00e9sachalander", "A": "subjonctif", "B": "plus-que-parfait", "i": 5, "conj": "d\u00e9sachaland\u00e9", "grp": 1, "var": [13, 3755, 2, 0, 5, 1]}, {"verbe": "candir", "A": "subjonctif", "B": "plus-que-parfait", "i": 2, "conj": "candi", "grp": 2, "var": [6, 1762, 2, 0, 2, 2]}, {"verbe": "garantir", "A": "subjonctif", "B": "pr\u00e9sent", "i": 5, "conj": "garantisse", "grp": 2, "var": [8, 5799, 2, 0, 5, 2]}, {"verbe": "hyperesth\u00e9sier", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 2, "conj": "hyperesth\u00e9si\u00e9", "grp": 1, "var": [14, 6122, 3, 0, 2, 1]}, {"verbe": "baguer", "A": "indicatif", "B": "plus-que-parfait", "i": 5, "conj": "bagu\u00e9", "grp": 1, "var": [6, 970, 1, 0, 5, 1]}, {"verbe": "surjeter", "A": "indicatif", "B": "pass\u00e9 simple", "i": 4, "conj": "surjetai", "grp": 1, "var": [8, 9947, 1, 0, 4, 1]}, {"verbe": "\u00e9muler", "A": "subjonctif", "B": "pr\u00e9sent", "i": 4, "conj": "\u00e9mule", "grp": 1, "var": [6, 4234, 2, 0, 4, 1]}, {"verbe": "dessabler", "A": "conditionnel", "B": "pr\u00e9sent", "i": 5, "conj": "dessablerais", "grp": 1, "var": [9, 3059, 3, 0, 5, 1]}, {"verbe": "microniser", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 5, "conj": "micronis\u00e9", "grp": 1, "var": [10, 7054, 1, 0, 5, 1]}, {"verbe": "trach\u00e9otomiser", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 5, "conj": "trach\u00e9otomis\u00e9", "grp": 1, "var": [14, 10588, 3, 0, 5, 1]}, {"verbe": "remembrer", "A": "indicatif", "B": "imparfait", "i": 4, "conj": "remembrais", "grp": 1, "var": [9, 9193, 1, 0, 4, 1]}, {"verbe": "embrumer", "A": "indicatif", "B": "imparfait", "i": 5, "conj": "embrumais", "grp": 1, "var": [8, 5067, 1, 0, 5, 1]}, {"verbe": "autoriser", "A": "indicatif", "B": "pr\u00e9sent", "i": 4, "conj": "autorise", "grp": 1, "var": [9, 764, 1, 0, 4, 1]}, {"verbe": "d\u00e9licatiser", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "d\u00e9licatisasse", "grp": 1, "var": [11, 2779, 2, 0, 1, 1]}, {"verbe": "entr'appeler", "A": "indicatif", "B": "futur simple", "i": 4, "conj": "entr'appellerai", "grp": 1, "var": [12, 5191, 1, 0, 4, 1]}, {"verbe": "recondamner", "A": "indicatif", "B": "pr\u00e9sent", "i": 3, "conj": "recondamne", "grp": 1, "var": [11, 9411, 1, 0, 3, 1]}, {"verbe": "touchotter", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "touchott\u00e9", "grp": 1, "var": [10, 10501, 2, 0, 0, 1]}, {"verbe": "d\u00e9sillusionner", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 4, "conj": "d\u00e9sillusionn\u00e9", "grp": 1, "var": [14, 2897, 3, 0, 4, 1]}, {"verbe": "immigrer", "A": "subjonctif", "B": "pr\u00e9sent", "i": 3, "conj": "immigre", "grp": 1, "var": [8, 6242, 2, 0, 3, 1]}, {"verbe": "d\u00e9mascler", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 0, "conj": "d\u00e9mascl\u00e9", "grp": 1, "var": [9, 2920, 3, 0, 0, 1]}, {"verbe": "investiguer", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 0, "conj": "investigu\u00e9", "grp": 1, "var": [11, 6355, 1, 0, 0, 1]}, {"verbe": "vectoriser", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "vectoris\u00e9", "grp": 1, "var": [10, 10812, 2, 0, 0, 1]}, {"verbe": "enfouiller", "A": "subjonctif", "B": "plus-que-parfait", "i": 1, "conj": "enfouill\u00e9", "grp": 1, "var": [10, 4659, 2, 0, 1, 1]}, {"verbe": "barjaquer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 1, "conj": "barjaqu\u00e9", "grp": 1, "var": [9, 1186, 3, 0, 1, 1]}, {"verbe": "rouscailler", "A": "indicatif", "B": "plus-que-parfait", "i": 2, "conj": "rouscaill\u00e9", "grp": 1, "var": [11, 9425, 1, 0, 2, 1]}, {"verbe": "r\u00e9it\u00e9rer", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 5, "conj": "r\u00e9it\u00e9r\u00e9", "grp": 1, "var": [8, 8977, 1, 0, 5, 1]}, {"verbe": "bond\u00e9riser", "A": "conditionnel", "B": "pr\u00e9sent", "i": 5, "conj": "bond\u00e9riserais", "grp": 1, "var": [10, 1286, 3, 0, 5, 1]}, {"verbe": "modulariser", "A": "conditionnel", "B": "pr\u00e9sent", "i": 1, "conj": "modulariserais", "grp": 1, "var": [11, 6769, 3, 0, 1, 1]}, {"verbe": "tournasser", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 1, "conj": "tournass\u00e9", "grp": 1, "var": [10, 10537, 1, 0, 1, 1]}, {"verbe": "acc\u00e9l\u00e9rer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 1, "conj": "acc\u00e9l\u00e9r\u00e9", "grp": 1, "var": [9, 264, 3, 0, 1, 1]}, {"verbe": "rongeoter", "A": "subjonctif", "B": "pass\u00e9", "i": 4, "conj": "rongeot\u00e9", "grp": 1, "var": [9, 9344, 2, 0, 4, 1]}, {"verbe": "surdorer", "A": "indicatif", "B": "pr\u00e9sent", "i": 2, "conj": "surdore", "grp": 1, "var": [8, 9828, 1, 0, 2, 1]}, {"verbe": "d\u00e9sannoncer", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 3, "conj": "d\u00e9sannonc\u00e9", "grp": 1, "var": [11, 3890, 3, 0, 3, 1]}, {"verbe": "c\u00e9sariser", "A": "indicatif", "B": "pr\u00e9sent", "i": 3, "conj": "c\u00e9sarise", "grp": 1, "var": [9, 2187, 1, 0, 3, 1]}, {"verbe": "vaciller", "A": "indicatif", "B": "futur simple", "i": 5, "conj": "vacillerai", "grp": 1, "var": [8, 10686, 1, 0, 5, 1]}, {"verbe": "combler", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 0, "conj": "combl\u00e9", "grp": 1, "var": [7, 2143, 3, 0, 0, 1]}, {"verbe": "r\u00e9estimer", "A": "subjonctif", "B": "imparfait", "i": 3, "conj": "r\u00e9estimasse", "grp": 1, "var": [9, 8530, 2, 0, 3, 1]}, {"verbe": "contracter", "A": "subjonctif", "B": "pass\u00e9", "i": 5, "conj": "contract\u00e9", "grp": 1, "var": [10, 1614, 2, 0, 5, 1]}, {"verbe": "retrouver", "A": "indicatif", "B": "imparfait", "i": 3, "conj": "retrouvais", "grp": 1, "var": [9, 8966, 1, 0, 3, 1]}, {"verbe": "apparier", "A": "subjonctif", "B": "plus-que-parfait", "i": 0, "conj": "appari\u00e9", "grp": 1, "var": [8, 863, 2, 0, 0, 1]}, {"verbe": "graciliser", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 3, "conj": "gracilis\u00e9", "grp": 1, "var": [10, 5938, 1, 0, 3, 1]}, {"verbe": "jargonner", "A": "subjonctif", "B": "imparfait", "i": 2, "conj": "jargonnasse", "grp": 1, "var": [9, 6493, 2, 0, 2, 1]}, {"verbe": "sonder", "A": "conditionnel", "B": "pr\u00e9sent", "i": 3, "conj": "sonderais", "grp": 1, "var": [6, 9731, 3, 0, 3, 1]}, {"verbe": "fanfaronner", "A": "indicatif", "B": "pass\u00e9 simple", "i": 1, "conj": "fanfaronnai", "grp": 1, "var": [11, 5373, 1, 0, 1, 1]}, {"verbe": "schinder", "A": "indicatif", "B": "imparfait", "i": 3, "conj": "schindais", "grp": 1, "var": [8, 9847, 1, 0, 3, 1]}, {"verbe": "cloquer", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 0, "conj": "cloqu\u00e9", "grp": 1, "var": [7, 1883, 1, 0, 0, 1]}, {"verbe": "\u00eeloter", "A": "indicatif", "B": "futur simple", "i": 2, "conj": "\u00eeloterai", "grp": 1, "var": [6, 6206, 1, 0, 2, 1]}, {"verbe": "d\u00e9froncer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 5, "conj": "d\u00e9fronc\u00e9", "grp": 1, "var": [9, 3907, 3, 0, 5, 1]}, {"verbe": "bouveter", "A": "subjonctif", "B": "plus-que-parfait", "i": 1, "conj": "bouvet\u00e9", "grp": 1, "var": [8, 1020, 2, 0, 1, 1]}, {"verbe": "dire", "A": "subjonctif", "B": "plus-que-parfait", "i": 2, "conj": "dit", "grp": 3, "var": [4, 3654, 2, 0, 2, 3]}, {"verbe": "affubler", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "affubl\u00e9", "grp": 1, "var": [8, 853, 2, 0, 0, 1]}, {"verbe": "\u00e9botter", "A": "indicatif", "B": "plus-que-parfait", "i": 5, "conj": "\u00e9bott\u00e9", "grp": 1, "var": [7, 4122, 1, 0, 5, 1]}, {"verbe": "d\u00e9mucilaginer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 1, "conj": "d\u00e9mucilagin\u00e9", "grp": 1, "var": [13, 3064, 1, 0, 1, 1]}, {"verbe": "chamailler", "A": "indicatif", "B": "pr\u00e9sent", "i": 3, "conj": "chamaille", "grp": 1, "var": [10, 2222, 1, 0, 3, 1]}, {"verbe": "ramailler", "A": "indicatif", "B": "pr\u00e9sent", "i": 1, "conj": "ramaille", "grp": 1, "var": [9, 8505, 1, 0, 1, 1]}, {"verbe": "bastinguer", "A": "subjonctif", "B": "plus-que-parfait", "i": 1, "conj": "bastingu\u00e9", "grp": 1, "var": [10, 1261, 2, 0, 1, 1]}, {"verbe": "grognonner", "A": "indicatif", "B": "futur simple", "i": 1, "conj": "grognonnerai", "grp": 1, "var": [10, 5855, 1, 0, 1, 1]}, {"verbe": "d\u00e9senamourer", "A": "subjonctif", "B": "pass\u00e9", "i": 4, "conj": "d\u00e9senamour\u00e9", "grp": 1, "var": [12, 2615, 2, 0, 4, 1]}, {"verbe": "transir", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 4, "conj": "transi", "grp": 2, "var": [7, 10218, 3, 0, 4, 2]}, {"verbe": "censurer", "A": "conditionnel", "B": "pr\u00e9sent", "i": 1, "conj": "censurerais", "grp": 1, "var": [8, 2154, 3, 0, 1, 1]}, {"verbe": "dissiper", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "dissipasse", "grp": 1, "var": [8, 3768, 2, 0, 1, 1]}, {"verbe": "avoir", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 5, "conj": "eu", "grp": 2, "var": [5, 861, 1, 0, 5, 2]}, {"verbe": "emberloquer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 4, "conj": "emberloqu\u00e9", "grp": 1, "var": [11, 4912, 1, 0, 4, 1]}, {"verbe": "suractiver", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 5, "conj": "suractiv\u00e9", "grp": 1, "var": [10, 9747, 3, 0, 5, 1]}, {"verbe": "d\u00e9senrouler", "A": "subjonctif", "B": "pr\u00e9sent", "i": 4, "conj": "d\u00e9senroule", "grp": 1, "var": [11, 2735, 2, 0, 4, 1]}, {"verbe": "salir", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 3, "conj": "sali", "grp": 2, "var": [5, 9643, 3, 0, 3, 2]}, {"verbe": "ignifuger", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 2, "conj": "ignifug\u00e9", "grp": 1, "var": [9, 6182, 3, 0, 2, 1]}, {"verbe": "commercer", "A": "subjonctif", "B": "imparfait", "i": 0, "conj": "commer\u00e7asse", "grp": 1, "var": [9, 2170, 2, 0, 0, 1]}, {"verbe": "cramper", "A": "indicatif", "B": "pass\u00e9 simple", "i": 2, "conj": "crampai", "grp": 1, "var": [7, 2213, 1, 0, 2, 1]}, {"verbe": "encasteler", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "encastelasse", "grp": 1, "var": [10, 4312, 2, 0, 1, 1]}, {"verbe": "enverguer", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "enverguasse", "grp": 1, "var": [9, 4208, 2, 0, 1, 1]}, {"verbe": "suicider", "A": "subjonctif", "B": "imparfait", "i": 5, "conj": "suicidasse", "grp": 1, "var": [8, 9666, 2, 0, 5, 1]}, {"verbe": "surimpressionner", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 2, "conj": "surimpressionn\u00e9", "grp": 1, "var": [16, 9917, 3, 0, 2, 1]}, {"verbe": "r\u00e9tro\u00e9clairer", "A": "subjonctif", "B": "plus-que-parfait", "i": 5, "conj": "r\u00e9tro\u00e9clair\u00e9", "grp": 1, "var": [13, 8951, 2, 0, 5, 1]}, {"verbe": "enj\u00f4ler", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 1, "conj": "enj\u00f4l\u00e9", "grp": 1, "var": [7, 4838, 3, 0, 1, 1]}, {"verbe": "centraliser", "A": "subjonctif", "B": "pass\u00e9", "i": 3, "conj": "centralis\u00e9", "grp": 1, "var": [11, 2157, 2, 0, 3, 1]}, {"verbe": "agrouer", "A": "indicatif", "B": "pr\u00e9sent", "i": 5, "conj": "agroue", "grp": 1, "var": [7, 74, 1, 0, 5, 1]}, {"verbe": "cambrioler", "A": "subjonctif", "B": "imparfait", "i": 0, "conj": "cambriolasse", "grp": 1, "var": [10, 1708, 2, 0, 0, 1]}, {"verbe": "d\u00e9gluer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 0, "conj": "d\u00e9glu\u00e9", "grp": 1, "var": [7, 3999, 1, 0, 0, 1]}, {"verbe": "repoudrer", "A": "conditionnel", "B": "pr\u00e9sent", "i": 0, "conj": "repoudrerais", "grp": 1, "var": [9, 8468, 3, 0, 0, 1]}, {"verbe": "sarcler", "A": "conditionnel", "B": "pr\u00e9sent", "i": 1, "conj": "sarclerais", "grp": 1, "var": [7, 9712, 3, 0, 1, 1]}, {"verbe": "chicaner", "A": "indicatif", "B": "pr\u00e9sent", "i": 1, "conj": "chicane", "grp": 1, "var": [8, 2523, 1, 0, 1, 1]}, {"verbe": "boissonner", "A": "indicatif", "B": "pr\u00e9sent", "i": 1, "conj": "boissonne", "grp": 1, "var": [10, 1247, 1, 0, 1, 1]}, {"verbe": "sermonner", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 5, "conj": "sermonn\u00e9", "grp": 1, "var": [9, 10087, 3, 0, 5, 1]}, {"verbe": "cramper", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 5, "conj": "cramp\u00e9", "grp": 1, "var": [7, 2213, 3, 0, 5, 1]}, {"verbe": "flemmarder", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 2, "conj": "flemmard\u00e9", "grp": 1, "var": [10, 5431, 3, 0, 2, 1]}, {"verbe": "antiparasiter", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 3, "conj": "antiparasit\u00e9", "grp": 1, "var": [13, 736, 1, 0, 3, 1]}, {"verbe": "talocher", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 0, "conj": "taloch\u00e9", "grp": 1, "var": [8, 10273, 1, 0, 0, 1]}, {"verbe": "geindre", "A": "conditionnel", "B": "pr\u00e9sent", "i": 1, "conj": "geindrais", "grp": 3, "var": [7, 5910, 3, 0, 1, 3]}, {"verbe": "dinitrer", "A": "subjonctif", "B": "plus-que-parfait", "i": 0, "conj": "dinitr\u00e9", "grp": 1, "var": [8, 3642, 2, 0, 0, 1]}, {"verbe": "d\u00e9cha\u00eener", "A": "subjonctif", "B": "pass\u00e9", "i": 1, "conj": "d\u00e9cha\u00een\u00e9", "grp": 1, "var": [9, 3141, 2, 0, 1, 1]}, {"verbe": "bourriauder", "A": "subjonctif", "B": "pr\u00e9sent", "i": 3, "conj": "bourriaude", "grp": 1, "var": [11, 969, 2, 0, 3, 1]}, {"verbe": "cod\u00e9cider", "A": "indicatif", "B": "futur simple", "i": 2, "conj": "cod\u00e9ciderai", "grp": 1, "var": [9, 1973, 1, 0, 2, 1]}, {"verbe": "parrainer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 5, "conj": "parrain\u00e9", "grp": 1, "var": [9, 7762, 1, 0, 5, 1]}, {"verbe": "ozoniser", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 1, "conj": "ozonis\u00e9", "grp": 1, "var": [8, 7398, 1, 0, 1, 1]}, {"verbe": "remuscler", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 5, "conj": "remuscl\u00e9", "grp": 1, "var": [9, 9328, 1, 0, 5, 1]}, {"verbe": "d\u00e9viroler", "A": "subjonctif", "B": "plus-que-parfait", "i": 5, "conj": "d\u00e9virol\u00e9", "grp": 1, "var": [9, 3426, 2, 0, 5, 1]}, {"verbe": "dispatcher", "A": "indicatif", "B": "pr\u00e9sent", "i": 4, "conj": "dispatche", "grp": 1, "var": [10, 3723, 1, 0, 4, 1]}, {"verbe": "mouffeter", "A": "conditionnel", "B": "pr\u00e9sent", "i": 5, "conj": "mouffetterais", "grp": 1, "var": [9, 6992, 3, 0, 5, 1]}, {"verbe": "vaporiser", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "vaporis\u00e9", "grp": 1, "var": [9, 10767, 2, 0, 0, 1]}, {"verbe": "fr\u00e9tiller", "A": "indicatif", "B": "plus-que-parfait", "i": 1, "conj": "fr\u00e9till\u00e9", "grp": 1, "var": [9, 5480, 1, 0, 1, 1]}, {"verbe": "d\u00e9plafonner", "A": "subjonctif", "B": "pass\u00e9", "i": 1, "conj": "d\u00e9plafonn\u00e9", "grp": 1, "var": [11, 3419, 2, 0, 1, 1]}, {"verbe": "paumer", "A": "indicatif", "B": "pass\u00e9 simple", "i": 4, "conj": "paumai", "grp": 1, "var": [6, 7924, 1, 0, 4, 1]}, {"verbe": "glatir", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "glati", "grp": 2, "var": [6, 5743, 2, 0, 0, 2]}, {"verbe": "reproduire", "A": "indicatif", "B": "pass\u00e9 simple", "i": 5, "conj": "reproduisis", "grp": 3, "var": [10, 8504, 1, 0, 5, 3]}, {"verbe": "tonneler", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 4, "conj": "tonnel\u00e9", "grp": 1, "var": [8, 10399, 1, 0, 4, 1]}, {"verbe": "d\u00e9koulakiser", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 3, "conj": "d\u00e9koulakis\u00e9", "grp": 1, "var": [12, 2713, 1, 0, 3, 1]}, {"verbe": "ragencer", "A": "subjonctif", "B": "plus-que-parfait", "i": 1, "conj": "ragenc\u00e9", "grp": 1, "var": [8, 8412, 2, 0, 1, 1]}, {"verbe": "escofier", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 3, "conj": "escofi\u00e9", "grp": 1, "var": [8, 4585, 1, 0, 3, 1]}, {"verbe": "soleiller", "A": "subjonctif", "B": "pass\u00e9", "i": 5, "conj": "soleill\u00e9", "grp": 1, "var": [9, 9668, 2, 0, 5, 1]}, {"verbe": "pipoter", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 4, "conj": "pipot\u00e9", "grp": 1, "var": [7, 7745, 3, 0, 4, 1]}, {"verbe": "esclaffer", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 0, "conj": "esclaff\u00e9", "grp": 1, "var": [9, 4573, 1, 0, 0, 1]}, {"verbe": "d\u00e9capuchonner", "A": "conditionnel", "B": "pr\u00e9sent", "i": 2, "conj": "d\u00e9capuchonnerais", "grp": 1, "var": [13, 3042, 3, 0, 2, 1]}, {"verbe": "emm\u00e9trer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 1, "conj": "emm\u00e9tr\u00e9", "grp": 1, "var": [8, 5184, 3, 0, 1, 1]}, {"verbe": "berner", "A": "indicatif", "B": "imparfait", "i": 5, "conj": "bernais", "grp": 1, "var": [6, 1437, 1, 0, 5, 1]}, {"verbe": "recharpenter", "A": "conditionnel", "B": "pr\u00e9sent", "i": 0, "conj": "recharpenterais", "grp": 1, "var": [12, 9270, 3, 0, 0, 1]}, {"verbe": "surdimensionner", "A": "indicatif", "B": "pr\u00e9sent", "i": 2, "conj": "surdimensionne", "grp": 1, "var": [15, 9825, 1, 0, 2, 1]}, {"verbe": "poncer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 2, "conj": "ponc\u00e9", "grp": 1, "var": [6, 8138, 3, 0, 2, 1]}, {"verbe": "m\u00e2quer", "A": "indicatif", "B": "pass\u00e9 simple", "i": 3, "conj": "m\u00e2quai", "grp": 1, "var": [6, 6937, 1, 0, 3, 1]}, {"verbe": "pasquiner", "A": "indicatif", "B": "pass\u00e9 simple", "i": 1, "conj": "pasquinai", "grp": 1, "var": [9, 7795, 1, 0, 1, 1]}, {"verbe": "voyeller", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 1, "conj": "voyell\u00e9", "grp": 1, "var": [8, 10843, 1, 0, 1, 1]}, {"verbe": "caler", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 5, "conj": "cal\u00e9", "grp": 1, "var": [5, 1636, 1, 0, 5, 1]}, {"verbe": "stranguler", "A": "subjonctif", "B": "pass\u00e9", "i": 5, "conj": "strangul\u00e9", "grp": 1, "var": [10, 10160, 2, 0, 5, 1]}, {"verbe": "p\u00e9titionner", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 4, "conj": "p\u00e9titionn\u00e9", "grp": 1, "var": [11, 7466, 1, 0, 4, 1]}, {"verbe": "humecter", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 5, "conj": "humect\u00e9", "grp": 1, "var": [8, 6056, 3, 0, 5, 1]}, {"verbe": "coupasser", "A": "conditionnel", "B": "pr\u00e9sent", "i": 1, "conj": "coupasserais", "grp": 1, "var": [9, 2088, 3, 0, 1, 1]}, {"verbe": "salabrer", "A": "conditionnel", "B": "pr\u00e9sent", "i": 1, "conj": "salabrerais", "grp": 1, "var": [8, 9619, 3, 0, 1, 1]}, {"verbe": "gauler", "A": "conditionnel", "B": "pr\u00e9sent", "i": 4, "conj": "gaulerais", "grp": 1, "var": [6, 5877, 3, 0, 4, 1]}, {"verbe": "transmettre", "A": "subjonctif", "B": "pass\u00e9", "i": 4, "conj": "transmis", "grp": 3, "var": [11, 10236, 2, 0, 4, 3]}, {"verbe": "adh\u00e9rer", "A": "subjonctif", "B": "imparfait", "i": 4, "conj": "adh\u00e9rasse", "grp": 1, "var": [7, 573, 2, 0, 4, 1]}, {"verbe": "tacher", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 1, "conj": "tach\u00e9", "grp": 1, "var": [6, 10219, 1, 0, 1, 1]}, {"verbe": "poudrer", "A": "indicatif", "B": "imparfait", "i": 5, "conj": "poudrais", "grp": 1, "var": [7, 7473, 1, 0, 5, 1]}, {"verbe": "av\u00e9rer", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 4, "conj": "av\u00e9r\u00e9", "grp": 1, "var": [6, 811, 1, 0, 4, 1]}, {"verbe": "embouter", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 3, "conj": "embout\u00e9", "grp": 1, "var": [8, 5007, 1, 0, 3, 1]}, {"verbe": "chipoter", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 1, "conj": "chipot\u00e9", "grp": 1, "var": [8, 1488, 3, 0, 1, 1]}, {"verbe": "polym\u00e9riser", "A": "indicatif", "B": "pr\u00e9sent", "i": 1, "conj": "polym\u00e9rise", "grp": 1, "var": [11, 8114, 1, 0, 1, 1]}, {"verbe": "emplafonner", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 1, "conj": "emplafonn\u00e9", "grp": 1, "var": [11, 4156, 3, 0, 1, 1]}, {"verbe": "meurtrir", "A": "indicatif", "B": "imparfait", "i": 5, "conj": "meurtrissais", "grp": 2, "var": [8, 7015, 1, 0, 5, 2]}, {"verbe": "b\u00e9atifier", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 1, "conj": "b\u00e9atifi\u00e9", "grp": 1, "var": [9, 1344, 3, 0, 1, 1]}, {"verbe": "livrer", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 5, "conj": "livr\u00e9", "grp": 1, "var": [6, 6555, 3, 0, 5, 1]}, {"verbe": "goinfrer", "A": "indicatif", "B": "futur simple", "i": 2, "conj": "goinfrerai", "grp": 1, "var": [8, 5824, 1, 0, 2, 1]}, {"verbe": "d\u00e9coller", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "d\u00e9collasse", "grp": 1, "var": [8, 3337, 2, 0, 1, 1]}, {"verbe": "d\u00e9latter", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 3, "conj": "d\u00e9latt\u00e9", "grp": 1, "var": [8, 2746, 1, 0, 3, 1]}, {"verbe": "saillir", "A": "indicatif", "B": "imparfait", "i": 2, "conj": "saillissais", "grp": 2, "var": [7, 9595, 1, 0, 2, 2]}, {"verbe": "ruginer", "A": "indicatif", "B": "pass\u00e9 simple", "i": 3, "conj": "ruginai", "grp": 1, "var": [7, 9488, 1, 0, 3, 1]}, {"verbe": "outiller", "A": "subjonctif", "B": "imparfait", "i": 3, "conj": "outillasse", "grp": 1, "var": [8, 7339, 2, 0, 3, 1]}, {"verbe": "culturaliser", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 0, "conj": "culturalis\u00e9", "grp": 1, "var": [12, 2516, 3, 0, 0, 1]}, {"verbe": "d\u00e9semplir", "A": "subjonctif", "B": "plus-que-parfait", "i": 1, "conj": "d\u00e9sempli", "grp": 2, "var": [9, 2594, 2, 0, 1, 2]}, {"verbe": "osciller", "A": "subjonctif", "B": "imparfait", "i": 2, "conj": "oscillasse", "grp": 1, "var": [8, 7297, 2, 0, 2, 1]}, {"verbe": "d\u00e9sinstaller", "A": "indicatif", "B": "pass\u00e9 simple", "i": 0, "conj": "d\u00e9sinstallai", "grp": 1, "var": [12, 2951, 1, 0, 0, 1]}, {"verbe": "bestialiser", "A": "subjonctif", "B": "pass\u00e9", "i": 1, "conj": "bestialis\u00e9", "grp": 1, "var": [11, 1446, 2, 0, 1, 1]}, {"verbe": "dysfonctionner", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 3, "conj": "dysfonctionn\u00e9", "grp": 1, "var": [14, 4076, 1, 0, 3, 1]}, {"verbe": "discontinuer", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 2, "conj": "discontinu\u00e9", "grp": 1, "var": [12, 3675, 1, 0, 2, 1]}, {"verbe": "d\u00e9coller", "A": "indicatif", "B": "imparfait", "i": 1, "conj": "d\u00e9collais", "grp": 1, "var": [8, 3337, 1, 0, 1, 1]}, {"verbe": "arr\u00eater", "A": "indicatif", "B": "plus-que-parfait", "i": 1, "conj": "arr\u00eat\u00e9", "grp": 1, "var": [7, 237, 1, 0, 1, 1]}, {"verbe": "processionner", "A": "indicatif", "B": "futur simple", "i": 0, "conj": "processionnerai", "grp": 1, "var": [13, 7887, 1, 0, 0, 1]}, {"verbe": "dessuinter", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 3, "conj": "dessuint\u00e9", "grp": 1, "var": [10, 3125, 1, 0, 3, 1]}, {"verbe": "compoter", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 3, "conj": "compot\u00e9", "grp": 1, "var": [8, 2300, 1, 0, 3, 1]}, {"verbe": "reb\u00e2iller", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 4, "conj": "reb\u00e2ill\u00e9", "grp": 1, "var": [9, 9024, 1, 0, 4, 1]}, {"verbe": "invoquer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 2, "conj": "invoqu\u00e9", "grp": 1, "var": [8, 6370, 1, 0, 2, 1]}, {"verbe": "repolir", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "repoli", "grp": 2, "var": [7, 8444, 2, 0, 0, 2]}, {"verbe": "co\u00fbter", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 1, "conj": "co\u00fbt\u00e9", "grp": 1, "var": [6, 2162, 1, 0, 1, 1]}, {"verbe": "ailer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 2, "conj": "ail\u00e9", "grp": 1, "var": [5, 134, 3, 0, 2, 1]}, {"verbe": "nipper", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 2, "conj": "nipp\u00e9", "grp": 1, "var": [6, 7246, 1, 0, 2, 1]}, {"verbe": "cuire", "A": "indicatif", "B": "imparfait", "i": 0, "conj": "cuisais", "grp": 3, "var": [5, 2483, 1, 0, 0, 3]}, {"verbe": "attendre", "A": "indicatif", "B": "plus-que-parfait", "i": 5, "conj": "attendu", "grp": 3, "var": [8, 510, 1, 0, 5, 3]}, {"verbe": "compounder", "A": "indicatif", "B": "pr\u00e9sent", "i": 4, "conj": "compounde", "grp": 1, "var": [10, 2303, 1, 0, 4, 1]}, {"verbe": "collecter", "A": "indicatif", "B": "futur simple", "i": 3, "conj": "collecterai", "grp": 1, "var": [9, 2075, 1, 0, 3, 1]}, {"verbe": "d\u00e9briefer", "A": "subjonctif", "B": "imparfait", "i": 0, "conj": "d\u00e9briefasse", "grp": 1, "var": [9, 2895, 2, 0, 0, 1]}, {"verbe": "d\u00e9sertifier", "A": "subjonctif", "B": "plus-que-parfait", "i": 3, "conj": "d\u00e9sertifi\u00e9", "grp": 1, "var": [11, 2807, 2, 0, 3, 1]}, {"verbe": "friper", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 3, "conj": "frip\u00e9", "grp": 1, "var": [6, 5516, 1, 0, 3, 1]}, {"verbe": "cataboliser", "A": "subjonctif", "B": "imparfait", "i": 3, "conj": "catabolisasse", "grp": 1, "var": [11, 2053, 2, 0, 3, 1]}, {"verbe": "barricader", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 5, "conj": "barricad\u00e9", "grp": 1, "var": [10, 1216, 1, 0, 5, 1]}, {"verbe": "id\u00e9ologiser", "A": "indicatif", "B": "pr\u00e9sent", "i": 1, "conj": "id\u00e9ologise", "grp": 1, "var": [11, 6167, 1, 0, 1, 1]}, {"verbe": "porter", "A": "conditionnel", "B": "pr\u00e9sent", "i": 5, "conj": "porterais", "grp": 1, "var": [6, 8176, 3, 0, 5, 1]}, {"verbe": "sancir", "A": "indicatif", "B": "pr\u00e9sent", "i": 1, "conj": "sancis", "grp": 2, "var": [6, 9664, 1, 0, 1, 2]}, {"verbe": "skier", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 1, "conj": "ski\u00e9", "grp": 1, "var": [5, 9599, 1, 0, 1, 1]}, {"verbe": "rechigner", "A": "indicatif", "B": "futur simple", "i": 4, "conj": "rechignerai", "grp": 1, "var": [9, 9297, 1, 0, 4, 1]}, {"verbe": "lamper", "A": "indicatif", "B": "pass\u00e9 simple", "i": 2, "conj": "lampai", "grp": 1, "var": [6, 6574, 1, 0, 2, 1]}, {"verbe": "survivre", "A": "conditionnel", "B": "pr\u00e9sent", "i": 2, "conj": "survivrais", "grp": 3, "var": [8, 10101, 3, 0, 2, 3]}, {"verbe": "recomprimer", "A": "indicatif", "B": "futur simple", "i": 4, "conj": "recomprimerai", "grp": 1, "var": [11, 9399, 1, 0, 4, 1]}, {"verbe": "momifier", "A": "subjonctif", "B": "plus-que-parfait", "i": 1, "conj": "momifi\u00e9", "grp": 1, "var": [8, 6823, 2, 0, 1, 1]}, {"verbe": "hypostasier", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 2, "conj": "hypostasi\u00e9", "grp": 1, "var": [11, 6140, 1, 0, 2, 1]}, {"verbe": "enrailler", "A": "subjonctif", "B": "plus-que-parfait", "i": 0, "conj": "enraill\u00e9", "grp": 1, "var": [9, 4966, 2, 0, 0, 1]}, {"verbe": "\u00e9tan\u00e7onner", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 2, "conj": "\u00e9tan\u00e7onn\u00e9", "grp": 1, "var": [10, 4788, 1, 0, 2, 1]}, {"verbe": "bouquer", "A": "indicatif", "B": "pass\u00e9 simple", "i": 3, "conj": "bouquai", "grp": 1, "var": [7, 922, 1, 0, 3, 1]}, {"verbe": "pistonner", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 0, "conj": "pistonn\u00e9", "grp": 1, "var": [9, 7796, 1, 0, 0, 1]}, {"verbe": "atermoyer", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 5, "conj": "atermoy\u00e9", "grp": 1, "var": [9, 465, 3, 0, 5, 1]}, {"verbe": "alcoyler", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 1, "conj": "alcoyl\u00e9", "grp": 1, "var": [8, 203, 3, 0, 1, 1]}, {"verbe": "effranger", "A": "subjonctif", "B": "pass\u00e9", "i": 4, "conj": "effrang\u00e9", "grp": 1, "var": [9, 4610, 2, 0, 4, 1]}, {"verbe": "anglifier", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 1, "conj": "anglifi\u00e9", "grp": 1, "var": [9, 631, 1, 0, 1, 1]}, {"verbe": "d\u00e9bloquer", "A": "indicatif", "B": "pr\u00e9sent", "i": 0, "conj": "d\u00e9bloque", "grp": 1, "var": [9, 2778, 1, 0, 0, 1]}, {"verbe": "r\u00e9tamer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 4, "conj": "r\u00e9tam\u00e9", "grp": 1, "var": [7, 8790, 3, 0, 4, 1]}, {"verbe": "paginer", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 0, "conj": "pagin\u00e9", "grp": 1, "var": [7, 7438, 3, 0, 0, 1]}, {"verbe": "\u00e9th\u00e9riser", "A": "indicatif", "B": "pr\u00e9sent", "i": 1, "conj": "\u00e9th\u00e9rise", "grp": 1, "var": [9, 4827, 1, 0, 1, 1]}, {"verbe": "\u00e9riger", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 4, "conj": "\u00e9rig\u00e9", "grp": 1, "var": [6, 4498, 3, 0, 4, 1]}, {"verbe": "brier", "A": "conditionnel", "B": "pr\u00e9sent", "i": 5, "conj": "brierais", "grp": 1, "var": [5, 1185, 3, 0, 5, 1]}, {"verbe": "d\u00e9sar\u00e7onner", "A": "subjonctif", "B": "imparfait", "i": 0, "conj": "d\u00e9sar\u00e7onnasse", "grp": 1, "var": [11, 3926, 2, 0, 0, 1]}, {"verbe": "renvoyer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 2, "conj": "renvoy\u00e9", "grp": 1, "var": [8, 8255, 1, 0, 2, 1]}, {"verbe": "interc\u00e9der", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 2, "conj": "interc\u00e9d\u00e9", "grp": 1, "var": [10, 6175, 1, 0, 2, 1]}, {"verbe": "d\u00e9polluer", "A": "subjonctif", "B": "pr\u00e9sent", "i": 2, "conj": "d\u00e9pollue", "grp": 1, "var": [9, 3494, 2, 0, 2, 1]}, {"verbe": "transmuter", "A": "indicatif", "B": "plus-que-parfait", "i": 5, "conj": "transmut\u00e9", "grp": 1, "var": [10, 10245, 1, 0, 5, 1]}, {"verbe": "apponter", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 5, "conj": "appont\u00e9", "grp": 1, "var": [8, 27, 1, 0, 5, 1]}, {"verbe": "pailleter", "A": "subjonctif", "B": "imparfait", "i": 2, "conj": "pailletasse", "grp": 1, "var": [9, 7453, 2, 0, 2, 1]}, {"verbe": "parier", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 2, "conj": "pari\u00e9", "grp": 1, "var": [6, 7723, 3, 0, 2, 1]}, {"verbe": "graveler", "A": "indicatif", "B": "imparfait", "i": 4, "conj": "gravelais", "grp": 1, "var": [8, 5705, 1, 0, 4, 1]}, {"verbe": "br\u00e9dir", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 5, "conj": "br\u00e9di", "grp": 2, "var": [6, 1116, 1, 0, 5, 2]}, {"verbe": "fosserer", "A": "subjonctif", "B": "plus-que-parfait", "i": 5, "conj": "fosser\u00e9", "grp": 1, "var": [8, 5303, 2, 0, 5, 1]}, {"verbe": "r\u00e9unir", "A": "subjonctif", "B": "plus-que-parfait", "i": 0, "conj": "r\u00e9uni", "grp": 2, "var": [6, 8978, 2, 0, 0, 2]}, {"verbe": "flouter", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 0, "conj": "flout\u00e9", "grp": 1, "var": [7, 5509, 1, 0, 0, 1]}, {"verbe": "contre-profiler", "A": "conditionnel", "B": "pr\u00e9sent", "i": 0, "conj": "contre-profilerais", "grp": 1, "var": [15, 1761, 3, 0, 0, 1]}, {"verbe": "conforter", "A": "subjonctif", "B": "plus-que-parfait", "i": 0, "conj": "confort\u00e9", "grp": 1, "var": [9, 2476, 2, 0, 0, 1]}, {"verbe": "gadg\u00e9tiser", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 0, "conj": "gadg\u00e9tis\u00e9", "grp": 1, "var": [10, 5685, 3, 0, 0, 1]}, {"verbe": "rocker", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 0, "conj": "rock\u00e9", "grp": 1, "var": [6, 9272, 3, 0, 0, 1]}, {"verbe": "d\u00e9patrier", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 4, "conj": "d\u00e9patri\u00e9", "grp": 1, "var": [9, 3303, 1, 0, 4, 1]}, {"verbe": "multiposter", "A": "subjonctif", "B": "pass\u00e9", "i": 5, "conj": "multipost\u00e9", "grp": 1, "var": [11, 7076, 2, 0, 5, 1]}, {"verbe": "accomplir", "A": "subjonctif", "B": "pass\u00e9", "i": 1, "conj": "accompli", "grp": 2, "var": [9, 318, 2, 0, 1, 2]}, {"verbe": "f\u00e9briciter", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 4, "conj": "f\u00e9bricit\u00e9", "grp": 1, "var": [10, 5496, 1, 0, 4, 1]}, {"verbe": "r\u00e9assigner", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 5, "conj": "r\u00e9assign\u00e9", "grp": 1, "var": [10, 8985, 1, 0, 5, 1]}, {"verbe": "attarder", "A": "subjonctif", "B": "imparfait", "i": 1, "conj": "attardasse", "grp": 1, "var": [8, 501, 2, 0, 1, 1]}, {"verbe": "exterminer", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 0, "conj": "extermin\u00e9", "grp": 1, "var": [10, 5240, 1, 0, 0, 1]}, {"verbe": "assimiler", "A": "indicatif", "B": "pass\u00e9 simple", "i": 2, "conj": "assimilai", "grp": 1, "var": [9, 385, 1, 0, 2, 1]}, {"verbe": "refonder", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 0, "conj": "refond\u00e9", "grp": 1, "var": [8, 8655, 1, 0, 0, 1]}, {"verbe": "merdouiller", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "merdouill\u00e9", "grp": 1, "var": [11, 6899, 2, 0, 0, 1]}, {"verbe": "\u00e9chauder", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 3, "conj": "\u00e9chaud\u00e9", "grp": 1, "var": [8, 4299, 1, 0, 3, 1]}, {"verbe": "hydrolyser", "A": "subjonctif", "B": "plus-que-parfait", "i": 2, "conj": "hydrolys\u00e9", "grp": 1, "var": [10, 6098, 2, 0, 2, 1]}, {"verbe": "interner", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 5, "conj": "intern\u00e9", "grp": 1, "var": [8, 6232, 3, 0, 5, 1]}, {"verbe": "mus\u00e9ifier", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 3, "conj": "mus\u00e9ifi\u00e9", "grp": 1, "var": [9, 7109, 1, 0, 3, 1]}, {"verbe": "pitaucher", "A": "subjonctif", "B": "imparfait", "i": 2, "conj": "pitauchasse", "grp": 1, "var": [9, 7805, 2, 0, 2, 1]}, {"verbe": "rembobiner", "A": "indicatif", "B": "pass\u00e9 simple", "i": 0, "conj": "rembobinai", "grp": 1, "var": [10, 9157, 1, 0, 0, 1]}, {"verbe": "entradmirer", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 2, "conj": "entradmir\u00e9", "grp": 1, "var": [11, 5170, 1, 0, 2, 1]}, {"verbe": "\u00e9poutir", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 5, "conj": "\u00e9pouti", "grp": 2, "var": [7, 4429, 1, 0, 5, 2]}, {"verbe": "\u00e9chigner", "A": "indicatif", "B": "plus-que-parfait", "i": 3, "conj": "\u00e9chign\u00e9", "grp": 1, "var": [8, 4329, 1, 0, 3, 1]}, {"verbe": "cronir", "A": "indicatif", "B": "imparfait", "i": 1, "conj": "cronissais", "grp": 2, "var": [6, 2420, 1, 0, 1, 2]}, {"verbe": "ahaner", "A": "subjonctif", "B": "plus-que-parfait", "i": 5, "conj": "ahan\u00e9", "grp": 1, "var": [6, 92, 2, 0, 5, 1]}, {"verbe": "interclasser", "A": "indicatif", "B": "pass\u00e9 simple", "i": 4, "conj": "interclassai", "grp": 1, "var": [12, 6184, 1, 0, 4, 1]}, {"verbe": "cardinaliser", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 5, "conj": "cardinalis\u00e9", "grp": 1, "var": [12, 1933, 1, 0, 5, 1]}, {"verbe": "engranger", "A": "indicatif", "B": "plus-que-parfait", "i": 0, "conj": "engrang\u00e9", "grp": 1, "var": [9, 4778, 1, 0, 0, 1]}, {"verbe": "appr\u00e9cier", "A": "conditionnel", "B": "pr\u00e9sent", "i": 2, "conj": "appr\u00e9cierais", "grp": 1, "var": [9, 36, 3, 0, 2, 1]}, {"verbe": "refacturer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 2, "conj": "refactur\u00e9", "grp": 1, "var": [10, 8577, 1, 0, 2, 1]}, {"verbe": "r\u00e9troc\u00e9der", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 0, "conj": "r\u00e9troc\u00e9d\u00e9", "grp": 1, "var": [10, 8945, 1, 0, 0, 1]}, {"verbe": "snober", "A": "indicatif", "B": "pr\u00e9sent", "i": 3, "conj": "snobe", "grp": 1, "var": [6, 9632, 1, 0, 3, 1]}, {"verbe": "post\u00e9riser", "A": "subjonctif", "B": "imparfait", "i": 4, "conj": "post\u00e9risasse", "grp": 1, "var": [10, 7425, 2, 0, 4, 1]}, {"verbe": "abstraire", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 5, "conj": "abstrait", "grp": 3, "var": [9, 214, 1, 0, 5, 3]}, {"verbe": "buriner", "A": "indicatif", "B": "imparfait", "i": 3, "conj": "burinais", "grp": 1, "var": [7, 1442, 1, 0, 3, 1]}, {"verbe": "r\u00e9enfourcher", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 0, "conj": "r\u00e9enfourch\u00e9", "grp": 1, "var": [12, 8476, 3, 0, 0, 1]}, {"verbe": "interviewer", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 0, "conj": "interview\u00e9", "grp": 1, "var": [11, 6274, 1, 0, 0, 1]}, {"verbe": "clarifier", "A": "indicatif", "B": "pass\u00e9 simple", "i": 5, "conj": "clarifiai", "grp": 1, "var": [9, 1775, 1, 0, 5, 1]}, {"verbe": "r\u00e9approvisionner", "A": "indicatif", "B": "plus-que-parfait", "i": 5, "conj": "r\u00e9approvisionn\u00e9", "grp": 1, "var": [16, 8961, 1, 0, 5, 1]}, {"verbe": "givrer", "A": "indicatif", "B": "imparfait", "i": 1, "conj": "givrais", "grp": 1, "var": [6, 5713, 1, 0, 1, 1]}, {"verbe": "refroidir", "A": "subjonctif", "B": "pr\u00e9sent", "i": 3, "conj": "refroidisse", "grp": 2, "var": [9, 8732, 2, 0, 3, 2]}, {"verbe": "embouter", "A": "conditionnel", "B": "pass\u00e9 1\u00e8re forme", "i": 2, "conj": "embout\u00e9", "grp": 1, "var": [8, 5007, 3, 0, 2, 1]}, {"verbe": "nordester", "A": "indicatif", "B": "plus-que-parfait", "i": 5, "conj": "nordest\u00e9", "grp": 1, "var": [9, 7196, 1, 0, 5, 1]}, {"verbe": "inviter", "A": "subjonctif", "B": "pass\u00e9", "i": 1, "conj": "invit\u00e9", "grp": 1, "var": [7, 6364, 2, 0, 1, 1]}, {"verbe": "obvier", "A": "indicatif", "B": "pr\u00e9sent", "i": 1, "conj": "obvie", "grp": 1, "var": [6, 7337, 1, 0, 1, 1]}, {"verbe": "glatir", "A": "indicatif", "B": "pr\u00e9sent", "i": 0, "conj": "glatis", "grp": 2, "var": [6, 5743, 1, 0, 0, 2]}, {"verbe": "badger", "A": "subjonctif", "B": "pr\u00e9sent", "i": 4, "conj": "badge", "grp": 1, "var": [6, 934, 2, 0, 4, 1]}, {"verbe": "chemiquer", "A": "subjonctif", "B": "plus-que-parfait", "i": 4, "conj": "chemiqu\u00e9", "grp": 1, "var": [9, 2457, 2, 0, 4, 1]}, {"verbe": "linger", "A": "subjonctif", "B": "plus-que-parfait", "i": 1, "conj": "ling\u00e9", "grp": 1, "var": [6, 6671, 2, 0, 1, 1]}, {"verbe": "s\u00e9dimenter", "A": "indicatif", "B": "futur simple", "i": 2, "conj": "s\u00e9dimenterai", "grp": 1, "var": [10, 9978, 1, 0, 2, 1]}, {"verbe": "cadrer", "A": "conditionnel", "B": "pass\u00e9 2\u00e8me forme", "i": 3, "conj": "cadr\u00e9", "grp": 1, "var": [6, 1555, 3, 0, 3, 1]}, {"verbe": "\u00e9courter", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 4, "conj": "\u00e9court\u00e9", "grp": 1, "var": [8, 4442, 1, 0, 4, 1]}, {"verbe": "distordre", "A": "indicatif", "B": "futur ant\u00e9rieur", "i": 5, "conj": "distordu", "grp": 3, "var": [9, 3801, 1, 0, 5, 3]}, {"verbe": "d\u00e9climater", "A": "subjonctif", "B": "pass\u00e9", "i": 4, "conj": "d\u00e9climat\u00e9", "grp": 1, "var": [10, 3269, 2, 0, 4, 1]}, {"verbe": "d\u00e9sencha\u00eener", "A": "indicatif", "B": "pass\u00e9 simple", "i": 2, "conj": "d\u00e9sencha\u00eenai", "grp": 1, "var": [12, 2633, 1, 0, 2, 1]}, {"verbe": "concorder", "A": "subjonctif", "B": "pr\u00e9sent", "i": 1, "conj": "concorde", "grp": 1, "var": [9, 2372, 2, 0, 1, 1]}, {"verbe": "d\u00e9roger", "A": "indicatif", "B": "futur simple", "i": 0, "conj": "d\u00e9rogerai", "grp": 1, "var": [7, 3698, 1, 0, 0, 1]}, {"verbe": "merdouiller", "A": "indicatif", "B": "futur simple", "i": 3, "conj": "merdouillerai", "grp": 1, "var": [11, 6899, 1, 0, 3, 1]}, {"verbe": "trouiller", "A": "indicatif", "B": "imparfait", "i": 5, "conj": "trouillais", "grp": 1, "var": [9, 10526, 1, 0, 5, 1]}, {"verbe": "graffer", "A": "indicatif", "B": "pass\u00e9 simple", "i": 5, "conj": "graffai", "grp": 1, "var": [7, 5947, 1, 0, 5, 1]}, {"verbe": "translit\u00e9rer", "A": "indicatif", "B": "pass\u00e9 simple", "i": 5, "conj": "translit\u00e9rai", "grp": 1, "var": [12, 10230, 1, 0, 5, 1]}, {"verbe": "courbaturer", "A": "subjonctif", "B": "pass\u00e9", "i": 3, "conj": "courbatur\u00e9", "grp": 1, "var": [11, 2115, 2, 0, 3, 1]}, {"verbe": "tatillonner", "A": "subjonctif", "B": "pr\u00e9sent", "i": 0, "conj": "tatillonne", "grp": 1, "var": [11, 10425, 2, 0, 0, 1]}, {"verbe": "pr\u00e9sentifier", "A": "indicatif", "B": "imparfait", "i": 2, "conj": "pr\u00e9sentifiais", "grp": 1, "var": [12, 7776, 1, 0, 2, 1]}, {"verbe": "clignoter", "A": "indicatif", "B": "futur simple", "i": 5, "conj": "clignoterai", "grp": 1, "var": [9, 1826, 1, 0, 5, 1]}, {"verbe": "rater", "A": "indicatif", "B": "imparfait", "i": 3, "conj": "ratais", "grp": 1, "var": [5, 8734, 1, 0, 3, 1]}, {"verbe": "figurer", "A": "indicatif", "B": "imparfait", "i": 2, "conj": "figurais", "grp": 1, "var": [7, 5290, 1, 0, 2, 1]}, {"verbe": "affouager", "A": "subjonctif", "B": "pass\u00e9", "i": 0, "conj": "affouag\u00e9", "grp": 1, "var": [9, 812, 2, 0, 0, 1]}, {"verbe": "busquer", "A": "indicatif", "B": "pass\u00e9 simple", "i": 1, "conj": "busquai", "grp": 1, "var": [7, 1451, 1, 0, 1, 1]}, {"verbe": "surpeupler", "A": "indicatif", "B": "futur simple", "i": 4, "conj": "surpeuplerai", "grp": 1, "var": [10, 10013, 1, 0, 4, 1]}, {"verbe": "syntoniser", "A": "subjonctif", "B": "imparfait", "i": 5, "conj": "syntonisasse", "grp": 1, "var": [10, 10179, 2, 0, 5, 1]}, {"verbe": "compter", "A": "indicatif", "B": "pr\u00e9sent", "i": 5, "conj": "compte", "grp": 1, "var": [7, 2321, 1, 0, 5, 1]}, {"verbe": "\u00e9gorger", "A": "indicatif", "B": "pass\u00e9 compos\u00e9", "i": 2, "conj": "\u00e9gorg\u00e9", "grp": 1, "var": [7, 4658, 1, 0, 2, 1]}, {"verbe": "surjouer", "A": "subjonctif", "B": "plus-que-parfait", "i": 2, "conj": "surjou\u00e9", "grp": 1, "var": [8, 9950, 2, 0, 2, 1]}, {"verbe": "iriser", "A": "indicatif", "B": "pass\u00e9 ant\u00e9rieur", "i": 1, "conj": "iris\u00e9", "grp": 1, "var": [6, 6388, 1, 0, 1, 1]}, {"verbe": "promouvoir", "A": "subjonctif", "B": "imparfait", "i": 3, "conj": "promusse", "grp": 2, "var": [10, 7962, 2, 0, 3, 2]}, {"verbe": "panacher", "A": "subjonctif", "B": "plus-que-parfait", "i": 4, "conj": "panach\u00e9", "grp": 1, "var": [8, 7537, 2, 0, 4, 1]}, {"verbe": "morganer", "A": "subjonctif", "B": "pass\u00e9", "i": 2, "conj": "morgan\u00e9", "grp": 1, "var": [8, 6927, 2, 0, 2, 1]}, {"verbe": "craquer", "A": "subjonctif", "B": "pass\u00e9", "i": 5, "conj": "craqu\u00e9", "grp": 1, "var": [7, 2256, 2, 0, 5, 1]}, {"verbe": "rab\u00e2cher", "A": "indicatif", "B": "plus-que-parfait", "i": 3, "conj": "rab\u00e2ch\u00e9", "grp": 1, "var": [8, 8211, 1, 0, 3, 1]}, {"verbe": "argougner", "A": "indicatif", "B": "pr\u00e9sent", "i": 3, "conj": "argougne", "grp": 1, "var": [9, 165, 1, 0, 3, 1]}] |
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"test-packages/*"
],
"nohoist": [
"vscode-ui5-language-assistant/prettier",
"vscode-ui5-language-assistant/@prettier/plugin-xml",
"vscode-ui5-language-assistant/@ui5-language-assistant/language-server",
"vscode-ui5-language-assistant/@ui5-language-assistant/language-server/**"
]
},
"scripts": {
"build:quick": "lerna run compile && lerna run bundle && lerna run package",
"release:version": "lerna version --force-publish",
"release:publish": "lerna publish from-package --yes",
"ci": "npm-run-all format:validate ci:subpackages coverage:merge legal:*",
"compile": "yarn run clean && tsc --build",
"compile:watch": "yarn run clean && tsc --build --watch",
"format:fix": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore",
"format:validate": "prettier --check \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore",
"lint": "eslint . --ext .ts --fix --max-warnings=0 --ignore-path=.gitignore",
"ci:subpackages": "lerna run ci",
"test": "lerna run test",
"coverage": "lerna run coverage",
"coverage:merge": "node ./scripts/merge-coverage",
"clean": "lerna run clean",
"update-snapshots": "lerna run update-snapshots",
"legal:delete": "lerna exec \"shx rm -rf .reuse LICENSES\" || true",
"legal:copy": "lerna exec \"shx cp -r ../../.reuse .reuse && shx cp -r ../../LICENSES LICENSES\"",
"prepare": "node ./.husky/skip.js || husky install",
"hooks:pre-commit": "lint-staged",
"hooks:commit-msg": "commitlint -e",
"cset": "changeset",
"ci:version": "changeset version"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/chai": "4.2.14",
"@types/deep-equal-in-any-order": "1.0.1",
"@types/fs-extra": "9.0.11",
"@types/jest": "29.2.6",
"@types/jest-specific-snapshot": "0.5.5",
"@types/klaw-sync": "6.0.0",
"@types/lodash": "4.14.166",
"@types/rimraf": "3.0.0",
"@types/sinon": "9.0.10",
"@types/sinon-chai": "3.2.5",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.14.0",
"chai": "4.2.0",
"conventional-changelog-cli": "2.1.1",
"coveralls": "3.1.0",
"cz-conventional-changelog": "3.3.0",
"deep-equal-in-any-order": "1.0.28",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"fs-extra": "10.1.0",
"glob": "7.1.6",
"husky": "8.0.1",
"i18next": "19.0.2",
"jest": "29.5.0",
"jest-config": "29.5.0",
"jest-environment-node": "29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-esm-transformer": "1.0.0",
"jest-extended": "3.2.3",
"jest-junit": "15.0.0",
"jest-sonar": "0.2.16",
"jest-specific-snapshot": "3.0.0",
"klaw-sync": "6.0.0",
"lerna": "^7.0.2",
"lint-staged": "10.5.3",
"make-dir": "3.1.0",
"mock-fs": "^5.2.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.8.7",
"rimraf": "3.0.2",
"shx": "0.3.3",
"simple-git": "3.12.0",
"ts-jest": "29.0.5",
"ts-node": "8.5.2",
"source-map-support": "0.5.19",
"typescript": "4.9.4",
"esbuild": "0.17.12"
},
"lint-staged": {
"*.{js,ts,md,json}": [
"prettier --write"
],
"*.{ts}": [
"eslint --fix --max-warnings=0"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended/all"
]
}
}
|
{"properties": {"unk_19": 0, "length": 17, "width": 7, "ambient": 37, "unk_17": false, "unk_75": 0, "model": false, "unk_88": false, "textures": [{"original": 3943, "replacement": 5155}], "models": [{"type": 10, "values": [98407]}], "unk_186": 2, "occludes_2": false, "id": 93071}, "uniques": [{"plane": 1, "i": 76, "j": 97, "x": 15, "y": 21, "id": 93071, "type": 10, "rotation": 0}]} |
{
"kind": "t3",
"data": {
"approved_at_utc": null,
"subreddit": "IAmA",
"selftext": "Hi Reddit, we’re Milla and George, Size Specialists for myONE® Condoms and today is myONE’s 3rd birthday! \n\nAfter years of hearing that condoms don’t fit and are uncomfortable, we decided we needed to do something about it. Turns out users weren’t exaggerating, because we found that standard condoms only fit 12% of penises and that was not good enough. What if only 12% of clothes properly fit? It took years of research, planning, and development, but in October 2017 we launched myONE Condoms with 60 different sizes (10 lengths, 9 widths). \n\nNow fast forward to 2020, we spend our time having open and honest conversations with our current and potential customers about condom fit. Sometimes that’s helping them find the right size after they’ve measured and sometimes it’s giving partners the right language and tools to bring the conversation up! \n\nWe’ve heard it all, so ask us anything!\n\nProof: https://twitter.com/ONECondoms/status/1316820856039976962 \n\nCheck us out at myonecondoms.com and onecondoms.com \n\nFollow us: \n- Instagram @onecondoms\n- Twitter @onecondoms\n- Facebook @onecondoms\n\nEdit: Thank you everyone! We've gotten so many awesome questions! We're going to take a little break and finish answering questions later tonight :)",
"author_fullname": "t2_ty7by",
"saved": false,
"mod_reason_title": null,
"gilded": 0,
"clicked": false,
"title": "We're Size Specialists for myONE® Perfect Fit Condoms, a condom brand with 60 different sizes, and we help people find condoms that actually fit! Ask us anything!",
"link_flair_richtext": [
{
"e": "text",
"t": "Specialized Profession"
}
],
"subreddit_name_prefixed": "r/IAmA",
"hidden": false,
"pwls": 6,
"link_flair_css_class": "specialized",
"downs": 0,
"thumbnail_height": null,
"top_awarded_type": null,
"hide_score": false,
"name": "t3_jcd44d",
"quarantine": false,
"link_flair_text_color": "dark",
"upvote_ratio": 0.79,
"author_flair_background_color": null,
"subreddit_type": "public",
"ups": 227,
"total_awards_received": 1,
"media_embed": {},
"thumbnail_width": null,
"author_flair_template_id": null,
"is_original_content": false,
"user_reports": [],
"secure_media": null,
"is_reddit_media_domain": false,
"is_meta": false,
"category": null,
"secure_media_embed": {},
"link_flair_text": "Specialized Profession",
"can_mod_post": false,
"score": 227,
"approved_by": null,
"author_premium": false,
"thumbnail": "self",
"edited": 1602873505.0,
"author_flair_css_class": null,
"author_flair_richtext": [],
"gildings": {},
"post_hint": "self",
"content_categories": null,
"is_self": true,
"mod_note": null,
"created": 1602894745.0,
"link_flair_type": "richtext",
"wls": 6,
"removed_by_category": null,
"banned_by": null,
"author_flair_type": "text",
"domain": "self.IAmA",
"allow_live_comments": true,
"selftext_html": "<!-- SC_OFF --><div class=\"md\"><p>Hi Reddit, we’re Milla and George, Size Specialists for myONE® Condoms and today is myONE’s 3rd birthday! </p>\n\n<p>After years of hearing that condoms don’t fit and are uncomfortable, we decided we needed to do something about it. Turns out users weren’t exaggerating, because we found that standard condoms only fit 12% of penises and that was not good enough. What if only 12% of clothes properly fit? It took years of research, planning, and development, but in October 2017 we launched myONE Condoms with 60 different sizes (10 lengths, 9 widths). </p>\n\n<p>Now fast forward to 2020, we spend our time having open and honest conversations with our current and potential customers about condom fit. Sometimes that’s helping them find the right size after they’ve measured and sometimes it’s giving partners the right language and tools to bring the conversation up! </p>\n\n<p>We’ve heard it all, so ask us anything!</p>\n\n<p>Proof: <a href=\"https://twitter.com/ONECondoms/status/1316820856039976962\">https://twitter.com/ONECondoms/status/1316820856039976962</a> </p>\n\n<p>Check us out at myonecondoms.com and onecondoms.com </p>\n\n<p>Follow us: \n- Instagram @onecondoms\n- Twitter @onecondoms\n- Facebook @onecondoms</p>\n\n<p>Edit: Thank you everyone! We&#39;ve gotten so many awesome questions! We&#39;re going to take a little break and finish answering questions later tonight :)</p>\n</div><!-- SC_ON -->",
"likes": null,
"suggested_sort": null,
"banned_at_utc": null,
"view_count": null,
"archived": false,
"no_follow": false,
"is_crosspostable": false,
"pinned": false,
"over_18": false,
"preview": {
"images": [
{
"source": {
"url": "https://external-preview.redd.it/UzojJlR6Lh4-8ylM_2rirdlxLJSotRZCJeebSPC2glE.jpg?auto=webp&s=45209822fc03084d1f74012cc93f0a9ba9021de3",
"width": 140,
"height": 70
},
"resolutions": [
{
"url": "https://external-preview.redd.it/UzojJlR6Lh4-8ylM_2rirdlxLJSotRZCJeebSPC2glE.jpg?width=108&crop=smart&auto=webp&s=6e5d35f1b5a36b5709df23e226ab06c9318e1338",
"width": 108,
"height": 54
}
],
"variants": {},
"id": "S7Y6PKpMT8Vmixx1Ij2IaS-OdQLWZnvatUNdJBwb79Q"
}
],
"enabled": false
},
"all_awardings": [
{
"giver_coin_reward": 0,
"subreddit_id": null,
"is_new": false,
"days_of_drip_extension": 0,
"coin_price": 100,
"id": "award_74fe5152-7906-4991-9016-bc2d8e261200",
"penny_donate": 0,
"award_sub_type": "GLOBAL",
"coin_reward": 0,
"icon_url": "https://i.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png",
"days_of_premium": 0,
"tiers_by_required_awardings": null,
"resized_icons": [
{
"url": "https://preview.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png?width=16&height=16&auto=webp&s=094da86916604f4fc9f7f63c827e31c976f00928",
"width": 16,
"height": 16
},
{
"url": "https://preview.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png?width=32&height=32&auto=webp&s=52886a42b9871ec69a4465609472a864dbab27b1",
"width": 32,
"height": 32
},
{
"url": "https://preview.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png?width=48&height=48&auto=webp&s=63a8f5eff627778a221c58daffbfbbb87b7fe350",
"width": 48,
"height": 48
},
{
"url": "https://preview.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png?width=64&height=64&auto=webp&s=da0d9de08517646db45b766dbb0e7b94d2e97312",
"width": 64,
"height": 64
},
{
"url": "https://preview.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png?width=128&height=128&auto=webp&s=58d3501a4314be9d47349a1f7925e18f30a832e5",
"width": 128,
"height": 128
}
],
"icon_width": 2048,
"static_icon_width": 2048,
"start_date": null,
"is_enabled": false,
"awardings_required_to_grant_benefits": null,
"description": "I don't know what to do with my hands!",
"end_date": null,
"subreddit_coin_reward": 0,
"count": 1,
"static_icon_height": 2048,
"name": "Excited",
"resized_static_icons": [
{
"url": "https://preview.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png?width=16&height=16&auto=webp&s=094da86916604f4fc9f7f63c827e31c976f00928",
"width": 16,
"height": 16
},
{
"url": "https://preview.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png?width=32&height=32&auto=webp&s=52886a42b9871ec69a4465609472a864dbab27b1",
"width": 32,
"height": 32
},
{
"url": "https://preview.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png?width=48&height=48&auto=webp&s=63a8f5eff627778a221c58daffbfbbb87b7fe350",
"width": 48,
"height": 48
},
{
"url": "https://preview.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png?width=64&height=64&auto=webp&s=da0d9de08517646db45b766dbb0e7b94d2e97312",
"width": 64,
"height": 64
},
{
"url": "https://preview.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png?width=128&height=128&auto=webp&s=58d3501a4314be9d47349a1f7925e18f30a832e5",
"width": 128,
"height": 128
}
],
"icon_format": "PNG",
"icon_height": 2048,
"penny_price": 0,
"award_type": "global",
"static_icon_url": "https://i.redd.it/award_images/t5_22cerq/x069ow7ewnf51_Excited.png"
}
],
"awarders": [],
"media_only": false,
"link_flair_template_id": "bb0bffea-8150-11e4-ae47-22000bc1096c",
"can_gild": false,
"spoiler": false,
"locked": false,
"author_flair_text": null,
"treatment_tags": [],
"visited": false,
"removed_by": null,
"num_reports": null,
"distinguished": null,
"subreddit_id": "t5_2qzb6",
"mod_reason_by": null,
"removal_reason": null,
"link_flair_background_color": "#ffffff",
"id": "jcd44d",
"is_robot_indexable": true,
"report_reasons": null,
"author": "ONEcondoms",
"discussion_type": null,
"num_comments": 205,
"send_replies": true,
"whitelist_status": "all_ads",
"contest_mode": false,
"mod_reports": [],
"author_patreon_flair": false,
"author_flair_text_color": null,
"permalink": "/r/IAmA/comments/jcd44d/were_size_specialists_for_myone_perfect_fit/",
"parent_whitelist_status": "all_ads",
"stickied": false,
"url": "https://www.reddit.com/r/IAmA/comments/jcd44d/were_size_specialists_for_myone_perfect_fit/",
"subreddit_subscribers": 20603946,
"created_utc": 1602865945.0,
"num_crossposts": 0,
"media": null,
"is_video": false
}
} |
{
"id":"C2054",
"services":[
{"name":"algorithm","alternatives":["dijkstra"]}
, {"name":"vehicle","alternatives":["bike"]}
, {"name":"weighting","alternatives":["default", "fastest", "least_congested", "least_polluted"]}
]
,
"platforms":[
{
"id":"S476",
"host":"http://e212m10.istic.univ-rennes1.fr:1531/",
"services":[
{"name":"algorithm","alternatives":["dijkstra"]}
, {"name":"vehicle","alternatives":["bike", "car", "foot", "motorcycle"]}
, {"name":"weighting","alternatives":["default", "shortest", "fastest", "least_noisy", "least_congested", "least_polluted", "least_pollen", "most_scenic"]}
]
}
, {
"id":"S579",
"host":"http://d022m05.istic.univ-rennes1.fr:1539/",
"services":[
{"name":"algorithm","alternatives":["dijkstra"]}
, {"name":"vehicle","alternatives":["bike"]}
, {"name":"weighting","alternatives":["least_congested"]}
]
}
, {
"id":"S811",
"host":"http://d028m07.istic.univ-rennes1.fr:1533/",
"services":[
{"name":"algorithm","alternatives":["dijkstra"]}
, {"name":"vehicle","alternatives":["car", "motorcycle", "bike", "foot"]}
, {"name":"weighting","alternatives":["fastest", "least_congested"]}
]
}
, {
"id":"S716",
"host":"http://d026m04.istic.univ-rennes1.fr:1533/",
"services":[
{"name":"algorithm","alternatives":["dijkstra"]}
, {"name":"vehicle","alternatives":["car", "foot", "scooter", "bike"]}
, {"name":"weighting","alternatives":["default", "least_pollen", "most_ozonic", "least_polluted", "least_noisy"]}
]
}
]
}
|
["b85400a5e1278639ec4a90fd3ac089da22bd06a9"] |
[[{"py/object": "class_definitions.PDFTerm", "entity_id": 4491161672, "facet": "dataset", "id": 4494748304, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.55387,0.77097,0.59451,0.78337", "facet": "dataset", "id": 4494748416, "page_number": "0", "pdf_term_id": 4494748304, "text": "ajeeb", "type": "PDFWord", "word_id": "w-1-0-7-51"}], "sent_id": "s-1-0-7-2", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491162120, "facet": "dataset", "id": 4494748696, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.50107,0.27461,0.57088,0.28820", "facet": "dataset", "id": 4494748976, "page_number": "0", "pdf_term_id": 4494748696, "text": "berkeley", "type": "PDFWord", "word_id": "w-1-0-1-28"}], "sent_id": "s-1-0-1-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491162120, "facet": "dataset", "id": 4494748920, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.39381,0.29219,0.46039,0.30578", "facet": "dataset", "id": 4494749088, "page_number": "0", "pdf_term_id": 4494748920, "text": "berkeley", "type": "PDFWord", "word_id": "w-1-0-1-38"}], "sent_id": "s-1-0-1-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491162120, "facet": "dataset", "id": 4494749032, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.60369,0.29219,0.67026,0.30578", "facet": "dataset", "id": 4494749200, "page_number": "0", "pdf_term_id": 4494749032, "text": "berkeley", "type": "PDFWord", "word_id": "w-1-0-1-46"}], "sent_id": "s-1-0-1-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491162120, "facet": "dataset", "id": 4494749256, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.25685,0.39158,0.32080,0.40397", "facet": "dataset", "id": 4494749312, "page_number": "0", "pdf_term_id": 4494749256, "text": "berkeley", "type": "PDFWord", "word_id": "w-1-0-3-3"}], "sent_id": "s-1-0-3-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4494749144, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.20678,0.40870,0.25535,0.42110", "facet": "dataset", "id": 4494749424, "page_number": "0", "pdf_term_id": 4494749144, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-3-18"}], "sent_id": "s-1-0-3-1", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4494749368, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.67810,0.42574,0.72667,0.43814", "facet": "dataset", "id": 4494749536, "page_number": "0", "pdf_term_id": 4494749368, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-3-42"}], "sent_id": "s-1-0-3-2", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4494749480, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.67681,0.45999,0.72538,0.47238", "facet": "dataset", "id": 4494749648, "page_number": "0", "pdf_term_id": 4494749480, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-3-76"}], "sent_id": "s-1-0-3-4", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4494749592, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.73869,0.58127,0.78726,0.59367", "facet": "dataset", "id": 4493947008, "page_number": "0", "pdf_term_id": 4494749592, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-5-13"}], "sent_id": "s-1-0-5-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493946952, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.35262,0.59840,0.40119,0.61079", "facet": "dataset", "id": 4493947120, "page_number": "0", "pdf_term_id": 4493946952, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-5-23"}], "sent_id": "s-1-0-5-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493947064, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.41422,0.61544,0.46280,0.62784", "facet": "dataset", "id": 4493947232, "page_number": "0", "pdf_term_id": 4493947064, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-5-45"}], "sent_id": "s-1-0-5-1", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493947176, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.83309,0.64968,0.88166,0.66208", "facet": "dataset", "id": 4493947344, "page_number": "0", "pdf_term_id": 4493947176, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-5-94"}], "sent_id": "s-1-0-5-4", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493947400, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.42781,0.77097,0.47639,0.78337", "facet": "dataset", "id": 4493947456, "page_number": "0", "pdf_term_id": 4493947400, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-7-48"}], "sent_id": "s-1-0-7-2", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493947512, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.18669,0.80514,0.23497,0.81753", "facet": "dataset", "id": 4493947568, "page_number": "0", "pdf_term_id": 4493947512, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-7-74"}], "sent_id": "s-1-0-7-3", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493947624, "page_number": "0", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.33510,0.82226,0.38367,0.83466", "facet": "dataset", "id": 4493947680, "page_number": "0", "pdf_term_id": 4493947624, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-7-80"}], "sent_id": "s-1-0-7-4", "type": "PDFTerm"}], [{"py/object": "class_definitions.PDFTerm", "entity_id": 4491161672, "facet": "dataset", "id": 4494748472, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.65065,0.65991,0.68835,0.67231", "facet": "dataset", "id": 4494748528, "page_number": "1", "pdf_term_id": 4494748472, "text": "ajeeb", "type": "PDFWord", "word_id": "w-1-0-12-42"}], "sent_id": "s-1-0-12-1", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491161672, "facet": "dataset", "id": 4494748360, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.29903,0.67703,0.33967,0.68943", "facet": "dataset", "id": 4494748640, "page_number": "1", "pdf_term_id": 4494748360, "text": "ajeeb", "type": "PDFWord", "word_id": "w-1-0-12-58"}], "sent_id": "s-1-0-12-2", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491161672, "facet": "dataset", "id": 4494748584, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.30986,0.69408,0.34756,0.70647", "facet": "dataset", "id": 4494748752, "page_number": "1", "pdf_term_id": 4494748584, "text": "ajeeb", "type": "PDFWord", "word_id": "w-1-0-12-77"}], "sent_id": "s-1-0-12-3", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491161672, "facet": "dataset", "id": 4494748808, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.72536,0.84658,0.76797,0.85897", "facet": "dataset", "id": 4494748864, "page_number": "1", "pdf_term_id": 4494748808, "text": "ajeeb", "type": "PDFWord", "word_id": "w-1-0-14-90"}], "sent_id": "s-1-0-14-4", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493947736, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.13716,0.09537,0.18573,0.10776", "facet": "dataset", "id": 4493947792, "page_number": "1", "pdf_term_id": 4493947736, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-8-0"}], "sent_id": "s-1-0-8-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493947848, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.47840,0.18090,0.52698,0.19329", "facet": "dataset", "id": 4493947904, "page_number": "1", "pdf_term_id": 4493947848, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-8-116"}], "sent_id": "s-1-0-8-6", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493947288, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.27142,0.19802,0.31999,0.21041", "facet": "dataset", "id": 4493948016, "page_number": "1", "pdf_term_id": 4493947288, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-8-131"}], "sent_id": "s-1-0-8-7", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493947960, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.43635,0.23218,0.48493,0.24458", "facet": "dataset", "id": 4493948128, "page_number": "1", "pdf_term_id": 4493947960, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-8-162"}], "sent_id": "s-1-0-8-9", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493948072, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.83306,0.23218,0.88164,0.24458", "facet": "dataset", "id": 4493948240, "page_number": "1", "pdf_term_id": 4493948072, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-8-172"}], "sent_id": "s-1-0-8-9", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493948296, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.67982,0.36908,0.72839,0.38147", "facet": "dataset", "id": 4493948352, "page_number": "1", "pdf_term_id": 4493948296, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-8-336"}], "sent_id": "s-1-0-8-16", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493948408, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.16906,0.47173,0.21764,0.48413", "facet": "dataset", "id": 4493948464, "page_number": "1", "pdf_term_id": 4493948408, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-8-447"}], "sent_id": "s-1-0-8-20", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493948520, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.70958,0.54165,0.75815,0.55405", "facet": "dataset", "id": 4493948576, "page_number": "1", "pdf_term_id": 4493948520, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-10-12"}], "sent_id": "s-1-0-10-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493948184, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.21753,0.55877,0.26610,0.57117", "facet": "dataset", "id": 4493948688, "page_number": "1", "pdf_term_id": 4493948184, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-10-19"}], "sent_id": "s-1-0-10-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493948632, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.39841,0.55877,0.44699,0.57117", "facet": "dataset", "id": 4493948800, "page_number": "1", "pdf_term_id": 4493948632, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-10-23"}], "sent_id": "s-1-0-10-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493948744, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.43309,0.64279,0.48166,0.65519", "facet": "dataset", "id": 4493948912, "page_number": "1", "pdf_term_id": 4493948744, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-12-20"}], "sent_id": "s-1-0-12-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493948968, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.55123,0.86370,0.59980,0.87610", "facet": "dataset", "id": 4493949024, "page_number": "1", "pdf_term_id": 4493948968, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-14-102"}], "sent_id": "s-1-0-14-5", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493948856, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.51116,0.88074,0.55973,0.89314", "facet": "dataset", "id": 4493949136, "page_number": "1", "pdf_term_id": 4493948856, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-14-118"}], "sent_id": "s-1-0-14-5", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493949080, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.83307,0.88074,0.88165,0.89314", "facet": "dataset", "id": 4493949248, "page_number": "1", "pdf_term_id": 4493949080, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-14-124"}], "sent_id": "s-1-0-14-6", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491131032, "facet": "dataset", "id": 4493950088, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.60623,0.69408,0.65578,0.70647", "facet": "dataset", "id": 4493950368, "page_number": "1", "pdf_term_id": 4493950088, "text": "ectaco", "type": "PDFWord", "word_id": "w-1-0-12-90"}], "sent_id": "s-1-0-12-4", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491131032, "facet": "dataset", "id": 4493950424, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.83310,0.79521,0.88167,0.80761", "facet": "dataset", "id": 4493950480, "page_number": "1", "pdf_term_id": 4493950424, "text": "ectaco", "type": "PDFWord", "word_id": "w-1-0-14-34"}], "sent_id": "s-1-0-14-2", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491131032, "facet": "dataset", "id": 4493950536, "page_number": "1", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.70420,0.82946,0.75277,0.84185", "facet": "dataset", "id": 4493950592, "page_number": "1", "pdf_term_id": 4493950536, "text": "ectaco", "type": "PDFWord", "word_id": "w-1-0-14-71"}], "sent_id": "s-1-0-14-3", "type": "PDFTerm"}], [{"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493949192, "page_number": "2", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.73961,0.64643,0.78818,0.65882", "facet": "dataset", "id": 4493949360, "page_number": "2", "pdf_term_id": 4493949192, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-18-16"}], "sent_id": "s-1-0-18-1", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493949304, "page_number": "2", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.18356,0.69771,0.23213,0.71011", "facet": "dataset", "id": 4493949472, "page_number": "2", "pdf_term_id": 4493949304, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-18-55"}], "sent_id": "s-1-0-18-2", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493949416, "page_number": "2", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.11765,0.71483,0.16622,0.72723", "facet": "dataset", "id": 4493949584, "page_number": "2", "pdf_term_id": 4493949416, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-18-71"}], "sent_id": "s-1-0-18-2", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493949528, "page_number": "2", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.15046,0.73196,0.19903,0.74435", "facet": "dataset", "id": 4493949696, "page_number": "2", "pdf_term_id": 4493949528, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-18-90"}], "sent_id": "s-1-0-18-3", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493949640, "page_number": "2", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.46250,0.74908,0.51107,0.76147", "facet": "dataset", "id": 4493949808, "page_number": "2", "pdf_term_id": 4493949640, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-18-112"}], "sent_id": "s-1-0-18-3", "type": "PDFTerm"}], [{"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493949864, "page_number": "3", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.75540,0.72241,0.80397,0.73481", "facet": "dataset", "id": 4493949920, "page_number": "3", "pdf_term_id": 4493949864, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-21-49"}], "sent_id": "s-1-0-21-2", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493949752, "page_number": "3", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.63281,0.85923,0.68139,0.87163", "facet": "dataset", "id": 4493950032, "page_number": "3", "pdf_term_id": 4493949752, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-21-190"}], "sent_id": "s-1-0-21-9", "type": "PDFTerm"}], [{"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493949976, "page_number": "4", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.76240,0.46173,0.81097,0.47413", "facet": "dataset", "id": 4493950144, "page_number": "4", "pdf_term_id": 4493949976, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-24-12"}], "sent_id": "s-1-0-24-0", "type": "PDFTerm"}, {"py/object": "class_definitions.PDFTerm", "entity_id": 4491130808, "facet": "dataset", "id": 4493950200, "page_number": "4", "pdf_words": [{"py/object": "class_definitions.PDFWord", "bdr": "0.60383,0.59855,0.65240,0.61094", "facet": "dataset", "id": 4493950256, "page_number": "4", "pdf_term_id": 4493950200, "text": "arabic", "type": "PDFWord", "word_id": "w-1-0-24-147"}], "sent_id": "s-1-0-24-6", "type": "PDFTerm"}]]
|
{
"name": "bower install",
"version": "0.0.1",
"ignore": [
"**/.*",
"node_modules",
"public/**/bower_components"
],
"dependencies":{
"file-saver": "https://github.com/eligrey/FileSaver.js.git",
"highcharts": "git@github.com:highcharts/highcharts.git",
"font-awesome": "git@github.com:FortAwesome/Font-Awesome.git"
}
} |
{
"configurations": {
"CVE_data_version": "4.0",
"nodes": []
},
"cve": {
"CVE_data_meta": {
"ASSIGNER": "cve@gitlab.com",
"ID": "CVE-2021-22214"
},
"data_format": "MITRE",
"data_type": "CVE",
"data_version": "4.0",
"description": {
"description_data": [
{
"lang": "en",
"value": "When requests to the internal network for webhooks are enabled, a server-side request forgery vulnerability in GitLab CE/EE affecting all versions starting from 10.5 was possible to exploit for an unauthenticated attacker even on a GitLab instance where registration is limited"
}
]
},
"problemtype": {
"problemtype_data": [
{
"description": []
}
]
},
"references": {
"reference_data": [
{
"name": "https://gitlab.com/gitlab-org/gitlab/-/issues/322926",
"refsource": "MISC",
"tags": [],
"url": "https://gitlab.com/gitlab-org/gitlab/-/issues/322926"
},
{
"name": "https://hackerone.com/reports/1110131",
"refsource": "MISC",
"tags": [],
"url": "https://hackerone.com/reports/1110131"
},
{
"name": "https://gitlab.com/gitlab-org/cves/-/blob/master/2021/CVE-2021-22214.json",
"refsource": "CONFIRM",
"tags": [],
"url": "https://gitlab.com/gitlab-org/cves/-/blob/master/2021/CVE-2021-22214.json"
}
]
}
},
"impact": {},
"lastModifiedDate": "2021-06-08T15:17Z",
"publishedDate": "2021-06-08T15:15Z"
} |
[
"White House spokesman Sean Spicer said, “As the president has stated before, a thorough investigation will confirm that there was no collusion between the campaign and any foreign entity.’’\n\nWhile there has been a loud public debate in recent days over the question of whether the president might have attempted to obstruct justice in his private dealings with Comey, whom Trump fired last week, people familiar with the matter said investigators on the case are more focused on Russian influence operations and possible financial crimes.",
"The FBI’s investigation seeks to determine whether and to what extent Trump associates were in contact with Kremlin operatives, what business dealings they might have had in Russia, and whether they in any way facilitated the hacking and publishing of emails from the Democratic National Committee and Hillary Clinton’s campaign chairman, John Podesta, during the presidential campaign.",
"[Appointment of Mueller could complicate other probes into alleged Russian meddling]\n\nA grand jury in Alexandria, Va., recently issued a subpoena for records related to Flynn’s business, the Flynn Intel Group, which was paid more than $500,000 by a company owned by a Turkish American businessman close to top Turkish officials, according to people familiar with the matter.",
"Although the case began quietly last July as an effort to determine whether any Trump associates coordinated with Russian operatives to meddle in the presidential election campaign, the investigative work now being done by the FBI also includes determining whether any financial crimes were committed by people close to the president.",
"The law enforcement investigation into possible coordination between Russia and the Trump campaign has identified a current White House official as a significant person of interest, showing that the probe is reaching into the highest levels of government, according to people familiar with the matter.",
"(Peter Stevenson,Jason Aldag,Whitney Leaming/The Washington Post)\n\n[Graphic: What we know so far about Team Trump’s ties to Russian interests]\n\nPeople familiar with the investigation said the intensifying effort does not mean criminal charges are near, or that any such charges will result.",
"The sources emphasized that investigators remain keenly interested in people who previously wielded influence in the Trump campaign and administration but are no longer part of it, including former national security adviser Michael Flynn and former campaign chairman Paul Manafort.",
"The people familiar with the matter said the probe has sharpened into something more fraught for the White House, the FBI and the Justice Department — particularly because of the public steps investigators know they now need to take, the people said.",
"The president’s son-in-law initially omitted contacts with foreign leaders from a national security questionnaire, though his lawyer has said publicly he submitted the form prematurely and informed the FBI soon after that he would provide an update.",
"The revelation comes as the investigation appears to be entering a more overtly active phase, with investigators shifting from work that has remained largely hidden from the public to conducting interviews and using a grand jury to issue subpoenas.",
"Page was the subject of a secret warrant last year issued by the Foreign Intelligence Surveillance Court, based on suspicions he might have been acting as an agent of the Russian government, according to people familiar with the matter.",
"Current administration officials who have acknowledged contacts with Russian officials include President Trump’s son-in-law, Jared Kushner, as well as Attorney General Jeff Sessions and Secretary of State Rex Tillerson.",
"[Notes made by FBI Director Comey say Trump pressured him to end Flynn probe]\n\nThe White House also has acknowledged that Kushner met with Kislyak, the Russian ambassador to the United States, in late November.",
"A small group of lawmakers known as the Gang of Eight was notified of the change in tempo and focus in the investigation at a classified briefing Wednesday evening, the people familiar with the matter said.",
"Justice Department spokeswoman Sarah Isgur Flores said, “I can’t confirm or deny the existence or nonexistence of investigations or targets of investigations.” An FBI spokesman declined to comment.",
"Earlier this week, Deputy Attorney General Rod J. Rosenstein appointed former FBI director Robert S. Mueller III to serve as special counsel and lead the investigation into Russian meddling.",
"He had been in contact with former Trump adviser Carter Page, though Page has said he shared only “basic immaterial information and publicly available research documents” with the Russian.",
"Flynn discussed U.S. sanctions against Russia with Russia’s ambassador to the United States during the month before Trump took office, and he withheld that fact from the vice president.",
"Vnesheconombank handles development for the state, and in early 2015, a man purporting to be one of its New York-based employees was arrested and accused of being an unregistered spy.",
"When subpoenas are issued or interviews are requested, it is possible the people being asked to talk or provide documents will reveal publicly what they were asked about.",
"The senior White House adviser under scrutiny by investigators is someone close to the president, according to these people, who would not further identify the official.",
"White House offers shifting explanations of Trump’s disclosures to Russians\n\nTrump revealed highly classified information to Russian foreign minister and ambassador",
"The Flynn Intel Group was paid for research on Fethullah Gulen, a cleric who Turkey’s current president believes was responsible for a coup attempt last summer.",
"Kushner also has acknowledged that he met with the head of a Russian development bank, Vnesheconombank, which has been under U.S. sanctions since July 2014.",
"It is unclear exactly how Mueller’s leadership will affect the direction of the probe, and he is already bringing in new people to work on the team.",
"Flynn resigned in February after disclosures that he had lied to administration officials about his contacts with Russian Ambassador Sergey Kislyak.",
"Flynn also received $45,000 to appear in 2015 with Russian President Vladimir Putin at a dinner for RT, a Kremlin-controlled media organization.",
"That prompted then-acting attorney general Sally Yates to warn the White House’s top lawyer that Flynn might be susceptible to blackmail.",
"Separately from the probe now run by Mueller, Flynn is being investigated by the Pentagon’s top watchdog for his foreign payments.",
"Flynn retroactively registered with the Justice Department in March as a paid foreign agent for Turkish interests.",
"Several congressional committees are also investigating, though their probes could not produce criminal charges.",
"Then-FBI Director James B. Comey publicly confirmed the existence of the investigation in March.",
"Those familiar with the case said its significance had increased before Mueller’s appointment.",
"The intensity of the probe is expected to accelerate in the coming weeks, the people said.",
"Page has denied any wrongdoing, and accused the government of violating his civil rights.",
"That man — Evgeny Buryakov — ultimately pleaded guilty and was eventually deported.",
"Flynn stepped down after The Washington Post reported on the contents of the call.",
"A memo by Comey alleged that Trump asked that the probe into Flynn be shut down.",
"The president has nonetheless seemed to defend his former adviser.",
"Ellen Nakashima and Ashley Parker contributed to this report.",
"Read more:\n\nWhat’s next in the Russia investigation?",
"The week’s biggest bombshells."
] |
["8920ba8846457b8a6adc6338d50049a1ba9a206a","4365e32f255347ac5da6483b2830534ff4f37239","4ea359725ad3ffdacc834f1a2ab1622e79e94a5a","c101783b3f289b784baafa3acdb728630a5ad7fd","f629cf71838c9aa3ba03ca29dcb7c40fcb79b941","a31cfd1c16fefff1d688a085f7aba9e72de5fe01","c76318634af174926cf99cb473beb60a8799aca7","f09e39ecf054f0e7379ec1c35a9e7369bafaccd8"] |
{"id":318803,"type":3,"name":"POWER SPOT!!","image":"//lain.bgm.tv/pic/cover/m/57/4e/318803_MfBRz.jpg","rating":{"total":9,"count":{"1":0,"2":0,"3":0,"4":0,"5":0,"6":2,"7":2,"8":2,"9":1,"10":2},"score":7.9},"summary":"【特典】\r\n・録り下ろしオリジナルソングCD1(歌:DiverDiva)","info":"<li><span>艺术家: </span>DiverDiva(朝香果林(CV:<a href=\"/person/18430\">久保田未夢</a>)、宮下愛(CV:<a href=\"/person/23846\">村上奈津実</a>))</li><li><span>作曲: </span><a href=\"/person/13780\">Carlos K.</a></li><li><span>厂牌: </span><a href=\"/person/32509\">バンダイナムコアーツ</a></li><li><span>编曲: </span><a href=\"/person/13780\">Carlos K.</a></li><li><span>别名: </span>ラブライブ! 虹ヶ咲学園スクールアイドル同好会 オリジナルソングCD1</li><li><span>发售日期: </span>2020-12-24</li><li><span>价格: </span>¥ 4,950</li><li><span>碟片数量: </span>1</li><li><span>作词: </span>鈴木エレカ</li>","collection":{"wish":2,"collect":13,"doing":1,"on_hold":1},"tags":[{"name":"lovelive","count":2},{"name":"虹团","count":1},{"name":"single","count":1},{"name":"角色歌","count":1}],"eps":[{"id":0,"url":"http://bgm.tv/ep/0","type":0,"sort":0,"name":"","name_cn":"","duration":"","airdate":"","comment":0,"desc":"","status":""}],"disc":[{"title":"Disc 1","disc":[{"title":"1 POWER SPOT!!","href":"/ep/997141"},{"title":"2 POWER SPOT!! (Off Vocal)","href":"/ep/997142"}]}],"staff":[{"id":23846,"image":"//lain.bgm.tv/pic/crt/g/fa/1b/23846_prsn_nj4Eb.jpg","name":"村上奈津实","desc":"艺术家"},{"id":18430,"image":"//lain.bgm.tv/pic/crt/g/7f/37/18430_prsn_gyz2x.jpg","name":"久保田未梦","desc":"艺术家"},{"id":13780,"image":"//lain.bgm.tv/pic/crt/g/8b/a3/13780_prsn_GJ4Qe.jpg","name":"Carlos K.","desc":"作曲"},{"id":32509,"image":"//lain.bgm.tv/pic/crt/g/be/09/32509_prsn_JxiMI.jpg","name":"バンダイナムコアーツ","desc":"厂牌"}],"relations":[{"id":296659,"image":"//lain.bgm.tv/pic/cover/m/a7/35/296659_o709D.jpg","title":"ラブライブ!虹ヶ咲学園スクールアイドル同好会","type":"动画","url":"https://bgm.tv/subject/296659"}]} |
[
{ "lang": "en", "name": "english" },
{ "lang": "es", "name": "español" },
{ "lang": "ru", "name": "русский"}
] |
{"970600":{"success":true,"data":{"type":"game","name":"Paranoia: Deliver Me","steam_appid":970600,"required_age":0,"is_free":false,"dlc":[990170],"detailed_description":"A name forgotten, a memory lost.<br \/>\r\nThe girl is losing her mind in the paranoia, while the demons surround her.<br \/>\r\nShe asks for forgiveness after being betrayed.<br \/>\r\nThen the song of love and hate is sacrificed.<br \/>\r\n<br \/>\r\nThe game 'Paranoia: Deliver Me' is based on the novel Paranoia, by Yuli. It is an ADV game about youth and school. The story is about a girl named Lingluo, who is trying her best to pursue her dreams of music. She lost her best friend, her confidence, and then was locked inside her own mind. Will she manage to escape from her self-made prison to reunite with her best friend and rebuild her dreams? Or will she remain trapped in her own mind?<br \/>\r\nLingluo's fate lies in your hands...","about_the_game":"A name forgotten, a memory lost.<br \/>\r\nThe girl is losing her mind in the paranoia, while the demons surround her.<br \/>\r\nShe asks for forgiveness after being betrayed.<br \/>\r\nThen the song of love and hate is sacrificed.<br \/>\r\n<br \/>\r\nThe game 'Paranoia: Deliver Me' is based on the novel Paranoia, by Yuli. It is an ADV game about youth and school. The story is about a girl named Lingluo, who is trying her best to pursue her dreams of music. She lost her best friend, her confidence, and then was locked inside her own mind. Will she manage to escape from her self-made prison to reunite with her best friend and rebuild her dreams? Or will she remain trapped in her own mind?<br \/>\r\nLingluo's fate lies in your hands...","short_description":"Based on the best seller Paranoia, the story about Lingluo's college life will bring you to a world unknown. She pursues her music dream without knowing her life is about to be turned upside down. Losing her best friend and her confidence, she plunges into the depth of despair. What will she do?","supported_languages":"English","header_image":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/header.jpg?t=1548310659","website":null,"pc_requirements":{"minimum":"<strong>Minimum:<\/strong><br><ul class=\"bb_ul\"><li><strong>OS:<\/strong> WIN7 SP1\/WIN8\/WIN10\/XP<br><\/li><li><strong>Processor:<\/strong> Intel Core 2DOU 2GHz<br><\/li><li><strong>Memory:<\/strong> 1 GB RAM<br><\/li><li><strong>Graphics:<\/strong> VRAM128M<br><\/li><li><strong>DirectX:<\/strong> Version 9.0<br><\/li><li><strong>Storage:<\/strong> 2 GB available space<\/li><\/ul>"},"mac_requirements":[],"linux_requirements":[],"developers":["Heart-7 Culture Communication (Shanghai) Co., Ltd"],"publishers":["SakuraGame"],"package_groups":[],"platforms":{"windows":true,"mac":false,"linux":false},"categories":[{"id":2,"description":"Single-player"}],"genres":[{"id":"25","description":"Adventure"},{"id":"23","description":"Indie"},{"id":"3","description":"RPG"},{"id":"28","description":"Simulation"}],"screenshots":[{"id":0,"path_thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/ss_c1fecc6cdb01c9e1aafb4c353f23867e306f8aa6.600x338.jpg?t=1548310659","path_full":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/ss_c1fecc6cdb01c9e1aafb4c353f23867e306f8aa6.1920x1080.jpg?t=1548310659"},{"id":1,"path_thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/ss_e7d6d9e7ca0b406f77ea6e253c46eb6409fe6e32.600x338.jpg?t=1548310659","path_full":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/ss_e7d6d9e7ca0b406f77ea6e253c46eb6409fe6e32.1920x1080.jpg?t=1548310659"},{"id":2,"path_thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/ss_56456cfb742205f309e7d58fd72f1d995e3fcb93.600x338.jpg?t=1548310659","path_full":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/ss_56456cfb742205f309e7d58fd72f1d995e3fcb93.1920x1080.jpg?t=1548310659"},{"id":3,"path_thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/ss_ad69b71ce9f79167a097b3dd4403f23aee5beaa5.600x338.jpg?t=1548310659","path_full":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/ss_ad69b71ce9f79167a097b3dd4403f23aee5beaa5.1920x1080.jpg?t=1548310659"},{"id":4,"path_thumbnail":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/ss_4fca869660a25b087c502d382db610cef89c8252.600x338.jpg?t=1548310659","path_full":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/ss_4fca869660a25b087c502d382db610cef89c8252.1920x1080.jpg?t=1548310659"}],"release_date":{"coming_soon":true,"date":"27 Feb, 2019"},"support_info":{"url":"http:\/\/www.sakuragame.com","email":"gm@sakuragame.com"},"background":"https:\/\/steamcdn-a.akamaihd.net\/steam\/apps\/970600\/page_bg_generated_v6b.jpg?t=1548310659","content_descriptors":{"ids":[2,5],"notes":"This game contains a little violence and gore. And you may find some self-harm content but they are just in the delusion of the heroine."}}}} |
[{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.459333","street":{"id":943965,"name":"On or near Gainsborough Gardens"},"longitude":"-0.351128"},"context":"","outcome_status":null,"persistent_id":"","id":60981151,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.464924","street":{"id":943908,"name":"On or near Heath Road"},"longitude":"-0.352841"},"context":"","outcome_status":null,"persistent_id":"","id":60981155,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.460520","street":{"id":944057,"name":"On or near Lanigan Drive"},"longitude":"-0.363983"},"context":"","outcome_status":null,"persistent_id":"","id":60981248,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.462890","street":{"id":943887,"name":"On or near Wolsey Close"},"longitude":"-0.357248"},"context":"","outcome_status":null,"persistent_id":"","id":60981196,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.460412","street":{"id":943896,"name":"On or near Park Road"},"longitude":"-0.358157"},"context":"","outcome_status":null,"persistent_id":"","id":60981189,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.462890","street":{"id":943887,"name":"On or near Wolsey Close"},"longitude":"-0.357248"},"context":"","outcome_status":null,"persistent_id":"","id":60981180,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.462890","street":{"id":943887,"name":"On or near Wolsey Close"},"longitude":"-0.357248"},"context":"","outcome_status":null,"persistent_id":"","id":60981179,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.460669","street":{"id":943894,"name":"On or near Priory Road"},"longitude":"-0.354650"},"context":"","outcome_status":null,"persistent_id":"","id":60981160,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.464924","street":{"id":943908,"name":"On or near Heath Road"},"longitude":"-0.352841"},"context":"","outcome_status":null,"persistent_id":"","id":60981157,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.458046","street":{"id":943945,"name":"On or near Queensbridge Park"},"longitude":"-0.345949"},"context":"","outcome_status":null,"persistent_id":"","id":60981121,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.463242","street":{"id":943916,"name":"On or near Eaton Road"},"longitude":"-0.348396"},"context":"","outcome_status":null,"persistent_id":"","id":60981136,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.459333","street":{"id":943965,"name":"On or near Gainsborough Gardens"},"longitude":"-0.351128"},"context":"","outcome_status":null,"persistent_id":"","id":60981147,"location_subtype":"","month":"2017-11"},{"category":"anti-social-behaviour","location_type":"Force","location":{"latitude":"51.465712","street":{"id":943917,"name":"On or near Dalmeny Crescent"},"longitude":"-0.350682"},"context":"","outcome_status":null,"persistent_id":"","id":60981149,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.465049","street":{"id":943888,"name":"On or near Tudor Road"},"longitude":"-0.349583"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"bc16a0e4fe92ecce9bcd80fabcd39176030f4641758ff13c89c55db8f7d4749e","id":61075201,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.467454","street":{"id":943939,"name":"On or near Clayton Road"},"longitude":"-0.342212"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"4dfe53db13cca9fb19f638b2060189995ec613f54b8ad93762f11244326424e4","id":61003446,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.461709","street":{"id":943911,"name":"On or near Hall Road"},"longitude":"-0.348696"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2017-12"},"persistent_id":"6a5a6bd745d07c2697b4ecea5b67fa28c2bb5b19d9e72eae875c38f0285ec6bf","id":61040451,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.456928","street":{"id":943959,"name":"On or near Old Manor Drive"},"longitude":"-0.352769"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"644c862e35fdb5662e3a7f75dd2e6f9dce664db6302d7dfc217638c431a2813a","id":61091423,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.462398","street":{"id":943898,"name":"On or near Maswell Park Road"},"longitude":"-0.360001"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"ab3f4a1fc85dcadb14e364bc741186d82f5875bdd6d48639594d07efef13f6cd","id":61106236,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.460882","street":{"id":943891,"name":"On or near Southland Way"},"longitude":"-0.351288"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"b74de775bc008b40b52e851af10a9fb43cc75fe5e9c35929afc09f96185dc04a","id":61120488,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.461709","street":{"id":943911,"name":"On or near Hall Road"},"longitude":"-0.348696"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"007e0403a267be54d732e666b3636dbba9f722d5b50723f33d46346adbfaac1b","id":61124428,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.467454","street":{"id":943939,"name":"On or near Clayton Road"},"longitude":"-0.342212"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"40f92f829fe7735be053e8cced406a42248d05f3a384bc26e583e5d1795a3e1f","id":61130541,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.459333","street":{"id":943965,"name":"On or near Gainsborough Gardens"},"longitude":"-0.351128"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2018-02"},"persistent_id":"bac8c13c1c73873cf0654166662ebe7a035e46efc6ab5a2fdac08c50615dc9ed","id":61116583,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.460947","street":{"id":943903,"name":"On or near Leamington Close"},"longitude":"-0.354597"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"323670b37c0141a885178ec2d5aab3b7f909877294c7732c9330bc87deb13ab0","id":61134420,"location_subtype":"","month":"2017-11"},{"category":"burglary","location_type":"Force","location":{"latitude":"51.458213","street":{"id":943947,"name":"On or near Consort Mews"},"longitude":"-0.346893"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2018-01"},"persistent_id":"b4f85f1b0dc03efb8f90c511a51148d1918ef59737cb3b0afc199331fb1cf853","id":61130153,"location_subtype":"","month":"2017-11"},{"category":"drugs","location_type":"Force","location":{"latitude":"51.465712","street":{"id":943917,"name":"On or near Dalmeny Crescent"},"longitude":"-0.350682"},"context":"","outcome_status":{"category":"Offender given a drugs possession warning","date":"2017-11"},"persistent_id":"c6cb81a6d28365d8040e80418e672104e32c63f8df7d724158caaeb696148a49","id":61044972,"location_subtype":"","month":"2017-11"},{"category":"drugs","location_type":"Force","location":{"latitude":"51.459333","street":{"id":943965,"name":"On or near Gainsborough Gardens"},"longitude":"-0.351128"},"context":"","outcome_status":{"category":"Offender given a drugs possession warning","date":"2017-11"},"persistent_id":"dad252c4231e8658c9d29a798dc07775b79794c9afb814c7aa8cd1d7df91d8f8","id":61086542,"location_subtype":"","month":"2017-11"},{"category":"drugs","location_type":"Force","location":{"latitude":"51.465712","street":{"id":943917,"name":"On or near Dalmeny Crescent"},"longitude":"-0.350682"},"context":"","outcome_status":{"category":"Offender given a drugs possession warning","date":"2017-11"},"persistent_id":"828663ae81a8e17e9861a193ab67bed96a454cbecc296520f1d7ad9122243fcd","id":61051494,"location_subtype":"","month":"2017-11"},{"category":"drugs","location_type":"Force","location":{"latitude":"51.462890","street":{"id":943887,"name":"On or near Wolsey Close"},"longitude":"-0.357248"},"context":"","outcome_status":{"category":"Court result unavailable","date":"2018-05"},"persistent_id":"c30b774be289d08e70166de1549e7b7e5f578da6e3c5255b52f85bba62c5c3e3","id":61006767,"location_subtype":"","month":"2017-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.466717","street":{"id":943920,"name":"On or near Chatsworth Crescent"},"longitude":"-0.349926"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"d36d419da4587da616ae9fb36998357b1cb509290b653ddfb6da505a95efe3a4","id":61048274,"location_subtype":"","month":"2017-11"},{"category":"other-theft","location_type":"Force","location":{"latitude":"51.468189","street":{"id":943936,"name":"On or near Gibson Close"},"longitude":"-0.345899"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"2629feb89aa1918bfb4096d55807639e4e6cdcfa30601374baf196e3605b4042","id":61091574,"location_subtype":"","month":"2017-11"},{"category":"public-order","location_type":"Force","location":{"latitude":"51.458347","street":{"id":943961,"name":"On or near Munnings Gardens"},"longitude":"-0.351999"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"3d8c7e22ece48cde2cbf6ebd36df5251ca59ad881399d4d8a417a870d3ba8131","id":61026920,"location_subtype":"","month":"2017-11"},{"category":"public-order","location_type":"Force","location":{"latitude":"51.459674","street":{"id":944097,"name":"On or near Whitton Road"},"longitude":"-0.362603"},"context":"","outcome_status":{"category":"Offender fined","date":"2017-11"},"persistent_id":"ebbc72bb16d7a8824c5c9a3d056d98890c1415a5e6be8545b9c0161ed2ad74e9","id":61064537,"location_subtype":"","month":"2017-11"},{"category":"public-order","location_type":"Force","location":{"latitude":"51.460520","street":{"id":944057,"name":"On or near Lanigan Drive"},"longitude":"-0.363983"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2017-12"},"persistent_id":"6d525a3e4a0a32e6719237c3ad319ca6dcac9dbb6c62490c66a57a2780978b59","id":61011283,"location_subtype":"","month":"2017-11"},{"category":"public-order","location_type":"Force","location":{"latitude":"51.460520","street":{"id":944057,"name":"On or near Lanigan Drive"},"longitude":"-0.363983"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"567aa457b3529623f708bed4a2d090733a0e8d7ce6408661917105054c3b7843","id":61016505,"location_subtype":"","month":"2017-11"},{"category":"robbery","location_type":"Force","location":{"latitude":"51.461709","street":{"id":943911,"name":"On or near Hall Road"},"longitude":"-0.348696"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2018-05"},"persistent_id":"e4c89cea2283cc0199dce0ff0b2ae05122f45358011eccf7e5dafbb0ecd8dcbc","id":61112368,"location_subtype":"","month":"2017-11"},{"category":"robbery","location_type":"Force","location":{"latitude":"51.462890","street":{"id":943887,"name":"On or near Wolsey Close"},"longitude":"-0.357248"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2017-12"},"persistent_id":"f04550caadf77bd50ac4f86f84aa5a26c1cfc9766e0451d7bad67af6c5b8ac68","id":61114419,"location_subtype":"","month":"2017-11"},{"category":"robbery","location_type":"Force","location":{"latitude":"51.462890","street":{"id":943887,"name":"On or near Wolsey Close"},"longitude":"-0.357248"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2018-02"},"persistent_id":"03584bfa0c9e33e6396fd585a5a70ab4c5388480921ce1fcddb9b2f42626540f","id":61014498,"location_subtype":"","month":"2017-11"},{"category":"robbery","location_type":"Force","location":{"latitude":"51.468189","street":{"id":943936,"name":"On or near Gibson Close"},"longitude":"-0.345899"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"7896d5ebea74499e670263df5c005a5ab5212bdb18842579628be445a9836ef1","id":61015135,"location_subtype":"","month":"2017-11"},{"category":"robbery","location_type":"Force","location":{"latitude":"51.460520","street":{"id":944057,"name":"On or near Lanigan Drive"},"longitude":"-0.363983"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"947383e2bdcd05fcb493c15ccd6de5621c3823003f3903cefdff545d6f5b12bf","id":61121043,"location_subtype":"","month":"2017-11"},{"category":"shoplifting","location_type":"Force","location":{"latitude":"51.462890","street":{"id":943887,"name":"On or near Wolsey Close"},"longitude":"-0.357248"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"9cf7158fe600f8ce41a87741ab20dcaba007bab8a7f59d5291a9046ab5919b66","id":61090552,"location_subtype":"","month":"2017-11"},{"category":"vehicle-crime","location_type":"Force","location":{"latitude":"51.462398","street":{"id":943898,"name":"On or near Maswell Park Road"},"longitude":"-0.360001"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"8a24f6e0c1528a1b72ccba8ce695c941247338e5e68253996b5e8e66c5f2e20f","id":61059048,"location_subtype":"","month":"2017-11"},{"category":"vehicle-crime","location_type":"Force","location":{"latitude":"51.459382","street":{"id":943948,"name":"On or near Arnold Crescent"},"longitude":"-0.347585"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"8353613ad21a534854ad1aa35d45c0ba69308b71f8ed1280f8f51ed0967e479a","id":61076300,"location_subtype":"","month":"2017-11"},{"category":"vehicle-crime","location_type":"Force","location":{"latitude":"51.460947","street":{"id":943903,"name":"On or near Leamington Close"},"longitude":"-0.354597"},"context":"","outcome_status":{"category":"Offender sent to prison","date":"2018-02"},"persistent_id":"09d921d1b7fa854f024abac20f4e7784751646bff205baa9bdf00a82b1d926db","id":61040592,"location_subtype":"","month":"2017-11"},{"category":"vehicle-crime","location_type":"Force","location":{"latitude":"51.460257","street":{"id":943892,"name":"On or near Rosebery Road"},"longitude":"-0.353499"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"949f11ad154106951098fc429c4733ebdf7d052c27973e5af81f825e3f107801","id":61027971,"location_subtype":"","month":"2017-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.465049","street":{"id":943888,"name":"On or near Tudor Road"},"longitude":"-0.349583"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2017-12"},"persistent_id":"84be3b100b88e9079ab87a90dd7a4715fd54a3c59534ba658391868badbfcb0e","id":61027176,"location_subtype":"","month":"2017-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.465712","street":{"id":943917,"name":"On or near Dalmeny Crescent"},"longitude":"-0.350682"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"a0807163e05fe8092f5073d0a5ff1d2412552c5fa11c22b2b4ec31d78267436d","id":61130077,"location_subtype":"","month":"2017-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.464427","street":{"id":943926,"name":"On or near Atcham Road"},"longitude":"-0.353334"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2018-01"},"persistent_id":"c2a93dd33e706ac87c8c77f82474f28ae74ec35e7817070ca133989972146ce2","id":61123079,"location_subtype":"","month":"2017-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.465712","street":{"id":943917,"name":"On or near Dalmeny Crescent"},"longitude":"-0.350682"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"b536745817be7f0d2f57f3f2ce025523bed80f8e945d881dc6fb29b834c9e8eb","id":61134602,"location_subtype":"","month":"2017-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.460520","street":{"id":944057,"name":"On or near Lanigan Drive"},"longitude":"-0.363983"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2018-05"},"persistent_id":"0db9600bcc6d96b188830ee6608f716bf1a62db809d01b6e90a74ec088c53ee7","id":61010475,"location_subtype":"","month":"2017-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.462648","street":{"id":923956,"name":"On or near Norbury Avenue"},"longitude":"-0.351556"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"cb3c95825105fe7561bbb2b0317d46b9c0573739b85ddd83c8850eb0f9c7bda1","id":61090776,"location_subtype":"","month":"2017-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.460520","street":{"id":944057,"name":"On or near Lanigan Drive"},"longitude":"-0.363983"},"context":"","outcome_status":{"category":"Status update unavailable","date":"2018-03"},"persistent_id":"0e62fdce26609765b7389472766b02c035b76b6844e75a9f6128792938536424","id":61041485,"location_subtype":"","month":"2017-11"},{"category":"violent-crime","location_type":"Force","location":{"latitude":"51.457840","street":{"id":944100,"name":"On or near Park Avenue"},"longitude":"-0.365202"},"context":"","outcome_status":{"category":"Investigation complete; no suspect identified","date":"2018-01"},"persistent_id":"3d58a8a580ffaa9825b3c291f341f05de8ee546296cf0a92111a9bb205a84afa","id":61058510,"location_subtype":"","month":"2017-11"}] |
{
"order": "54247"
,"word": "nues"
,"count": "29"
}
|
{
"add": {
"doc": {
"id": "27f68c96c1ba6fc0ce931279105fdee4c43ef431f6886f54a5c8d698a504ea65",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/RNZAF_C-47_Dakota%2C_2010.jpg/220px-RNZAF_C-47_Dakota%2C_2010.jpg",
"previous": [],
"after": "There are still small operators with DC-3s in revenue service and as cargo aircraft. The common saying among aviation buffs and pilots is that \"the only replacement for a DC-3 is another DC-3\". The aircraft's legendary ruggedness is enshrined in the lighthearted description of the DC-3 as \"a collection of parts flying in loose formation.\"[19] Its ability to take off and land on grass or dirt runways makes it popular in developing countries, where runways are not always paved.",
"color": "dark|0.14171 gray|0.14171 dark|0.14171 grey|0.14171 silver|0.10128 dim|0.092677 gray|0.092677 dim|0.092677 grey|0.092677 dark|0.08236 slate|0.08236 gray|0.08236 black|0.075661 gray|0.059942 grey|0.059942 light|0.058367 gray|0.058367 light|0.058367 grey|0.058367 gainsboro|0.043927 slate|0.038412 gray|0.038412 light|0.033304 slate|0.033304 gray|0.033304 white|0.029239 smoke|0.029239 snow|0.024198 ghost|0.02353 white|0.02353 sea|0.022437 shell|0.022437 alice|0.022149 blue|0.022149 white|0.021714 mint|0.019404 cream|0.019404 floral|0.018082 white|0.018082 lavender|0.017242 blush|0.017242 azure|0.016184 linen|0.012943 lavender|0.011435 light|0.010979 steel|0.010979 blue|0.010979 ivory|0.0061824 old|0.0046698 lace|0.0046698 "
}
}
}
|
{"type": "Feature", "id": 23731646, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-63.582249, 44.678139], [-63.582249, 44.68018], [-63.58511, 44.68018], [-63.58511, 44.678139], [-63.582249, 44.678139]]]]}, "properties": {"woe:id": 23731646, "woe:parent_id": 4176, "woe:name": "B3A 1W9", "woe:placetype": 11, "woe:placetype_name": "Zip", "woe:lang": "ENG", "iso:country": "CA", "meta:provider": ["geoplanet:7.3.1", "geoplanet:7.3.2", "geoplanet:7.4.0", "geoplanet:7.4.1", "geoplanet:7.5.1", "geoplanet:7.5.2", "geoplanet:7.6.0", "geoplanet:7.8.1", "geoplanet:7.9.0", "geoplanet:7.10.0", "geoplanet:8.0.0", "woeplanet:8.0.0"], "meta:indexed": "2020-08-20T20:40:12.647076", "meta:updated": "2020-10-14T12:08:02.941263", "woe:hierarchy": {"continent": 24865672, "country": 23424775, "town": 0, "planet": 1, "county": 29375176, "suburb": 0, "state": 2344921, "region": 0, "localadmin": 0}, "woe:timezone_id": 56043685, "woe:hash": "dxfy1jefbzk8", "geom:min_latitude": 44.678139, "woe:centroid": [-63.583679, 44.679161], "geom:latitude": 44.679161, "woe:max_longitude": -63.582249, "geom:max_longitude": -63.582249, "geom:centroid": [-63.583679, 44.679161], "geom:max_latitude": 44.68018, "woe:bbox": [-63.58511, 44.678139, -63.582249, 44.68018], "geom:bbox": [-63.58511, 44.678139, -63.582249, 44.68018], "woe:min_latitude": 44.678139, "woe:min_longitude": -63.58511, "geom:longitude": -63.583679, "geom:hash": "dxfy1jefbzk8", "woe:latitude": 44.679161, "geom:min_longitude": -63.58511, "woe:longitude": -63.583679, "woe:max_latitude": 44.68018, "woe:repo": "woeplanet-zip-ca-b", "geom:area": 51448.069236278534, "woe:scale": 22}} |
{"dta.poem.496": {"metadata": {"author": {"name": "Gressel, Johann Georg", "birth": "N.A.", "death": "N.A."}, "title": "Da sie ihm im Schlaff erschien.", "genre": "Lyrik", "period": "N.A.", "pub_year": "1716", "urn": "urn:nbn:de:kobv:b4-200905199041", "language": ["de:0.99"], "booktitle": "Celander [i. e. Gressel, Johann Georg]: Verliebte-Galante/ Sinn-Vermischte und Grab-Gedichte. Hamburg u. a., 1716."}, "poem": {"stanza.1": {"line.1": {"text": "Kan mir dein Schatten-Bild im Schlaff die Flammen", "tokens": ["Kan", "mir", "dein", "Schat\u00b7ten\u00b7Bild", "im", "Schlaff", "die", "Flam\u00b7men"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word"], "pos": ["VMFIN", "PPER", "PPOSAT", "NN", "APPRART", "NN", "ART", "NN"], "meter": "-+-+-+-+-+-", "measure": "iambic.penta"}, "line.2": {"text": "mehren/", "tokens": ["meh\u00b7ren", "/"], "token_info": ["word", "punct"], "pos": ["VVFIN", "$("], "meter": "+-", "measure": "trochaic.single"}, "line.3": {"text": "Und machen/ das mein Hertz vor heisser Liebe raucht?", "tokens": ["Und", "ma\u00b7chen", "/", "das", "mein", "Hertz", "vor", "heis\u00b7ser", "Lie\u00b7be", "raucht", "?"], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "VVINF", "$(", "ART", "PPOSAT", "NN", "APPR", "ADJA", "NN", "VVFIN", "$."], "meter": "-+-+-+-+-+-+", "measure": "alexandrine.iambic.hexa"}, "line.4": {"text": "Wie solte mich dein Strahl den wachend nicht verzehren/", "tokens": ["Wie", "sol\u00b7te", "mich", "dein", "Strahl", "den", "wa\u00b7chend", "nicht", "ver\u00b7zeh\u00b7ren", "/"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWAV", "VMFIN", "PPER", "PPOSAT", "NN", "ART", "ADJD", "PTKNEG", "VVINF", "$("], "meter": "-+-+-+-+-+-+-", "measure": "alexandrine.iambic.hexa"}, "line.5": {"text": "Wenn aus der Augen-Pech mein Geist die Funcken saugt.", "tokens": ["Wenn", "aus", "der", "Au\u00b7gen\u00b7Pech", "mein", "Geist", "die", "Fun\u00b7cken", "saugt", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["KOUS", "APPR", "ART", "NN", "PPOSAT", "NN", "ART", "NN", "VVFIN", "$."], "meter": "-+-+-+-+-+-+", "measure": "alexandrine.iambic.hexa"}}}}} |
{"categorias":["G1"],"corpora":"Kelly Clarkson aconselha Taylor Swift a regravar músicas após cantora lamentar venda de direitos de álbuns\n'Eu compraria todas as novas versões', afirmou Kelly em postagem no Twitter. Kelly Clarkson Caio Kenji/G1 Kelly Clarkson usou seu Twitter para deixar um conselho para Taylor Swift. Duas semanas após a cantora desabafar sobre a venda de direitos de seus primeiros álbuns para o empresário Scooter Braun, Clarkson compartilhou sua ideia com a artista. “Taylor, só uma ideia... você deveria regravar todas as músicas que você não é dona da máster exatamente igual você as fez, mas colocar uma nova marca artística e incentivar seus fãs a não comprar as antigas versões. Eu poderia comprar todas as novas versões apenas para provar o argumento”, escreveu Clarkson. Taylor ainda não respondeu o conselho de Kelly – ao menos publicamente – mas em resposta ao post, os fãs parecem apoiar a sugestão. Initial plugin text Taylor Swift e Scooter Braun chegam a eventos distintos em 2019 Richard Shotwell/AP e Mark Von Holden/Invision/AP Taylor Swift X Scooter Braun: Por que brigas por direitos de discos ainda deixam artistas revoltados? Relembre o caso Taylor Swift fez um longo desabafo no final de junho após ter os direitos sobre parte de seu catálogo musical vendido. Os seis primeiros álbuns da cantora pertencem à gravadora Big Machine, fundada por Scott Borchetta; O empresário Scooter Braun, dono da Ithaca Holdings, anunciou a compra da gravadora por mais de US$ 300 milhões, segundo a Billboard; Em um post no Tumblr, Taylor disse que está “triste e enojada” porque só ficou sabendo do acordo quando ele foi divulgado pela mídia e não teve a oportunidade de comprar os direitos de seu trabalho; A cantora acusa Braun de ter feito \"bullying\" contra ela. Em 2018, Taylor trocou a Big Machine pela Universal Music, mas \"Reputation\", de 2017, ainda faz parte da antiga gravadora. Os direitos sobre suas primeiras produções permaneceram com a empresa. Ela alega que tentou comprar sua obra, mas não conseguiu. “Por anos eu pedi, implorei por uma chance de possuir meu próprio trabalho. Em vez disso, tive a oportunidade de voltar à Big Machine Records e 'ganhar' um álbum de volta de cada vez, um para cada novo que eu entregasse. Eu fui embora porque sabia que uma vez que assinasse esse contrato, Scott Borchetta o venderia, vendendo assim a mim e meu futuro’, diz. “Agora Scooter me tirou o trabalho da minha vida, que eu não tive a oportunidade de comprar. Essencialmente, meu legado musical está prestes a ficar nas mãos de alguém que tentou desmantelá-lo\", desabafou a cantora. Semana Pop tem briga de Taylor Swift, Kim Kardashian, Gustavo Lima e o novo Jackson\nKelly Clarkson aconselha Taylor Swift a regravar músicas após cantora lamentar venda de direitos de álbuns | Música | G1 G1 Pop & Arte Música Editorias Editorias Agro Agro Agronegócios Globo Rural A Indústria-Riqueza do Brasil Carros Carros Carros de A a Z Caminhões Carros elétricos e híbridos Motos IPVA Tabela FIPE vídeos autoesporte Ciência e Saúde Ciência e Saúde Viva Você Concursos Economia Economia Agro Agro Globo Rural Calculadoras Concursos e Empregos Educação Financeira Imposto de Renda Mídia e Marketing PME PME Pequenas Empresas tecnologia Educação Educação App G1 Enem Enem Guia de Carreiras Teste Vocacional Universidades Fato ou Fake Monitor da Violência Mundo Natureza Natureza Desafio Natureza Olha que legal Política Política Eleições 2018 Operação Lava Jato Pop & Arte Pop & Arte Cinema Games Música Lollapalooza 2019 Rock in Rio 2019 Tecnologia Turismo e Viagem Turismo e Viagem Descubra o Brasil Regiões Regiões centro-oeste centro-oeste Distrito Federal Distrito Federal Bom Dia DF DF1 DF2 Globo Comunidade DF O que fazer no DF Goiás Goiás Bom Dia GO Bom dia sábado JA 1ª Edição JA 2ª Edição Jornal do Campo Esporte Mercado Imobiliário Mato Grosso Mato Grosso Bom Dia MT MT TV 1ª Edição MT Rural MT TV 2ª Edição Esporte Mato Grosso do Sul Mato Grosso do Sul Bom Dia MS MS TV 1ª Edição MS TV 2ª Edição MS Rural Esporte nordeste nordeste Alagoas Alagoas Bom Dia Alagoas AL TV 1ª Edição AL TV 2ª Edição Gazeta Rural Esporte Bahia Bahia Jornal da manhã Bahia Meio Dia BATV Bahia Agora Bahia Rural Esporte Ceará Ceará Bom Dia CE CETV 1ª Edição CETV 2ª Edição NE Rural Esporte Maranhão Maranhão Bom Dia Mirante JMTV 1ª Edição JMTV 2ª edição Mirante Rural Esporte Daqui Repórter Mirante Paraíba Paraíba Bom Dia Paraíba JPB 1ª Edição JPB 2ª Edição Paraíba Comunidade Esporte Pernambuco Pernambuco Recife e região Recife e região Bom Dia PE NE 1 NE 2 Espaço PE Globo Comunidade PE Nordeste Viver e Preservar Educação Esporte Caruaru e região Caruaru e região Bom Dia PE ABTV 1ª Edição ABTV 2ª Edição Globo Comunidade Esporte Petrolina e região Petrolina e região Bom Dia Pernambuco GRTV 1ª Edição GRTV 2ª edição Esporte Piauí Piauí Bom Dia Piauí Bom dia Sábado PI TV 1ª edição PI TV 2ª Edição Clube Rural Esporte Rio Grande do Norte Rio Grande do Norte Bom Dia RN RN TV 1ª Edição RN TV 2ª edição Inter TV Rural Esporte Sergipe Sergipe Bom Dia SE SETV 1ª Edição SETV 2ª Edição Estação Agrícola Esporte norte norte Acre Acre Rio Branco e região Rio Branco e região Bom Dia Amazônia JAC 1ª Edição JAC 2ª Edição Amazônia Rural Esporte Cruzeiro do Sul e região Cruzeiro do Sul e região Bom Dia Amazônia JAC 1ª Edição JAC 2ª Edição Amazônia Rural Esporte Amapá Amapá Bom Dia Amazônia JAP 1ª Edição JAP 2ª Edição Amazônia Rural Esporte Amazonas Amazonas Bom Dia Amazônia JAM 1ª Edição JAM 2ª Edição Amazônia rural Esporte Pará Pará Belém e região Belém e região Bom Dia Pará Jornal Liberal 1ª Edição Jornal Liberal 2ª Edição Liberal Comunidade É do Pará Esporte Santarém e região Santarém e região Bom Dia Santarém Jornal Tapajós 1ª Edição Jornal Tapajós 2ª Edição Esporte Rondônia Rondônia Porto Velho e região Porto Velho e região Bom Dia Amazônia JRO 1ª Edição JRO 2ª Edição Amazônia Rural Esporte Ariquemes e Vale do Jamari Ariquemes e Vale do Jamari Bom Dia Amazônia JRO 1ª edição JRO 2ª Edição Amazônia Rural Esporte Cacoal e Zona da Mata Cacoal e Zona da Mata Bom Dia Amazônia JRO 1ª Edição JRO 2ª Edição Amazônia Rural Esporte Ji Paraná e Região Central Ji Paraná e Região Central Bom Dia Amazônia JRO 1ª Edição JRO 2ª Edição Amazônia Rural Esporte Vilhena e Cone Sul Vilhena e Cone Sul Bom Dia Amazônia JRO 1ª Edição JRO 2ª Edição Amazônia Rural Esporte Roraima Roraima Bom Dia Amazônia JRR 1ª Edição JRR 2ª Edição Amazônia Rural Esporte Tocantins Tocantins Bom Dia Tocantins JA 1ª Edição JA 2ª Edição Jornal do Campo Esporte sudeste sudeste Espírito Santo Espírito Santo Bom dia Espírito Santo ES TV 1ª Edição ED TV 2ª Edição Jornal do Campo Agronégocios Educação Concursos Esporte Minas Gerais Minas Gerais Belo Horizonte e região Belo Horizonte e região Bom dia Minas MG1 MG2 Globo Horizonte Terra de Minas pelas cozinhas de minas O que fazer em BH Esporte Centro-Oeste Centro-Oeste Bom dia Minas MG TV 1ª Edição MG TV 2ª Edição MG Rural Integração notícia Esporte Grande Minas Grande Minas Inter TV Notícia MG Inter TV 1ª Edição MG Inter TV 2ª Edição Inter TV Rural É o bicho Esporte Sul de Minas Sul de Minas Bom dia Cidade Jornal da EPTV 1ª Edição Jornal da EPTV 2ª Edição Terra da gente Esporte Triângulo Mineiro Triângulo Mineiro Bom dia Minas Uberlândia Uberlândia MG TV 1ª Edição MGTV 2ª edição Uberaba Uberaba MGTV 1ª Edição MGTV 2ª Edição MG Rural Integração notícia Concursos Esporte Globo Esporte Vales de Minas Gerais Vales de Minas Gerais Inter TV notícia MG Inter TV 1ª Edição MG Inter TV 2ª Edição Inter TV Rural É o bicho Esporte Zona da Mata Zona da Mata Bom dia Minas MG TV 1ª Edição MG TV 2ª Edição MG Rural Integração notícia Esporte Globo Esporte Rio de Janeiro Rio de Janeiro Rio de Janeiro e região Rio de Janeiro e região Bom dia Rio RJ1 RJ2 Globo Comunidade RJ O que fazer no RJ Fora do ponto Esporte Norte Fluminense Norte Fluminense Bom dia Rio RJ TV Inter 1ª Edição RJ TV Inter 2ª Edição Inter TV Rural Esporte Região dos Lagos Região dos Lagos Bom dia Rio RJ TV Inter 1ª Edição RJ TV Inter 2ª Edição Inter TV Rural Esporte Região Serrana Região Serrana Bom dia Rio RJ TV Inter 1ª Edição RJ TV Inter 2ª Edição Inter TV Rural Esporte Sul e Costa Verde Sul e Costa Verde Bom dia Rio RJ TV 1ª Edição RJ TV 2ª Edição Esporte São Paulo São Paulo São Paulo e região São Paulo e região Bom Dia SP SP1 SP2 Antena Paulista O que fazer em SP Esporte Bauru e Marília Bauru e Marília Bom Dia SP Bom Dia Cidade Tem Notícias 1ª Edição Tem Notícias 2ª Edição Nosso Campo Esporte Campinas e região Campinas e região Bom Dia Cidade Jornal da EPTV 1ª Edição Jornal da EPTV 2ª Edição Terra da Gente Concursos Esporte Itapetininga e região Itapetininga e região Bom Dia SP Bom Dia Cidade TEM Notícias 1ª Edição TEM Notícias 2ª Edição Antena Paulista Nosso Campo Resumo da Notícia Memória TEM Comunidade Esporte Mogi das Cruzes e Suzano Mogi das Cruzes e Suzano Bom Dia Diário Diário TV 1ª Edição Diário TV 2ª Edição Diário Comunidade Concursos Esporte Piracicaba e região Piracicaba e região Bom Dia Cidade Jornal da EPTV 1ª Edição Jornal da EPTV 2ª Edição Jornal Regional Terra da Gente Esporte Prudente e região Prudente e região Bom Dia Fronteira Bom Dia SP Fronteira Notícias 1ª Edição Fronteira Notícias 2ª Edição Esporte Ribeirão Preto e Franca Ribeirão Preto e Franca Bom Dia Cidade Jornal da EPTV 1ª Edição Jornal da EPTV 2ª Edição Terra da Gente Esporte Rio Preto e Araçatuba Rio Preto e Araçatuba Bom Dia SP Bom Dia Cidade TEM Notícias 1ª Edição TEM Notícias 2ª Edição Nosso Campo Esporte Santos e região Santos e região Bom Dia Região Jornal Tribuna 1ª Edição Jornal Tribuna 2ª Edição Antena Paulista G1 em um Minuto Santos Viver Bem O Que Fazer Em Santos Culinária #13 Por Dentro do Porto Esporte São Carlos e Araraquara São Carlos e Araraquara Bom Dia SP Jornal da EPTV 1ª Edição Jornal da EPTV 2ª edição Terra da Gente Sorocaba e Jundiaí Sorocaba e Jundiaí Bom Dia SP Bom Dia Cidade Tem Notícias 1ª Edição Tem notícias 2ª Edição Nosso Campo Esporte Vale do Paraíba e região Vale do Paraíba e região Bom Dia Vanguarda Link Vanguarda Jornal Vanguarda Vanguarda Comunidade Esporte sul sul Paraná Paraná Curitiba e Região Curitiba e Região Bom Dia Paraná Meio Dia Paraná – Curitiba Boa Noite Paraná – Curitiba Caminhos do Campo Bom Dia Sábado Esporte Campos Gerais e Sul Campos Gerais e Sul Bom Dia Paraná Meio Dia Paraná – Ponta Grossa Boa Noite Paraná – Ponta Grossa Caminhos do Campo Boa Noite Paraná – Guarapuava Bom Dia Sábado Esporte Norte e Noroeste Norte e Noroeste Bom Dia Paraná Meio Dia Paraná – Maringá Boa Noite Paraná – Maringá Caminhos do Campo Meio Dia Paraná – Londrina Boa Noite Paraná – Londrina Meio Dia Paraná - Noroeste Boa Noite Paraná – Noroeste Bom Dia Sábado Esporte Oeste e Sudoeste Oeste e Sudoeste Bom Dia Paraná Meio Dia Paraná – Foz do Iguaçu Boa Noite Paraná – Foz do Iguaçu Caminhos do Campo Meio Dia Paraná – Cascavel Boa Noite Paraná – Cascavel Bom Dia Sábado Esporte Rio Grande do Sul Rio Grande do Sul Bom Dia Rio Grande Jornal do Almoço RBS Notícias Campo e Lavoura Esporte Santa Catarina Santa Catarina Bom Dia Santa Catarina Jornal do Almoço NSC Notícias Nossa Santa Catarina Campo e Negócios SC Que Dá Certo Esporte Telejornais Telejornais Autoesporte Autoesporte carros de a a z caminhões motos ipva tabela fipe vídeos autoesporte Bem Estar Bem Estar Vídeos vc no bem estar fale com o bem estar Bom Dia Brasil Bom Dia Brasil Redação História Vídeos Fale com o bom dia brasil Como Será? Como Será? quadros e séries quadros e séries Adolescentes caminhos da justiça econstrução ecostura expedição campo expedição urbana qual vai ser? #partiuférias por uma cidade mais inteligente semente sos-sus sobre asas grandes ideias, pequenas invenções nós.doc aluno nota 11 O que você pode fazer hoje pelo amanhã história vídeos vc no como será fale com o como será Fantástico Fantástico quadros e séries quadros e séries fant 360 a jornada da vida cadê o dinheiro que tava aqui? detetive virtual repórter por um dia shows e musicais história vídeos vc no fantástico denuncie fale com o fantástico G1 em 1 Minuto Globo Repórter Globo Repórter redação história receitas testes vídeos vc no globo repórter fale com o globo repórter Globo Rural Globo Rural agro guia do globo rural revista globo rural história vídeos vc no globo rural fale com o globo rural Hora 1 Hora 1 história vídeos vc no hora um fale com o hora um Jornal da Globo Jornal da Globo redação história vídeos vc no jg fale com o jg Jornal Hoje Jornal Hoje crônicas história vídeos vc no jh fale com o jh Jornal Nacional Jornal Nacional redação história vídeos vc no jornal nacional fale com o jornal nacional Pequenas Empresas Pequenas Empresas pme quadros quadros pegn.tec contato das empresas revista pegn história vídeos vc no pegn fale com o pegn Profissão Repórter Profissão Repórter equipe história vídeos vc no profissão repórter fale com o profissão repórter Retrospectiva 2018 GloboNews GloboNews jornais jornais Conta Corrente Estúdio i GloboNews Em Pauta GloboNews em Ponto Jornal das Dez Jornal GloboNews Edição das 10 Edição das 16 Edição das 18 programas programas arquivo n central das eleições 2018 central globonews cidades e soluções diálogos com mario sergio conti em casa com nelson motta em foco com Andreia Sadi entre aspas fatos e versões fernando gabeira globonews documentário globonews documento globonews em movimento globonews especial + programas + programas globonews internacional globonews literatura globonews miriam leitão globonews painel globonews política Hub GloboNews manhattan connection milênio mundo s/a O melhor do Brasil é o Brasileiro pelo mundo política no brasil que mundo é esse? roberto d'avila sem fronteiras via brasil globonews ao vivo globonews play programação redes sociais redes sociais globonews time globonews História -- Fale com a GloboNews grupo globo princípios editoriais Blogs e Colunas Podcasts Serviços Serviços Agenda do Dia App G1 Calculadoras Concursos e Emprego fato ou fake Loterias Previsão do Tempo Resumo do Dia Tabela Fipe Teste vocacional Vídeos Vídeos Mais Recentes Mais Vistos Carros Ciência Economia Mundo Política Pop & Arte Tecnologia Rio de Janeiro São Paulo Especial Publicitário Especial Publicitário Atlas Quantum Einstein e sua saúde Inovação em Movimento -- Fale com o G1 Grupo Globo Princípios editoriais Kelly Clarkson aconselha Taylor Swift a regravar músicas após cantora lamentar venda de direitos de álbuns 'Eu compraria todas as novas versões', afirmou Kelly em postagem no Twitter. Por G1 15/07/2019 08h45 Atualizado 2019-07-15T11:45:27.633Z Kelly Clarkson — Foto: Caio Kenji/G1 Kelly Clarkson usou seu Twitter para deixar um conselho para Taylor Swift. Duas semanas após a cantora desabafar sobre a venda de direitos de seus primeiros álbuns para o empresário Scooter Braun, Clarkson compartilhou sua ideia com a artista. “Taylor, só uma ideia... você deveria regravar todas as músicas que você não é dona da máster exatamente igual você as fez, mas colocar uma nova marca artística e incentivar seus fãs a não comprar as antigas versões. Eu poderia comprar todas as novas versões apenas para provar o argumento”, escreveu Clarkson. Taylor ainda não respondeu o conselho de Kelly – ao menos publicamente – mas em resposta ao post, os fãs parecem apoiar a sugestão. Kelly, sign the petition! https://t.co/jnDmXWBNXs — July 13, 2019 Taylor Swift e Scooter Braun chegam a eventos distintos em 2019 — Foto: Richard Shotwell/AP e Mark Von Holden/Invision/AP Taylor Swift X Scooter Braun: Por que brigas por direitos de discos ainda deixam artistas revoltados? Relembre o caso Taylor Swift fez um longo desabafo no final de junho após ter os direitos sobre parte de seu catálogo musical vendido. Os seis primeiros álbuns da cantora pertencem à gravadora Big Machine, fundada por Scott Borchetta; O empresário Scooter Braun, dono da Ithaca Holdings, anunciou a compra da gravadora por mais de US$ 300 milhões, segundo a Billboard; Em um post no Tumblr, Taylor disse que está “triste e enojada” porque só ficou sabendo do acordo quando ele foi divulgado pela mídia e não teve a oportunidade de comprar os direitos de seu trabalho; A cantora acusa Braun de ter feito \"bullying\" contra ela. Em 2018, Taylor trocou a Big Machine pela Universal Music, mas \"Reputation\", de 2017, ainda faz parte da antiga gravadora. Os direitos sobre suas primeiras produções permaneceram com a empresa. Ela alega que tentou comprar sua obra, mas não conseguiu. “Por anos eu pedi, implorei por uma chance de possuir meu próprio trabalho. Em vez disso, tive a oportunidade de voltar à Big Machine Records e 'ganhar' um álbum de volta de cada vez, um para cada novo que eu entregasse. Eu fui embora porque sabia que uma vez que assinasse esse contrato, Scott Borchetta o venderia, vendendo assim a mim e meu futuro’, diz. “Agora Scooter me tirou o trabalho da minha vida, que eu não tive a oportunidade de comprar. Essencialmente, meu legado musical está prestes a ficar nas mãos de alguém que tentou desmantelá-lo\", desabafou a cantora. Semana Pop tem briga de Taylor Swift, Kim Kardashian, Gustavo Lima e o novo Jackson Veja também Anterior Próximo Mais do G1 Tragédia em MG Vale fecha acordo para pagar R$ 700 mil a cada familiar dos funcionários mortos em Brumadinho Termos foram negociados com o Ministério Público do Trabalho. Rompimento de barragem matou 248 pessoas e deixou 22 desaparecidos. Há 2 horas Minas Gerais Previdência Senado pode aprovar reforma em 60 dias, diz presidente da CCJ Há 3 horas Política PSB abre processo contra deputados que votaram a favor da reforma Há 3 horas Rodovias federais Governo faz acordo para reduzir a 1 mil número de futuros radares Ministro diz que medida vai gerar economia de R$ 600 milhões ao governo. Há 5 horas Auto Esporte Cotado para embaixada Críticas a filho são 'sinal de que é a pessoa adequada', diz Bolsonaro Eventual escolha de Eduardo Bolsonaro causou espanto entre diplomatas, políticos e no meio jurídico e abriu discussão sobre nepotismo. Há 10 horas Política Visitação de praias Bolsonaro quer extinguir taxa para acesso a Noronha: 'É um roubo' Valor é de R$ 106 para turistas brasileiros e de R$ 212 para estrangeiros. Há 6 horas Natureza Ceará Vereadores afastam prefeito suspeito de abusar de mulheres Medida vale por 90 dias. José de Paiva é médico e filmava os abusos cometidos nos consultório. Há 46 minutos Ceará Fim de cobrança Mercosul vai acabar com taxa de 'roaming' entre países, diz Anatel Anúncio deve ser feito na cúpula do bloco, que acontece na Argentina nesta semana. Há 2 horas Tecnologia Lista nacional Cadastro na lista de 'não perturbe' do telemarketing começa amanhã Consumidor vai poder se registrar em site para não receber ligações indesejadas. Há 4 horas Economia Empresário foragido Justiça do Rio manda prender dono de banco de investimento Jonas Jaimovick, da JJ Invest, é suspeito de sumir com R$ 170 milhões dos clientes. Há 2 horas Rio de Janeiro Estados Unidos Trump reitera ataque a mulheres congressistas: 'Podem ir embora' Tuítes do presidente no fim de semana foram considerados racistas. Há 3 horas Mundo Veja mais G1 Últimas Notícias © Copyright 2000-2019 Globo Comunicação e Participações S.A. princípios editoriais política de privacidade minha conta anuncie conosco"}
{"categorias":["G1"],"corpora":"Douglas Germano expõe fraturas do Brasil no ritmo do samba afrontoso do álbum 'Escumalha'\nDisco apresenta a primeira parceria do bamba de Sampa com Aldir Blanc. O samba de Douglas Germano é golpe ágil de faca que corta na carne para dissecar os ossos de um Brasil de fraturas sociais expostas a cada alvorecer. Escumalha – terceiro álbum deste cantor e compositor paulistano – retrata com crueza a sina de Maria, João e José na lida diária com as mazelas de um país cuja paga é o açoite, como o sambista denuncia entre os roncos das cuícas que pontuam Chapa (Douglas Germano, 2019). Músicas como Marcha de Maria (Douglas Germano, 2000) se enquadram nessa moldura rústica que evoca a crueza do Poema tirado de uma notícia de jornal (Manuel Bandeira, 1974), ponto de partida para a criação do conceito do disco. No ritmo de sambas como Vil malandrão (Douglas Germano e Kiko Dinucci, 2016), o sambista baixa no terreiro – repleto de referências de signos afro-brasileiros em Àgbá (Douglas Germano, 2018) – para catar flores em terreno baldio, dando à palavra aos sem-voz, às vezes com verniz poético, como em Insignificâncias (Douglas Germano e João Poleto, 2014). Capa da edição em CD do álbum 'Escumalha', de Douglas Germano Divulgação / Boca de Lobo Ainda que o toque do ijexá conduza o envolvente Tempo velho (Douglas Germando, 2015) e por mais que haja clima de forró em Ratapaiapatabarreno (Douglas Germano, 2014), o samba é o ritmo dominante na formatação deste repertório desbocado que evoca menos João Bosco do que o cancioneiro apresentado por Germano no álbum anterior Golpe de vista (2016). Curiosamente, Escumalha apresenta entre as dez faixas a primeira parceria de Douglas Germano com Aldir Blanc, letrista afiado de Valhacouto (2019), cuja trama do violão (tocado pelo próprio Germano) remete de imediato aos sambas de Bosco com Blanc na década de 1970, assim como acontece no imponente samba-título Escumalha (Douglas Germano, 2018). Douglas Germano reúne dez sambas inéditos, compostos nos últimos anos, no álbum 'Escumalha' Adriana Aranha / Divulgação Mirando contra os escroques, Valhacouto esparrama nos versos o sangue que escorre pelas frestas de um Brasil em decomposição. Babaca (Douglas Germano, 2019) também vai direto ao ponto, cuspindo versos e verdades na cara da bandalha. Embora o repertório do álbum anterior Golpe de vista soe mais coeso no conjunto da obra do artista, Escumalha é corajoso disco em que Douglas Germano, bamba de Sampa, afronta o discurso oficial de um Brasil justo para expor as vísceras de país corroído pelas mazelas sociais. (Cotação: * * * 1/2)\nDouglas Germano expõe fraturas do Brasil no ritmo do samba afrontoso do álbum 'Escumalha' | Blog do Mauro Ferreira | G1 G1 Pop & Arte Blog do Mauro Ferreira Editorias Editorias Agro Agro Agronegócios Globo Rural A Indústria-Riqueza do Brasil Carros Carros Carros de A a Z Caminhões Carros elétricos e híbridos Motos IPVA Tabela FIPE vídeos autoesporte Ciência e Saúde Ciência e Saúde Viva Você Concursos Economia Economia Agro Agro Globo Rural Calculadoras Concursos e Empregos Educação Financeira Imposto de Renda Mídia e Marketing PME PME Pequenas Empresas tecnologia Educação Educação App G1 Enem Enem Guia de Carreiras Teste Vocacional Universidades Fato ou Fake Monitor da Violência Mundo Natureza Natureza Desafio Natureza Olha que legal Política Política Eleições 2018 Operação Lava Jato Pop & Arte Pop & Arte Cinema Games Música Lollapalooza 2019 Rock in Rio 2019 Tecnologia Turismo e Viagem Turismo e Viagem Descubra o Brasil Regiões Regiões centro-oeste centro-oeste Distrito Federal Distrito Federal Bom Dia DF DF1 DF2 Globo Comunidade DF O que fazer no DF Goiás Goiás Bom Dia GO Bom dia sábado JA 1ª Edição JA 2ª Edição Jornal do Campo Esporte Mercado Imobiliário Mato Grosso Mato Grosso Bom Dia MT MT TV 1ª Edição MT Rural MT TV 2ª Edição Esporte Mato Grosso do Sul Mato Grosso do Sul Bom Dia MS MS TV 1ª Edição MS TV 2ª Edição MS Rural Esporte nordeste nordeste Alagoas Alagoas Bom Dia Alagoas AL TV 1ª Edição AL TV 2ª Edição Gazeta Rural Esporte Bahia Bahia Jornal da manhã Bahia Meio Dia BATV Bahia Agora Bahia Rural Esporte Ceará Ceará Bom Dia CE CETV 1ª Edição CETV 2ª Edição NE Rural Esporte Maranhão Maranhão Bom Dia Mirante JMTV 1ª Edição JMTV 2ª edição Mirante Rural Esporte Daqui Repórter Mirante Paraíba Paraíba Bom Dia Paraíba JPB 1ª Edição JPB 2ª Edição Paraíba Comunidade Esporte Pernambuco Pernambuco Recife e região Recife e região Bom Dia PE NE 1 NE 2 Espaço PE Globo Comunidade PE Nordeste Viver e Preservar Educação Esporte Caruaru e região Caruaru e região Bom Dia PE ABTV 1ª Edição ABTV 2ª Edição Globo Comunidade Esporte Petrolina e região Petrolina e região Bom Dia Pernambuco GRTV 1ª Edição GRTV 2ª edição Esporte Piauí Piauí Bom Dia Piauí Bom dia Sábado PI TV 1ª edição PI TV 2ª Edição Clube Rural Esporte Rio Grande do Norte Rio Grande do Norte Bom Dia RN RN TV 1ª Edição RN TV 2ª edição Inter TV Rural Esporte Sergipe Sergipe Bom Dia SE SETV 1ª Edição SETV 2ª Edição Estação Agrícola Esporte norte norte Acre Acre Rio Branco e região Rio Branco e região Bom Dia Amazônia JAC 1ª Edição JAC 2ª Edição Amazônia Rural Esporte Cruzeiro do Sul e região Cruzeiro do Sul e região Bom Dia Amazônia JAC 1ª Edição JAC 2ª Edição Amazônia Rural Esporte Amapá Amapá Bom Dia Amazônia JAP 1ª Edição JAP 2ª Edição Amazônia Rural Esporte Amazonas Amazonas Bom Dia Amazônia JAM 1ª Edição JAM 2ª Edição Amazônia rural Esporte Pará Pará Belém e região Belém e região Bom Dia Pará Jornal Liberal 1ª Edição Jornal Liberal 2ª Edição Liberal Comunidade É do Pará Esporte Santarém e região Santarém e região Bom Dia Santarém Jornal Tapajós 1ª Edição Jornal Tapajós 2ª Edição Esporte Rondônia Rondônia Porto Velho e região Porto Velho e região Bom Dia Amazônia JRO 1ª Edição JRO 2ª Edição Amazônia Rural Esporte Ariquemes e Vale do Jamari Ariquemes e Vale do Jamari Bom Dia Amazônia JRO 1ª edição JRO 2ª Edição Amazônia Rural Esporte Cacoal e Zona da Mata Cacoal e Zona da Mata Bom Dia Amazônia JRO 1ª Edição JRO 2ª Edição Amazônia Rural Esporte Ji Paraná e Região Central Ji Paraná e Região Central Bom Dia Amazônia JRO 1ª Edição JRO 2ª Edição Amazônia Rural Esporte Vilhena e Cone Sul Vilhena e Cone Sul Bom Dia Amazônia JRO 1ª Edição JRO 2ª Edição Amazônia Rural Esporte Roraima Roraima Bom Dia Amazônia JRR 1ª Edição JRR 2ª Edição Amazônia Rural Esporte Tocantins Tocantins Bom Dia Tocantins JA 1ª Edição JA 2ª Edição Jornal do Campo Esporte sudeste sudeste Espírito Santo Espírito Santo Bom dia Espírito Santo ES TV 1ª Edição ED TV 2ª Edição Jornal do Campo Agronégocios Educação Concursos Esporte Minas Gerais Minas Gerais Belo Horizonte e região Belo Horizonte e região Bom dia Minas MG1 MG2 Globo Horizonte Terra de Minas pelas cozinhas de minas O que fazer em BH Esporte Centro-Oeste Centro-Oeste Bom dia Minas MG TV 1ª Edição MG TV 2ª Edição MG Rural Integração notícia Esporte Grande Minas Grande Minas Inter TV Notícia MG Inter TV 1ª Edição MG Inter TV 2ª Edição Inter TV Rural É o bicho Esporte Sul de Minas Sul de Minas Bom dia Cidade Jornal da EPTV 1ª Edição Jornal da EPTV 2ª Edição Terra da gente Esporte Triângulo Mineiro Triângulo Mineiro Bom dia Minas Uberlândia Uberlândia MG TV 1ª Edição MGTV 2ª edição Uberaba Uberaba MGTV 1ª Edição MGTV 2ª Edição MG Rural Integração notícia Concursos Esporte Globo Esporte Vales de Minas Gerais Vales de Minas Gerais Inter TV notícia MG Inter TV 1ª Edição MG Inter TV 2ª Edição Inter TV Rural É o bicho Esporte Zona da Mata Zona da Mata Bom dia Minas MG TV 1ª Edição MG TV 2ª Edição MG Rural Integração notícia Esporte Globo Esporte Rio de Janeiro Rio de Janeiro Rio de Janeiro e região Rio de Janeiro e região Bom dia Rio RJ1 RJ2 Globo Comunidade RJ O que fazer no RJ Fora do ponto Esporte Norte Fluminense Norte Fluminense Bom dia Rio RJ TV Inter 1ª Edição RJ TV Inter 2ª Edição Inter TV Rural Esporte Região dos Lagos Região dos Lagos Bom dia Rio RJ TV Inter 1ª Edição RJ TV Inter 2ª Edição Inter TV Rural Esporte Região Serrana Região Serrana Bom dia Rio RJ TV Inter 1ª Edição RJ TV Inter 2ª Edição Inter TV Rural Esporte Sul e Costa Verde Sul e Costa Verde Bom dia Rio RJ TV 1ª Edição RJ TV 2ª Edição Esporte São Paulo São Paulo São Paulo e região São Paulo e região Bom Dia SP SP1 SP2 Antena Paulista O que fazer em SP Esporte Bauru e Marília Bauru e Marília Bom Dia SP Bom Dia Cidade Tem Notícias 1ª Edição Tem Notícias 2ª Edição Nosso Campo Esporte Campinas e região Campinas e região Bom Dia Cidade Jornal da EPTV 1ª Edição Jornal da EPTV 2ª Edição Terra da Gente Concursos Esporte Itapetininga e região Itapetininga e região Bom Dia SP Bom Dia Cidade TEM Notícias 1ª Edição TEM Notícias 2ª Edição Antena Paulista Nosso Campo Resumo da Notícia Memória TEM Comunidade Esporte Mogi das Cruzes e Suzano Mogi das Cruzes e Suzano Bom Dia Diário Diário TV 1ª Edição Diário TV 2ª Edição Diário Comunidade Concursos Esporte Piracicaba e região Piracicaba e região Bom Dia Cidade Jornal da EPTV 1ª Edição Jornal da EPTV 2ª Edição Jornal Regional Terra da Gente Esporte Prudente e região Prudente e região Bom Dia Fronteira Bom Dia SP Fronteira Notícias 1ª Edição Fronteira Notícias 2ª Edição Esporte Ribeirão Preto e Franca Ribeirão Preto e Franca Bom Dia Cidade Jornal da EPTV 1ª Edição Jornal da EPTV 2ª Edição Terra da Gente Esporte Rio Preto e Araçatuba Rio Preto e Araçatuba Bom Dia SP Bom Dia Cidade TEM Notícias 1ª Edição TEM Notícias 2ª Edição Nosso Campo Esporte Santos e região Santos e região Bom Dia Região Jornal Tribuna 1ª Edição Jornal Tribuna 2ª Edição Antena Paulista G1 em um Minuto Santos Viver Bem O Que Fazer Em Santos Culinária #13 Por Dentro do Porto Esporte São Carlos e Araraquara São Carlos e Araraquara Bom Dia SP Jornal da EPTV 1ª Edição Jornal da EPTV 2ª edição Terra da Gente Sorocaba e Jundiaí Sorocaba e Jundiaí Bom Dia SP Bom Dia Cidade Tem Notícias 1ª Edição Tem notícias 2ª Edição Nosso Campo Esporte Vale do Paraíba e região Vale do Paraíba e região Bom Dia Vanguarda Link Vanguarda Jornal Vanguarda Vanguarda Comunidade Esporte sul sul Paraná Paraná Curitiba e Região Curitiba e Região Bom Dia Paraná Meio Dia Paraná – Curitiba Boa Noite Paraná – Curitiba Caminhos do Campo Bom Dia Sábado Esporte Campos Gerais e Sul Campos Gerais e Sul Bom Dia Paraná Meio Dia Paraná – Ponta Grossa Boa Noite Paraná – Ponta Grossa Caminhos do Campo Boa Noite Paraná – Guarapuava Bom Dia Sábado Esporte Norte e Noroeste Norte e Noroeste Bom Dia Paraná Meio Dia Paraná – Maringá Boa Noite Paraná – Maringá Caminhos do Campo Meio Dia Paraná – Londrina Boa Noite Paraná – Londrina Meio Dia Paraná - Noroeste Boa Noite Paraná – Noroeste Bom Dia Sábado Esporte Oeste e Sudoeste Oeste e Sudoeste Bom Dia Paraná Meio Dia Paraná – Foz do Iguaçu Boa Noite Paraná – Foz do Iguaçu Caminhos do Campo Meio Dia Paraná – Cascavel Boa Noite Paraná – Cascavel Bom Dia Sábado Esporte Rio Grande do Sul Rio Grande do Sul Bom Dia Rio Grande Jornal do Almoço RBS Notícias Campo e Lavoura Esporte Santa Catarina Santa Catarina Bom Dia Santa Catarina Jornal do Almoço NSC Notícias Nossa Santa Catarina Campo e Negócios SC Que Dá Certo Esporte Telejornais Telejornais Autoesporte Autoesporte carros de a a z caminhões motos ipva tabela fipe vídeos autoesporte Bem Estar Bem Estar Vídeos vc no bem estar fale com o bem estar Bom Dia Brasil Bom Dia Brasil Redação História Vídeos Fale com o bom dia brasil Como Será? Como Será? quadros e séries quadros e séries Adolescentes caminhos da justiça econstrução ecostura expedição campo expedição urbana qual vai ser? #partiuférias por uma cidade mais inteligente semente sos-sus sobre asas grandes ideias, pequenas invenções nós.doc aluno nota 11 O que você pode fazer hoje pelo amanhã história vídeos vc no como será fale com o como será Fantástico Fantástico quadros e séries quadros e séries fant 360 a jornada da vida cadê o dinheiro que tava aqui? detetive virtual repórter por um dia shows e musicais história vídeos vc no fantástico denuncie fale com o fantástico G1 em 1 Minuto Globo Repórter Globo Repórter redação história receitas testes vídeos vc no globo repórter fale com o globo repórter Globo Rural Globo Rural agro guia do globo rural revista globo rural história vídeos vc no globo rural fale com o globo rural Hora 1 Hora 1 história vídeos vc no hora um fale com o hora um Jornal da Globo Jornal da Globo redação história vídeos vc no jg fale com o jg Jornal Hoje Jornal Hoje crônicas história vídeos vc no jh fale com o jh Jornal Nacional Jornal Nacional redação história vídeos vc no jornal nacional fale com o jornal nacional Pequenas Empresas Pequenas Empresas pme quadros quadros pegn.tec contato das empresas revista pegn história vídeos vc no pegn fale com o pegn Profissão Repórter Profissão Repórter equipe história vídeos vc no profissão repórter fale com o profissão repórter Retrospectiva 2018 GloboNews GloboNews jornais jornais Conta Corrente Estúdio i GloboNews Em Pauta GloboNews em Ponto Jornal das Dez Jornal GloboNews Edição das 10 Edição das 16 Edição das 18 programas programas arquivo n central das eleições 2018 central globonews cidades e soluções diálogos com mario sergio conti em casa com nelson motta em foco com Andreia Sadi entre aspas fatos e versões fernando gabeira globonews documentário globonews documento globonews em movimento globonews especial + programas + programas globonews internacional globonews literatura globonews miriam leitão globonews painel globonews política Hub GloboNews manhattan connection milênio mundo s/a O melhor do Brasil é o Brasileiro pelo mundo política no brasil que mundo é esse? roberto d'avila sem fronteiras via brasil globonews ao vivo globonews play programação redes sociais redes sociais globonews time globonews História -- Fale com a GloboNews grupo globo princípios editoriais Blogs e Colunas Podcasts Serviços Serviços Agenda do Dia App G1 Calculadoras Concursos e Emprego fato ou fake Loterias Previsão do Tempo Resumo do Dia Tabela Fipe Teste vocacional Vídeos Vídeos Mais Recentes Mais Vistos Carros Ciência Economia Mundo Política Pop & Arte Tecnologia Rio de Janeiro São Paulo Especial Publicitário Especial Publicitário Atlas Quantum Einstein e sua saúde Inovação em Movimento -- Fale com o G1 Grupo Globo Princípios editoriais Por Mauro Ferreira Jornalista carioca que escreve sobre música desde 1987, com passagens em 'O Globo' e 'Bizz'. Faz um guia para todas as tribos Douglas Germano expõe fraturas do Brasil no ritmo do samba afrontoso do álbum 'Escumalha' Disco apresenta a primeira parceria do bamba de Sampa com Aldir Blanc. G1 15/07/2019 12h18 Atualizado 2019-07-15T19:31:14.676Z Adriana Aranha / Divulgação O samba de Douglas Germano é golpe ágil de faca que corta na carne para dissecar os ossos de um Brasil de fraturas sociais expostas a cada alvorecer. Escumalha – terceiro álbum deste cantor e compositor paulistano – retrata com crueza a sina de Maria, João e José na lida diária com as mazelas de um país cuja paga é o açoite, como o sambista denuncia entre os roncos das cuícas que pontuam Chapa (Douglas Germano, 2019). Músicas como Marcha de Maria (Douglas Germano, 2000) se enquadram nessa moldura rústica que evoca a crueza do Poema tirado de uma notícia de jornal (Manuel Bandeira, 1974), ponto de partida para a criação do conceito do disco. No ritmo de sambas como Vil malandrão (Douglas Germano e Kiko Dinucci, 2016), o sambista baixa no terreiro – repleto de referências de signos afro-brasileiros em Àgbá (Douglas Germano, 2018) – para catar flores em terreno baldio, dando à palavra aos sem-voz, às vezes com verniz poético, como em Insignificâncias (Douglas Germano e João Poleto, 2014). Capa da edição em CD do álbum 'Escumalha', de Douglas Germano — Foto: Divulgação / Boca de Lobo Ainda que o toque do ijexá conduza o envolvente Tempo velho (Douglas Germando, 2015) e por mais que haja clima de forró em Ratapaiapatabarreno (Douglas Germano, 2014), o samba é o ritmo dominante na formatação deste repertório desbocado que evoca menos João Bosco do que o cancioneiro apresentado por Germano no álbum anterior Golpe de vista (2016). Curiosamente, Escumalha apresenta entre as dez faixas a primeira parceria de Douglas Germano com Aldir Blanc, letrista afiado de Valhacouto (2019), cuja trama do violão (tocado pelo próprio Germano) remete de imediato aos sambas de Bosco com Blanc na década de 1970, assim como acontece no imponente samba-título Escumalha (Douglas Germano, 2018). Douglas Germano reúne dez sambas inéditos, compostos nos últimos anos, no álbum 'Escumalha' — Foto: Adriana Aranha / Divulgação Mirando contra os escroques, Valhacouto esparrama nos versos o sangue que escorre pelas frestas de um Brasil em decomposição. Babaca (Douglas Germano, 2019) também vai direto ao ponto, cuspindo versos e verdades na cara da bandalha. Embora o repertório do álbum anterior Golpe de vista soe mais coeso no conjunto da obra do artista, Escumalha é corajoso disco em que Douglas Germano, bamba de Sampa, afronta o discurso oficial de um Brasil justo para expor as vísceras de país corroído pelas mazelas sociais. (Cotação: * * * 1/2) Veja também Anterior Próximo Mais do G1 Tragédia em MG Vale fecha acordo para pagar R$ 700 mil a cada familiar dos funcionários mortos em Brumadinho Termos foram negociados com o Ministério Público do Trabalho. Rompimento de barragem matou 248 pessoas e deixou 22 desaparecidos. Há 2 horas Minas Gerais Previdência Senado pode aprovar reforma em 60 dias, diz presidente da CCJ Há 3 horas Política PSB abre processo contra deputados que votaram a favor da reforma Há 3 horas Rodovias federais Governo faz acordo para reduzir a 1 mil número de futuros radares Ministro diz que medida vai gerar economia de R$ 600 milhões ao governo. Há 5 horas Auto Esporte Cotado para embaixada Críticas a filho são 'sinal de que é a pessoa adequada', diz Bolsonaro Eventual escolha de Eduardo Bolsonaro causou espanto entre diplomatas, políticos e no meio jurídico e abriu discussão sobre nepotismo. Há 10 horas Política Visitação de praias Bolsonaro quer extinguir taxa para acesso a Noronha: 'É um roubo' Valor é de R$ 106 para turistas brasileiros e de R$ 212 para estrangeiros. Há 6 horas Natureza Ceará Vereadores afastam prefeito suspeito de abusar de mulheres Medida vale por 90 dias. José de Paiva é médico e filmava os abusos cometidos nos consultório. Há 46 minutos Ceará Fim de cobrança Mercosul vai acabar com taxa de 'roaming' entre países, diz Anatel Anúncio deve ser feito na cúpula do bloco, que acontece na Argentina nesta semana. Há 2 horas Tecnologia Lista nacional Cadastro na lista de 'não perturbe' do telemarketing começa amanhã Consumidor vai poder se registrar em site para não receber ligações indesejadas. Há 4 horas Economia Empresário foragido Justiça do Rio manda prender dono de banco de investimento Jonas Jaimovick, da JJ Invest, é suspeito de sumir com R$ 170 milhões dos clientes. Há 2 horas Rio de Janeiro Estados Unidos Trump reitera ataque a mulheres congressistas: 'Podem ir embora' Tuítes do presidente no fim de semana foram considerados racistas. Há 3 horas Mundo Veja mais G1 Últimas Notícias © Copyright 2000-2019 Globo Comunicação e Participações S.A. princípios editoriais política de privacidade minha conta anuncie conosco"}
|
{"uuid": "99e90680-25f0-4c09-a920-31ee4c464dd3", "befores": [{"name": "user", "status": "passed", "start": 1573743324279, "stop": 1573743324280}], "start": 1573743324279, "stop": 1573743324293} |
{
"first_traded_price": 1411.0,
"highest_price": 1411.0,
"isin": "IRO1TGOS0001",
"last_traded_price": 1382.0,
"lowest_price": 1380.0,
"trade_volume": 510340.0,
"unix_time": 1252800000
} |
[{"boots": 3020.0, "second": 3285.0, "champ": 134.0, "tier": "GOLD", "third": 3089.0, "region": "RU", "patch": "5.11", "games": 3.0, "y": 0.25646685117093387, "x": 3.5095773882742072, "first": 3165.0}, {"boots": 3020.0, "second": 3174.0, "champ": 134.0, "tier": "GOLD", "third": 3089.0, "region": "RU", "patch": "5.11", "games": 3.0, "y": -2.402569015139556, "x": 3.2006797865095993, "first": 3285.0}, {"boots": 3020.0, "second": 3089.0, "champ": 134.0, "tier": "GOLD", "third": 3135.0, "region": "RU", "patch": "5.11", "games": 2.0, "y": 0.1444440330556358, "x": -3.0249764631935685, "first": 3174.0}, {"boots": 3020.0, "second": 3089.0, "champ": 134.0, "tier": "GOLD", "third": 3285.0, "region": "RU", "patch": "5.11", "games": 2.0, "y": -0.31276811463057475, "x": 0.66572921237244964, "first": 3174.0}, {"boots": 3020.0, "second": 3157.0, "champ": 134.0, "tier": "GOLD", "third": 3285.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": -0.51654917667054057, "x": 6.6189993742151181, "first": 3089.0}, {"boots": 3020.0, "second": 3165.0, "champ": 134.0, "tier": "GOLD", "third": 3285.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": -5.4268725298971585, "x": 0.33094028672608533, "first": 3157.0}, {"boots": 3020.0, "second": 3089.0, "champ": 134.0, "tier": "GOLD", "third": 3157.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": 1.4712726758535695, "x": 0.88933156521915935, "first": 3165.0}, {"boots": 3020.0, "second": 3157.0, "champ": 134.0, "tier": "GOLD", "third": 3135.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": -3.7973260670909079, "x": -3.8553336217510221, "first": 3165.0}, {"boots": 3020.0, "second": 3157.0, "champ": 134.0, "tier": "GOLD", "third": 3089.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": -3.0142835225866254, "x": -3.0816656649791514, "first": 3174.0}, {"boots": 3020.0, "second": 3157.0, "champ": 134.0, "tier": "GOLD", "third": 3285.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": -6.6332628385706283, "x": -2.9352865791943739, "first": 3174.0}, {"boots": 3020.0, "second": 3285.0, "champ": 134.0, "tier": "GOLD", "third": 3089.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": -2.1222577726225764, "x": 0.73891875526483775, "first": 3174.0}, {"boots": 3020.0, "second": 3285.0, "champ": 134.0, "tier": "GOLD", "third": 3116.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": -3.8051917385402314, "x": -2.3035908353878405, "first": 3174.0}, {"boots": 3020.0, "second": 3285.0, "champ": 134.0, "tier": "GOLD", "third": 3157.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": -6.335920921915946, "x": -1.661758439113044, "first": 3174.0}, {"boots": 3020.0, "second": 3165.0, "champ": 134.0, "tier": "GOLD", "third": 3157.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": -4.8321886965877923, "x": 2.8779965668887448, "first": 3285.0}, {"boots": 3158.0, "second": 3285.0, "champ": 134.0, "tier": "GOLD", "third": 3157.0, "region": "RU", "patch": "5.11", "games": 1.0, "y": -3.1190924042299288, "x": 1.0409583653620271, "first": 3165.0}] |
{"links":{"self":"https://petition.parliament.uk/petitions.json?page=34\u0026state=open","first":"https://petition.parliament.uk/petitions.json?state=open","last":"https://petition.parliament.uk/petitions.json?page=36\u0026state=open","next":"https://petition.parliament.uk/petitions.json?page=35\u0026state=open","prev":"https://petition.parliament.uk/petitions.json?page=33\u0026state=open"},"data":[{"type":"petition","id":208870,"links":{"self":"https://petition.parliament.uk/petitions/208870.json"},"attributes":{"action":"Make it law for all age restricted products to require approved photo ID.","background":"Across the country retail workers face verbal and physical abuse because of asking to see ID. The guessing of a customers age is what causes these cases of abuse with customers trying to intimidate the member of staff into selling the product. A no ID no sale law would put an end to the daily abuse.","additional_details":"Evidence shows that there are more than 6000 incidents a day of verbal or physical abuse of retail workers because they requested to see ID for an age restricted product. A simple law that states no ID no sale on all age restricted products would remove the possibility of human error in having to guess people's ages and would help to stop the verbal and physical abuse that occurs because of this.","state":"open","signature_count":9,"created_at":"2018-01-04T17:06:33.863Z","updated_at":"2018-03-30T02:37:57.525Z","rejected_at":null,"opened_at":"2018-01-09T17:52:36.414Z","closed_at":null,"moderation_threshold_reached_at":"2018-01-04T19:02:47.979Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Zoe Priest","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":207629,"links":{"self":"https://petition.parliament.uk/petitions/207629.json"},"attributes":{"action":"Exempt Charities from paying Insurance Premium Tax (IPT)","background":"We believe the Government should be doing everything it can to support the vital work charities are doing, not imposing unnecessary costs on them. We call for charities to be exempted from Insurance Premium Tax (IPT).","additional_details":"The Government could introduce an exemption from, or reduction in, IPT for all UK Charities. A further rise in the rate of standard UK IPT was announced recently. From 1st June 2017 IPT charged on charities' insurance premiums increased to 12%. This represents a 100% increase in an 18 month period. These increases have and will continue to negatively affect charities who have already suffered in the last few years from reduced income while seeing an increase in the demand for their services.","state":"open","signature_count":9,"created_at":"2017-12-13T17:53:53.380Z","updated_at":"2018-03-15T10:38:55.879Z","rejected_at":null,"opened_at":"2017-12-18T18:10:03.793Z","closed_at":null,"moderation_threshold_reached_at":"2017-12-14T08:01:34.380Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Simon Hickman","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":221841,"links":{"self":"https://petition.parliament.uk/petitions/221841.json"},"attributes":{"action":"Make GCSE English Literature open book and give all formulae for other exams.","background":"Exam boards say that the new 9-1 GCSE exams are 'not a memory test' but rather 'an assessment of skill'. However, students are not given formulae and studied literature texts in exams, thus making them memory tests. This puts unnecessary pressure on students, and leads to deteriorated mental health.","additional_details":"","state":"open","signature_count":8,"created_at":"2018-06-09T23:42:29.150Z","updated_at":"2018-06-14T16:31:37.533Z","rejected_at":null,"opened_at":"2018-06-14T16:31:37.529Z","closed_at":null,"moderation_threshold_reached_at":"2018-06-10T08:04:52.523Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Yusuf Varsani","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":221661,"links":{"self":"https://petition.parliament.uk/petitions/221661.json"},"attributes":{"action":"Ban alcohol and gambling sponsors in sport.","background":"Our nation is getting worse with alcohol and gambling, young children, teens are being exposed to bad influences that it is good to drink alcohol and gamble as it is good to watch sport such as football. Children are seeing this as a norm and have become addicts.\r\nIt is time to stop this.","additional_details":"","state":"open","signature_count":8,"created_at":"2018-06-07T12:49:13.463Z","updated_at":"2018-06-13T10:46:13.518Z","rejected_at":null,"opened_at":"2018-06-12T11:18:30.716Z","closed_at":null,"moderation_threshold_reached_at":"2018-06-07T13:37:45.527Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Tanjel Shah","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":221468,"links":{"self":"https://petition.parliament.uk/petitions/221468.json"},"attributes":{"action":"Create a National Roads Agency for the repair and maintenance of all roads.","background":"I have had to repair damage to three wheels on my car which were caused by potholes. While driving I spend more time looking out for the potholes and swerving to avoid them.","additional_details":"The roads in this country now compare to that of a third world country and are full of potholes. With local authorities unable to eradicate this problem and only repair the roads on a small scale it is time for the government to set up a national agency with the sole responsibility to repair and maintain roads in England. Motorists already pay enough money through their car road tax and fuel tax and get very little in return.","state":"open","signature_count":8,"created_at":"2018-06-04T21:44:03.426Z","updated_at":"2018-06-13T14:00:35.992Z","rejected_at":null,"opened_at":"2018-06-13T14:00:35.989Z","closed_at":null,"moderation_threshold_reached_at":"2018-06-06T07:29:50.883Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Bruce Hanson","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":221285,"links":{"self":"https://petition.parliament.uk/petitions/221285.json"},"attributes":{"action":"Reverse 20 years long residency rule to 14 years residency to legalise status.","background":"Thousands are affected with this rule as it forces individuals to spend their whole life here to get indefinite leave to remain.\r\nSo if a person arrives here in his early 20s, he has to spend 20 years of his life to apply only for leave to remain following 3 more leave to remains for next 10 years.","additional_details":"This rule is a cruel step towards humanity as expecting someone to spend half of his life in United Kingdom with no means, no job, no driving licence and doing odd jobs to survive is against article 8: ‘your right to a private and family life’.\r\nBefore July 2012, the rule was 14 years long residency before one used to apply for indefinite leave to remain to settle here unconditionally which was not much bad period.\r\nBut Prime Minister Theresa May changed this 14 years long residency with 20 years.","state":"open","signature_count":8,"created_at":"2018-06-02T10:23:50.232Z","updated_at":"2018-06-09T10:17:53.922Z","rejected_at":null,"opened_at":"2018-06-08T15:11:55.614Z","closed_at":null,"moderation_threshold_reached_at":"2018-06-02T11:39:53.788Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Nikki Khan","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":221283,"links":{"self":"https://petition.parliament.uk/petitions/221283.json"},"attributes":{"action":"Give all carers with SGO the same allowance regardless of income","background":"Carers with SGOs keep children out of the care system. Some of us get an allowance, others don't. \r\nWe get deductions from these allowances, yet we do the same as foster carers who get larger allowances. \r\nWe have the additional issues of emotional attatchement to these children.","additional_details":"We care for children who have a lot of emotional issues, we keep them out of the care system because we have a heart and love these children as if they were our own. Yet we get penalised for this, some SGO carers get no help bringing these children up and giving them the life every child deserves.\r\nThe government should not make deductions to allowances and should make the allowance the same for every carer regardless of income.","state":"open","signature_count":8,"created_at":"2018-06-02T09:58:27.967Z","updated_at":"2018-06-08T15:21:37.566Z","rejected_at":null,"opened_at":"2018-06-08T15:21:32.342Z","closed_at":null,"moderation_threshold_reached_at":"2018-06-02T10:33:12.785Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Ayshea Johnson","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":221143,"links":{"self":"https://petition.parliament.uk/petitions/221143.json"},"attributes":{"action":"Make it a legal requirement for urinals to have a partition that offers privacy","background":"Urinating and exposing yourself in a public toilet is an uncomfortable situation at the best of times. It's time a privacy partition is installed in all toilets across the country, and give us the privacy we deserve. ","additional_details":"Just because we can urinate in public, does not mean we like exposing ourselves.\r\n\r\nNearly 4 million people in the UK are affected by paruresis or shy bladder syndrome, which can be a physically and socially uncomfortable condition. \r\n \r\nWe need to make it a legal requirement for all urinals across the country to have decent privacy and help people conquer toilet anxiety.","state":"open","signature_count":8,"created_at":"2018-05-31T14:52:50.660Z","updated_at":"2018-06-08T07:41:04.594Z","rejected_at":null,"opened_at":"2018-06-06T09:25:45.149Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-31T15:27:19.543Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Charli Janeway","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":221042,"links":{"self":"https://petition.parliament.uk/petitions/221042.json"},"attributes":{"action":"Public enquiry into new 2018 train timetables' severe delays and cancellations","background":"Since the introduction of new train timetables in May 2018, services by multiple train opertators have been serverely affected daily delays and cancellations. Poor forward planning by operators has caused unacceptable inconvenience, loss of earnings and damage to regional and national economies.","additional_details":"","state":"open","signature_count":8,"created_at":"2018-05-30T08:26:28.928Z","updated_at":"2018-06-11T06:23:59.049Z","rejected_at":null,"opened_at":"2018-06-08T16:29:00.830Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-31T12:33:53.437Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Colin Firth","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220913,"links":{"self":"https://petition.parliament.uk/petitions/220913.json"},"attributes":{"action":"Ban the sale of disposable BBQs in the UK","background":"Disposable BBQs are bad for the environment in terms of use \u0026 disposal\r\n\r\nAre made using unsustainable materials from tropical forests in South Africa and South America\r\nCan't be recycled\r\nBurn the grass \u0026 typically result it scattered litter\r\nLocal residents are unable to open windows","additional_details":"https://www.hackneycitizen.co.uk/2018/03/21/hackney-council-cracks-down-bbqs-london-fields/\r\n\r\nhttp://news.hackney.gov.uk/london-fields-disposable-barbecue-ban\r\n\r\nhttps://www.telegraph.co.uk/culture/3666716/Is-it-worth-it-Disposable-barbecues.html","state":"open","signature_count":8,"created_at":"2018-05-28T16:59:50.784Z","updated_at":"2018-06-06T10:53:21.800Z","rejected_at":null,"opened_at":"2018-06-04T19:15:15.855Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-30T13:05:17.488Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Patrick Wa","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220668,"links":{"self":"https://petition.parliament.uk/petitions/220668.json"},"attributes":{"action":"Lower the university fee for all students! By atleast £1000","background":"Students are thinking about university as summer starts however most are drawn back due to the large amount of cash they have to pay per year! The goverment need to start deciding what to put their money on wisely if they want a bright future for the UK.","additional_details":"","state":"open","signature_count":8,"created_at":"2018-05-25T12:17:53.441Z","updated_at":"2018-06-01T18:08:24.038Z","rejected_at":null,"opened_at":"2018-06-01T18:08:21.562Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-26T08:47:51.982Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Janki patel","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220613,"links":{"self":"https://petition.parliament.uk/petitions/220613.json"},"attributes":{"action":"UK Government to create a scheme to help people to manage their gambling.","background":"Gambling was legalised in 1961 for better government control and to allow SMALL bets to be placed. There are 450k-2million problem gamblers that effect 2-10million people in the UK. Can i suggest that the UK government considers the introduction of a 'gambling card' that will control gambling.","additional_details":"I believe there is a 'conflict of interest' letting betting companies deal with 'Self exclusion' and 'Affordability checks'. Betting companies do not identify problem gamblers and there is no instructions how they could identify problem gamblers. Amounts placed and frequency is not monitored. Could the government, working with betting firms, consider a 'gambling card' be introduced based on someone's income. Gambling is not FUN if someone can lose more than they can afford to.","state":"open","signature_count":8,"created_at":"2018-05-24T16:54:39.357Z","updated_at":"2018-05-31T17:27:48.363Z","rejected_at":null,"opened_at":"2018-05-31T17:27:48.359Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-24T17:33:36.714Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Mr Paul Antony Saville","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220595,"links":{"self":"https://petition.parliament.uk/petitions/220595.json"},"attributes":{"action":"'None of the above' as option on ballot paper","background":"Party Politics can often be seen as a 'Least worst option'.\r\nIf we had the option on the ballot paper to indicate 'none of the above' then this positive act would be reflected in the turnout .","additional_details":"The strength of a democracy is measured, in part, by the turnout at elections. This option would increase the intelligence as to what the electorate view of politicians really looks like. As opposed to voting for 'the least worst option'.","state":"open","signature_count":8,"created_at":"2018-05-24T12:10:55.875Z","updated_at":"2018-06-11T12:06:36.971Z","rejected_at":null,"opened_at":"2018-05-31T18:19:40.397Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-25T23:48:56.970Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Anthony MUNDAY","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220576,"links":{"self":"https://petition.parliament.uk/petitions/220576.json"},"attributes":{"action":"Condemn killings by the Indian government","background":"On 23rd May 2018, Indian and local Tamil Nadu government forces killed 13 unarmed civilians protesting against environmental disaster created by Sterlite copper in Tuticorin, TN owned by Vedanta resources plc. ","additional_details":"The UK Government must condemn this human rights violation and urge the India Government to protect human rights, including people’s right to protest.","state":"open","signature_count":8,"created_at":"2018-05-24T06:04:08.440Z","updated_at":"2018-06-07T00:11:45.206Z","rejected_at":null,"opened_at":"2018-06-06T12:28:47.660Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-24T14:12:32.153Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Sreevathsan Ramanathan","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220411,"links":{"self":"https://petition.parliament.uk/petitions/220411.json"},"attributes":{"action":"Stop paying tax on pensions","background":"We, the undersigned, believe that paying tax on private and other pensions is unfair given that people would have paid tax on both their individual earnings and pension contributions.","additional_details":"We further believe that paying tax on private and other pensions unnecessarily penalises people who may have no other source of income after they retire.\r\n\r\nWe therefore call upon the British Government to immediately legislate to remove the requirement for people to pay tax on their pensions.","state":"open","signature_count":8,"created_at":"2018-05-21T12:34:01.019Z","updated_at":"2018-06-04T15:24:15.670Z","rejected_at":null,"opened_at":"2018-05-29T15:22:17.102Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-24T11:08:13.707Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"David Nigel Wayne Reardon","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220312,"links":{"self":"https://petition.parliament.uk/petitions/220312.json"},"attributes":{"action":"Change the Law so Property Owners can Keep Balls that Persistently go in Gardens","background":"Damage to Plants with Footballs Snapping Them off, also Scuff Marks left on Vehicles due to getting impregnated with Grit, Owners should be able to take a Pride in their Gardens and Vehicles, although a Law under Section 161 Highways it is an Offence to Play on the Highway causing a Nuisance.","additional_details":"Many people throughout the Country have these issues, it is Stupid to give the Balls back time again to be Kicked over again and again, let’s get the Law on the side of Property Owners, Many Letters in the Press suggest many suffer which should NOT be the case.\r\n\r\nLet’s get things put right.","state":"open","signature_count":8,"created_at":"2018-05-18T16:59:36.303Z","updated_at":"2018-05-23T17:00:23.130Z","rejected_at":null,"opened_at":"2018-05-23T11:25:30.132Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-18T17:14:31.099Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Eric Randall","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220285,"links":{"self":"https://petition.parliament.uk/petitions/220285.json"},"attributes":{"action":"Parliament should debate the future of UK overseas territories","background":"At present UK overseas territories have an anomalous status that allows them to be used for money laundering and other nebulous purposes while at the same time denying their inhabitants full sovreignty and a say in the most important aspects of their governance.","additional_details":"Ideally Overseas Territories should be asked to choose between full independence within the Commonwealth or becoming integrated parts of the UK with Westminster representation (after the model of French overseas department).","state":"open","signature_count":8,"created_at":"2018-05-18T12:32:03.972Z","updated_at":"2018-05-29T10:09:00.771Z","rejected_at":null,"opened_at":"2018-05-29T09:29:44.260Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-21T11:20:01.144Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Alexander Douglas Woolf","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220247,"links":{"self":"https://petition.parliament.uk/petitions/220247.json"},"attributes":{"action":"Make homework voluntary across all schools.","background":"As it’s mental health awareness week, it got me thinking about how anxious I used to be when I did not complete my homework when I was a student. I used to make myself sick or just go AWOL at school. I see the same pattern occurring within my children’s behaviour.","additional_details":"","state":"open","signature_count":8,"created_at":"2018-05-17T20:51:24.497Z","updated_at":"2018-06-01T15:53:45.993Z","rejected_at":null,"opened_at":"2018-05-24T16:30:27.718Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-17T21:00:30.250Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Adam Maile","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220244,"links":{"self":"https://petition.parliament.uk/petitions/220244.json"},"attributes":{"action":"british soldier should be free from prosecution unless dishonourably discharged","background":"No British soldier should ever face criminal charges whilst in the execution of his duties within the armed forces, whether within the british isles or abroad. This should apply across the board and be retrospective save for those who are dishonourably discharged.","additional_details":"Scurrilous accusations are inevitable and it is disgraceful that governments past and present have not seen fit to prevent the prosecution of men and women who have risked their very lives for the uniform and the people they serve.","state":"open","signature_count":8,"created_at":"2018-05-17T20:31:55.024Z","updated_at":"2018-05-29T15:44:44.619Z","rejected_at":null,"opened_at":"2018-05-24T16:37:23.326Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-18T18:30:22.324Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Stephen Dawson","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220217,"links":{"self":"https://petition.parliament.uk/petitions/220217.json"},"attributes":{"action":"Using a mobile phone whilst driving change to a 6 month ban and £1500 fine","background":"The current law of a few points and a small fine is no real deterrent \r\nOn a daily basis I see people in traffic queues on phones \r\nIt should apply too whenever the engine is running (sat in traffic )\r\nBluetooth systems are very cheap so no excuse to text or call with your hands off the wheel","additional_details":"","state":"open","signature_count":8,"created_at":"2018-05-17T13:21:52.108Z","updated_at":"2018-05-29T15:30:10.632Z","rejected_at":null,"opened_at":"2018-05-23T11:28:35.580Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-18T12:27:22.719Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Justin Walden","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220107,"links":{"self":"https://petition.parliament.uk/petitions/220107.json"},"attributes":{"action":"Improve school lunch standards to ensure all children eat lunch","background":"I have raised concern over many school children not eating lunch during school. This is due to unappetizing and unhygienic meals which put's the school children off of their food. This is a major concern because the school children are missing out on vital nutrients required to grow.","additional_details":"Not only do the children find the food disgusting and extremely unappetizing, both teachers and parents have also commented on the situation and are worried about the health of students from leaving out such vital nutrients. Without a sustainable amount of energy, school children will be unable to concentrate during lessons which may affect their education.","state":"open","signature_count":8,"created_at":"2018-05-15T22:41:43.286Z","updated_at":"2018-05-21T22:40:46.804Z","rejected_at":null,"opened_at":"2018-05-21T20:04:49.157Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-15T22:56:08.216Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Josh Shaw","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":220025,"links":{"self":"https://petition.parliament.uk/petitions/220025.json"},"attributes":{"action":"Decriminalise drug possession","background":"People are currently being needlessly prosecuted for consuming drugs. This method has proved innefective in curbing drug use and deaths. By decriminalising drug possession we can save millions of pounds on convictions and invest in harm reduction methods and education as shown effective by Portugal.","additional_details":"As shown by this link https://www.statista.com/chart/10320/drug-deaths-in-europe/ Portugal's system of decriminalisation has resulted in the lowest death rate from drugs if any country in Europe. By decriminalising drug possession users and addicts alike can get help to stop their addiction and use drugs in a safer manner. Moreover, the majority of drug users do not pose a threat to society and their lives are being ruined due to unjust drug laws. We help the disabled, why not drug users?","state":"open","signature_count":8,"created_at":"2018-05-14T23:18:20.488Z","updated_at":"2018-06-13T10:33:39.784Z","rejected_at":null,"opened_at":"2018-06-04T21:15:15.316Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-29T21:11:01.093Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Daniel Anthony Mallia","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":219859,"links":{"self":"https://petition.parliament.uk/petitions/219859.json"},"attributes":{"action":"Establish an Atrocities Prevention Board.","background":"Human rights and the prevention of mass atrocities should be at the centre of our foreign policy thinking. An Atrocities Prevention Board, made up of representatives from across government, would ensure a comprehensive approach to identify and address threats to vulnerable groups of people.","additional_details":"Barack Obama established an Atrocities Prevention Board (ABP) in 2012. It has improved the US government's ability to identify early threats and widened the tools with which those threats can be dealt with. It has also provided the impetus to take early action in a number of countries that might otherwise not have received such attention.\r\n\r\nA UK equivalent could spur on a similar change and ensure that genocide and mass atrocity prevention are a priority at the highest levels of government.","state":"open","signature_count":8,"created_at":"2018-05-12T16:30:27.625Z","updated_at":"2018-06-01T19:20:34.733Z","rejected_at":null,"opened_at":"2018-05-18T12:08:00.857Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-13T12:12:00.897Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Kieran Roberts","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":219836,"links":{"self":"https://petition.parliament.uk/petitions/219836.json"},"attributes":{"action":"A complete review of the justice system in reference to sexual criminals","background":"We,the people ask the government invests time into reviewing the path of justice in reference to sexual crimes. Time and time again we hear about rapists perverts and peadophiles absconding or breaking court orders. There should be manadatory life senticing for rapists.","additional_details":"In the UK only second offences can be considered for mandatory life, we demand that the leniency given to sexual criminals be investigated by an impartial committee. We demand the laws regarding sentencing are thrown out and rewritten. The U.K. is far to lenient on sexual criminals. Most of the time you will see they recieve a 5 month sentence. This is not good enough. The safety of our children is at stake.","state":"open","signature_count":8,"created_at":"2018-05-12T10:38:38.104Z","updated_at":"2018-06-07T00:11:45.166Z","rejected_at":null,"opened_at":"2018-05-18T16:57:36.676Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-14T07:13:33.714Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Jacob briars","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":219762,"links":{"self":"https://petition.parliament.uk/petitions/219762.json"},"attributes":{"action":"Make a new law to protect independent shops from competing chain supermarkets","background":"A new law should be created to ban large chain supermarkets from selling competing products within 500 yards of an independent shop.\r\n\r\n","additional_details":"Independent local shops need to be looked after otherwise they will all disappear. Being close to one or more chain supermarkets takes away a large chunk of business especially when they do special offers and even give products away buying customer loyalty.\r\n\r\nAn independent local newsagent sits in a small town with a Waitrose, a Lidl and a One-Stop (owned by Tesco) all selling newspapers, magazines and greetings cards. For the independent, competing is tough and margins are tight. Profits for the three chain supermarkets are huge and are driving out independents as a result.\r\n","state":"open","signature_count":8,"created_at":"2018-05-11T10:35:51.880Z","updated_at":"2018-05-30T17:45:21.792Z","rejected_at":null,"opened_at":"2018-05-17T13:44:07.015Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-11T17:59:16.408Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Philip Milverton","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":219663,"links":{"self":"https://petition.parliament.uk/petitions/219663.json"},"attributes":{"action":"Ban all plastics and other non-recyclables from Christmas Crackers","background":"The items in Christmas Crackers are often single use. The plastic \"toys\" contained in cheaper Christmas Crackers are often of inferior quality, non-functional and often thrown away on the same day they are produced. Minimum standards for Christmas Crackers should be defined to reduce waste.","additional_details":"","state":"open","signature_count":8,"created_at":"2018-05-09T20:00:23.121Z","updated_at":"2018-06-03T06:30:43.693Z","rejected_at":null,"opened_at":"2018-05-16T10:01:11.877Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-09T20:57:37.888Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Adrian Wood","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":219611,"links":{"self":"https://petition.parliament.uk/petitions/219611.json"},"attributes":{"action":"Launch an awareness campaign for the causes and symptoms of skin cancer ","background":"Last year I had Melanoma and there was little awareness out there, there is more than 1 type of skin cancer. I feel that there is little awareness out there about them and about damage the sun/sun beds can do. There needs to be more campaigns to help prevent it.","additional_details":"","state":"open","signature_count":8,"created_at":"2018-05-09T06:43:13.769Z","updated_at":"2018-06-08T07:40:54.125Z","rejected_at":null,"opened_at":"2018-06-04T09:45:40.464Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-09T09:22:37.827Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Shirley Ann Allan","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":219560,"links":{"self":"https://petition.parliament.uk/petitions/219560.json"},"attributes":{"action":"Introduce Stronger Legislation Governing The Sale of Animal Grooming Products.","background":"At present, companies that produce cosmetic products for animals are under no legal compulsion to label their products appropriately or adhere to the safety standards that regulate the sale of human cosmetics. We want the UK Government to address this with the introduction of stronger legislation.","additional_details":"Legislation affecting the sale of pet products is currently encompassed by EU Cosmetic Regulation 1223/2009 and Section 7.7 (a) of Regulation (EC) No 648/2004 on detergents (European Union, 2009) which states there is no 'sector specific' legislation governing the sale of pet grooming products. We believe the UK can lead the world in introducing stronger legislation forcing a reappraisal in the way in which these products are regulated and labelled.","state":"open","signature_count":8,"created_at":"2018-05-08T13:10:58.079Z","updated_at":"2018-06-10T11:46:21.244Z","rejected_at":null,"opened_at":"2018-05-16T13:28:24.427Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-10T19:24:41.046Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"James Muirhead","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":219537,"links":{"self":"https://petition.parliament.uk/petitions/219537.json"},"attributes":{"action":"At 17 you should be able to ride atleast a 250Cc superbike / Pitbike ( Crosser )","background":"At 17 you're legally allowed to ride a 125Cc. (75 MPH max ). \r\nSo instead make it so you can ride a 250 Cc. \r\n","additional_details":"","state":"open","signature_count":8,"created_at":"2018-05-07T23:06:14.168Z","updated_at":"2018-05-16T18:07:03.803Z","rejected_at":null,"opened_at":"2018-05-16T09:57:01.887Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-09T14:49:55.226Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Joshua Laurence","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":219002,"links":{"self":"https://petition.parliament.uk/petitions/219002.json"},"attributes":{"action":"Protect against big business interests with a “People’s” lobby group fund","background":"The government should change the law to impose a 10% tax on all payments to lobbying organisations. The tax receipts could be used to establish and fund a public taxpayer interest group which would review all lobbying activities and participate and publicly report on each policy decision change.","additional_details":"The democratic system is systematically undermined every day by individuals, corporations and organizations who act to influence the actions, policies and decisions of government officers on their own behalf or for a selected group’s personal advantage or gain to the exclusion of the majority.\r\n\r\nIt is important for government officials and MPs serve the public interest first and not get mislead by lobbying parties or advisors who inadvertently act in a lobbying capacity.","state":"open","signature_count":8,"created_at":"2018-04-30T11:11:51.577Z","updated_at":"2018-06-07T00:11:35.141Z","rejected_at":null,"opened_at":"2018-05-04T12:06:16.663Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-30T11:34:37.243Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Philip Crowley","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":218518,"links":{"self":"https://petition.parliament.uk/petitions/218518.json"},"attributes":{"action":"Stop giving taxpayers' money to the National Union of Students (NUS).","background":"NUS is a political organisation not a union and thus must not be given taxpayers money. \r\n \r\nhttp://mallarduk.com/as-a-student-the-nus-continues-to-embarrass-me%E2%94%82-matt-gillow\r\n","additional_details":"","state":"open","signature_count":8,"created_at":"2018-04-24T21:08:04.996Z","updated_at":"2018-05-26T21:28:15.257Z","rejected_at":null,"opened_at":"2018-05-11T14:29:23.221Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-27T23:54:11.596Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Adam Campbell","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":218362,"links":{"self":"https://petition.parliament.uk/petitions/218362.json"},"attributes":{"action":"Repeal Section 127 (1) of the 2003 Communications Act. Offence is not a crime.","background":"The Communications Act states: (1) A person is guilty of an offence if he \r\n(a) sends by means of a public electronic communications network a message or other matter that is GROSSLY OFFENSIVE or of an indecent, obscene or menacing character. \r\n","additional_details":"Clearly, this is in breach of everybody's right to Freedom of Speech. Offence is an entirely subjective concept. For the state to be able to decide what is offensive, and then prosecute accordingly is tyrannical.","state":"open","signature_count":8,"created_at":"2018-04-23T17:47:40.893Z","updated_at":"2018-06-14T16:59:37.867Z","rejected_at":null,"opened_at":"2018-06-14T09:27:21.969Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-23T18:27:53.180Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"James Dillon","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":218221,"links":{"self":"https://petition.parliament.uk/petitions/218221.json"},"attributes":{"action":"Increase British military spending to £65 Billion","background":"The UK’s military spending is way to low with the threats in N.Korea, Syria and Russia we need to increase spending please sign this petition to increase military spending","additional_details":"","state":"open","signature_count":8,"created_at":"2018-04-21T17:44:49.850Z","updated_at":"2018-05-28T12:50:52.782Z","rejected_at":null,"opened_at":"2018-04-27T15:14:43.668Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-22T12:01:49.965Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Jack Edwards","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":218200,"links":{"self":"https://petition.parliament.uk/petitions/218200.json"},"attributes":{"action":"Institute a Personage \u0026 Citizenry Act","background":"We, the undersigned, call on parliament to institute a new act that grants automatic citizenship to any persons that can demonstrate that they have lived continuously in this country for 15 or more years. Subject to having not committed a serious criminal offence","additional_details":"This act would help secure the rights of people affected by the windrush scandal as well as those people who have migrated here that may be subject to the same treatment in the future.\r\n\r\nPersonage should be granted to those who are working here to act as a temporary status of citizenry for 5 years. If they continue to hold employment for that time then at the end of the 5 years they are granted full citizenry.","state":"open","signature_count":8,"created_at":"2018-04-21T10:09:50.597Z","updated_at":"2018-05-02T07:36:34.560Z","rejected_at":null,"opened_at":"2018-04-30T17:10:05.660Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-23T23:49:42.308Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Charles Underhill-Tyrell","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":218079,"links":{"self":"https://petition.parliament.uk/petitions/218079.json"},"attributes":{"action":"Force all local councils to offer a dedicated plastic waste bin","background":"In the wake of the current plastic crisis I find it staggering that there are still councils like mine in Swindon that do not provide people with a dedicated plastic waste bin.","additional_details":"For example in Swindon if we wish to recycle plastic we have to buy white bin bags and then the waste will be collected. No it doesn't cost much but it is obviously enough to put people off and that is evident every bin collection day. So while the government think about what the consumer can do to help the issue with plastic bottle return points, I think they need to also look at what they should be doing and this is a simple step already offered by other councils.","state":"open","signature_count":8,"created_at":"2018-04-19T15:14:40.379Z","updated_at":"2018-05-29T15:29:39.804Z","rejected_at":null,"opened_at":"2018-04-26T17:58:00.553Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-19T16:56:03.153Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Alfie simm","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":217958,"links":{"self":"https://petition.parliament.uk/petitions/217958.json"},"attributes":{"action":"Provide free legal aid for those on low incomes and benefits","background":"Some of the poorest families in England and Wales are being denied legal aid because they cannot afford the financial contributions they are required to make, This is a travesty and totally unfair sign this petition to give justice to the poorest in our society. Give them free access to lawyers.","additional_details":"A study commissioned by the body that represents solicitors criticised the fact that many on low incomes are being deprived of access to justice by the very system that is supposed to support them.\r\n\r\nThe report, titled Priced out of Justice?, looked at means testing regulations which control and how applicants resisting eviction from their homes, for example, are unable to obtain legal representation.\r\n\r\nHow can this be happening in a modern day democracy. Its reminiscent of the 18th and 19th C","state":"open","signature_count":8,"created_at":"2018-04-18T05:30:16.283Z","updated_at":"2018-05-02T13:46:32.981Z","rejected_at":null,"opened_at":"2018-04-26T17:05:16.387Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-19T18:26:38.982Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Nigel Hancock","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":217367,"links":{"self":"https://petition.parliament.uk/petitions/217367.json"},"attributes":{"action":"British Army only to be used overseas at the request of a Sovereign Government.","background":"No more Invasions, No more innocents suffering for greed and power, No more fighting 'Rebels',trained,funded and supplied by our weapons and the weapons of our allies.","additional_details":"History","state":"open","signature_count":8,"created_at":"2018-04-11T22:22:41.434Z","updated_at":"2018-06-07T00:11:25.110Z","rejected_at":null,"opened_at":"2018-04-18T13:41:23.418Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-12T17:43:43.805Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Mark Benjamin Franklin","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":217321,"links":{"self":"https://petition.parliament.uk/petitions/217321.json"},"attributes":{"action":"Allow English local authorities to choose the voting system for their council","background":"Currently, English local authorities must use the First Past the Post voting system. Due to the Government's localism agenda, we the undersigned believe that local councils are best placed to decide their own voting system to ensure greater accountability and voter choice.","additional_details":"There are many examples of one-party councils across England, which has resulted in a lack of transparency and accountability with no effective opposition. We know that when councils face robust opposition and scrutiny, they spend less and deliver better value for money for the local communities they provide for.\r\n \r\nhttps://www.electoral-reform.org.uk/wp-content/uploads/2017/06/The-Cost-of-One-Party-Councils.pdf\r\n","state":"open","signature_count":8,"created_at":"2018-04-11T15:39:06.861Z","updated_at":"2018-05-09T18:31:11.984Z","rejected_at":null,"opened_at":"2018-05-08T14:21:33.061Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-11T21:03:57.393Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Jordan Fred Paul Mark Barry","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":217189,"links":{"self":"https://petition.parliament.uk/petitions/217189.json"},"attributes":{"action":"Vehicle tax to include levy for repair of roads maintained by local authorities","background":"The condition of local roads is poor. Pot holes and bad repairs are a mounting problem that impact all road users. The situation in places can be dangerous and cause significant costs. A link to vehicle tax would be a link to the number of vehicles and thus provide proportionate funds.","additional_details":"Evidence can be found in the budget of local authorities. Requirements exceed funding, over many years, by large amounts.","state":"open","signature_count":8,"created_at":"2018-04-09T09:48:14.785Z","updated_at":"2018-05-06T14:40:19.949Z","rejected_at":null,"opened_at":"2018-04-17T15:53:26.138Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-12T09:22:59.615Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"John Vincent","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":217147,"links":{"self":"https://petition.parliament.uk/petitions/217147.json"},"attributes":{"action":"Fund “Off The Street, Less Heat” youth project and similar projects","background":"Off the Street, Less Heat is a youth diversion project which provides sports and other workshops to distract young people from anti-social behaviour, gang-related violence and street crime. Due to Government cuts, it and projects like it have lost funding. ","additional_details":"Off the Street, Less Heat was started in 2006/07 by Elaine Roberts, who came up with the name and idea, to help get young people off the streets and welcome people from all different communities. The project also aims to improve the relations between the police and the local community. Off the Street, Less Heat and similar projects all over the country need direct funding from the Government to ensure that they can continue.","state":"open","signature_count":8,"created_at":"2018-04-08T13:13:33.825Z","updated_at":"2018-05-29T15:29:29.688Z","rejected_at":null,"opened_at":"2018-04-16T15:00:54.917Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-08T14:26:37.383Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Staycia Morgan","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":216618,"links":{"self":"https://petition.parliament.uk/petitions/216618.json"},"attributes":{"action":"Teach about Babylonian history in schools!","background":"The babylionan civilasation contributed immensly in shaping the worlds history. They contributed to one of the earliest forms of writting, the first ever laws through the code of Hammurabi, science and astrology and maths. This should be taught in schools.","additional_details":"","state":"open","signature_count":8,"created_at":"2018-04-01T12:59:35.024Z","updated_at":"2018-04-28T15:08:26.212Z","rejected_at":null,"opened_at":"2018-04-10T16:50:40.188Z","closed_at":null,"moderation_threshold_reached_at":"2018-04-03T21:08:28.400Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Ayah Wafi","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":215272,"links":{"self":"https://petition.parliament.uk/petitions/215272.json"},"attributes":{"action":"Start a voluntary emigration programme for people who want to leave the UK.","background":"I am sick and tired of living in a small country with an ever increasing population and lack of government investment in jobs, housing, opportunities, transport, healthcare and poor standard of living.","additional_details":"You would be paid up to £100,000 by the Government to give up your British citizenship, if you’re entitled to another citizenship, in exchange for leaving the UK to settle elsewhere.\r\n\r\n \r\n\r\nA contract can be signed, so that if someone changes their mind they will be liable to pay back the sum of money, if they want to gain back their citizenship. They will also not be able to join the scheme again.","state":"open","signature_count":8,"created_at":"2018-03-15T20:48:41.634Z","updated_at":"2018-03-30T02:38:17.543Z","rejected_at":null,"opened_at":"2018-03-20T11:30:01.066Z","closed_at":null,"moderation_threshold_reached_at":"2018-03-15T21:55:46.883Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Mickaila Buchanan","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":214917,"links":{"self":"https://petition.parliament.uk/petitions/214917.json"},"attributes":{"action":"Introduce a requirement for address verification for internet applications","background":"We've got to get real regarding issues with Bots and third-party actors on social networks and other internet applications. The hate and anger we are seeing online must be stopped and one of the only tools we have to do so is to make people prove who they say they are.","additional_details":"What I am proposing is this...\r\n\r\nAny application designed for access by the general public and allowing internal messaging or commenting or any other intra-user communication must verify the postal address of users.\r\n\r\nAll applications to either filter out un-verified users by default or provide a mechanism to allow users to opt-in and opt-out of receiving messages from un-verified users. \r\n\r\nAll existing application users to be subject to the same verification procedure within a time limit.","state":"open","signature_count":8,"created_at":"2018-03-12T23:10:46.477Z","updated_at":"2018-05-11T20:08:01.969Z","rejected_at":null,"opened_at":"2018-05-11T12:32:32.358Z","closed_at":null,"moderation_threshold_reached_at":"2018-05-05T20:33:42.972Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Robert Coster","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":214782,"links":{"self":"https://petition.parliament.uk/petitions/214782.json"},"attributes":{"action":"Make nonconsensual medical intervention for intersexed people illegal.","background":"Data from intersex civil societies show that intersex nonconsensual surgeries are not a thing of the past. They expressed concern at unnecessary surgeries on intersex children before they can provide consent. It called on the government to stop these. This has not happened.","additional_details":"About 1 in 2000 children are born with genitalia considered atypical enough to prompt medical investigation. Nonconsensual treatment, according to studies, often causes severe physical and psychological harm to patients. We need to stop nonconsensual medical interventions, as the Maltan government did, and make sure that no one has to suffer nonconsensual treatment again. Being intersex is not a bad thing. Intersex people deserve to be protected from discrimination.","state":"open","signature_count":8,"created_at":"2018-03-11T16:24:44.331Z","updated_at":"2018-04-30T13:27:24.415Z","rejected_at":null,"opened_at":"2018-04-04T10:20:31.961Z","closed_at":null,"moderation_threshold_reached_at":"2018-03-11T16:55:45.083Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Rain Hazael","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":214708,"links":{"self":"https://petition.parliament.uk/petitions/214708.json"},"attributes":{"action":"5 year driving ban for speads in excess of 10mph over the specified limit.","background":"A driver who speeds excessively is aware of their actions. Therefore an immediate ban of 5years should be given to those driving in excess of 10mph over the specified limit.","additional_details":"Many people are killed each year by speeding drivers. If those drivers were told if they speed more than 10mph over the specified limit they would be banned from driving for 5 years. We would have a lot of people asking themselves is it rely worth the risk of 5 year instant ban.","state":"open","signature_count":8,"created_at":"2018-03-10T10:29:13.567Z","updated_at":"2018-05-29T15:30:47.113Z","rejected_at":null,"opened_at":"2018-03-19T17:55:35.890Z","closed_at":null,"moderation_threshold_reached_at":"2018-03-13T06:03:17.007Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Ricky symons","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":214490,"links":{"self":"https://petition.parliament.uk/petitions/214490.json"},"attributes":{"action":"Make it an offense for essay writing services to advertise to under 16's","background":"In the same way that gambling, alcohol and cigarettes are prohibited from advertising to minors, I suggest similar measures be applied to companies like UK Essays and other Essay Mills in order to protect minors from being unduly influenced by manipulative marketing practices.","additional_details":"UK Essays Website:\r\nhttps://www.ukessays.com/services/essay-writing-service.php\r\nFacebook Ad:\r\nhttps://www.facebook.com/UKEssays/posts/10159836527715151\r\nTwitter Ad:\r\nhttps://twitter.com/UKEssays/status/970984231051636736","state":"open","signature_count":8,"created_at":"2018-03-07T11:11:23.794Z","updated_at":"2018-05-02T07:36:13.864Z","rejected_at":null,"opened_at":"2018-03-21T18:36:45.323Z","closed_at":null,"moderation_threshold_reached_at":"2018-03-07T11:37:59.909Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Henry Funnell","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":214463,"links":{"self":"https://petition.parliament.uk/petitions/214463.json"},"attributes":{"action":"Start a British Foreign Legion.","background":"Many British Army applicants are turned away due to their history of mental illness, certain complications such as having had a detached retina and also those with a criminal background. However The French Foreign legion could accept these failed applicants and they often prove to be great recruits.","additional_details":"So I ask that a British Foreign Legion is formed so Patriots of this country who were rejected by the British Army can serve their country, as I believe it is wrong that many patriots like my self are not given this opportunity, due to their pasts.\r\nJust like the French Foreign legion, people who want to come to this country to make a better life for themselves could do so by serving five years in the British Foreign legion. After that time is served they can be granted British citizenship.","state":"open","signature_count":8,"created_at":"2018-03-07T03:15:12.173Z","updated_at":"2018-05-24T23:55:38.529Z","rejected_at":null,"opened_at":"2018-03-16T15:09:04.637Z","closed_at":null,"moderation_threshold_reached_at":"2018-03-07T16:04:18.039Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Max Thacker","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":214212,"links":{"self":"https://petition.parliament.uk/petitions/214212.json"},"attributes":{"action":"Let 15 year olds take their CBT once they reach their final school year","background":"When you're 16, you can take your cbt, ride a motorcycle, buy energy drinks, and get a job, however a 15 year old in the same school year can’t do any of these things. How come you're mature enough to be in the same school year, but not to have any of the perks?","additional_details":"I found it especially frustrating, having a birthday in August, I had to see teenagers, who were in the same school year and learning the same as me ride motorbikes, and get jobs, while I was stuck in a village with no transport, a friend of mine in the same school year had a motorbike and had no issue, for instance, I could have been doing motorvehicle as an apprenticeship, but not be able to get a licence until after someone who’s never driven before, even though their the same year","state":"open","signature_count":8,"created_at":"2018-03-03T18:32:16.485Z","updated_at":"2018-04-29T20:29:11.432Z","rejected_at":null,"opened_at":"2018-03-12T16:42:34.494Z","closed_at":null,"moderation_threshold_reached_at":"2018-03-03T19:13:51.775Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Thomas Ashman","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":213992,"links":{"self":"https://petition.parliament.uk/petitions/213992.json"},"attributes":{"action":"Hold a Northern Ireland referendum on whether to Remain in the EU Customs Union","background":"Northern Ireland voted by a significant majority to Remain in the EU and will be one of the regions most significantly affected by withdrawal. As Sinn Fein do not take up their seats in Parliament, it would be good to go directly to the NI electorate for their views on this proposal.","additional_details":"","state":"open","signature_count":8,"created_at":"2018-02-28T17:44:37.184Z","updated_at":"2018-05-15T18:48:28.270Z","rejected_at":null,"opened_at":"2018-03-16T10:56:39.710Z","closed_at":null,"moderation_threshold_reached_at":"2018-03-11T22:52:28.996Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Brian Michael Hayes","rejection":null,"government_response":null,"debate":null}},{"type":"petition","id":213866,"links":{"self":"https://petition.parliament.uk/petitions/213866.json"},"attributes":{"action":"Reduce preventable negligence cases within the NHS","background":"Thousands of patients are being let down by avoidable errors made by the NHS. Errors such as failing to provide emergency care, mistakes in dispensing the correct drugs and dosages, misdiagnosis, delays in treatment, and incorrect treatment. This is harming patients and causing unnecessary deaths.","additional_details":"Over the last decade, negligence claims against the NHS have quadrupled to an annual payout of £1.7 billion. This is set to double by 2021. This suggests a growing problem that isn't being dealt with effectively. Health leaders propose to address this issue by capping the amount of compensation that is paid out to victims. Yet this won't reduce the number of negligence cases. We need to invest more resources into identifying the root causes of the problem and in turn implementing a solution.","state":"open","signature_count":8,"created_at":"2018-02-26T22:13:36.296Z","updated_at":"2018-05-29T15:30:31.403Z","rejected_at":null,"opened_at":"2018-03-05T13:48:06.955Z","closed_at":null,"moderation_threshold_reached_at":"2018-02-27T13:11:45.121Z","response_threshold_reached_at":null,"government_response_at":null,"debate_threshold_reached_at":null,"scheduled_debate_date":null,"debate_outcome_at":null,"creator_name":"Nicola Easton","rejection":null,"government_response":null,"debate":null}}]} |
{
"first_traded_price": 1.2e3,
"highest_price": 1244.0,
"isin": "IRO1LKGH0001",
"last_traded_price": 1212.0,
"lowest_price": 1185.0,
"trade_volume": 1085252.0,
"unix_time": 1498262400
} |
{"id":"assets/mobile/adb.png","dependencies":[{"name":"/Users/teddyboirin/Desktop/teddyboirin/package.json","includedInParent":true,"mtime":1546957208910}],"generated":{"js":"module.exports = \"/6ef25955089173f42161a03d5b2cd4bd.png\";"},"hash":"d32d3624d927b9e8f61a5aaf72960204","cacheData":{"env":{}}} |
{"Bloomington": {"WXRJ-LP": "WXRJ-LP (94.9 FM, \"Real Radio\") is a radio station broadcasting an urban adult contemporary music format. Licensed to Bloomington, Illinois, United States, the station serves the Bloomington area. The station is currently owned by Black Business Alliance, Inc."}} |
{"definitions": [{"wordtype": "Noun", "description": "A young person of either sex; a child."}, {"wordtype": "Noun", "description": "A female child, from birth to the age of puberty; a young maiden."}, {"wordtype": "Noun", "description": "A female servant; a maidservant."}, {"wordtype": "Noun", "description": "A roebuck two years old."}]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.