text stringlengths 6 2.91M |
|---|
post_cb({"5834520": {"ViewCount": "310", "Body": "<pre><code>static void increment(long long *n){\n (*n)++;\n}\n\nstruct test{\n void (*work_fn)(long long *);\n};\n\nstruct test t1;\n\nt1.work_fn = increment;\n</code></pre>\n<p>How do I actually call the function now? t1.work_fn(&n) ?</p>\n", "AcceptedAnswerId": "5834568", "Title": "C function pointers", "CreationDate": "2011-04-29T16:12:29.280", "LastActivityDate": "2011-04-29T16:33:12.713", "CommentCount": "4", "LastEditDate": "2011-04-29T16:33:12.713", "PostTypeId": "1", "LastEditorUserId": "509233", "Id": "5834520", "Score": "1", "OwnerUserId": "694870", "Tags": "<c++><c><pointers>", "AnswerCount": "3"}, "5834601": {"PostTypeId": "2", "Body": "<p>You can call it as <code>t1.work_fn(&n)</code> or as <code>(*t1.work_fn)(&n)</code>, whichever you prefer.</p>\n<p>Symmetrically, when assigning the pointer you can do either <code>t1.work_fn = increment</code> or <code>t1.work_fn = &increment</code>. Again, it is a matter of personal coding style.</p>\n<p>One can probably argue that for the sake of consistency one should stick to either \"minimalistic\" style</p>\n<pre><code>t1.work_fn = increment;\nt1.work_fn(&n);\n</code></pre>\n<p>or to a \"maximalistic\" style</p>\n<pre><code>t1.work_fn = &increment;\n(*t1.work_fn)(&n);\n</code></pre>\n<p>but not a mix of the two, so that we can have well-defined holy wars between two distinctive camps instead of four. </p>\n<p>P.S. Of course, the \"minimalistic\" style is the only proper one. And one must crack eggs on the pointy end.</p>\n", "LastActivityDate": "2011-04-29T16:29:10.657", "LastEditorUserId": "187690", "Id": "5834601", "CreationDate": "2011-04-29T16:20:26.530", "ParentId": "5834520", "Score": "3", "OwnerUserId": "187690", "CommentCount": "0", "LastEditDate": "2011-04-29T16:29:10.657"}, "5834561": {"PostTypeId": "2", "Body": "<p>Yes, that's how to call it. Function names and variables containing function pointers are essentially the same thing.</p>\n", "LastActivityDate": "2011-04-29T16:16:32.377", "Id": "5834561", "CommentCount": "5", "CreationDate": "2011-04-29T16:16:32.377", "ParentId": "5834520", "Score": "0", "OwnerUserId": "391531"}, "bq_ids": {"n4140": {"so_5834520_5834568_3": {"length": 6, "quality": 0.5454545454545454, "section_id": 6064}}, "n3337": {"so_5834520_5834568_1": {"length": 10, "quality": 0.5263157894736842, "section_id": 3206}, "so_5834520_5834568_3": {"length": 6, "quality": 0.5454545454545454, "section_id": 5832}}}, "5834568": {"PostTypeId": "2", "Body": "<blockquote>\n<p id=\"so_5834520_5834568_0\">How do I actually call the function now? <code>t1.work_fn(&n)</code> ?</p>\n</blockquote>\n<p>That'll work just fine. </p>\n<p>Function pointers don't need to be explicitly dereferenced. This is because even when calling a function normally (using the actual name of the function), you're really calling it through the pointer to the function. C99 6.5.22 \"Function calls\" says (emphasis mine):</p>\n<blockquote>\n<p id=\"so_5834520_5834568_1\">The expression that denotes the called function (footnote 77) <strong>shall have type pointer to function</strong> returning void or returning an object type other than an array type</p>\n</blockquote>\n<p>Footnote 77:</p>\n<blockquote>\n<p id=\"so_5834520_5834568_2\">Most often, this is the result of converting an identifier that is a function designator.</p>\n</blockquote>\n<p>Note that you still <em>can</em> dereference the function pointer (or a normal function name - though I think you'd cause much confusion doing so) to call a function because C99 6.5.3.2/4 \"Address and indirection operators\" says:</p>\n<blockquote>\n<p id=\"so_5834520_5834568_3\">The unary * operator denotes indirection. If the operand points to a function, the result is a function designator</p>\n</blockquote>\n<p>So all of these will end up doing the same thing (though the compiler might not be able to optimize the calls-through <code>t1.work_fn</code> as well):</p>\n<pre><code>t1.work_fn(&n);\n(*t1.work_fn)(&n);\n\nincrement(&n);\n(*increment)(&n);\n</code></pre>\n", "LastActivityDate": "2011-04-29T16:27:37.410", "LastEditorUserId": "12711", "Id": "5834568", "CreationDate": "2011-04-29T16:17:08.967", "ParentId": "5834520", "Score": "3", "OwnerUserId": "12711", "CommentCount": "2", "LastEditDate": "2011-04-29T16:27:37.410"}}); |
{"resourceType":"StructureDefinition","id":"de-Address.use","meta":{"lastUpdated":"2019-10-31T22:29:23.356Z"},"url":"http://hl7.org/fhir/StructureDefinition/de-Address.use","version":"4.0.1","name":"Address.use","title":"Address.use","status":"draft","experimental":true,"date":"2019-10-31T22:29:23.000Z","publisher":"HL7 FHIR Standard","contact":[{"telecom":[{"system":"url","value":"http://hl7.org/fhir"}]}],"description":"Data Element for Address.use","purpose":"Data Elements are defined for each element to assist in questionnaire construction etc","fhirVersion":"4.0.1","mapping":[{"identity":"v2","uri":"http://hl7.org/v2","name":"HL7 v2 Mapping"},{"identity":"rim","uri":"http://hl7.org/v3","name":"RIM Mapping"},{"identity":"servd","uri":"http://www.omg.org/spec/ServD/1.0/","name":"ServD"},{"identity":"vcard","uri":"http://w3.org/vcard","name":"vCard Mapping"}],"kind":"logical","abstract":false,"type":"Address.use","baseDefinition":"http://hl7.org/fhir/StructureDefinition/Element","derivation":"specialization","snapshot":{"element":[{"id":"Address.use","path":"Address.use","short":"home | work | temp | old | billing - purpose of this address","definition":"The purpose of this address.","comment":"Applications can assume that an address is current unless it explicitly says that it is temporary or old.","requirements":"Allows an appropriate address to be chosen from a list of many.","min":0,"max":"1","base":{"path":"Address.use","min":0,"max":"1"},"type":[{"code":"code"}],"example":[{"label":"General","valueCode":"home"}],"isModifier":true,"isModifierReason":"This is labeled as \"Is Modifier\" because applications should not mistake a temporary or old address etc.for a current/permanent one","isSummary":true,"binding":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName","valueString":"AddressUse"}],"strength":"required","description":"The use of an address.","valueSet":"http://hl7.org/fhir/ValueSet/address-use|4.0.1"},"mapping":[{"identity":"v2","map":"XAD.7"},{"identity":"rim","map":"unique(./use)"},{"identity":"servd","map":"./AddressPurpose"}]}]}} |
{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":false,"pivot":{"x":0.0,"y":1.570000171661377,"z":-0.001827538013458252},"rotation":{"x":-0.010281985625624657,"y":0.9779432415962219,"z":-0.20263054966926576,"w":-0.04962338134646416},"size":4.052715301513672,"orthographic":false} |
{
"name": "simple-user-registry",
"version": "1.0.0",
"private": true,
"dependencies": {
"@coreui/chartjs": "^2.0.0",
"@coreui/coreui": "^3.4.0",
"@coreui/icons": "^2.0.0-rc.0",
"@coreui/icons-react": "^1.0.2",
"@coreui/react": "^3.4.0",
"@coreui/react-chartjs": "^1.0.1",
"@coreui/utils": "^1.3.1",
"classnames": "^2.2.6",
"core-js": "^3.8.1",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"auto-changelog": "~2.2.1",
"react-scripts": "^4.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build"
}
}
|
{
"first_traded_price": 8290.0,
"highest_price": 8290.0,
"isin": "IRO1PJMZ0001",
"last_traded_price": 8280.0,
"lowest_price": 8117.0,
"trade_volume": 755316.0,
"unix_time": 1507939200
} |
{
"id": 59065,
"title": "Change Me",
"url": "https://mangadex.org/manga/59065",
"last_updated": "January 16, 2021 18:57:05 UTC",
"matches": [
{
"id": 33983,
"title": "Vending Machine",
"score": 0.34
},
{
"id": 10427,
"title": "Dalsez",
"score": 0.291
},
{
"id": 56470,
"title": "Before Halloween Is Over",
"score": 0.291
},
{
"id": 16996,
"title": "Magic Scroll Merchant Zio",
"score": 0.283
},
{
"id": 18875,
"title": "Ctrl + Z",
"score": 0.283
},
{
"id": 21001,
"title": "Sugar Lump",
"score": 0.283
},
{
"id": 21453,
"title": "Tomorrow",
"score": 0.283
},
{
"id": 29398,
"title": "Devil Down Under",
"score": 0.283
},
{
"id": 39068,
"title": "Her Highness Is Mighty",
"score": 0.283
},
{
"id": 45209,
"title": "Knitting Corner",
"score": 0.283
},
{
"id": 45262,
"title": "Animus",
"score": 0.283
},
{
"id": 45555,
"title": "Natural people",
"score": 0.283
},
{
"id": 45758,
"title": "The Spring of the Sea",
"score": 0.283
},
{
"id": 46910,
"title": "Moracmorac Crown Prince",
"score": 0.283
},
{
"id": 46955,
"title": "You Are My Angel?!",
"score": 0.283
},
{
"id": 47158,
"title": "Painkiller",
"score": 0.283
},
{
"id": 47610,
"title": "Waikiki Vampire",
"score": 0.283
},
{
"id": 51712,
"title": "Enoch",
"score": 0.283
},
{
"id": 52362,
"title": "Dam of the Forest",
"score": 0.283
},
{
"id": 52639,
"title": "Dog Food Acorn",
"score": 0.283
},
{
"id": 55825,
"title": "From Morning to Night",
"score": 0.283
},
{
"id": 56551,
"title": "I Must Be A Good Man",
"score": 0.283
},
{
"id": 56820,
"title": "Amanza",
"score": 0.283
},
{
"id": 57457,
"title": "The Witches' End",
"score": 0.283
},
{
"id": 57462,
"title": "My little fox star",
"score": 0.283
}
]
} |
{
"first_traded_price": 2539.0,
"highest_price": 2539.0,
"isin": "IRO1HJPT0001",
"last_traded_price": 2527.0,
"lowest_price": 2461.0,
"trade_volume": 70265.0,
"unix_time": 1524355200
} |
[
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-ksLhSWwnpgQ%2fV4QUWX9JKKI%2fAAAAAAAAzwM%2fo2m8mO2My7gbneR3JjSnUvZU6rTiQZREQCHM%2fs16000%2f0676-001.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-asHWqDsts6E%2fV4QUe2s_jCI%2fAAAAAAAAzwM%2fN7Ne6xdWQBozKLKF2XAfFQWDotJ-7S6rgCHM%2fs16000%2f0676-002.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f--rilmz4nyHE%2fV4QU0ZDzU9I%2fAAAAAAAAzzA%2fchotnVPXly0mj9LDmtNEHOSYdGoaMipHQCHM%2fs16000%2f0676-003.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-7WmVhmnxPSc%2fV4QVMjUzcCI%2fAAAAAAAAz5w%2f3K7_-OnD2XgzM8xeOJHTQnxaf7NUpJgUgCHM%2fs16000%2f0676-004.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-D4PPt7xqg98%2fV4QVoNoqqOI%2fAAAAAAAAz9g%2fxzJvnZcVCf84NT2kQ6c5P7XE0LB9_9cEQCHM%2fs16000%2f0676-005.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-SV42HwKc1MQ%2fV4QV85NDZgI%2fAAAAAAAA0Bc%2fwI_bdlIdOUsvtNS6E_vayk71eYGhTfjwQCHM%2fs16000%2f0676-006.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-p6m9NVEhMM0%2fV4QWS9tYwmI%2fAAAAAAAA0FA%2fFmjRBXJ1EoE67n4t_iUWAV3gTAdXXhx4QCHM%2fs16000%2f0676-007.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-VMkkYLCAfew%2fV4QWnru8vGI%2fAAAAAAAA0I4%2fBLChO3wzbw0cPa3-89NLcjcsWimba45yQCHM%2fs16000%2f0676-008.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-xw4xtHZ0sSc%2fV4QWxdocs6I%2fAAAAAAAA0I4%2f2YJq8xs_sNIBAQ1lz7ElBxMbkyudN4wpACHM%2fs16000%2f0676-009.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-3bZveirh1JE%2fV4QXcNMIyOI%2fAAAAAAAA0PQ%2ff4pFcKIDlcUfYmjMIP-I6TqdBhbIFDMiwCHM%2fs16000%2f0676-010.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-sb_cHcAXTVI%2fV4QX3FNEQfI%2fAAAAAAAA0S0%2fYbZFwmOyox8xgLvAuJl33mnDvTSxp2RRwCHM%2fs16000%2f0676-011.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-hOa8HitTDZA%2fV4QYY0VSEmI%2fAAAAAAAA0ZM%2fmaZoFItH95YUDRdcetmNfGCzrGsIWNdRQCHM%2fs16000%2f0676-012.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-7_Y2egxR9JA%2fV4QYbmeS_3I%2fAAAAAAAA0ZM%2fC54dYQYFLEsFzbe1sOe5RHATkXvL6MhfgCHM%2fs16000%2f0676-013.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-xF_9HSfL2gA%2fV4QY_2ocesI%2fAAAAAAAA0eY%2fPpdGeJLagG49NxVtfbxzGjh7rUxqFSm0gCHM%2fs16000%2f0676-014.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-B9l_lx-UYXw%2fV4QZEXekwlI%2fAAAAAAAA0eY%2fH6z7_PdVY4Y2uPIL6uzb43lf6W1wxKnQwCHM%2fs16000%2f0676-015.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-GQZ-bDQtxlA%2fV4QZrqqP35I%2fAAAAAAAA0lY%2fQsyUa76CJ8Iq-8EAikKf24nBBl0AX9TVwCHM%2fs16000%2f0676-016.png&imgmax=25000",
"https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&gadget=a&no_expand=1&resize_h=0&rewriteMime=image%2F*&url=http%3a%2f%2f2.bp.blogspot.com%2f-Yus5i_cB6TU%2fV4QZvynQnII%2fAAAAAAAA0lY%2fWdcSK1MEj_44Vu1LgedDZECWHh8yA68bACHM%2fs16000%2f0676-017.png&imgmax=25000"
] |
{"data":{"isSZX":0,"level":3,"provCode":"15","provName":"内蒙古自治区","cityCode":"150303","cityName":"海南区","childs":[{"code":"150303001","name":"拉僧仲街道","level":4},{"code":"150303002","name":"西卓子山街道","level":4},{"code":"150303102","name":"公乌素镇","level":4},{"code":"150303103","name":"拉僧庙镇","level":4},{"code":"150303104","name":"巴音陶亥镇","level":4}]}} |
{
"WorkItem": {
"AffectedComponent": {
"Name": "",
"DisplayName": ""
},
"ClosedComment": "",
"ClosedDate": null,
"CommentCount": 0,
"Custom": "",
"Description": "Feature requests by Evoluteur:\n- script to drop all tables (because it needs to drop ref integrity first).\n- triggers to update order total.\n- a few records in Chinese or Japanese",
"LastUpdatedDate": "2009-04-19T21:55:25.237-07:00",
"PlannedForRelease": "",
"ReleaseVisibleToPublic": false,
"Priority": {
"Name": "Low",
"Severity": 50,
"Id": 1
},
"ProjectName": "ChinookDatabase",
"ReportedDate": "2009-04-19T21:55:25.237-07:00",
"Status": {
"Name": "Proposed",
"Id": 1
},
"ReasonClosed": {
"Name": "Unassigned"
},
"Summary": "Feature Request",
"Type": {
"Name": "Feature",
"Id": 1
},
"VoteCount": 1,
"Id": 22114
},
"FileAttachments": [],
"Comments": []
} |
[
"http://2.bp.blogspot.com/-tI36lGUHBCs/Tnt-0jIgmYI/AAAAAAAADrM/_reDrRwcdt0/s0/000.jpg",
"http://2.bp.blogspot.com/-wwmVJrRF7sE/Tnt-3oQ3WjI/AAAAAAAADsI/jWD867IX748/s0/001.jpg",
"http://2.bp.blogspot.com/-u0hNT5FtwF4/Tnt-4_2a6bI/AAAAAAAADso/DRD6f0FDwL4/s0/002.png",
"http://2.bp.blogspot.com/-YmJqtgII9ZQ/Tnt-54iXi2I/AAAAAAAADtA/pmEIy4usL7c/s0/003.png",
"http://2.bp.blogspot.com/-eJbzXzWvo8w/Tnt-7ThuIPI/AAAAAAAADto/2QHz3NXaY38/s0/004.png",
"http://2.bp.blogspot.com/-53etxsK70B8/Tnt-9gpjjYI/AAAAAAAADuQ/8MNBbW78Qyg/s0/005.png",
"http://2.bp.blogspot.com/-gnAYGcW9Bno/Tnt-_cmrTnI/AAAAAAAADu8/MtYLfAaFCDo/s0/006.png",
"http://2.bp.blogspot.com/-cmeTOh76yg0/Tnt_AmiW2uI/AAAAAAAADvY/UNao3vmHWi0/s0/007.png",
"http://2.bp.blogspot.com/-46phapPo6IM/Tnt_Cw_Ah3I/AAAAAAAADv8/z0XV7xu1P0Y/s0/008.png",
"http://2.bp.blogspot.com/-lKNiLsLCCFI/Tnt_EXhsEWI/AAAAAAAADwY/WriPXp4B0mg/s0/009.png",
"http://2.bp.blogspot.com/-JiPvBxcTKcY/Tnt_FzY7FnI/AAAAAAAADw4/IKss2XcmupE/s0/010.png",
"http://2.bp.blogspot.com/-IXRWLVMII2A/Tnt_HK1TbJI/AAAAAAAADxY/-GNeZp0L6OU/s0/011.png",
"http://2.bp.blogspot.com/-wfvTG50fpTA/Tnt_Ivb195I/AAAAAAAADyA/wKujASwLqzs/s0/012.png",
"http://2.bp.blogspot.com/--bX952R-q2c/Tnt_KbKBBCI/AAAAAAAADyg/6CSMwO_KMtw/s0/013.png",
"http://2.bp.blogspot.com/-QOGJZvz0CPU/Tnt_MYF6kgI/AAAAAAAADzQ/9PKmkByk8Sc/s0/014.png",
"http://2.bp.blogspot.com/-uG0A84h35TM/Tnt_OKhDRuI/AAAAAAAAD0E/xDKgsNgZ_kA/s0/015.png",
"http://2.bp.blogspot.com/-OQIxIl6DL1o/Tnt_Qr6sEkI/AAAAAAAAD0k/7XJzqGbWmyY/s0/016.png",
"http://2.bp.blogspot.com/-mGdsgmpjnyo/Tnt_SGNhyHI/AAAAAAAAD1E/jcHSoar1vBc/s0/017.png",
"http://2.bp.blogspot.com/-1WkGYh9XLtE/Tnt_TmGS05I/AAAAAAAAD1k/aK1m4yOFgkk/s0/018.png",
"http://2.bp.blogspot.com/-9Gy9viSJjRU/Tnt_VP6DOoI/AAAAAAAAD2I/821ak3gDjho/s0/019.png",
"http://2.bp.blogspot.com/-10I1dQSS4bA/Tnt_W5hRjUI/AAAAAAAAD2s/hLbPdJOHyLc/s0/020.png",
"http://2.bp.blogspot.com/-whHQx-zqvyQ/Tnt_YhSMImI/AAAAAAAAD3M/5rh5kpMqaFM/s0/021.png",
"http://2.bp.blogspot.com/-Fgjx-U09QI4/Tnt_aF2AaCI/AAAAAAAAD3s/nVVwlL3rZOE/s0/022.png",
"http://2.bp.blogspot.com/-7t9J1Fl1CbQ/Tnt_b6f13oI/AAAAAAAAD4Q/lFNCZWx94NA/s0/023.png",
"http://2.bp.blogspot.com/-ej9jBTy4OAE/Tnt_dW5NG-I/AAAAAAAAD4w/pC-Wn5t6Beg/s0/024.png",
"http://2.bp.blogspot.com/-3Nd1XlMe8CI/Tnt_epfD19I/AAAAAAAAD5Q/eUgq-KJdSRM/s0/025.png",
"http://2.bp.blogspot.com/-4k3enaxFlR4/Tnt_ggMz3_I/AAAAAAAAD58/E1DLP8ze2TM/s0/026.png",
"http://2.bp.blogspot.com/-JRMk406TddE/Tnt_iDPyuoI/AAAAAAAAD6g/Bd7YCMNSBdM/s0/027.png",
"http://2.bp.blogspot.com/-mnob-_Bd4jk/Tnt_kQ2vpII/AAAAAAAAD7I/dx2vz2I7Ob8/s0/028.png",
"http://2.bp.blogspot.com/-tP_kaMwSgWo/Tnt_mfa3gGI/AAAAAAAAD70/b2dLMER6Tv8/s0/029.png",
"http://2.bp.blogspot.com/-MCmpHJz_s1c/Tnt_o38GNlI/AAAAAAAAD8g/j5vk_k-lBoY/s0/030.png",
"http://2.bp.blogspot.com/-hnUIT7jpYDc/Tnt_qapqB9I/AAAAAAAAD9E/whi3-XWjzT4/s0/031.png",
"http://2.bp.blogspot.com/-y4qQPR2dIiU/Tnt_sGp2MNI/AAAAAAAAD9o/Phx8SLUc4FI/s0/032.png",
"http://2.bp.blogspot.com/-mab7AQVT4H8/Tnt_6Me73FI/AAAAAAAAD-U/z9Q-UpXmjms/s0/033.png",
"http://2.bp.blogspot.com/-ri44sQL_oWw/Tnt_83j-ndI/AAAAAAAAD_I/EQ4bDcXryAg/s0/034.png",
"http://2.bp.blogspot.com/-soDu9bTtsvU/Tnt__-vmFkI/AAAAAAAAD_g/-9cBYqYh1dM/s0/035.png",
"http://2.bp.blogspot.com/-QfjJJJS0z8U/TnuABVqV4EI/AAAAAAAAD_8/YRv_yxSAhhs/s0/036.png",
"http://2.bp.blogspot.com/-CYENIE193aA/TnuADmrfZcI/AAAAAAAAEAQ/ZBoCI3pdWO0/s0/037.png",
"http://2.bp.blogspot.com/-i5QZsNdlaGY/TnuAFDUknEI/AAAAAAAAEAk/AcJhH2ncHoc/s0/038.png"
] |
{
"id": 25645,
"type": "Feature",
"properties": {
"name":"Laga",
"placetype":"locality",
"woe:id":25645,
"woe:name":"Laga, Scotland, United Kingdom",
"woe:place_id":"hbkg4_SbBJqNYA",
"woe:placetype":"locality",
"woe:placetype_id":7
},
"bbox": [-5.877448,56.682636,-5.865592,56.697433],
"geometry": {"alpha":0.00015,"bbox":[-5.8774480819702,56.682636260986,-5.8655920028687,56.69743347168],"coordinates":[[[[-5.870625,56.697433],[-5.865592,56.692356],[-5.866012,56.682636],[-5.877448,56.695515],[-5.876289,56.696243],[-5.873542,56.696949],[-5.872987,56.696995],[-5.870625,56.697433]]]],"created":1247972044,"edges":8,"is_donuthole":0,"link":{"href":"http://farm3.static.flickr.com/2547/shapefiles/25645_20090719_98cc379f4d.tar.gz"},"points":11,"type":"MultiPolygon"}
} |
[
{
"jungle_id":563720,
"level":"Advanced"
}
] |
{
"dataset_name": "kjgh-ywbx",
"columns": [
{
"column_name": "School_Year",
"number_non_empty_cells": 1293,
"number_empty_cells": 0,
"number_distinct_values": 4,
"frequent_values": [
"2017-2018",
"2018-2019",
"2016-2017",
"2015-2016"
],
"data_types": [
{
"type": "TEXT",
"count": 1293,
"shortest_values": [
"2017-2018",
"2015-2016",
"2018-2019",
"2016-2017"
],
"longest_values": [
"2016-2017",
"2018-2019",
"2015-2016",
"2017-2018"
],
"average_length": 9.0
}
]
},
{
"column_name": "OPT_Code",
"number_non_empty_cells": 1293,
"number_empty_cells": 0,
"number_distinct_values": 404,
"frequent_values": [
"S280",
"S224",
"S059",
"S057",
"S150"
],
"data_types": [
{
"type": "TEXT",
"count": 1293,
"shortest_values": [
"C225",
"E177",
"E176",
"E165",
"E163"
],
"longest_values": [
"S133B",
"S161A",
"E052A",
"E083A",
"S198B"
],
"average_length": 4.050270688321732
}
]
},
{
"column_name": "Site_Name",
"number_non_empty_cells": 1293,
"number_empty_cells": 0,
"number_distinct_values": 379,
"frequent_values": [
"Birch, Herbert G. Early Childhood Center",
"Highbridge Advisory Council",
"Wagner, Susan Day Care Center",
"New York Child Resource Center",
"Association for Children with Down Syndrome"
],
"data_types": [
{
"type": "TEXT",
"count": 1293,
"shortest_values": [
"ICCD",
"QSAC",
"P085Q",
"HIDEC",
"P196K"
],
"longest_values": [
"New York Center for Child Development- Grand Street Settlement, Inc. ACS Headstart",
"Queens County Educators for Tomorrow, Inc. Early Leaning Center 2 @ Starlight",
"SUNSHINE DEVELOPMENTAL SCHOOL COMMITTEE FOR EARLY CHILDHOOD DV HEAD START",
"Region 9/ D.2 Preschool Program @ J47M (Sch. for American Sign Lang.",
"Adaptive Solutions Multi Services (SLP, PT, OT & Psychological) PLLC"
],
"average_length": 31.09203402938902
}
]
},
{
"column_name": "School_Name",
"number_non_empty_cells": 1289,
"number_empty_cells": 4,
"number_distinct_values": 254,
"frequent_values": [
"New York City Superstart Plus Program",
"New York City Public School",
"New York League for Early Learning",
"Birch, Herbert G. Early Childhood Center",
"New York City Public Schools"
],
"data_types": [
{
"type": "TEXT",
"count": 1289,
"shortest_values": [
"ABC",
"QSAC",
"P085Q",
"P196K",
"P255K"
],
"longest_values": [
"Brookville Center for Children's Services formerly known as Marcus Avenue",
"SUNSHINE DEVELOPMENTAL SCHOOL COMMITTEE FOR EARLY CHILDHOOD DV HEAD START",
"Starting Point Services for Children-The Atlantic & Pacific School, Inc.",
"STARTING POINT SERVICES FOR CHILDREN, THE ATLANTIC & PACIFIC SCHOOL INC",
"Adaptive Solutions Multi Services (SLP, PT, OT & Psychological) PLLC"
],
"average_length": 31.60744763382467
}
]
},
{
"column_name": "Number_of_Riders",
"number_non_empty_cells": 1293,
"number_empty_cells": 0,
"number_distinct_values": 182,
"frequent_values": [
"1",
"4",
"7",
"8",
"3"
],
"data_types": [
{
"type": "INTEGER",
"count": 1293,
"max_value": 377,
"min_value": 1,
"mean": 42.045630317092034,
"stddev": 50.771376220453824
}
]
}
],
"key_column_candidates": []
} |
{
"success": true,
"cityName": "天津",
"stations": [{
"StationID": "54428",
"V01301": "54428",
"CNAME": "蓟县",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.2400",
"V05001": "40.0200",
"V07001": "15.70",
"V07001_2": "16.90",
"NETCODE": null,
"V02301": "013",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54523",
"V01301": "54523",
"CNAME": "武清",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.0100",
"V05001": "39.2300",
"V07001": "4.50",
"V07001_2": "5.70",
"NETCODE": null,
"V02301": "013",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54525",
"V01301": "54525",
"CNAME": "宝坻",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.1700",
"V05001": "39.4400",
"V07001": "5.10",
"V07001_2": "6.30",
"NETCODE": null,
"V02301": "012",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54526",
"V01301": "54526",
"CNAME": "东丽区",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.2000",
"V05001": "39.0500",
"V07001": "1.90",
"V07001_2": "2.60",
"NETCODE": null,
"V02301": "013",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54527",
"V01301": "54527",
"CNAME": "天津",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.0300",
"V05001": "39.0500",
"V07001": "3.50",
"V07001_2": "4.30",
"NETCODE": null,
"V02301": "012",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54528",
"V01301": "54528",
"CNAME": "北辰区",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.0800",
"V05001": "39.1400",
"V07001": "3.40",
"V07001_2": "4.60",
"NETCODE": null,
"V02301": "013",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54529",
"V01301": "54529",
"CNAME": "宁河",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.4900",
"V05001": "39.2100",
"V07001": "3.90",
"V07001_2": "5.10",
"NETCODE": null,
"V02301": "013",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54530",
"V01301": "54530",
"CNAME": "汉沽区",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.4600",
"V05001": "39.1400",
"V07001": "1.30",
"V07001_2": "2.50",
"NETCODE": null,
"V02301": "013",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54619",
"V01301": "54619",
"CNAME": "静海",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "116.5500",
"V05001": "38.5500",
"V07001": "5.50",
"V07001_2": "6.70",
"NETCODE": null,
"V02301": "013",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54622",
"V01301": "54622",
"CNAME": "津南区",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.2200",
"V05001": "38.5900",
"V07001": "3.70",
"V07001_2": "3.90",
"NETCODE": null,
"V02301": "013",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54623",
"V01301": "54623",
"CNAME": "塘沽",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.4300",
"V05001": "39.0300",
"V07001": "4.80",
"V07001_2": "5.70",
"NETCODE": null,
"V02301": "012",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}, {
"StationID": "54645",
"V01301": "54645",
"CNAME": "大港",
"COUNTRYCODE": null,
"COUNTRYNAME": null,
"REGIONCODE": null,
"V_ACODE": "120000",
"V_TCODE": null,
"V06001": "117.2800",
"V05001": "38.5100",
"V07001": "2.20",
"V07001_2": "3.40",
"NETCODE": null,
"V02301": "013",
"PROVINCENAME": null,
"CITYNAME": null,
"CNTYNAME": null,
"TOWNNAME": null,
"StationClass": "0",
"BeginTime": null,
"EndTime": null,
"ProvinceCode": "120",
"Memo": null,
"IsOpenApi": "1"
}]
} |
[{"FileName":"\\anim\\abc_fade_in.xml","MD5":"35C512CF848669F49F9C13945328C0C9"},{"FileName":"\\anim\\abc_fade_out.xml","MD5":"72941B5A65BBA6038722CCAEB6C76BBE"},{"FileName":"\\anim\\abc_grow_fade_in_from_bottom.xml","MD5":"D0C2B68CA992CDE83EBCF9A9B79E8455"},{"FileName":"\\anim\\abc_popup_enter.xml","MD5":"9FA54FB21A9D947C2C7CE671AF667C1F"},{"FileName":"\\anim\\abc_popup_exit.xml","MD5":"A657FE9F830040767E0B0466474A0D10"},{"FileName":"\\anim\\abc_shrink_fade_out_from_bottom.xml","MD5":"216D4BCD8B6F755873A98ACE01E0DC19"},{"FileName":"\\anim\\abc_slide_in_bottom.xml","MD5":"3487369E930CDE7F72E3E0E9FAD1D4F5"},{"FileName":"\\anim\\abc_slide_in_top.xml","MD5":"BE876EE895E9678F415EADDB867675BD"},{"FileName":"\\anim\\abc_slide_out_bottom.xml","MD5":"0A7EB966D35EBDF1D8280F9C395F9ED5"},{"FileName":"\\anim\\abc_slide_out_top.xml","MD5":"47DCC05B81F1EF3C3F3EFC26CB40ED89"},{"FileName":"\\anim\\abc_tooltip_enter.xml","MD5":"6391E612AFB3FCF4FBD11F7FEF7AA70F"},{"FileName":"\\anim\\abc_tooltip_exit.xml","MD5":"2573A8857A28E5A5223FA30E5311E453"},{"FileName":"\\anim\\anim_hidden_alpha.xml","MD5":"F1FE00CAD60A497BF806736E782F144A"},{"FileName":"\\anim\\anim_show_alpha.xml","MD5":"988BD2955862D04D89250ABABACD520B"},{"FileName":"\\anim\\enter_from_bottom.xml","MD5":"2B6C47B4F1C9001F8F8EEBA640B824C1"},{"FileName":"\\anim\\enter_from_left.xml","MD5":"A3FA389F57292E917094F2DEEEE0756B"},{"FileName":"\\anim\\enter_from_right.xml","MD5":"C3FB61CD20CFA51C9B651549542789A8"},{"FileName":"\\anim\\enter_from_top.xml","MD5":"8071332562DD0ABE4CC7FA4604066612"},{"FileName":"\\anim\\out_to_bottom.xml","MD5":"9FD4BD0C74F01C9EED99FF0BAD14D7D7"},{"FileName":"\\anim\\out_to_left.xml","MD5":"42075A83295D671EAA876E3E2AA12C3C"},{"FileName":"\\anim\\out_to_right.xml","MD5":"FDE00401CB14A0BC26AE7606CA621832"},{"FileName":"\\anim\\out_to_top.xml","MD5":"BCC53878496D0F424C595CE4F7BE3BD5"},{"FileName":"\\color\\abc_background_cache_hint_selector_material_dark.xml","MD5":"5BE3A9E24963BA7073D45C223A2CBF6B"},{"FileName":"\\color\\abc_background_cache_hint_selector_material_light.xml","MD5":"EE53B37E872EC0D0368B1F2D2E749E55"},{"FileName":"\\color\\abc_btn_colored_borderless_text_material.xml","MD5":"71A06250B59FA98A4385C540170439B9"},{"FileName":"\\color\\abc_btn_colored_text_material.xml","MD5":"D60FC1FCE8F5C42A4A1CBCC6C2F7DF43"},{"FileName":"\\color\\abc_hint_foreground_material_dark.xml","MD5":"58C7CD96C8B6F0D0EAE9902D253DCFDB"},{"FileName":"\\color\\abc_hint_foreground_material_light.xml","MD5":"EA1AA83D98AF977EB0D5BE9C2DC2B949"},{"FileName":"\\color\\abc_primary_text_disable_only_material_dark.xml","MD5":"1697B34C6835A2CADDD9F13324F16677"},{"FileName":"\\color\\abc_primary_text_disable_only_material_light.xml","MD5":"6FA29796E1CCF1CBC61D15B31C4D6AFE"},{"FileName":"\\color\\abc_primary_text_material_dark.xml","MD5":"8A060CD44E4EDA7C2839339268A859B0"},{"FileName":"\\color\\abc_primary_text_material_light.xml","MD5":"B7BCB3B3D40A19995046C35BF0ECAF1A"},{"FileName":"\\color\\abc_search_url_text.xml","MD5":"D5DDBF2EE7D5EDC7AE2E8CB359F85AFD"},{"FileName":"\\color\\abc_secondary_text_material_dark.xml","MD5":"787674B5220EABD6EA4966DD3D1C723C"},{"FileName":"\\color\\abc_secondary_text_material_light.xml","MD5":"E0B70DC51D89CB9CD645FE5F84D9531D"},{"FileName":"\\color\\abc_tint_btn_checkable.xml","MD5":"968C0D98149BD0E6E8266DF4FEAD5BCC"},{"FileName":"\\color\\abc_tint_default.xml","MD5":"C56065B7E1C8EE05DE8CD0015EE0888B"},{"FileName":"\\color\\abc_tint_edittext.xml","MD5":"56175C0107C0A5B1F8AE288E28E0F800"},{"FileName":"\\color\\abc_tint_seek_thumb.xml","MD5":"0B78E8F04BA01AE014EA0C712C6BDB05"},{"FileName":"\\color\\abc_tint_spinner.xml","MD5":"0A993D479A0BEED4A07AF99DDBF6AC5B"},{"FileName":"\\color\\abc_tint_switch_track.xml","MD5":"E65D1EB3CB03B1C78C1602E33317320C"},{"FileName":"\\color\\switch_thumb_material_dark.xml","MD5":"BAF084A6B66E4E9D5AA721FD3AA3BD0A"},{"FileName":"\\color\\switch_thumb_material_light.xml","MD5":"073F2AFA45C5C0FB4399F52EFE8D7419"},{"FileName":"\\color-v21\\abc_btn_colored_borderless_text_material.xml","MD5":"C58C73A5A1CD23B3C511EF8C18EDAE87"},{"FileName":"\\color-v23\\abc_btn_colored_borderless_text_material.xml","MD5":"D78ABEE0EB42876C9C9C05E0E116F492"},{"FileName":"\\color-v23\\abc_btn_colored_text_material.xml","MD5":"33D986AB1801F01186358CCBFFD72FFE"},{"FileName":"\\color-v23\\abc_color_highlight_material.xml","MD5":"D4E01E958A64974A613A7BA974139A52"},{"FileName":"\\color-v23\\abc_tint_btn_checkable.xml","MD5":"7B7B9602211BAFF7A62929E09A8F7EEC"},{"FileName":"\\color-v23\\abc_tint_default.xml","MD5":"0376704E27C00CF6D3477D24444CE4B5"},{"FileName":"\\color-v23\\abc_tint_edittext.xml","MD5":"31AF5D1E3971579D7142C7E2A9C4C1D1"},{"FileName":"\\color-v23\\abc_tint_seek_thumb.xml","MD5":"9DC0FC4951C3BE18A3B8364047083811"},{"FileName":"\\color-v23\\abc_tint_spinner.xml","MD5":"31AF5D1E3971579D7142C7E2A9C4C1D1"},{"FileName":"\\color-v23\\abc_tint_switch_track.xml","MD5":"92167D529DD7F9C6ABD05E49699E598E"},{"FileName":"\\drawable\\abc_btn_borderless_material.xml","MD5":"4DF9CD40EA1768B282C4B10E50DE96F4"},{"FileName":"\\drawable\\abc_btn_check_material.xml","MD5":"0F507A92919D9ABA6E7FE0A3247050A8"},{"FileName":"\\drawable\\abc_btn_colored_material.xml","MD5":"8FC8E5ABAE5FF1D0B2E0BCCE57FCCF50"},{"FileName":"\\drawable\\abc_btn_default_mtrl_shape.xml","MD5":"7EBC4ED83E885E304DA0DA7D9A4EF6F4"},{"FileName":"\\drawable\\abc_btn_radio_material.xml","MD5":"F0AC0A78AAC0C221EE55086DB51DBF41"},{"FileName":"\\drawable\\abc_cab_background_internal_bg.xml","MD5":"55F00EE430CB8A6F1A1A0A196390A313"},{"FileName":"\\drawable\\abc_cab_background_top_material.xml","MD5":"79D29066039E0316F632BBC49A767894"},{"FileName":"\\drawable\\abc_dialog_material_background.xml","MD5":"76DE2A8712FFBA5AB423FE00837A3962"},{"FileName":"\\drawable\\abc_edit_text_material.xml","MD5":"6C9034155A74F41C823DED73CF2CD91F"},{"FileName":"\\drawable\\abc_ic_ab_back_material.xml","MD5":"45B06DA0B837CB04DA1CCE68927BF08D"},{"FileName":"\\drawable\\abc_ic_arrow_drop_right_black_24dp.xml","MD5":"96B7CE8EFB7682D97342D79EAC87BDEF"},{"FileName":"\\drawable\\abc_ic_clear_material.xml","MD5":"029906E60DD16489F74CB4E153935DB1"},{"FileName":"\\drawable\\abc_ic_go_search_api_material.xml","MD5":"F360F67D013B1A1A4D9DC220BD675B50"},{"FileName":"\\drawable\\abc_ic_menu_overflow_material.xml","MD5":"271CBB617B085771F716406E1C3472B7"},{"FileName":"\\drawable\\abc_ic_search_api_material.xml","MD5":"543E8CC696F4B8D182563D14C48BD80F"},{"FileName":"\\drawable\\abc_ic_voice_search_api_material.xml","MD5":"9B3583FE3E5791702E9517141A09D222"},{"FileName":"\\drawable\\abc_item_background_holo_dark.xml","MD5":"E7DA766BA8A5CEC4F4DF76984EFAAA6D"},{"FileName":"\\drawable\\abc_item_background_holo_light.xml","MD5":"2322DB6D5E52BF02D7DDB06DCD4A5CEF"},{"FileName":"\\drawable\\abc_list_divider_material.xml","MD5":"6CC0E7D3A38E220093440D815DA591F4"},{"FileName":"\\drawable\\abc_list_selector_background_transition_holo_dark.xml","MD5":"2ADC45F7D5C42911AA46D27FC89A39A5"},{"FileName":"\\drawable\\abc_list_selector_background_transition_holo_light.xml","MD5":"D2341D3EDD6D4F83A07B9AC62E050858"},{"FileName":"\\drawable\\abc_list_selector_holo_dark.xml","MD5":"4DEAEA561AADBBF1158A9712F0C46737"},{"FileName":"\\drawable\\abc_list_selector_holo_light.xml","MD5":"F0D14C057EB181CB950601B48F1CF06E"},{"FileName":"\\drawable\\abc_ratingbar_indicator_material.xml","MD5":"1DA98CAD849138045EFC6771B80CC83B"},{"FileName":"\\drawable\\abc_ratingbar_material.xml","MD5":"ADB49D09C25A8CEDF2C0323C20BF1F30"},{"FileName":"\\drawable\\abc_ratingbar_small_material.xml","MD5":"0D61891FF7E6B29E67E0EB443B7EAC6C"},{"FileName":"\\drawable\\abc_seekbar_thumb_material.xml","MD5":"F43980FC02B7D4CB113493A034A7C6B2"},{"FileName":"\\drawable\\abc_seekbar_tick_mark_material.xml","MD5":"F27D74241913177D2F176B4EA03A7E77"},{"FileName":"\\drawable\\abc_seekbar_track_material.xml","MD5":"16E0B12AD478BA216691E15060964DAB"},{"FileName":"\\drawable\\abc_spinner_textfield_background_material.xml","MD5":"E18521CBB692D05862EF18515C8287E1"},{"FileName":"\\drawable\\abc_switch_thumb_material.xml","MD5":"55BA6657FD4A0ED55D4A385EBE998860"},{"FileName":"\\drawable\\abc_tab_indicator_material.xml","MD5":"61A8E5392226134B893D0904F326DBB8"},{"FileName":"\\drawable\\abc_textfield_search_material.xml","MD5":"A6E37A94FDCD5F6894C89319FF88D8EE"},{"FileName":"\\drawable\\abc_text_cursor_material.xml","MD5":"B2676394D9D70B02CFB426EAC4FDB1DA"},{"FileName":"\\drawable\\abc_vector_test.xml","MD5":"2DE8D716441FBBFE95F283CE9F6E9311"},{"FileName":"\\drawable\\notification_bg.xml","MD5":"3ED1CDC4FB2802EBF89C5ED77874D89F"},{"FileName":"\\drawable\\notification_bg_low.xml","MD5":"C042D7992A959FE46756DA18FD4116CC"},{"FileName":"\\drawable\\notification_icon_background.xml","MD5":"74FE2816B3B6AB520A0530E61ED5197B"},{"FileName":"\\drawable\\notification_tile_bg.xml","MD5":"068D6A18A8DDF0C658CDF17C7F2ED4D7"},{"FileName":"\\drawable\\selector_check_btn_select.xml","MD5":"700D24A85AC8C93E600649A9C39D593E"},{"FileName":"\\drawable\\shape_btn_default.xml","MD5":"E8C42F6BEFAB3D392E8C09B2DEAADF66"},{"FileName":"\\drawable\\splash_image_def.xml","MD5":"2F6AC7006DFA7D125908304C0434626A"},{"FileName":"\\drawable\\tooltip_frame_dark.xml","MD5":"73EC70D77752A6DEE390BDC166A205F9"},{"FileName":"\\drawable\\tooltip_frame_light.xml","MD5":"E50D968DD1A714883719A9D203F514B0"},{"FileName":"\\drawable-anydpi-v21\\ic_camera.xml","MD5":"4FF05D9B71F4011DB2DD33A75D916FB3"},{"FileName":"\\drawable-anydpi-v21\\ic_flash_auto.xml","MD5":"D31247A7627FB5FEBEF90970695FB36B"},{"FileName":"\\drawable-anydpi-v21\\ic_flash_off.xml","MD5":"87A7EA615915E7652E764ADA9C59CFB5"},{"FileName":"\\drawable-anydpi-v21\\ic_flash_on.xml","MD5":"D3D772EE9367083002507D6F3BB7AA1E"},{"FileName":"\\drawable-anydpi-v21\\ic_photo.xml","MD5":"EF5F24EEB12818A90079AB9C0023381E"},{"FileName":"\\drawable-anydpi-v21\\ic_repeat_black_24dp.xml","MD5":"F2509B6461BADC0FDDC2C52EA43D5409"},{"FileName":"\\drawable-hdpi\\ic_launcher.png","MD5":"7C556051DB71A284166D42EBB7277B87"},{"FileName":"\\drawable-hdpi\\ic_notification.png","MD5":"7D6C5AA29D84B8AF76BDDF63BAB671BC"},{"FileName":"\\drawable-hdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","MD5":"282565F165D86559AA405C274A32018F"},{"FileName":"\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png","MD5":"6316FA2ABF10DA1C07C331DBFD0885B7"},{"FileName":"\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_015.png","MD5":"8C7970F59F17ADFE8DA02E4C4F71881D"},{"FileName":"\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","MD5":"33CF4BFD82B9AD23DB096839169954FA"},{"FileName":"\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","MD5":"3F4D2053C0FC197F4CC974A1B6AFAAE7"},{"FileName":"\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","MD5":"C13033928D0C394AA542CC022CB2E5A2"},{"FileName":"\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","MD5":"65BBBE5171D435216273C3B968DA3C78"},{"FileName":"\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","MD5":"700D83D8BD6349764014C6BEF1FDA36E"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","MD5":"944BBB143CBE6E591A46A18631019353"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png","MD5":"811554AE4686A3AF3138211886B94B80"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png","MD5":"4036ABEF17FBD3988EC2D8D8F90E9C11"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png","MD5":"6311A233B8B144A308AAD5BAF50A0037"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png","MD5":"6384D47550C0675595DF6FEB530ADD9B"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_menu_share_mtrl_alpha.png","MD5":"44A69E6F185E209274C18E33A30C8193"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_star_black_16dp.png","MD5":"60A26E94B03CECA783C8F9C0DFD54F12"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_star_black_36dp.png","MD5":"CBB7B8B823445ACD5B6F650D1C50D44F"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_star_black_48dp.png","MD5":"4A235150716C0A287581B60C1CC577A9"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_star_half_black_16dp.png","MD5":"DE10D3500C0CD4979ADA5C5B6571141F"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_star_half_black_36dp.png","MD5":"AD296A303AEBA8A6145D902B610D809E"},{"FileName":"\\drawable-hdpi-v4\\abc_ic_star_half_black_48dp.png","MD5":"1D9F4557F33EDA67692B761A6FA6CEE5"},{"FileName":"\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png","MD5":"70FD870F00DD2551AD8899071D77033A"},{"FileName":"\\drawable-hdpi-v4\\abc_list_focused_holo.9.png","MD5":"81B5AF455BD56A320464F49082B0AD98"},{"FileName":"\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png","MD5":"701A9E2830F93773270066170704FC1F"},{"FileName":"\\drawable-hdpi-v4\\abc_list_pressed_holo_dark.9.png","MD5":"078D00FF03768537164CBE78F4516620"},{"FileName":"\\drawable-hdpi-v4\\abc_list_pressed_holo_light.9.png","MD5":"A9B95CD3C38858017608BF9613AB124A"},{"FileName":"\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","MD5":"76B39285D3616EA608B3E600890AA27D"},{"FileName":"\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_light.9.png","MD5":"F0FFED0090CC2FD26C68558FAF620D7B"},{"FileName":"\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","MD5":"E9C56C84FA7A6CD617E67D451DC9795C"},{"FileName":"\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png","MD5":"371AD460F62F5E0D6E1C5AA3F7D78231"},{"FileName":"\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","MD5":"E78D73A110566EDD7F6C625223060DBB"},{"FileName":"\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","MD5":"0EE2DDFEC92EB68AA20368A33C4B9D8A"},{"FileName":"\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","MD5":"D170ADAB950F3973CD13A51FB96B2807"},{"FileName":"\\drawable-hdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","MD5":"F9E65989EF8F3BC40933B9B43F854035"},{"FileName":"\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","MD5":"4D7C415DC24D276B9B16C6943FE90000"},{"FileName":"\\drawable-hdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","MD5":"F9274CADB7972C75DAD1399349A1882E"},{"FileName":"\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png","MD5":"CA55318083FE1652BECA9CC6CE85D83D"},{"FileName":"\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","MD5":"9059C2B0053933223F30DCB0384EBBB3"},{"FileName":"\\drawable-hdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","MD5":"5AFAD58FEA09A20E1C2367AC653F6DAE"},{"FileName":"\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","MD5":"246850B02970FD3F294577CF56D77325"},{"FileName":"\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","MD5":"9E1BACEDE0E457D93641903F8EA0105C"},{"FileName":"\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","MD5":"8BF3ADF4B0AEBA18CD2796541BB06B7B"},{"FileName":"\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_dark.png","MD5":"FD7679CD5C5DD89415F6D3E7484BE0F5"},{"FileName":"\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_light.png","MD5":"2F292469AF9E4646F8742C6A7782A22E"},{"FileName":"\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png","MD5":"C5953EA191555D4DD91F492F93F27974"},{"FileName":"\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_light.png","MD5":"8268B3815173B6029925792B852E2329"},{"FileName":"\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl_dark.png","MD5":"20107BECB20CB18A48E5A2D801C67336"},{"FileName":"\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl_light.png","MD5":"8EC56AAE841B70533D77C229A8895263"},{"FileName":"\\drawable-hdpi-v4\\ic_camera.png","MD5":"A35DC4C303D41B178660761F9811DFDB"},{"FileName":"\\drawable-hdpi-v4\\ic_flash_auto.png","MD5":"4D0C95574EB0F66FA468D5E15B5EE6E5"},{"FileName":"\\drawable-hdpi-v4\\ic_flash_off.png","MD5":"0DA2FF11ED46AA91DF5FCCDD2945B593"},{"FileName":"\\drawable-hdpi-v4\\ic_flash_on.png","MD5":"0DE56A842CC3C6FEC93F97BDC73F2590"},{"FileName":"\\drawable-hdpi-v4\\ic_photo.png","MD5":"FC7E1590EB2E32E3871403E64EA051A5"},{"FileName":"\\drawable-hdpi-v4\\ic_repeat_black_24dp.png","MD5":"C2707E0E830A825166F5901D2ABFEA8C"},{"FileName":"\\drawable-hdpi-v4\\notification_bg_low_normal.9.png","MD5":"FD974381ECCA6B0EC5656366A77F6730"},{"FileName":"\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png","MD5":"5E525A6B2EE5CD97B3F8245688E54F85"},{"FileName":"\\drawable-hdpi-v4\\notification_bg_normal.9.png","MD5":"D5730F490D78D80F4C75455547EA51C9"},{"FileName":"\\drawable-hdpi-v4\\notification_bg_normal_pressed.9.png","MD5":"7E529FE51FE511D97A329B8C05AA18BE"},{"FileName":"\\drawable-hdpi-v4\\notify_panel_notification_icon_bg.png","MD5":"A94BAC7C0E30978295D426A1B07C1ED5"},{"FileName":"\\drawable-large\\splash_image.png","MD5":"6C44A873B4629DABF66BE4CF8B066001"},{"FileName":"\\drawable-ldpi\\ic_launcher.png","MD5":"1CFADBE971BDFD0780A05897594F444A"},{"FileName":"\\drawable-ldpi-v4\\ic_camera.png","MD5":"462BDE524F76A19D31C8CAB35E8451D2"},{"FileName":"\\drawable-ldpi-v4\\ic_flash_auto.png","MD5":"19DFDCAB94B542D24EA1AB777DCA02FF"},{"FileName":"\\drawable-ldpi-v4\\ic_flash_off.png","MD5":"55E820A7A571A9503BDEF03BEF3300B5"},{"FileName":"\\drawable-ldpi-v4\\ic_flash_on.png","MD5":"A03AE2884521368064AE8F9AD4B3C5BB"},{"FileName":"\\drawable-ldpi-v4\\ic_photo.png","MD5":"315F3E4726B7F94A0F5761BC61928791"},{"FileName":"\\drawable-ldpi-v4\\ic_repeat_black_24dp.png","MD5":"C81F273729EB092865728F5B96D91F9E"},{"FileName":"\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png","MD5":"20624EE72B786F20454B93B029893E81"},{"FileName":"\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png","MD5":"F8F1B6CF8C2DF8FB18F5A33E0AF74E37"},{"FileName":"\\drawable-ldrtl-hdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","MD5":"9BC68FCD4BE858B9A941E6C465E6279A"},{"FileName":"\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png","MD5":"30CFA0316DE977AB09057728B4136AD8"},{"FileName":"\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png","MD5":"4136FE66FC8211A533FBD98B703EF6DE"},{"FileName":"\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","MD5":"0A0BED40BE05623D642DB5DE7D7F373F"},{"FileName":"\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png","MD5":"A79A2864F8E497B4559C3FCC05F4043B"},{"FileName":"\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png","MD5":"36BDA1399BDB10CFA36FB317A3660B2D"},{"FileName":"\\drawable-ldrtl-xhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","MD5":"8957EF81D50265948C2E734DD3894B17"},{"FileName":"\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png","MD5":"7F16946AA000B2B9AD695F96E8A723BF"},{"FileName":"\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png","MD5":"49AB4D003B5025BD1A794FC466C39FCA"},{"FileName":"\\drawable-ldrtl-xxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","MD5":"D08B67C695F88A616B19103F318BBC74"},{"FileName":"\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png","MD5":"12B23B1D6598BE08E766427441E05F38"},{"FileName":"\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png","MD5":"4071738E1853AE865079059A189002C8"},{"FileName":"\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","MD5":"AEF4C467BA1E58DD7BE3A5BEC7832AE6"},{"FileName":"\\drawable-mdpi\\ic_launcher.png","MD5":"AC5288D94EA2493C84D4BAC1BB97B365"},{"FileName":"\\drawable-mdpi\\ic_notification.png","MD5":"6124EEDC97148743F4E68835A0BB9B8B"},{"FileName":"\\drawable-mdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","MD5":"5A68DA3FFA5FAEB923C2DD5B23C165D8"},{"FileName":"\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png","MD5":"4D6AAFA7864C689EE16755416B95BB2D"},{"FileName":"\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_015.png","MD5":"779FBC128FD38AA099E99A1C8DCB1F0F"},{"FileName":"\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","MD5":"804C64A1EB5E033E9EA6C271757D22C6"},{"FileName":"\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","MD5":"280A920BC2C37C5A5371591608CB8555"},{"FileName":"\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","MD5":"339DCB5ECC299E12CEE822B23B972C42"},{"FileName":"\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","MD5":"FCDB6D412BDB2B296CD4036E1D372072"},{"FileName":"\\drawable-mdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","MD5":"4A25F5351F9E7C09505525CB76CC0667"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","MD5":"453CB0F988333999AAB43588BFCABDFC"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png","MD5":"CB55ECF5FA82D2B25D26A9238EC2DECC"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png","MD5":"5A5B57B0F1F42EF213205A790B7094CB"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png","MD5":"8BE6CBC54E87F683A0F11EB98CDB75DF"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png","MD5":"8FAB7D8B0A34EF23FC9859AC92A96A13"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_menu_share_mtrl_alpha.png","MD5":"BCA231610F57D057A792A6C5FCFD5127"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_star_black_16dp.png","MD5":"E9A461C939EDEC34103360FA1CA433EE"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_star_black_36dp.png","MD5":"8B4614EBC3F11BF78FB3E6F60CF6ABCE"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_star_black_48dp.png","MD5":"1D2A036EFE51621A221C4CE91C2FFAFD"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_star_half_black_16dp.png","MD5":"41E0E0CB2242682E83441CE9146B9493"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_star_half_black_36dp.png","MD5":"2885F6EAAE81EBEECF0EEACBE9CFAF44"},{"FileName":"\\drawable-mdpi-v4\\abc_ic_star_half_black_48dp.png","MD5":"298CE7181E33C10F8EFB63BC096CD0ED"},{"FileName":"\\drawable-mdpi-v4\\abc_list_divider_mtrl_alpha.9.png","MD5":"70FD870F00DD2551AD8899071D77033A"},{"FileName":"\\drawable-mdpi-v4\\abc_list_focused_holo.9.png","MD5":"D71F57F8C51E08D8C88A906C5F16C516"},{"FileName":"\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png","MD5":"CC5D00D0D26C098D1615E28E9FA5F550"},{"FileName":"\\drawable-mdpi-v4\\abc_list_pressed_holo_dark.9.png","MD5":"AF0E3CCE4AAA6BBBB0EC0B658F6C1DB0"},{"FileName":"\\drawable-mdpi-v4\\abc_list_pressed_holo_light.9.png","MD5":"ACEB5E1F98227B7CAA1812DE9C873B85"},{"FileName":"\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","MD5":"B74E32788A236E0B177ADF7E0AD18DA2"},{"FileName":"\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_light.9.png","MD5":"34C8D623D8807EECB96F19E7668737B3"},{"FileName":"\\drawable-mdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","MD5":"4C2CAC6F4358C94D75CE57462BAD0701"},{"FileName":"\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png","MD5":"4EB81EA18E989F145B5AF894338FAE07"},{"FileName":"\\drawable-mdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","MD5":"99976DB4E14CD0620594D60BD425D5DE"},{"FileName":"\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","MD5":"621B6D28C1F10C14575E52C334501DEA"},{"FileName":"\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","MD5":"C492B5E28B328CE13D5B71AAD39E43C9"},{"FileName":"\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","MD5":"C8EC7188E487533A3373BB902E9FFD6B"},{"FileName":"\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","MD5":"5A7C3BE6DFF3F7E5E49CE8D02BD235E3"},{"FileName":"\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","MD5":"948E3A54716E5102D8D3AAB0AABF0B53"},{"FileName":"\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png","MD5":"37650B137A4AB9F06595BD327747D90D"},{"FileName":"\\drawable-mdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","MD5":"A371C472B4F7AA35E33C64B0ACC5E5ED"},{"FileName":"\\drawable-mdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","MD5":"0E07BDF51F21C35F45A92CAA8B207B13"},{"FileName":"\\drawable-mdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","MD5":"FD693C435BDA50EE4412E1B167C2A2C4"},{"FileName":"\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","MD5":"E0F93067E883FC087176A82DD068B400"},{"FileName":"\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","MD5":"892F2CB65F24A39E92E781A5228F92A6"},{"FileName":"\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_dark.png","MD5":"B09AC13FA2DEC66F704B842C05951093"},{"FileName":"\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_light.png","MD5":"F9CEEDD9B6923FCA678D4351FA1985B1"},{"FileName":"\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png","MD5":"921B4EDD6ACBD60C87F6CE93E93D8EE9"},{"FileName":"\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_light.png","MD5":"69B5604F21454EB4B471F3F5B406BB0F"},{"FileName":"\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_dark.png","MD5":"2D4C0B979AD102DAF585E94FC7C72383"},{"FileName":"\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_light.png","MD5":"C271DA4FB1DE9469F4BBD2741183B507"},{"FileName":"\\drawable-mdpi-v4\\ic_camera.png","MD5":"3F2A38E054E48DDE255020F5E45A081E"},{"FileName":"\\drawable-mdpi-v4\\ic_flash_auto.png","MD5":"2AAC6B14481458768B18CC6A7B475E60"},{"FileName":"\\drawable-mdpi-v4\\ic_flash_off.png","MD5":"9F947B7A0CCD4000F4C75ABE48AE1D0D"},{"FileName":"\\drawable-mdpi-v4\\ic_flash_on.png","MD5":"F00709DFD96AC9B6BC4F05C9FC2FBA78"},{"FileName":"\\drawable-mdpi-v4\\ic_photo.png","MD5":"477DA22BADB61B36409896EECB48B6D7"},{"FileName":"\\drawable-mdpi-v4\\ic_repeat_black_24dp.png","MD5":"B328EACF2B25CE7692E2742CD028FA84"},{"FileName":"\\drawable-mdpi-v4\\notification_bg_low_normal.9.png","MD5":"7AB12FD7D1F9976CF04684A645AE9E51"},{"FileName":"\\drawable-mdpi-v4\\notification_bg_low_pressed.9.png","MD5":"91D31902134C2B5EAF424234E0AFD94D"},{"FileName":"\\drawable-mdpi-v4\\notification_bg_normal.9.png","MD5":"C162218CB7F858B88B6515F78F857847"},{"FileName":"\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png","MD5":"2AA92D7DAE40651A7741731568C29E1F"},{"FileName":"\\drawable-mdpi-v4\\notify_panel_notification_icon_bg.png","MD5":"730FDC1B96103C0806847F7341CA500B"},{"FileName":"\\drawable-normal\\splash_image.png","MD5":"D5AD65655D20943050F223660DC2A4D2"},{"FileName":"\\drawable-small\\splash_image.png","MD5":"3FEDD6D55A0C155FD644B5EF8B5E439E"},{"FileName":"\\drawable-v21\\abc_action_bar_item_background_material.xml","MD5":"9F07421A4A69047095E1798EB69941F7"},{"FileName":"\\drawable-v21\\abc_btn_colored_material.xml","MD5":"AE5FED6B18A2DCE6E480086BE446A411"},{"FileName":"\\drawable-v21\\abc_dialog_material_background.xml","MD5":"E9FEA53554B8E0B10628C81277C5CD97"},{"FileName":"\\drawable-v21\\abc_edit_text_material.xml","MD5":"DFDAE0D7AD902961AFFC498B0194B581"},{"FileName":"\\drawable-v21\\abc_list_divider_material.xml","MD5":"E13D7CCA7948298AF520BB9E991E6797"},{"FileName":"\\drawable-v21\\notification_action_background.xml","MD5":"E1938A38FE6A1C9B57B2AAC71D01D7BC"},{"FileName":"\\drawable-v23\\abc_control_background_material.xml","MD5":"A8ECDE0B7B47BA3E30451D07C17479BE"},{"FileName":"\\drawable-watch-v20\\abc_dialog_material_background.xml","MD5":"0A2145E6C5C4A33D7A377FE9CC15A38F"},{"FileName":"\\drawable-xhdpi\\ic_launcher.png","MD5":"D2050A68FA85746050D7E5BE266635DF"},{"FileName":"\\drawable-xhdpi\\ic_notification.png","MD5":"F88A7E8913C019DB3D7F662F976F5CF1"},{"FileName":"\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","MD5":"F30CA0ED8F628A008E7060DB93F891D0"},{"FileName":"\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","MD5":"E5761BBBED4DC4A85018132E698B4AF9"},{"FileName":"\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","MD5":"1EFA1E8714665623F0F4D63F7C554659"},{"FileName":"\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","MD5":"446D97F2B8351D8E9BAE3C911CB0EFAF"},{"FileName":"\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","MD5":"72BDF70D5072ECDA629E612C8E999893"},{"FileName":"\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","MD5":"B20B14FDA26F4A01E03969270E27086F"},{"FileName":"\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","MD5":"6F9CA982D6E6E561A17EA72D41D493E6"},{"FileName":"\\drawable-xhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","MD5":"3ED76F636347A8454128161DE2877EB9"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","MD5":"BB281DD2E84F3F9608F91C87683253EE"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png","MD5":"CA27F19092E04D5C4B6AD05985809FF5"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png","MD5":"DC8CB61D569C4426797BF545FC981B79"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png","MD5":"E9694067B79FDCF583B68DDEFB3B0106"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png","MD5":"491BBFA9AE36A135229893590B5B9069"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png","MD5":"1BD95046AB245DC365344D49E01B858C"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_star_black_16dp.png","MD5":"3B86EA97365C3F8DD363931F0FE53DA7"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_star_black_36dp.png","MD5":"B2AE87F0A9E3CF1D28D2F0D67D8E3D56"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_star_black_48dp.png","MD5":"6969713ED26E2C2785BD46179D8E6188"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_star_half_black_16dp.png","MD5":"683975A5E2BEA0BA95552C364519ADFC"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_star_half_black_36dp.png","MD5":"7ACEEDB68466189CAED8D320516CA721"},{"FileName":"\\drawable-xhdpi-v4\\abc_ic_star_half_black_48dp.png","MD5":"AC441AC0708B56C60BA43389C728D9D5"},{"FileName":"\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png","MD5":"70FD870F00DD2551AD8899071D77033A"},{"FileName":"\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png","MD5":"3B1C78B22A17DE9F27B8ECFEBA68EE1E"},{"FileName":"\\drawable-xhdpi-v4\\abc_list_longpressed_holo.9.png","MD5":"F3F2CC8060F66FC95C5234ECC0532696"},{"FileName":"\\drawable-xhdpi-v4\\abc_list_pressed_holo_dark.9.png","MD5":"978174B633D23861AF2168142E2EB97D"},{"FileName":"\\drawable-xhdpi-v4\\abc_list_pressed_holo_light.9.png","MD5":"53C9B262F229A3BF178EFE66993F9CE9"},{"FileName":"\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","MD5":"36FE33936D9A8C98866824391DA48BBA"},{"FileName":"\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_light.9.png","MD5":"561C7A04C44DB086CA458F7F46E44443"},{"FileName":"\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","MD5":"D3A75A69B3B061364612A9B53CF5D430"},{"FileName":"\\drawable-xhdpi-v4\\abc_popup_background_mtrl_mult.9.png","MD5":"AE361CE1AD866175319F813AA663A56A"},{"FileName":"\\drawable-xhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","MD5":"3C70CCEF1A668C71601D06580151633A"},{"FileName":"\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","MD5":"762E1B90059761DF8118555B45AF3C0A"},{"FileName":"\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","MD5":"ED76FC550EEA417DFDC47CF99620CCF6"},{"FileName":"\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","MD5":"0ED57A73BECAAC61FF3BB03C88FDBCF9"},{"FileName":"\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","MD5":"1F66CA2E00EAD75EEB446B884B5D3356"},{"FileName":"\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","MD5":"4757C5AB2BDEB3568780F6F1F3F8C9EE"},{"FileName":"\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","MD5":"7689244A0B85FCE9EC5D90D137F2BB0E"},{"FileName":"\\drawable-xhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","MD5":"2DBC6847684B0B99D1EF3AEB09F7A25E"},{"FileName":"\\drawable-xhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","MD5":"E5D202950091A290BA7A6F00889FA4CB"},{"FileName":"\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","MD5":"0EE68E23DF3E30E61B8CFA1B068CDACC"},{"FileName":"\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","MD5":"FD898503D3600F7081D9D3DFDA8E1B16"},{"FileName":"\\drawable-xhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","MD5":"D5759DF355833548E322DF9FAD2B7EA4"},{"FileName":"\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png","MD5":"D50521BAFC4801E9EB4B8CB075414157"},{"FileName":"\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_light.png","MD5":"DECA60EED1F429E6720FF0E29FA6E75D"},{"FileName":"\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png","MD5":"665E9C331D74222D560BB14623266F52"},{"FileName":"\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png","MD5":"2CCDDA069AEAFF8896CF595CF344C7C7"},{"FileName":"\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png","MD5":"E51D5F4576C095ACFCDCFEBB97C9C329"},{"FileName":"\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_light.png","MD5":"75EE503D1BC9E159793FF38D41388B5A"},{"FileName":"\\drawable-xhdpi-v4\\ic_camera.png","MD5":"88279C6122128C04DF3887454E215CFB"},{"FileName":"\\drawable-xhdpi-v4\\ic_flash_auto.png","MD5":"6180984630E9115BC11FB5D611B767BB"},{"FileName":"\\drawable-xhdpi-v4\\ic_flash_off.png","MD5":"C06D0F4FFFB2D012B25DAD33300ABB56"},{"FileName":"\\drawable-xhdpi-v4\\ic_flash_on.png","MD5":"0255A89687F30512957D8F92A312EF6F"},{"FileName":"\\drawable-xhdpi-v4\\ic_photo.png","MD5":"F78D49903201DE51D60B8D102B76639A"},{"FileName":"\\drawable-xhdpi-v4\\ic_repeat_black_24dp.png","MD5":"266224066C40181D02411BF873860941"},{"FileName":"\\drawable-xhdpi-v4\\notification_bg_low_normal.9.png","MD5":"D6119948DA0CAD5835DF6C6851D946F5"},{"FileName":"\\drawable-xhdpi-v4\\notification_bg_low_pressed.9.png","MD5":"FC20ADF939B6DEDFE035D96358E1E73F"},{"FileName":"\\drawable-xhdpi-v4\\notification_bg_normal.9.png","MD5":"7F967F818256D98C5A338E5756F02A6A"},{"FileName":"\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png","MD5":"D876F13C8E6D5DFA3035DBFD16183E2E"},{"FileName":"\\drawable-xhdpi-v4\\notify_panel_notification_icon_bg.png","MD5":"E5E0E446CC8C3C56990CD94799D65598"},{"FileName":"\\drawable-xlarge\\splash_image.png","MD5":"42F6962901FE0C5AE2F6F6BBCCE85118"},{"FileName":"\\drawable-xxhdpi\\ic_launcher.png","MD5":"4435F3949A5FB5A67418DBB701CE1311"},{"FileName":"\\drawable-xxhdpi\\ic_notification.png","MD5":"28CA12E999564647A1315D9F8D5BD768"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","MD5":"172DC0A816120294A129B45966CBFC45"},{"FileName":"\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","MD5":"5B8B0C53A2ECC99E63940DDAA8C5E0C6"},{"FileName":"\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","MD5":"633D294845B9A26DAD07778776449A2F"},{"FileName":"\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","MD5":"CC7827E3A802E7FCD10121AEDBCB212F"},{"FileName":"\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","MD5":"DB2A3F886DA90D8AC437B897BDC0772D"},{"FileName":"\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","MD5":"5C364A96C2724C62CD9E24A39AD9B7D6"},{"FileName":"\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","MD5":"3A6D386057C7CE46CF486E8641878C47"},{"FileName":"\\drawable-xxhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","MD5":"0CAABE1EF298B99DEA6D3B58E42F2F6E"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","MD5":"63B41D2E1F586AE3F19D6E4CC86DB9FA"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png","MD5":"60B0B637ED02CC665CEC2FDA961DB304"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png","MD5":"C00CB348A5CD709C3B5D16990B32D038"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png","MD5":"2AB0BEC469C518A63523E9859CFAAEE9"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png","MD5":"5B445C8CFB79B0CF53D7E65DFC1A4A70"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png","MD5":"12BA5428718076BAD6EF2A3FFEE75FF7"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_star_black_16dp.png","MD5":"04996CB6966CE6D18D0980FDC79FE14B"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_star_black_36dp.png","MD5":"72D992448E2376B9CFD06CA03B2281B0"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_star_black_48dp.png","MD5":"B324D4A361A4742D1730EA9B42F0C464"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_star_half_black_16dp.png","MD5":"E2F03988B3CC766353CC2992C0F1B99B"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_star_half_black_36dp.png","MD5":"378E321CC2C0E7E8A68833EB4559477D"},{"FileName":"\\drawable-xxhdpi-v4\\abc_ic_star_half_black_48dp.png","MD5":"2EDD78A14468110E17014BB2EF5217B0"},{"FileName":"\\drawable-xxhdpi-v4\\abc_list_divider_mtrl_alpha.9.png","MD5":"71E09EA499A3C2A16B8E1C4EA8CAF48B"},{"FileName":"\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png","MD5":"96BB2E8BBE52772D2689024ADF18DC2B"},{"FileName":"\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png","MD5":"C5B05C8A1935BBBA6BF7C08E8174C241"},{"FileName":"\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png","MD5":"0926830C525820EB3019559B07F207BD"},{"FileName":"\\drawable-xxhdpi-v4\\abc_list_pressed_holo_light.9.png","MD5":"91DE1FFCB6C974B4A56B5E7D2F2B5EB5"},{"FileName":"\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","MD5":"FDD87A77F340B3F24A40B129C5D2A0BB"},{"FileName":"\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png","MD5":"578BDCDD03644C0918796FD9CFB3FB12"},{"FileName":"\\drawable-xxhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","MD5":"C9F8F323C64ABA2CC5D4D0754A9F2430"},{"FileName":"\\drawable-xxhdpi-v4\\abc_popup_background_mtrl_mult.9.png","MD5":"DCDC5F985F11E450ECDEC35AC1197A83"},{"FileName":"\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","MD5":"09122CA67F532836709345444C292F01"},{"FileName":"\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","MD5":"02433DC9FB6E2475262D5834A62777CD"},{"FileName":"\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","MD5":"DB1A7CB95C580329F066DBF13465F7DA"},{"FileName":"\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","MD5":"8AFDDC2EE4963D0F99E00AEF37D5FD55"},{"FileName":"\\drawable-xxhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","MD5":"37A7EF571A1A1ADC295EE3A9DF9E14FC"},{"FileName":"\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","MD5":"78312D38AE1C0E76FA0079BF3D23A821"},{"FileName":"\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","MD5":"5F693730B6058F86FB124FC106E9BFA5"},{"FileName":"\\drawable-xxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","MD5":"CB9D1DA35CC02E21DC835BD798D3D21A"},{"FileName":"\\drawable-xxhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","MD5":"67037492A2745C67F5B9D8DB4AD7C93B"},{"FileName":"\\drawable-xxhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","MD5":"9D2EAA9DA547678435117F08C4CE7248"},{"FileName":"\\drawable-xxhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","MD5":"75835089ECA3E9A5C4E456AD4E29EAD0"},{"FileName":"\\drawable-xxhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","MD5":"966DE26A28FE116472F32090D6A270DA"},{"FileName":"\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png","MD5":"62E1C08B2B2C3557272655533F869F22"},{"FileName":"\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png","MD5":"70932A7A3C183E78638D0AC4AD4CAFB3"},{"FileName":"\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png","MD5":"AFC391DC83B20284F771D19EA1650C54"},{"FileName":"\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png","MD5":"8903D0852672499E6180D14881A58644"},{"FileName":"\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png","MD5":"E0A6F87C4AE981933379C24AA764A2A6"},{"FileName":"\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_light.png","MD5":"47BBB09E14EB9A66507689DED9A85F3F"},{"FileName":"\\drawable-xxhdpi-v4\\ic_camera.png","MD5":"5E94E98BD35D5BD6E2093FA0A7CE3A59"},{"FileName":"\\drawable-xxhdpi-v4\\ic_flash_auto.png","MD5":"EA25E02B66C1A8808E63F2F89BD2911B"},{"FileName":"\\drawable-xxhdpi-v4\\ic_flash_off.png","MD5":"622948C1414F7FF8A82D28F671D9CF25"},{"FileName":"\\drawable-xxhdpi-v4\\ic_flash_on.png","MD5":"C2D717F059D4013452F9FF6FA2B63661"},{"FileName":"\\drawable-xxhdpi-v4\\ic_photo.png","MD5":"FE25430C9BE0E4295FBE5DF9BB9E890F"},{"FileName":"\\drawable-xxhdpi-v4\\ic_repeat_black_24dp.png","MD5":"D4C5759A27735F3B947FC54DED786000"},{"FileName":"\\drawable-xxxhdpi\\ic_notification.png","MD5":"A37102BFBD0EA1AADC4760F73CD3D361"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","MD5":"17502A07E57AE76649D93CFCA11B252D"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","MD5":"C0210B4CCB563375F69FCBFC9AB6B64C"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","MD5":"FCA20792ADAE2E7B9BFCA87411C265D3"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","MD5":"5C9A24000FA7CF728F015145EFED540B"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","MD5":"0F917334A9A61C4B1ABC90DA826EAB4D"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","MD5":"0387785F14ACCAFB53A7580CA9CD6867"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png","MD5":"17C81B656CC64BC9EC63395BBE620391"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png","MD5":"6DFC6FE1883CFE59B1C3D4DB7E6C0B0D"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png","MD5":"B8D142CC5A8BBD408E4CD28E815AE330"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png","MD5":"0F7F2906A54BC4FF1A918EF246C18648"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png","MD5":"3CA20760CD08A9E44A0149255D98F7C1"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_star_black_16dp.png","MD5":"7D1C2B67C30D6AB2DEAAD540CEDAEC3D"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_star_black_36dp.png","MD5":"D3CA26EBC43D555E2CF198CE1CF1F896"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_star_black_48dp.png","MD5":"F288F58B123650B064BB087C559FCEA5"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_16dp.png","MD5":"CEA8B471780DEC9D7A7AC129FFE5DCB1"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_36dp.png","MD5":"70CD4FDA239560B7E2CDF1FB3B263871"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_48dp.png","MD5":"DE61F14E0A18D85799ECB40013E668D1"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","MD5":"30C67C94E31F2FD7F1BDDE008BB14D60"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","MD5":"E5907C2EC704632F3ABC7CD26B39A51F"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","MD5":"312036B293819CE5213764C1A62D7909"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","MD5":"12CF09B29514E798BF10805315D20276"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","MD5":"3F55DED65D5DB20DFF268B318987E9D1"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png","MD5":"2F8520EA751C6AA3D4C3CDC72C889EEA"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png","MD5":"1411F4A7C686C4F5C35A85497109120E"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png","MD5":"79122DF5B363A6BAC25774C42E91DF10"},{"FileName":"\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_light.png","MD5":"9A1556EFCEC862C4BA0CBDE79BEFFD70"},{"FileName":"\\drawable-xxxhdpi-v4\\ic_camera.png","MD5":"45BD0B7B57715FCB65E3A7265C319BF3"},{"FileName":"\\drawable-xxxhdpi-v4\\ic_flash_auto.png","MD5":"85CDA07BAA87110BE6F741B66D41CCF1"},{"FileName":"\\drawable-xxxhdpi-v4\\ic_flash_off.png","MD5":"75DA9ACAF93622E9C5510EDDE248D22A"},{"FileName":"\\drawable-xxxhdpi-v4\\ic_flash_on.png","MD5":"B2A2D2B00121E02EEEDCA589C1DE52CE"},{"FileName":"\\drawable-xxxhdpi-v4\\ic_photo.png","MD5":"1ED4309EABCDC2A98DEB08225ED558F9"},{"FileName":"\\drawable-xxxhdpi-v4\\ic_repeat_black_24dp.png","MD5":"7CC6263A7B5150AD91FAD042E3131780"},{"FileName":"\\layout\\abc_action_bar_title_item.xml","MD5":"3B022E1813926937DDF8C430965804C5"},{"FileName":"\\layout\\abc_action_bar_up_container.xml","MD5":"99374AF20F86FFC7518494FDA822F785"},{"FileName":"\\layout\\abc_action_menu_item_layout.xml","MD5":"B7498B660868CF76A854BADD05FA87FA"},{"FileName":"\\layout\\abc_action_menu_layout.xml","MD5":"FAEE0C1EDCA1D60A87CEBACDB60E0462"},{"FileName":"\\layout\\abc_action_mode_bar.xml","MD5":"7FE722BD59EC93A7F6F21AD955DDA35D"},{"FileName":"\\layout\\abc_action_mode_close_item_material.xml","MD5":"817C8A0C3D72C5DF61AB4B4B4EEC7B8E"},{"FileName":"\\layout\\abc_activity_chooser_view.xml","MD5":"97DF8A7F4919B2A773A134980D59128C"},{"FileName":"\\layout\\abc_activity_chooser_view_list_item.xml","MD5":"CF7A27F327B1E0572C6BDB38D8ADF4DA"},{"FileName":"\\layout\\abc_alert_dialog_button_bar_material.xml","MD5":"ED01482A614495CA463EC8ADCF0B1BE5"},{"FileName":"\\layout\\abc_alert_dialog_material.xml","MD5":"AB9DC9570E8DDC7AB589AF8FF8035613"},{"FileName":"\\layout\\abc_alert_dialog_title_material.xml","MD5":"BB915BBD4B9CE672C3F97BE40334BAD0"},{"FileName":"\\layout\\abc_cascading_menu_item_layout.xml","MD5":"50CCE9DD1CB3829625C97D0C1AFEFEE2"},{"FileName":"\\layout\\abc_dialog_title_material.xml","MD5":"0B3AF4B4106C82563EC5AB6D7C84A01B"},{"FileName":"\\layout\\abc_expanded_menu_layout.xml","MD5":"C69CE07A9689546969EB3E63FCA72B5C"},{"FileName":"\\layout\\abc_list_menu_item_checkbox.xml","MD5":"EA606867ED53AE516289DD37B805E31F"},{"FileName":"\\layout\\abc_list_menu_item_icon.xml","MD5":"B739259C3BEA733B9C43B4044207BA44"},{"FileName":"\\layout\\abc_list_menu_item_layout.xml","MD5":"9E79B393A70F22F14325FBF7E895B1BC"},{"FileName":"\\layout\\abc_list_menu_item_radio.xml","MD5":"3ACE17D59FB771CFBF0E56E28459365D"},{"FileName":"\\layout\\abc_popup_menu_header_item_layout.xml","MD5":"D52FCD18CD3ECC65A2757C817D29D384"},{"FileName":"\\layout\\abc_popup_menu_item_layout.xml","MD5":"626483D60BEE660095C262971DE1BBFC"},{"FileName":"\\layout\\abc_screen_content_include.xml","MD5":"0EBB39D710F3E5E8DEDDEE746E9C5C32"},{"FileName":"\\layout\\abc_screen_simple.xml","MD5":"73C9B850D5461F1769239D7CF3E49D45"},{"FileName":"\\layout\\abc_screen_simple_overlay_action_mode.xml","MD5":"CEB62ED2E5646E93D21162E931D19C0B"},{"FileName":"\\layout\\abc_screen_toolbar.xml","MD5":"B29DDD3D883A2859557C535F081A3D91"},{"FileName":"\\layout\\abc_search_dropdown_item_icons_2line.xml","MD5":"30924580EF00C8620C5DD5B09416EF1F"},{"FileName":"\\layout\\abc_search_view.xml","MD5":"72C41A11E4175F5117CEBC461EB4BEDE"},{"FileName":"\\layout\\abc_select_dialog_material.xml","MD5":"E643D3F0524BCD4DDA525CCBC3B138A4"},{"FileName":"\\layout\\abc_tooltip.xml","MD5":"CFDC80B874C08AD0E0024F2AE99E0D75"},{"FileName":"\\layout\\activity_dv_camera.xml","MD5":"DE8F848F779A3BF22D35D0F53B14FB18"},{"FileName":"\\layout\\activity_dv_esay_video_play.xml","MD5":"47FE157A972B9AFD36D2E36A4B911410"},{"FileName":"\\layout\\activity_dv_media_select.xml","MD5":"FF0070AA0424CC879CBEAB120ACFBD1C"},{"FileName":"\\layout\\activity_z_bar.xml","MD5":"10474E7C39F8277C1B01E633EBFA58B8"},{"FileName":"\\layout\\fragment_dv_gv_item_watch_media.xml","MD5":"99EE89AA2B2F95A4F88D5DE8234464D8"},{"FileName":"\\layout\\fragment_dv_media_list.xml","MD5":"7D88569CC4FB67F7F581898B90425B31"},{"FileName":"\\layout\\fragment_dv_watch_media.xml","MD5":"FE62B9082D8BB340EEDE7170401D8D43"},{"FileName":"\\layout\\item_dv_lv_folder.xml","MD5":"89C1A5ECE29FB91029BFCA731F424F01"},{"FileName":"\\layout\\item_dv_pager_img_sel.xml","MD5":"170A13EBCA35ED9D6D5D76633771CCAE"},{"FileName":"\\layout\\item_dv_rv_first_take_photo.xml","MD5":"9A73B7CD7DD026558807FA365DE1EEFC"},{"FileName":"\\layout\\item_dv_rv_media_list.xml","MD5":"C8C5A8DEE4FB1ABC53FB37F6710EFB8D"},{"FileName":"\\layout\\notification_action.xml","MD5":"AE90627A474BF56344C2CAE089F2F23E"},{"FileName":"\\layout\\notification_action_tombstone.xml","MD5":"4F71F95F6A937E4679F6640E40DAC348"},{"FileName":"\\layout\\notification_media_action.xml","MD5":"EB7D06DDE1B111D0476020C5081DEA92"},{"FileName":"\\layout\\notification_media_cancel_action.xml","MD5":"412BF14D256703BC495FD779FE2D52CF"},{"FileName":"\\layout\\notification_template_big_media.xml","MD5":"1EAE248847CB36BDCABD972BA7FD6519"},{"FileName":"\\layout\\notification_template_big_media_custom.xml","MD5":"DAE0769532DC894C5EF4E7E39F7735A4"},{"FileName":"\\layout\\notification_template_big_media_narrow.xml","MD5":"C6C3705D3F15A4831AC7241CD85E2750"},{"FileName":"\\layout\\notification_template_big_media_narrow_custom.xml","MD5":"3263D75D0DB82D95C66360F01626829C"},{"FileName":"\\layout\\notification_template_custom_big.xml","MD5":"050F0935AEBADB07BC30AFB4F9F733DA"},{"FileName":"\\layout\\notification_template_icon_group.xml","MD5":"0520ABC4E7E6DCD292917C17331466AF"},{"FileName":"\\layout\\notification_template_lines_media.xml","MD5":"CE9AC168FC9F02FACE5EDC53206E00E8"},{"FileName":"\\layout\\notification_template_media.xml","MD5":"ACFACD49B2E60E37D21EC027F4372DEF"},{"FileName":"\\layout\\notification_template_media_custom.xml","MD5":"B58875BB6884B6DE73F08318FB2BAA91"},{"FileName":"\\layout\\notification_template_part_chronometer.xml","MD5":"7D8333844EF27F721EAA0BD223F369E1"},{"FileName":"\\layout\\notification_template_part_time.xml","MD5":"4B724EBEDA8450D06F1DA3F9A0EF45EB"},{"FileName":"\\layout\\select_dialog_item_material.xml","MD5":"784691D38859AC33C8CD9BFEDCE58EC2"},{"FileName":"\\layout\\select_dialog_multichoice_material.xml","MD5":"A1EB8EFDAAEAC72FF553426F2F84FA35"},{"FileName":"\\layout\\select_dialog_singlechoice_material.xml","MD5":"ABD78FFA28028034AB54469F91BBEB24"},{"FileName":"\\layout\\support_simple_spinner_dropdown_item.xml","MD5":"1E0804F9A2873599BF77FC5555E93F89"},{"FileName":"\\layout\\view_dv_jcamera.xml","MD5":"ABE45D45DE56CD7FBCAA602EC29CD003"},{"FileName":"\\layout-v16\\notification_template_custom_big.xml","MD5":"6EEDBC7B0AB60A093E3CF730B2F7A651"},{"FileName":"\\layout-v21\\notification_action.xml","MD5":"B290605539CEF4515E128D1EC95473EF"},{"FileName":"\\layout-v21\\notification_action_tombstone.xml","MD5":"F74DCE2A7FC60AA7CEAC67C1A83EBDE7"},{"FileName":"\\layout-v21\\notification_template_custom_big.xml","MD5":"76FA650BD815D9F9AA5EF93F2A2EF6EA"},{"FileName":"\\layout-v21\\notification_template_icon_group.xml","MD5":"E2D44A531E48C5FD7E27A9042F0FB2FE"},{"FileName":"\\layout-v26\\abc_screen_toolbar.xml","MD5":"2BB749A735279C3E951B36F3A400A96E"},{"FileName":"\\layout-watch-v20\\abc_alert_dialog_button_bar_material.xml","MD5":"05CAE35E446708B2E1C1E4EDEC2F708C"},{"FileName":"\\layout-watch-v20\\abc_alert_dialog_title_material.xml","MD5":"A35B2451F7571D7864CCF7457B8564AB"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_album.png","MD5":"57FAA5D84363463BD468B5BBE66BA5E5"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_arrow_left_white_back.png","MD5":"8460C1376508999C66613194E25B7DCF"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_camera.png","MD5":"90E238397A0EBC4A29C283EA26A58B84"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_checked.png","MD5":"93040885CABBF1062F88C7D0AEA2CB94"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_default_image.png","MD5":"76E55CFC4DB19748C0E015BE3071CA9C"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_folder.png","MD5":"A4B19CF19DA43ADA8CB383FDB9F67116"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_folder_selected.png","MD5":"AF3102F0271914BF0BD842BD62711691"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_switch_camera.png","MD5":"254C688140035915C45046218203538B"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_take_photo.png","MD5":"971FE782D2DA2F9FB60E5B48B61CE5A5"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_unchecked.png","MD5":"DFE6CF57CFC54D687F47EE2EC104F032"},{"FileName":"\\mipmap-xhdpi-v4\\icon_dv_video_play.png","MD5":"F20D682DE0EDC72BBF4A7D264D8CBA67"},{"FileName":"\\mipmap-xxhdpi-v4\\custom_grid_scan_line.png","MD5":"1668B9BB35314E122EE0711753C2CFA7"},{"FileName":"\\mipmap-xxhdpi-v4\\custom_scan_line.png","MD5":"900946705E182BDAD0902A6620B518FA"},{"FileName":"\\mipmap-xxhdpi-v4\\qrcode_default_grid_scan_line.png","MD5":"1668B9BB35314E122EE0711753C2CFA7"},{"FileName":"\\mipmap-xxhdpi-v4\\qrcode_default_scan_line.png","MD5":"900946705E182BDAD0902A6620B518FA"},{"FileName":"\\values\\colors.xml","MD5":"F0AA6980010749E829BDD1C644E65E83"},{"FileName":"\\values\\strings.xml","MD5":"F189B2B47B01EA39921866160654A331"},{"FileName":"\\values\\styles.xml","MD5":"DEDA41B137769713ADF0E854D478E5A4"},{"FileName":"\\values\\values.xml","MD5":"F3B70A1D2ED737DE16DA8951ED48758D"},{"FileName":"\\values\\values_appcompat_v7_28_0_0_aar.xml","MD5":"E3C18952B75EAFA94F0C3367917782E3"},{"FileName":"\\values\\values_coordinatorlayout_28_0_0_aar.xml","MD5":"E548145A4E4A6E3640225C84EE982424"},{"FileName":"\\values\\values_qrcodecore.xml","MD5":"2A45C8A29857E88B574D2B2F7FF6A313"},{"FileName":"\\values\\values_recyclerview_v7_28_0_0_aar.xml","MD5":"2C78C6A5602CC320EC207B9784E5A9ED"},{"FileName":"\\values\\values_support_compat_28_0_0_aar.xml","MD5":"FEE1BE4A7B29747927ACD762768A16BA"},{"FileName":"\\values\\values_support_media_compat_28_0_0_aar.xml","MD5":"909AAFF7E521B0D5114231C84B725CF8"},{"FileName":"\\values\\values_zbar.xml","MD5":"E4B23FD564DB763C6936A67D179B01CF"},{"FileName":"\\values-af\\values-af_appcompat_v7_28_0_0_aar.xml","MD5":"8A96B6AD53B71D10475CE6533876A615"},{"FileName":"\\values-af\\values-af_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-am\\values-am_appcompat_v7_28_0_0_aar.xml","MD5":"09B1662CF3142A4DD77B944DA8D27D3E"},{"FileName":"\\values-am\\values-am_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ar\\values-ar_appcompat_v7_28_0_0_aar.xml","MD5":"284AEE90933314156FE83C70BAE18314"},{"FileName":"\\values-ar\\values-ar_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-as\\values-as_appcompat_v7_28_0_0_aar.xml","MD5":"D39D5E0ED701CF3DBCB7D61C8246A904"},{"FileName":"\\values-as\\values-as_support_compat_28_0_0_aar.xml","MD5":"BA8D8FA942040F0084401AC3FA82A048"},{"FileName":"\\values-az\\values-az_appcompat_v7_28_0_0_aar.xml","MD5":"99ABE27DD47E9A85345D112CFFDC6B3D"},{"FileName":"\\values-az\\values-az_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-b+sr+Latn\\values-b+sr+Latn_appcompat_v7_28_0_0_aar.xml","MD5":"D182D97064AB38CEE2F293DD82775374"},{"FileName":"\\values-b+sr+Latn\\values-b+sr+Latn_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-be\\values-be_appcompat_v7_28_0_0_aar.xml","MD5":"6BCA080079E8CCB8364AC78E1090B45F"},{"FileName":"\\values-be\\values-be_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-bg\\values-bg_appcompat_v7_28_0_0_aar.xml","MD5":"1C24BF04972444E19AC341E770F9FC98"},{"FileName":"\\values-bg\\values-bg_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-bn\\values-bn_appcompat_v7_28_0_0_aar.xml","MD5":"963615B052DAE3F68E2628F49F9B24BC"},{"FileName":"\\values-bn\\values-bn_support_compat_28_0_0_aar.xml","MD5":"BA8D8FA942040F0084401AC3FA82A048"},{"FileName":"\\values-bs\\values-bs_appcompat_v7_28_0_0_aar.xml","MD5":"E7DD73F032B4AE94DBADEA68B66D66D1"},{"FileName":"\\values-bs\\values-bs_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ca\\values-ca_appcompat_v7_28_0_0_aar.xml","MD5":"001AA48F3F3A16AFEFF8D4817B11CE31"},{"FileName":"\\values-ca\\values-ca_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-cs\\values-cs_appcompat_v7_28_0_0_aar.xml","MD5":"91DA8CB1FE8613386A9D65ACC41A208F"},{"FileName":"\\values-cs\\values-cs_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-da\\values-da_appcompat_v7_28_0_0_aar.xml","MD5":"C3C41DFC9F8A7F0A8DA382CF083A9E34"},{"FileName":"\\values-da\\values-da_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-de\\values-de_appcompat_v7_28_0_0_aar.xml","MD5":"F6CE874CA874B65AB640AC33B9630972"},{"FileName":"\\values-de\\values-de_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-el\\values-el_appcompat_v7_28_0_0_aar.xml","MD5":"1EDE61F14C79F1BFFD5F27A3218B1E05"},{"FileName":"\\values-el\\values-el_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-en-rAU\\values-en-rAU_appcompat_v7_28_0_0_aar.xml","MD5":"33A838114C90C157CFB97CBBEE5D5A5E"},{"FileName":"\\values-en-rAU\\values-en-rAU_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-en-rCA\\values-en-rCA_appcompat_v7_28_0_0_aar.xml","MD5":"33A838114C90C157CFB97CBBEE5D5A5E"},{"FileName":"\\values-en-rCA\\values-en-rCA_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-en-rGB\\values-en-rGB_appcompat_v7_28_0_0_aar.xml","MD5":"33A838114C90C157CFB97CBBEE5D5A5E"},{"FileName":"\\values-en-rGB\\values-en-rGB_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-en-rIN\\values-en-rIN_appcompat_v7_28_0_0_aar.xml","MD5":"33A838114C90C157CFB97CBBEE5D5A5E"},{"FileName":"\\values-en-rIN\\values-en-rIN_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-en-rXC\\values-en-rXC_appcompat_v7_28_0_0_aar.xml","MD5":"57A90D1272F39E5159E856CFC4F4A9B1"},{"FileName":"\\values-en-rXC\\values-en-rXC_support_compat_28_0_0_aar.xml","MD5":"0AAD3DE1662BC52931B38C4C049F9D2B"},{"FileName":"\\values-es\\values-es_appcompat_v7_28_0_0_aar.xml","MD5":"540EAEC4EB4283F08779ED5BBFC2D5B6"},{"FileName":"\\values-es\\values-es_support_compat_28_0_0_aar.xml","MD5":"E86B5ACF0D998193E087FB9E4AA0750B"},{"FileName":"\\values-es-rUS\\values-es-rUS_appcompat_v7_28_0_0_aar.xml","MD5":"041960F4B0455B16B23904C3576E1447"},{"FileName":"\\values-es-rUS\\values-es-rUS_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-et\\values-et_appcompat_v7_28_0_0_aar.xml","MD5":"5F3701C4C17FDF140B8F827B979D915C"},{"FileName":"\\values-et\\values-et_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-eu\\values-eu_appcompat_v7_28_0_0_aar.xml","MD5":"A24D6EECA3CCD8EAC80EB387B7FAC3EC"},{"FileName":"\\values-eu\\values-eu_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-fa\\values-fa_appcompat_v7_28_0_0_aar.xml","MD5":"2294BC41CF42BA93E1218E81ADA142A6"},{"FileName":"\\values-fa\\values-fa_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-fi\\values-fi_appcompat_v7_28_0_0_aar.xml","MD5":"6A8429D581C6991A48AD5CD88D1F3A24"},{"FileName":"\\values-fi\\values-fi_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-fr\\values-fr_appcompat_v7_28_0_0_aar.xml","MD5":"179C706B2B2FB2F9C1F8366EC72068A2"},{"FileName":"\\values-fr\\values-fr_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-fr-rCA\\values-fr-rCA_appcompat_v7_28_0_0_aar.xml","MD5":"9FEE857864AFABF97152322FC86BF9A3"},{"FileName":"\\values-fr-rCA\\values-fr-rCA_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-gl\\values-gl_appcompat_v7_28_0_0_aar.xml","MD5":"CD622B1A3457374CC038254E215251DC"},{"FileName":"\\values-gl\\values-gl_support_compat_28_0_0_aar.xml","MD5":"8818F58F4481DAE26EC970A7ECAFA6C5"},{"FileName":"\\values-gu\\values-gu_appcompat_v7_28_0_0_aar.xml","MD5":"38E1A46A79A9FE50393E3AAD4438E1FA"},{"FileName":"\\values-gu\\values-gu_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-h720dp-v13\\values-h720dp-v13_appcompat_v7_28_0_0_aar.xml","MD5":"C518F0EAB03D706646DF660BEEB920CF"},{"FileName":"\\values-hdpi-v4\\values-hdpi-v4_appcompat_v7_28_0_0_aar.xml","MD5":"95360FB3B373E2F955D061BBE5183912"},{"FileName":"\\values-hi\\values-hi_appcompat_v7_28_0_0_aar.xml","MD5":"C0A1E95731724A9BED19AAAD59853372"},{"FileName":"\\values-hi\\values-hi_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-hr\\values-hr_appcompat_v7_28_0_0_aar.xml","MD5":"75C956F4EAEB35650E8ACAF002638342"},{"FileName":"\\values-hr\\values-hr_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-hu\\values-hu_appcompat_v7_28_0_0_aar.xml","MD5":"F7B4E1B095E80F574AA760797F50CED5"},{"FileName":"\\values-hu\\values-hu_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-hy\\values-hy_appcompat_v7_28_0_0_aar.xml","MD5":"5016A1DC31E6E5457159462671F83037"},{"FileName":"\\values-hy\\values-hy_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-in\\values-in_appcompat_v7_28_0_0_aar.xml","MD5":"F58CCD14CCAB57AA1C870D726B7F6CA9"},{"FileName":"\\values-in\\values-in_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-is\\values-is_appcompat_v7_28_0_0_aar.xml","MD5":"EA6391F715F17374B6717185186C20D9"},{"FileName":"\\values-is\\values-is_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-it\\values-it_appcompat_v7_28_0_0_aar.xml","MD5":"78EB05F7FD6F62A9F450E788D3F22A4B"},{"FileName":"\\values-it\\values-it_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-iw\\values-iw_appcompat_v7_28_0_0_aar.xml","MD5":"E9D45D03B96798CB97AD357F936EFCCB"},{"FileName":"\\values-iw\\values-iw_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ja\\values-ja_appcompat_v7_28_0_0_aar.xml","MD5":"56B7FF025F3263A05D18EEB39440A515"},{"FileName":"\\values-ja\\values-ja_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ka\\values-ka_appcompat_v7_28_0_0_aar.xml","MD5":"748D22794229FB78EEC11D8EB05F36BD"},{"FileName":"\\values-ka\\values-ka_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-kk\\values-kk_appcompat_v7_28_0_0_aar.xml","MD5":"E1154308275DE0597D9143498C0F76DB"},{"FileName":"\\values-kk\\values-kk_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-km\\values-km_appcompat_v7_28_0_0_aar.xml","MD5":"FFFE1F7EF863AD9CB1BB409759C46077"},{"FileName":"\\values-km\\values-km_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-kn\\values-kn_appcompat_v7_28_0_0_aar.xml","MD5":"37B107E4B8447B19AA24C09C982DF309"},{"FileName":"\\values-kn\\values-kn_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ko\\values-ko_appcompat_v7_28_0_0_aar.xml","MD5":"C6A9FCD71DCFBC379A974C69E3F4CB0D"},{"FileName":"\\values-ko\\values-ko_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ky\\values-ky_appcompat_v7_28_0_0_aar.xml","MD5":"D4C6C1714C535FD895FAF92614DC1903"},{"FileName":"\\values-ky\\values-ky_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-land\\values-land_appcompat_v7_28_0_0_aar.xml","MD5":"DC367DFCD06475EF4BBC8C5A43C89A5E"},{"FileName":"\\values-large-v4\\values-large-v4_appcompat_v7_28_0_0_aar.xml","MD5":"3BD54B52DF49585C13BE56AB9310EFDD"},{"FileName":"\\values-ldltr-v21\\values-ldltr-v21_appcompat_v7_28_0_0_aar.xml","MD5":"4BB116916EA31EEC6FE245869B742323"},{"FileName":"\\values-lo\\values-lo_appcompat_v7_28_0_0_aar.xml","MD5":"3E0025831112485E5CDFDD632864CC8E"},{"FileName":"\\values-lo\\values-lo_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-lt\\values-lt_appcompat_v7_28_0_0_aar.xml","MD5":"B15D6C66C59AB48F7EF4C44FDF1CD15C"},{"FileName":"\\values-lt\\values-lt_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-lv\\values-lv_appcompat_v7_28_0_0_aar.xml","MD5":"3A17D92FE6934EE0454A0B3245625150"},{"FileName":"\\values-lv\\values-lv_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-mk\\values-mk_appcompat_v7_28_0_0_aar.xml","MD5":"402A48A97A34A8B06B342908E4317C8D"},{"FileName":"\\values-mk\\values-mk_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ml\\values-ml_appcompat_v7_28_0_0_aar.xml","MD5":"594286AF5511DA802D78436535775BA1"},{"FileName":"\\values-ml\\values-ml_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-mn\\values-mn_appcompat_v7_28_0_0_aar.xml","MD5":"29080E97CF8012C2D8384DBD740295FA"},{"FileName":"\\values-mn\\values-mn_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-mr\\values-mr_appcompat_v7_28_0_0_aar.xml","MD5":"8478A03431D094A375CA5CCA6DA8E472"},{"FileName":"\\values-mr\\values-mr_support_compat_28_0_0_aar.xml","MD5":"FAFB96720B10DC222AA1E8A643CA0E03"},{"FileName":"\\values-ms\\values-ms_appcompat_v7_28_0_0_aar.xml","MD5":"B0D128152B156CE3FD0F825C52EC7914"},{"FileName":"\\values-ms\\values-ms_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-my\\values-my_appcompat_v7_28_0_0_aar.xml","MD5":"21C15CB669563AB944D976972F64DD0A"},{"FileName":"\\values-my\\values-my_support_compat_28_0_0_aar.xml","MD5":"3749CA2A5EA839B6DEE72E7B0A82D783"},{"FileName":"\\values-nb\\values-nb_appcompat_v7_28_0_0_aar.xml","MD5":"6055429D1E7E086681355E0C749E556A"},{"FileName":"\\values-nb\\values-nb_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ne\\values-ne_appcompat_v7_28_0_0_aar.xml","MD5":"D8E33DD42AC5820C2F8F9C86870BBC0A"},{"FileName":"\\values-ne\\values-ne_support_compat_28_0_0_aar.xml","MD5":"FAFB96720B10DC222AA1E8A643CA0E03"},{"FileName":"\\values-night-v8\\values-night-v8_appcompat_v7_28_0_0_aar.xml","MD5":"5F3053CE030A68724DFDC034A794695C"},{"FileName":"\\values-nl\\values-nl_appcompat_v7_28_0_0_aar.xml","MD5":"D734D70482CBD6416A9C7A087AD54F9D"},{"FileName":"\\values-nl\\values-nl_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-or\\values-or_appcompat_v7_28_0_0_aar.xml","MD5":"A48BB1D7A8C842EC1F062D1DC681D030"},{"FileName":"\\values-or\\values-or_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-pa\\values-pa_appcompat_v7_28_0_0_aar.xml","MD5":"8362CB75A2A846510FCB3D66311E7ABD"},{"FileName":"\\values-pa\\values-pa_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-pl\\values-pl_appcompat_v7_28_0_0_aar.xml","MD5":"09A983E4ECE01666FBB39ABD5C525428"},{"FileName":"\\values-pl\\values-pl_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-port\\values-port_appcompat_v7_28_0_0_aar.xml","MD5":"BFCE5014F3AF863450510F1F60F9CC69"},{"FileName":"\\values-pt\\values-pt_appcompat_v7_28_0_0_aar.xml","MD5":"AC9EA044A6FFE7BA066E59F754C7F5BE"},{"FileName":"\\values-pt\\values-pt_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-pt-rBR\\values-pt-rBR_appcompat_v7_28_0_0_aar.xml","MD5":"AC9EA044A6FFE7BA066E59F754C7F5BE"},{"FileName":"\\values-pt-rBR\\values-pt-rBR_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-pt-rPT\\values-pt-rPT_appcompat_v7_28_0_0_aar.xml","MD5":"82CB0AE250E13F156DE53C2C6C8777C9"},{"FileName":"\\values-pt-rPT\\values-pt-rPT_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ro\\values-ro_appcompat_v7_28_0_0_aar.xml","MD5":"136F21F88711E2771B710CEC5E90DD85"},{"FileName":"\\values-ro\\values-ro_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ru\\values-ru_appcompat_v7_28_0_0_aar.xml","MD5":"FA43AA9C75A5B20ED9014BD2307AF1FE"},{"FileName":"\\values-ru\\values-ru_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-si\\values-si_appcompat_v7_28_0_0_aar.xml","MD5":"534051E22E5DF4C7C7BD669A6E9B624F"},{"FileName":"\\values-si\\values-si_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-sk\\values-sk_appcompat_v7_28_0_0_aar.xml","MD5":"149B9567172A3063DCFFC8ED197599D3"},{"FileName":"\\values-sk\\values-sk_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-sl\\values-sl_appcompat_v7_28_0_0_aar.xml","MD5":"E4592F45E84A5F99501506AEB25DAB0A"},{"FileName":"\\values-sl\\values-sl_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-sq\\values-sq_appcompat_v7_28_0_0_aar.xml","MD5":"A9B6B4C259305185B415C2A84E6D985D"},{"FileName":"\\values-sq\\values-sq_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-sr\\values-sr_appcompat_v7_28_0_0_aar.xml","MD5":"885AEBCF32E86EDAC96CB148347CACEC"},{"FileName":"\\values-sr\\values-sr_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-sv\\values-sv_appcompat_v7_28_0_0_aar.xml","MD5":"ECB8D0996F30F89DAEED60EB39A38FA2"},{"FileName":"\\values-sv\\values-sv_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-sw\\values-sw_appcompat_v7_28_0_0_aar.xml","MD5":"14D31D2FE40725E6187403033E46BF67"},{"FileName":"\\values-sw\\values-sw_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-sw600dp-v13\\values-sw600dp-v13_appcompat_v7_28_0_0_aar.xml","MD5":"421FD9AF804C0AAF856D32314AB50BFE"},{"FileName":"\\values-ta\\values-ta_appcompat_v7_28_0_0_aar.xml","MD5":"46B38291342E4B517E611AB6DA82FB7D"},{"FileName":"\\values-ta\\values-ta_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-te\\values-te_appcompat_v7_28_0_0_aar.xml","MD5":"DC45D4A46309B05FB502AF0D42160BD4"},{"FileName":"\\values-te\\values-te_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-th\\values-th_appcompat_v7_28_0_0_aar.xml","MD5":"1509157D5094FDAC196198FAA0555C02"},{"FileName":"\\values-th\\values-th_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-tl\\values-tl_appcompat_v7_28_0_0_aar.xml","MD5":"DBC11F6DB1A6B46E28765BA299B37E49"},{"FileName":"\\values-tl\\values-tl_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-tr\\values-tr_appcompat_v7_28_0_0_aar.xml","MD5":"076D3C4EDBB10AC059A52CEE47DCBCA2"},{"FileName":"\\values-tr\\values-tr_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-uk\\values-uk_appcompat_v7_28_0_0_aar.xml","MD5":"3E19297222F7E62AEAB57040D0D69019"},{"FileName":"\\values-uk\\values-uk_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-ur\\values-ur_appcompat_v7_28_0_0_aar.xml","MD5":"2BB5687DF395C8032B5790D1092C7385"},{"FileName":"\\values-ur\\values-ur_support_compat_28_0_0_aar.xml","MD5":"E86B5ACF0D998193E087FB9E4AA0750B"},{"FileName":"\\values-uz\\values-uz_appcompat_v7_28_0_0_aar.xml","MD5":"C794F32000A7887B4C32076A6C75E7DE"},{"FileName":"\\values-uz\\values-uz_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-v16\\values-v16_appcompat_v7_28_0_0_aar.xml","MD5":"87878D2FBB9344FF0195D708BC1C4B79"},{"FileName":"\\values-v16\\values-v16_support_compat_28_0_0_aar.xml","MD5":"9C27BBEA90065BE9374D84E65739954A"},{"FileName":"\\values-v17\\values-v17_appcompat_v7_28_0_0_aar.xml","MD5":"D13484569ADFC2901DC744AABA407907"},{"FileName":"\\values-v18\\values-v18_appcompat_v7_28_0_0_aar.xml","MD5":"51DD9315A5636040CD276C04275ADB86"},{"FileName":"\\values-v21\\styles.xml","MD5":"925883BC77C658801F64AAC2C9792E75"},{"FileName":"\\values-v21\\values-v21_appcompat_v7_28_0_0_aar.xml","MD5":"C64C3B185127B2BC3187470899195540"},{"FileName":"\\values-v21\\values-v21_support_compat_28_0_0_aar.xml","MD5":"B66CFBAC0DFD08994AFD701CBAB05130"},{"FileName":"\\values-v21\\values-v21_support_media_compat_28_0_0_aar.xml","MD5":"2951DE87120ED1E58F7341C0D15F9AF5"},{"FileName":"\\values-v22\\values-v22_appcompat_v7_28_0_0_aar.xml","MD5":"EFC4D7444AEEC9FFC7D5A18328E9E9C0"},{"FileName":"\\values-v23\\values-v23_appcompat_v7_28_0_0_aar.xml","MD5":"E7929F3B482975397FEC5493E38E3D22"},{"FileName":"\\values-v24\\values-v24_appcompat_v7_28_0_0_aar.xml","MD5":"73722485BD832BB75E47B423294DE946"},{"FileName":"\\values-v24\\values-v24_support_media_compat_28_0_0_aar.xml","MD5":"E2F9416BFA13D513095243874AC21E1B"},{"FileName":"\\values-v25\\values-v25_appcompat_v7_28_0_0_aar.xml","MD5":"B30B6713309EA252E30ABA30461C7A02"},{"FileName":"\\values-v26\\values-v26_appcompat_v7_28_0_0_aar.xml","MD5":"87D08EE3BD89BBF0DE6AB019F5D63750"},{"FileName":"\\values-v28\\values-v28_appcompat_v7_28_0_0_aar.xml","MD5":"62FABCE78F158BEF7EB0CBAFA91D827E"},{"FileName":"\\values-vi\\values-vi_appcompat_v7_28_0_0_aar.xml","MD5":"2F8D523CB7EB73B4C28D6E7237B113B8"},{"FileName":"\\values-vi\\values-vi_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-w820dp-v13\\values-w820dp-v13.xml","MD5":"10C4011BBFF2980AE8EC63B5FC74E209"},{"FileName":"\\values-watch-v20\\values-watch-v20_appcompat_v7_28_0_0_aar.xml","MD5":"887E933C0FE338DFAD0CEE41FE401B05"},{"FileName":"\\values-watch-v21\\values-watch-v21_appcompat_v7_28_0_0_aar.xml","MD5":"F5EBF28B49429B57B900E507D3E1460F"},{"FileName":"\\values-xlarge-v4\\values-xlarge-v4_appcompat_v7_28_0_0_aar.xml","MD5":"7FBE3CF69A7483066DF730C9714F8AA5"},{"FileName":"\\values-zh-rCN\\values-zh-rCN_appcompat_v7_28_0_0_aar.xml","MD5":"3FC82D24C61A91FA850E5E6F941F6E2B"},{"FileName":"\\values-zh-rCN\\values-zh-rCN_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-zh-rHK\\values-zh-rHK_appcompat_v7_28_0_0_aar.xml","MD5":"AAA2FF6DEA6321C494F1FB38C7EEE5DF"},{"FileName":"\\values-zh-rHK\\values-zh-rHK_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-zh-rTW\\values-zh-rTW_appcompat_v7_28_0_0_aar.xml","MD5":"6DE4D1095B70A94495DA1F531905B5CB"},{"FileName":"\\values-zh-rTW\\values-zh-rTW_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\values-zu\\values-zu_appcompat_v7_28_0_0_aar.xml","MD5":"627A5AC6C0A5ADF8180D2B5EEA2D2613"},{"FileName":"\\values-zu\\values-zu_support_compat_28_0_0_aar.xml","MD5":"6B9BA346BCBC3C134117CF30DE3A6386"},{"FileName":"\\xml\\provider_paths.xml","MD5":"81045442287354D508C9D8530C7BC96E"}] |
{"name":"Quidsi","permalink":"quidsi","crunchbase_url":"http://www.crunchbase.com/company/quidsi","homepage_url":"http://www.quidsi.com/","blog_url":"","blog_feed_url":"","twitter_username":"","category_code":"ecommerce","number_of_employees":null,"founded_year":null,"founded_month":null,"founded_day":null,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"ecommerce, diapers, drugstore","alias_list":"","email_address":"","phone_number":"","description":"e-commerce","created_at":"Thu Jun 03 17:35:40 UTC 2010","updated_at":"Mon Feb 20 21:40:34 UTC 2012","overview":"<p>Quidsi is one of the world’s fastest growing e-commerce companies and parent of <a href=\"http://www.crunchbase.com/product/diapers-com\" title=\"Diapers.com\">Diapers.com</a> (baby care), <a href=\"http://www.crunchbase.com/product/soap-com\" title=\"Soap.com\">Soap.com</a> (household essentials) and <a href=\"http://www.crunchbase.com/product/beautybar-com\" title=\"BeautyBar.com\">BeautyBar.com</a> (prestige beauty). The company’s mission is to make life easier by creating a new type of e-commerce experience, delivering in 1-2 days, and providing incredible customer service. Quidsi is redefining e-commerce by combining the focus and customer connection of a specialty store with the scale, efficiency, choice, value and reliability of a massive global retailer.</p>","image":{"available_sizes":[[[150,88],"assets/images/resized/0009/4505/94505v2-max-150x150.png"],[[250,147],"assets/images/resized/0009/4505/94505v2-max-250x250.png"],[[450,265],"assets/images/resized/0009/4505/94505v2-max-450x450.png"]],"attribution":null},"products":[{"name":"Diapers.com","permalink":"diapers-com","image":{"available_sizes":[[[150,52],"assets/images/resized/0008/9437/89437v1-max-150x150.png"],[[224,79],"assets/images/resized/0008/9437/89437v1-max-250x250.png"],[[224,79],"assets/images/resized/0008/9437/89437v1-max-450x450.png"]],"attribution":null}},{"name":"Soap.com","permalink":"soap-com","image":{"available_sizes":[[[150,30],"assets/images/resized/0008/9440/89440v4-max-150x150.png"],[[250,51],"assets/images/resized/0008/9440/89440v4-max-250x250.png"],[[450,92],"assets/images/resized/0008/9440/89440v4-max-450x450.png"]],"attribution":null}},{"name":"BeautyBar.com","permalink":"beautybar-com","image":null},{"name":"Wag.com","permalink":"wag-com","image":{"available_sizes":[[[150,75],"assets/images/resized/0014/2625/142625v1-max-150x150.jpg"],[[202,101],"assets/images/resized/0014/2625/142625v1-max-250x250.jpg"],[[202,101],"assets/images/resized/0014/2625/142625v1-max-450x450.jpg"]],"attribution":null}},{"name":"Yoyo","permalink":"yoyo-com","image":{"available_sizes":[[[120,120],"assets/images/resized/0015/6889/156889v2-max-150x150.png"],[[120,120],"assets/images/resized/0015/6889/156889v2-max-250x250.png"],[[120,120],"assets/images/resized/0015/6889/156889v2-max-450x450.png"]],"attribution":null}},{"name":"casa.com","permalink":"casa-com","image":null}],"relationships":[{"is_past":false,"title":"Product Manager","person":{"first_name":"Andres","last_name":"Vidal","permalink":"andres-vidal","image":null}},{"is_past":true,"title":"Co-founder, Chairman & CEO","person":{"first_name":"Marc","last_name":"Lore","permalink":"marc-lore","image":null}},{"is_past":true,"title":"Vice President & CIO","person":{"first_name":"Eugene","last_name":"Hertz","permalink":"eugene-hertz","image":null}},{"is_past":true,"title":"Co-founder, Chief Operating Officer and General Counsel","person":{"first_name":"Vinit","last_name":"Bharara","permalink":"vinit-bharara","image":null}},{"is_past":true,"title":"Vice President, Special Operations","person":{"first_name":"Nate","last_name":"Faust","permalink":"nate-faust","image":null}},{"is_past":true,"title":"Vice President, Marketing","person":{"first_name":"Christina","last_name":"Carbonell","permalink":"christina-carbonell","image":null}},{"is_past":true,"title":"Vice President, eCommerce Solutions","person":{"first_name":"Josh","last_name":"Himwich","permalink":"josh-himwich","image":null}},{"is_past":true,"title":"VP of Marketing","person":{"first_name":"Christina","last_name":"Carbonell","permalink":"christina-carbonell","image":null}},{"is_past":true,"title":"EVP, Ecommerce","person":{"first_name":"Lisa","last_name":"Kennedy","permalink":"lisa-kennedy","image":null}},{"is_past":true,"title":"Executive Vice President, Operations","person":{"first_name":"Scott","last_name":"Hilton","permalink":"scott-hilton","image":null}},{"is_past":true,"title":"Director","person":{"first_name":"Jeremy","last_name":"Levine","permalink":"jeremy-levine","image":{"available_sizes":[[[150,150],"assets/images/resized/0012/6092/126092v1-max-150x150.jpg"],[[150,150],"assets/images/resized/0012/6092/126092v1-max-250x250.jpg"],[[150,150],"assets/images/resized/0012/6092/126092v1-max-450x450.jpg"]],"attribution":""}}},{"is_past":true,"title":"Director","person":{"first_name":"William","last_name":"Meurer","permalink":"william-meurer","image":null}},{"is_past":true,"title":"Senior Vice President, Human Resources","person":{"first_name":"John","last_name":"K Anderson","permalink":"john-k-anderson","image":null}},{"is_past":true,"title":"Vice President, Finance & Accounting","person":{"first_name":"David","last_name":"Licata","permalink":"david-licata","image":null}},{"is_past":true,"title":"Director","person":{"first_name":"Leonard","last_name":"Lodish","permalink":"leonard-lodish","image":null}},{"is_past":true,"title":"Director","person":{"first_name":"Nicholas","last_name":"Negroponte","permalink":"nicholas-negroponte","image":{"available_sizes":[[[121,150],"assets/images/resized/0002/6157/26157v1-max-150x150.jpg"],[[203,250],"assets/images/resized/0002/6157/26157v1-max-250x250.jpg"],[[260,320],"assets/images/resized/0002/6157/26157v1-max-450x450.jpg"]],"attribution":""}}},{"is_past":true,"title":"Vice President, Supply Chain","person":{"first_name":"David","last_name":"Hung","permalink":"david-hung","image":null}}],"competitions":[{"competitor":{"name":"Drugstore.com","permalink":"drugstore-com","image":{"available_sizes":[[[150,43],"assets/images/resized/0003/5772/35772v1-max-150x150.png"],[[250,71],"assets/images/resized/0003/5772/35772v1-max-250x250.png"],[[261,75],"assets/images/resized/0003/5772/35772v1-max-450x450.png"]],"attribution":null}}}],"providerships":[{"title":"PR","is_past":false,"provider":{"name":"LaunchSquad","permalink":"launchsquad","image":{"available_sizes":[[[150,20],"assets/images/resized/0001/4856/14856v1-max-150x150.png"],[[244,34],"assets/images/resized/0001/4856/14856v1-max-250x250.png"],[[244,34],"assets/images/resized/0001/4856/14856v1-max-450x450.png"]],"attribution":null}}}],"total_money_raised":"$78.5M","funding_rounds":[{"round_code":"a","source_url":"","source_description":"","raised_amount":4000000,"raised_currency_code":"USD","funded_year":2006,"funded_month":9,"funded_day":1,"investments":[{"company":null,"financial_org":null,"person":{"first_name":"Leonard","last_name":"Lodish","permalink":"leonard-lodish","image":null}},{"company":null,"financial_org":null,"person":{"first_name":"Nicholas","last_name":"Negroponte","permalink":"nicholas-negroponte","image":{"available_sizes":[[[121,150],"assets/images/resized/0002/6157/26157v1-max-150x150.jpg"],[[203,250],"assets/images/resized/0002/6157/26157v1-max-250x250.jpg"],[[260,320],"assets/images/resized/0002/6157/26157v1-max-450x450.jpg"]],"attribution":""}}},{"company":null,"financial_org":{"name":"BEV Capital","permalink":"bev-capital","image":{"available_sizes":[[[150,37],"assets/images/resized/0000/3535/3535v1-max-150x150.png"],[[250,62],"assets/images/resized/0000/3535/3535v1-max-250x250.png"],[[313,78],"assets/images/resized/0000/3535/3535v1-max-450x450.png"]],"attribution":null}},"person":null},{"company":null,"financial_org":{"name":"MentorTech Ventures","permalink":"mentortech-ventures","image":{"available_sizes":[[[150,22],"assets/images/resized/0001/7884/17884v5-max-150x150.png"],[[250,37],"assets/images/resized/0001/7884/17884v5-max-250x250.png"],[[318,48],"assets/images/resized/0001/7884/17884v5-max-450x450.png"]],"attribution":null}},"person":null}]},{"round_code":"b","source_url":"http://www.thealarmclock.com/mt/archives/2007/12/diaperscom_clea.html","source_description":"thealarmclock.com","raised_amount":7000000,"raised_currency_code":"USD","funded_year":2007,"funded_month":12,"funded_day":1,"investments":[{"company":null,"financial_org":{"name":"Bessemer Venture Partners","permalink":"bessemer-venture-partners","image":{"available_sizes":[[[150,39],"assets/images/resized/0001/3853/13853v1-max-150x150.png"],[[250,65],"assets/images/resized/0001/3853/13853v1-max-250x250.png"],[[284,74],"assets/images/resized/0001/3853/13853v1-max-450x450.png"]],"attribution":null}},"person":null},{"company":null,"financial_org":{"name":"BEV Capital","permalink":"bev-capital","image":{"available_sizes":[[[150,37],"assets/images/resized/0000/3535/3535v1-max-150x150.png"],[[250,62],"assets/images/resized/0000/3535/3535v1-max-250x250.png"],[[313,78],"assets/images/resized/0000/3535/3535v1-max-450x450.png"]],"attribution":null}},"person":null}]},{"round_code":"c","source_url":"","source_description":"TechCrunch","raised_amount":12500000,"raised_currency_code":"USD","funded_year":2008,"funded_month":1,"funded_day":1,"investments":[{"company":null,"financial_org":{"name":"Accel Partners","permalink":"accel-partners","image":{"available_sizes":[[[150,54],"assets/images/resized/0001/0604/10604v3-max-150x150.jpg"],[[250,90],"assets/images/resized/0001/0604/10604v3-max-250x250.jpg"],[[450,162],"assets/images/resized/0001/0604/10604v3-max-450x450.jpg"]],"attribution":null}},"person":null}]},{"round_code":"d","source_url":"","source_description":"TechCrunch","raised_amount":5000000,"raised_currency_code":"USD","funded_year":2009,"funded_month":6,"funded_day":1,"investments":[]},{"round_code":"e","source_url":"http://www.ventureloop.com/ventureloop/vb_article.php?natId=176","source_description":"Diapers.com Cleans Up with $30 Million Round of Funding","raised_amount":30000000,"raised_currency_code":"USD","funded_year":2009,"funded_month":10,"funded_day":3,"investments":[{"company":null,"financial_org":{"name":"Accel Partners","permalink":"accel-partners","image":{"available_sizes":[[[150,54],"assets/images/resized/0001/0604/10604v3-max-150x150.jpg"],[[250,90],"assets/images/resized/0001/0604/10604v3-max-250x250.jpg"],[[450,162],"assets/images/resized/0001/0604/10604v3-max-450x450.jpg"]],"attribution":null}},"person":null},{"company":null,"financial_org":{"name":"New Enterprise Associates","permalink":"new-enterprise-associates","image":{"available_sizes":[[[150,110],"assets/images/resized/0001/5083/15083v3-max-150x150.png"],[[150,110],"assets/images/resized/0001/5083/15083v3-max-250x250.png"],[[150,110],"assets/images/resized/0001/5083/15083v3-max-450x450.png"]],"attribution":null}},"person":null},{"company":null,"financial_org":{"name":"Bessemer Venture Partners","permalink":"bessemer-venture-partners","image":{"available_sizes":[[[150,39],"assets/images/resized/0001/3853/13853v1-max-150x150.png"],[[250,65],"assets/images/resized/0001/3853/13853v1-max-250x250.png"],[[284,74],"assets/images/resized/0001/3853/13853v1-max-450x450.png"]],"attribution":null}},"person":null},{"company":null,"financial_org":{"name":"MentorTech Ventures","permalink":"mentortech-ventures","image":{"available_sizes":[[[150,22],"assets/images/resized/0001/7884/17884v5-max-150x150.png"],[[250,37],"assets/images/resized/0001/7884/17884v5-max-250x250.png"],[[318,48],"assets/images/resized/0001/7884/17884v5-max-450x450.png"]],"attribution":null}},"person":null}]},{"round_code":"debt_round","source_url":"","source_description":"TechCrunch","raised_amount":20000000,"raised_currency_code":"USD","funded_year":2010,"funded_month":4,"funded_day":20,"investments":[{"company":null,"financial_org":{"name":"Pinnacle Ventures","permalink":"pinnacle-ventures","image":{"available_sizes":[[[150,62],"assets/images/resized/0001/0788/10788v1-max-150x150.png"],[[226,94],"assets/images/resized/0001/0788/10788v1-max-250x250.png"],[[226,94],"assets/images/resized/0001/0788/10788v1-max-450x450.png"]],"attribution":null}},"person":null},{"company":null,"financial_org":{"name":"Accel Partners","permalink":"accel-partners","image":{"available_sizes":[[[150,54],"assets/images/resized/0001/0604/10604v3-max-150x150.jpg"],[[250,90],"assets/images/resized/0001/0604/10604v3-max-250x250.jpg"],[[450,162],"assets/images/resized/0001/0604/10604v3-max-450x450.jpg"]],"attribution":null}},"person":null},{"company":null,"financial_org":{"name":"Bessemer Venture Partners","permalink":"bessemer-venture-partners","image":{"available_sizes":[[[150,39],"assets/images/resized/0001/3853/13853v1-max-150x150.png"],[[250,65],"assets/images/resized/0001/3853/13853v1-max-250x250.png"],[[284,74],"assets/images/resized/0001/3853/13853v1-max-450x450.png"]],"attribution":null}},"person":null},{"company":null,"financial_org":{"name":"MentorTech Ventures","permalink":"mentortech-ventures","image":{"available_sizes":[[[150,22],"assets/images/resized/0001/7884/17884v5-max-150x150.png"],[[250,37],"assets/images/resized/0001/7884/17884v5-max-250x250.png"],[[318,48],"assets/images/resized/0001/7884/17884v5-max-450x450.png"]],"attribution":null}},"person":null},{"company":null,"financial_org":{"name":"BEV Capital","permalink":"bev-capital","image":{"available_sizes":[[[150,37],"assets/images/resized/0000/3535/3535v1-max-150x150.png"],[[250,62],"assets/images/resized/0000/3535/3535v1-max-250x250.png"],[[313,78],"assets/images/resized/0000/3535/3535v1-max-450x450.png"]],"attribution":null}},"person":null},{"company":null,"financial_org":{"name":"New Enterprise Associates","permalink":"new-enterprise-associates","image":{"available_sizes":[[[150,110],"assets/images/resized/0001/5083/15083v3-max-150x150.png"],[[150,110],"assets/images/resized/0001/5083/15083v3-max-250x250.png"],[[150,110],"assets/images/resized/0001/5083/15083v3-max-450x450.png"]],"attribution":null}},"person":null}]}],"investments":[],"acquisition":{"price_amount":545000000,"price_currency_code":"USD","term_code":"cash_and_stock","source_url":"http://techcrunch.com/2010/11/08/confirmed-amazon-spends-545-million-on-diapers-com-parent-quidsi","source_description":"Confirmed: Amazon Spends $545 Million On Diapers.com Parent Quidsi","acquired_year":2010,"acquired_month":11,"acquired_day":8,"acquiring_company":{"name":"Amazon","permalink":"amazon","image":{"available_sizes":[[[150,66],"assets/images/resized/0000/3898/3898v1-max-150x150.jpg"],[[200,89],"assets/images/resized/0000/3898/3898v1-max-250x250.jpg"],[[200,89],"assets/images/resized/0000/3898/3898v1-max-450x450.jpg"]],"attribution":null}}},"acquisitions":[],"offices":[{"description":"Quidsi HQ","address1":"10 Exchange Pl., 25th Fl.","address2":"","zip_code":"07302","city":"Jersey City","state_code":"NJ","country_code":"USA","latitude":null,"longitude":null}],"milestones":[{"description":"Diapers.com Parent Company Launches Soap.com","stoned_year":2010,"stoned_month":7,"stoned_day":15,"source_url":"http://www.marketwire.com/press-release/Diaperscom-Parent-Company-Launches-Soapcom-1290534.htm","source_text":null,"source_description":"Diapers.com Parent Company Launches Soap.com","stoneable_type":"Company","stoned_value":null,"stoned_value_type":null,"stoned_acquirer":null,"stoneable":{"name":"Quidsi","permalink":"quidsi"}},{"description":"Quidsi Launches BeautyBar.com, Prestige Beauty Site","stoned_year":2010,"stoned_month":11,"stoned_day":1,"source_url":"http://www.bloomberg.com/news/2010-11-01/quidsi-opens-third-website-to-sell-women-s-beauty-products.html","source_text":null,"source_description":"Quidsi Opens Third Website to Sell Women’s Beauty Products","stoneable_type":"Company","stoned_value":null,"stoned_value_type":null,"stoned_acquirer":null,"stoneable":{"name":"Quidsi","permalink":"quidsi"}}],"ipo":null,"video_embeds":[{"embed_code":"<object width=\"520\" height=\"303\"><param name=\"movie\" value=\"http://www.youtube.com/v/6zXOW6v0c8s&hl=en_US&fs=1?hd=1\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/6zXOW6v0c8s&hl=en_US&fs=1?hd=1\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"520\" height=\"303\"></embed></object>","description":"<p>Why Soap.com & Diapers.com Are Changing the Rules on Overnight Shipping</p>"}],"screenshots":[],"external_links":[{"external_url":"http://sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=0001379431&owner=exclude&count=40","title":"SEC"}]} |
{
"first_traded_price": 2406.0,
"highest_price": 2503.0,
"isin": "IRO1TSHE0001",
"last_traded_price": 2503.0,
"lowest_price": 2406.0,
"trade_volume": 229876.0,
"unix_time": 1366588800
} |
{"4'-phosphopantetheinyl transferase AcpS": "C1D023", "Holo-ACP synthase": "C1D023", "N-acetyl-glutamate semialdehyde dehydrogenase": "C1D141", "AGPR": "C1D141", "NAGSA dehydrogenase": "C1D141", "EF-G": "C1CXH0", "AI-2 synthesis protein": "C1CYB4", "Autoinducer-2 production protein LuxS": "C1CYB4", "NADH dehydrogenase I subunit B": "C1D0H2", "NDH-1 subunit B": "C1D0H2", "NADH dehydrogenase I subunit H": "C1D0H8", "NDH-1 subunit H": "C1D0H8", "Ribosome-releasing factor": "C1CVP1", "RRF": "C1CVP1", "Asparaginyl-tRNA synthetase": "C1CV26", "AsnRS": "C1CV26", "M1G-methyltransferase": "C1CUT8", "tRNA [GM37] methyltransferase": "C1CUT8", "Polydeoxyribonucleotide synthase [NAD(+)] 1": "C1D1Y6", "Polydeoxyribonucleotide synthase [NAD(+)] 2": "C1CVC7", "2-phospho-D-glycerate hydro-lyase": "C1CXJ3", "2-phosphoglycerate dehydratase": "C1CXJ3", "Starch [bacterial glycogen] synthase": "C1CWY8", "ATP-PRT": "C1CVJ5", "ATP-PRTase": "C1CVJ5", "DNA repair regulatory protein IrrE": "C1CZ84", "ATP-AMP transphosphorylase": "C1CXE5", "ATP:AMP phosphotransferase": "C1CXE5", "Adenylate monophosphate kinase": "C1CXE5", "AK": "C1CXE5", "UDP-MurNAc-pentapeptide phosphotransferase": "C1CW54", "Polynucleotide phosphorylase": "C1CXB5", "PNPase": "C1CXB5", "rpsN": "C1CXF3", "mraW": "C1D1L8", "16S rRNA m(4)C1402 methyltransferase": "C1D1L8", "rRNA (cytosine-N(4)-)-methyltransferase RsmH": "C1D1L8", "Phenylalanyl-tRNA synthetase alpha subunit": "C1CYT5", "PheRS": "C1CYT5", "Carbamoyl-phosphate synthetase ammonia chain": "C1CXR4", "3-oxoacyl-[acyl-carrier-protein] synthase III": "C1D0N4", "Beta-ketoacyl-ACP synthase III": "C1D0N4", "KAS III": "C1D0N4", "Phosphoglucose isomerase": "C1CWW2", "Phosphohexose isomerase": "C1CWW2", "GPI": "C1CWW2", "PGI": "C1CWW2", "PHI": "C1CWW2", "NADH dehydrogenase I subunit I": "C1D0H9", "NDH-1 subunit I": "C1D0H9", "Aspartate alpha-decarboxylase": "C1D1G6", "DHOdehase": "C1CX89", "Dihydroorotate oxidase": "C1CX89", "DHOD": "C1CX89", "DHODase": "C1CX89", "16S rRNA 7-methylguanosine methyltransferase": "C1D0A7", "16S rRNA m7G methyltransferase": "C1D0A7", "Histidyl-tRNA synthetase": "C1CV35", "HisRS": "C1CV35", "V-ATPase subunit E": "C1CXU0", "Citrulline--aspartate ligase": "C1CXR6", "Hydroxymethylbilane synthase": "C1CYD9", "Pre-uroporphyrinogen synthase": "C1CYD9", "PBG": "C1CYD9", "HMBS": "C1CYD9", "Acetohydroxy-acid isomeroreductase": "C1CWT7", "Alpha-keto-beta-hydroxylacyl reductoisomerase": "C1CWT7", "Ketol-acid reductoisomerase type 1": "C1CWT7", "Ketol-acid reductoisomerase type I": "C1CWT7", "KARI": "C1CWT7", "AHIR": "C1CWT7", "Enoylpyruvate transferase": "C1CX71", "UDP-N-acetylglucosamine enolpyruvyl transferase": "C1CX71", "EPT": "C1CX71", "RF-1": "C1CWJ1", "DMRL synthase": "C1CYL1", "LS": "C1CYL1", "Lumazine synthase": "C1CYL1", "23S rRNA (adenine(2503)-C(2))-methyltransferase": "C1CVX7", "23S rRNA m2A2503 methyltransferase": "C1CVX7", "Ribosomal RNA large subunit methyltransferase N": "C1CVX7", "tRNA (adenine(37)-C(2))-methyltransferase": "C1CVX7", "tRNA m2A37 methyltransferase": "C1CVX7", "RNA polymerase omega subunit": "C1CZ29", "Transcriptase subunit omega": "C1CZ29", "RNAP omega subunit": "C1CZ29", "V-ATPase subunit A": "C1CXU3", "IGPD": "C1D1S1", "Histidase": "C1CWB4", "Cytidine monophosphate kinase": "C1CZK3", "CK": "C1CZK3", "CMP kinase": "C1CZK3", "gidA": "C1D0A9", "Glucose-inhibited division protein A": "C1D0A9", "NADH dehydrogenase I subunit K": "C1D0I1", "NDH-1 subunit K": "C1D0I1", "UDG": "C1CXS7", "Cytidine monophosphokinase": "C1CXN1", "Uridine monophosphokinase": "C1CXN1", "V-ATPase subunit D": "C1CXU5", "cycJ": "C1D1H5", "Cytochrome c maturation protein E": "C1D1H5", "Heme chaperone CcmE": "C1D1H5", "DNA damage response protein A": "C1D1R8", "EF-P": "C1CZB4", "ADP-glucose pyrophosphorylase": "C1CV18", "ADP-glucose synthase": "C1CV18", "ADPGlc PPase": "C1CV18", "Alpha-IPM isomerase": "C1CVE0", "Isopropylmalate isomerase": "C1CVE0", "IPMI": "C1CVE0", "Cytidine 5'-triphosphate synthase": "C1CWM4", "Cytidine triphosphate synthetase": "C1CWM4", "UTP--ammonia ligase": "C1CWM4", "CTP synthetase": "C1CWM4", "CTPS": "C1CWM4", "ATP-sulfurylase": "C1CVW9", "Sulfate adenylate transferase": "C1CVW9", "SAT": "C1CVW9", "TDH": "C1D195", "tRNA(Ile)-2-lysyl-cytidine synthase": "C1D1Q9", "tRNA(Ile)-lysidine synthetase": "C1D1Q9", "ACP": "C1D0N8", "Adenase": "C1CZZ4", "Adenine aminase": "C1CZZ4", "Asp/Glu-ADT subunit C": "C1D0J7", "Non-canonical purine NTP pyrophosphatase": "C1CXX6", "Non-standard purine NTP pyrophosphatase": "C1CXX6", "Nucleoside-triphosphate diphosphatase": "C1CXX6", "Nucleoside-triphosphate pyrophosphatase": "C1CXX6", "NTPase": "C1CXX6", "MAT": "C1CY25", "Methionine adenosyltransferase": "C1CY25", "AdoMet synthase": "C1CY25", "Antitermination factor NusB": "C1CVC5", "Ketopantoate hydroxymethyltransferase": "C1CX98", "KPHMT": "C1CX98", "Succinyl-CoA synthetase subunit beta": "C1CV60", "SCS-beta": "C1CV60", "Aspartyl-tRNA synthetase": "C1CV34", "AspRS": "C1CV34", "Arginosuccinase": "C1CXS0", "ASAL": "C1CXS0", "Dephospho-CoA pyrophosphorylase": "C1CY24", "Pantetheine-phosphate adenylyltransferase": "C1CY24", "PPAT": "C1CY24", "engA": "C1D094", "GTP-binding protein EngA": "C1D094", "Glu-ADT subunit A": "C1D1L2", "Glutamate-1-semialdehyde aminotransferase": "C1CWI8", "GSA": "C1CWI8", "GSA-AT": "C1CWI8", "Undecaprenyl-PP-MurNAc-pentapeptide-UDPGlcNAc GlcNAc transferase": "C1CW40", "PTH": "C1CXT2", "IMP--aspartate ligase": "C1CZ40", "AMPSase": "C1CZ40", "AdSS": "C1CZ40", "PPIase": "C1D0N3", "TF": "C1D0N3", "tRNA pseudouridine(55) synthase": "C1D1L3", "tRNA pseudouridylate synthase": "C1D1L3", "tRNA-uridine isomerase": "C1D1L3", "Psi55 synthase": "C1D1L3", "XPRTase": "C1CZX7", "groEL": "C1CZP1", "GroEL protein": "C1CZP1", "Protein Cpn60": "C1CZP1", "Gly-tRNA(Ala) deacylase": "C1CUI9", "DTD": "C1CUI9", "EF-Ts": "C1CVN9", "Glycine cleavage system T protein": "C1D0F7", "Imidazolone-5-propionate hydrolase": "C1CWB5", "Nucleoside-2-P kinase": "C1D1C3", "NDK": "C1D1C3", "NDP kinase": "C1D1C3", "SAICAR synthetase": "C1CYX1", "23S rRNA (pseudouridine1915-N3)-methyltransferase": "C1CW51", "23S rRNA m3Psi1915 methyltransferase": "C1CW51", "rRNA (pseudouridine-N3-)-methyltransferase RlmH": "C1CW51", "Threonyl-tRNA synthetase": "C1D0W2", "ThrRS": "C1D0W2", "TS": "C1D070", "TSase": "C1D070", "V-ATPase subunit B": "C1CXU4", "Acetokinase": "C1D087", "APS kinase": "C1CVW7", "ATP adenosine-5'-phosphosulfate 3'-phosphotransferase": "C1CVW7", "Adenosine-5'-phosphosulfate kinase": "C1CVW7", "HSP70": "C1CZH9", "Heat shock 70 kDa protein": "C1CZH9", "Heat shock protein 70": "C1CZH9", "Asp/Glu-ADT subunit B": "C1CZY8", "SHMT": "C1CYT8", "Serine methylase": "C1CYT8", "GMP synthetase": "C1D0M2", "Glutamine amidotransferase": "C1D0M2", "PNP/PMP oxidase": "C1D0Z0", "Pyridoxal 5'-phosphate synthase": "C1D0Z0", "PNPOx": "C1D0Z0", "ctc": "C1CZB5", "General stress protein CTC": "C1CZB5", "Bacitracin resistance protein": "C1CVN6", "Undecaprenyl pyrophosphate phosphatase": "C1CVN6", "C1D023": "C1D023", "ACPS_DEIDV": "C1D023", "Holo-[acyl-carrier-protein] synthase": "C1D023", "acpS": "C1D023", "C1D141": "C1D141", "ARGC_DEIDV": "C1D141", "N-acetyl-gamma-glutamyl-phosphate reductase": "C1D141", "argC": "C1D141", "C1CYD7": "C1CYD7", "ARGR_DEIDV": "C1CYD7", "Arginine repressor": "C1CYD7", "argR": "C1CYD7", "C1CYN7": "C1CYN7", "DCTA_DEIDV": "C1CYN7", "C4-dicarboxylate transport protein": "C1CYN7", "dctA": "C1CYN7", "C1CXH0": "C1CXH0", "EFG_DEIDV": "C1CXH0", "Elongation factor G": "C1CXH0", "fusA": "C1CXH0", "C1CVF4": "C1CVF4", "GYRA_DEIDV": "C1CVF4", "DNA gyrase subunit A": "C1CVF4", "gyrA": "C1CVF4", "C1CYB4": "C1CYB4", "LUXS_DEIDV": "C1CYB4", "S-ribosylhomocysteine lyase": "C1CYB4", "luxS": "C1CYB4", "C1D0D5": "C1D0D5", "NRDR_DEIDV": "C1D0D5", "Transcriptional repressor NrdR": "C1D0D5", "nrdR": "C1D0D5", "C1D0H2": "C1D0H2", "NUOB_DEIDV": "C1D0H2", "NADH-quinone oxidoreductase subunit B": "C1D0H2", "nuoB": "C1D0H2", "C1D0H8": "C1D0H8", "NUOH_DEIDV": "C1D0H8", "NADH-quinone oxidoreductase subunit H": "C1D0H8", "nuoH": "C1D0H8", "C1CXD3": "C1CXD3", "RL17_DEIDV": "C1CXD3", "50S ribosomal protein L17": "C1CXD3", "rplQ": "C1CXD3", "C1CZJ9": "C1CZJ9", "RL21_DEIDV": "C1CZJ9", "50S ribosomal protein L21": "C1CZJ9", "rplU": "C1CZJ9", "C1CVP1": "C1CVP1", "RRF_DEIDV": "C1CVP1", "Ribosome-recycling factor": "C1CVP1", "frr": "C1CVP1", "C1CXK0": "C1CXK0", "RS18_DEIDV": "C1CXK0", "30S ribosomal protein S18": "C1CXK0", "rpsR": "C1CXK0", "C1CV26": "C1CV26", "SYN_DEIDV": "C1CV26", "Asparagine--tRNA ligase": "C1CV26", "asnS": "C1CV26", "C1CUT8": "C1CUT8", "TRMD_DEIDV": "C1CUT8", "tRNA (guanine-N(1)-)-methyltransferase": "C1CUT8", "trmD": "C1CUT8", "C1D1Y6": "C1D1Y6", "DNLJ1_DEIDV": "C1D1Y6", "DNA ligase 1": "C1D1Y6", "ligA1": "C1D1Y6", "C1CVC7": "C1CVC7", "DNLJ2_DEIDV": "C1CVC7", "DNA ligase 2": "C1CVC7", "ligA2": "C1CVC7", "C1CXJ3": "C1CXJ3", "ENO_DEIDV": "C1CXJ3", "Enolase": "C1CXJ3", "eno": "C1CXJ3", "C1D0F6": "C1D0F6", "GCSH_DEIDV": "C1D0F6", "Glycine cleavage system H protein": "C1D0F6", "gcvH": "C1D0F6", "C1CWY8": "C1CWY8", "GLGA_DEIDV": "C1CWY8", "Glycogen synthase": "C1CWY8", "glgA": "C1CWY8", "C1CWA3": "C1CWA3", "GLMM_DEIDV": "C1CWA3", "Phosphoglucosamine mutase": "C1CWA3", "glmM": "C1CWA3", "C1CVJ5": "C1CVJ5", "HIS1_DEIDV": "C1CVJ5", "ATP phosphoribosyltransferase": "C1CVJ5", "hisG": "C1CVJ5", "C1CZ84": "C1CZ84", "IRRE_DEIDV": "C1CZ84", "Radiation response metalloprotease IrrE": "C1CZ84", "irrE": "C1CZ84", "C1CXE5": "C1CXE5", "KAD_DEIDV": "C1CXE5", "Adenylate kinase": "C1CXE5", "adk": "C1CXE5", "C1CW54": "C1CW54", "MRAY_DEIDV": "C1CW54", "Phospho-N-acetylmuramoyl-pentapeptide-transferase": "C1CW54", "mraY": "C1CW54", "C1CXB5": "C1CXB5", "PNP_DEIDV": "C1CXB5", "Polyribonucleotide nucleotidyltransferase": "C1CXB5", "pnp": "C1CXB5", "C1CXF6": "C1CXF6", "RL14_DEIDV": "C1CXF6", "50S ribosomal protein L14": "C1CXF6", "rplN": "C1CXF6", "C1CYB8": "C1CYB8", "RL32_DEIDV": "C1CYB8", "50S ribosomal protein L32": "C1CYB8", "rpmF": "C1CYB8", "C1CXD6": "C1CXD6", "RS11_DEIDV": "C1CXD6", "30S ribosomal protein S11": "C1CXD6", "rpsK": "C1CXD6", "C1CXD7": "C1CXD7", "RS13_DEIDV": "C1CXD7", "30S ribosomal protein S13": "C1CXD7", "rpsM": "C1CXD7", "C1CXF3": "C1CXF3", "RS14Z_DEIDV": "C1CXF3", "30S ribosomal protein S14 type Z": "C1CXF3", "rpsZ": "C1CXF3", "C1CXG2": "C1CXG2", "RS19_DEIDV": "C1CXG2", "30S ribosomal protein S19": "C1CXG2", "rpsS": "C1CXG2", "C1CVN8": "C1CVN8", "RS2_DEIDV": "C1CVN8", "30S ribosomal protein S2": "C1CVN8", "rpsB": "C1CVN8", "C1D1L8": "C1D1L8", "RSMH_DEIDV": "C1D1L8", "Ribosomal RNA small subunit methyltransferase H": "C1D1L8", "rsmH": "C1D1L8", "C1CYT5": "C1CYT5", "SYFA_DEIDV": "C1CYT5", "Phenylalanine--tRNA ligase alpha subunit": "C1CYT5", "pheS": "C1CYT5", "C1D186": "C1D186", "TATA_DEIDV": "C1D186", "Sec-independent protein translocase protein TatA": "C1D186", "tatA": "C1D186", "C1CXR4": "C1CXR4", "CARB_DEIDV": "C1CXR4", "Carbamoyl-phosphate synthase large chain": "C1CXR4", "carB": "C1CXR4", "C1CXY3": "C1CXY3", "CINAL_DEIDV": "C1CXY3", "CinA-like protein": "C1CXY3", "C1D0N4": "C1D0N4", "FABH_DEIDV": "C1D0N4", "3-oxoacyl-[acyl-carrier-protein] synthase 3": "C1D0N4", "fabH": "C1D0N4", "C1CWW2": "C1CWW2", "G6PI_DEIDV": "C1CWW2", "Glucose-6-phosphate isomerase": "C1CWW2", "pgi": "C1CWW2", "C1D0H9": "C1D0H9", "NUOI_DEIDV": "C1D0H9", "NADH-quinone oxidoreductase subunit I": "C1D0H9", "nuoI": "C1D0H9", "C1D1G6": "C1D1G6", "PAND_DEIDV": "C1D1G6", "Aspartate 1-decarboxylase": "C1D1G6", "panD": "C1D1G6", "C1CX89": "C1CX89", "PYRD_DEIDV": "C1CX89", "Dihydroorotate dehydrogenase (quinone)": "C1CX89", "pyrD": "C1CX89", "C1CW06": "C1CW06", "RECF_DEIDV": "C1CW06", "DNA replication and repair protein RecF": "C1CW06", "recF": "C1CW06", "C1D0V5": "C1D0V5", "RECR_DEIDV": "C1D0V5", "Recombination protein RecR": "C1D0V5", "recR": "C1D0V5", "C1D166": "C1D166", "RL13_DEIDV": "C1D166", "50S ribosomal protein L13": "C1D166", "rplM": "C1D166", "C1CXE9": "C1CXE9", "RS5_DEIDV": "C1CXE9", "30S ribosomal protein S5": "C1CXE9", "rpsE": "C1CXE9", "C1D0A7": "C1D0A7", "RSMG_DEIDV": "C1D0A7", "Ribosomal RNA small subunit methyltransferase G": "C1D0A7", "rsmG": "C1D0A7", "C1CV35": "C1CV35", "SYH_DEIDV": "C1CV35", "Histidine--tRNA ligase": "C1CV35", "hisS": "C1CV35", "C1CXU0": "C1CXU0", "VATE_DEIDV": "C1CXU0", "V-type proton ATPase subunit E": "C1CXU0", "atpE": "C1CXU0", "C1CXR6": "C1CXR6", "ASSY_DEIDV": "C1CXR6", "Argininosuccinate synthase": "C1CXR6", "argG": "C1CXR6", "C1CXC1": "C1CXC1", "ERA_DEIDV": "C1CXC1", "GTPase Era": "C1CXC1", "era": "C1CXC1", "C1CYD9": "C1CYD9", "HEM3_DEIDV": "C1CYD9", "Porphobilinogen deaminase": "C1CYD9", "hemC": "C1CYD9", "C1D0V9": "C1D0V9", "IF3_DEIDV": "C1D0V9", "Translation initiation factor IF-3": "C1D0V9", "infC": "C1D0V9", "C1CWT7": "C1CWT7", "ILVC_DEIDV": "C1CWT7", "Ketol-acid reductoisomerase (NADP(+))": "C1CWT7", "ilvC": "C1CWT7", "C1CX71": "C1CX71", "MURA_DEIDV": "C1CX71", "UDP-N-acetylglucosamine 1-carboxyvinyltransferase": "C1CX71", "murA": "C1CX71", "C1CWJ1": "C1CWJ1", "RF1_DEIDV": "C1CWJ1", "Peptide chain release factor 1": "C1CWJ1", "prfA": "C1CWJ1", "C1CYL1": "C1CYL1", "RISB_DEIDV": "C1CYL1", "6,7-dimethyl-8-ribityllumazine synthase": "C1CYL1", "ribH": "C1CYL1", "C1CXE7": "C1CXE7", "RL15_DEIDV": "C1CXE7", "50S ribosomal protein L15": "C1CXE7", "rplO": "C1CXE7", "C1CXG4": "C1CXG4", "RL23_DEIDV": "C1CXG4", "50S ribosomal protein L23": "C1CXG4", "rplW": "C1CXG4", "C1CXF8": "C1CXF8", "RL29_DEIDV": "C1CXF8", "50S ribosomal protein L29": "C1CXF8", "rpmC": "C1CXF8", "C1CXG3": "C1CXG3", "RL2_DEIDV": "C1CXG3", "50S ribosomal protein L2": "C1CXG3", "rplB": "C1CXG3", "C1D0Z8": "C1D0Z8", "RL31_DEIDV": "C1D0Z8", "50S ribosomal protein L31": "C1D0Z8", "rpmE": "C1D0Z8", "C1D0S9": "C1D0S9", "RL33_DEIDV": "C1D0S9", "50S ribosomal protein L33": "C1D0S9", "rpmG": "C1D0S9", "C1CVX7": "C1CVX7", "RLMN_DEIDV": "C1CVX7", "Probable dual-specificity RNA methyltransferase RlmN": "C1CVX7", "rlmN": "C1CVX7", "C1CZ29": "C1CZ29", "RPOZ_DEIDV": "C1CZ29", "DNA-directed RNA polymerase subunit omega": "C1CZ29", "rpoZ": "C1CZ29", "C1CXU3": "C1CXU3", "VATA_DEIDV": "C1CXU3", "V-type ATP synthase alpha chain": "C1CXU3", "atpA": "C1CXU3", "C1D1U3": "C1D1U3", "Y9390_DEIDV": "C1D1U3", "Nucleotide-binding protein Deide_09390": "C1D1U3", "C1D1S1": "C1D1S1", "HIS7_DEIDV": "C1D1S1", "Imidazoleglycerol-phosphate dehydratase": "C1D1S1", "hisB": "C1D1S1", "C1CWB4": "C1CWB4", "HUTH_DEIDV": "C1CWB4", "Histidine ammonia-lyase": "C1CWB4", "hutH": "C1CWB4", "C1CZK3": "C1CZK3", "KCY_DEIDV": "C1CZK3", "Cytidylate kinase": "C1CZK3", "cmk": "C1CZK3", "C1CYV3": "C1CYV3", "MINE_DEIDV": "C1CYV3", "Cell division topological specificity factor": "C1CYV3", "minE": "C1CYV3", "C1D0A9": "C1D0A9", "MNMG_DEIDV": "C1D0A9", "tRNA uridine 5-carboxymethylaminomethyl modification enzyme MnmG": "C1D0A9", "mnmG": "C1D0A9", "C1D0I1": "C1D0I1", "NUOK_DEIDV": "C1D0I1", "NADH-quinone oxidoreductase subunit K": "C1D0I1", "nuoK": "C1D0I1", "C1CXF0": "C1CXF0", "RL18_DEIDV": "C1CXF0", "50S ribosomal protein L18": "C1CXF0", "rplR": "C1CXF0", "C1CZK0": "C1CZK0", "RL27_DEIDV": "C1CZK0", "50S ribosomal protein L27": "C1CZK0", "rpmA": "C1CZK0", "C1CXF1": "C1CXF1", "RL6_DEIDV": "C1CXF1", "50S ribosomal protein L6": "C1CXF1", "rplF": "C1CXF1", "C1CXF2": "C1CXF2", "RS8_DEIDV": "C1CXF2", "30S ribosomal protein S8": "C1CXF2", "rpsH": "C1CXF2", "C1CXS7": "C1CXS7", "UNG_DEIDV": "C1CXS7", "Uracil-DNA glycosylase": "C1CXS7", "ung": "C1CXS7", "C1CXN1": "C1CXN1", "URK_DEIDV": "C1CXN1", "Uridine kinase": "C1CXN1", "udk": "C1CXN1", "C1CXU5": "C1CXU5", "VATD_DEIDV": "C1CXU5", "V-type ATP synthase subunit D": "C1CXU5", "atpD": "C1CXU5", "C1D1H5": "C1D1H5", "CCME_DEIDV": "C1D1H5", "Cytochrome c-type biogenesis protein CcmE": "C1D1H5", "ccmE": "C1D1H5", "C1D1R8": "C1D1R8", "DDRA_DEIDV": "C1D1R8", "Single-stranded DNA-binding protein DdrA": "C1D1R8", "ddrA": "C1D1R8", "C1CZB4": "C1CZB4", "EFP_DEIDV": "C1CZB4", "Elongation factor P": "C1CZB4", "efp": "C1CZB4", "C1CV18": "C1CV18", "GLGC_DEIDV": "C1CV18", "Glucose-1-phosphate adenylyltransferase": "C1CV18", "glgC": "C1CV18", "C1CVE0": "C1CVE0", "LEUD_DEIDV": "C1CVE0", "3-isopropylmalate dehydratase small subunit": "C1CVE0", "leuD": "C1CVE0", "C1CWM4": "C1CWM4", "PYRG_DEIDV": "C1CWM4", "CTP synthase": "C1CWM4", "pyrG": "C1CWM4", "C1CX80": "C1CX80", "PYRR_DEIDV": "C1CX80", "Bifunctional protein PyrR": "C1CX80", "pyrR": "C1CX80", "C1D0S4": "C1D0S4", "RL10_DEIDV": "C1D0S4", "50S ribosomal protein L10": "C1D0S4", "rplJ": "C1D0S4", "C1CXG7": "C1CXG7", "RS10_DEIDV": "C1CXG7", "30S ribosomal protein S10": "C1CXG7", "rpsJ": "C1CXG7", "C1CVW9": "C1CVW9", "SAT_DEIDV": "C1CVW9", "Sulfate adenylyltransferase": "C1CVW9", "sat": "C1CVW9", "C1D195": "C1D195", "TDH_DEIDV": "C1D195", "L-threonine 3-dehydrogenase": "C1D195", "tdh": "C1D195", "C1D1Q9": "C1D1Q9", "TILS_DEIDV": "C1D1Q9", "tRNA(Ile)-lysidine synthase": "C1D1Q9", "tilS": "C1D1Q9", "C1D0N8": "C1D0N8", "ACP_DEIDV": "C1D0N8", "Acyl carrier protein": "C1D0N8", "acpP": "C1D0N8", "C1CZZ4": "C1CZZ4", "ADEC_DEIDV": "C1CZZ4", "Adenine deaminase": "C1CZZ4", "ade": "C1CZZ4", "C1CXJ1": "C1CXJ1", "DNAA_DEIDV": "C1CXJ1", "Chromosomal replication initiator protein DnaA": "C1CXJ1", "dnaA": "C1CXJ1", "C1D0J7": "C1D0J7", "GATC_DEIDV": "C1D0J7", "Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit C": "C1D0J7", "gatC": "C1D0J7", "C1CUQ9": "C1CUQ9", "IF2_DEIDV": "C1CUQ9", "Translation initiation factor IF-2": "C1CUQ9", "infB": "C1CUQ9", "C1CXX6": "C1CXX6", "IXTPA_DEIDV": "C1CXX6", "dITP/XTP pyrophosphatase": "C1CXX6", "C1CY73": "C1CY73", "MDH_DEIDV": "C1CY73", "Malate dehydrogenase": "C1CY73", "mdh": "C1CY73", "C1CY25": "C1CY25", "METK_DEIDV": "C1CY25", "S-adenosylmethionine synthase": "C1CY25", "metK": "C1CY25", "C1D1L7": "C1D1L7", "MRAZ_DEIDV": "C1D1L7", "Transcriptional regulator MraZ": "C1D1L7", "mraZ": "C1D1L7", "C1CVC5": "C1CVC5", "NUSB_DEIDV": "C1CVC5", "Transcription antitermination protein NusB": "C1CVC5", "nusB": "C1CVC5", "C1CX98": "C1CX98", "PANB_DEIDV": "C1CX98", "3-methyl-2-oxobutanoate hydroxymethyltransferase": "C1CX98", "panB": "C1CX98", "C1CV29": "C1CV29", "PGK_DEIDV": "C1CV29", "Phosphoglycerate kinase": "C1CV29", "pgk": "C1CV29", "C1CWJ7": "C1CWJ7", "PUR9_DEIDV": "C1CWJ7", "Bifunctional purine biosynthesis protein PurH": "C1CWJ7", "purH": "C1CWJ7", "C1CXE8": "C1CXE8", "RL30_DEIDV": "C1CXE8", "50S ribosomal protein L30": "C1CXE8", "rpmD": "C1CXE8", "C1CXD8": "C1CXD8", "RL36_DEIDV": "C1CXD8", "50S ribosomal protein L36": "C1CXD8", "rpmJ": "C1CXD8", "C1CXG5": "C1CXG5", "RL4_DEIDV": "C1CXG5", "50S ribosomal protein L4": "C1CXG5", "rplD": "C1CXG5", "C1D0S3": "C1D0S3", "RL7_DEIDV": "C1D0S3", "50S ribosomal protein L7/L12": "C1D0S3", "rplL": "C1D0S3", "C1CVD5": "C1CVD5", "RS20_DEIDV": "C1CVD5", "30S ribosomal protein S20": "C1CVD5", "rpsT": "C1CVD5", "C1CXD5": "C1CXD5", "RS4_DEIDV": "C1CXD5", "30S ribosomal protein S4": "C1CXD5", "rpsD": "C1CXD5", "C1CXH1": "C1CXH1", "RS7_DEIDV": "C1CXH1", "30S ribosomal protein S7": "C1CXH1", "rpsG": "C1CXH1", "C1CV60": "C1CV60", "SUCC_DEIDV": "C1CV60", "Succinate--CoA ligase [ADP-forming] subunit beta": "C1CV60", "sucC": "C1CV60", "C1CV34": "C1CV34", "SYD_DEIDV": "C1CV34", "Aspartate--tRNA ligase": "C1CV34", "aspS": "C1CV34", "C1CZW1": "C1CZW1", "YIDD_DEIDV": "C1CZW1", "Putative membrane protein insertion efficiency factor": "C1CZW1", "C1CVP5": "C1CVP5", "ALR_DEIDV": "C1CVP5", "Alanine racemase": "C1CVP5", "alr": "C1CVP5", "C1CXS0": "C1CXS0", "ARLY_DEIDV": "C1CXS0", "Argininosuccinate lyase": "C1CXS0", "argH": "C1CXS0", "C1CY24": "C1CY24", "COAD_DEIDV": "C1CY24", "Phosphopantetheine adenylyltransferase": "C1CY24", "coaD": "C1CY24", "C1D094": "C1D094", "DER_DEIDV": "C1D094", "GTPase Der": "C1D094", "der": "C1D094", "C1CX26": "C1CX26", "DGTL1_DEIDV": "C1CX26", "Deoxyguanosinetriphosphate triphosphohydrolase-like protein": "C1CX26", "C1D1L2": "C1D1L2", "GATA_DEIDV": "C1D1L2", "Glutamyl-tRNA(Gln) amidotransferase subunit A": "C1D1L2", "gatA": "C1D1L2", "C1CWI8": "C1CWI8", "GSA_DEIDV": "C1CWI8", "Glutamate-1-semialdehyde 2,1-aminomutase": "C1CWI8", "hemL": "C1CWI8", "C1CW40": "C1CW40", "MURG_DEIDV": "C1CW40", "UDP-N-acetylglucosamine--N-acetylmuramyl-(pentapeptide) pyrophosphoryl-undecaprenol N-acetylglucosamine transferase": "C1CW40", "murG": "C1CW40", "C1CXT2": "C1CXT2", "PTH_DEIDV": "C1CXT2", "Peptidyl-tRNA hydrolase": "C1CXT2", "pth": "C1CXT2", "C1CZ40": "C1CZ40", "PURA_DEIDV": "C1CZ40", "Adenylosuccinate synthetase": "C1CZ40", "purA": "C1CZ40", "C1D0Q8": "C1D0Q8", "RL20_DEIDV": "C1D0Q8", "50S ribosomal protein L20": "C1D0Q8", "rplT": "C1D0Q8", "C1CXF5": "C1CXF5", "RL24_DEIDV": "C1CXF5", "50S ribosomal protein L24": "C1CXF5", "rplX": "C1CXF5", "C1CZV9": "C1CZV9", "RL34_DEIDV": "C1CZV9", "50S ribosomal protein L34": "C1CZV9", "rpmH": "C1CZV9", "C1D0Q7": "C1D0Q7", "RL35_DEIDV": "C1D0Q7", "50S ribosomal protein L35": "C1D0Q7", "rpmI": "C1D0Q7", "C1CXJ9": "C1CXJ9", "RL9_DEIDV": "C1CXJ9", "50S ribosomal protein L9": "C1CXJ9", "rplI": "C1CXJ9", "C1CXK2": "C1CXK2", "RS6_DEIDV": "C1CXK2", "30S ribosomal protein S6": "C1CXK2", "rpsF": "C1CXK2", "C1D0N3": "C1D0N3", "TIG_DEIDV": "C1D0N3", "Trigger factor": "C1D0N3", "tig": "C1D0N3", "C1D1L3": "C1D1L3", "TRUB_DEIDV": "C1D1L3", "tRNA pseudouridine synthase B": "C1D1L3", "truB": "C1D1L3", "C1CZX7": "C1CZX7", "XPT_DEIDV": "C1CZX7", "Xanthine phosphoribosyltransferase": "C1CZX7", "xpt": "C1CZX7", "C1CZ90": "C1CZ90", "Y3080_DEIDV": "C1CZ90", "UPF0102 protein Deide_03080": "C1CZ90", "C1CZP1": "C1CZP1", "CH60_DEIDV": "C1CZP1", "60 kDa chaperonin": "C1CZP1", "groL": "C1CZP1", "C1CUI9": "C1CUI9", "DTD_DEIDV": "C1CUI9", "D-aminoacyl-tRNA deacylase": "C1CUI9", "dtd": "C1CUI9", "C1CVN9": "C1CVN9", "EFTS_DEIDV": "C1CVN9", "Elongation factor Ts": "C1CVN9", "tsf": "C1CVN9", "C1D0F7": "C1D0F7", "GCST_DEIDV": "C1D0F7", "Aminomethyltransferase": "C1D0F7", "gcvT": "C1D0F7", "C1CWB5": "C1CWB5", "HUTI_DEIDV": "C1CWB5", "Imidazolonepropionase": "C1CWB5", "hutI": "C1CWB5", "C1D1C3": "C1D1C3", "NDK_DEIDV": "C1D1C3", "Nucleoside diphosphate kinase": "C1D1C3", "ndk": "C1D1C3", "C1CYX1": "C1CYX1", "PUR7_DEIDV": "C1CYX1", "Phosphoribosylaminoimidazole-succinocarboxamide synthase": "C1CYX1", "purC": "C1CYX1", "C1CUR2": "C1CUR2", "RIMP_DEIDV": "C1CUR2", "Ribosome maturation factor RimP": "C1CUR2", "rimP": "C1CUR2", "C1D0S5": "C1D0S5", "RL1_DEIDV": "C1D0S5", "50S ribosomal protein L1": "C1D0S5", "rplA": "C1D0S5", "C1CXG1": "C1CXG1", "RL22_DEIDV": "C1CXG1", "50S ribosomal protein L22": "C1CXG1", "rplV": "C1CXG1", "C1CW51": "C1CW51", "RLMH_DEIDV": "C1CW51", "Ribosomal RNA large subunit methyltransferase H": "C1CW51", "rlmH": "C1CW51", "C1D0W2": "C1D0W2", "SYT_DEIDV": "C1D0W2", "Threonine--tRNA ligase": "C1D0W2", "thrS": "C1D0W2", "C1D070": "C1D070", "TYSY_DEIDV": "C1D070", "Thymidylate synthase": "C1D070", "thyA": "C1D070", "C1CXU4": "C1CXU4", "VATB_DEIDV": "C1CXU4", "V-type ATP synthase beta chain": "C1CXU4", "atpB": "C1CXU4", "C1D087": "C1D087", "ACKA_DEIDV": "C1D087", "Acetate kinase": "C1D087", "ackA": "C1D087", "C1D1F5": "C1D1F5", "COMB_DEIDV": "C1D1F5", "Probable 2-phosphosulfolactate phosphatase": "C1D1F5", "comB": "C1D1F5", "C1CVW7": "C1CVW7", "CYSC_DEIDV": "C1CVW7", "Adenylyl-sulfate kinase": "C1CVW7", "cysC": "C1CVW7", "C1CYP4": "C1CYP4", "DDROC_DEIDV": "C1CYP4", "HTH-type transcriptional regulator DdrOC": "C1CYP4", "ddrOC": "C1CYP4", "C1D3U5": "C1D3U5", "DDROP_DEIDV": "C1D3U5", "HTH-type transcriptional regulator DdrOP3": "C1D3U5", "ddrOP3": "C1D3U5", "C1CZH9": "C1CZH9", "DNAK_DEIDV": "C1CZH9", "Chaperone protein DnaK": "C1CZH9", "dnaK": "C1CZH9", "C1CZY8": "C1CZY8", "GATB_DEIDV": "C1CZY8", "Aspartyl/glutamyl-tRNA(Asn/Gln) amidotransferase subunit B": "C1CZY8", "gatB": "C1CZY8", "C1CYT8": "C1CYT8", "GLYA_DEIDV": "C1CYT8", "Serine hydroxymethyltransferase": "C1CYT8", "glyA": "C1CYT8", "C1D0M2": "C1D0M2", "GUAA_DEIDV": "C1D0M2", "GMP synthase [glutamine-hydrolyzing]": "C1D0M2", "guaA": "C1D0M2", "C1D0Z6": "C1D0Z6", "KITH_DEIDV": "C1D0Z6", "Thymidine kinase": "C1D0Z6", "tdk": "C1D0Z6", "C1D0Z0": "C1D0Z0", "PDXH_DEIDV": "C1D0Z0", "Pyridoxine/pyridoxamine 5'-phosphate oxidase": "C1D0Z0", "pdxH": "C1D0Z0", "C1D0S6": "C1D0S6", "RL11_DEIDV": "C1D0S6", "50S ribosomal protein L11": "C1D0S6", "rplK": "C1D0S6", "C1CZB5": "C1CZB5", "RL25_DEIDV": "C1CZB5", "50S ribosomal protein L25": "C1CZB5", "rplY": "C1CZB5", "C1CUU1": "C1CUU1", "RS16_DEIDV": "C1CUU1", "30S ribosomal protein S16": "C1CUU1", "rpsP": "C1CUU1", "C1CXG0": "C1CXG0", "RS3_DEIDV": "C1CXG0", "30S ribosomal protein S3": "C1CXG0", "rpsC": "C1CXG0", "C1D165": "C1D165", "RS9_DEIDV": "C1D165", "30S ribosomal protein S9": "C1D165", "rpsI": "C1D165", "C1CWX4": "C1CWX4", "SECA_DEIDV": "C1CWX4", "Protein translocase subunit SecA": "C1CWX4", "secA": "C1CWX4", "C1CVN6": "C1CVN6", "UPPP_DEIDV": "C1CVN6", "Undecaprenyl-diphosphatase": "C1CVN6", "uppP": "C1CVN6"} |
{"title":"PHYS 400 Introduction to Elementary Particles","description":"\nStandard model, classification of elementary particles and forces of nature, symmetries, conservation laws, quark model, quantum electrodynamics, quantum chromodynamics, and the theory of weak interactions.\n","units":3,"prerequisites":"One of PHYS 304, PHYS 450. ","courseNumber":"400","department":"PHYS","corequisites":false,"crnc":false} |
{"uuid": "13e29851-89f9-4e59-a9ef-a9c9bce7a01b", "befores": [{"name": "phone_number", "status": "passed", "start": 1630873961261, "stop": 1630873961261}], "start": 1630873961261, "stop": 1630873961466} |
{
"OGLE-2013-SN-065":{
"schema":"https://github.com/astrocatalogs/supernovae/blob/d3ef5fc/SCHEMA.md",
"name":"OGLE-2013-SN-065",
"sources":[
{
"name":"ATel 5368",
"bibcode":"2013ATel.5368....1W",
"reference":"Wyrzykowski et al. (2013)",
"url":"http://www.astronomerstelegram.org/?read=5368",
"alias":"1"
},
{
"name":"2011ApJ...737..103S",
"bibcode":"2011ApJ...737..103S",
"reference":"Schlafly & Finkbeiner (2011)",
"alias":"2"
},
{
"name":"OGLE-IV Transient Detection System",
"url":"http://ogle.astrouw.edu.pl/ogle4/transients/transients.html",
"alias":"3"
},
{
"name":"Latest Supernovae",
"secondary":true,
"url":"http://www.rochesterastronomy.org/snimages/snredshiftall.html",
"alias":"4"
},
{
"name":"The Open Supernova Catalog",
"bibcode":"2017ApJ...835...64G",
"reference":"Guillochon et al. (2017)",
"secondary":true,
"url":"https://sne.space",
"alias":"5"
}
],
"alias":[
{
"value":"OGLE-2013-SN-065",
"source":"1,3,4"
}
],
"dec":[
{
"value":"-80:16:33.3",
"u_value":"degrees",
"source":"1,4"
}
],
"discoverdate":[
{
"value":"2013/09/02",
"source":"1,4"
}
],
"discoverer":[
{
"value":"OGLE",
"source":"1,4"
}
],
"ebv":[
{
"value":"0.0563",
"derived":true,
"e_value":"0.0011",
"source":"2,5"
}
],
"maxappmag":[
{
"value":"19.68",
"derived":true,
"source":"1,3,5"
}
],
"maxband":[
{
"value":"I",
"derived":true,
"source":"1,3,5"
}
],
"maxdate":[
{
"value":"2013/09/02",
"derived":true,
"source":"1,3,5"
}
],
"maxvisualappmag":[
{
"value":"19.68",
"derived":true,
"source":"1,3,5"
}
],
"maxvisualband":[
{
"value":"I",
"derived":true,
"source":"1,3,5"
}
],
"maxvisualdate":[
{
"value":"2013/09/02",
"derived":true,
"source":"1,3,5"
}
],
"ra":[
{
"value":"00:56:40.86",
"u_value":"hours",
"source":"1,4"
}
],
"photometry":[
{
"time":"56473.42339",
"band":"I",
"e_magnitude":"0.610",
"magnitude":"22.444",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56485.40345",
"band":"I",
"e_magnitude":"1.005",
"magnitude":"23.025",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56490.40697",
"band":"I",
"e_magnitude":"0.755",
"magnitude":"22.635",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56511.29800",
"band":"I",
"e_magnitude":"0.102",
"magnitude":"20.371",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56517.37120",
"band":"I",
"e_magnitude":"0.315",
"magnitude":"20.809",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56521.25653",
"band":"I",
"e_magnitude":"0.136",
"magnitude":"20.563",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56524.33446",
"band":"I",
"e_magnitude":"0.157",
"magnitude":"20.464",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56531.34855",
"band":"I",
"e_magnitude":"0.102",
"magnitude":"20.038",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56537.30629",
"band":"I",
"e_magnitude":"0.062",
"magnitude":"19.685",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56545.28350",
"band":"I",
"e_magnitude":"0.065",
"magnitude":"20.088",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56547.22998",
"band":"I",
"e_magnitude":"0.091",
"magnitude":"20.244",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56551.22830",
"band":"I",
"e_magnitude":"0.127",
"magnitude":"20.235",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56555.28776",
"band":"I",
"e_magnitude":"0.148",
"magnitude":"20.577",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56559.22856",
"band":"I",
"e_magnitude":"0.101",
"magnitude":"20.626",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56562.23582",
"band":"I",
"e_magnitude":"0.118",
"magnitude":"20.574",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56565.23335",
"band":"I",
"e_magnitude":"0.096",
"magnitude":"20.635",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56569.14964",
"band":"I",
"e_magnitude":"0.105",
"magnitude":"20.732",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56573.18835",
"band":"I",
"e_magnitude":"0.099",
"magnitude":"20.653",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56578.18460",
"band":"I",
"e_magnitude":"0.189",
"magnitude":"21.116",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56583.15400",
"band":"I",
"e_magnitude":"0.208",
"magnitude":"20.997",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56586.12472",
"band":"I",
"e_magnitude":"0.257",
"magnitude":"21.092",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56592.17373",
"band":"I",
"e_magnitude":"0.187",
"magnitude":"21.101",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56599.06171",
"band":"I",
"e_magnitude":"0.163",
"magnitude":"21.042",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56604.05625",
"band":"I",
"e_magnitude":"0.181",
"magnitude":"21.023",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56608.05414",
"band":"I",
"e_magnitude":"0.245",
"magnitude":"21.231",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56610.10929",
"band":"I",
"e_magnitude":"0.473",
"magnitude":"21.910",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56612.04562",
"band":"I",
"e_magnitude":"0.411",
"magnitude":"21.578",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56618.06247",
"band":"I",
"e_magnitude":"0.622",
"magnitude":"22.235",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56623.09126",
"band":"I",
"e_magnitude":"0.337",
"magnitude":"21.703",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56629.09768",
"band":"I",
"e_magnitude":"0.471",
"magnitude":"22.274",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56635.07062",
"band":"I",
"e_magnitude":"0.476",
"magnitude":"21.896",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56640.03947",
"band":"I",
"e_magnitude":"0.276",
"magnitude":"21.247",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56654.05272",
"band":"I",
"e_magnitude":"0.413",
"magnitude":"21.868",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56662.06164",
"band":"I",
"e_magnitude":"2.684",
"magnitude":"23.881",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56670.05698",
"band":"I",
"e_magnitude":"3.701",
"magnitude":"23.700",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
},
{
"time":"56677.04173",
"band":"I",
"e_magnitude":"0.469",
"magnitude":"22.028",
"system":"Vega",
"u_time":"MJD",
"source":"1,3"
}
]
}
} |
{"parse":{"title":"\u5766\u514b\u5c11\u5973:SU-76","pageid":159747,"wikitext":{"*":"#\u91cd\u5b9a\u5411 [[\u88c5\u7532\u5c11\u5973:SU-76]]"}}} |
{
"name": "credit-score-calculator",
"version": "1.0.0",
"description": "A working example project of credit score calculation using MEAN stack",
"main": "app.js",
"directories": {
"doc": "doc",
"tests": "tests"
},
"scripts": {
"start": "node server.js",
"test": "mocha tests/**/*.js --reporter spec --timeout 30000"
},
"keywords": [
"MEAN", "ExpressJS", "NodeJS", "AngularJS"
],
"author": "Jason Wong",
"license": "MIT",
"devDependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "1.4.3",
"express": "^4.16.4",
"grunt": "^1.0.3",
"grunt-angular-templates": "^1.1.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.2",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-karma": "^3.0.1",
"http": "0.0.0",
"jasmine-core": "^2.5.2",
"mocha": "^5.2.0",
"path": "^0.12.7",
"puppeteer": "^1.11.0"
},
"dependencies": {
"chai": "^4.2.0",
"crypto-js": "^3.1.9-1",
"mongodb": "^2.2.31",
"mongoose": "^4.10.4",
"open": "0.0.5",
"request-promise": "^4.2.2"
}
}
|
{"locality": "Charleston", "region": {"fips": "05", "abbr": "AR", "name": "Arkansas"}, "localities": ["Charleston"], "postal_code": "72933", "lat": 35.312232, "lng": -94.0371, "type": "STANDARD", "counties": [{"fips": "131", "name": "Sebastian"}, {"fips": "083", "name": "Logan"}, {"fips": "031", "name": "Craighead"}, {"fips": "047", "name": "Franklin"}]} |
[
{
"record": "Longest fingernails on a pair of hands (female)",
"who": "Ayanna Williams",
"what": "576.41centimetre(s)",
"desc": "The longest fingernails on a pair of hands (female) belong to Ayanna Williams (USA), and have a combined total measurement of 576.4 cm (18 ft 10.9 in), as measured in Houston, Texas, USA, on 7 February 2017.",
"where": "United States",
"image": "https://www.guinnessworldrecords.com/assets/1479503?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/longest-fingernails-on-a-pair-of-hands-(female)"
},
{
"record": "Heaviest twins (male)",
"who": "Billy Leon and Benny Loyd McCrary",
"what": "337/328kilogram(s)",
"desc": "Billy Leon (1946–79) and Benny Loyd (1946 - 2001) McCrary, alias McGuire (USA), were normal in size until the age of six. In November 1978, Billy and Benny weighed 337 kg (743 lb or 53 st 1 lb) and 328 kg (723 lb or 51 st 9 lb) respectively, and each had waists measuring 2.13 m (84 in).",
"where": "United States",
"image": "https://www.guinnessworldrecords.com/assets/993313?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/heaviest-twins"
},
{
"record": "Longest fingernails on a pair of hands ever (female)",
"who": "Lee Redmond",
"desc": "The longest fingernails belonged to Lee Redmond (USA), whostarted to grow them in 1979 and carefully manicured them to reacha total length of 8.65 m (28 ft 4.5 in) as measured on the set ofLo show dei record in Madrid, Spain, on 23 February 2008. Lee losther nails in an automobile accident in early 2009.",
"where": "Spain",
"image": "https://www.guinnessworldrecords.com/assets/1432594?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/longest-fingernails-(female)-ever"
},
{
"record": "Shortest man living (mobile)",
"who": "Edward Niño Hernandez",
"what": "72.1centimetre(s)",
"desc": "The shortest man living (mobile) is Edward Niño Hernandez (Colombia, b. 10 May 1986), who measured 72.1 cm (2 ft 4.38 in) tall, in Bogotá, Colombia, on 29 February 2020.",
"where": "Colombia",
"image": "https://www.guinnessworldrecords.com/images/record.jpg",
"url": "https://www.guinnessworldrecords.com/world-records/shortest-man-living-(mobile)"
},
{
"record": "Youngest female with a full beard",
"who": "Harnaam Kaur",
"what": "24, 282year(s):day(s)",
"desc": "The youngest female with a full beard is Harnaam Kaur (UK, b. 29 November 1990), aged 24 years 282 days when she was confirmed to have a full beard, in Slough, UK, on 7 September 2015.",
"where": "United Kingdom",
"image": "https://www.guinnessworldrecords.com/assets/1230166?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/393316-youngest-female-with-a-full-beard"
},
{
"record": "Longest beard - living male",
"who": "Sarwan Singh",
"what": "2.495metre(s)",
"desc": "The longest beard measures 2.495 m (8 ft 2.5 in) and belongs to Sarwan Singh (Canada) when measured in Surrey, British Columbia, Canada, on 8 September 2011. ",
"where": "Italy",
"image": "https://www.guinnessworldrecords.com/assets/993422?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/longest-beard-living-male"
},
{
"record": "Oldest bodybuilder (female)",
"who": "E. Wilma Conner",
"what": "75/11/15year(s):day(s)",
"desc": "The oldest competitive female bodybuilder is E. Wilma Conner(USA, b. 09 May 1935). She last competed in the 2011 NPC ArmbrustPro Gym Warrior Classic Bodybuilding Championships in Loveland,Colorado, USA, on 20 August 2011.",
"where": "United States",
"image": "https://www.guinnessworldrecords.com/assets/993678?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/oldest-bodybuilder-female"
},
{
"record": "Most flesh tunnels (face)",
"who": "Joel Miggler",
"what": "11 tunnelstotal number",
"desc": "The most flesh tunnels in the face is 11 and was achieved by Joel Miggler (Germany) as verified in Küssaberg, Germany, on 27 November 2014.",
"where": "Germany",
"image": "https://www.guinnessworldrecords.com/assets/888785?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/211173-most-flesh-tunnels-face"
},
{
"record": "Largest flesh tunnel (earlobe)",
"who": "Kalawelo Kaiwi",
"what": "10.5centimetre(s)",
"desc": "The largest flesh tunnel (earlobe) is 10.5cm (4.13 in) and was achieved by Kalawelo Kaiwi (USA) as measured at the Hilo Natural Health Clinic in Hawaii, on 14 April 2014.",
"where": "United States",
"image": "https://www.guinnessworldrecords.com/assets/888779?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/211099-largest-flesh-tunnel-earlobe"
},
{
"record": "Largest feet on a living person (male)",
"who": "Jeison Orlando Rodriguez Hernández",
"what": "40.57centimetre(s)",
"desc": "The largest feet on a living person are 40.55 cm (1 ft 3.96 in) right foot, and 40.47 cm (1 ft 3.93 in) left foot, belong to Jeison Orlando Rodriguez Hernández (Venezuela), and were measured in Parc Saint Paul, Beauvais, France, on 3 June 2018.",
"where": "Venezuela",
"image": "https://www.guinnessworldrecords.com/assets/1803238?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/largest-feet-on-a-living-person-male"
},
{
"record": "Most albino siblings",
"who": "Sesler brothers, Gaulin siblings",
"what": "4people",
"desc": "All four children of Mario and Angie Gaulin - Sarah (b. 15September 1981), Christopher (b. 24 February 1983), Joshua (b. 25October 1987) and Brendan (b. 13 July 1989) (all Canada) -were born with the rare genetic condition oculocutaneousalbinism.",
"where": "United States",
"image": "https://www.guinnessworldrecords.com/assets/993368?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/most-albino-siblings"
},
{
"record": "Most cosmetic procedures",
"who": "Cindy Jackson",
"what": "47total number",
"desc": "Cindy Jackson (USA) has spent $99,600 (£53,148) on 47 cosmetic procedures, including nine full-scale surgical operations since 1988. These have included three full facelifts, two nose operations, two eye lifts, liposuction, knees, waist, abdomen, thigh and jawline surgery, lip and cheek implants, chemical peels, chin bone reduction and semi-permanent make-up.",
"where": "United States",
"image": "https://www.guinnessworldrecords.com/assets/45573?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/most-cosmetic-procedures"
},
{
"record": "Shortest married couple",
"who": "Paulo Gabriel da Silva Barros, Katyucia Lie Hoshino",
"what": "181.41centimetre(s)",
"desc": "The shortest married couple are Paulo Gabriel da Silva Barros (Brazil) and Katyucia Lie Hoshino (Brazil), measuring a combined height of 181.41 cm (71.42 in) verified in Itapeva, São Paulo, Brazil, on 3 November 2016.",
"where": "Brazil",
"image": "https://www.guinnessworldrecords.com/assets/1276005?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/72635-shortest-married-couple"
},
{
"record": "Longest nose on a living person",
"who": "Mehmet Özyürek",
"what": "8.8centimetre(s)",
"desc": "The longest nose on a living person measures 8.8 cm (3.46 in) from the bridge to the tip and belongs to Mehmet Özyürek (Turkey). It was measured on the set of ",
"where": "Italy",
"image": "https://www.guinnessworldrecords.com/assets/992986?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/longest-nose-on-a-living-person"
},
{
"record": "Highest hairstyle",
"who": "KLIPP unser Frisor",
"what": "2.66metre(s)",
"desc": "The highest hairstyle is 2.66 m (8.73 ft) and was achieved by several hairdressers in an event organised by KLIPP unser Frisör in Wels, Austria, on 21 June 2009.",
"where": "Austria",
"image": "https://www.guinnessworldrecords.com/assets/516980?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/highest-hairstyle"
},
{
"record": "Tallest man ever",
"who": "Robert Wadlow",
"what": "272centimetre(s)",
"desc": " The tallest man in medical history for whom there is irrefutable evidence is Robert Pershing Wadlow (USA) (born 6:30 a.m. at Alton, Illinois, USA on 22 February 1918), who when last measured on 27 June 1940, was found to be 2.72 m (8 ft 11.1 in) tall.",
"where": "United States",
"image": "https://www.guinnessworldrecords.com/assets/516297?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/tallest-man-ever"
},
{
"record": "Most fingers and toes (polydactylism) on a living person",
"who": "Devendra Suthar",
"what": "28 fingers and toestotal number",
"desc": "The most fingers and toes (polydactylism) on a living person is 28, which belong to Devendra Suthar, and was confirmed in Himatnagar,Gujarat, India on 11 November 2014.",
"where": "India",
"image": "https://www.guinnessworldrecords.com/assets/890103?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/most-fingers-and-toes-(polydactylism)-living-person"
},
{
"record": "Farthest eyeball pop",
"who": "Kim Goodman",
"what": "12millimetre(s)",
"desc": "Kim Goodman (USA) can pop her eyeballs to a protrusion of 12 mm (0.47 in) beyond her eye sockets. Her eyes were measured in Istanbul, Turkey, on 2 November 2007.",
"where": "Turkey",
"image": "https://www.guinnessworldrecords.com/assets/993248?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/23632-farthest-eyeball-pop"
},
{
"record": "Heaviest competitive male bodybuilder ever",
"who": "Daniele Seccarecci",
"desc": "The heaviest competitive male bodybuilder is Daniele Seccarecci (Italy) whose competition weight is 135 kg (297.62 lbs). He was weighed on the set of Lo Show dei Record in Rome, Italy, on 18 March 2010. ",
"where": "Italy",
"image": "https://www.guinnessworldrecords.com/assets/993311?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/heaviest-competitive-bodybuilder-male"
},
{
"record": "Heaviest birth - triplets (current)",
"who": "Michelle Lee Wilson",
"what": "10.33kilogram(s)",
"desc": "The heaviest triplets at birth (current) are Evan Patrick, Aiden Cole and Lilly Kathryn (all USA), who had a combined weight of 10.33 kg (22 lb 12.6 oz) and were born to Michelle Lee Wilson on 29 July 2003 at Englewood, Colorado, USA. ",
"where": "United States",
"image": "https://www.guinnessworldrecords.com/assets/1504743?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/heaviest-triplets-at-birth-living"
},
{
"record": "Tallest married couple living",
"who": "Sun Mingming and Xu Yan",
"what": "236.17/187.3/423.47centimetre(s)",
"desc": "The tallest married couple is Sun Mingming and his wife Xu Yan (both China) who measure 236.17 cm (7 ft 8.98 in) and 187.3 (6 ft 1.74 in) respectively, having a combined height of 423.47 cm (13 ft 10.72 in) when measured in Beijing, China, on 14 November 2013. They were married in Beijing, China, on 4 August 2013.",
"where": "China Mainland",
"image": "https://www.guinnessworldrecords.com/assets/890048?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/84649-tallest-married-couple-living"
},
{
"record": "Most wins at the World Beard/Moustache Championships",
"who": "Karl-Heinz Hille",
"what": "8total number",
"desc": "The most wins at the World Beard and Moustache Championships is 8 and was achieved by Karl-Heinz Hille (Germany). From 1999 to 2011, Hille has been competing in the Imperial partial beard category. His most recent success was in Trondheim, Norway, in 2011.",
"where": "Norway",
"image": "https://www.guinnessworldrecords.com/assets/1432598?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/106382-most-wins-at-the-world-beard-moustache-championships"
},
{
"record": "Longest moustache ever",
"who": "Ram Singh Chauhan",
"what": "4.29metre(s)",
"desc": "The longest moustache measures 4.29 m (14 ft) and belongs to Ram Singh Chauhan (India). It was measured on the set of the Italian TV show \"Lo Show dei Record\" in Rome, Italy, on 4 March 2010.",
"where": "Italy",
"image": "https://www.guinnessworldrecords.com/assets/993696?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/longest-moustache"
},
{
"record": "Widest mouth (unstretched)",
"who": "Francisco Domingos Joaquim",
"what": "17centimetre(s)",
"desc": "The widest mouth measures 17 cm (6.69 in) and belongs toFrancisco Domingo Joaquim \"Chiquinho\" (Angola).",
"where": "Italy",
"image": "https://www.guinnessworldrecords.com/assets/993184?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/widest-mouth"
},
{
"record": "Shortest female living (mobile)",
"who": "Jyoti Kisanji Amge",
"what": "62.8centimetre(s)",
"desc": "The shortest woman living (mobile) is Jyoti Amge (India, born 16 Dec 1993), who measured 62.8 cm (24.7 in) in Nagpur, India, on 16 December 2011.",
"where": "India",
"image": "https://www.guinnessworldrecords.com/assets/993027?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/shortest-woman-living-(mobile)"
},
{
"record": "Stretchiest skin",
"who": "Garry Turner",
"what": "15.8centimetre(s)",
"desc": "Garry Turner (UK) is able to stretch the skin of his stomach to a distended length of 15.8 cm (6.25 in) due to a rare medical condition called Ehlers-Danlos Syndrome, a disorder of the connective tissues affecting the skin, ligaments and internal organs.",
"where": "United States",
"image": "https://www.guinnessworldrecords.com/assets/993363?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/72387-stretchiest-skin"
},
{
"record": "Longest fingernails on a single hand ever",
"who": "Shridhar Chillal",
"what": "909.6centimetre(s)",
"desc": "The longest fingernails on a single hand - ever measure an aggregate length of 909.6 cm (358.1 in) and were achieved by Shridhar Chillal (India) on his left hand as measured in Pune city, Maharashtra, India, on 17 November 2014.",
"where": "India",
"image": "https://www.guinnessworldrecords.com/assets/1432595?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/67701-longest-fingernails-single-hand-ever"
},
{
"record": "Tallest man living",
"who": "Sultan Kosen",
"what": "251centimetre(s)",
"desc": "The tallest man living is Sultan Kösen (Turkey, b.10 December 1982) who measured 251 cm (8 ft 2.8 in) in Ankara, Turkey, on 08 February 2011.",
"where": "Turkey",
"image": "https://www.guinnessworldrecords.com/assets/1432599?width=780&height=497",
"url": "https://www.guinnessworldrecords.com/world-records/tallest-man-living"
}
] |
{"draft":"draft-alakuijala-brotli-11","doc_id":"RFC7932","title":"Brotli Compressed Data Format","authors":["J. Alakuijala","Z. Szabadka"],"format":["ASCII","HTML"],"page_count":"128","pub_status":"INFORMATIONAL","status":"INFORMATIONAL","source":"IETF - NON WORKING GROUP","abstract":"This specification defines a lossless compressed data format that\r\ncompresses data using a combination of the LZ77 algorithm and Huffman\r\ncoding, with efficiency comparable to the best currently available\r\ngeneral-purpose compression methods.","pub_date":"July 2016","keywords":[],"obsoletes":[],"obsoleted_by":[],"updates":[],"updated_by":[],"see_also":[],"doi":"10.17487\/RFC7932","errata_url":null} |
{
"persons": [
{
"name": "mats",
"number": 123,
"adress": {
"street": "testgatan",
"city": "Stockholm"
}
},
{
"name": "janne",
"number": 345,
"adress": {
"street": "utvecklargatan",
"city": "Stockholm"
}
}
]
} |
[
"http://2.bp.blogspot.com/-Pa3n-BUcSFM/TnQ2NJeMw2I/AAAAAAAABO4/HQx-DiweMgE/s0/000.png",
"http://2.bp.blogspot.com/-HDgstrIFe68/TnQ2PWvoVFI/AAAAAAAABP4/xBnuIntpY-4/s0/001.png",
"http://2.bp.blogspot.com/-RCxZjHqxEwk/TnQ2Vu_JqII/AAAAAAAABQ8/0Y_LJKI-_Rg/s0/002.png",
"http://2.bp.blogspot.com/-SaefI-fuk5Y/TnQ2Xh8UodI/AAAAAAAABR4/HkFYrROCxQM/s0/003.png",
"http://2.bp.blogspot.com/-lwW_0Ep_sTQ/TnQ2Ze3AA5I/AAAAAAAABSQ/JgQKCGbssno/s0/004.png",
"http://2.bp.blogspot.com/-pT7zW8OxLnU/TnQ2bME_zmI/AAAAAAAABSw/DRtfvYy5YiA/s0/005.png",
"http://2.bp.blogspot.com/-5pC3SCCL4c0/TnQ2c2eDgRI/AAAAAAAABTU/q7JnCJwu8VU/s0/006.png",
"http://2.bp.blogspot.com/-1M2lLR0QRIc/TnQ2ejL5nQI/AAAAAAAABTw/iaa3hHxggYk/s0/007.png",
"http://2.bp.blogspot.com/-ZUoshYSkVAY/TnQ2hY5O9fI/AAAAAAAABUc/l5WiBuc2W3g/s0/008.png",
"http://2.bp.blogspot.com/-Y85hSRw3au0/TnQ2mlIH4II/AAAAAAAABU4/FogBYF6bkRw/s0/009.png",
"http://2.bp.blogspot.com/-JTgyVkKD5jw/TnQ2oA2nK5I/AAAAAAAABVo/Hbx2hp25-8c/s0/010.png",
"http://2.bp.blogspot.com/-jqnqP08C9M0/TnQ2pze15JI/AAAAAAAABWI/2j6sD-9h3bc/s0/011.png",
"http://2.bp.blogspot.com/-oV8KPHlv5zw/TnQ2rxn-rRI/AAAAAAAABWk/w_A7ntsa-gg/s0/012.png",
"http://2.bp.blogspot.com/-YfSBlxtyozM/TnQ2tcRypGI/AAAAAAAABXI/rJ39u7xaMRc/s0/013.png",
"http://2.bp.blogspot.com/--oaFWAAuA4s/TnQ2vekxqQI/AAAAAAAABXs/MWNDCtTkMQE/s0/014.png",
"http://2.bp.blogspot.com/-hozOJVjzDvk/TnQ2x4Vt3YI/AAAAAAAABYQ/5ykXYWxkzhQ/s0/015.png",
"http://2.bp.blogspot.com/-MYutYOZLqF4/TnQ21GSCSfI/AAAAAAAABY4/2PPlRil1N3I/s0/016.png",
"http://2.bp.blogspot.com/-rEw8EgUtG4w/TnQ25oiMbVI/AAAAAAAABZY/P3P30vEDZR0/s0/017.png",
"http://2.bp.blogspot.com/-zh19LTNzIKo/TnQ29eduvXI/AAAAAAAABag/ihWSVZxcR-4/s0/018.png"
] |
{"user/throttle": 1, "user/angle": -0.06666673932756656, "user/mode": "user", "cam/image_array": "73588_cam-image_array_.jpg", "timestamp": "2019-05-23 18:02:00.727433"} |
{
"title": "assignability",
"fileName": "assignability",
"sections": [
{
"title": "Description",
"raw_content": "A value, such as 24, is assignable to a variable, such as <i>i</i>, if certain rules are followed. These rules, given in detail below, are called the <i>assignability </i>rules. They must be followed in assignment statements as well as when passing values to non-<b>var</b> parameters.<p>\r\n</p>",
"text_content": " A value, such as 24, is assignable to a variable, such as i, if certain rules are followed. These rules, given in detail below, are called the assignability rules. They must be followed in assignment statements as well as when passing values to non-var parameters.\r\n",
"mdown_content": "A value, such as 24, is assignable to a variable, such as _i_, if certain rules are followed. These rules, given in detail below, are called the _assignability_ rules. They must be followed in assignment statements as well as when passing values to non-**var** parameters.\n"
},
{
"title": "Example",
"code": [
" var i : int\r\n i := 24 % 24 is assignable to i\r\n \r\n var width : 0 .. 319\r\n width := 3 * i % 3 * i is assignable to width\r\n \r\n var a : array 1 .. 25 of string\r\n a (i) := \"Ralph\" % \"Ralph\" is assignable to a(i)\r\n \r\n var name : string (20)\r\n name := a (i) % a(i) is assignable to name\r\n \r\n
\r\n var b : array 1 .. 25 of string\r\n b := a % Array a is assignable to b\r\n \r\n type personType :\r\n record\r\n age : int\r\n name : string (20)\r\n end record\r\n var r, s : personType\r\n
\r\n s := r % Record r is assignable to s"
],
"raw_content": "<p>\r\n</p>",
"text_content": "\r\n\r\n",
"mdown_content": "\n"
},
{
"title": "Details",
"raw_content": "The expression on the right of := must be <i>assignable </i>to the variable on the left. An expression passed to a non-<b>var</b> parameter must be assignable to the corresponding parameter.<p>\r\nAn expression<i> </i>is defined to be <i>assignable </i>to a variable if the two <i>root </i>types are<i> equivalent</i> or if an integer value is being assigned to a <b>real</b> variable (in which case the integer value is automatically converted to <b>real</b>). Two types are considered to be equivalent if they are essentially the same type (see <i>equivalence </i>for the detailed definition of this term).</p>\n<p>\r\nIn most cases a <i>root</i> type is simply the type itself. The exceptions are subranges and strings. The <i>root</i> type of a subrange, such as 0 .. 319, is the type of its bounds (<b>int</b> type in this example). The <i>root</i> type of a string, such as the type <b>string</b>(9), is the most general string type, namely <b>string</b>.</p>\n<p>\r\nWhen a subrange variable, such as <i>width</i>, is used as an expression, for example on the right side of an assignment statement, its type is considered to be the <i>root</i> type (integer in this case) rather than the subrange. When an expression is assigned to a subrange variable such as <i>width</i>, the value (3*<i>i</i> in this example) must lie in the subrange. Analogously, any string variable used in an expression is considered to be of the most general type of string. When a string value is assigned to a string variable, its length must not exceed the variable's maximum length.</p>\n<p>\r\nTuring's assignability rule applies to characters and strings in this way. A <b>char</b> value can be assigned (or passed to an non <b>var</b> parameter) with automatic conversion to a <b>char</b>(1) variable and vice versa. String values of length 1 can be assigned to <b>char</b> variables. Character, that is <b>char</b>, values can be assigned to string variables, yielding a string of length 1. String values of length <i>n</i> are assignable with automatic conversion to <b>char</b>(<i>n</i>) variables. Values of type <b>char</b>(<i>n</i>) can be assigned with automatic conversion to <b>string</b> variables.</p>\n<p>\r\nTuring's assignability rule applies to pointers to classes in this way. A pointer that locates an object created as class <i>E</i>, can be assigned to a pointer to class <i>B</i> only if <i>B</i> is an ancestor of (or the same as) <i>E</i>. For example, a pointer to an object that is a <i>stackWithDepth</i> can be assigned to a pointer to <i>stack</i>, where <i>stackWithDepth</i> is a child of <i>stack</i>, but not vice versa. The pointer <b>nil</b> can be assigned to any pointer variable, but the value <b>nil</b>(<i>C</i>) can only be assigned to a pointer to an ancestor of C.</p>\n<p>\r\nObjects of classes can be assigned to each other only if both were created as the same class.</p>\n<p>\r\n</p>",
"text_content": " The expression on the right of := must be assignable to the variable on the left. An expression passed to a non-var parameter must be assignable to the corresponding parameter.\r\nAn expression is defined to be assignable to a variable if the two root types are equivalent or if an integer value is being assigned to a real variable (in which case the integer value is automatically converted to real). Two types are considered to be equivalent if they are essentially the same type (see equivalence for the detailed definition of this term).\r\nIn most cases a root type is simply the type itself. The exceptions are subranges and strings. The root type of a subrange, such as 0 .. 319, is the type of its bounds (int type in this example). The root type of a string, such as the type string(9), is the most general string type, namely string.\r\nWhen a subrange variable, such as width, is used as an expression, for example on the right side of an assignment statement, its type is considered to be the root type (integer in this case) rather than the subrange. When an expression is assigned to a subrange variable such as width, the value (3*i in this example) must lie in the subrange. Analogously, any string variable used in an expression is considered to be of the most general type of string. When a string value is assigned to a string variable, its length must not exceed the variable's maximum length.\r\nTuring's assignability rule applies to characters and strings in this way. A char value can be assigned (or passed to an non var parameter) with automatic conversion to a char(1) variable and vice versa. String values of length 1 can be assigned to char variables. Character, that is char, values can be assigned to string variables, yielding a string of length 1. String values of length n are assignable with automatic conversion to char(n) variables. Values of type char(n) can be assigned with automatic conversion to string variables.\r\nTuring's assignability rule applies to pointers to classes in this way. A pointer that locates an object created as class E, can be assigned to a pointer to class B only if B is an ancestor of (or the same as) E. For example, a pointer to an object that is a stackWithDepth can be assigned to a pointer to stack, where stackWithDepth is a child of stack, but not vice versa. The pointer nil can be assigned to any pointer variable, but the value nil(C) can only be assigned to a pointer to an ancestor of C.\r\nObjects of classes can be assigned to each other only if both were created as the same class.\r\n",
"mdown_content": "The expression on the right of := must be _assignable_ to the variable on the left. An expression passed to a non-**var** parameter must be assignable to the corresponding parameter.\n\nAn expression is defined to be _assignable_ to a variable if the two _root_ types are _equivalent_ or if an integer value is being assigned to a **real** variable (in which case the integer value is automatically converted to **real**). Two types are considered to be equivalent if they are essentially the same type (see _equivalence_ for the detailed definition of this term).\n\nIn most cases a _root_ type is simply the type itself. The exceptions are subranges and strings. The _root_ type of a subrange, such as 0 .. 319, is the type of its bounds (**int** type in this example). The _root_ type of a string, such as the type **string**(9), is the most general string type, namely **string**.\n\nWhen a subrange variable, such as _width_, is used as an expression, for example on the right side of an assignment statement, its type is considered to be the _root_ type (integer in this case) rather than the subrange. When an expression is assigned to a subrange variable such as _width_, the value (3*_i_ in this example) must lie in the subrange. Analogously, any string variable used in an expression is considered to be of the most general type of string. When a string value is assigned to a string variable, its length must not exceed the variable's maximum length.\n\nTuring's assignability rule applies to characters and strings in this way. A **char** value can be assigned (or passed to an non **var** parameter) with automatic conversion to a **char**(1) variable and vice versa. String values of length 1 can be assigned to **char** variables. Character, that is **char**, values can be assigned to string variables, yielding a string of length 1. String values of length _n_ are assignable with automatic conversion to **char**(_n_) variables. Values of type **char**(_n_) can be assigned with automatic conversion to **string** variables.\n\nTuring's assignability rule applies to pointers to classes in this way. A pointer that locates an object created as class _E_, can be assigned to a pointer to class _B_ only if _B_ is an ancestor of (or the same as) _E_. For example, a pointer to an object that is a _stackWithDepth_ can be assigned to a pointer to _stack_, where _stackWithDepth_ is a child of _stack_, but not vice versa. The pointer **nil** can be assigned to any pointer variable, but the value **nil**(_C_) can only be assigned to a pointer to an ancestor of C.\n\nObjects of classes can be assigned to each other only if both were created as the same class.\n"
}
],
"dependencies": [
]
}
|
{
"first_traded_price": 6751.0,
"highest_price": 6998.0,
"isin": "IRO3MPRZ0001",
"last_traded_price": 6850.0,
"lowest_price": 6750.0,
"trade_volume": 187710.0,
"unix_time": 1458000000
} |
{"default":{"timelineData":[{"time":"1606867200","formattedTime":"Dec 2, 2020","formattedAxisTime":"Dec 2, 2020","value":[67,100,67,33,0],"hasData":[true,true,true,true,false],"formattedValue":["67","100","67","33","0"]}],"averages":[67,100,67,33,0]}} |
{
"add": {
"doc": {
"id": "4c087e9e612e7047c0d77ff8fd2493f3a9cb6e8a657d4559a00aefd77c3e516b",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Foo_Fighters_Live_29.jpg/220px-Foo_Fighters_Live_29.jpg",
"previous": [],
"after": "The term post-grunge was coined for the generation of bands that followed the emergence into the mainstream and subsequent hiatus of the Seattle grunge bands. Post-grunge bands emulated their attitudes and music, but with a more radio-friendly commercially oriented sound.[229] Often they worked through the major labels and came to incorporate diverse influences from jangle pop, pop-punk, alternative metal or hard rock.[229] The term post-grunge was meant to be pejorative, suggesting that they were simply musically derivative, or a cynical response to an \"authentic\" rock movement.[233] From 1994, former Nirvana drummer Dave Grohl's new band, the Foo Fighters, helped popularize the genre and define its parameters.[234]",
"color": "black|0.58902 dim|0.021716 gray|0.021716 dim|0.021716 grey|0.021716 khaki|0.016954 dark|0.014495 gray|0.014495 dark|0.014495 grey|0.014495 gray|0.014129 grey|0.014129 dark|0.012224 salmon|0.012224 tan|0.012057 pale|0.010134 golden|0.010134 rod|0.010134 misty|0.0099699 rose|0.0099699 burly|0.0095513 wood|0.0095513 peach|0.0094638 puff|0.0094638 sandy|0.0094449 brown|0.0094449 rosy|0.0086675 brown|0.0086675 silver|0.0084331 pink|0.0080554 "
}
}
}
|
[
{
"id": "452673",
"title": "Vol. 004 Ch.014",
"language": "en",
"scanlator": "",
"volume": "004",
"number": "014"
},
{
"id": "445195",
"title": "Vol. 004 Ch.013",
"language": "en",
"scanlator": "",
"volume": "004",
"number": "013"
},
{
"id": "427251",
"title": "Vol. 003 Ch.012.005 - Extra",
"language": "en",
"scanlator": "",
"volume": "003",
"number": "012.005"
},
{
"id": "427250",
"title": "Vol. 003 Ch.012 -",
"language": "en",
"scanlator": "",
"volume": "003",
"number": "012"
},
{
"id": "420061",
"title": "Vol. 003 Ch.011 -",
"language": "en",
"scanlator": "",
"volume": "003",
"number": "011"
},
{
"id": "415714",
"title": "Vol. 003 Ch.010 -",
"language": "en",
"scanlator": "",
"volume": "003",
"number": "010"
},
{
"id": "404363",
"title": "Vol. 003 Ch.009 -",
"language": "en",
"scanlator": "",
"volume": "003",
"number": "009"
},
{
"id": "393780",
"title": "Vol.002 Ch.008.005: Bonus: Gilbert's Moving Laboratory",
"language": "en",
"scanlator": "",
"volume": "002",
"number": "008.005"
},
{
"id": "393779",
"title": "Vol.002 Ch.008",
"language": "en",
"scanlator": "",
"volume": "002",
"number": "008"
},
{
"id": "386890",
"title": "Vol.002 Ch.007",
"language": "en",
"scanlator": "",
"volume": "002",
"number": "007"
},
{
"id": "385406",
"title": "Vol.002 Ch.006",
"language": "en",
"scanlator": "",
"volume": "002",
"number": "006"
},
{
"id": "380158",
"title": "Vol.002 Ch.005",
"language": "en",
"scanlator": "",
"volume": "002",
"number": "005"
},
{
"id": "375780",
"title": "Vol.001 Ch.004",
"language": "en",
"scanlator": "",
"volume": "001",
"number": "004"
},
{
"id": "373088",
"title": "Vol.001 Ch.003",
"language": "en",
"scanlator": "",
"volume": "001",
"number": "003"
},
{
"id": "371203",
"title": "Vol.001 Ch.002",
"language": "en",
"scanlator": "",
"volume": "001",
"number": "002"
},
{
"id": "363997",
"title": "Vol.001 Ch.001",
"language": "en",
"scanlator": "",
"volume": "001",
"number": "001"
}
] |
["f338ca39c9fdb5efbdb9cc7ea3d80ecab617815b","0d82bf6e07cdfc882951c086ecf4aef698aea611"] |
{"name":"Stupeflix","permalink":"stupeflix","crunchbase_url":"http://www.crunchbase.com/company/stupeflix","homepage_url":"http://www.stupeflix.com","blog_url":"http://blog.stupeflix.com","blog_feed_url":"http://blog.stupeflix.com/?feed=rss2","twitter_username":"stupeflix","category_code":"web","number_of_employees":5,"founded_year":2009,"founded_month":1,"founded_day":null,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"video, creation, api, cloud, photo, music, seedcamp, seedcamp-2008","alias_list":null,"email_address":"contact@stupeflix.com","phone_number":"415 881 7637","description":"Video Creation Web Service","created_at":"Mon Oct 27 15:34:29 UTC 2008","updated_at":"Fri Apr 13 21:45:25 UTC 2012","overview":"<p>Stupeflix is a web service to simplify video creation.</p>\n\n<p>It comes in two flavors:</p>\n\n<ul>\n<li>a <a href=\"http://studio.stupeflix.com/editor/create/\" title=\"web application\" rel=\"nofollow\">web application</a> for people to make professional videos in a few clicks,</li>\n<li>an <a href=\"http://www.stupeflix.com/api/\" title=\"API/Platform\" rel=\"nofollow\">API/Platform</a> for developers to create powerful video creation applications.</li>\n</ul>\n\n<p>The Stupeflix API is mostly used by:</p>\n\n<ul>\n<li>brands and agencies to build <a href=\"http://blog.stupeflix.com/video-personalization/\" title=\"video personalization apps\" rel=\"nofollow\">video personalization apps</a> on web, mobile and Facebook, including Bacardi, Miller Lite, Lenovo, Procter & Gamble.</li>\n<li>large publishers to automatically produce massive amounts of video (real estate commerce, directories), including HomeFinder, MyNewPlace, TurnHere, WebVisible, Previsite, Orange.</li>\n</ul>\n\n<p>At the core of Stupeflix product is hardware innovation that renders video 20 times faster than current best-in-class solutions. On the tech side, it opens up to use cases that were not possible before: on-the-fly generation, where a video is created and served as a user clicks “Play”, or instant previewing of video projects in the Stupeflix consumer web application. On the business side, it disrupts the video creation industry by slashing production prices: 10-fold in the virtual tour industry, 100-fold for local business advertising, 1,000-fold for post-production processing. </p>\n\n<p>Founded in January 2009, it is headquartered in Paris, France with offices in San Francisco and Berlin.\nStupeflix won the <a href=\"http://www.crunchbase.com/company/seedcamp\" title=\"Seedcamp\">Seedcamp</a> 2008 startup competition, was finalist of the TechCrunch Europe Awards 2009 and selected as “Top 100 Innovative Company in Europe” by Red Herring in 2010.</p>","image":{"available_sizes":[[[150,45],"assets/images/resized/0002/7394/27394v21-max-150x150.png"],[[164,50],"assets/images/resized/0002/7394/27394v21-max-250x250.png"],[[164,50],"assets/images/resized/0002/7394/27394v21-max-450x450.png"]],"attribution":null},"products":[],"relationships":[{"is_past":false,"title":"CEO","person":{"first_name":"Nicolas","last_name":"Steegmann","permalink":"nicolas-steegmann","image":null}},{"is_past":false,"title":"CTO","person":{"first_name":"François","last_name":"Lagunas","permalink":"franois-lagunas","image":null}},{"is_past":false,"title":"VP of Business Development","person":{"first_name":"Jean-Francois","last_name":"Boudier","permalink":"jean-francois-boudier","image":{"available_sizes":[[[133,150],"assets/images/resized/0003/6818/36818v2-max-150x150.jpg"],[[223,250],"assets/images/resized/0003/6818/36818v2-max-250x250.jpg"],[[401,450],"assets/images/resized/0003/6818/36818v2-max-450x450.jpg"]],"attribution":"<p>Jeff Boudier / <a href=\"http://us.zilok.com\" title=\"Zilok.com\" rel=\"nofollow\">Zilok.com</a></p>"}}},{"is_past":false,"title":"Web Developer","person":{"first_name":"Etienne","last_name":"Albert","permalink":"etienne-albert","image":null}}],"competitions":[{"competitor":{"name":"Animoto","permalink":"animoto","image":{"available_sizes":[[[150,40],"assets/images/resized/0000/0493/493v2-max-150x150.jpg"],[[250,68],"assets/images/resized/0000/0493/493v2-max-250x250.jpg"],[[250,68],"assets/images/resized/0000/0493/493v2-max-450x450.jpg"]],"attribution":null}}},{"competitor":{"name":"RockYou","permalink":"rockyou","image":{"available_sizes":[[[141,36],"assets/images/resized/0009/0962/90962v1-max-150x150.png"],[[141,36],"assets/images/resized/0009/0962/90962v1-max-250x250.png"],[[141,36],"assets/images/resized/0009/0962/90962v1-max-450x450.png"]],"attribution":null}}},{"competitor":{"name":"Slide","permalink":"slide","image":{"available_sizes":[[[108,40],"assets/images/resized/0004/5997/45997v1-max-150x150.png"],[[108,40],"assets/images/resized/0004/5997/45997v1-max-250x250.png"],[[108,40],"assets/images/resized/0004/5997/45997v1-max-450x450.png"]],"attribution":null}}},{"competitor":{"name":"SundaySky","permalink":"sundaysky","image":{"available_sizes":[[[150,50],"assets/images/resized/0003/3112/33112v10-max-150x150.jpg"],[[250,84],"assets/images/resized/0003/3112/33112v10-max-250x250.jpg"],[[450,152],"assets/images/resized/0003/3112/33112v10-max-450x450.jpg"]],"attribution":null}}},{"competitor":{"name":"muvee Technologies","permalink":"muvee","image":{"available_sizes":[[[95,60],"assets/images/resized/0001/8143/18143v1-max-150x150.png"],[[95,60],"assets/images/resized/0001/8143/18143v1-max-250x250.png"],[[95,60],"assets/images/resized/0001/8143/18143v1-max-450x450.png"]],"attribution":null}}}],"providerships":[],"total_money_raised":"$0","funding_rounds":[{"round_code":"seed","source_url":"http://www.techcrunch.com/2008/09/19/early-stage-european-startups-take-honours-at-seedcamp/","source_description":"Early-stage European Startups Take Honours At Seedcamp","raised_amount":null,"raised_currency_code":"EUR","funded_year":2008,"funded_month":9,"funded_day":1,"investments":[{"company":{"name":"Seedcamp","permalink":"seedcamp","image":{"available_sizes":[[[150,60],"assets/images/resized/0000/0154/154v1-max-150x150.png"],[[250,100],"assets/images/resized/0000/0154/154v1-max-250x250.png"],[[261,105],"assets/images/resized/0000/0154/154v1-max-450x450.png"]],"attribution":null}},"financial_org":null,"person":null}]}],"investments":[],"acquisition":null,"acquisitions":[],"offices":[{"description":"Corporate HQ","address1":"","address2":"","zip_code":"75010","city":"Paris","state_code":null,"country_code":"FRA","latitude":48.8785618,"longitude":2.3603689},{"description":"San Francisco","address1":"","address2":"","zip_code":"94110","city":"San Francisco","state_code":"CA","country_code":"USA","latitude":null,"longitude":null}],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[],"external_links":[]} |
{"id":325380,"type":1,"name":"カワイイ女の子を釣る方法","image":"//lain.bgm.tv/pic/cover/m/c9/5c/325380_n41LN.jpg","summary":"かつて、自分が通学路に落ちていたエロ本を血眼となって読んでいたことを思い出したフリーター・皿田敦は 今の世代のためにコンビニで買ったエロ本を気まぐれに公園の茂みへと捨てる。 翌日、バイトを終え、ふとエロ本の行方が気になった彼が公園を訪れると、 そこには顔を赤くし、それを読みふける女子生徒の姿が。 皿田の姿に気づいた彼女はあせりながらも、エッチの経験がないことから興味本位で エロ本を読んでいたことを告白し、対する皿田は公園のトイレでじゃあ実際にやってみようと彼女を誘う。 戸惑いながらも皿田を受け入れる彼女の態度に気を大きくした彼はパンツを脱いで 自分のアソコを彼女の目の前に突き出し…。","info":"<li><span>出版社: </span>ジーウォーク</li><li><span>价格: </span>¥1,100</li><li><span>发售日: </span>2019-06-27</li><li><span>页数: </span>216</li><li><span>ISBN: </span>978-4862978929</li><li><span>作者: </span>あずせ</li>","relations":[{"id":325379,"image":"//lain.bgm.tv/pic/cover/m/72/82/325379_VqrXi.jpg","title":"カワイイ女の子を釣る方法","type":"系列","url":"https://bgm.tv/subject/325379"}]} |
{
"title": "Bistro at the Bijou",
"tags": [
"Vegetarian-Friendly"
],
"typeOfFood": "\n Lacto, Ovo, American, Beer/Wine, Take-out, Non-veg\n ",
"description": "Serves meat, veg options available. Old fashioned, classic atmosphere restaurant with bar. Marks the vegetarian items, and vegans should ask for substitutions. Brunch on weekend. Sources from its garden and organic vegetables. Hosts live music.",
"priceRange": "Moderate",
"streetAddress": "807 S Gay St",
"postalCode": "37902",
"phone": "tel:865-544-0537",
"venueHours": "\n \n Mon 11:00am-10:00pm, Tue-Thu 11:00am-11:00pm, Fri 11:00am-12:00am, Sat 10:00am-12:00am, Sun 10:00am-9:00am\n ",
"listingFeatures": [
"Outdoor seating",
"Accepts credit cards"
],
"fb": "http://www.facebook.com/pages/The-Bistro-at-the-Bijou/68978679282",
"gmaps": "http://maps.googleapis.com/maps/api/staticmap?center=35.962286,-83.917102&zoom=15&size=458x118&maptype=roadmap&markers=icon:http%3A%2F%2Fgoo.gl%2F1RDrbh%7Cshadow:true%7C35.962286,-83.917102&sensor=false&key=AIzaSyBrIo4v01Yet3zb6VunVdenxRtXWFnwfxk"
} |
{"title":"Take5-Girls - Sam Private","uid":7845144,"size":651878589,"categoryP":"porn","categoryS":"hd___movies","magnet":"?xt=urn:btih:405801bfca949501a9355ef326d0d601bf54fad2&dn=Take5-Girls+-+Sam+Private&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Fopen.demonii.com%3A1337&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Fexodus.desync.com%3A6969","seeders":0,"leechers":0,"uploader":"R0thschild","files":1,"time":1353452653,"description":"Gallery: \n <a href="\nhttp://imagedomino.com/?g=455173" rel="nofollow" target="_NEW">\nhttp://imagedomino.com/?g=455173</a>","torrent":{"xt":"urn:btih:405801bfca949501a9355ef326d0d601bf54fad2","amp;dn":"Take5-Girls+-+Sam+Private","amp;tr":["udp%3A%2F%2Ftracker.openbittorrent.com%3A80","udp%3A%2F%2Fopen.demonii.com%3A1337","udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969","udp%3A%2F%2Fexodus.desync.com%3A6969"],"infoHash":"405801bfca949501a9355ef326d0d601bf54fad2","infoHashBuffer":{"type":"Buffer","data":[64,88,1,191,202,148,149,1,169,53,94,243,38,208,214,1,191,84,250,210]},"announce":[],"urlList":[]}} |
{
"proposal": {
"arguable": true,
"author": null,
"author_id": null,
"can_hide": false,
"can_hide_author": false,
"category": {
"id": 1,
"name": "Bon viure"
},
"closed": true,
"code": "BCN-2016-04-10394",
"conflictive": false,
"created_at": "09/04/2016",
"district": {
"id": 10,
"name": "Sant Mart\u00ed"
},
"editable": false,
"external_url": "",
"flagged": null,
"from_meeting": true,
"hidden": false,
"id": 10394,
"official": false,
"permissions": {
"comment": false,
"comment_as_administrator": false,
"comment_as_moderator": false
},
"scope_": "district",
"social_media_image_url": "https://decidim.barcelona/assets/social-media-icon-1bdc8642dd06be182477369bbb1bd5399cd7dda6aefeab4b1d1a9693cce26838.png",
"source": "meeting",
"status": "accepted",
"subcategory": {
"category_id": 1,
"id": 8,
"name": "Migraci\u00f3, interculturalitat i discriminaci\u00f3 zero",
"position": 8
},
"summary": "Obrir nous n\u00ednxols laborals i diversificar l\u2019oferta mitjan\u00e7ant la prospecci\u00f3 i sensibilitzaci\u00f3 de les empreses, possibilitant les renovacions e intentat garantir una estabilitat laboral. Obrir el n\u00ednxol de la pesca, pensant en els pescadors migrants de l\u2019est de l\u2019\u00c0frica, amb una formaci\u00f3 espec\u00edfica becada o amb la possibilitat d\u2019acreditaci\u00f3.",
"title": "Obrir nous n\u00ednxols laborals i diversificar l\u2019oferta que s\u2019adre\u00e7a a les persones d\u2019origen migrant",
"total_comments": 0,
"total_negative_comments": 0,
"total_neutral_comments": 0,
"total_positive_comments": 0,
"total_votes": 1,
"url": "https://decidim.barcelona/pam/proposals/obrir-nous-ninxols-laborals-i-diversificar-l-oferta-que-s-adreca-a-les-persones-d-origen-migrant",
"votable": null,
"voted": null
}
} |
{"content": "#GE2015 love #miliband stance on education however the is a problem that's not been addressed what about the ones who have been failed?", "entities": [{"entity": "education", "type": "topic keyword", "id": 2, "offset": 33}], "topics": [{"topic": "education", "id": 1}], "tweet_id": "565849049048547328"} |
{"firstName":"Leann","lastName":"Smitham","email":"pwalker@hotmail.com","phone":"+1 (862) 917-3797","bio":"Maiores ducimus repellat perspiciatis. Rem est non unde aut eos sit. Corrupti cum et rerum libero. Porro aliquam voluptas qui nihil alias.","price":96127,"is_verified":false,"company":"Wilkinson Group","time":1525003632,"about":"Saepe necessitatibus dolor non et beatae non ex ipsam vitae non dolor quis delectus fugit id saepe aut quisquam nam dolorem ut facere possimus excepturi et accusamus sunt aspernatur similique aut a magni sit aut debitis consequatur asperiores consequatur minus quia et ea eum officiis voluptatem nostrum ut recusandae officia odio vel et repudiandae neque possimus doloribus quia dolores explicabo nihil sint et rem est nesciunt cumque corrupti at incidunt nesciunt voluptatibus reprehenderit quo expedita quisquam quaerat praesentium nihil molestias neque accusantium fuga provident quia quia quia perferendis ut eos adipisci dolore ratione deserunt nam voluptas placeat voluptatem est error et pariatur molestias iure repudiandae distinctio vel voluptates cumque sint dolor doloremque quis labore non voluptatem aut rem ullam culpa quod aut et itaque eum accusamus tempore sit non ipsa consequatur illo sit nihil aliquid dolorem ab suscipit enim sapiente voluptatem dolores incidunt dignissimos alias rerum qui error ut quasi totam sed temporibus aut consectetur perspiciatis aut omnis reiciendis laboriosam consectetur id fugiat officia vel dolor impedit pariatur ratione velit aliquam ut voluptatem magnam aut deserunt fuga iusto voluptatum vero repellat reprehenderit cumque laboriosam est facilis dolores adipisci illo ipsam ut eos aut enim dolorum qui atque voluptas sunt nihil beatae assumenda deleniti sequi labore impedit alias a esse iste aut et ullam eum sunt corrupti consectetur ab aut accusantium quaerat voluptates tempore ipsum a accusantium dolorum exercitationem iste repellendus necessitatibus aspernatur ducimus aspernatur et iste ullam excepturi in alias nisi fuga voluptas consectetur ipsa ea provident voluptas adipisci occaecati magni et eligendi ut saepe tenetur optio quae enim esse nesciunt labore in quam odit rerum saepe amet adipisci excepturi ducimus nulla inventore nemo voluptas et non nam id et veritatis et nisi harum eum non optio quibusdam architecto totam itaque sed et non itaque deserunt pariatur voluptate qui harum aut quis nemo nobis dolores dolores voluptate doloremque magnam ut tenetur eum iusto sapiente voluptatem labore dolores assumenda ut rem et dolore doloremque qui quia similique quos quasi et esse ea dolores quisquam et incidunt nulla explicabo qui minima in magnam id sint hic dolorem vel maiores sunt explicabo vel qui illum placeat et consectetur maxime quasi omnis ipsum dolorum repellat illo modi accusamus deserunt explicabo delectus corrupti quasi voluptatum corporis ipsum consectetur odit placeat qui eos temporibus architecto consequatur sint sequi ad praesentium rerum possimus cupiditate et distinctio illum hic qui impedit quia a rerum ratione nihil error inventore voluptatem in ipsam minima aliquam tempora quo id mollitia a alias enim tempora et eos iusto quo consequatur minima qui molestias pariatur sed est occaecati quidem neque ea quidem dolorum repudiandae corporis veniam iste harum ex odit vero praesentium possimus molestias fugiat quos molestiae consequuntur ipsam nam quis itaque doloribus modi quidem in adipisci eum voluptas nulla sequi culpa nisi perferendis natus molestias provident sit a facere facere omnis delectus qui corporis illum assumenda perferendis recusandae qui excepturi fuga recusandae eaque facere asperiores ullam itaque eaque sequi adipisci nesciunt aut exercitationem ut voluptas commodi eligendi praesentium non sint eaque officiis facilis dolor minima enim sed eligendi fuga nostrum dolor optio et quis nesciunt error culpa voluptas asperiores odit recusandae quo cum a eos excepturi nesciunt qui et enim eius id ea in rem aut exercitationem neque reiciendis repellat iusto architecto veritatis quas sint quisquam excepturi reiciendis accusamus aut dolores consequatur recusandae ratione consequatur dolorem natus et quidem quas quia placeat minus aut delectus dolore aut et odio id et numquam rerum voluptate id quos cumque consequatur doloribus eos et nulla explicabo velit in dicta officia quidem nam nostrum quam qui quis eveniet saepe molestias et saepe.","address":{"streetAddress":"2385 Harvey Lodge","city":"8419 Dariana Mount\nLabadietown, MT 82680-7070","postcode":"40334","state":"West Virginia"},"article":{"id":9,"title":"Nam sunt dolorem et voluptas.","text":"Magnam dignissimos qui sit modi nam dolor quidem voluptas molestiae labore optio at inventore veniam veritatis enim consectetur voluptas sed suscipit quod sint optio rerum est ipsa aliquam laudantium quas facilis eos et eum deleniti fugiat distinctio quo maiores non ab consequuntur similique vero mollitia eaque magnam et magni aliquid dolores molestiae sed vero iste ipsam impedit earum numquam qui necessitatibus nesciunt sequi dolor ea repudiandae enim et soluta maiores quia maiores sapiente maxime dolorem voluptas est quos saepe facilis voluptate consequatur omnis est autem corrupti in odit quae magni quo excepturi suscipit reiciendis possimus sit est non nesciunt quidem illo nemo dolorum ratione laborum beatae quas excepturi odio rerum nostrum voluptate optio aut cum et sit nulla nulla inventore sunt neque magnam illum odit autem doloremque asperiores est consequatur fugit et quas autem rerum impedit magnam facilis nam fugit fugit dolorum doloribus quaerat mollitia accusamus illum aliquam laboriosam vel sapiente ea vel quas recusandae et excepturi natus consequatur iste tenetur aperiam ea magnam consequuntur voluptatem esse minus adipisci reprehenderit maiores sed ab officiis odit voluptas voluptatem quibusdam quaerat laboriosam quasi natus minus illum cupiditate doloribus quia accusamus labore odio repellendus incidunt eveniet ut ullam debitis fugit earum dolore aliquid molestiae dicta tempore nesciunt quas natus eum quia minima accusantium corrupti amet magnam explicabo error illum pariatur repellendus occaecati id quasi voluptatem nihil facilis ut vitae deleniti ea quasi et qui soluta incidunt expedita nisi dolorem harum itaque laboriosam quos pariatur mollitia recusandae qui in deleniti rerum pariatur molestiae sit et vitae dolores numquam necessitatibus dignissimos aut eligendi quaerat sequi quia ut magnam cum quam dolorem quos quisquam est minus officiis dolores repudiandae doloremque magnam sed ab ipsam tempore fugiat error aut adipisci eum quaerat placeat velit porro veniam quae minus aut fugit deleniti enim omnis excepturi a facere sed itaque est voluptates accusantium quis fuga iure ad debitis pariatur odio assumenda cum in dolorem eveniet consequatur est facere quia quo officia tempora numquam est magni consectetur ut dolor molestiae ipsam ut in ipsam aspernatur voluptate facere sed laudantium omnis sit in pariatur quo omnis et optio voluptate vel iusto ut mollitia voluptatem tempora laboriosam odit officiis magnam voluptates molestias ab voluptas aspernatur voluptas fuga repellendus itaque et voluptates nemo sint ut doloremque inventore deserunt quo aut dicta ratione dignissimos dolorum cumque omnis et quod soluta pariatur enim qui qui aut harum omnis quam et ea quo eos numquam pariatur itaque rem labore doloremque voluptatibus eos et ut vel corporis architecto cum eaque voluptate vitae et quia voluptas sint et dolores deleniti quisquam ut in exercitationem sint in ut aut unde placeat et quidem et nulla et deleniti aut saepe ut esse deserunt voluptatibus et sequi dolor corporis ut debitis quos qui magnam et repudiandae voluptate voluptatibus ad beatae mollitia eum in repellendus et dolorem tempore fuga adipisci omnis a voluptas eius recusandae est deleniti similique quis rerum aspernatur odit nihil ratione ab laborum eaque omnis impedit quo eius unde sed facere rerum ut est quasi enim possimus sunt non incidunt doloremque aut modi veniam qui quidem cupiditate accusantium est voluptas totam sint est totam labore sed totam ipsam velit enim vitae perspiciatis quas quis ipsum excepturi ipsa sunt suscipit et velit accusamus et autem illum similique molestias quo sunt vel in molestiae velit possimus harum quisquam eos laudantium velit consequatur ea possimus sed consequatur laudantium numquam libero corporis ab quis earum repellendus error quidem iusto consectetur nesciunt optio harum qui nisi reprehenderit itaque quisquam voluptas quia ullam asperiores vitae sint quidem beatae molestiae quia vel pariatur illo esse qui ad quisquam molestiae laudantium harum eius quam quisquam occaecati quia nulla debitis unde in expedita neque impedit voluptatem quas quo autem sapiente sint eligendi id minima omnis est distinctio similique est eos eaque sed sint optio illo illum nobis amet nisi quis harum consectetur recusandae sit amet assumenda molestiae facilis molestiae a saepe dicta possimus eum deserunt vel animi autem quae laudantium quia sunt laboriosam sit voluptate sed veritatis natus corporis omnis similique deserunt deserunt culpa minus incidunt provident incidunt occaecati voluptas laudantium earum perspiciatis et et autem et maxime voluptates tempora aspernatur commodi laudantium vel reprehenderit rerum et enim ipsa atque et modi porro voluptates saepe ab qui in aut molestiae numquam repellat possimus molestias eius autem reprehenderit officiis atque omnis veniam nihil molestiae libero eos minima distinctio quia laboriosam sequi consectetur sint a in autem magnam sunt eveniet fuga voluptas et nostrum ad quas modi voluptatem nesciunt fugit rerum qui ullam quia ad accusamus illum recusandae iste et quod nostrum sint dolorem impedit sed eum pariatur ut quia id id repellat quo et odio adipisci sunt rerum in numquam quis est asperiores optio alias voluptatem ut nostrum soluta quasi animi minima sed nihil sapiente provident sit voluptatem et quos sed officia dolorum aliquam dignissimos quasi eligendi labore molestiae qui officiis sit placeat fugiat voluptatem officiis alias rerum sunt labore atque quisquam saepe et et eligendi vel voluptatibus qui quia aliquam voluptatem placeat alias nemo eos rerum atque exercitationem quis inventore doloribus ipsa rerum quod natus facilis consequatur minima aliquam atque quaerat eaque perferendis beatae sit quae facilis optio dicta exercitationem neque a est rem odit incidunt illum corporis dolores et molestias nesciunt voluptatem alias minima excepturi eum pariatur eos dolore accusantium distinctio voluptates error sit dolor quia quod reiciendis autem et voluptate et exercitationem quidem id a dolores cum rerum ab suscipit cupiditate est quae magni fuga omnis sunt sunt expedita quia rem in aperiam impedit omnis cumque et officiis non non ea et ea illo aut sed nisi quasi ducimus laudantium ab ullam alias at odit reprehenderit possimus rem sed voluptas illum labore dolorem iste ea sunt velit accusamus iusto voluptatem aut iusto et quia mollitia et sit eveniet fugiat fugit neque repellat ut esse iure rerum alias nostrum cupiditate quos cum quae ea ex ipsa perferendis nisi placeat dolorem fuga quibusdam repellat consequuntur eos animi eos eos odit expedita aperiam molestiae saepe eum delectus sunt iste rerum quam deserunt excepturi omnis ut sunt fugiat autem iusto quaerat sed ipsum dolores labore officia veniam ipsam sint aliquam enim voluptatem dolore consectetur deleniti nihil et sequi quas ex rerum eum assumenda facere voluptates voluptas dolorum tenetur repudiandae harum nisi officia occaecati maiores omnis et corporis ut eligendi et distinctio et provident corrupti nihil quos sit nobis dolorem accusantium consequuntur corporis soluta excepturi quod ab quos et ipsam molestiae vero ut aperiam ut ullam totam ipsa ad eos et sunt odio deserunt eum saepe iure consequuntur quia vero vero quo est amet aut vero eveniet optio neque labore et rerum omnis maxime facere dolorum hic magnam rerum vitae est ipsum laudantium dolorum nisi perspiciatis praesentium nulla aliquam repudiandae ut dolorem doloremque accusamus voluptatum nulla autem ut eum possimus est neque sint officiis libero officia vel libero ad quo quisquam vel quasi iure consequuntur delectus porro quas sequi qui corporis aliquam pariatur quas quaerat aut optio amet sunt dolorem et aut porro asperiores sunt deserunt in repellendus explicabo numquam nam et error ipsam velit fuga beatae vel corrupti et et occaecati et molestiae consequatur optio deserunt sed aut sed possimus porro nihil illo et pariatur veniam ipsam occaecati vel ducimus voluptatem consequuntur qui qui maxime aut sunt id esse ut maxime est occaecati aut dolor omnis quibusdam cum nisi aperiam et id vel est sit quidem deleniti sed aut repellat laborum fugiat et eum dolorem deleniti id facilis eos maxime officiis culpa occaecati sunt ex nulla laboriosam alias vel odit necessitatibus cumque et laborum vitae sunt eos omnis in nostrum voluptatem neque provident qui rerum voluptate id dolores est fugit facilis aspernatur itaque enim hic quis quas at optio magni ab expedita eius odit deserunt aut eos earum soluta quia at sint ad aliquam id ducimus fuga eveniet iusto molestiae sequi architecto cumque fugiat asperiores numquam aut iste quia sed incidunt."}} |
{"name":"The Shared Web","permalink":"the-shared-web","crunchbase_url":"http://www.crunchbase.com/company/the-shared-web","homepage_url":"http://useframe.com/","blog_url":"http://useframe.com/","blog_feed_url":"","twitter_username":"thesharedweb","category_code":"web","number_of_employees":3,"founded_year":null,"founded_month":null,"founded_day":null,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":"","tag_list":"techstars, techstars-seattle-2010","alias_list":null,"email_address":"founders@thesharedweb.com","phone_number":"","description":"Social Web","created_at":"Fri Oct 08 00:08:35 UTC 2010","updated_at":"Tue Aug 07 00:06:55 UTC 2012","overview":"<p>A Better Way to Discover and Share the Web.</p>\n\n<p>Discover.\nThere’s a lot of stuff on the web. We, like you, only want to see the best stuff, personalized for what you like.</p>\n\n<p>Share.\nEach day we all see so many interesting things on the intertubes. There should be a place to effortlessly blast out all the interesting things you’re seeing so others can check them out too! This is that place.</p>","image":{"available_sizes":[[[150,150],"assets/images/resized/0010/9756/109756v2-max-150x150.png"],[[250,250],"assets/images/resized/0010/9756/109756v2-max-250x250.png"],[[450,450],"assets/images/resized/0010/9756/109756v2-max-450x450.png"]],"attribution":null},"products":[],"relationships":[{"is_past":true,"title":"Co-Founder","person":{"first_name":"Nav","last_name":"Patel","permalink":"nav-patel","image":null}},{"is_past":true,"title":"Co-Founder","person":{"first_name":"Kareem","last_name":"Amin","permalink":"kareem-amin","image":{"available_sizes":[[[116,116],"assets/images/resized/0022/1097/221097v2-max-150x150.jpg"],[[116,116],"assets/images/resized/0022/1097/221097v2-max-250x250.jpg"],[[116,116],"assets/images/resized/0022/1097/221097v2-max-450x450.jpg"]],"attribution":""}}},{"is_past":true,"title":"Co-Founder","person":{"first_name":"Nicolae","last_name":"Rusan","permalink":"nicolae-rusan","image":{"available_sizes":[[[150,112],"assets/images/resized/0014/4904/144904v2-max-150x150.jpg"],[[250,187],"assets/images/resized/0014/4904/144904v2-max-250x250.jpg"],[[450,337],"assets/images/resized/0014/4904/144904v2-max-450x450.jpg"]],"attribution":""}}}],"competitions":[],"providerships":[],"total_money_raised":"$225k","funding_rounds":[{"round_code":"seed","source_url":"","source_description":"","raised_amount":225000,"raised_currency_code":"USD","funded_year":2011,"funded_month":1,"funded_day":1,"investments":[]},{"round_code":"seed","source_url":"http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/","source_description":"TechStars Launches Ten New Startups In Seattle","raised_amount":null,"raised_currency_code":"USD","funded_year":2010,"funded_month":11,"funded_day":1,"investments":[{"company":{"name":"TechStars","permalink":"techstars","image":{"available_sizes":[[[134,101],"assets/images/resized/0000/4033/4033v1-max-150x150.png"],[[134,101],"assets/images/resized/0000/4033/4033v1-max-250x250.png"],[[134,101],"assets/images/resized/0000/4033/4033v1-max-450x450.png"]],"attribution":null}},"financial_org":null,"person":null}]}],"investments":[],"acquisition":{"price_amount":null,"price_currency_code":"USD","term_code":null,"source_url":"http://www.finsmes.com/2012/05/sailthru-acquires-frame.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29","source_description":"Sailthru Acquires Frame","acquired_year":2012,"acquired_month":4,"acquired_day":5,"acquiring_company":{"name":"Sailthru","permalink":"sailthru","image":{"available_sizes":[[[150,36],"assets/images/resized/0018/7848/187848v1-max-150x150.jpg"],[[240,59],"assets/images/resized/0018/7848/187848v1-max-250x250.jpg"],[[240,59],"assets/images/resized/0018/7848/187848v1-max-450x450.jpg"]],"attribution":null}}},"acquisitions":[],"offices":[{"description":"","address1":"70 Broadway","address2":"4th Floor","zip_code":"","city":"New York","state_code":"NY","country_code":"USA","latitude":null,"longitude":null}],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[{"available_sizes":[[[150,93],"assets/images/resized/0010/9757/109757v2-max-150x150.jpg"],[[250,155],"assets/images/resized/0010/9757/109757v2-max-250x250.jpg"],[[450,279],"assets/images/resized/0010/9757/109757v2-max-450x450.jpg"]],"attribution":null}],"external_links":[{"external_url":"http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/","title":"1.TechStars Launches Ten New Startups In Seattle"},{"external_url":"http://www.building43.com/videos/2010/12/21/the-shared-web-making-curators-of-us-all/","title":"Building 43 Interview: The Shared Web, Making Curators of Us All"},{"external_url":"http://interviews.betali.st/interviews/nicolae-rusan","title":"Interview with The Shared Web Betali.st"}]} |
{
"name": "helsingborg-stad/municipio-school",
"description": "Official school theme of Helsingborgs stad",
"type": "wordpress-theme",
"license": "MIT",
"authors": [
{
"name": "Kristoffer Svanmark",
"email": "kristoffer.svanmark@knowit.se"
}
],
"require": {}
}
|
{
"id": 975102227,
"type": "Feature",
"properties": {
"addr:full":"453 7E Av Dolbeau-Mistassini QC G8L 3B3",
"addr:housenumber":"453",
"addr:postcode":"g8l 3b3",
"addr:street":"7E Av Dolbeau-Mistassini",
"edtf:cessation":"uuuu",
"edtf:inception":"uuuu",
"geom:area":0.0,
"geom:area_square_m":0.0,
"geom:bbox":"-72.2367248535,48.8775558472,-72.2367248535,48.8775558472",
"geom:latitude":48.877556,
"geom:longitude":-72.236725,
"iso:country":"CA",
"mz:hierarchy_label":1,
"mz:is_current":-1,
"sg:address":"453 7E Av",
"sg:city":"Dolbeau-Mistassini",
"sg:classifiers":[
{
"category":"Wholesale",
"subcategory":"Fruits & Vegetables",
"type":"Manufacturing & Wholesale Goods"
}
],
"sg:owner":"simplegeo",
"sg:phone":"+1 418 276 4120",
"sg:postcode":"G8L 3B3",
"sg:province":"QC",
"src:geom":"simplegeo",
"wof:belongsto":[],
"wof:breaches":[],
"wof:concordances":{
"sg:id":"SG_7mIFOvOrgED6Q2wPOFaOzi_48.877556_-72.236725@1293573121"
},
"wof:country":"CA",
"wof:created":1472277668,
"wof:geomhash":"6adb0449c4bb21449dc8f85e12637306",
"wof:hierarchy":[],
"wof:id":975102227,
"wof:lastmodified":1499446426,
"wof:name":"Usine DE Congelation-St-Bruno",
"wof:parent_id":-1,
"wof:placetype":"venue",
"wof:repo":"whosonfirst-data-venue-ca",
"wof:superseded_by":[],
"wof:supersedes":[],
"wof:tags":[]
},
"bbox": [
-72.2367248535,
48.8775558472,
-72.2367248535,
48.8775558472
],
"geometry": {"coordinates":[-72.23672485349999,48.8775558472],"type":"Point"}
} |
[
{
"merged": "H:\\@Dev\\QuickOSC\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\qosc.png",
"source": "H:\\@Dev\\QuickOSC\\app\\src\\main\\res\\drawable-hdpi\\qosc.png"
},
{
"merged": "C:\\Users\\cyber\\AndroidStudioProjects\\QuickOSC\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\qosc.png",
"source": "C:\\Users\\cyber\\AndroidStudioProjects\\QuickOSC\\app\\src\\main\\res\\drawable-hdpi\\qosc.png"
}
] |
{
"first_traded_price": 707.0,
"highest_price": 709.0,
"isin": "IRO7ARNP0001",
"last_traded_price": 700.0,
"lowest_price": 680.0,
"trade_volume": 178879.0,
"unix_time": 1508889600
} |
{
"answers": [
"B",
"C"
],
"options": [
[
"he smoked too much",
"he worried too much",
"he stopped smoking",
"he ate too little"
],
[
"Fred had given him the wrong advice on purpose.",
"he never liked being told what to do",
"he in fact had never really understood what Fred meant",
"Fred's advice had brought him much trouble"
]
],
"questions": [
"When Joe became thin the first time it was because _ .",
"In the end Joe was unhappy about his friendship with Fred because _"
],
"article": "Joe Bloggs always had a cigarette on his lips. He smoked while he read, while he watched TV, and while he drank a cup of coffee. He smoked forty cigarettes a day, but he was happy.\nJoe's friend, Fred Brown, said to him, \"It is very bad to smoke\". When Joe heard this , he started to worry and became so thin that he went to Fred for help.\nFred said , \"You must eat more\". O Joe did not smoke , but he ate chocolate , and he became very fat. Again he went to Fred for help.\nFred said , \" You must not eat chocolate\". So Joe stopped eating chocolate , but he went back to smoking cigarettes. He became thin again but he was not happy, because he still smoked.\nSometimes Joe Bloggs wished Fred Brown was not his friend!",
"id": "asc17348"
} |
{
"id": 100480,
"rating": 851,
"attempts": 153,
"fen": "5k2/p6p/1p1r1r2/2p1N3/P1PnRp2/7P/1P3KP1/4R3 b - - 2 34",
"color": "white",
"initialPly": 68,
"gameId": "l0QtLvsH",
"lines": {
"e5d7": {
"f8g7": {
"d7f6": {
"e6f6": "win"
}
}
}
},
"vote": 3,
"enabled": true
} |
{
"first_traded_price": 1.83e4,
"highest_price": 18970.0,
"isin": "IRO1DFRB0001",
"last_traded_price": 1.88e4,
"lowest_price": 1.83e4,
"trade_volume": 104074.0,
"unix_time": 1382918400
} |
{"track":"csharp","exercise":"rotational-cipher","id":"ab44b0bcc6a74ce3a1d64cf7e6cf03e4","url":"https://exercism.io/my/solutions/ab44b0bcc6a74ce3a1d64cf7e6cf03e4","handle":"freddie2025","is_requester":true,"auto_approve":false} |
{
"first_traded_price": 1982.0,
"highest_price": 1990.0,
"isin": "IRO1SKAZ0001",
"last_traded_price": 1956.0,
"lowest_price": 1956.0,
"trade_volume": 25224.0,
"unix_time": 1459296000
} |
["ddcada7b529a73b887ed7ccce3b5c2c7ae2528b2"] |
{"objects":{"water":{"type":"GeometryCollection","geometries":[]},"buildings":{"type":"GeometryCollection","geometries":[]},"places":{"type":"GeometryCollection","geometries":[{"type":"Point","properties":{"kind":"locality","name":"Antsirabe","name:ko":"\uc548\uce58\ub77c\ubca0","kind_detail":"city","source":"openstreetmap.org","min_zoom":8.0,"name:ru":"\u0410\u043d\u0446\u0438\u0440\u0430\u0431\u0435","population":180000,"name:zh":"\u5b89\u9f50\u62c9\u8d1d","id":300272255,"name:ja":"\u30a2\u30f3\u30c4\u30a3\u30e9\u30d9"},"coordinates":[1830,2360]}]},"transit":{"type":"GeometryCollection","geometries":[]},"pois":{"type":"GeometryCollection","geometries":[]},"boundaries":{"type":"GeometryCollection","geometries":[{"type":"LineString","properties":{"kind":"region","name":"Vatovavy-Fitovinany - Atsinanana","sort_rank":256,"kind_detail":"4","id:right":-3204237,"source":"openstreetmap.org","min_zoom":8.0,"id:left":-6951285,"name:left":"Vatovavy-Fitovinany","id":-6951285,"osm_relation":true,"name:right":"Atsinanana"},"arcs":[0]},{"type":"LineString","properties":{"kind":"region","name":"Vatovavy-Fitovinany","sort_rank":256,"kind_detail":"4","source":"openstreetmap.org","min_zoom":8.0,"id":-6951285,"osm_relation":true},"arcs":[1]},{"type":"MultiLineString","properties":{"kind":"region","name":"Itasy - Vakinankaratra","sort_rank":256,"kind_detail":"4","id:right":-3204236,"source":"openstreetmap.org","min_zoom":8.0,"id:left":-6951167,"name:left":"Itasy","id":-6951167,"osm_relation":true,"name:right":"Vakinankaratra"},"arcs":[[2],[3],[4]]},{"type":"LineString","properties":{"kind":"region","name":"Analamanga - Vakinankaratra","sort_rank":256,"kind_detail":"4","id:right":-3204236,"source":"openstreetmap.org","min_zoom":8.0,"id:left":-6951165,"name:left":"Analamanga","id":-6951165,"osm_relation":true,"name:right":"Vakinankaratra"},"arcs":[5]},{"type":"LineString","properties":{"kind":"region","name":"Atsinanana - Vakinankaratra","sort_rank":256,"kind_detail":"4","id:right":-3204236,"source":"openstreetmap.org","min_zoom":8.0,"id:left":-3204237,"name:left":"Atsinanana","id":-3204237,"osm_relation":true,"name:right":"Vakinankaratra"},"arcs":[6]},{"type":"LineString","properties":{"kind":"region","name":"Atsinanana","sort_rank":256,"kind_detail":"4","source":"openstreetmap.org","min_zoom":8.0,"id":-3204237,"osm_relation":true},"arcs":[7]},{"type":"LineString","properties":{"kind":"region","name":"Vakinankaratra","sort_rank":256,"kind_detail":"4","source":"openstreetmap.org","min_zoom":8.0,"id":-3204236,"osm_relation":true},"arcs":[8]}]},"roads":{"type":"GeometryCollection","geometries":[{"type":"LineString","properties":{"sort_rank":380,"kind_detail":"primary","min_zoom":8.0,"kind":"major_road","source":"openstreetmap.org"},"arcs":[9]},{"type":"LineString","properties":{"source":"openstreetmap.org","kind":"major_road","sort_rank":380,"kind_detail":"primary","ref":"N 34","min_zoom":8.0},"arcs":[10]},{"type":"LineString","properties":{"source":"openstreetmap.org","kind":"major_road","landuse_kind":"urban_area","sort_rank":380,"kind_detail":"primary","ref":"N 34","min_zoom":8.0},"arcs":[11]},{"type":"MultiLineString","properties":{"source":"openstreetmap.org","kind":"major_road","sort_rank":380,"kind_detail":"primary","ref":"N 7","min_zoom":8.0},"arcs":[[12],[13],[14],[15],[16],[17],[18]]},{"type":"MultiLineString","properties":{"source":"openstreetmap.org","kind":"major_road","landuse_kind":"urban_area","sort_rank":380,"kind_detail":"primary","min_zoom":8.0},"arcs":[[19],[20]]},{"type":"LineString","properties":{"kind":"major_road","name:en":"Circle Route","sort_rank":380,"kind_detail":"primary","source":"openstreetmap.org","min_zoom":8.0,"landuse_kind":"urban_area","ref":"N 7","id":37802262},"arcs":[21]},{"type":"MultiLineString","properties":{"source":"openstreetmap.org","kind":"major_road","landuse_kind":"urban_area","sort_rank":380,"kind_detail":"primary","ref":"N 7","min_zoom":8.0},"arcs":[[22],[23],[24],[25],[26],[27],[28],[29]]}]},"earth":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"sort_rank":10,"source":"naturalearthdata.com","kind":"earth","min_zoom":0.0,"id":1367},"arcs":[[30]]}]},"landuse":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"source":"naturalearthdata.com","kind":"urban_area","name":"","area":850110295,"sort_rank":11,"min_zoom":4.0},"arcs":[[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]]]}]}},"type":"Topology","transform":{"translate":[46.40625,-20.6327842504],"scale":[0.0003433228,0.0003226662]},"arcs":[[[4096,553],[-101,-49],[-48,34]],[[3947,538],[-22,-34],[-104,-47],[-49,-130],[-59,9],[-116,121],[-157,-376],[-6,-81]],[[0,3768],[143,87],[47,-6],[60,-73],[39,-8],[62,46],[279,-67],[76,49],[41,94],[96,67],[32,56],[122,14],[114,69]],[[2140,4096],[51,-16],[66,16]],[[2374,4096],[146,-111],[18,104],[145,-12],[56,19]],[[3406,4096],[-35,-93],[52,-157],[42,-2],[36,-52],[219,-32],[238,-134],[84,-3],[54,-82]],[[4096,2662],[-154,-166],[-78,22],[-30,-28],[-201,-330],[60,-237],[-13,-177]],[[3680,1746],[72,-16],[48,-183],[-151,-366],[-26,-350],[51,-139],[58,0],[162,-69],[53,-85]],[[0,1239],[59,14],[40,47],[43,-83],[136,-37],[11,24],[33,-66],[171,7],[48,93],[47,10],[9,-21],[47,8],[19,-49],[76,2],[86,-88],[84,9],[75,33],[-45,82],[28,47],[7,-52],[50,-22],[-9,-46],[75,-23],[2,-30],[31,-14],[43,16],[-32,22],[22,10],[47,-30],[-8,20],[60,67],[77,-61],[16,117],[69,-1],[21,39],[-18,22],[53,31],[-2,36],[45,3],[7,41],[79,26],[-8,16],[39,-11],[8,29],[5,-54],[47,-55],[64,32],[-1,-39],[38,-12],[83,63],[11,47],[36,3],[6,-28],[16,31],[99,4],[80,63],[81,-98],[37,-8],[22,152],[83,126],[40,1],[75,-82],[32,-1],[100,103],[124,21],[194,-3],[31,-33],[84,-15],[72,54],[50,-11],[29,-36],[222,-5],[279,50]],[[2992,3886]],[[0,3244],[23,25],[83,4],[58,-87],[65,-34],[18,-43],[89,-54],[21,-39],[72,2],[32,-43],[59,-7],[53,-60],[15,-77],[47,-8],[85,-133],[115,-21],[71,-51],[432,-167],[119,-91],[154,45],[65,-38],[82,16]],[[1825,2410],[3,-23],[-70,-4]],[[2293,0],[15,84],[61,47],[69,143],[28,222],[-90,84],[-109,37],[-94,158],[24,47],[-196,431],[-42,337],[-68,198],[3,199],[-48,126],[1,199]],[[1920,2504],[-56,-30]],[[2497,3104],[-61,37],[-157,30],[-86,-63],[30,-88],[-1,-124],[-86,-110],[-22,-88],[-113,-121]],[[2636,3069],[-90,-35],[-24,35]],[[2989,3888],[-35,-50],[13,-50],[-51,-61],[77,-148],[-9,-150],[-89,-77],[-138,-65],[-20,-150],[-93,-62]],[[2989,3888],[4,-3]],[[3094,4096],[-23,-131],[-48,-40],[4,-36],[-34,-4]],[[1831,2445],[1,-1],[0,1],[-1,0]],[[1845,2375],[-1,0],[1,0]],[[1837,2392],[8,-17]],[[1832,2444],[5,-52]],[[1864,2474],[-32,-29]],[[1844,2375],[2,-3]],[[1846,2372],[-1,3]],[[1846,2372],[1,-60]],[[2001,2577],[-21,-43],[-60,-30]],[[2522,3069],[-25,35]],[[2644,3075],[-8,-6]],[[0,4096],[4096,0],[0,-4096],[-4096,0],[0,4096]],[[2386,795],[-131,17],[-31,44],[0,78],[112,-36],[37,-38],[13,-65]],[[2171,1155],[-44,20],[78,93],[59,7],[57,-31],[-34,-50],[-116,-39]],[[3259,1278],[-84,31],[-13,107],[70,-4],[39,-38],[-12,-96]],[[2677,1794],[-109,22],[-21,116],[101,-30],[28,-39],[1,-69]],[[2896,2069],[-122,70],[31,52],[195,-52],[-40,-61],[-64,-9]],[[2005,2680],[-8,-197],[-77,21],[-20,82],[-50,-62],[36,-131],[-19,-82],[-52,3],[-64,78],[-66,31],[-12,60],[-32,0],[65,69],[7,160],[53,66],[214,-40],[25,-58]],[[3680,2758],[-32,-103],[-101,-5],[-94,39],[32,69],[65,-34],[77,95],[53,8],[0,-69]],[[3580,3225],[-100,121],[-25,164],[128,75],[-18,-197],[35,-70],[80,-43],[-100,-50]],[[3257,3875],[48,-35],[51,-117],[-64,-27],[-60,27],[-70,137],[32,35],[63,-20]],[[2094,3757],[-83,70],[-9,50],[27,52],[65,-9],[29,-48],[-29,-115]],[[2645,3688],[64,0],[97,-69],[0,-68],[32,-1],[-32,-69],[-85,65],[-36,70],[-117,11],[-150,96],[21,48],[118,16],[55,-30],[33,-69]],[[2644,3069],[-162,0],[21,47],[109,90],[23,-18],[9,-119]],[[3162,3206],[-31,20],[-34,118],[-32,35],[33,68],[96,-68],[19,-49],[-51,-124]],[[2239,3297],[9,-40],[-179,-152],[-40,-2],[-52,43],[-12,60],[-65,35],[0,69],[97,-35],[130,104],[38,118],[59,-15],[-33,-69],[48,-116]]]} |
{
"first_traded_price": 4799.0,
"highest_price": 4899.0,
"isin": "IRO1TBAS0001",
"last_traded_price": 4755.0,
"lowest_price": 4705.0,
"trade_volume": 287283.0,
"unix_time": 1387324800
} |
{
"first_traded_price": 2756.0,
"highest_price": 2815.0,
"isin": "IRO1TBAS0001",
"last_traded_price": 2770.0,
"lowest_price": 2.7e3,
"trade_volume": 427767.0,
"unix_time": 1505174400
} |
{
"add": {
"doc": {
"id": "530bdcd862f7bd442dd57072c0c446bd41d19ee727f6c645d9c96e43d3b5932b",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/ContinentalCenterAtNightHoustonTX.jpg/220px-ContinentalCenterAtNightHoustonTX.jpg",
"previous": "On October 31, 1937, Continental moved its headquarters to Stapleton Airport in Denver, Colorado.[94] Robert F. Six arranged to have the headquarters moved to Denver from El Paso, Texas because Six believed that the airline should have its headquarters in a large city with a potential base of customers.[95]",
"after": "At a 1962 press conference in the office of Mayor of Los Angeles Sam Yorty, Continental Airlines announced that it planned to move its headquarters to Los Angeles in July 1963.[96] In 1963 Continental's headquarters moved to a two story, $2.3Â million building on the grounds of Los Angeles International Airport in Westchester, Los Angeles, California.[97][98] The July 2009 Continental Magazine issue stated that the move \"underlined Continental's western and Pacific orientation.\"[95]",
"color": "black|0.69217 dim|0.15615 gray|0.15615 dim|0.15615 grey|0.15615 gray|0.037059 grey|0.037059 dodger|0.016952 blue|0.016952 dark|0.015986 gray|0.015986 dark|0.015986 grey|0.015986 silver|0.01007 dark|0.0097556 slate|0.0097556 gray|0.0097556 royal|0.005892 blue|0.005892 "
}
}
}
|
[
{
"jungle_id":435781,
"level":"Upper-Intermediate"
}
] |
{"filename": "OMU_OB.NW5399.jpg", "tags": ["Oslo Museum"], "description": "mann, kvinner, jente, vann, skog", "permalink": "http://oslobilder.no/OMU/OB.NW5399"} |
[[["woman", 11329], ["president", 9842], ["think", 8762], ["won", 8640], ["would", 6462], ["job", 5612], ["great", 5448], ["like", 5430], ["you're", 5259], ["black", 5148], ["tonight's", 5006], ["say", 4899], ["candy", 4889], ["gay", 4873], ["mexican", 4770], ["time", 4682], ["poor", 4580], ["student", 4559], ["dog", 4539], ["unless", 4526], ["presidency", 4517], ["question", 4324], ["don't", 4266], ["fact", 3949], ["binder", 3947], ["get", 3880], ["crowley", 3728], ["one", 3643], ["tonight", 3616], ["people", 3535], ["libya", 3141], ["full", 3103], ["answer", 2743], ["good", 2664], ["gun", 2608], ["want", 2430], ["doesn't", 2423], ["right", 2361], ["said", 2302], ["vote", 2203], ["last", 2115], ["it's", 2090], ["know", 2083], ["need", 1932], ["make", 1918], ["china", 1866], ["moderator", 1851], ["look", 1820], ["big", 1805], ["year", 1780], ["minute", 1711], ["didn't", 1694], ["going", 1592], ["can't", 1586], ["potus", 1430], ["talk", 1420], ["fox", 1367], ["act", 1322], ["presidential", 1300], ["guy", 1271], ["win", 1268], ["benghazi", 1257], ["number", 1214], ["parent", 1210], ["haven't", 1201], ["per", 1198], ["check", 1186], ["text", 1181], ["candidate", 1178], ["confused", 1148], ["stop", 1142], ["news", 1122], ["shown", 1105], ["create", 1078], ["policy", 1071], ["final", 1042], ["plan", 1037], ["long", 1009], ["back", 993], ["word", 986], ["terror", 983], ["got", 975], ["better", 974], ["main", 965], ["really", 959], ["speaking", 955], ["immigration", 944], ["american", 926], ["human", 917], ["take", 913], ["attack", 912], ["video", 908], ["tax", 908], ["even", 883], ["never", 860], ["poll", 854], ["government", 838], ["thing", 831], ["consider", 819], ["oil", 818]], [["@chrisrockoz", 7676], ["@huffingtonpost", 7540], ["@mittromney", 2351], ["@barackobama", 2141], ["@dickmorristweet", 1730], ["@chrisdelia", 1539], ["@karlrove", 1466], ["@onionpolitics", 1463], ["@cnn", 1239], ["@abc", 1215], ["@romneysbinder", 1211], ["@cenkuygur", 1017], ["@teamromney", 1016], ["@crowleycnn", 962], ["@reince", 747], ["@thefix", 715], ["@gop", 599], ["@romneybinders", 588], ["@annmcelhinney", 570], ["@darthvader", 553], ["@gov", 542], ["@romneyresponse", 492], ["@newsninja2012", 457], ["@huffpostpol", 442], ["@marieclaire", 417], ["@indecision", 416], ["@occupywallst", 397], ["@megynkelly", 392], ["@politicoroger", 379], ["@toddbarry", 375], ["@michaelskolnik", 372], ["@mikedrucker", 371], ["@bernardgoldberg", 364], ["@cracked", 342], ["@danabrams", 341], ["@waff48", 332], ["@ryanseacrest", 331], ["@jrubinblogger", 302], ["@joemuscardelli", 269], ["@tyleroakley", 262], ["@shelbywhite", 256], ["@roddmartin", 252], ["@gurmeetsingh", 251], ["@goprincess", 229], ["@yahoonews", 227], ["@hardball", 225], ["@jenstatsky", 223], ["@sistertoldjah", 220], ["@ebonymag", 220], ["@mcuban", 213], ["@upworthy", 213], ["@tylerkingkade", 211], ["@keep", 208], ["@bretbaier", 206], ["@cschweitz", 203], ["@poniewozik", 188], ["@thisweekabc", 187], ["@ryanwesleysmith", 185], ["@sportsnation", 184], ["@wsj", 184], ["@tcrabtree83", 183], ["@foxnews", 176], ["@bucksexton", 173], ["@msignorile", 168], ["@grauface", 163], ["@ppact", 161], ["@seanhannity", 156], ["@globalgrind", 152], ["@phaedraparks", 148], ["@huffpostcollege", 148], ["@kakukowski", 144], ["@jesus", 141], ["@aterkel", 140], ["@producermatthew", 134], ["@arrghpaine", 132], ["@jilliandeltoro", 131], ["@jamilahking", 131], ["@chrishelman", 129], ["@andreamsaul", 129], ["@greggybennett", 126], ["@mittsladybinder", 126], ["@resisttyranny", 125], ["@gabedelahaye", 125], ["@ama", 125], ["@allitrippy", 117], ["@timcast", 115], ["@seanspicer", 114], ["@erik", 114], ["@keahukahuanui", 113], ["@simonhelberg", 113], ["@kerstinshamberg", 112], ["@krmullins1964", 108], ["@coreyboles", 107], ["@lizzwinstead", 107], ["@yowan", 106], ["@democracynow", 106], ["@rickklein", 103], ["@jenhatmaker", 103], ["@willmckinley", 102], ["@robdelaney", 102]], [["#debates", 113092], ["#leadfromwithin", 4391], ["#debate", 3158], ["#debate2012", 2946], ["#tcot", 2666], ["#romney", 2224], ["#obama", 2158], ["#hofstradebate", 1909], ["#cantafford4more", 1523], ["#current2012", 1146], ["#p2", 799], ["#bindersfullofwomen", 749], ["#obama2012", 700], ["#cnndebate", 699], ["#romneyryan2012", 544], ["#teaparty", 475], ["#fastandfurious", 462], ["#election2012", 413], ["#immigration", 352], ["#hofdebate", 304], ["#gop", 293], ["#atfgunwalking", 251], ["#libya", 244], ["#townhalldebate", 236], ["#theblaze2012", 224], ["#shitstorm2012", 222], ["#cnn", 219], ["#candy", 208], ["#teamobama", 207], ["#fb", 194], ["#mittromney", 192], ["#mockthevote", 188], ["#realromney", 186], ["#lnyhbt", 185], ["#debates2012", 182], ["#strong", 181], ["#wiright", 177], ["#presidentialdebate", 172], ["#nbcpolitics", 172], ["#debate2", 171], ["#romney2012", 154], ["#cspan2012", 149], ["#benghazi", 148], ["#obamawinning", 148], ["#binderfullofwomen", 143], ["#fail", 142], ["#takeyourtopoffalready", 140], ["#youtubepolitics", 135], ["#teambarack", 124], ["#mitt", 118], ["#msnbc2012", 118], ["#election", 114], ["#mittmath", 112], ["#potus", 109], ["#g442", 107], ["#binders", 104], ["#tlot", 103], ["#shevotes", 103], ["#dreamact", 101], ["#ndaa", 98], ["#changethedebate", 96], ["#mittlies", 91], ["#nobama", 90], ["#vote", 80], ["#politics", 78], ["#sunlive", 77], ["#china", 77], ["#latism", 77], ["#sensata", 76], ["#dreamers", 76], ["#getempotus", 76], ["#candycrowley", 75], ["#romneywinning", 75], ["#foxnews", 75], ["#decision2012", 72], ["#rnc", 72], ["#pdslive", 71], ["#bindergate", 69], ["#imhereivote", 69], ["#boom", 67], ["#msnbc", 65], ["#truth", 63], ["#factcheck", 62], ["#news", 61], ["#youngcons", 60], ["#malarkey", 60], ["#romneysbinders", 58], ["#mittens", 57], ["#obamacare", 57], ["#voteromney", 57], ["#ajstream", 56], ["#hofstradebates", 54], ["#cnbc2012", 53], ["#winning", 52], ["#war", 51], ["#women", 51], ["#yankees", 51], ["#mitt2012", 50], ["#getglue", 49], ["#factsmatter", 48]], [["Romney", 45347], ["Obama", 32803]]] |
{
"first_traded_price": 6.7e3,
"highest_price": 6.7e3,
"isin": "IRO1MOTJ0001",
"last_traded_price": 6665.0,
"lowest_price": 6601.0,
"trade_volume": 6199.0,
"unix_time": 1392768000
} |
{
"description": "exp/html/atom: add more atoms.\n\nThis completely covers the tags used by exp/html's parser.\n\nBefore:\n295 atoms; 1406 string bytes + 2048 tables = 3454 total data\nBenchmarkLookup 50000 59841 ns/op\n\nAfter:\n322 atoms; 1508 string bytes + 2048 tables = 3556 total data\nBenchmarkLookup 50000 60159 ns/op",
"cc": [
"r@golang.org",
"golang-dev@googlegroups.com"
],
"reviewers": [],
"messages": [
{
"sender": "nigeltao@golang.org",
"recipients": [
"nigeltao@golang.org",
"r@golang.org",
"golang-dev@googlegroups.com",
"reply@codereview-hr.appspotmail.com"
],
"text": "Hello r@golang.org (cc: golang-dev@googlegroups.com),\n\nI'd like you to review this change to\nhttps://code.google.com/p/go/",
"disapproval": false,
"date": "2012-06-06 09:01:08.059178",
"approval": false
},
{
"sender": "r@golang.org",
"recipients": [
"nigeltao@golang.org",
"r@golang.org",
"golang-dev@googlegroups.com",
"reply@codereview-hr.appspotmail.com"
],
"text": "LGTM",
"disapproval": false,
"date": "2012-06-06 13:42:11.847739",
"approval": true
},
{
"sender": "nigeltao@golang.org",
"recipients": [
"nigeltao@golang.org",
"r@golang.org",
"golang-dev@googlegroups.com",
"reply@codereview-hr.appspotmail.com"
],
"text": "*** Submitted as http://code.google.com/p/go/source/detail?r=00f8c6b8bd88 ***\n\nexp/html/atom: add more atoms.\n\nThis completely covers the tags used by exp/html's parser.\n\nBefore:\n295 atoms; 1406 string bytes + 2048 tables = 3454 total data\nBenchmarkLookup 50000 59841 ns/op\n\nAfter:\n322 atoms; 1508 string bytes + 2048 tables = 3556 total data\nBenchmarkLookup 50000 60159 ns/op\n\nR=r\nCC=golang-dev\nhttp://codereview.appspot.com/6296045",
"disapproval": false,
"date": "2012-06-06 23:36:09.938243",
"approval": false
}
],
"owner_email": "nigeltao@golang.org",
"private": false,
"base_url": "",
"owner": "nigeltao",
"subject": "code review 6296045: exp/html/atom: add more atoms.",
"created": "2012-06-06 09:00:43.317521",
"patchsets": [
1,
2001,
3,
1002
],
"modified": "2012-06-06 23:36:11.881454",
"closed": true,
"issue": 6296045
} |
{
"first_traded_price": 10222.0,
"highest_price": 10440.0,
"isin": "IRO3NPSZ0001",
"last_traded_price": 10225.0,
"lowest_price": 10222.0,
"trade_volume": 26348.0,
"unix_time": 1495324800
} |
[{"y":1940,"m":10,"pk":"JackDelano","t":11}] |
{"Name":"Everfave","perma":"everfave","BasicInfo":{"funded":"2014-01-01","isClosed":false,"closed":null,"short":"Everfave is a mobile-based customer growth platform for physical businesses, brands, and retailers."},"FundingRounds":[{"funding_type":"venture","series":null,"announcedDate":"2016-08-01","moneyRaised":null}],"Acquisitions":[],"AcquiredBy":null,"IPO":null,"Investments":[],"Products":[{"name":"Everfave Platform and Apps","perma":"everfave-app","launch":null,"close":null,"description":"Mobile and Social Platform and Apps"}],"ProductsPermas":["everfave-app"],"CurrentTeam":[],"PastTeam":[]}
|
{
"files": {
"src/pkg/syscall/zsyscall_windows_386.go": {
"status": "M",
"num_chunks": 3,
"no_base_file": false,
"property_changes": "",
"num_added": 20,
"num_removed": 0,
"id": 3012,
"is_binary": false
},
"src/pkg/syscall/zsyscall_windows_amd64.go": {
"status": "M",
"num_chunks": 3,
"no_base_file": false,
"property_changes": "",
"num_added": 20,
"num_removed": 0,
"id": 3013,
"is_binary": false
},
"src/pkg/os/file_windows.go": {
"status": "M",
"num_chunks": 4,
"no_base_file": false,
"property_changes": "",
"num_added": 13,
"num_removed": 4,
"id": 3010,
"is_binary": false
},
"src/pkg/syscall/syscall_windows.go": {
"status": "M",
"num_chunks": 1,
"no_base_file": false,
"property_changes": "",
"num_added": 63,
"num_removed": 0,
"id": 3011,
"is_binary": false
}
},
"url": null,
"created": "2012-11-27 13:52:09.245530",
"owner": "minux",
"num_comments": 0,
"patchset": 2003,
"owner_email": "minux.ma@gmail.com",
"issue": 6843111,
"message": "diff -r e03ad98f9165 https://code.google.com/p/go",
"modified": "2012-11-27 13:52:09.245880"
} |
{"author":"dejonge.charlotte","questions":[{"type":"quiz","question":"toename aantal consumenten","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"vraaglijn naar rechts","correct":true},{"answer":"vraaglijn naar links","correct":false},{"answer":"aanbodlijn naar rechts","correct":false},{"answer":"aanbodlijn naar links","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"negatieve reclame","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"vraaglijn naar rechts","correct":false},{"answer":"vraaglijn naar links","correct":true},{"answer":"aanbodlijn naar rechts","correct":false},{"answer":"aanbodlijn naar links","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"daling van de productiekosten","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"vraaglijn naar rechts","correct":false},{"answer":"vraaglijn naar links","correct":false},{"answer":"aanbodlijn naar rechts","correct":true},{"answer":"aanbodlijn naar links","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"toename van het aantal bedrijven op de markt","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"vraaglijn naar rechts","correct":false},{"answer":"vraaglijn naar links","correct":false},{"answer":"aanbodlijn naar rechts","correct":true},{"answer":"aanbodlijn naar links","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"toename van de arbeidsproductiviteit","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"vraaglijn naar rechts","correct":false},{"answer":"vraaglijn naar links","correct":false},{"answer":"aanbodlijn naar rechts","correct":true},{"answer":"aanbodlijn naar links","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"daling van de rentestand waardoor sparen minder aantrekkelijk wordt","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"vraaglijn naar rechts","correct":true},{"answer":"vraaglijn naar links","correct":false},{"answer":"aanbodlijn naar rechts","correct":false},{"answer":"aanbodlijn naar links","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"kwaliteitsverbetering van een product","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"vraaglijn naar rechts","correct":true},{"answer":"vraaglijn naar links","correct":false},{"answer":"aanbodlijn naar rechts","correct":false},{"answer":"aanbodlijn naar links","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"afname van de arbeidsproductiviteit","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"vraaglijn naar rechts","correct":false},{"answer":"vraaglijn naar links","correct":false},{"answer":"aanbodlijn naar rechts","correct":false},{"answer":"aanbodlijn naar links","correct":true}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"daling van het inkomen van de consument","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"vraaglijn naar rechts","correct":false},{"answer":"vraaglijn naar links","correct":true},{"answer":"aanbodlijn naar rechts","correct":false},{"answer":"aanbodlijn naar links","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0},{"type":"quiz","question":"daling van de prijs van complementaire goederen","time":30000,"points":true,"pointsMultiplier":1,"choices":[{"answer":"vraaglijn naar rechts","correct":true},{"answer":"vraaglijn naar links","correct":false},{"answer":"aanbodlijn naar rechts","correct":false},{"answer":"aanbodlijn naar links","correct":false}],"image":"","resources":"","video":{"id":"","startTime":0,"endTime":0,"service":"youtube","fullUrl":""},"questionFormat":0}],"answerMap":[4,4,4,4,4,4,4,4,4,4],"uuid":"03a6d2e7-b54c-46fa-a782-cd9517c40c4f"} |
{
"title": "Wall decor",
"description": "",
"referenceId": "1315009695",
"date_created": "1502519638",
"date_modified": "1504049175",
"tags": "",
"sourceId": "6",
"VIDEO_LENGTH": "SHORT",
"video_type": null,
"status": "approved",
"visibility": "1",
"home_page_gallery": null,
"category_id_1": null,
"category_id_2": null,
"category_id_3": null,
"category_id_4": null,
"category_id_5": null,
"Concept": null,
"mod_request": null,
"cc_request": null,
"id": "109973224",
"loginId": "1758166",
"entityType": "1",
"sortOrder": "4860",
"entityIdParent": "111091684",
"titleTextEncoded": "Walll-decor-3-notes",
"category": "",
"duration": "98",
"settings": "",
"asset": {
"user": "",
"videoMeta": {
"duration": "98",
"width": 1280,
"height": 720
},
"mediaDuration": "98",
"prettyDuration": "00:01:38",
"thumbnailUrl": "\/\/v.tvpage.com\/1758166\/109973224\/ae37b\/thumb-74e8f89d7d14f0bd4f4705fae1998406-00002.jpg",
"type": "mp4",
"dashUrl": "\/\/v.tvpage.com\/1758166\/109973224\/ae37b\/media.mpd",
"hlsUrl": "\/\/v.tvpage.com\/1758166\/109973224\/ae37b\/media.m3u8",
"uploadAsset": false,
"quality": "",
"sources": [
{
"file": "\/\/v.tvpage.com\/1758166\/109973224\/ae37b\/1080p_media.mp4",
"quality": "1080p",
"mime": "video\/mp4",
"width": 1280,
"height": 720
},
{
"file": "\/\/v.tvpage.com\/1758166\/109973224\/ae37b\/720p_media.mp4",
"quality": "720p",
"mime": "video\/mp4",
"width": 1280,
"height": 720
},
{
"file": "\/\/v.tvpage.com\/1758166\/109973224\/ae37b\/480p_media.mp4",
"quality": "480p",
"mime": "video\/mp4",
"width": 854,
"height": 480
},
{
"file": "\/\/v.tvpage.com\/1758166\/109973224\/ae37b\/360p_media.mp4",
"quality": "360p",
"mime": "video\/mp4",
"width": 640,
"height": 360
},
{
"file": "\/\/v.tvpage.com\/1758166\/109973224\/ae37b\/240p_media.mp4",
"quality": "240p",
"mime": "video\/mp4",
"width": 320,
"height": 180
}
]
},
"transcripts": "Dorm room walls are not easy to decorate, you\u0092re not allowed to paint or put nails in the wall, and they\u0092re often brick or cinder block. Fortunately, there are three good ways to get around these problems and personalize your room. So you can make your mark, without making a mark. Number one, start with a dorm decorator\u0092s best friend; damage free removable hooks. These special hooks are designed to stick without damaging paint or dry wall. Since you can use them to hang a wide variety of light weight objects, they give you lots of flexibility. Try framed art, a clock, or objects that strike your fancy. Anything goes, as long as it\u0092s not too heavy. The hooks come in different sizes, so make sure you get one that holds the weight of the item you\u0092re hanging. You can even use them for extra storage, never a bad idea in a dorm room. When it\u0092s time to go, you can remove them and they won\u0092t damage the walls. Decorating idea number two; there are lots of great peel and stick items, especially designed with the college student in mind. Sticker frames let you plaster photos, or anything else you want to frame, all over the walls, and when you want to change them they just easily peel off. Some even come with pockets for extra flexibility. And decorating tip number three. Want to right on the wall? No problem, adhesive dry-erase boards come in all styles and sizes. So don\u0092t let those bare walls scare you, now you\u0092re ready to show your style, all over those walls. Get the things you need for college at Bed Bad & Beyond. Shop at your nearest store or online.",
"VV_VI": "",
"CVV_VI": "",
"engagement_score": "",
"conversion_score": "",
"metrics_statistics": "",
"tvp_profiles": [
"4",
"18",
"14"
],
"tvp_profiles_manual": "",
"tvp_profiles_maxscore": 14.961779,
"delete": "",
"notes": null,
"uploader": "felipe.deleon",
"modified_date": "7\/2\/2013",
"created_date": "",
"creator": null
} |
{
"id": 76923,
"rating": 1248,
"attempts": 6829,
"fen": "r6k/p1B1Rp1p/2p2np1/3p3q/3P1P2/2N3P1/PPP3KP/5R2 b - - 1 26",
"color": "white",
"initialPly": 52,
"gameId": "rSPKcoc3",
"lines": {
"c7e5": {
"h8g8": {
"e5f6": {
"h5f5": "win"
}
}
}
},
"vote": 119,
"enabled": true
} |
[["augustini", "sermo", "xcu"], ["scripturas", "sanctas", "exponentes", "uobis", "quasi", "panes", "frangimus", "uobis"], ["uos", "esurientes", "accipite", "et", "saginam", "laudis", "corde", "eructuate"], ["et", "qui", "estis", "diuites", "in", "epulis", "nolite", "macri", "esse", "in", "operibus", "et", "factis", "bonis"], ["quod", "ego", "erogo", "uobis", "non", "est", "meum"], ["quod", "manducatis", "manduco"], ["unde", "uiuitis", "uiuo"], ["commune", "habemus", "in", "coelo", "cellarium"], ["inde", "enim", "uenit", "uerbum", "dei"], ["septem", "panes", "significant", "septiformem", "operationem", "spiritus", "sancti"], ["quatuor", "millia", "hominum", "ecclesiam", "sub", "quatuor", "euangeliis", "constitutam"], ["septem", "sportae", "fragmentorum", "perfectionem", "ecclesiae"], ["hoc", "enim", "numero", "saepissime", "perfectio", "figuratur"], ["unde", "est", "enim", "quod", "dictum", "est", "septies", "in", "die", "laudabo", "te"], ["numquid", "errat", "homo", "qui", "toties", "laudauerit", "dominum"], ["quid", "est", "ergo", "septies", "laudabo", "nisi", "nunquam", "a", "laude", "cessabo"], ["totum", "enim", "tempus", "significat", "qui", "dicit", "septies"], ["unde", "septem", "dierum", "uolumine", "saecula", "prouoluuntur"], ["quid", "est", "ergo", "septies", "in", "die", "laudabo", "te", "nisi", "quod", "alio", "loco", "dicitur", "semper", "laus", "eius", "in", "ore", "meo"], ["propter", "ipsam", "perfectionem", "ad", "septem", "ecclesias", "scribit", "ioannes"], ["apocalypsis", "liber", "est", "sancti", "ioannis", "euangelistae"], ["scribit", "ad", "septem", "ecclesias"], ["ueraces", "estote", "sportas", "agnoscite"], ["non", "enim", "fragmenta", "illa", "perierunt"], ["sed", "quia", "et", "uos", "ad", "ecclesiam", "pertinetis", "uobis", "utique", "profecerunt"], ["quod", "uobis", "ista", "expono", "christo", "ministro"], ["uos", "cum", "tranquille", "auditis", "discumbitis"], ["ego", "corpore", "sedeo", "corde", "consisto", "et", "sollicitus", "ministro", "uobis", "ne", "forte", "aliquem", "uestrum", "offendat", "uasculum", "non", "cibus"], ["epulas", "dei", "nostis", "saepe", "audistis", "mentes", "quaerunt", "non", "uentres"], ["certe", "saginata", "sunt", "quatuor", "millia", "hominum", "de", "septem", "panibus"], ["et", "tamen", "parum", "erat", "nisi", "etiam", "sportae", "septem", "de", "fragmentis", "residuis", "implerentur"], ["o", "magna", "mysteria"], ["operabantur", "et", "opera", "loquebantur"], ["facta", "illa", "si", "intelligas", "uerba", "sunt"], ["et", "uos", "ad", "quatuor", "millia", "pertinetis", "quia", "sub", "euangelio", "quaternario", "uiuitis"], ["ad", "numerum", "non", "pertinuerunt", "pueri", "et", "mulieres"], ["sic", "enim", "dictum", "est"], ["erant", "autem", "qui", "manducauerunt", "quatuor", "millia", "hominum", "exceptis", "pueris", "et", "mulieribus"], ["quasi", "sine", "numero", "essent", "insensati", "et", "effeminati"], ["tamen", "manducent", "et", "ipsi"], ["forte", "pueri", "crescunt", "et", "non", "erunt", "pueri", "forte", "effeminati", "corriguntur", "et", "castificantur"], ["qui", "sint", "autem", "isti", "deus", "inspicit", "conuiuium", "suum", "et", "si", "se", "non", "correxerint", "qui", "nouit", "inuitare", "nouit", "et", "separare"], ["recolite", "euangelicam", "parabolam", "quia", "intrauit", "dominus", "inspicere", "recumbentes", "in", "quodam", "conuiuio", "suo"], ["paterfamilias", "qui", "inuitauerat", "sicut", "scriptum", "est", "inuenit", "ibi", "hominem", "non", "uestitum", "uestem", "nuptialem"], ["ad", "nuptias", "enim", "inuitauerat", "sponsus", "ille", "speciosus", "forma", "prae", "filiis", "hominum"], ["sponsus", "ille", "foedus", "factus", "propter", "sponsam", "foedam", "ut", "eam", "faceret", "pulchram"], ["unde", "foedus", "factus", "est", "pulcher"], ["si", "non", "probo", "blasphemo"], ["dat", "mihi", "pulchritudinis", "eius", "testimonium", "propheta", "dicens"], ["speciosus", "forma", "prae", "filiis", "hominum"], ["dat", "mihi", "deformitatis", "eius", "testimonium", "alius", "propheta", "dicens"], ["uidimus", "eum", "et", "non", "habebat", "speciem", "neque", "decorem", "sed", "uultus", "eius", "abiectus", "deformis", "positio", "eius"], ["o", "propheta", "qui", "dixisti", "speciosus", "forma", "prae", "filiis", "hominum", "contradicitur", "tibi"], ["alius", "propheta", "procedit", "contra", "te", "et", "dicit", "mentiris"], ["quid", "est", "quod", "dicit", "speciosus", "forma", "prae", "filiis", "hominum"], ["uidimus", "eum", "non", "habentem", "speciem", "neque", "decorem"], ["ergo", "isti", "prophetae", "duo", "in", "angulo", "pacis", "discordant"], ["de", "christo", "ambo", "dixerunt", "de", "lapide", "angulari", "ambo", "dixerunt"], ["in", "angulo", "concordant", "parietes"], ["si", "non", "concordauerunt", "non", "est", "aedificium", "sed", "ruina"], ["concordant", "prophetae", "non", "eos", "dimittamus", "in", "rixa"], ["imo", "nos", "eorum", "pacem", "cognoscamus"], ["nam", "illi", "litigare", "non", "norunt"], ["o", "propheta", "qui", "dixisti", "speciosus", "forma", "prae", "filiis", "hominum", "ubi", "uidisti"], ["responde", "responde", "ubi", "uidisti"], ["cum", "in", "forma", "dei", "esset", "non", "rapinam", "arbitratus", "est", "esse", "aequalis", "deo"], ["an", "tu", "dubitas", "eum", "qui", "aequalis", "est", "deo", "speciosum", "esse", "prae", "filiis", "hominum"], ["respondeat", "ille", "qui", "dixit", "uidimus", "eum", "et", "non", "habebat", "speciem", "neque", "decorem"], ["dic", "ubi", "uidisti"], ["a", "uerbis", "ipsius", "sumit", "exordium"], ["ubi", "ille", "finiuit", "ibi", "iste", "incipit"], ["ubi", "ille", "finiuit"], ["qui", "cum", "in", "forma", "dei", "esset", "non", "rapinam", "arbitratus", "est", "esse", "aequalis", "deo"], ["ecce", "ubi", "uidit", "speciosum", "forma", "prae", "filiis", "hominum"], ["dic", "tu", "ubi", "uidisti", "quia", "non", "habebat", "speciem", "neque", "decorem"], ["sed", "semetipsum", "exinaniuit", "formam", "serui", "accipiens", "in", "similitudinem", "hominum", "factus", "et", "habitu", "inuentus", "ut", "homo"], ["de", "deformitate", "ipsius", "adhuc", "dicit"], ["humiliauit", "se", "ipsum", "factus", "obediens", "usque", "ad", "mortem", "mortem", "autem", "crucis"], ["ecce", "ubi", "uidi"], ["concordant", "ergo", "ambo", "pacifici", "et", "pacati", "sunt", "ambo"], ["quid", "est", "speciosius", "deo"], ["quid", "deformius", "crucifixo"], ["iste", "ergo", "sponsus", "speciosus", "forma", "prae", "filiis", "hominum", "deformis", "factus", "ut", "pulchram", "faceret", "sponsam", "cui", "dicitur", "o", "decora", "inter", "mulieres"], ["de", "qua", "dicitur", "quae", "est", "ista", "quae", "ascendit", "dealbata"], ["illuminata", "non", "colore", "mendacii", "fuscata"], ["inuenit", "ergo", "iste", "qui", "uocauit", "ad", "nuptias", "hominem", "non", "habentem", "uestem", "nuptialem", "et", "ait", "illi", "amice", "quid", "huc", "intrasti", "non", "habens", "uestem", "nuptialem"], ["at", "ille", "obmutuit"], ["non", "enim", "inuenit", "quod", "responderet"], ["et", "ait", "paterfamilias", "qui", "intrauerat"], ["ligate", "illi", "manus", "et", "pedes", "et", "proiicite", "illum", "in", "tenebras", "exteriores"], ["ibi", "erit", "fletus", "et", "stridor", "dentium"], ["de", "tam", "parua", "culpa", "tam", "magna", "poena"], ["parua", "dicitur", "culpa", "non", "habere", "uestem", "nuptialem"], ["parua", "sed", "non", "intelligentibus"], ["quando", "ille", "sic", "succenseret", "quando", "ille", "sic", "iudicaret", "ut", "propter", "uestem", "nuptialem", "quam", "non", "habebat", "mitteret", "eum", "ligatis", "manibus", "et", "pedibus", "in", "tenebras", "exteriores", "ubi", "esset", "fletus", "et", "stridor", "dentium", "nisi", "culpa", "esset", "ualde", "grauis", "uestem", "non", "habere", "nuptialem"], ["quia", "per", "me", "inuitati", "estis", "et", "si", "uos", "ille", "inuitauit", "per", "nos", "inuitauit"], ["in", "conuiuio", "estis", "omnes", "habetote", "uestem", "nuptialem"], ["expono", "quae", "est", "ut", "omnes", "habeatis", "et", "si", "aliquis", "me", "non", "audit", "qui", "non", "habet", "antequam", "ueniat", "paterfamilias", "et", "conuiuas", "suos", "inspiciat", "mutetur", "in", "melius", "accipiat", "uestem", "nuptialem", "securus", "discumbat"], ["non", "enim", "uere", "charissimi", "ille", "qui", "inde", "proiectus", "est", "unum", "hominem", "significat"], ["et", "ipse", "dominus", "qui", "hanc", "parabolam", "proposuit", "sponsus", "ipse", "conuiuii", "conuocator", "et", "conuiuarum", "uiuificator", "ipse", "nobis", "exposuit", "quia", "homo", "ille", "non", "unum", "hominem", "significat", "sed", "multos", "ibi", "in", "ipso", "loco", "in", "eadem", "parabola"], ["non", "eo", "longe", "ibi", "expono", "ibi", "frango", "et", "manducandum", "appono"], ["ait", "enim", "cum", "inde", "missus", "esset", "ille", "non", "habens", "uestem", "nuptialem", "in", "tenebras", "exteriores"], ["ait", "ergo", "et", "secutus", "adiunxit", "multi", "enim", "sunt", "uocati", "pauci", "uero", "electi"], ["unum", "hinc", "proiecisti", "et", "dicis", "multi", "enim", "sunt", "uocati", "pauci", "electi"], ["sine", "dubio", "electi", "non", "sunt", "proiecti"], ["et", "ipsi", "erant", "pauci", "qui", "discumbentes", "remanserant", "et", "multi", "erant", "in", "illo", "uno", "quia", "ille", "unus", "unum", "corpus", "malorum", "est", "qui", "non", "habet", "uestem", "nuptialem"], ["quid", "est", "uestis", "nuptialis"], ["quaeramus", "illam", "in", "litteris", "sanctis"], ["quid", "est", "uestis", "nuptialis"], ["sine", "dubio", "aliquid", "est", "quod", "mali", "et", "boni", "commune", "non", "habent"], ["hoc", "inueniamus", "et", "inuenimus", "uestem", "nuptialem"], ["in", "donis", "dei", "quid", "est", "quod", "commune", "non", "habent", "boni", "et", "mali"], ["quod", "homines", "sumus", "et", "pecora", "non", "sumus", "dei", "donum", "est"], ["sed", "commune", "hoc", "cum", "bonis", "et", "malis"], ["quod", "nobis", "lux", "de", "coelo", "oritur", "de", "nube", "pluuiae", "descendunt", "fontes", "manant", "agri", "fructificant", "dona", "sunt", "sed", "bonis", "malis", "-que", "communia"], ["intremus", "ad", "nuptias", "foris", "alios", "relinquamus", "qui", "non", "uenerunt", "uocati"], ["ipsos", "conuiuas", "id", "est", "christianos", "consideremus"], ["baptismus", "donum", "dei", "est", "habent", "illum", "boni", "et", "mali"], ["altaris", "sacramenta", "simul", "accipiunt", "boni", "et", "mali"], ["prophetauit", "saul", "iniquus", "et", "uiro", "sancto", "atque", "iustissimo", "infestus", "dum", "eum", "persequeretur", "prophetauit"], ["numquid", "dicuntur", "credere", "soli", "boni"], ["et", "daemones", "credunt", "et", "contremiscunt"], ["excussi", "omnia", "et", "ad", "uestem", "illam", "nondum", "perueni"], ["inuolucrum", "meum", "explicaui", "omnia", "uel", "pene", "omnia", "consideraui", "ad", "uestem", "illam", "nondum", "perueni"], ["quodam", "loco", "paulus", "apostolus", "attulit", "mihi", "magnum", "inuolucrum", "magnarum", "rerum", "exposuit", "ante", "me", "et", "dixi", "ei", "ostende", "mihi", "si", "forte", "hic", "illam", "uestem", "nuptialem", "reperisti"], ["coepit", "excutere", "singula", "et", "dicere"], ["si", "linguis", "hominum", "loquar", "et", "angelorum", "si", "habeam", "omnem", "scientiam", "et", "prophetiam", "et", "omnem", "fidem", "ita", "ut", "montes", "transferam", "si", "distribuero", "omnia", "mea", "pauperibus", "et", "tradam", "corpus", "meum", "ut", "ardeam"], ["nondum", "tamen", "est", "illa", "nuptialis"], ["iam", "profer", "nobis", "nuptialem", "uestem"], ["quid", "nos", "apostole", "suspendis"], ["prophetia", "forte", "dei", "donum", "est", "quod", "non", "habent", "boni", "et", "mali"], ["si", "charitatem", "inquit", "non", "habeam", "nihil", "sum", "nihil", "mihi", "prodest"], ["ecce", "uestis", "nuptialis"], ["induite", "uos", "o", "conuiuae", "ut", "securi", "discumbatis"], ["ad", "istam", "uestem", "habendam", "pauperes", "sumus"], ["uestite", "et", "uestimini"], ["nudus", "est", "christus", "et", "cum", "quique", "non", "habetis", "uestem", "nuptialem", "dabit", "illam"], ["ad", "illum", "currite", "ipsum", "rogate"], ["nouit", "sanctificare", "fideles", "suos", "nouit", "uestire", "nudos", "suos"], ["ut", "possitis", "uestem", "habentes", "nuptialem", "non", "timere", "tenebras", "exteriores", "uincula", "membrorum", "et", "manuum", "et", "pedum", "non", "deficiant", "opera"], ["si", "deficiunt", "ligatis", "manibus", "quid", "facturus", "est"], ["ligatis", "pedibus", "quo", "fugiturus", "est"], ["illam", "teneatis", "uestem", "nuptialem", "induimini", "ipsam", "et", "securi", "discumbite", "quando", "uenit", "inspicere"], ["dies", "iudicii", "aderit"], ["magnum", "spatium", "modo", "largitur", "qui", "nudus", "erat", "aliquando", "uestiatur"], ["the", "latin", "library"], ["the", "classics", "page"], ["augustini", "sermo", "xcu"], ["scripturas", "sanctas", "exponentes", "uobis", "quasi", "panes", "frangimus", "uobis"], ["uos", "esurientes", "accipite", "et", "saginam", "laudis", "corde", "eructuate"], ["et", "qui", "estis", "diuites", "in", "epulis", "nolite", "macri", "esse", "in", "operibus", "et", "factis", "bonis"], ["quod", "ego", "erogo", "uobis", "non", "est", "meum"], ["quod", "manducatis", "manduco"], ["unde", "uiuitis", "uiuo"], ["commune", "habemus", "in", "coelo", "cellarium"], ["inde", "enim", "uenit", "uerbum", "dei"], ["septem", "panes", "significant", "septiformem", "operationem", "spiritus", "sancti"], ["quatuor", "millia", "hominum", "ecclesiam", "sub", "quatuor", "euangeliis", "constitutam"], ["septem", "sportae", "fragmentorum", "perfectionem", "ecclesiae"], ["hoc", "enim", "numero", "saepissime", "perfectio", "figuratur"], ["unde", "est", "enim", "quod", "dictum", "est", "septies", "in", "die", "laudabo", "te"], ["numquid", "errat", "homo", "qui", "toties", "laudauerit", "dominum"], ["quid", "est", "ergo", "septies", "laudabo", "nisi", "nunquam", "a", "laude", "cessabo"], ["totum", "enim", "tempus", "significat", "qui", "dicit", "septies"], ["unde", "septem", "dierum", "uolumine", "saecula", "prouoluuntur"], ["quid", "est", "ergo", "septies", "in", "die", "laudabo", "te", "nisi", "quod", "alio", "loco", "dicitur", "semper", "laus", "eius", "in", "ore", "meo"], ["propter", "ipsam", "perfectionem", "ad", "septem", "ecclesias", "scribit", "ioannes"], ["apocalypsis", "liber", "est", "sancti", "ioannis", "euangelistae"], ["scribit", "ad", "septem", "ecclesias"], ["ueraces", "estote", "sportas", "agnoscite"], ["non", "enim", "fragmenta", "illa", "perierunt"], ["sed", "quia", "et", "uos", "ad", "ecclesiam", "pertinetis", "uobis", "utique", "profecerunt"], ["quod", "uobis", "ista", "expono", "christo", "ministro"], ["uos", "cum", "tranquille", "auditis", "discumbitis"], ["ego", "corpore", "sedeo", "corde", "consisto", "et", "sollicitus", "ministro", "uobis", "ne", "forte", "aliquem", "uestrum", "offendat", "uasculum", "non", "cibus"], ["epulas", "dei", "nostis", "saepe", "audistis", "mentes", "quaerunt", "non", "uentres"], ["certe", "saginata", "sunt", "quatuor", "millia", "hominum", "de", "septem", "panibus"], ["et", "tamen", "parum", "erat", "nisi", "etiam", "sportae", "septem", "de", "fragmentis", "residuis", "implerentur"], ["o", "magna", "mysteria"], ["operabantur", "et", "opera", "loquebantur"], ["facta", "illa", "si", "intelligas", "uerba", "sunt"], ["et", "uos", "ad", "quatuor", "millia", "pertinetis", "quia", "sub", "euangelio", "quaternario", "uiuitis"], ["ad", "numerum", "non", "pertinuerunt", "pueri", "et", "mulieres"], ["sic", "enim", "dictum", "est"], ["erant", "autem", "qui", "manducauerunt", "quatuor", "millia", "hominum", "exceptis", "pueris", "et", "mulieribus"], ["quasi", "sine", "numero", "essent", "insensati", "et", "effeminati"], ["tamen", "manducent", "et", "ipsi"], ["forte", "pueri", "crescunt", "et", "non", "erunt", "pueri", "forte", "effeminati", "corriguntur", "et", "castificantur"], ["qui", "sint", "autem", "isti", "deus", "inspicit", "conuiuium", "suum", "et", "si", "se", "non", "correxerint", "qui", "nouit", "inuitare", "nouit", "et", "separare"], ["recolite", "euangelicam", "parabolam", "quia", "intrauit", "dominus", "inspicere", "recumbentes", "in", "quodam", "conuiuio", "suo"], ["paterfamilias", "qui", "inuitauerat", "sicut", "scriptum", "est", "inuenit", "ibi", "hominem", "non", "uestitum", "uestem", "nuptialem"], ["ad", "nuptias", "enim", "inuitauerat", "sponsus", "ille", "speciosus", "forma", "prae", "filiis", "hominum"], ["sponsus", "ille", "foedus", "factus", "propter", "sponsam", "foedam", "ut", "eam", "faceret", "pulchram"], ["unde", "foedus", "factus", "est", "pulcher"], ["si", "non", "probo", "blasphemo"], ["dat", "mihi", "pulchritudinis", "eius", "testimonium", "propheta", "dicens"], ["speciosus", "forma", "prae", "filiis", "hominum"], ["dat", "mihi", "deformitatis", "eius", "testimonium", "alius", "propheta", "dicens"], ["uidimus", "eum", "et", "non", "habebat", "speciem", "neque", "decorem", "sed", "uultus", "eius", "abiectus", "deformis", "positio", "eius"], ["o", "propheta", "qui", "dixisti", "speciosus", "forma", "prae", "filiis", "hominum", "contradicitur", "tibi"], ["alius", "propheta", "procedit", "contra", "te", "et", "dicit", "mentiris"], ["quid", "est", "quod", "dicit", "speciosus", "forma", "prae", "filiis", "hominum"], ["uidimus", "eum", "non", "habentem", "speciem", "neque", "decorem"], ["ergo", "isti", "prophetae", "duo", "in", "angulo", "pacis", "discordant"], ["de", "christo", "ambo", "dixerunt", "de", "lapide", "angulari", "ambo", "dixerunt"], ["in", "angulo", "concordant", "parietes"], ["si", "non", "concordauerunt", "non", "est", "aedificium", "sed", "ruina"], ["concordant", "prophetae", "non", "eos", "dimittamus", "in", "rixa"], ["imo", "nos", "eorum", "pacem", "cognoscamus"], ["nam", "illi", "litigare", "non", "norunt"], ["o", "propheta", "qui", "dixisti", "speciosus", "forma", "prae", "filiis", "hominum", "ubi", "uidisti"], ["responde", "responde", "ubi", "uidisti"], ["cum", "in", "forma", "dei", "esset", "non", "rapinam", "arbitratus", "est", "esse", "aequalis", "deo"], ["an", "tu", "dubitas", "eum", "qui", "aequalis", "est", "deo", "speciosum", "esse", "prae", "filiis", "hominum"], ["respondeat", "ille", "qui", "dixit", "uidimus", "eum", "et", "non", "habebat", "speciem", "neque", "decorem"], ["dic", "ubi", "uidisti"], ["a", "uerbis", "ipsius", "sumit", "exordium"], ["ubi", "ille", "finiuit", "ibi", "iste", "incipit"], ["ubi", "ille", "finiuit"], ["qui", "cum", "in", "forma", "dei", "esset", "non", "rapinam", "arbitratus", "est", "esse", "aequalis", "deo"], ["ecce", "ubi", "uidit", "speciosum", "forma", "prae", "filiis", "hominum"], ["dic", "tu", "ubi", "uidisti", "quia", "non", "habebat", "speciem", "neque", "decorem"], ["sed", "semetipsum", "exinaniuit", "formam", "serui", "accipiens", "in", "similitudinem", "hominum", "factus", "et", "habitu", "inuentus", "ut", "homo"], ["de", "deformitate", "ipsius", "adhuc", "dicit"], ["humiliauit", "se", "ipsum", "factus", "obediens", "usque", "ad", "mortem", "mortem", "autem", "crucis"], ["ecce", "ubi", "uidi"], ["concordant", "ergo", "ambo", "pacifici", "et", "pacati", "sunt", "ambo"], ["quid", "est", "speciosius", "deo"], ["quid", "deformius", "crucifixo"], ["iste", "ergo", "sponsus", "speciosus", "forma", "prae", "filiis", "hominum", "deformis", "factus", "ut", "pulchram", "faceret", "sponsam", "cui", "dicitur", "o", "decora", "inter", "mulieres"], ["de", "qua", "dicitur", "quae", "est", "ista", "quae", "ascendit", "dealbata"], ["illuminata", "non", "colore", "mendacii", "fuscata"], ["inuenit", "ergo", "iste", "qui", "uocauit", "ad", "nuptias", "hominem", "non", "habentem", "uestem", "nuptialem", "et", "ait", "illi", "amice", "quid", "huc", "intrasti", "non", "habens", "uestem", "nuptialem"], ["at", "ille", "obmutuit"], ["non", "enim", "inuenit", "quod", "responderet"], ["et", "ait", "paterfamilias", "qui", "intrauerat"], ["ligate", "illi", "manus", "et", "pedes", "et", "proiicite", "illum", "in", "tenebras", "exteriores"], ["ibi", "erit", "fletus", "et", "stridor", "dentium"], ["de", "tam", "parua", "culpa", "tam", "magna", "poena"], ["parua", "dicitur", "culpa", "non", "habere", "uestem", "nuptialem"], ["parua", "sed", "non", "intelligentibus"], ["quando", "ille", "sic", "succenseret", "quando", "ille", "sic", "iudicaret", "ut", "propter", "uestem", "nuptialem", "quam", "non", "habebat", "mitteret", "eum", "ligatis", "manibus", "et", "pedibus", "in", "tenebras", "exteriores", "ubi", "esset", "fletus", "et", "stridor", "dentium", "nisi", "culpa", "esset", "ualde", "grauis", "uestem", "non", "habere", "nuptialem"], ["quia", "per", "me", "inuitati", "estis", "et", "si", "uos", "ille", "inuitauit", "per", "nos", "inuitauit"], ["in", "conuiuio", "estis", "omnes", "habetote", "uestem", "nuptialem"], ["expono", "quae", "est", "ut", "omnes", "habeatis", "et", "si", "aliquis", "me", "non", "audit", "qui", "non", "habet", "antequam", "ueniat", "paterfamilias", "et", "conuiuas", "suos", "inspiciat", "mutetur", "in", "melius", "accipiat", "uestem", "nuptialem", "securus", "discumbat"], ["non", "enim", "uere", "charissimi", "ille", "qui", "inde", "proiectus", "est", "unum", "hominem", "significat"], ["et", "ipse", "dominus", "qui", "hanc", "parabolam", "proposuit", "sponsus", "ipse", "conuiuii", "conuocator", "et", "conuiuarum", "uiuificator", "ipse", "nobis", "exposuit", "quia", "homo", "ille", "non", "unum", "hominem", "significat", "sed", "multos", "ibi", "in", "ipso", "loco", "in", "eadem", "parabola"], ["non", "eo", "longe", "ibi", "expono", "ibi", "frango", "et", "manducandum", "appono"], ["ait", "enim", "cum", "inde", "missus", "esset", "ille", "non", "habens", "uestem", "nuptialem", "in", "tenebras", "exteriores"], ["ait", "ergo", "et", "secutus", "adiunxit", "multi", "enim", "sunt", "uocati", "pauci", "uero", "electi"], ["unum", "hinc", "proiecisti", "et", "dicis", "multi", "enim", "sunt", "uocati", "pauci", "electi"], ["sine", "dubio", "electi", "non", "sunt", "proiecti"], ["et", "ipsi", "erant", "pauci", "qui", "discumbentes", "remanserant", "et", "multi", "erant", "in", "illo", "uno", "quia", "ille", "unus", "unum", "corpus", "malorum", "est", "qui", "non", "habet", "uestem", "nuptialem"], ["quid", "est", "uestis", "nuptialis"], ["quaeramus", "illam", "in", "litteris", "sanctis"], ["quid", "est", "uestis", "nuptialis"], ["sine", "dubio", "aliquid", "est", "quod", "mali", "et", "boni", "commune", "non", "habent"], ["hoc", "inueniamus", "et", "inuenimus", "uestem", "nuptialem"], ["in", "donis", "dei", "quid", "est", "quod", "commune", "non", "habent", "boni", "et", "mali"], ["quod", "homines", "sumus", "et", "pecora", "non", "sumus", "dei", "donum", "est"], ["sed", "commune", "hoc", "cum", "bonis", "et", "malis"], ["quod", "nobis", "lux", "de", "coelo", "oritur", "de", "nube", "pluuiae", "descendunt", "fontes", "manant", "agri", "fructificant", "dona", "sunt", "sed", "bonis", "malis", "-que", "communia"], ["intremus", "ad", "nuptias", "foris", "alios", "relinquamus", "qui", "non", "uenerunt", "uocati"], ["ipsos", "conuiuas", "id", "est", "christianos", "consideremus"], ["baptismus", "donum", "dei", "est", "habent", "illum", "boni", "et", "mali"], ["altaris", "sacramenta", "simul", "accipiunt", "boni", "et", "mali"], ["prophetauit", "saul", "iniquus", "et", "uiro", "sancto", "atque", "iustissimo", "infestus", "dum", "eum", "persequeretur", "prophetauit"], ["numquid", "dicuntur", "credere", "soli", "boni"], ["et", "daemones", "credunt", "et", "contremiscunt"], ["excussi", "omnia", "et", "ad", "uestem", "illam", "nondum", "perueni"], ["inuolucrum", "meum", "explicaui", "omnia", "uel", "pene", "omnia", "consideraui", "ad", "uestem", "illam", "nondum", "perueni"], ["quodam", "loco", "paulus", "apostolus", "attulit", "mihi", "magnum", "inuolucrum", "magnarum", "rerum", "exposuit", "ante", "me", "et", "dixi", "ei", "ostende", "mihi", "si", "forte", "hic", "illam", "uestem", "nuptialem", "reperisti"], ["coepit", "excutere", "singula", "et", "dicere"], ["si", "linguis", "hominum", "loquar", "et", "angelorum", "si", "habeam", "omnem", "scientiam", "et", "prophetiam", "et", "omnem", "fidem", "ita", "ut", "montes", "transferam", "si", "distribuero", "omnia", "mea", "pauperibus", "et", "tradam", "corpus", "meum", "ut", "ardeam"], ["nondum", "tamen", "est", "illa", "nuptialis"], ["iam", "profer", "nobis", "nuptialem", "uestem"], ["quid", "nos", "apostole", "suspendis"], ["prophetia", "forte", "dei", "donum", "est", "quod", "non", "habent", "boni", "et", "mali"], ["si", "charitatem", "inquit", "non", "habeam", "nihil", "sum", "nihil", "mihi", "prodest"], ["ecce", "uestis", "nuptialis"], ["induite", "uos", "o", "conuiuae", "ut", "securi", "discumbatis"], ["ad", "istam", "uestem", "habendam", "pauperes", "sumus"], ["uestite", "et", "uestimini"], ["nudus", "est", "christus", "et", "cum", "quique", "non", "habetis", "uestem", "nuptialem", "dabit", "illam"], ["ad", "illum", "currite", "ipsum", "rogate"], ["nouit", "sanctificare", "fideles", "suos", "nouit", "uestire", "nudos", "suos"], ["ut", "possitis", "uestem", "habentes", "nuptialem", "non", "timere", "tenebras", "exteriores", "uincula", "membrorum", "et", "manuum", "et", "pedum", "non", "deficiant", "opera"], ["si", "deficiunt", "ligatis", "manibus", "quid", "facturus", "est"], ["ligatis", "pedibus", "quo", "fugiturus", "est"], ["illam", "teneatis", "uestem", "nuptialem", "induimini", "ipsam", "et", "securi", "discumbite", "quando", "uenit", "inspicere"], ["dies", "iudicii", "aderit"], ["magnum", "spatium", "modo", "largitur", "qui", "nudus", "erat", "aliquando", "uestiatur"]] |
{
"add": [
{
"authors": "Joe Schall",
"epubNumberOfPages": 182,
"id": 17584,
"isbn": "9780814779170",
"pageLocalId": "page_168",
"pageNumberForDisplay": "168",
"pageSequenceNumber": 178,
"pageText": "and wait for the day when they would have a child together.\nAs Vera wiped the Mr. Muscle from the walls with a scrubbrush, Thomas eagerly reread the stack of religious articles which he had torn from the scrapbooks, waiting for inspiration.\nHe finally settled on an article about the Church of St. Peter and St. Paul in Manhattan, which a New York playwright and self-proclaimed priest named Bob Labar had made famous. In the church, Thomas read, Bob Labar conducted services in which the parishioners were blindfolded and forced to kneel at the altar for an hour in four inches of bread crumbs, then were ushered into a tiny bathroom for the environmental confession, where a smiling man wearing a wreath of toilet paper flushed away their sins—one flush for each venial sin and three flushes for each mortal sin.\nThomas tried to imagine himself attending services at the church, then shaking hands with Bob Labar, but he could not. He couldn’t even remember any longer what the oily man looked like or what he represented. The articles he had just read, which once would have inspired hours of imaginative thought, were now merely words to him. His imagination failed him.\nFinally, he reread the article on the Holy Patch under the light of the new pink bulb. He read that Christ had 125 welts on his body when he died. He tried repeatedly to connect his life to the number 125, but could not. He couldn’t even remember the sight-cryptogram he had once assigned to the Patch. He could imagine nothing but darkness. Utter darkness, without colors or sound or space.\nMeanwhile, Vera knelt next to him on the floor of the coal bin and scrubbed it with Old English Furniture Polish, watching Thomas’s face lovingly.\n",
"publisher": "New York University Press",
"title": "Indentation and Other Stories",
"topicNames": null,
"topicNamesForDisplay": "[]",
"topicNames_facet": null,
"yearOfPublication": 0
}
]
} |
{"0":{"dur":2,"text":"Today I have the honor of\nwelcoming my friend,"},"3":{"dur":3,"text":"Prime Minister Benjamin\nNetanyahu to"},"7":{"dur":1,"text":"the White House."},"8":{"dur":1,"text":"With this visit, the\nUnited States, again,"},"10":{"dur":3,"text":"reaffirms our unbreakable\nbond with our"},"14":{"dur":3,"text":"cherished ally, Israel."},"17":{"dur":2,"text":"The partnership between\nour two countries, built"},"20":{"dur":4,"text":"on our shared values, has\nadvanced the cause of"},"24":{"dur":3,"text":"human freedom,\ndignity, and peace."},"28":{"dur":4,"text":"These are the building\nblocks of democracy."},"32":{"dur":4,"text":"The state of Israel is a\nsymbol to the world of"},"36":{"dur":2,"text":"resilience, in the\nface of oppression."},"39":{"dur":3,"text":"I think of no other state\nthat's gone through what"},"43":{"dur":2,"text":"they've gone, and of\nsurvival in"},"45":{"dur":2,"text":"the face of genocide."},"47":{"dur":2,"text":"We will never forget what\nthe Jewish"},"49":{"dur":2,"text":"people have endured."},"54":{"dur":3,"text":"Your perseverance in the\nface of hostility, your"},"57":{"dur":3,"text":"open democracy in the face\nof violence, and your"},"61":{"dur":2,"text":"success in the face\nof tall odds is"},"64":{"dur":4,"text":"truly inspirational."},"68":{"dur":3,"text":"The security challenges\nfaced by Israel are"},"71":{"dur":4,"text":"enormous, including the\nthreat of Iran's nuclear"},"76":{"dur":3,"text":"ambitions, which I've\ntalked a lot about."},"79":{"dur":2,"text":"One of the worst deals\nI've ever seen"},"82":{"dur":2,"text":"is the Iran deal."},"84":{"dur":2,"text":"My administration has\nalready imposed new"},"87":{"dur":4,"text":"sanctions on Iran, and I\nwill do more to prevent"},"91":{"dur":4,"text":"Iran from ever developing,\nI mean ever,"},"95":{"dur":2,"text":"a nuclear weapon."},"98":{"dur":2,"text":"Our security assistance to\nIsrael is currently at an"},"101":{"dur":4,"text":"all-time high, ensuring\nthat Israel has the"},"105":{"dur":4,"text":"ability to defend itself\nfrom threats, of which"},"109":{"dur":3,"text":"there are\nunfortunately many."},"112":{"dur":3,"text":"Both of our countries\nwill continue and grow."},"116":{"dur":3,"text":"We have a long history of\ncooperation in the fight"},"119":{"dur":2,"text":"against terrorism and the\nfight against those who do"},"122":{"dur":3,"text":"not value human life."},"126":{"dur":4,"text":"America and Israel are two\nnations that cherish the"},"130":{"dur":4,"text":"value of all human life."},"134":{"dur":3,"text":"This is one more reason\nwhy we reject unfair and"},"137":{"dur":3,"text":"one-sided actions against\nIsrael at the United"},"141":{"dur":5,"text":"Nations, just treated\nIsrael, in my opinion,"},"147":{"dur":4,"text":"very very unfairly, or\nother international"},"152":{"dur":2,"text":"forums, as well as\nboycotts that"},"154":{"dur":1,"text":"target Israel."},"156":{"dur":2,"text":"Our administration is\ncommitted to working with"},"158":{"dur":4,"text":"Israel and our common\nallies in the region,"},"163":{"dur":3,"text":"towards greater\nsecurity and stability."},"167":{"dur":3,"text":"That includes working\ntoward a peace agreement"},"170":{"dur":3,"text":"between Israel and\nthe Palestinians."},"174":{"dur":5,"text":"The United States will\nencourage a peace and"},"179":{"dur":2,"text":"really a great peace deal."},"181":{"dur":4,"text":"We'll be working on it\nvery very diligently."},"186":{"dur":4,"text":"Very important to me, also\nsomething we want to do,"},"190":{"dur":3,"text":"but it is the parties\nthemselves who must"},"194":{"dur":3,"text":"directly negotiate\nsuch an agreement."},"197":{"dur":1,"text":"We'll be beside them."},"199":{"dur":1,"text":"We'll be working\nwith them."},"200":{"dur":3,"text":"As with any successful\nnegotiation, both sides"},"204":{"dur":2,"text":"will have to make\ncompromises."},"207":{"dur":0,"text":"You know that right?"},"208":{"dur":1,"text":"(laughter)"},"210":{"dur":3,"text":"(inaudible) I want the Israeli people to"},"213":{"dur":4,"text":"know, that the United\nStates stands with Israel"},"218":{"dur":2,"text":"in the struggle\nagainst terrorism."},"220":{"dur":4,"text":"As you know Mr. Prime\nMinister, our two nations"},"225":{"dur":5,"text":"will always condemn\nterrorist acts."},"230":{"dur":2,"text":"Peace requires nations\nto uphold the dignity of"},"233":{"dur":4,"text":"human life, and to be a\nvoice for all of those who"},"238":{"dur":3,"text":"are endangered\nand forgotten."},"241":{"dur":3,"text":"Those are the ideals to\nwhich we all, and will"},"245":{"dur":4,"text":"always, aspire and commit."},"249":{"dur":4,"text":"This will be the first of\nmany productive meetings,"},"254":{"dur":3,"text":"and I again, Mr. Prime\nMinister, thank you very"},"258":{"dur":3,"text":"much for being\nwith us today."},"262":{"dur":0,"text":"Mr. Prime Minister."},"263":{"dur":9,"text":"Thank you."},"272":{"dur":2,"text":"Prime Minister Netanyahu:\nPresident Trump, thank you"},"274":{"dur":3,"text":"for the truly warm\nhospitality you and"},"278":{"dur":3,"text":"Melania have shown me, my\nwife Sarah, our"},"282":{"dur":2,"text":"entire delegation."},"284":{"dur":4,"text":"I deeply value your\nfriendship to me, to the"},"289":{"dur":0,"text":"state of Israel."},"290":{"dur":4,"text":"It was so clearly evident\nin the words you just"},"294":{"dur":4,"text":"spoke, Israel has no\nbetter ally than the"},"299":{"dur":4,"text":"United States, and I want\nto assure you, the"},"303":{"dur":5,"text":"United States has no better\nally than Israel."},"308":{"dur":4,"text":"Our alliance has been\nremarkably strong, but"},"313":{"dur":3,"text":"under your leadership, I'm\nconfident it will"},"316":{"dur":3,"text":"get even stronger."},"319":{"dur":3,"text":"I look forward to working\nwith you to dramatically"},"323":{"dur":1,"text":"upgrade our alliance\nin every field."},"325":{"dur":3,"text":"In security, in\ntechnology, in cyber and"},"329":{"dur":2,"text":"trade, and so many others,\nand I certainly welcome"},"334":{"dur":3,"text":"your forthright call to\nensure that Israel is"},"337":{"dur":3,"text":"treated fairly in\ninternational forums, and"},"340":{"dur":3,"text":"that the slander and\nboycotts of Israel are"},"343":{"dur":3,"text":"resisted mightily by the\npower and world position"},"346":{"dur":3,"text":"of the United\nStates of America."},"349":{"dur":3,"text":"As you have said, our\nalliance is based on a"},"353":{"dur":4,"text":"deep bond of common values\nand common interest, and"},"357":{"dur":4,"text":"increasingly, those values\nand interests are under"},"362":{"dur":3,"text":"attack by one malevolent\nforce,"},"365":{"dur":3,"text":"radical Islamic terror."},"368":{"dur":2,"text":"Mr. President, you've\nshown great clarity and"},"371":{"dur":3,"text":"courage in confronting\nthis challenge head on."},"374":{"dur":5,"text":"You call for confronting\nIran's terrorist regime,"},"379":{"dur":4,"text":"preventing Iran from\nrealizing this terrible"},"384":{"dur":4,"text":"deal into a nuclear\narsenal, and you have said"},"388":{"dur":3,"text":"that the United States is\ncommitted to preventing"},"392":{"dur":2,"text":"Iran from getting\nnuclear weapons."},"395":{"dur":3,"text":"You call for the\ndefeat of ISIS."},"398":{"dur":2,"text":"Under your leadership, I\nbelieve we can reverse the"},"401":{"dur":3,"text":"rising tide of radical\nIslam, and in this great"},"404":{"dur":4,"text":"task, as in so many\nothers, Israel stands with"},"408":{"dur":4,"text":"you, and I stand with you."},"413":{"dur":5,"text":"Mr. President, in rolling\nback militant Islam we can"},"418":{"dur":4,"text":"seize an historic\nopportunity, because for"},"423":{"dur":3,"text":"the first time in my\nlifetime, and for the"},"426":{"dur":3,"text":"first time in the life\nof my countries, Arab"},"430":{"dur":3,"text":"countries in the region\ndo not see Israel as an"},"433":{"dur":6,"text":"enemy, but increasingly as\nan ally and I believe that"},"439":{"dur":4,"text":"under your leadership,\nthis change in our region"},"443":{"dur":3,"text":"creates an unprecedented\nopportunity to strengthen"},"447":{"dur":4,"text":"security and\nadvance peace."},"451":{"dur":4,"text":"Let us seize this moment\ntogether, let us bolster"},"455":{"dur":5,"text":"security, let us seek new\navenues of peace, and let"},"461":{"dur":3,"text":"us bring the remarkable\nalliance between Israel"},"464":{"dur":3,"text":"and the United States to\neven greater heights."},"468":{"dur":1,"text":"Thank you."},"469":{"dur":3,"text":"Thank you, Mr. President."},"472":{"dur":1,"text":"The President: Thank\nyou, again, thank you."},"477":{"dur":3,"text":"(inaudible) We'll take\na couple of questions."},"483":{"dur":5,"text":"David Brody that's\nChristian Broadcasting, David."},"488":{"dur":0,"text":"The Press: Thank you\nMr. President,"},"489":{"dur":1,"text":"Mr. Prime Minister."},"491":{"dur":2,"text":"Both of you have\ncriticized the Iran"},"493":{"dur":1,"text":"nuclear deal and at times,"},"495":{"dur":1,"text":"even called for its repeal."},"497":{"dur":2,"text":"I'm wondering if you're\nconcerned at all, as it"},"499":{"dur":3,"text":"relates to not just the\nnational security adviser,"},"503":{"dur":2,"text":"Michael Flynn, who is\nrecently no longer here,"},"506":{"dur":1,"text":"but also some of those\nevents that have been"},"508":{"dur":1,"text":"going on with\ncommunication in Russia?"},"509":{"dur":2,"text":"If that is going to hamper\nthis deal at all, whether"},"512":{"dur":1,"text":"or not it would keep Iran"},"513":{"dur":1,"text":"from becoming a nuclear state?"},"515":{"dur":1,"text":"And secondly, on the\nsettlement issue, are you"},"517":{"dur":1,"text":"both on the same page?"},"518":{"dur":2,"text":"How do you exactly term\nthat, as it relates to"},"520":{"dur":0,"text":"settlement issue?"},"521":{"dur":0,"text":"Thank you."},"522":{"dur":3,"text":"The President: Michael\nFlynn -- General Flynn, is"},"525":{"dur":1,"text":"a wonderful man."},"526":{"dur":2,"text":"I think he's been treated\nvery very unfairly"},"529":{"dur":1,"text":"by the media."},"531":{"dur":5,"text":"As I call it, the fake\nmedia in many cases, and I"},"536":{"dur":1,"text":"think it's really a sad\nthing that he was"},"538":{"dur":1,"text":"treated so badly."},"540":{"dur":4,"text":"I think, in addition to\nthat, from intelligence,"},"544":{"dur":4,"text":"papers are being leaked,\nthings are being leaked."},"548":{"dur":2,"text":"It's criminal action --\ncriminal act, and it's"},"551":{"dur":3,"text":"been going on for a long\ntime, before me, but now"},"555":{"dur":2,"text":"it's really going on."},"557":{"dur":2,"text":"People are trying to cover\nup for a terrible loss"},"560":{"dur":4,"text":"that the Democrats had\nunder Hillary Clinton."},"565":{"dur":3,"text":"I think it's very very\nunfair what's happened to"},"568":{"dur":2,"text":"General Flynn, the way\nhe was treated and the"},"571":{"dur":4,"text":"documents and papers that\nwere illegally, I stress"},"575":{"dur":3,"text":"that, illegally leaked,\nvery very unfair."},"578":{"dur":3,"text":"As far as settlements, I\nwould like to see you hold"},"581":{"dur":1,"text":"back on settlements\nfor little bit."},"583":{"dur":3,"text":"We'll work something out,\nbut I would like to see a"},"586":{"dur":1,"text":"deal be made."},"587":{"dur":2,"text":"I think a deal\nwill be made."},"589":{"dur":2,"text":"I know that every\npresident would like to."},"592":{"dur":2,"text":"Most of them have not\nstarted until late,"},"594":{"dur":3,"text":"because they never thought\nit was possible, and it"},"597":{"dur":3,"text":"wasn't possible because\nthey didn't do it."},"600":{"dur":1,"text":"But Bibi and I have known\neach other for"},"602":{"dur":0,"text":"a long time."},"603":{"dur":4,"text":"A smart man, great\nnegotiator, and I think"},"607":{"dur":0,"text":"we're going make a deal."},"608":{"dur":2,"text":"It might be a bigger and\nbetter deal than people in"},"610":{"dur":1,"text":"this room even understand."},"612":{"dur":3,"text":"That's a possibility, so\nlet's see what we do."},"615":{"dur":2,"text":"Prime Minister\nNetanyahu: Let's try it."},"618":{"dur":2,"text":"The President: Doesn't\nsound too optimistic"},"620":{"dur":1,"text":"but that's --"},"622":{"dur":0,"text":"(laughter)"},"623":{"dur":1,"text":"(inaudible) good negotiator."},"624":{"dur":1,"text":"Prime Minster Netanyahu:\nThat's the"},"625":{"dur":1,"text":"art of the deal."},"626":{"dur":1,"text":"The President: I also\nwant to thank (laughter),"},"628":{"dur":1,"text":"that's -- I also want to\nthank Sarah, could you"},"630":{"dur":1,"text":"You're so lovely, and\nyou've been so nice to"},"632":{"dur":2,"text":"Melania, I appreciate\nit very much."},"635":{"dur":0,"text":"(applause)"},"636":{"dur":1,"text":"Thank you."},"638":{"dur":1,"text":"Your turn."},"640":{"dur":5,"text":"Prime Minister Netanyahu:\n(inaudible) Yes, please,"},"645":{"dur":1,"text":"go ahead."},"647":{"dur":5,"text":"The Press: Thank\nyou very much."},"652":{"dur":3,"text":"Mr. President, in your\nvision for the new Middle"},"656":{"dur":2,"text":"East peace, are you ready\nto give up of the notion"},"658":{"dur":3,"text":"of two-state solution that\nwas adopted by previous"},"662":{"dur":3,"text":"administration and will\nyou be willing to hear"},"665":{"dur":2,"text":"different ideas from the\nPrime Minister, as some of"},"668":{"dur":2,"text":"his partners are asking\nhim to do, for example, an"},"670":{"dur":2,"text":"annexation of parts of the\nWest Bank, an unrestricted"},"673":{"dur":2,"text":"settlement constructions?"},"675":{"dur":2,"text":"And one more question, are\nyou going to fulfill your"},"678":{"dur":1,"text":"promise to move the US\nEmbassy in Israel to"},"680":{"dur":1,"text":"Jerusalem, and\nif so, when?"},"682":{"dur":3,"text":"And Mr. Prime Minister,\ndid you come here tonight"},"685":{"dur":3,"text":"to tell the President that\nyou're backing off the"},"688":{"dur":1,"text":"two-state solution?"},"689":{"dur":1,"text":"Thank you."},"690":{"dur":3,"text":"The President: So I'm\nlooking at two-state and"},"694":{"dur":3,"text":"one-state, and I like the\none that both"},"697":{"dur":0,"text":"parties like."},"698":{"dur":1,"text":"I'm very happy\nwith the one that both"},"700":{"dur":0,"text":"parties like."},"701":{"dur":1,"text":"I can live with\neither one."},"703":{"dur":3,"text":"I thought for a while that\ntwo-state looked like it"},"706":{"dur":4,"text":"might be the easier of the\ntwo, but honestly, if Bibi"},"710":{"dur":2,"text":"and if Israel and the\nPalestinians are happy,"},"712":{"dur":2,"text":"I'm happy with the one\nthey like the best."},"715":{"dur":5,"text":"As far as the embassy\nmoving to Jerusalem, I'd"},"720":{"dur":1,"text":"love to see that happen."},"722":{"dur":1,"text":"We're looking at it\nvery very strongly."},"724":{"dur":5,"text":"We are looking at it with\ngreat care, great care,"},"729":{"dur":2,"text":"believe me, and we'll\nsee what happens, okay."},"732":{"dur":5,"text":"Prime Minister\nNetanyahu: Thank you."},"737":{"dur":3,"text":"I read yesterday that an\nAmerican official said"},"740":{"dur":3,"text":"that if you ask five\npeople what two-states"},"744":{"dur":3,"text":"would look like, you'd get\neight different answers."},"747":{"dur":2,"text":"But, Mr. President, if you\nask five Israelis, you'd"},"750":{"dur":1,"text":"get 12 different answers."},"752":{"dur":4,"text":"But rather than deal with\nlabels, I want to"},"756":{"dur":1,"text":"deal with substance."},"758":{"dur":3,"text":"It's something I've hope\nto do for years in a world"},"761":{"dur":2,"text":"that's absolutely fixated\non labels,"},"764":{"dur":1,"text":"and not on substance."},"766":{"dur":2,"text":"So, here's the substance."},"768":{"dur":2,"text":"There's two prerequisites\nfor peace that I laid out"},"771":{"dur":3,"text":"to you several years ago,\nand they haven't changed."},"775":{"dur":2,"text":"First, the Palestinians\nmust recognize the"},"778":{"dur":1,"text":"Jewish state."},"779":{"dur":2,"text":"They have to stop calling\nfor Israel's destruction."},"782":{"dur":3,"text":"They have to stop\neducating their people for"},"786":{"dur":1,"text":"Israel's destruction."},"787":{"dur":3,"text":"Second, in any peace\nagreement, Israel must"},"791":{"dur":3,"text":"retain the overriding\nsecurity control over the"},"794":{"dur":3,"text":"entire area west of the\nJordan River because if we"},"797":{"dur":4,"text":"don't, we know what will\nhappen, because otherwise"},"801":{"dur":3,"text":"we'll get another radical\nIslamic terrorist state"},"805":{"dur":2,"text":"and the Palestinian areas\nexploding the peace,"},"807":{"dur":1,"text":"exploding the Middle East."},"809":{"dur":3,"text":"Now unfortunately, the\nPalestinians vehemently"},"813":{"dur":2,"text":"reject both\nprerequisites for peace."},"815":{"dur":1,"text":"First, they continue\nto call for Israel's"},"817":{"dur":2,"text":"destruction inside their\nschools, inside their"},"820":{"dur":1,"text":"mosques, inside\nthe textbooks."},"822":{"dur":1,"text":"You have to read\nit to believe it."},"823":{"dur":2,"text":"They even, you know,\nthey even denied,"},"826":{"dur":2,"text":"Mr. President, our\nhistorical connection to"},"829":{"dur":2,"text":"our homeland and I suppose\nyou have to ask yourself,"},"832":{"dur":2,"text":"\"Why are Jews\ncalled Jews?\""},"835":{"dur":1,"text":"Well the Chinese are\ncalled Chinese because"},"836":{"dur":0,"text":"they come from China."},"837":{"dur":1,"text":"The Japanese are called\nJapanese because they"},"838":{"dur":0,"text":"come from Japan."},"839":{"dur":1,"text":"Well, Jews are called Jews\nbecause they"},"840":{"dur":0,"text":"come from Judea."},"841":{"dur":5,"text":"This is our\nancestral homeland."},"851":{"dur":3,"text":"Jews are not foreign\ncolonialist in Judea."},"855":{"dur":2,"text":"So, unfortunately, the\nPalestinians not only deny"},"857":{"dur":4,"text":"the past, they also\npoison the present."},"861":{"dur":2,"text":"They name public squares\nin honor of mass murderers"},"864":{"dur":3,"text":"and murdered Israelis,\nand I have to say, also"},"868":{"dur":1,"text":"murdered Americans."},"869":{"dur":3,"text":"They fund -- they pay\nmonthly salaries to the"},"873":{"dur":2,"text":"families of murderers,\nlike the family of the"},"876":{"dur":2,"text":"terrorist who killed\nTaylor Force, a wonderful"},"879":{"dur":2,"text":"young American, a West\nPoint graduate, who was"},"881":{"dur":2,"text":"stabbed to death while\nvisiting Israel."},"884":{"dur":2,"text":"So, this is the source\nof the conflict."},"886":{"dur":2,"text":"The persistent Palestinian\nrefusal to recognize the"},"889":{"dur":1,"text":"Jewish state in\nany boundary."},"891":{"dur":2,"text":"This persistent\nrejectionism, that's the"},"893":{"dur":2,"text":"reason we don't\nhave peace."},"896":{"dur":1,"text":"Now, that has to change."},"897":{"dur":1,"text":"I want it to change."},"899":{"dur":3,"text":"Not only have I not\nabandon these two"},"903":{"dur":2,"text":"prerequisites of peace,\nthey've become even more"},"905":{"dur":2,"text":"important because of the\nrising tide of fanaticism"},"908":{"dur":2,"text":"that has swept the\nmiddle east and is also,"},"910":{"dur":3,"text":"unfortunately, infected\nPalestinian society."},"913":{"dur":2,"text":"So, I want this to change."},"916":{"dur":2,"text":"I want those two\nprerequisites of peace,"},"918":{"dur":3,"text":"substance, not labels,\nI want them reinstated."},"922":{"dur":2,"text":"But if anyone believes\nthat I, as prime minister"},"924":{"dur":2,"text":"of Israel, responsible\nfor the security of my"},"926":{"dur":3,"text":"country, would blindly\nwalk into a Palestinian"},"929":{"dur":2,"text":"terrorist state that seeks\nto the destruction of my"},"932":{"dur":2,"text":"country, they're\ngravely mistaken."},"935":{"dur":3,"text":"The two prerequisites of\npeace, recognition of a"},"938":{"dur":3,"text":"Jewish state, and Israel's\nsecurity needs west of the"},"941":{"dur":4,"text":"Jordan, they\nremain pertinent."},"945":{"dur":4,"text":"We have to look for new\nways, new ideas, on how to"},"950":{"dur":2,"text":"reinstate and how to\nmove peace forward."},"953":{"dur":3,"text":"And I believe that the\ngreat opportunity for"},"957":{"dur":5,"text":"peace, comes from a\nregional approach, from"},"962":{"dur":5,"text":"involving our newfound\nArab partners in the"},"968":{"dur":2,"text":"pursuit of a broader\npeace and peace with the"},"971":{"dur":4,"text":"Palestinians, and I\ngreatly look forward to"},"975":{"dur":2,"text":"discussing this in detail\nwith you Mr. President,"},"978":{"dur":3,"text":"because I think that if we\nwork together,"},"981":{"dur":1,"text":"we have a shot."},"983":{"dur":3,"text":"The President: And we\nhave been discussing that,"},"986":{"dur":3,"text":"and it is something that\nis very different, hasn't"},"990":{"dur":3,"text":"been discussed before,\nand it's actually a much"},"993":{"dur":2,"text":"bigger deal, much\nmore important deal."},"995":{"dur":4,"text":"In a sense, it would take\nin many many countries and"},"999":{"dur":3,"text":"it would cover a very\nlarge territory so, I"},"1003":{"dur":2,"text":"didn't know you were going\nto be mentioning that, but"},"1005":{"dur":2,"text":"now that you did, I think\nit's a terrific thing, and"},"1007":{"dur":1,"text":"I think we have some\npretty good cooperation"},"1009":{"dur":2,"text":"from people that, in the\npast, would never ever"},"1012":{"dur":3,"text":"have even thought about\ndoing this, so we'll see"},"1015":{"dur":2,"text":"how that works out. Okay?"},"1018":{"dur":1,"text":"Katie, from town hall."},"1019":{"dur":0,"text":"Right there, Katie."},"1020":{"dur":2,"text":"The Press: Thank\nyou Mr. President."},"1023":{"dur":1,"text":"You said in your earlier\nremarks that both sides"},"1024":{"dur":1,"text":"will have to make\ncompromises when it comes"},"1026":{"dur":1,"text":"to a peace deal."},"1027":{"dur":2,"text":"You've mentioned a\nhalt on settlements."},"1030":{"dur":2,"text":"Can you lay out a few more\nspecific compromises that"},"1033":{"dur":2,"text":"you have in mind both for\nthe Israelis and"},"1035":{"dur":1,"text":"for the Palestinians?"},"1037":{"dur":2,"text":"And Mr. Prime Minister,\nwhat expectations do you"},"1039":{"dur":2,"text":"have from the new\nadministration about how"},"1042":{"dur":3,"text":"to either amend the Iran\nnuclear agreement, or how"},"1045":{"dur":2,"text":"to dismantle it all\ntogether, and how to"},"1048":{"dur":3,"text":"overall work with the new\nadministration to combat"},"1051":{"dur":2,"text":"Iran's increased\naggression, not only in"},"1054":{"dur":2,"text":"the last couple of months,\nbut the past couple of"},"1056":{"dur":0,"text":"years as well?"},"1057":{"dur":2,"text":"The President: It\nactually an"},"1059":{"dur":1,"text":"interesting question."},"1060":{"dur":3,"text":"I think that the Israelis\nare going to have to show"},"1064":{"dur":4,"text":"some flexibility, which\nis hard, it's hard to do."},"1068":{"dur":2,"text":"They're going to have to\nshow the fact that they"},"1070":{"dur":1,"text":"really want to\nmake a deal."},"1072":{"dur":1,"text":"I think our new concept\nthat we've been"},"1074":{"dur":3,"text":"discussing, actually for a\nwhile, is something that"},"1078":{"dur":2,"text":"allows them to show more\nflexibility than they have"},"1080":{"dur":2,"text":"in the past, because you\nhave a lot bigger"},"1083":{"dur":2,"text":"canvas to play with."},"1085":{"dur":0,"text":"And I think\nthey'll do that."},"1086":{"dur":2,"text":"I think they very much\nwould like to make a deal"},"1089":{"dur":2,"text":"or I wouldn't be happy,\nand I wouldn't be here,"},"1092":{"dur":2,"text":"and I wouldn't be as\noptimistic as I am."},"1095":{"dur":3,"text":"I really think they --\nI can tell you from the"},"1098":{"dur":2,"text":"standpoint of me being\nfrom the standpoint of"},"1100":{"dur":2,"text":"Israel, I really believe\nthey want to make a deal,"},"1103":{"dur":1,"text":"and they'd like to\nsee the big deal."},"1105":{"dur":4,"text":"I think the Palestinians\nhave to get rid of some of"},"1109":{"dur":1,"text":"that hate that they're"},"1111":{"dur":2,"text":"taught from a very young age."},"1113":{"dur":1,"text":"They're taught\ntremendous hate."},"1114":{"dur":5,"text":"I've seen what they're\ntaught and you can talk"},"1119":{"dur":2,"text":"about flexibility there\ntoo, but it starts at a"},"1122":{"dur":3,"text":"very young age, and it\nstarts in the school room,"},"1126":{"dur":3,"text":"and they have to\nacknowledge Israel."},"1129":{"dur":2,"text":"They're going to\nhave to do that."},"1131":{"dur":1,"text":"There's no way a deal can\nbe made if they're not"},"1133":{"dur":4,"text":"ready to acknowledge\na very very great and"},"1137":{"dur":3,"text":"important country, and I\nthink they're going to be"},"1140":{"dur":1,"text":"willing to do that also."},"1142":{"dur":2,"text":"But now, I also believe\nwe're going to have,"},"1144":{"dur":3,"text":"Katie, other players at\na very high level, and I"},"1148":{"dur":3,"text":"think it might make\nit easier on both the"},"1152":{"dur":3,"text":"Palestinians and Israel\nto get something done. Okay?"},"1155":{"dur":0,"text":"Thank you."},"1156":{"dur":1,"text":"Very interesting question."},"1157":{"dur":5,"text":"Prime Minister Netanyahu:\nYou asked about Iran."},"1163":{"dur":2,"text":"One thing is preventing\nIran from getting nuclear"},"1165":{"dur":5,"text":"weapons, something that\nPresident Trump and I, I"},"1171":{"dur":3,"text":"think, are deeply\ncommitted to do, and we"},"1174":{"dur":2,"text":"are obviously going\nto discuss that."},"1176":{"dur":2,"text":"I think beyond that,\nPresident Trump has led a"},"1179":{"dur":4,"text":"very important effort in\nthe past few weeks just"},"1184":{"dur":1,"text":"coming into the\npresidency."},"1185":{"dur":2,"text":"He pointed out their\nviolations, the Iranian"},"1188":{"dur":2,"text":"violations, on\nballistic missile test."},"1190":{"dur":1,"text":"By the way, these\nballistic missiles are"},"1192":{"dur":3,"text":"inscribed in Hebrew,\n'Israel must"},"1195":{"dur":0,"text":"be destroyed'."},"1196":{"dur":2,"text":"The Palestinian, rather\nthe Iranian foreign"},"1198":{"dur":3,"text":"minister Zarif, said, \"Our\nballistic missiles are not"},"1202":{"dur":2,"text":"intended against\nany country.\" No."},"1204":{"dur":4,"text":"They write on the missile\nin Hebrew, 'Israel"},"1209":{"dur":1,"text":"must be destroyed'."},"1210":{"dur":3,"text":"So, challenging Iran on\nits violation of ballistic"},"1214":{"dur":4,"text":"missiles, imposing\nsanctions on Hezbollah,"},"1218":{"dur":3,"text":"preventing them, making\nthem pay for the terrorism"},"1221":{"dur":3,"text":"that they foment\nthroughout the Middle East"},"1224":{"dur":2,"text":"and beyond, well beyond."},"1226":{"dur":3,"text":"I think that's a change\nthat is clearly evident"},"1229":{"dur":3,"text":"since President\nTrump took office."},"1232":{"dur":1,"text":"I welcome that."},"1234":{"dur":4,"text":"I think it's, let me say\nthis very openly, I think"},"1238":{"dur":3,"text":"it's long overdue, and\nI think that if we work"},"1241":{"dur":4,"text":"together, and not just the\nUnited States and Israel,"},"1246":{"dur":3,"text":"but so many others in the\nregion, will see eye to"},"1249":{"dur":4,"text":"eye on the great magnitude"},"1254":{"dur":1,"text":"and danger of the Iranian threat."},"1255":{"dur":6,"text":"Then I think we can roll\nback Iran's aggression and"},"1262":{"dur":1,"text":"danger and that's\nsomething that's important"},"1264":{"dur":3,"text":"for Israel, the Arab\nstates, but I think it's"},"1268":{"dur":1,"text":"vitally important\nfor America."},"1269":{"dur":1,"text":"These guys are\ndeveloping ICBMs."},"1270":{"dur":1,"text":"They're developing -- they\nwant to get to a nuclear"},"1272":{"dur":1,"text":"arsenal, not a bomb, 100\nbombs, and they want to"},"1273":{"dur":1,"text":"have the ability to launch\nthem everywhere on earth"},"1274":{"dur":1,"text":"and including and\nespecially, eventually,"},"1276":{"dur":0,"text":"So, this is something that"},"1277":{"dur":5,"text":"is important for all of us."},"1287":{"dur":2,"text":"I welcome the change, and\nI intend to work with"},"1290":{"dur":2,"text":"President Trump very\nclosely so that we can"},"1292":{"dur":0,"text":"thwart this danger."},"1293":{"dur":1,"text":"The President: Great."},"1294":{"dur":2,"text":"You have somebody?"},"1297":{"dur":2,"text":"Prime Minister\nNetanyahu: (inaudible)"},"1299":{"dur":1,"text":"The Press: Mr. President,\nsince your election"},"1301":{"dur":3,"text":"campaign, and even after\nyour victory, we've seen a"},"1305":{"dur":6,"text":"sharp rise in anti-Semitic\nincident across the United"},"1312":{"dur":2,"text":"States, and I wonder, what\ndo you say to those among"},"1314":{"dur":2,"text":"the Jewish community in\nthe states, and in Israel,"},"1317":{"dur":2,"text":"and maybe around the\nworld, who believe and"},"1319":{"dur":2,"text":"feel that your\nadministration is playing"},"1321":{"dur":3,"text":"with xenophobia and\nmaybe racist tones?"},"1324":{"dur":3,"text":"And Mr. Prime Minister,\ndo you agree to what the"},"1327":{"dur":2,"text":"President just said about\nthe need for Israel to"},"1330":{"dur":2,"text":"restrain or to stop\nsettlement activity in the"},"1332":{"dur":2,"text":"West Bank and a quick\nfollow-up on my friend's"},"1334":{"dur":2,"text":"questions -- simple\nquestion, do you back off"},"1337":{"dur":2,"text":"from your vision to the\nend of the conflict of"},"1339":{"dur":2,"text":"two-state solution as\nyou laid out in Bar-llan"},"1341":{"dur":1,"text":"speech or do\nyou support it?"},"1343":{"dur":1,"text":"Thank you."},"1344":{"dur":3,"text":"The President: Well, I\njust want to say that we"},"1347":{"dur":2,"text":"are, you know, very\nhonored by the victory"},"1350":{"dur":0,"text":"that we had."},"1351":{"dur":3,"text":"306 Electoral\nCollege votes."},"1354":{"dur":3,"text":"We were not supposed\nto crack 220."},"1358":{"dur":1,"text":"You know that right?"},"1359":{"dur":2,"text":"There was no way to 221,\nand then they said there's"},"1361":{"dur":1,"text":"no way to 227."},"1363":{"dur":2,"text":"And there's tremendous\nenthusiasm out there."},"1365":{"dur":6,"text":"I will say, that we are\ngoing to have peace in"},"1372":{"dur":4,"text":"this country, we are going\nto stop crime in this"},"1376":{"dur":3,"text":"country, we are going to\ndo everything within our"},"1380":{"dur":5,"text":"power to stop long\nsimmering racism and every"},"1386":{"dur":1,"text":"other thing\nthat's going on."},"1387":{"dur":2,"text":"Because a lot of bad\nthings have been taking"},"1390":{"dur":2,"text":"place over a long\nperiod of time."},"1392":{"dur":2,"text":"I think one of the reasons\nI won the election, is we"},"1394":{"dur":3,"text":"have a very very\ndivided nation."},"1397":{"dur":1,"text":"Very divided."},"1399":{"dur":1,"text":"And hopefully I'll be able"},"1401":{"dur":1,"text":"to do something about that."},"1402":{"dur":2,"text":"And I, you know, it was\nsomething that was very"},"1404":{"dur":1,"text":"important to me."},"1406":{"dur":5,"text":"As far as people, Jewish\npeople, so many friends, a"},"1412":{"dur":4,"text":"daughter, who happens\nto be here right now, a"},"1417":{"dur":3,"text":"son-in-law, and three\nbeautiful grandchildren."},"1421":{"dur":4,"text":"I think that you're going\nto see a lot different"},"1425":{"dur":3,"text":"United States of America\nover the next three, four"},"1429":{"dur":2,"text":"or eight years."},"1431":{"dur":1,"text":"I think a lot of good\nthings are happening."},"1433":{"dur":2,"text":"You're going to\nsee a lot of love."},"1435":{"dur":2,"text":"You're going to\nsee a lot of love."},"1438":{"dur":3,"text":"Okay? Thank you."},"1442":{"dur":3,"text":"Prime Minister Netanyahu:\nI believe that the issue"},"1445":{"dur":1,"text":"of the settlements is not\nthe core of the conflict,"},"1447":{"dur":1,"text":"nor does it really\ndrive the conflict."},"1448":{"dur":0,"text":"I think it's an issue."},"1449":{"dur":2,"text":"It has to be resolved\nin the context of peace"},"1451":{"dur":3,"text":"negotiations and I think\nwe also are going to speak"},"1455":{"dur":3,"text":"about it, President Trump\nand I, so we can arrive at"},"1459":{"dur":3,"text":"an understanding so we\ndon't keep on bumping into"},"1462":{"dur":2,"text":"each other all the time on\nthis issue and we're going"},"1465":{"dur":2,"text":"to discuss this."},"1467":{"dur":4,"text":"On the question you said,\nyou just came back with"},"1472":{"dur":2,"text":"your question to the\nproblem that I said."},"1474":{"dur":2,"text":"What does Abu Mazen\nmean by two-states? Okay."},"1477":{"dur":1,"text":"What does he mean?"},"1478":{"dur":0,"text":"A state that doesn't"},"1479":{"dur":2,"text":"recognize the Jewish state?"},"1482":{"dur":2,"text":"A state that basically is"},"1484":{"dur":3,"text":"open for attack against Israel?"},"1487":{"dur":1,"text":"You know, what are\nwe talking about?"},"1489":{"dur":1,"text":"Are we talking about Costa\nRica or are we talking"},"1490":{"dur":1,"text":"about another Iran?"},"1491":{"dur":1,"text":"So obviously it means\ndifferent things."},"1493":{"dur":2,"text":"I told you what are the\nconditions that I believe"},"1495":{"dur":2,"text":"are necessary\nfor an agreement."},"1497":{"dur":2,"text":"It's the recognition of\nthe Jewish state, and it"},"1500":{"dur":2,"text":"Israel's -- Israel's\nsecurity control"},"1502":{"dur":1,"text":"of the entire area."},"1503":{"dur":2,"text":"Otherwise, we're\njust fantasizing."},"1506":{"dur":3,"text":"Otherwise, we'll get\nanother failed state."},"1509":{"dur":5,"text":"Another terrorist Islamist\ndictatorship that will not"},"1514":{"dur":3,"text":"work for peace, but work\nto destroy us, but also"},"1518":{"dur":2,"text":"destroy any hope, any hope\nfor a peaceful"},"1521":{"dur":0,"text":"future for our people."},"1522":{"dur":2,"text":"So I've been very clear\nabout those conditions and"},"1524":{"dur":1,"text":"they haven't changed."},"1526":{"dur":1,"text":"I haven't changed."},"1527":{"dur":2,"text":"If you read what I said\neight years ago, it's"},"1530":{"dur":1,"text":"exactly that."},"1531":{"dur":2,"text":"And I repeated that again,\nand again, and again."},"1534":{"dur":1,"text":"If you want to deal with\nlabels, deal with labels,"},"1536":{"dur":1,"text":"I'll deal with substance."},"1537":{"dur":3,"text":"And finally, one if I can\nrespond to, something that"},"1541":{"dur":2,"text":"I know from personal\nexperience, I've known"},"1543":{"dur":4,"text":"President Trump for many\nyears, and to allude to"},"1548":{"dur":5,"text":"him, or to his people, his\nteam, some of whom I've"},"1553":{"dur":3,"text":"known for many years too."},"1556":{"dur":2,"text":"Can I reveal Jared how\nlong we've known you?"},"1559":{"dur":1,"text":"(laughter)"},"1561":{"dur":2,"text":"Well, he was never small."},"1563":{"dur":1,"text":"(laughter)"},"1565":{"dur":3,"text":"But, I've known the\nPresident, and I've known"},"1568":{"dur":4,"text":"his family, and his team,\nfor a long time, and there"},"1573":{"dur":2,"text":"is no greater supporter of\nthe Jewish people and the"},"1577":{"dur":3,"text":"Jewish state then\nPresident Donald Trump."},"1581":{"dur":3,"text":"I think we should\nput that to rest."},"1584":{"dur":1,"text":"The President:\nThank you very much."},"1585":{"dur":0,"text":"Very nice."},"1586":{"dur":2,"text":"I appreciate\nthat very much."},"1588":{"dur":4,"text":"Prime Minister\nNetanyahu: Thank you."}} |
{
"id": 23408267,
"type": "Feature",
"properties": {
"name":"Brattn\u00e4s",
"placetype":"locality",
"woe:id":23408267,
"woe:name":"Brattn\u00e4s, Southern Finland, Finland",
"woe:place_id":"I_UDMJCbApijcTcvQg",
"woe:placetype":"locality",
"woe:placetype_id":7
},
"bbox": [25.695669,60.329304,25.701485,60.330826],
"geometry": {"alpha":0.00015,"bbox":[25.695669174194,60.329303741455,25.701484680176,60.330825805664],"coordinates":[[[[25.696678,60.329613],[25.695669,60.330303],[25.696785,60.330826],[25.701485,60.329498],[25.700325,60.329304],[25.696678,60.329613]]]],"created":1292547894,"edges":6,"is_donuthole":0,"link":{"href":"http://farm6.static.flickr.com/5164/shapefiles/23408267_20101217_0a348c2724.tar.gz"},"points":20,"type":"MultiPolygon"}
} |
{
"DBHost" : "mongodb://127.0.0.1:27017/tests",
"port" : 3000,
"jwtSecret" : "MyS3cr3tK3Y",
"jwtSession" : {"session": false}
} |
{
"first_traded_price": 4196.0,
"highest_price": 4.2e3,
"isin": "IRO1KHOC0001",
"last_traded_price": 4002.0,
"lowest_price": 3951.0,
"trade_volume": 62010.0,
"unix_time": 1536105600
} |
{
"first_traded_price": 3650.0,
"highest_price": 3659.0,
"isin": "IRO1RSAP0001",
"last_traded_price": 3634.0,
"lowest_price": 3601.0,
"trade_volume": 1049883.0,
"unix_time": 1277769600
} |
{"locality": "Galesville", "region": {"fips": "24", "abbr": "MD", "name": "Maryland"}, "localities": ["Galesville"], "postal_code": "20765", "lat": 38.844097, "lng": -76.54795, "type": "POBOX", "counties": [{"fips": "003", "name": "Anne Arundel"}]} |
{"body":"Explore This Park Learn About the Park Education Curriculum Materials Curriculum Materials Below are a variety of lesson plans developed to help students gain an understanding of geology, paleontology, science, and history at Florissant Fossil Beds National Monument. These activities are great for stand alone, in-class lessons or as pre and post trip materials for a visit to the Monument.l Most of the activities require Adobe Acrobat Reader for viewing. Downloads are available for individual lessons as well as for the entire unit. All PDF files contain answer keys. The Paleontologist\u0027s Path Grade 1 to Grade 3 Grade 4 to Grade 6 Grade 7 to Grade 12 Paleontology Curriculum for High School Students This High School Curriculum was developed by National Park Service Staff using grants from the The National Park Foundation, Parks as Classrooms, and Canon USA. Unit One: The Nature of Science Unit Two: Paleontology Unit Three: Evolution Paleontology Curriculum for College Students Unit One: Introduction Unit Two: Geology Unit Three: Fossilization Unit Four: Identification Unit Five: Ancient Climate Unit Six: Fossil Database Views of the National Parks VIEWS: Virtual Tour and Curriculum for Middle and High School Teaching with Historic Places Unit on the Hornbek Homestead and the Homestead Act","url":"https://www.nps.gov/flfo/learn/education/curriculummaterials.htm","title":"Florissant Fossil Beds National Monument: Curriculum Materials"} |
{"first_name":"Dr.","last_name":"Declan Doogan","permalink":"dr-declan-doogan","crunchbase_url":"http://www.crunchbase.com/person/dr-declan-doogan","homepage_url":null,"birthplace":null,"twitter_username":null,"blog_url":null,"blog_feed_url":null,"affiliation_name":"Unaffiliated","born_year":null,"born_month":null,"born_day":null,"tag_list":"","alias_list":null,"created_at":"Thu Sep 25 02:19:44 UTC 2008","updated_at":"Tue Oct 07 21:47:06 UTC 2008","overview":"<p>Declan Doogan starts up the social support network, WeAre.Us on the back of 30 years of experience in healthcare and the pharmaceutical industry. </p>\n\n<p>Dr. Doogan was Senior Vice President and Head of Worldwide Development at Pfizer Global Research & Development. In recent years, he held a number of senior positions in Pfizer in the US, Japan and the UK. Dr. Doogan joined Pfizer in 1982, where he led the Zoloft clinical development program. He held positions in the UK and in Japan, where he was initially Medical Director and later head of the company’s development organization. Dr. Doogan holds Visiting Professorships at Harvard, Glasgow and Kitasato University in Japan. In addition, Dr. Doogan holds a number of non-executive directorships in the US and the U.K. Dr. Doogan received his medical degree from Glasgow University in 1975. He is a Fellow of the Royal College of Physicians of Glasgow and the Faculty of Pharmaceutical Medicine in the U.K.</p>","image":{"available_sizes":[[[113,150],"assets/images/resized/0002/6336/26336v2-max-150x150.png"],[[189,250],"assets/images/resized/0002/6336/26336v2-max-250x250.png"],[[231,304],"assets/images/resized/0002/6336/26336v2-max-450x450.png"]],"attribution":"<p>Declan Doogan</p>"},"degrees":[],"relationships":[],"investments":[{"funding_round":{"round_code":"seed","source_url":"http://www.vencorps.com","source_description":"Spencer Trask / VenCorps","raised_amount":50000,"raised_currency_code":"USD","funded_year":2008,"funded_month":8,"funded_day":1,"company":{"name":"WeAre.Us","permalink":"weare-us","image":{"available_sizes":[[[150,26],"assets/images/resized/0002/5798/25798v2-max-150x150.png"],[[250,43],"assets/images/resized/0002/5798/25798v2-max-250x250.png"],[[441,77],"assets/images/resized/0002/5798/25798v2-max-450x450.png"]],"attribution":null}}}}],"milestones":[],"video_embeds":[],"external_links":[],"web_presences":[]} |
{
"order": "84057"
,"word": "värmland"
,"count": "13"
}
|
{
"order": "91597"
,"word": "estes"
,"count": "11"
}
|
{
"success" : true,
"formPanelConstructor" : {
"title" : 'form',
"labelWidth" : 60,
"columnNums" : 1,
"width" : 200,
"height" : 200,
"url" : '', // 修改后保存的URL 可配置 ,action
"getDataUrl" : 'tempTerminal/', // 根据ID查询实体的URL 可配置 ,action
"fields" : [[{
xtype : 'textfield',
fieldLabel : '编号',
name : 'id',
hidden : true
}, {
xtype : 'displayfield',
name : 'sn',
fieldLabel : 'SN',
}, {
xtype : 'displayfield',
name : 'checkCode',
fieldLabel : '校验码',
}, {
xtype : 'displayfield',
name : 'testStatus',
fieldLabel : '测试状态'
}, {
xtype : 'displayfield',
fieldLabel : '测试账户',
name : 'user.userName',
maxLength : 100
}]],
"buttons":[{
"type" : "save",
"text" : "save"
},{
xtype:'button',
text:'cannel'
}],
"lisenter" : {
reloadForm : true
},
"triggerGridId" : ['testGridId'],
"firer" : {}
}
} |
[{"y":null,"m":null,"pk":"RoydenDixon","t":1}] |
[{"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 15.0, "y": 1.4712726758535695, "x": 0.88933156521915935, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 7.0, "y": 2.5231686568491458, "x": -0.25431783018419862, "first": 3165.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 6.0, "y": -0.63555889879311511, "x": -0.31100703196978174, "first": 3165.0}, {"boots": 3020.0, "second": 3285.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 5.0, "y": -3.9571962981224353, "x": 1.1089001938963254, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3115.0, "region": "OCE", "patch": "5.14", "games": 4.0, "y": 2.0254418799218192, "x": 2.4956838964685222, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3285.0, "region": "OCE", "patch": "5.14", "games": 4.0, "y": 2.0659565091629353, "x": 3.4363878453818191, "first": 3165.0}, {"boots": 3020.0, "second": 3001.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 4.0, "y": -0.0012322920273359905, "x": -4.8180822161632175, "first": 3165.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 3.0, "y": -0.27997920387753172, "x": 6.4814715909265015, "first": 3089.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 3.0, "y": -1.0578301954945148, "x": 4.9406597639588838, "first": 3115.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3116.0, "region": "OCE", "patch": "5.14", "games": 3.0, "y": -1.4872390586083948, "x": -0.94398812574841706, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 3.0, "y": -0.90745194793994055, "x": -1.8813270677902101, "first": 3174.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 3.0, "y": -1.0337569319009592, "x": 4.3309127822480455, "first": 3027.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3115.0, "region": "OCE", "patch": "5.14", "games": 3.0, "y": 3.8045238804341128, "x": -2.8441460964945113, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": 0.2418208366433505, "x": 3.1217228825629442, "first": 3027.0}, {"boots": 3020.0, "second": 3001.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": 2.3933890610663413, "x": 1.9620880953673203, "first": 3165.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3151.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": 0.0084301053705408968, "x": -1.8813975020823164, "first": 3165.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3285.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": -4.2545382147771189, "x": -0.1646279461850042, "first": 3165.0}, {"boots": 3020.0, "second": 3285.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": -2.905300317126859, "x": -0.034749201507032756, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": 0.1444440330556358, "x": -3.0249764631935685, "first": 3174.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3151.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": 3.9502002055170848, "x": -1.0510403435248623, "first": 3174.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3285.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": -0.31276811463057475, "x": 0.66572921237244964, "first": 3174.0}, {"boots": 3020.0, "second": 3285.0, "champ": 268.0, "tier": "BRONZE", "third": 3151.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": 0.42100300688562298, "x": 5.4424767630874458, "first": 3027.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3116.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": -2.1830297164842505, "x": -0.67213716810510782, "first": 3165.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3285.0, "region": "OCE", "patch": "5.14", "games": 2.0, "y": -6.335920921915946, "x": -1.661758439113044, "first": 3165.0}, {"boots": 3006.0, "second": 3092.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 2.9323790692915779, "x": 3.0432912961830141, "first": 3165.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3116.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 3.3676916176422895, "x": 5.0760394668792346, "first": 3003.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -5.2474200811943286, "x": 1.930235587870164, "first": 3027.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -0.05933702898433002, "x": 2.9282936986491004, "first": 3089.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -2.1097261764900912, "x": 6.0843091593622418, "first": 3115.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3165.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -6.0855522701900657, "x": 1.4921569019732399, "first": 3115.0}, {"boots": 3020.0, "second": 3174.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -6.6972614229151572, "x": -1.0814053056948776, "first": 3115.0}, {"boots": 3020.0, "second": 3174.0, "champ": 268.0, "tier": "BRONZE", "third": 3115.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 2.4638736799306438, "x": -1.0271841884135435, "first": 3151.0}, {"boots": 3020.0, "second": 3285.0, "champ": 268.0, "tier": "BRONZE", "third": 3115.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 1.6229399523797041, "x": 6.3580989053207411, "first": 3151.0}, {"boots": 3020.0, "second": 3001.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 6.6070522103597105, "x": 4.3627652897452034, "first": 3165.0}, {"boots": 3020.0, "second": 3027.0, "champ": 268.0, "tier": "BRONZE", "third": 3116.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 0.27642120124168656, "x": -3.1659278333478906, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3001.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 6.2996800819554526, "x": 4.0051797796958155, "first": 3165.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3151.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 0.83968391147291577, "x": 0.52813099479172765, "first": 3165.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3116.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -2.3184928647107697, "x": -3.3535166226224606, "first": 3165.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -3.7973260670909079, "x": -3.8553336217510221, "first": 3165.0}, {"boots": 3020.0, "second": 3174.0, "champ": 268.0, "tier": "BRONZE", "third": 3115.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -2.5620933665032464, "x": -4.6700305685885972, "first": 3165.0}, {"boots": 3020.0, "second": 3174.0, "champ": 268.0, "tier": "BRONZE", "third": 3285.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -2.5215787372621303, "x": -3.7293266196753003, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3116.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 1.6232772354357741, "x": -2.5231594640650066, "first": 3174.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3001.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -1.5682854596757358, "x": 0.043033851993666161, "first": 3174.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3116.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -3.865963682401905, "x": -3.7146467587577865, "first": 3174.0}, {"boots": 3020.0, "second": 3285.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -2.1222577726225764, "x": 0.73891875526483775, "first": 3174.0}, {"boots": 3020.0, "second": 3027.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -5.7542775759954576, "x": 4.5522900548965826, "first": 3285.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3027.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -6.6192489313129421, "x": 4.4897604584717268, "first": 3285.0}, {"boots": 3111.0, "second": 3151.0, "champ": 268.0, "tier": "BRONZE", "third": 3116.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 3.4603980239928589, "x": 0.99292706239379458, "first": 3027.0}, {"boots": 3111.0, "second": 3151.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 0.92966884061714428, "x": 1.6347594586685912, "first": 3027.0}, {"boots": 3117.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3285.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -4.0204930924200006, "x": 2.8226436063775675, "first": 3165.0}, {"boots": 3158.0, "second": 3116.0, "champ": 268.0, "tier": "BRONZE", "third": 3115.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -0.89030701427237502, "x": 0.096368999298989566, "first": 3027.0}, {"boots": 3158.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 3.3612725507416528, "x": -0.32225965871849716, "first": 3165.0}, {"boots": 3158.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 2.309376569746076, "x": 0.82138973668486104, "first": 3165.0}, {"boots": 3158.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -0.069348054047434049, "x": -1.9492688963245084, "first": 3174.0}, {"boots": 3158.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3151.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -1.5321906245304628, "x": -4.7199979636259837, "first": 3174.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -4.1955241001987522, "x": 0.78658619246680583, "first": 3027.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -4.6527362478849632, "x": 4.4772918680328235, "first": 3027.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3285.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -0.97298498803928513, "x": 5.7419687056179924, "first": 3027.0}, {"boots": 3020.0, "second": 3285.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -0.32899598387562934, "x": 4.171578235505458, "first": 3027.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -0.42046397607320429, "x": 3.921221967761106, "first": 3089.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3116.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -3.5822311443709962, "x": 0.37689537797986583, "first": 3115.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -7.2749145820868204, "x": 0.10682758546855498, "first": 3115.0}, {"boots": 3020.0, "second": 3116.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -7.8355370671207796, "x": 5.0303496479580785, "first": 3115.0}, {"boots": 3020.0, "second": 3116.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -0.69955480577665563, "x": 3.3972658634400323, "first": 3115.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3174.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -6.1025775896057919, "x": 1.4656509744677826, "first": 3115.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3285.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 1.3320513166907304, "x": -1.445303628499474, "first": 3115.0}, {"boots": 3020.0, "second": 3165.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -1.8078932139131549, "x": 0.18456120094130779, "first": 3115.0}, {"boots": 3020.0, "second": 3174.0, "champ": 268.0, "tier": "BRONZE", "third": 3285.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 4.0020018592292841, "x": 0.24749916894436308, "first": 3115.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3174.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -4.017968241984109, "x": -0.30215572947362013, "first": 3151.0}, {"boots": 3020.0, "second": 3165.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 3.1605348762704568, "x": -1.2737556263819767, "first": 3157.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3116.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -4.3993123653401156, "x": -6.416226606526271, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -1.0073058579753758, "x": -6.3704524578636228, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 0.25646685117093387, "x": 3.5095773882742072, "first": 3165.0}, {"boots": 3020.0, "second": 3089.0, "champ": 268.0, "tier": "BRONZE", "third": 3285.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 4.2283275865662002, "x": 1.5921066567358335, "first": 3165.0}, {"boots": 3020.0, "second": 3115.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -6.3966928657776201, "x": -3.0728143624829896, "first": 3165.0}, {"boots": 3020.0, "second": 3116.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 0.7818102524769468, "x": -4.0444142593913464, "first": 3165.0}, {"boots": 3020.0, "second": 3116.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 4.2721947075989126, "x": -1.8362355785811295, "first": 3165.0}, {"boots": 3020.0, "second": 3116.0, "champ": 268.0, "tier": "BRONZE", "third": 3151.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 2.5892607416812581, "x": -4.8787451692338077, "first": 3165.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -6.6737774678117452, "x": -3.8759905281076712, "first": 3165.0}, {"boots": 3020.0, "second": 3157.0, "champ": 268.0, "tier": "BRONZE", "third": 3152.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 0.50271942277349546, "x": -4.56837036371242, "first": 3165.0}, {"boots": 3020.0, "second": 3174.0, "champ": 268.0, "tier": "BRONZE", "third": 3165.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -5.2001083719272074, "x": 6.1586423861459458, "first": 3165.0}, {"boots": 3020.0, "second": 3285.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -1.3406773912157701, "x": 0.15080699356898888, "first": 3165.0}, {"boots": 3020.0, "second": 3285.0, "champ": 268.0, "tier": "BRONZE", "third": 3135.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": -2.1951121554641082, "x": -1.7431881567641674, "first": 3165.0}, {"boots": 3020.0, "second": 3285.0, "champ": 268.0, "tier": "BRONZE", "third": 3157.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 3.6106539139115714, "x": 2.4119486577538494, "first": 3165.0}, {"boots": 3020.0, "second": 3001.0, "champ": 268.0, "tier": "BRONZE", "third": 3089.0, "region": "OCE", "patch": "5.14", "games": 1.0, "y": 0.83687160186517051, "x": -4.8860240446975158, "first": 3174.0}] |
{
"first_traded_price": 6799.0,
"highest_price": 6972.0,
"isin": "IRO1CRBN0001",
"last_traded_price": 6540.0,
"lowest_price": 6.4e3,
"trade_volume": 1817996.0,
"unix_time": 1533081600
} |
[
"templates",
"filter_plugins",
"search_hostvars",
"local_settings",
"templates.etc.openstack-dashboard",
"templates.etc",
"etc.openstack-dashboard",
"etc",
"openstack-dashboard.local_settings",
"templates.etc.openstack-dashboard.local_settings",
"openstack-dashboard",
"filter_plugins.search_hostvars",
"etc.openstack-dashboard.local_settings"
] |
{
"short_name": "RCP 2019",
"name": "Real Count PILPRES 2019",
"icons": [
{
"src":
"https://s3-id-jkt-1.kilatstorage.id/cdn-dutainformasi/pilpres2019/assets/icons/logo-16.png",
"sizes": "16x16",
"type": "image/png",
"density": "0.75"
},
{
"src":
"https://s3-id-jkt-1.kilatstorage.id/cdn-dutainformasi/pilpres2019/assets/icons/logo-24.png",
"sizes": "24x24",
"type": "image/png",
"density": "1.0"
},
{
"src":
"https://s3-id-jkt-1.kilatstorage.id/cdn-dutainformasi/pilpres2019/assets/icons/logo-32.png",
"sizes": "32x32",
"type": "image/png",
"density": "1.5"
},
{
"src":
"https://s3-id-jkt-1.kilatstorage.id/cdn-dutainformasi/pilpres2019/assets/icons/logo-64.png",
"sizes": "64x64",
"type": "image/png",
"density": "2.0"
},
{
"src":
"https://s3-id-jkt-1.kilatstorage.id/cdn-dutainformasi/pilpres2019/assets/icons/logo-72.png",
"sizes": "72x72",
"type": "image/png",
"density": "1.5"
},
{
"src":
"https://s3-id-jkt-1.kilatstorage.id/cdn-dutainformasi/pilpres2019/assets/icons/logo-96.png",
"sizes": "96x96",
"type": "image/png",
"density": "2.0"
},
{
"src":
"https://s3-id-jkt-1.kilatstorage.id/cdn-dutainformasi/pilpres2019/assets/icons/logo-144.png",
"sizes": "144x144",
"type": "image/png",
"density": "3.0"
},
{
"src":
"https://s3-id-jkt-1.kilatstorage.id/cdn-dutainformasi/pilpres2019/assets/icons/logo-192.png",
"sizes": "192x192",
"type": "image/png",
"density": "4.0"
},
{
"src":
"https://s3-id-jkt-1.kilatstorage.id/cdn-dutainformasi/pilpres2019/assets/icons/logo-512.png",
"sizes": "512x512",
"type": "image/png",
"density": "4.0"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#00d1b2",
"prefer_related_applications": true,
"related_applications": [
{
"platform": "play",
"url": "https://play.google.com/store/apps/details?id=com.realcountkpu",
"id": "com.realcountkpu"
}
],
"gcm_sender_id": "149717606481"
}
|
{
"TableName": "SRV_Bereitstellungen",
"PrimaryKey": "BereitstellungNr",
"Fields": [
{
"Feld": "BereitstellungNr",
"Datentyp": "Number (int)",
"NamePROFFIX": "BereitstellungNrSRV",
"Besonderes": " "
},
{
"Feld": "BereitstellungAufInstallation",
"Datentyp": "Object\u003cInstallation\u003e",
"NamePROFFIX": "PositionNrSRV",
"Besonderes": "Bereitstellung für Installation. Entweder für die Installation oder für einen Artikel (BereitstellungAufArtikel)"
},
{
"Feld": "BereitstellungAufArtikel",
"Datentyp": "Object\u003cArtikel\u003e",
"NamePROFFIX": "ArtikelNrLAG",
"Besonderes": "Bereitstellung für Artikel. Entweder für einen Artikel oder für eine Installation (BereitstellungAufInstallation)"
},
{
"Feld": "BereitstPosArt",
"Datentyp": "Object\u003cPositionsart\u003e",
"NamePROFFIX": "PositionsArt",
"Besonderes": "Positionsart für die Bereitstellung. Entweder kann ein Artikel oder eine Positionsart angegeben werden."
},
{
"Feld": "Artikel",
"Datentyp": "Object\u003cArtikel\u003e",
"NamePROFFIX": "BereitstArtikelNr",
"Besonderes": "Artikel für die Bereitstellung. Entweder kann ein Artikel oder eine Positionsart angegeben werden."
},
{
"Feld": "Anzahl",
"Datentyp": "Number (8,4)",
"NamePROFFIX": "Anzahl",
"Besonderes": " "
},
{
"Feld": "Buchen",
"Datentyp": "Boolean",
"NamePROFFIX": "BuchenStapel",
"Besonderes": " "
},
{
"Feld": "Geloescht",
"Datentyp": "Boolean",
"NamePROFFIX": "Inaktiv",
"Besonderes": " "
},
{
"Feld": "BuchenPer",
"Datentyp": "Number (int)",
"NamePROFFIX": "DatumBuchen",
"Besonderes": "1 = Datum2 = Startdatum3 = Enddatum"
}
],
"Methods": [
{
"Endpunkt": "GET /SRV/Bereitstellung",
"Rueckgabewert": "HTTP 200Array\u003cBereitstellung\u003e",
"Beschreibung": "Gibt alle Bereitstellungen zurück",
"BenoetigteLizenz": "keine"
},
{
"Endpunkt": "GET /SRV/Bereitstellung/{BereitstellungNr}",
"Rueckgabewert": "HTTP 200Bereitstellung",
"Beschreibung": "Gibt eine Bereitstellung anhand der BereitstellungNr zurück",
"BenoetigteLizenz": "keine"
}
],
"Parameter": null
} |
{"name":"Nesis Shoes","permalink":"nesis-shoes","crunchbase_url":"http://www.crunchbase.com/company/nesis-shoes","homepage_url":"http://www.nesishoes.com","blog_url":"","blog_feed_url":"","twitter_username":"nesishoes","category_code":"other","number_of_employees":101,"founded_year":1978,"founded_month":1,"founded_day":1,"deadpooled_year":null,"deadpooled_month":null,"deadpooled_day":null,"deadpooled_url":null,"tag_list":"shoes, casual-shoes, dress-shoes, safety, security, special, handmade, leather, boots, fashion, winter, summer, high-quality, high-heel, dress, custome, sport, footwear, manufacture, wholesalers, retailers, shop, market, new, 2011, 2012, season, collectio","alias_list":null,"email_address":"nesishoes@gmail.com","phone_number":"+905307600599","description":"Shoes and Boots","created_at":"Sat Dec 25 11:18:39 UTC 2010","updated_at":"Fri Apr 22 00:53:32 UTC 2011","overview":"<p>Nesis Shoes produce high quality and last fashion products with handmade. And we use Anatomic, Orthopedic and Antibacterial materials for all our products.</p>\n\n<p>Styles and Design : Safety Shoes and Boots, Casual Shoes and Boots, Dress Shoes and Boots, Fashion Shoes and Boots, Comfort Shoes and Boots, Classic Shoes and Boots, School Shoes and Boots, Uniform Shoes and Boots, Security Shoes and Boots, Special Shoes and Boots, Orthopedic Shoes and Boots, Outdoor Shoes and Boots, Home Shoes and Boots, Mocassin Shoes and Boots, High Heel Shoes and Boots, Sport Shoes and Boots, Handmade Shoes and Boots, Leather Shoes and Boots, Non Leather Shoes and Boots, Textiles Shoes and Boots, SANDALS and SLIPPERS.\nNesis SHOES Ltd. Co. was established in 1978 and started to work in FOOTWEAR sector. Establishing footwear Industry in Turkey, it became one of the most popular names in Turkey in footwear sector. Our factory with more than 30 years experience, certificated our high quality with ISO9001:2000, CE and TSE. We manifacture all kinds of leather shoes such as classic, sport, dress, casual, formal, mocassin, safety, security, special shoes for men, for women and for children in recent fashion. We also manufacture real and full leather shoes according to customer demands.</p>","image":{"available_sizes":[[[75,55],"assets/images/resized/0011/5369/115369v2-max-150x150.jpg"],[[75,55],"assets/images/resized/0011/5369/115369v2-max-250x250.jpg"],[[75,55],"assets/images/resized/0011/5369/115369v2-max-450x450.jpg"]],"attribution":null},"products":[],"relationships":[{"is_past":false,"title":"Export Manager","person":{"first_name":"Mustafa","last_name":"Turkoglu","permalink":"mustafa-turkoglu","image":null}},{"is_past":true,"title":"CEO","person":{"first_name":"Mustafa","last_name":"Turkoglu","permalink":"ismail-turkoglu","image":null}}],"competitions":[],"providerships":[],"total_money_raised":"$0","funding_rounds":[],"investments":[],"acquisition":null,"acquisitions":[],"offices":[{"description":"Impress Shoes","address1":"Aykent Ayakkabicilar Sitesi 10681 Street Nu:6","address2":"","zip_code":"42050","city":"Konya","state_code":null,"country_code":"TUR","latitude":null,"longitude":null}],"milestones":[],"ipo":null,"video_embeds":[],"screenshots":[],"external_links":[{"external_url":"http://www.impresshoes.com","title":"Impress Shoes"},{"external_url":"http://www.nesishoes.com","title":"Nesis Shoes"}]} |
{
"id": "1620",
"name": "Galerie Nelson-Freeman",
"street": "59 rue Quincampoix",
"zip": "75004",
"city": "Paris",
"country": "France",
"foundation": "1982",
"directeurs": "Philip Nelson",
"profile": null,
"tel": "+33-(0)1-42 71 74 56",
"email": "info@galerienelsonfreeman.com",
"www": "www.galerienelsonfreeman.com",
"map": "http://maps.google.com/maps?q=Paris%2C%2075004 %2C%20 %2C%2059 rue Quincampoix %2C%20France",
"fairs-total": "27",
"fairs-abroad": "20",
"fairs-in-FR": "7",
"fairs": {
"2005": [
{
"i": "1620-Art 36 Basel",
"c": "CH",
"n": "Art 36 Basel",
"ct": "Basel"
}
],
"2006": [
{
"i": "1620-Art 37 Basel",
"c": "CH",
"n": "Art 37 Basel",
"ct": "Basel"
},
{
"i": "1620-Fiac 2006",
"c": "FR"
},
{
"i": "1620-Art Basel Miami Beach 2006",
"c": "US",
"n": "Art Basel Miami Beach 2006",
"ct": "Miami, FL"
}
],
"2007": [
{
"i": "1620-Art 38 Basel",
"c": "CH",
"n": "Art 38 Basel",
"ct": "Basel"
},
{
"i": "1620-Fiac 2007",
"c": "FR"
},
{
"i": "1620-Art Basel Miami Beach 2007",
"c": "US",
"n": "Art Basel Miami Beach 2007",
"ct": "Miami Beach, FL"
}
],
"2008": [
{
"i": "1620-Art Brussels 2008- 26th Contemporary Art Fair",
"c": "BE",
"n": "Art Brussels 2008- 26th Contemporary Art Fair",
"ct": "Brussels"
},
{
"i": "1620-Art 39 Basel",
"c": "CH",
"n": "Art 39 Basel",
"ct": "Basel"
},
{
"i": "1620-Fiac 2008",
"c": "FR"
},
{
"i": "1620-Art Basel Miami Beach 2008",
"c": "US",
"n": "Art Basel Miami Beach 2008",
"ct": "Miami Beach, FL"
}
],
"2009": [
{
"i": "1620-Art Brussels 2009 - 27th Contemporary Art Fair",
"c": "BE",
"n": "Art Brussels 2009 - 27th Contemporary Art Fair",
"ct": "Brussels"
},
{
"i": "1620-Art 40 Basel",
"c": "CH",
"n": "Art 40 Basel",
"ct": "Basel"
},
{
"i": "1620-Fiac 2009",
"c": "FR"
},
{
"i": "1620-Art Basel Miami Beach 2009",
"c": "US",
"n": "Art Basel Miami Beach 2009",
"ct": "Miami Beach, FL"
}
],
"2010": [
{
"i": "1620-Art 41 Basel",
"c": "CH",
"n": "Art 41 Basel",
"ct": "Basel"
},
{
"i": "1620-Fiac 2010",
"c": "FR"
},
{
"i": "1620-Artissima 17",
"c": "IT",
"n": "Artissima 17",
"ct": "Turin"
},
{
"i": "1620-Art Basel Miami Beach 2010",
"c": "US",
"n": "Art Basel Miami Beach 2010",
"ct": "Miami Beach, FL"
}
],
"2011": [
{
"i": "1620-Art 42 Basel",
"c": "CH",
"n": "Art 42 Basel",
"ct": "Basel"
},
{
"i": "1620-Fiac 2011",
"c": "FR"
},
{
"i": "1620-Art Basel Miami Beach 2011",
"c": "US",
"n": "Art Basel Miami Beach 2011",
"ct": "Miami Beach, FL"
}
],
"2012": [
{
"i": "1620-Art 43 Basel",
"c": "CH",
"n": "Art 43 Basel",
"ct": "Basel"
},
{
"i": "1620-Fiac 2012",
"c": "FR"
},
{
"i": "1620-Art Basel Miami Beach 2012",
"c": "US",
"n": "Art Basel Miami Beach 2012",
"ct": "Miami Beach, FL"
}
],
"2013": [
{
"i": "1620-Art Basel 2013",
"c": "CH",
"n": "Art Basel 2013",
"ct": "Basel"
},
{
"i": "1620-Art Basel Miami Beach 2013",
"c": "US",
"n": "Art Basel Miami Beach 2013",
"ct": "Miami Beach, FL"
}
]
}
} |
{"textgrid.poem.48610": {"metadata": {"author": {"name": "Fleming, Paul", "birth": "N.A.", "death": "N.A."}, "title": "21. An die Holsteinischen Herren Abgesandten", "genre": "verse", "period": "N.A.", "pub_year": 1624, "urn": "N.A.", "language": ["de:0.99"], "booktitle": "N.A."}, "text": null, "poem": {"stanza.1": {"line.1": {"text": "Nunmehr bricht die Zeit heran,", "tokens": ["Nun\u00b7mehr", "bricht", "die", "Zeit", "he\u00b7ran", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "VVFIN", "ART", "NN", "PTKVZ", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "da\u00df du, Christ, dich einst solst r\u00e4chen", "tokens": ["da\u00df", "du", ",", "Christ", ",", "dich", "einst", "solst", "r\u00e4\u00b7chen"], "token_info": ["word", "word", "punct", "word", "punct", "word", "word", "word", "word"], "pos": ["KOUS", "PPER", "$,", "NN", "$,", "PPER", "ADV", "VMFIN", "VVINF"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "und dem seine Kr\u00e4fte brechen,", "tokens": ["und", "dem", "sei\u00b7ne", "Kr\u00e4f\u00b7te", "bre\u00b7chen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ART", "PPOSAT", "NN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "der dir alles Leid tut an,", "tokens": ["der", "dir", "al\u00b7les", "Leid", "tut", "an", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "PPER", "PIAT", "NN", "VVFIN", "PTKVZ", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "der so oft dein Blut gelecket", "tokens": ["der", "so", "oft", "dein", "Blut", "ge\u00b7le\u00b7cket"], "token_info": ["word", "word", "word", "word", "word", "word"], "pos": ["ART", "ADV", "ADV", "PPOSAT", "NN", "VVPP"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "und mit blo\u00dfem Namen schrecket.", "tokens": ["und", "mit", "blo\u00b7\u00dfem", "Na\u00b7men", "schre\u00b7cket", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KON", "APPR", "ADJA", "NN", "VVFIN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.2": {"line.1": {"text": "Der vers\u00f6hnte Himmel weist,", "tokens": ["Der", "ver\u00b7s\u00f6hn\u00b7te", "Him\u00b7mel", "weist", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["ART", "ADJA", "NN", "VVFIN", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "wie er wieder wolle segnen,", "tokens": ["wie", "er", "wie\u00b7der", "wol\u00b7le", "seg\u00b7nen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWAV", "PPER", "ADV", "VMFIN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "l\u00e4\u00dft uns seine Gunst begegnen,", "tokens": ["l\u00e4\u00dft", "uns", "sei\u00b7ne", "Gunst", "be\u00b7geg\u00b7nen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PPER", "PPOSAT", "NN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "wo uns noch sein Eifer schmei\u00dft.", "tokens": ["wo", "uns", "noch", "sein", "Ei\u00b7fer", "schmei\u00dft", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWAV", "PPER", "ADV", "PPOSAT", "NN", "VVFIN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Was uns itzt noch denkt zu d\u00e4mpfen,", "tokens": ["Was", "uns", "itzt", "noch", "denkt", "zu", "d\u00e4mp\u00b7fen", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "PPER", "ADV", "ADV", "VVFIN", "PTKZU", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "soll vor unser Leben k\u00e4mpfen.", "tokens": ["soll", "vor", "un\u00b7ser", "Le\u00b7ben", "k\u00e4mp\u00b7fen", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "APPR", "PPOSAT", "NN", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.3": {"line.1": {"text": "Diese Zwei, di\u00df treue Paar,", "tokens": ["Die\u00b7se", "Zwei", ",", "di\u00df", "treu\u00b7e", "Paar", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "punct"], "pos": ["PDAT", "CARD", "$,", "PDS", "ADJA", "NN", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "das die h\u00f6chsten H\u00e4upter lieben", "tokens": ["das", "die", "h\u00f6chs\u00b7ten", "H\u00e4up\u00b7ter", "lie\u00b7ben"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDS", "ART", "ADJA", "NN", "VVINF"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "und an ein solch Werk verschrieben,", "tokens": ["und", "an", "ein", "solch", "Werk", "ver\u00b7schrie\u00b7ben", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "APPR", "ART", "PIAT", "NN", "VVPP", "$,"], "meter": "-+--+-+-", "measure": "iambic.tri.relaxed"}, "line.4": {"text": "dem gleich keines wird noch war,", "tokens": ["dem", "gleich", "kei\u00b7nes", "wird", "noch", "war", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "ADV", "PIS", "VAFIN", "ADV", "VAFIN", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "dieses Paar hat Gott versehn", "tokens": ["die\u00b7ses", "Paar", "hat", "Gott", "ver\u00b7sehn"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDAT", "NN", "VAFIN", "NN", "VVINF"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.6": {"text": "zu dem, was soll bald geschehn.", "tokens": ["zu", "dem", ",", "was", "soll", "bald", "ge\u00b7schehn", "."], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ART", "$,", "PWS", "VMFIN", "ADV", "VVPP", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}}, "stanza.4": {"line.1": {"text": "Das Verh\u00e4ngn\u00fc\u00df ist bedacht", "tokens": ["Das", "Ver\u00b7h\u00e4ng\u00b7n\u00fc\u00df", "ist", "be\u00b7dacht"], "token_info": ["word", "word", "word", "word"], "pos": ["ART", "NN", "VAFIN", "VVPP"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "dieses lange Kriegeswetter,", "tokens": ["die\u00b7ses", "lan\u00b7ge", "Krie\u00b7ges\u00b7wet\u00b7ter", ","], "token_info": ["word", "word", "word", "punct"], "pos": ["PDAT", "ADJA", "NN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "das der frommen Rauten Bl\u00e4tter", "tokens": ["das", "der", "from\u00b7men", "Rau\u00b7ten", "Bl\u00e4t\u00b7ter"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDS", "ART", "ADJA", "NN", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "kaum nicht ganz hat umgebracht,", "tokens": ["kaum", "nicht", "ganz", "hat", "um\u00b7ge\u00b7bracht", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "PTKNEG", "ADV", "VAFIN", "VVPP", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "\u00fcber ein solch Kraut zu treiben,", "tokens": ["\u00fc\u00b7ber", "ein", "solch", "Kraut", "zu", "trei\u00b7ben", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ART", "PIAT", "NN", "PTKZU", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "das ihm ewig denkt zu bleiben.", "tokens": ["das", "ihm", "e\u00b7wig", "denkt", "zu", "blei\u00b7ben", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "PPER", "ADJD", "VVFIN", "PTKZU", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.5": {"line.1": {"text": "Gnug, ihr Br\u00fcder, werdet Freund'!", "tokens": ["Gnug", ",", "ihr", "Br\u00fc\u00b7der", ",", "wer\u00b7det", "Freund'", "!"], "token_info": ["word", "punct", "word", "word", "punct", "word", "word", "punct"], "pos": ["ADV", "$,", "PPOSAT", "NN", "$,", "VAFIN", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "Dortnaus, dort, wo Ph\u00f6bus z\u00e4umet,", "tokens": ["Dort\u00b7naus", ",", "dort", ",", "wo", "Ph\u00f6\u00b7bus", "z\u00e4u\u00b7met", ","], "token_info": ["word", "punct", "word", "punct", "word", "word", "word", "punct"], "pos": ["ADV", "$,", "ADV", "$,", "PWAV", "NE", "VVFIN", "$,"], "meter": "----+-+-", "measure": "unknown.measure.di"}, "line.3": {"text": "wenn uns hier noch s\u00fc\u00dfe tr\u00e4umet,", "tokens": ["wenn", "uns", "hier", "noch", "s\u00fc\u00b7\u00dfe", "tr\u00e4u\u00b7met", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KOUS", "PPER", "ADV", "ADV", "ADJA", "VVFIN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "dortnaus, dort ist unser Feind.", "tokens": ["dort\u00b7naus", ",", "dort", "ist", "un\u00b7ser", "Feind", "."], "token_info": ["word", "punct", "word", "word", "word", "word", "punct"], "pos": ["ADV", "$,", "ADV", "VAFIN", "PPOSAT", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "K\u00fcnftig la\u00dft uns wieder holen,", "tokens": ["K\u00fcnf\u00b7tig", "la\u00dft", "uns", "wie\u00b7der", "ho\u00b7len", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ADJD", "VVFIN", "PPER", "ADV", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "was der Dieb uns abgestolen!", "tokens": ["was", "der", "Dieb", "uns", "ab\u00b7ge\u00b7sto\u00b7len", "!"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "ART", "NN", "PPER", "VVPP", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.6": {"line.1": {"text": "Was ern\u00e4hrn wir unsern Tod?", "tokens": ["Was", "er\u00b7n\u00e4hrn", "wir", "un\u00b7sern", "Tod", "?"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "VVFIN", "PPER", "PPOSAT", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "La\u00dft uns ihm den Vorteil nehmen", "tokens": ["La\u00dft", "uns", "ihm", "den", "Vor\u00b7teil", "neh\u00b7men"], "token_info": ["word", "word", "word", "word", "word", "word"], "pos": ["VVIMP", "PPER", "PPER", "ART", "NN", "VVINF"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "und die starken Nerven l\u00e4hmen!", "tokens": ["und", "die", "star\u00b7ken", "Ner\u00b7ven", "l\u00e4h\u00b7men", "!"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ART", "ADJA", "NN", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "Her die R\u00fcstung, Kraut und Lot!", "tokens": ["Her", "die", "R\u00fcs\u00b7tung", ",", "Kraut", "und", "Lot", "!"], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["NN", "ART", "NN", "$,", "NN", "KON", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Wachet, wie Soldaten ziemet!", "tokens": ["Wa\u00b7chet", ",", "wie", "Sol\u00b7da\u00b7ten", "zie\u00b7met", "!"], "token_info": ["word", "punct", "word", "word", "word", "punct"], "pos": ["VVFIN", "$,", "PWAV", "NN", "VVFIN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "Zeit und Ort wird itzt beniemet.", "tokens": ["Zeit", "und", "Ort", "wird", "itzt", "be\u00b7nie\u00b7met", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["NN", "KON", "NN", "VAFIN", "ADV", "VVFIN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.7": {"line.1": {"text": "Deucht michs oder seh' ichs schon,", "tokens": ["Deucht", "michs", "o\u00b7der", "seh'", "ichs", "schon", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["NE", "NE", "KON", "VVFIN", "PIS", "ADV", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "wie die lauten Feld-Posaunen", "tokens": ["wie", "die", "lau\u00b7ten", "Feld\u00b7Po\u00b7sau\u00b7nen"], "token_info": ["word", "word", "word", "word"], "pos": ["PWAV", "ART", "ADJA", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "und die donnernden Kartaunen", "tokens": ["und", "die", "don\u00b7nern\u00b7den", "Kar\u00b7tau\u00b7nen"], "token_info": ["word", "word", "word", "word"], "pos": ["KON", "ART", "ADJA", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "untermengen ihren Ton,", "tokens": ["un\u00b7ter\u00b7men\u00b7gen", "ih\u00b7ren", "Ton", ","], "token_info": ["word", "word", "word", "punct"], "pos": ["APPR", "PPOSAT", "NN", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "da\u00df des ", "tokens": ["da\u00df", "des"], "token_info": ["word", "word"], "pos": ["KOUS", "ART"], "meter": "+-", "measure": "trochaic.single"}, "line.6": {"text": "furchtbar sich als Steine stellen?", "tokens": ["furcht\u00b7bar", "sich", "als", "Stei\u00b7ne", "stel\u00b7len", "?"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ADJD", "PRF", "KOUS", "NN", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.8": {"line.1": {"text": "Der entf\u00e4rbte ", "tokens": ["Der", "ent\u00b7f\u00e4rb\u00b7te"], "token_info": ["word", "word"], "pos": ["ART", "ADJA"], "meter": "+-+-", "measure": "trochaic.di"}, "line.2": {"text": "schlingt in sich die blassen Heiden.", "tokens": ["schlingt", "in", "sich", "die", "blas\u00b7sen", "Hei\u00b7den", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "APPR", "PRF", "ART", "ADJA", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "Fahnen, Spie\u00dfe, Schwert und Scheiden", "tokens": ["Fah\u00b7nen", ",", "Spie\u00b7\u00dfe", ",", "Schwert", "und", "Schei\u00b7den"], "token_info": ["word", "punct", "word", "punct", "word", "word", "word"], "pos": ["NN", "$,", "VVFIN", "$,", "NN", "KON", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "f\u00fchrt der bebende ", "tokens": ["f\u00fchrt", "der", "be\u00b7ben\u00b7de"], "token_info": ["word", "word", "word"], "pos": ["VVFIN", "ART", "ADJA"], "meter": "+--+-", "measure": "amphibrach.di.relaxed"}, "line.5": {"text": "werden zitternd f\u00fcr uns schwitzen.", "tokens": ["wer\u00b7den", "zit\u00b7ternd", "f\u00fcr", "uns", "schwit\u00b7zen", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "ADJD", "APPR", "PPER", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.9": {"line.1": {"text": "Unsre ", "tokens": ["Uns\u00b7re"], "token_info": ["word"], "pos": ["NN"], "meter": "+-", "measure": "trochaic.single"}, "line.2": {"text": "leitet mit erfreuten Wellen", "tokens": ["lei\u00b7tet", "mit", "er\u00b7freu\u00b7ten", "Wel\u00b7len"], "token_info": ["word", "word", "word", "word"], "pos": ["VVFIN", "APPR", "ADJA", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "unsre dapfern Bundsgesellen", "tokens": ["uns\u00b7re", "dap\u00b7fern", "Bunds\u00b7ge\u00b7sel\u00b7len"], "token_info": ["word", "word", "word"], "pos": ["PPOSAT", "ADJA", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "bis fast vor des ", "tokens": ["bis", "fast", "vor", "des"], "token_info": ["word", "word", "word", "word"], "pos": ["ADV", "ADV", "APPR", "ART"], "meter": "+-+-", "measure": "trochaic.di"}, "line.5": {"text": "eh' da\u00df du dich denkst zu schmei\u00dfen!", "tokens": ["eh'", "da\u00df", "du", "dich", "denkst", "zu", "schmei\u00b7\u00dfen", "!"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "KOUS", "PPER", "PRF", "ADV", "PTKZU", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.10": {"line.1": {"text": "Landsman, ", "tokens": ["Lands\u00b7man", ","], "token_info": ["word", "punct"], "pos": ["NE", "$,"], "meter": "+-", "measure": "trochaic.single"}, "line.2": {"text": "was du bist an dir gewohnet!", "tokens": ["was", "du", "bist", "an", "dir", "ge\u00b7woh\u00b7net", "!"], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "PPER", "VAFIN", "APPR", "PPER", "VVFIN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "Es gilt hier nicht, da\u00df man schonet.", "tokens": ["Es", "gilt", "hier", "nicht", ",", "da\u00df", "man", "scho\u00b7net", "."], "token_info": ["word", "word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["PPER", "VVFIN", "ADV", "PTKNEG", "$,", "KOUS", "PIS", "VVFIN", "$."], "meter": "-+--+-+-", "measure": "iambic.tri.relaxed"}, "line.4": {"text": "Itzund hast du deinen Man!", "tokens": ["It\u00b7zund", "hast", "du", "dei\u00b7nen", "Man", "!"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["NE", "VAFIN", "PPER", "PPOSAT", "PIS", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Vor und itzt noch schl\u00e4gst du, Blinder,", "tokens": ["Vor", "und", "itzt", "noch", "schl\u00e4gst", "du", ",", "Blin\u00b7der", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct", "word", "punct"], "pos": ["APPR", "KON", "ADV", "ADV", "VVFIN", "PPER", "$,", "NN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "auf dich selbst und deine Kinder.", "tokens": ["auf", "dich", "selbst", "und", "dei\u00b7ne", "Kin\u00b7der", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "PPER", "ADV", "KON", "PPOSAT", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.11": {"line.1": {"text": "Di\u00df Schwert, das du itzuod schon", "tokens": ["Di\u00df", "Schwert", ",", "das", "du", "it\u00b7zu\u00b7od", "schon"], "token_info": ["word", "word", "punct", "word", "word", "word", "word"], "pos": ["PDS", "VVFIN", "$,", "PRELS", "PPER", "ADV", "ADV"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "hast auf deinen Freund gez\u00fccket,", "tokens": ["hast", "auf", "dei\u00b7nen", "Freund", "ge\u00b7z\u00fc\u00b7cket", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "APPR", "PPOSAT", "NN", "VVPP", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "soll dem, der sich kaum drauf schicket,", "tokens": ["soll", "dem", ",", "der", "sich", "kaum", "drauf", "schi\u00b7cket", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "ART", "$,", "PRELS", "PRF", "ADV", "PAV", "VVFIN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "geben seinen wahren Lohn.", "tokens": ["ge\u00b7ben", "sei\u00b7nen", "wah\u00b7ren", "Lohn", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PPOSAT", "ADJA", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Das auf dich gego\u00dfne St\u00fccke", "tokens": ["Das", "auf", "dich", "ge\u00b7go\u00df\u00b7ne", "St\u00fc\u00b7cke"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDS", "APPR", "PPER", "ADJA", "NN"], "meter": "-+--+-+-", "measure": "iambic.tri.relaxed"}, "line.6": {"text": "soll ihm brechen sein Genicke.", "tokens": ["soll", "ihm", "bre\u00b7chen", "sein", "Ge\u00b7ni\u00b7cke", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "PPER", "VVFIN", "PPOSAT", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.12": {"line.1": {"text": "Tut indessen, was ihr tut,", "tokens": ["Tut", "in\u00b7des\u00b7sen", ",", "was", "ihr", "tut", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "punct"], "pos": ["NN", "ADV", "$,", "PWS", "PPER", "VVFIN", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "o ihr zwei getreuen W\u00e4chter,", "tokens": ["o", "ihr", "zwei", "ge\u00b7treu\u00b7en", "W\u00e4ch\u00b7ter", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["FM", "PPOSAT", "CARD", "ADJA", "NE", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "b\u00e4hnt den Weg vor unsre Fechter!", "tokens": ["b\u00e4hnt", "den", "Weg", "vor", "uns\u00b7re", "Fech\u00b7ter", "!"], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "ART", "NN", "APPR", "PPOSAT", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "Di\u00df f\u00e4ngt an kein feiges Blut.", "tokens": ["Di\u00df", "f\u00e4ngt", "an", "kein", "fei\u00b7ges", "Blut", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PDS", "VVFIN", "APPR", "PIAT", "ADJA", "NN", "$."], "meter": "-+--+-+", "measure": "iambic.tri.relaxed"}, "line.5": {"text": "Was ihr gro\u00dfen Leute dichtet,", "tokens": ["Was", "ihr", "gro\u00b7\u00dfen", "Leu\u00b7te", "dich\u00b7tet", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "PPOSAT", "ADJA", "NN", "VVFIN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "ist, als w\u00e4r' es schon verrichtet.", "tokens": ["ist", ",", "als", "w\u00e4r'", "es", "schon", "ver\u00b7rich\u00b7tet", "."], "token_info": ["word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "$,", "KOKOM", "VAFIN", "PPER", "ADV", "VVPP", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.13": {"line.1": {"text": "Was ist eurem Ruhme gleich?", "tokens": ["Was", "ist", "eu\u00b7rem", "Ruh\u00b7me", "gleich", "?"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "VAFIN", "PPOSAT", "NN", "ADV", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "Ihr seid unbesorgt, das Leben", "tokens": ["Ihr", "seid", "un\u00b7be\u00b7sorgt", ",", "das", "Le\u00b7ben"], "token_info": ["word", "word", "word", "punct", "word", "word"], "pos": ["PPER", "VAFIN", "ADJD", "$,", "ART", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "in fast nahen Tod zu geben", "tokens": ["in", "fast", "na\u00b7hen", "Tod", "zu", "ge\u00b7ben"], "token_info": ["word", "word", "word", "word", "word", "word"], "pos": ["APPR", "ADV", "ADJA", "NN", "PTKZU", "VVINF"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "f\u00fcr das heilge Christenreich.", "tokens": ["f\u00fcr", "das", "heil\u00b7ge", "Chris\u00b7ten\u00b7reich", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["APPR", "ART", "ADJA", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Dieses Lob kan nicht verderben", "tokens": ["Die\u00b7ses", "Lob", "kan", "nicht", "ver\u00b7der\u00b7ben"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDAT", "NN", "VMFIN", "PTKNEG", "VVFIN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "und l\u00e4\u00dft ewig euch nicht sterben.", "tokens": ["und", "l\u00e4\u00dft", "e\u00b7wig", "euch", "nicht", "ster\u00b7ben", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "VVFIN", "ADJD", "PPER", "PTKNEG", "VVINF", "$."], "meter": "-++-+-+-", "measure": "unknown.measure.tetra"}}, "stanza.14": {"line.1": {"text": "\u00c4ol und Neptun stehn hier,", "tokens": ["\u00c4\u00b7ol", "und", "Nep\u00b7tun", "stehn", "hier", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["NN", "KON", "NN", "VVFIN", "ADV", "$,"], "meter": "+--+--+", "measure": "dactylic.tri"}, "line.2": {"text": "schw\u00f6ren mit gebotnen H\u00e4nden,", "tokens": ["schw\u00f6\u00b7ren", "mit", "ge\u00b7bot\u00b7nen", "H\u00e4n\u00b7den", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["VVFIN", "APPR", "ADJA", "NN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "da\u00df sie Alles wollen wenden,", "tokens": ["da\u00df", "sie", "Al\u00b7les", "wol\u00b7len", "wen\u00b7den", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KOUS", "PPER", "PIS", "VMFIN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "was sich euch will sch\u00fctzen f\u00fcr.", "tokens": ["was", "sich", "euch", "will", "sch\u00fct\u00b7zen", "f\u00fcr", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "PRF", "PPER", "VMFIN", "VVINF", "APPR", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "euch zu liefern alle Stunden.", "tokens": ["euch", "zu", "lie\u00b7fern", "al\u00b7le", "Stun\u00b7den", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PPER", "PTKZU", "VVINF", "PIAT", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.15": {"line.1": {"text": "Das bewohnt' und \u00f6de Land", "tokens": ["Das", "be\u00b7wohnt'", "und", "\u00f6\u00b7de", "Land"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDS", "VVFIN", "KON", "ADJA", "NN"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "will euch allen Vorschub schaffen.", "tokens": ["will", "euch", "al\u00b7len", "Vor\u00b7schub", "schaf\u00b7fen", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "PPER", "PIAT", "NN", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "Ganz kein ", "tokens": ["Ganz", "kein"], "token_info": ["word", "word"], "pos": ["ADV", "PIAT"], "meter": "-+", "measure": "iambic.single"}, "line.4": {"text": "nehmen wider euch zur Hand.", "tokens": ["neh\u00b7men", "wi\u00b7der", "euch", "zur", "Hand", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "APPR", "PPER", "APPRART", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Euch hat Gott, der vor euch wachet,", "tokens": ["Euch", "hat", "Gott", ",", "der", "vor", "euch", "wa\u00b7chet", ","], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["PPER", "VAFIN", "NN", "$,", "PRELS", "APPR", "PPER", "VVFIN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "auch das Wilde zahm gemachet.", "tokens": ["auch", "das", "Wil\u00b7de", "zahm", "ge\u00b7ma\u00b7chet", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "ART", "NN", "ADJD", "VVPP", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.16": {"line.1": {"text": "Die gemeine Christenheit", "tokens": ["Die", "ge\u00b7mei\u00b7ne", "Chris\u00b7ten\u00b7heit"], "token_info": ["word", "word", "word"], "pos": ["ART", "ADJA", "NN"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "l\u00e4\u00dft nicht ab f\u00fcr euch zu bitten.", "tokens": ["l\u00e4\u00dft", "nicht", "ab", "f\u00fcr", "euch", "zu", "bit\u00b7ten", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PTKNEG", "PTKVZ", "APPR", "PPER", "PTKZU", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "Euch folgt nach auf allen Schritten,", "tokens": ["Euch", "folgt", "nach", "auf", "al\u00b7len", "Schrit\u00b7ten", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PPER", "VVFIN", "APPR", "APPR", "PIAT", "NN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "was ihr wollt und sie erfreut.", "tokens": ["was", "ihr", "wollt", "und", "sie", "er\u00b7freut", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "PPER", "VMFIN", "KON", "PPER", "VVFIN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Es wird euch auf allen Seiten", "tokens": ["Es", "wird", "euch", "auf", "al\u00b7len", "Sei\u00b7ten"], "token_info": ["word", "word", "word", "word", "word", "word"], "pos": ["PPER", "VAFIN", "PPER", "APPR", "PIAT", "NN"], "meter": "-+--+-+-", "measure": "iambic.tri.relaxed"}, "line.6": {"text": "manch beseufzter Wundsch begleiten.", "tokens": ["manch", "be\u00b7seufz\u00b7ter", "Wund\u00b7sch", "be\u00b7glei\u00b7ten", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["PIAT", "ADJA", "NN", "VVINF", "$."], "meter": "+-+-+--+-", "measure": "trochaic.tetra.relaxed"}}, "stanza.17": {"line.1": {"text": "Zieht, zieht hin, ihr Frommen, ihr!", "tokens": ["Zieht", ",", "zieht", "hin", ",", "ihr", "From\u00b7men", ",", "ihr", "!"], "token_info": ["word", "punct", "word", "word", "punct", "word", "word", "punct", "word", "punct"], "pos": ["VVFIN", "$,", "VVFIN", "PTKVZ", "$,", "PPOSAT", "NN", "$,", "PPER", "$."], "meter": "-+--+-+", "measure": "iambic.tri.relaxed"}, "line.2": {"text": "Gott und F\u00fcrsten, die euch schicken,", "tokens": ["Gott", "und", "F\u00fcrs\u00b7ten", ",", "die", "euch", "schi\u00b7cken", ","], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["NN", "KON", "NN", "$,", "PRELS", "PPER", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "lassen Alles wol gel\u00fccken!", "tokens": ["las\u00b7sen", "Al\u00b7les", "wol", "ge\u00b7l\u00fc\u00b7cken", "!"], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PIS", "ADV", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "Und stellt euch di\u00df stetig f\u00fcr:", "tokens": ["Und", "stellt", "euch", "di\u00df", "ste\u00b7tig", "f\u00fcr", ":"], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "VVFIN", "PPER", "PDS", "ADJD", "APPR", "$."], "meter": "-+--+-+", "measure": "iambic.tri.relaxed"}, "line.5": {"text": "Was der Himmel hei\u00dft vollbringen,", "tokens": ["Was", "der", "Him\u00b7mel", "hei\u00dft", "voll\u00b7brin\u00b7gen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "ART", "NN", "VVFIN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "wird und soll und mu\u00df gelingen!", "tokens": ["wird", "und", "soll", "und", "mu\u00df", "ge\u00b7lin\u00b7gen", "!"], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "KON", "VMFIN", "KON", "VMFIN", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.18": {"line.1": {"text": "Nunmehr bricht die Zeit heran,", "tokens": ["Nun\u00b7mehr", "bricht", "die", "Zeit", "he\u00b7ran", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "VVFIN", "ART", "NN", "PTKVZ", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "da\u00df du, Christ, dich einst solst r\u00e4chen", "tokens": ["da\u00df", "du", ",", "Christ", ",", "dich", "einst", "solst", "r\u00e4\u00b7chen"], "token_info": ["word", "word", "punct", "word", "punct", "word", "word", "word", "word"], "pos": ["KOUS", "PPER", "$,", "NN", "$,", "PPER", "ADV", "VMFIN", "VVINF"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "und dem seine Kr\u00e4fte brechen,", "tokens": ["und", "dem", "sei\u00b7ne", "Kr\u00e4f\u00b7te", "bre\u00b7chen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ART", "PPOSAT", "NN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "der dir alles Leid tut an,", "tokens": ["der", "dir", "al\u00b7les", "Leid", "tut", "an", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "PPER", "PIAT", "NN", "VVFIN", "PTKVZ", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "der so oft dein Blut gelecket", "tokens": ["der", "so", "oft", "dein", "Blut", "ge\u00b7le\u00b7cket"], "token_info": ["word", "word", "word", "word", "word", "word"], "pos": ["ART", "ADV", "ADV", "PPOSAT", "NN", "VVPP"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "und mit blo\u00dfem Namen schrecket.", "tokens": ["und", "mit", "blo\u00b7\u00dfem", "Na\u00b7men", "schre\u00b7cket", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KON", "APPR", "ADJA", "NN", "VVFIN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.19": {"line.1": {"text": "Der vers\u00f6hnte Himmel weist,", "tokens": ["Der", "ver\u00b7s\u00f6hn\u00b7te", "Him\u00b7mel", "weist", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["ART", "ADJA", "NN", "VVFIN", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "wie er wieder wolle segnen,", "tokens": ["wie", "er", "wie\u00b7der", "wol\u00b7le", "seg\u00b7nen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWAV", "PPER", "ADV", "VMFIN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "l\u00e4\u00dft uns seine Gunst begegnen,", "tokens": ["l\u00e4\u00dft", "uns", "sei\u00b7ne", "Gunst", "be\u00b7geg\u00b7nen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PPER", "PPOSAT", "NN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "wo uns noch sein Eifer schmei\u00dft.", "tokens": ["wo", "uns", "noch", "sein", "Ei\u00b7fer", "schmei\u00dft", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWAV", "PPER", "ADV", "PPOSAT", "NN", "VVFIN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Was uns itzt noch denkt zu d\u00e4mpfen,", "tokens": ["Was", "uns", "itzt", "noch", "denkt", "zu", "d\u00e4mp\u00b7fen", ","], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "PPER", "ADV", "ADV", "VVFIN", "PTKZU", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "soll vor unser Leben k\u00e4mpfen.", "tokens": ["soll", "vor", "un\u00b7ser", "Le\u00b7ben", "k\u00e4mp\u00b7fen", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "APPR", "PPOSAT", "NN", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.20": {"line.1": {"text": "Diese Zwei, di\u00df treue Paar,", "tokens": ["Die\u00b7se", "Zwei", ",", "di\u00df", "treu\u00b7e", "Paar", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "punct"], "pos": ["PDAT", "CARD", "$,", "PDS", "ADJA", "NN", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "das die h\u00f6chsten H\u00e4upter lieben", "tokens": ["das", "die", "h\u00f6chs\u00b7ten", "H\u00e4up\u00b7ter", "lie\u00b7ben"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDS", "ART", "ADJA", "NN", "VVINF"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "und an ein solch Werk verschrieben,", "tokens": ["und", "an", "ein", "solch", "Werk", "ver\u00b7schrie\u00b7ben", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "APPR", "ART", "PIAT", "NN", "VVPP", "$,"], "meter": "-+--+-+-", "measure": "iambic.tri.relaxed"}, "line.4": {"text": "dem gleich keines wird noch war,", "tokens": ["dem", "gleich", "kei\u00b7nes", "wird", "noch", "war", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "ADV", "PIS", "VAFIN", "ADV", "VAFIN", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "dieses Paar hat Gott versehn", "tokens": ["die\u00b7ses", "Paar", "hat", "Gott", "ver\u00b7sehn"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDAT", "NN", "VAFIN", "NN", "VVINF"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.6": {"text": "zu dem, was soll bald geschehn.", "tokens": ["zu", "dem", ",", "was", "soll", "bald", "ge\u00b7schehn", "."], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ART", "$,", "PWS", "VMFIN", "ADV", "VVPP", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}}, "stanza.21": {"line.1": {"text": "Das Verh\u00e4ngn\u00fc\u00df ist bedacht", "tokens": ["Das", "Ver\u00b7h\u00e4ng\u00b7n\u00fc\u00df", "ist", "be\u00b7dacht"], "token_info": ["word", "word", "word", "word"], "pos": ["ART", "NN", "VAFIN", "VVPP"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "dieses lange Kriegeswetter,", "tokens": ["die\u00b7ses", "lan\u00b7ge", "Krie\u00b7ges\u00b7wet\u00b7ter", ","], "token_info": ["word", "word", "word", "punct"], "pos": ["PDAT", "ADJA", "NN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "das der frommen Rauten Bl\u00e4tter", "tokens": ["das", "der", "from\u00b7men", "Rau\u00b7ten", "Bl\u00e4t\u00b7ter"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDS", "ART", "ADJA", "NN", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "kaum nicht ganz hat umgebracht,", "tokens": ["kaum", "nicht", "ganz", "hat", "um\u00b7ge\u00b7bracht", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "PTKNEG", "ADV", "VAFIN", "VVPP", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "\u00fcber ein solch Kraut zu treiben,", "tokens": ["\u00fc\u00b7ber", "ein", "solch", "Kraut", "zu", "trei\u00b7ben", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "ART", "PIAT", "NN", "PTKZU", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "das ihm ewig denkt zu bleiben.", "tokens": ["das", "ihm", "e\u00b7wig", "denkt", "zu", "blei\u00b7ben", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "PPER", "ADJD", "VVFIN", "PTKZU", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.22": {"line.1": {"text": "Gnug, ihr Br\u00fcder, werdet Freund'!", "tokens": ["Gnug", ",", "ihr", "Br\u00fc\u00b7der", ",", "wer\u00b7det", "Freund'", "!"], "token_info": ["word", "punct", "word", "word", "punct", "word", "word", "punct"], "pos": ["ADV", "$,", "PPOSAT", "NN", "$,", "VAFIN", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "Dortnaus, dort, wo Ph\u00f6bus z\u00e4umet,", "tokens": ["Dort\u00b7naus", ",", "dort", ",", "wo", "Ph\u00f6\u00b7bus", "z\u00e4u\u00b7met", ","], "token_info": ["word", "punct", "word", "punct", "word", "word", "word", "punct"], "pos": ["ADV", "$,", "ADV", "$,", "PWAV", "NE", "VVFIN", "$,"], "meter": "----+-+-", "measure": "unknown.measure.di"}, "line.3": {"text": "wenn uns hier noch s\u00fc\u00dfe tr\u00e4umet,", "tokens": ["wenn", "uns", "hier", "noch", "s\u00fc\u00b7\u00dfe", "tr\u00e4u\u00b7met", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KOUS", "PPER", "ADV", "ADV", "ADJA", "VVFIN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "dortnaus, dort ist unser Feind.", "tokens": ["dort\u00b7naus", ",", "dort", "ist", "un\u00b7ser", "Feind", "."], "token_info": ["word", "punct", "word", "word", "word", "word", "punct"], "pos": ["ADV", "$,", "ADV", "VAFIN", "PPOSAT", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "K\u00fcnftig la\u00dft uns wieder holen,", "tokens": ["K\u00fcnf\u00b7tig", "la\u00dft", "uns", "wie\u00b7der", "ho\u00b7len", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ADJD", "VVFIN", "PPER", "ADV", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "was der Dieb uns abgestolen!", "tokens": ["was", "der", "Dieb", "uns", "ab\u00b7ge\u00b7sto\u00b7len", "!"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "ART", "NN", "PPER", "VVPP", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.23": {"line.1": {"text": "Was ern\u00e4hrn wir unsern Tod?", "tokens": ["Was", "er\u00b7n\u00e4hrn", "wir", "un\u00b7sern", "Tod", "?"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "VVFIN", "PPER", "PPOSAT", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "La\u00dft uns ihm den Vorteil nehmen", "tokens": ["La\u00dft", "uns", "ihm", "den", "Vor\u00b7teil", "neh\u00b7men"], "token_info": ["word", "word", "word", "word", "word", "word"], "pos": ["VVIMP", "PPER", "PPER", "ART", "NN", "VVINF"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "und die starken Nerven l\u00e4hmen!", "tokens": ["und", "die", "star\u00b7ken", "Ner\u00b7ven", "l\u00e4h\u00b7men", "!"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KON", "ART", "ADJA", "NN", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "Her die R\u00fcstung, Kraut und Lot!", "tokens": ["Her", "die", "R\u00fcs\u00b7tung", ",", "Kraut", "und", "Lot", "!"], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["NN", "ART", "NN", "$,", "NN", "KON", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Wachet, wie Soldaten ziemet!", "tokens": ["Wa\u00b7chet", ",", "wie", "Sol\u00b7da\u00b7ten", "zie\u00b7met", "!"], "token_info": ["word", "punct", "word", "word", "word", "punct"], "pos": ["VVFIN", "$,", "PWAV", "NN", "VVFIN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "Zeit und Ort wird itzt beniemet.", "tokens": ["Zeit", "und", "Ort", "wird", "itzt", "be\u00b7nie\u00b7met", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["NN", "KON", "NN", "VAFIN", "ADV", "VVFIN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.24": {"line.1": {"text": "Deucht michs oder seh' ichs schon,", "tokens": ["Deucht", "michs", "o\u00b7der", "seh'", "ichs", "schon", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["NE", "NE", "KON", "VVFIN", "PIS", "ADV", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "wie die lauten Feld-Posaunen", "tokens": ["wie", "die", "lau\u00b7ten", "Feld\u00b7Po\u00b7sau\u00b7nen"], "token_info": ["word", "word", "word", "word"], "pos": ["PWAV", "ART", "ADJA", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "und die donnernden Kartaunen", "tokens": ["und", "die", "don\u00b7nern\u00b7den", "Kar\u00b7tau\u00b7nen"], "token_info": ["word", "word", "word", "word"], "pos": ["KON", "ART", "ADJA", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "untermengen ihren Ton,", "tokens": ["un\u00b7ter\u00b7men\u00b7gen", "ih\u00b7ren", "Ton", ","], "token_info": ["word", "word", "word", "punct"], "pos": ["APPR", "PPOSAT", "NN", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "da\u00df des ", "tokens": ["da\u00df", "des"], "token_info": ["word", "word"], "pos": ["KOUS", "ART"], "meter": "+-", "measure": "trochaic.single"}, "line.6": {"text": "furchtbar sich als Steine stellen?", "tokens": ["furcht\u00b7bar", "sich", "als", "Stei\u00b7ne", "stel\u00b7len", "?"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ADJD", "PRF", "KOUS", "NN", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.25": {"line.1": {"text": "Der entf\u00e4rbte ", "tokens": ["Der", "ent\u00b7f\u00e4rb\u00b7te"], "token_info": ["word", "word"], "pos": ["ART", "ADJA"], "meter": "+-+-", "measure": "trochaic.di"}, "line.2": {"text": "schlingt in sich die blassen Heiden.", "tokens": ["schlingt", "in", "sich", "die", "blas\u00b7sen", "Hei\u00b7den", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "APPR", "PRF", "ART", "ADJA", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "Fahnen, Spie\u00dfe, Schwert und Scheiden", "tokens": ["Fah\u00b7nen", ",", "Spie\u00b7\u00dfe", ",", "Schwert", "und", "Schei\u00b7den"], "token_info": ["word", "punct", "word", "punct", "word", "word", "word"], "pos": ["NN", "$,", "VVFIN", "$,", "NN", "KON", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "f\u00fchrt der bebende ", "tokens": ["f\u00fchrt", "der", "be\u00b7ben\u00b7de"], "token_info": ["word", "word", "word"], "pos": ["VVFIN", "ART", "ADJA"], "meter": "+--+-", "measure": "amphibrach.di.relaxed"}, "line.5": {"text": "werden zitternd f\u00fcr uns schwitzen.", "tokens": ["wer\u00b7den", "zit\u00b7ternd", "f\u00fcr", "uns", "schwit\u00b7zen", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "ADJD", "APPR", "PPER", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.26": {"line.1": {"text": "Unsre ", "tokens": ["Uns\u00b7re"], "token_info": ["word"], "pos": ["NN"], "meter": "+-", "measure": "trochaic.single"}, "line.2": {"text": "leitet mit erfreuten Wellen", "tokens": ["lei\u00b7tet", "mit", "er\u00b7freu\u00b7ten", "Wel\u00b7len"], "token_info": ["word", "word", "word", "word"], "pos": ["VVFIN", "APPR", "ADJA", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "unsre dapfern Bundsgesellen", "tokens": ["uns\u00b7re", "dap\u00b7fern", "Bunds\u00b7ge\u00b7sel\u00b7len"], "token_info": ["word", "word", "word"], "pos": ["PPOSAT", "ADJA", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "bis fast vor des ", "tokens": ["bis", "fast", "vor", "des"], "token_info": ["word", "word", "word", "word"], "pos": ["ADV", "ADV", "APPR", "ART"], "meter": "+-+-", "measure": "trochaic.di"}, "line.5": {"text": "eh' da\u00df du dich denkst zu schmei\u00dfen!", "tokens": ["eh'", "da\u00df", "du", "dich", "denkst", "zu", "schmei\u00b7\u00dfen", "!"], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "KOUS", "PPER", "PRF", "ADV", "PTKZU", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.27": {"line.1": {"text": "Landsman, ", "tokens": ["Lands\u00b7man", ","], "token_info": ["word", "punct"], "pos": ["NE", "$,"], "meter": "+-", "measure": "trochaic.single"}, "line.2": {"text": "was du bist an dir gewohnet!", "tokens": ["was", "du", "bist", "an", "dir", "ge\u00b7woh\u00b7net", "!"], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "PPER", "VAFIN", "APPR", "PPER", "VVFIN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "Es gilt hier nicht, da\u00df man schonet.", "tokens": ["Es", "gilt", "hier", "nicht", ",", "da\u00df", "man", "scho\u00b7net", "."], "token_info": ["word", "word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["PPER", "VVFIN", "ADV", "PTKNEG", "$,", "KOUS", "PIS", "VVFIN", "$."], "meter": "-+--+-+-", "measure": "iambic.tri.relaxed"}, "line.4": {"text": "Itzund hast du deinen Man!", "tokens": ["It\u00b7zund", "hast", "du", "dei\u00b7nen", "Man", "!"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["NE", "VAFIN", "PPER", "PPOSAT", "PIS", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Vor und itzt noch schl\u00e4gst du, Blinder,", "tokens": ["Vor", "und", "itzt", "noch", "schl\u00e4gst", "du", ",", "Blin\u00b7der", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct", "word", "punct"], "pos": ["APPR", "KON", "ADV", "ADV", "VVFIN", "PPER", "$,", "NN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "auf dich selbst und deine Kinder.", "tokens": ["auf", "dich", "selbst", "und", "dei\u00b7ne", "Kin\u00b7der", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["APPR", "PPER", "ADV", "KON", "PPOSAT", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.28": {"line.1": {"text": "Di\u00df Schwert, das du itzuod schon", "tokens": ["Di\u00df", "Schwert", ",", "das", "du", "it\u00b7zu\u00b7od", "schon"], "token_info": ["word", "word", "punct", "word", "word", "word", "word"], "pos": ["PDS", "VVFIN", "$,", "PRELS", "PPER", "ADV", "ADV"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.2": {"text": "hast auf deinen Freund gez\u00fccket,", "tokens": ["hast", "auf", "dei\u00b7nen", "Freund", "ge\u00b7z\u00fc\u00b7cket", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "APPR", "PPOSAT", "NN", "VVPP", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "soll dem, der sich kaum drauf schicket,", "tokens": ["soll", "dem", ",", "der", "sich", "kaum", "drauf", "schi\u00b7cket", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "ART", "$,", "PRELS", "PRF", "ADV", "PAV", "VVFIN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "geben seinen wahren Lohn.", "tokens": ["ge\u00b7ben", "sei\u00b7nen", "wah\u00b7ren", "Lohn", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PPOSAT", "ADJA", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Das auf dich gego\u00dfne St\u00fccke", "tokens": ["Das", "auf", "dich", "ge\u00b7go\u00df\u00b7ne", "St\u00fc\u00b7cke"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDS", "APPR", "PPER", "ADJA", "NN"], "meter": "-+--+-+-", "measure": "iambic.tri.relaxed"}, "line.6": {"text": "soll ihm brechen sein Genicke.", "tokens": ["soll", "ihm", "bre\u00b7chen", "sein", "Ge\u00b7ni\u00b7cke", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "PPER", "VVFIN", "PPOSAT", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.29": {"line.1": {"text": "Tut indessen, was ihr tut,", "tokens": ["Tut", "in\u00b7des\u00b7sen", ",", "was", "ihr", "tut", ","], "token_info": ["word", "word", "punct", "word", "word", "word", "punct"], "pos": ["NN", "ADV", "$,", "PWS", "PPER", "VVFIN", "$,"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "o ihr zwei getreuen W\u00e4chter,", "tokens": ["o", "ihr", "zwei", "ge\u00b7treu\u00b7en", "W\u00e4ch\u00b7ter", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["FM", "PPOSAT", "CARD", "ADJA", "NE", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "b\u00e4hnt den Weg vor unsre Fechter!", "tokens": ["b\u00e4hnt", "den", "Weg", "vor", "uns\u00b7re", "Fech\u00b7ter", "!"], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "ART", "NN", "APPR", "PPOSAT", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "Di\u00df f\u00e4ngt an kein feiges Blut.", "tokens": ["Di\u00df", "f\u00e4ngt", "an", "kein", "fei\u00b7ges", "Blut", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PDS", "VVFIN", "APPR", "PIAT", "ADJA", "NN", "$."], "meter": "-+--+-+", "measure": "iambic.tri.relaxed"}, "line.5": {"text": "Was ihr gro\u00dfen Leute dichtet,", "tokens": ["Was", "ihr", "gro\u00b7\u00dfen", "Leu\u00b7te", "dich\u00b7tet", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "PPOSAT", "ADJA", "NN", "VVFIN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "ist, als w\u00e4r' es schon verrichtet.", "tokens": ["ist", ",", "als", "w\u00e4r'", "es", "schon", "ver\u00b7rich\u00b7tet", "."], "token_info": ["word", "punct", "word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "$,", "KOKOM", "VAFIN", "PPER", "ADV", "VVPP", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.30": {"line.1": {"text": "Was ist eurem Ruhme gleich?", "tokens": ["Was", "ist", "eu\u00b7rem", "Ruh\u00b7me", "gleich", "?"], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "VAFIN", "PPOSAT", "NN", "ADV", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "Ihr seid unbesorgt, das Leben", "tokens": ["Ihr", "seid", "un\u00b7be\u00b7sorgt", ",", "das", "Le\u00b7ben"], "token_info": ["word", "word", "word", "punct", "word", "word"], "pos": ["PPER", "VAFIN", "ADJD", "$,", "ART", "NN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "in fast nahen Tod zu geben", "tokens": ["in", "fast", "na\u00b7hen", "Tod", "zu", "ge\u00b7ben"], "token_info": ["word", "word", "word", "word", "word", "word"], "pos": ["APPR", "ADV", "ADJA", "NN", "PTKZU", "VVINF"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "f\u00fcr das heilge Christenreich.", "tokens": ["f\u00fcr", "das", "heil\u00b7ge", "Chris\u00b7ten\u00b7reich", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["APPR", "ART", "ADJA", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Dieses Lob kan nicht verderben", "tokens": ["Die\u00b7ses", "Lob", "kan", "nicht", "ver\u00b7der\u00b7ben"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDAT", "NN", "VMFIN", "PTKNEG", "VVFIN"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "und l\u00e4\u00dft ewig euch nicht sterben.", "tokens": ["und", "l\u00e4\u00dft", "e\u00b7wig", "euch", "nicht", "ster\u00b7ben", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "VVFIN", "ADJD", "PPER", "PTKNEG", "VVINF", "$."], "meter": "-++-+-+-", "measure": "unknown.measure.tetra"}}, "stanza.31": {"line.1": {"text": "\u00c4ol und Neptun stehn hier,", "tokens": ["\u00c4\u00b7ol", "und", "Nep\u00b7tun", "stehn", "hier", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["NN", "KON", "NN", "VVFIN", "ADV", "$,"], "meter": "+--+--+", "measure": "dactylic.tri"}, "line.2": {"text": "schw\u00f6ren mit gebotnen H\u00e4nden,", "tokens": ["schw\u00f6\u00b7ren", "mit", "ge\u00b7bot\u00b7nen", "H\u00e4n\u00b7den", ","], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["VVFIN", "APPR", "ADJA", "NN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "da\u00df sie Alles wollen wenden,", "tokens": ["da\u00df", "sie", "Al\u00b7les", "wol\u00b7len", "wen\u00b7den", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["KOUS", "PPER", "PIS", "VMFIN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "was sich euch will sch\u00fctzen f\u00fcr.", "tokens": ["was", "sich", "euch", "will", "sch\u00fct\u00b7zen", "f\u00fcr", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "PRF", "PPER", "VMFIN", "VVINF", "APPR", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "euch zu liefern alle Stunden.", "tokens": ["euch", "zu", "lie\u00b7fern", "al\u00b7le", "Stun\u00b7den", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PPER", "PTKZU", "VVINF", "PIAT", "NN", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.32": {"line.1": {"text": "Das bewohnt' und \u00f6de Land", "tokens": ["Das", "be\u00b7wohnt'", "und", "\u00f6\u00b7de", "Land"], "token_info": ["word", "word", "word", "word", "word"], "pos": ["PDS", "VVFIN", "KON", "ADJA", "NN"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "will euch allen Vorschub schaffen.", "tokens": ["will", "euch", "al\u00b7len", "Vor\u00b7schub", "schaf\u00b7fen", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VMFIN", "PPER", "PIAT", "NN", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "Ganz kein ", "tokens": ["Ganz", "kein"], "token_info": ["word", "word"], "pos": ["ADV", "PIAT"], "meter": "-+", "measure": "iambic.single"}, "line.4": {"text": "nehmen wider euch zur Hand.", "tokens": ["neh\u00b7men", "wi\u00b7der", "euch", "zur", "Hand", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "APPR", "PPER", "APPRART", "NN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Euch hat Gott, der vor euch wachet,", "tokens": ["Euch", "hat", "Gott", ",", "der", "vor", "euch", "wa\u00b7chet", ","], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "word", "punct"], "pos": ["PPER", "VAFIN", "NN", "$,", "PRELS", "APPR", "PPER", "VVFIN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "auch das Wilde zahm gemachet.", "tokens": ["auch", "das", "Wil\u00b7de", "zahm", "ge\u00b7ma\u00b7chet", "."], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["ADV", "ART", "NN", "ADJD", "VVPP", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}, "stanza.33": {"line.1": {"text": "Die gemeine Christenheit", "tokens": ["Die", "ge\u00b7mei\u00b7ne", "Chris\u00b7ten\u00b7heit"], "token_info": ["word", "word", "word"], "pos": ["ART", "ADJA", "NN"], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.2": {"text": "l\u00e4\u00dft nicht ab f\u00fcr euch zu bitten.", "tokens": ["l\u00e4\u00dft", "nicht", "ab", "f\u00fcr", "euch", "zu", "bit\u00b7ten", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PTKNEG", "PTKVZ", "APPR", "PPER", "PTKZU", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "Euch folgt nach auf allen Schritten,", "tokens": ["Euch", "folgt", "nach", "auf", "al\u00b7len", "Schrit\u00b7ten", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PPER", "VVFIN", "APPR", "APPR", "PIAT", "NN", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "was ihr wollt und sie erfreut.", "tokens": ["was", "ihr", "wollt", "und", "sie", "er\u00b7freut", "."], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "PPER", "VMFIN", "KON", "PPER", "VVFIN", "$."], "meter": "+-+-+-+", "measure": "trochaic.tetra"}, "line.5": {"text": "Es wird euch auf allen Seiten", "tokens": ["Es", "wird", "euch", "auf", "al\u00b7len", "Sei\u00b7ten"], "token_info": ["word", "word", "word", "word", "word", "word"], "pos": ["PPER", "VAFIN", "PPER", "APPR", "PIAT", "NN"], "meter": "-+--+-+-", "measure": "iambic.tri.relaxed"}, "line.6": {"text": "manch beseufzter Wundsch begleiten.", "tokens": ["manch", "be\u00b7seufz\u00b7ter", "Wund\u00b7sch", "be\u00b7glei\u00b7ten", "."], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["PIAT", "ADJA", "NN", "VVINF", "$."], "meter": "+-+-+--+-", "measure": "trochaic.tetra.relaxed"}}, "stanza.34": {"line.1": {"text": "Zieht, zieht hin, ihr Frommen, ihr!", "tokens": ["Zieht", ",", "zieht", "hin", ",", "ihr", "From\u00b7men", ",", "ihr", "!"], "token_info": ["word", "punct", "word", "word", "punct", "word", "word", "punct", "word", "punct"], "pos": ["VVFIN", "$,", "VVFIN", "PTKVZ", "$,", "PPOSAT", "NN", "$,", "PPER", "$."], "meter": "-+--+-+", "measure": "iambic.tri.relaxed"}, "line.2": {"text": "Gott und F\u00fcrsten, die euch schicken,", "tokens": ["Gott", "und", "F\u00fcrs\u00b7ten", ",", "die", "euch", "schi\u00b7cken", ","], "token_info": ["word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["NN", "KON", "NN", "$,", "PRELS", "PPER", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.3": {"text": "lassen Alles wol gel\u00fccken!", "tokens": ["las\u00b7sen", "Al\u00b7les", "wol", "ge\u00b7l\u00fc\u00b7cken", "!"], "token_info": ["word", "word", "word", "word", "punct"], "pos": ["VVFIN", "PIS", "ADV", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.4": {"text": "Und stellt euch di\u00df stetig f\u00fcr:", "tokens": ["Und", "stellt", "euch", "di\u00df", "ste\u00b7tig", "f\u00fcr", ":"], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["KON", "VVFIN", "PPER", "PDS", "ADJD", "APPR", "$."], "meter": "-+--+-+", "measure": "iambic.tri.relaxed"}, "line.5": {"text": "Was der Himmel hei\u00dft vollbringen,", "tokens": ["Was", "der", "Him\u00b7mel", "hei\u00dft", "voll\u00b7brin\u00b7gen", ","], "token_info": ["word", "word", "word", "word", "word", "punct"], "pos": ["PWS", "ART", "NN", "VVFIN", "VVINF", "$,"], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}, "line.6": {"text": "wird und soll und mu\u00df gelingen!", "tokens": ["wird", "und", "soll", "und", "mu\u00df", "ge\u00b7lin\u00b7gen", "!"], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["VAFIN", "KON", "VMFIN", "KON", "VMFIN", "VVINF", "$."], "meter": "+-+-+-+-", "measure": "trochaic.tetra"}}}}} |
[{
"name": "China, mainland",
"children": [
{
"name": "Algeria",
"size": 13175.0
},
{
"name": "Argentina",
"size": 13577.0
},
{
"name": "Austria",
"size": 12246.0
},
{
"name": "Belgium",
"size": 1289.0
},
{
"name": "Bosnia and Herzegovina",
"size": 1436.0
},
{
"name": "Brazil",
"size": 44640.0
},
{
"name": "Bulgaria",
"size": 13883.0
},
{
"name": "Cameroon",
"size": 81.0
},
{
"name": "Canada",
"size": 735.0
},
{
"name": "Chile",
"size": 5.0
},
{
"name": "China, mainland",
"size": 1191.0
},
{
"name": "Colombia",
"size": 2904.0
},
{
"name": "Costa Rica",
"size": 59.0
},
{
"name": "Croatia",
"size": 5457.0
},
{
"name": "Cuba",
"size": 3.0
},
{
"name": "Cyprus",
"size": 42.0
},
{
"name": "Czechia",
"size": 104.0
},
{
"name": "C\u00f4te d'Ivoire",
"size": 82.0
},
{
"name": "Denmark",
"size": 227.0
},
{
"name": "Ecuador",
"size": 17604.0
},
{
"name": "Egypt",
"size": 439.0
},
{
"name": "Estonia",
"size": 6.0
},
{
"name": "Ethiopia",
"size": 28.0
},
{
"name": "France",
"size": 876.0
},
{
"name": "Germany",
"size": 13857.0
},
{
"name": "Greece",
"size": 171630.0
},
{
"name": "Guatemala",
"size": 11.0
},
{
"name": "Honduras",
"size": 26.0
},
{
"name": "Hungary",
"size": 23555.0
},
{
"name": "India",
"size": 3684.0
},
{
"name": "Indonesia",
"size": 1040.0
},
{
"name": "Iran (Islamic Republic of)",
"size": 100.0
},
{
"name": "Ireland",
"size": 14.0
},
{
"name": "Italy",
"size": 102288.0
},
{
"name": "Kazakhstan",
"size": 8.0
},
{
"name": "Lithuania",
"size": 589.0
},
{
"name": "Malaysia",
"size": 1037.0
},
{
"name": "Mexico",
"size": 2992.0
},
{
"name": "Montenegro",
"size": 298.0
},
{
"name": "Morocco",
"size": 3.0
},
{
"name": "Netherlands",
"size": 8834.0
},
{
"name": "North Macedonia",
"size": 28493.0
},
{
"name": "Pakistan",
"size": 3237.0
},
{
"name": "Paraguay",
"size": 152.0
},
{
"name": "Poland",
"size": 4593.0
},
{
"name": "Romania",
"size": 19477.0
},
{
"name": "Russian Federation",
"size": 134399.0
},
{
"name": "Serbia",
"size": 270136.0
},
{
"name": "Slovenia",
"size": 11.0
},
{
"name": "South Africa",
"size": 201.0
},
{
"name": "Spain",
"size": 4095.0
},
{
"name": "Sri Lanka",
"size": 8.0
},
{
"name": "Switzerland",
"size": 18.0
},
{
"name": "Thailand",
"size": 343.0
},
{
"name": "Tunisia",
"size": 20.0
},
{
"name": "Turkey",
"size": 15945.0
},
{
"name": "Uganda",
"size": 96.0
},
{
"name": "Ukraine",
"size": 8414.0
},
{
"name": "United Kingdom",
"size": 735.0
},
{
"name": "United States of America",
"size": 3699.0
},
{
"name": "Viet Nam",
"size": 1121.0
}
]
},
{
"name": "China",
"children": [
{
"name": "Algeria",
"size": 13175.0
},
{
"name": "Argentina",
"size": 13577.0
},
{
"name": "Austria",
"size": 12246.0
},
{
"name": "Belgium",
"size": 1289.0
},
{
"name": "Bosnia and Herzegovina",
"size": 1436.0
},
{
"name": "Brazil",
"size": 44640.0
},
{
"name": "Bulgaria",
"size": 13883.0
},
{
"name": "Cameroon",
"size": 81.0
},
{
"name": "Canada",
"size": 735.0
},
{
"name": "Chile",
"size": 5.0
},
{
"name": "China, mainland",
"size": 1191.0
},
{
"name": "Colombia",
"size": 2904.0
},
{
"name": "Costa Rica",
"size": 59.0
},
{
"name": "Croatia",
"size": 5457.0
},
{
"name": "Cuba",
"size": 3.0
},
{
"name": "Cyprus",
"size": 42.0
},
{
"name": "Czechia",
"size": 104.0
},
{
"name": "C\u00f4te d'Ivoire",
"size": 82.0
},
{
"name": "Denmark",
"size": 227.0
},
{
"name": "Ecuador",
"size": 17604.0
},
{
"name": "Egypt",
"size": 439.0
},
{
"name": "Estonia",
"size": 6.0
},
{
"name": "Ethiopia",
"size": 28.0
},
{
"name": "France",
"size": 876.0
},
{
"name": "Germany",
"size": 13857.0
},
{
"name": "Greece",
"size": 171630.0
},
{
"name": "Guatemala",
"size": 11.0
},
{
"name": "Honduras",
"size": 26.0
},
{
"name": "Hungary",
"size": 23555.0
},
{
"name": "India",
"size": 3684.0
},
{
"name": "Indonesia",
"size": 1040.0
},
{
"name": "Iran (Islamic Republic of)",
"size": 100.0
},
{
"name": "Ireland",
"size": 14.0
},
{
"name": "Italy",
"size": 102288.0
},
{
"name": "Kazakhstan",
"size": 8.0
},
{
"name": "Lithuania",
"size": 589.0
},
{
"name": "Malaysia",
"size": 1037.0
},
{
"name": "Mexico",
"size": 2992.0
},
{
"name": "Montenegro",
"size": 298.0
},
{
"name": "Morocco",
"size": 3.0
},
{
"name": "Netherlands",
"size": 8834.0
},
{
"name": "North Macedonia",
"size": 28493.0
},
{
"name": "Pakistan",
"size": 3237.0
},
{
"name": "Paraguay",
"size": 152.0
},
{
"name": "Poland",
"size": 4593.0
},
{
"name": "Romania",
"size": 19477.0
},
{
"name": "Russian Federation",
"size": 134399.0
},
{
"name": "Serbia",
"size": 270136.0
},
{
"name": "Slovenia",
"size": 11.0
},
{
"name": "South Africa",
"size": 201.0
},
{
"name": "Spain",
"size": 4095.0
},
{
"name": "Sri Lanka",
"size": 8.0
},
{
"name": "Switzerland",
"size": 18.0
},
{
"name": "Thailand",
"size": 343.0
},
{
"name": "Tunisia",
"size": 20.0
},
{
"name": "Turkey",
"size": 15945.0
},
{
"name": "Uganda",
"size": 96.0
},
{
"name": "Ukraine",
"size": 8414.0
},
{
"name": "United Kingdom",
"size": 735.0
},
{
"name": "United States of America",
"size": 3699.0
},
{
"name": "Viet Nam",
"size": 1121.0
}
]
}]
|
{"title":"Delivery Man 2014 DVDR R4 NTSC ADES","uid":10017809,"size":4625128479,"categoryP":"video","categoryS":"movies_dvdr","magnet":"?xt=urn:btih:28667451f7388f27666633e336d0c9fd9216c316&dn=Delivery+Man+2014+DVDR+R4+NTSC+ADES&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Fopen.demonii.com%3A1337&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Fexodus.desync.com%3A6969","seeders":1,"leechers":0,"uploader":"Alemao99","files":4,"time":1398173988,"description":"A middle-aged man (Vince Vaughn) discovers to have fathered 533 children by donating sperm, so far so good. But he goes on to face problems when a few dozen of these "kids" have grown, spend feel a huge need to know who your biological father. \n\nOriginal Title: Delivery Man \nTranslated Title: Suddenly Father \nGenre: Comedy. \nYear: 2014 \nDirected by: Josh Boone \nOrigin: USA \nDuration: 105min \nIMDB Link: http://www.imdb.com/title/tt2387559/ \n\nSize: 4.31 GB \nQuality: DVD-R \nFile Format: ISO \nResolution: 853 x 480 \nVideo codec: MPEG-2 \nAudio Codec: AC3 \nVideo System: NTSC \nAudio Languages​​: Portuguese / English \nSubtitles: Portuguese\n\n\nSEED PLEASE\n\nENJOY...","torrent":{"xt":"urn:btih:28667451f7388f27666633e336d0c9fd9216c316","amp;dn":"Delivery+Man+2014+DVDR+R4+NTSC+ADES","amp;tr":["udp%3A%2F%2Ftracker.openbittorrent.com%3A80","udp%3A%2F%2Fopen.demonii.com%3A1337","udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969","udp%3A%2F%2Fexodus.desync.com%3A6969"],"infoHash":"28667451f7388f27666633e336d0c9fd9216c316","infoHashBuffer":{"type":"Buffer","data":[40,102,116,81,247,56,143,39,102,102,51,227,54,208,201,253,146,22,195,22]},"announce":[],"urlList":[]}} |
{"parse":{"title":"\u5c0f\u5527","pageid":14680,"wikitext":{"*":"#REDIRECT [[\u5c0f\u53fd]]"}}} |
{
"databaseChangeLog": [
{},
{
"changeSet": {
"id": "addColumn-example",
"author": "liquibase-docs",
"changes": [
{
"addColumn": {
"catalogName": "cat",
"columns": [
{
"column": {
"name": "address",
"position": 2,
"type": "varchar(255)"
}
},
{
"column": {
"afterColumn": "id",
"constraints": {
"nullable": false
},
"name": "name",
"type": "varchar(50)"
}
}
],
"schemaName": "public",
"tableName": "person"
}
}
]
}
}
]
}
|
{"dta.poem.7149": {"metadata": {"author": {"name": "Brockes, Barthold Heinrich", "birth": "N.A.", "death": "N.A."}, "title": "Betrachtung des Schlafs, \n als \n eine G\u00f6ttliche Wohlthat, \n bey dem 1728sten Jahres-Wechsel.", "genre": "Lyrik", "period": "N.A.", "pub_year": "1730", "urn": "urn:nbn:de:kobv:b4-20087-5", "language": ["de:0.99"], "booktitle": "N.A."}, "poem": {"stanza.1": {"line.1": {"text": "Das Behten heisst den Sch\u00f6pffer ehren,", "tokens": ["Das", "Beh\u00b7ten", "heisst", "den", "Sch\u00f6pf\u00b7fer", "eh\u00b7ren", ","], "token_info": ["word", "word", "word", "word", "word", "word", "punct"], "pos": ["ART", "NN", "VVFIN", "ART", "NN", "VVINF", "$,"], "meter": "-+-+-+-+-", "measure": "iambic.tetra"}, "line.2": {"text": "Und blo\u00df von Seiner G\u00fct\u2019 und Macht", "tokens": ["Und", "blo\u00df", "von", "Sei\u00b7ner", "G\u00fct'", "und", "Macht"], "token_info": ["word", "word", "word", "word", "word", "word", "word"], "pos": ["KON", "ADV", "APPR", "PPOSAT", "NN", "KON", "NN"], "meter": "-+-+-+-+", "measure": "iambic.tetra"}, "line.3": {"text": "Was, das uns n\u00fctzlich ist, ersuchen und begehren:", "tokens": ["Was", ",", "das", "uns", "n\u00fctz\u00b7lich", "ist", ",", "er\u00b7su\u00b7chen", "und", "be\u00b7geh\u00b7ren", ":"], "token_info": ["word", "punct", "word", "word", "word", "word", "punct", "word", "word", "word", "punct"], "pos": ["PWS", "$,", "PRELS", "PPER", "ADJD", "VAFIN", "$,", "ADJA", "KON", "VVINF", "$."], "meter": "-+-+-+-+-+-+-", "measure": "alexandrine.iambic.hexa"}, "line.4": {"text": "Einfolglich wird es GOTT mit allem Recht gebracht.", "tokens": ["Ein\u00b7folg\u00b7lich", "wird", "es", "GoTT", "mit", "al\u00b7lem", "Recht", "ge\u00b7bracht", "."], "token_info": ["word", "word", "word", "word", "word", "word", "word", "word", "punct"], "pos": ["ADJD", "VAFIN", "PPER", "NE", "APPR", "PIS", "NN", "VVPP", "$."], "meter": "-+-+-+-+-+-+", "measure": "alexandrine.iambic.hexa"}}}}} |
{
"name": "servantship-backend",
"version": "1.0.0",
"description": "API Server for The Servantship application.",
"main": "index.js",
"repository": "https://github.com/natanelia/servantship-backend.git",
"author": "Natan <natanelia7@gmail.com>",
"license": "MIT",
"scripts": {
"express-server": "nodemon ./index.js",
"start": "yarn express-server",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec --colors --compilers js:babel-core/register src/tests --recursive --require mocha-clean/brief",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"debug": "^3.1.0",
"express": "^4.16.2",
"express-jwt": "^5.3.0",
"express-validation": "^1.0.2",
"http-status": "^1.0.1",
"joi": "^13.0.2",
"jsonwebtoken": "^8.1.0",
"morgan": "^1.9.0",
"password-generator": "^2.2.0",
"pg": "6",
"pg-hstore": "^2.3.2",
"sequelize": "^4.28.5",
"webpack": "^3.10.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"concurrently": "^3.5.1",
"eslint": "^4.13.1",
"eslint-watch": "^3.1.3",
"mocha": "^4.0.1",
"mocha-clean": "^1.0.0",
"nodemon": "^1.13.3",
"supertest": "^3.0.0"
},
"nodemonConfig": {
"ignore": [
"*.test*"
]
}
}
|
{
"first_traded_price": 2396.0,
"highest_price": 2426.0,
"isin": "IRO1BMPS0001",
"last_traded_price": 2426.0,
"lowest_price": 2315.0,
"trade_volume": 2542043.0,
"unix_time": 1479686400
} |
[
{
"jungle_id":444309,
"level":"Upper-Intermediate"
}
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.